Version Description
= 0.7.0 = New edit interface, tons of other fixes = 0.6.6 = Fixed two XSS vulnerabilities = 0.6.3 = Support .po/.mo files = 0.6.0 = Much improved translation interface engine = 0.5.7 = Fix for critical bug in 0.5.6 = 0.5.6 = Support pluggable widgets = 0.5.5 = Support for buddypress URLs = 0.5.3 = Support URL translation = 0.5.2 = Improved lang attribute support, changed default language translation option = 0.5.1 = Improved speed and database structure = 0.5.0 = Ability to translate all content, backup service for human translations = 0.4.3 = Minor bug fixes, more compatability = 0.4.2 = This version provides Haitian support, auto translate with bing support = 0.4.0 = This version provides integration with google-sitemaps-xml and wp-super-cache = 0.3.9 = This version allows sorting of languages within the widget
Release Info
Developer | oferwald |
Plugin | Transposh WordPress Translation |
Version | 0.7.4 |
Comparing to | |
See all releases |
Code changes from version 0.7.3 to 0.7.4
- core/constants.php +3 -3
- core/parser.php +28 -5
- core/utils.php +2 -2
- js/l/de.js +12 -0
- js/l/es.js +2 -2
- js/l/fa.js +2 -2
- js/l/he.js +2 -2
- js/l/it.js +2 -2
- js/l/nl.js +2 -2
- js/l/ru.js +2 -2
- js/transposh.js +3 -3
- js/transposhadmin.js +2 -2
- js/transposhcontrol.js +2 -2
- js/transposhedit.js +2 -2
- langs/transposh-de_DE.mo +0 -0
- langs/transposh-de_DE.po +497 -0
- langs/transposh-it_IT.mo +0 -0
- langs/transposh-it_IT.po +94 -94
- readme.txt +15 -3
- transposh.php +13 -6
- widgets/default/tpw_default.php +2 -2
- widgets/dropdown/tpw_image_dropdown.php +2 -2
- widgets/flags/tpw_flags.php +2 -2
- widgets/flags/tpw_flags_css.php +2 -2
- widgets/flagslist/tpw_list_with_flags.php +2 -2
- widgets/flagslist/tpw_list_with_flags_css.php +2 -2
- wp/transposh_3rdparty.php +2 -2
- wp/transposh_admin.php +2 -2
- wp/transposh_ajax.php +2 -2
- wp/transposh_backup.php +2 -2
- wp/transposh_db.php +2 -2
- wp/transposh_options.php +2 -2
- wp/transposh_postpublish.php +2 -2
- wp/transposh_widget.php +2 -2
@@ -1,14 +1,14 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* Transposh v0.7.
|
5 |
* http://transposh.org/
|
6 |
*
|
7 |
* Copyright 2011, Team Transposh
|
8 |
* Licensed under the GPL Version 2 or higher.
|
9 |
* http://transposh.org/license
|
10 |
*
|
11 |
-
* Date:
|
12 |
*/
|
13 |
|
14 |
//Language indicator in URL. i.e. lang=en
|
@@ -127,7 +127,7 @@ class transposh_consts {
|
|
127 |
define('TRANSLATOR', 'translator');
|
128 |
|
129 |
//Define for transposh plugin version
|
130 |
-
define('TRANSPOSH_PLUGIN_VER', '0.7.
|
131 |
|
132 |
//Define segment id prefix, will be included in span tag. also used as class identifier
|
133 |
define('SPAN_PREFIX', 'tr_');
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* Transposh v0.7.4
|
5 |
* http://transposh.org/
|
6 |
*
|
7 |
* Copyright 2011, Team Transposh
|
8 |
* Licensed under the GPL Version 2 or higher.
|
9 |
* http://transposh.org/license
|
10 |
*
|
11 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
12 |
*/
|
13 |
|
14 |
//Language indicator in URL. i.e. lang=en
|
127 |
define('TRANSLATOR', 'translator');
|
128 |
|
129 |
//Define for transposh plugin version
|
130 |
+
define('TRANSPOSH_PLUGIN_VER', '0.7.4');
|
131 |
|
132 |
//Define segment id prefix, will be included in span tag. also used as class identifier
|
133 |
define('SPAN_PREFIX', 'tr_');
|
@@ -1,14 +1,14 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* Transposh v0.7.
|
5 |
* http://transposh.org/
|
6 |
*
|
7 |
* Copyright 2011, Team Transposh
|
8 |
* Licensed under the GPL Version 2 or higher.
|
9 |
* http://transposh.org/license
|
10 |
*
|
11 |
-
* Date:
|
12 |
*/
|
13 |
|
14 |
require_once("shd/simple_html_dom.php");
|
@@ -16,6 +16,10 @@ require_once("constants.php");
|
|
16 |
|
17 |
require_once("utils.php");
|
18 |
|
|
|
|
|
|
|
|
|
19 |
/**
|
20 |
* parserstats class - holds parser statistics
|
21 |
*/
|
@@ -338,7 +342,7 @@ class parser {
|
|
338 |
|
339 |
while ($pos < strlen($string)) {
|
340 |
// Some HTML entities make us break, almost all but apostrophies
|
341 |
-
if ($len_of_entity = $this->is_html_entity($string, $pos)) {
|
342 |
$entity = substr($string, $pos, $len_of_entity);
|
343 |
if (($this->is_white_space(@$string[$pos + $len_of_entity]) || $this->is_entity_breaker($entity)) && !$this->is_entity_letter($entity)) {
|
344 |
|
@@ -379,7 +383,7 @@ class parser {
|
|
379 |
//$this->in_get_text_inner = !$this->in_get_text_inner;
|
380 |
}
|
381 |
// will break translation unit when there's a breaker ",.[]()..."
|
382 |
-
elseif ($senb_len = $this->is_sentence_breaker($string[$pos], @$string[$pos + 1], @$string[$pos + 2])) {
|
383 |
//
|
384 |
$this->tag_phrase($string, $start, $pos);
|
385 |
$pos += $senb_len;
|
@@ -387,7 +391,7 @@ class parser {
|
|
387 |
}
|
388 |
// Numbers also break, if they are followed by whitespace (or a sentence breaker) (don't break 42nd) // TODO: probably by breaking entities too...
|
389 |
// also prefixed by whitespace?
|
390 |
-
elseif ($num_len = $this->is_number($string, $pos)) {
|
391 |
//
|
392 |
// this is the case of B2 or B2,
|
393 |
if (($start == $pos) || ($this->is_white_space($string[$pos - 1])
|
@@ -460,6 +464,7 @@ class parser {
|
|
460 |
|
461 |
//support only_thislanguage class, (nulling the node if it should not display)
|
462 |
if (isset($src_set_here) && $src_set_here && $this->srclang != $this->lang && stripos($node->class, ONLY_THISLANGUAGE_CLASS) !== false) {
|
|
|
463 |
$node->outertext = '';
|
464 |
return;
|
465 |
}
|
@@ -502,6 +507,11 @@ class parser {
|
|
502 |
elseif ($node->tag == 'input' && $node->type == 'submit') {
|
503 |
$this->parsetext($node->value);
|
504 |
}
|
|
|
|
|
|
|
|
|
|
|
505 |
|
506 |
// titles are also good places to translate, exist in a, img, abbr, acronym
|
507 |
if ($node->title) $this->parsetext($node->title);
|
@@ -684,6 +694,19 @@ class parser {
|
|
684 |
call_user_func_array($this->prefetch_translate_func, array($originals, $this->lang));
|
685 |
}
|
686 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
687 |
// fix urls...
|
688 |
foreach ($this->atags as $e) {
|
689 |
$e->href = call_user_func_array($this->url_rewrite_func, array($e->href));
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* Transposh v0.7.4
|
5 |
* http://transposh.org/
|
6 |
*
|
7 |
* Copyright 2011, Team Transposh
|
8 |
* Licensed under the GPL Version 2 or higher.
|
9 |
* http://transposh.org/license
|
10 |
*
|
11 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
12 |
*/
|
13 |
|
14 |
require_once("shd/simple_html_dom.php");
|
16 |
|
17 |
require_once("utils.php");
|
18 |
|
19 |
+
define('PUNCT_BREAKS', TRUE); // Will punctiations such as , . ( and such will break a phrase
|
20 |
+
define('NUM_BREAKS', TRUE); // Will a number break a phrase
|
21 |
+
define('ENT_BREAKS', TRUE); // Will an HTML entity break a phrase
|
22 |
+
|
23 |
/**
|
24 |
* parserstats class - holds parser statistics
|
25 |
*/
|
342 |
|
343 |
while ($pos < strlen($string)) {
|
344 |
// Some HTML entities make us break, almost all but apostrophies
|
345 |
+
if (ENT_BREAKS && $len_of_entity = $this->is_html_entity($string, $pos)) {
|
346 |
$entity = substr($string, $pos, $len_of_entity);
|
347 |
if (($this->is_white_space(@$string[$pos + $len_of_entity]) || $this->is_entity_breaker($entity)) && !$this->is_entity_letter($entity)) {
|
348 |
|
383 |
//$this->in_get_text_inner = !$this->in_get_text_inner;
|
384 |
}
|
385 |
// will break translation unit when there's a breaker ",.[]()..."
|
386 |
+
elseif (PUNCT_BREAKS && $senb_len = $this->is_sentence_breaker($string[$pos], @$string[$pos + 1], @$string[$pos + 2])) {
|
387 |
//
|
388 |
$this->tag_phrase($string, $start, $pos);
|
389 |
$pos += $senb_len;
|
391 |
}
|
392 |
// Numbers also break, if they are followed by whitespace (or a sentence breaker) (don't break 42nd) // TODO: probably by breaking entities too...
|
393 |
// also prefixed by whitespace?
|
394 |
+
elseif (NUM_BREAKS && $num_len = $this->is_number($string, $pos)) {
|
395 |
//
|
396 |
// this is the case of B2 or B2,
|
397 |
if (($start == $pos) || ($this->is_white_space($string[$pos - 1])
|
464 |
|
465 |
//support only_thislanguage class, (nulling the node if it should not display)
|
466 |
if (isset($src_set_here) && $src_set_here && $this->srclang != $this->lang && stripos($node->class, ONLY_THISLANGUAGE_CLASS) !== false) {
|
467 |
+
$this->srclang = $prevsrclang; //we should return to the previous src lang or it will be kept and carried
|
468 |
$node->outertext = '';
|
469 |
return;
|
470 |
}
|
507 |
elseif ($node->tag == 'input' && $node->type == 'submit') {
|
508 |
$this->parsetext($node->value);
|
509 |
}
|
510 |
+
// for iframes we will rewrite urls if we can
|
511 |
+
elseif ($node->tag == 'iframe') {
|
512 |
+
$node->src = call_user_func_array($this->url_rewrite_func, array($node->src));
|
513 |
+
|
514 |
+
}
|
515 |
|
516 |
// titles are also good places to translate, exist in a, img, abbr, acronym
|
517 |
if ($node->title) $this->parsetext($node->title);
|
694 |
call_user_func_array($this->prefetch_translate_func, array($originals, $this->lang));
|
695 |
}
|
696 |
|
697 |
+
//fix urls more
|
698 |
+
// WORK IN PROGRESS
|
699 |
+
/* foreach ($this->atags as $e) {
|
700 |
+
$hrefspans = '';
|
701 |
+
foreach (call_user_func_array($this->split_url_func, array($e->href)) as $part) {
|
702 |
+
// fix - not for dashes
|
703 |
+
list ($source, $translated_text) = call_user_func_array($this->fetch_translate_func, array($part, $this->lang));
|
704 |
+
$hrefspans .= $this->create_edit_span($part, $translated_text, $source, true);
|
705 |
+
}
|
706 |
+
$e->href = call_user_func_array($this->url_rewrite_func, array($e->href));
|
707 |
+
$e->outertext .= $hrefspans;
|
708 |
+
} */
|
709 |
+
|
710 |
// fix urls...
|
711 |
foreach ($this->atags as $e) {
|
712 |
$e->href = call_user_func_array($this->url_rewrite_func, array($e->href));
|
@@ -1,14 +1,14 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* Transposh v0.7.
|
5 |
* http://transposh.org/
|
6 |
*
|
7 |
* Copyright 2011, Team Transposh
|
8 |
* Licensed under the GPL Version 2 or higher.
|
9 |
* http://transposh.org/license
|
10 |
*
|
11 |
-
* Date:
|
12 |
*/
|
13 |
|
14 |
/**
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* Transposh v0.7.4
|
5 |
* http://transposh.org/
|
6 |
*
|
7 |
* Copyright 2011, Team Transposh
|
8 |
* Licensed under the GPL Version 2 or higher.
|
9 |
* http://transposh.org/license
|
10 |
*
|
11 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
12 |
*/
|
13 |
|
14 |
/**
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/*
|
2 |
+
* Transposh v0.7.4
|
3 |
+
* http://transposh.org/
|
4 |
+
*
|
5 |
+
* Copyright 2011, Team Transposh
|
6 |
+
* Licensed under the GPL Version 2 or higher.
|
7 |
+
* http://transposh.org/license
|
8 |
+
*
|
9 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
10 |
+
*/
|
11 |
+
t_jp.l={"Close without saving?":"Schlie\u00dfen ohne Speichern?","You have made a change to the translation. Are you sure you want to discard it?":"Sie haben die \u00dcbersetzung bearbeitet. Sind Sie sicher, dass Sie abbrechen wollen?",History:"Verlauf","Loading...":"Laden...",Translated:"\u00dcbersetzt",By:"von",At:"\u00fcber",google:"Google",bing:"Bing",apertium:"Apertium","manual translation":"manuelle \u00dcbersetzung","bing suggest":"Bing Suggest","google suggest":"Google Suggest","apertium suggest":"Apertium Suggest",
|
12 |
+
"Edit Translation":"\u00dcbersetzung bearbeiten","Original text":"Originaltext","read alternate translations":"alternative \u00dcbersetzung lesen","previous translation":"Vorherige","find on page":"Auf Seite suchen","next translation":"N\u00e4chste","Translate to":"\u00dcbersetzen nach","view translation log":"\u00dcbersetzungsprotokoll anzeigen","virtual keyboard":"virtuelle Tastatur","approve translation":"\u00dcbersetzung genehmigen","delete":"L\u00f6schen",Discard:"Verwerfen",Cancel:"Abbrechen"};
|
@@ -1,12 +1,12 @@
|
|
1 |
/*
|
2 |
-
* Transposh v0.7.
|
3 |
* http://transposh.org/
|
4 |
*
|
5 |
* Copyright 2011, Team Transposh
|
6 |
* Licensed under the GPL Version 2 or higher.
|
7 |
* http://transposh.org/license
|
8 |
*
|
9 |
-
* Date:
|
10 |
*/
|
11 |
t_jp.l={"Close without saving?":"Cerrar sin guardar?","You have made a change to the translation. Are you sure you want to discard it?":"Has cambiado la traducion. Estas seguro que lo quieres eliminar?",History:"Historia","Loading...":"Cargando...",Translated:"Traducido",By:"Por",At:"En",google:"google",bing:"bing",apertium:"apertium","manual translation":"traducci\u00f3n manual","bing suggest":"sugerencia de bing","google suggest":"sugerencia de google","apertium suggest":"sugerencia de apertium",
|
12 |
"Edit Translation":"Editar traducci\u00f3n","Original text":"Texto original","read alternate translations":"lee traducci\u00f3nes alternativas","previous translation":"traducci\u00f3n anterior","find on page":"encuentra en la pagina","next translation":"siguiente traducci\u00f3n","Translate to":"Traducir a","view translation log":"muestra diario de traducion","virtual keyboard":"teclado virtual","approve translation":"aprueba traducion","delete":"eliminar",Discard:"Descartar",Cancel:"Cancelar"};
|
1 |
/*
|
2 |
+
* Transposh v0.7.4
|
3 |
* http://transposh.org/
|
4 |
*
|
5 |
* Copyright 2011, Team Transposh
|
6 |
* Licensed under the GPL Version 2 or higher.
|
7 |
* http://transposh.org/license
|
8 |
*
|
9 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
10 |
*/
|
11 |
t_jp.l={"Close without saving?":"Cerrar sin guardar?","You have made a change to the translation. Are you sure you want to discard it?":"Has cambiado la traducion. Estas seguro que lo quieres eliminar?",History:"Historia","Loading...":"Cargando...",Translated:"Traducido",By:"Por",At:"En",google:"google",bing:"bing",apertium:"apertium","manual translation":"traducci\u00f3n manual","bing suggest":"sugerencia de bing","google suggest":"sugerencia de google","apertium suggest":"sugerencia de apertium",
|
12 |
"Edit Translation":"Editar traducci\u00f3n","Original text":"Texto original","read alternate translations":"lee traducci\u00f3nes alternativas","previous translation":"traducci\u00f3n anterior","find on page":"encuentra en la pagina","next translation":"siguiente traducci\u00f3n","Translate to":"Traducir a","view translation log":"muestra diario de traducion","virtual keyboard":"teclado virtual","approve translation":"aprueba traducion","delete":"eliminar",Discard:"Descartar",Cancel:"Cancelar"};
|
@@ -1,12 +1,12 @@
|
|
1 |
/*
|
2 |
-
* Transposh v0.7.
|
3 |
* http://transposh.org/
|
4 |
*
|
5 |
* Copyright 2011, Team Transposh
|
6 |
* Licensed under the GPL Version 2 or higher.
|
7 |
* http://transposh.org/license
|
8 |
*
|
9 |
-
* Date:
|
10 |
*/
|
11 |
t_jp.l={"Close without saving?":"\u0628\u062f\u0648\u0646 \u0646\u06af\u0647 \u062f\u0627\u0631\u06cc \u0628\u0628\u0646\u062f\u06cc\u0645\u061f","You have made a change to the translation. Are you sure you want to discard it?":"\u0634\u0645\u0627 \u062f\u0631 \u062a\u0631\u062c\u0645\u0647 \u06cc\u06a9 \u062f\u06af\u0631\u06af\u0648\u0646\u06cc \u0633\u0627\u062e\u062a\u0647 \u0627\u06cc\u062f \u0622\u06cc\u0627 \u0622\u06af\u0627\u0647\u0627\u0646\u0647 \u0645\u06cc \u062e\u0648\u0627\u0647\u06cc\u062f \u0622\u0646 \u0631\u0627 \u062f\u0648\u0631 \u0628\u06cc\u0646\u062f\u0627\u0632\u06cc\u062f\u061f ",
|
12 |
History:"\u067e\u06cc\u0634\u06cc\u0646\u0647","Loading...":"\u0628\u0627\u0631\u06af\u06cc\u0631\u06cc...",Translated:"\u062a\u0631\u062c\u0645\u0647 \u0634\u062f\u0647",By:"\u0628\u0627",At:"\u062f\u0631",google:"\u06af\u0648\u06af\u0644",bing:"\u0628\u06cc\u0646\u06af",apertium:"\u0627\u0650\u06cc \u067e\u0650\u0631\u0634\u0650\u0645","manual translation":"\u062a\u0631\u062c\u0645\u0647 \u06cc \u062f\u0633\u062a\u06cc","bing suggest":"\u067e\u06cc\u0634\u0646\u0647\u0627\u062f \u0628\u06cc\u0646\u06af",
|
1 |
/*
|
2 |
+
* Transposh v0.7.4
|
3 |
* http://transposh.org/
|
4 |
*
|
5 |
* Copyright 2011, Team Transposh
|
6 |
* Licensed under the GPL Version 2 or higher.
|
7 |
* http://transposh.org/license
|
8 |
*
|
9 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
10 |
*/
|
11 |
t_jp.l={"Close without saving?":"\u0628\u062f\u0648\u0646 \u0646\u06af\u0647 \u062f\u0627\u0631\u06cc \u0628\u0628\u0646\u062f\u06cc\u0645\u061f","You have made a change to the translation. Are you sure you want to discard it?":"\u0634\u0645\u0627 \u062f\u0631 \u062a\u0631\u062c\u0645\u0647 \u06cc\u06a9 \u062f\u06af\u0631\u06af\u0648\u0646\u06cc \u0633\u0627\u062e\u062a\u0647 \u0627\u06cc\u062f \u0622\u06cc\u0627 \u0622\u06af\u0627\u0647\u0627\u0646\u0647 \u0645\u06cc \u062e\u0648\u0627\u0647\u06cc\u062f \u0622\u0646 \u0631\u0627 \u062f\u0648\u0631 \u0628\u06cc\u0646\u062f\u0627\u0632\u06cc\u062f\u061f ",
|
12 |
History:"\u067e\u06cc\u0634\u06cc\u0646\u0647","Loading...":"\u0628\u0627\u0631\u06af\u06cc\u0631\u06cc...",Translated:"\u062a\u0631\u062c\u0645\u0647 \u0634\u062f\u0647",By:"\u0628\u0627",At:"\u062f\u0631",google:"\u06af\u0648\u06af\u0644",bing:"\u0628\u06cc\u0646\u06af",apertium:"\u0627\u0650\u06cc \u067e\u0650\u0631\u0634\u0650\u0645","manual translation":"\u062a\u0631\u062c\u0645\u0647 \u06cc \u062f\u0633\u062a\u06cc","bing suggest":"\u067e\u06cc\u0634\u0646\u0647\u0627\u062f \u0628\u06cc\u0646\u06af",
|
@@ -1,12 +1,12 @@
|
|
1 |
/*
|
2 |
-
* Transposh v0.7.
|
3 |
* http://transposh.org/
|
4 |
*
|
5 |
* Copyright 2011, Team Transposh
|
6 |
* Licensed under the GPL Version 2 or higher.
|
7 |
* http://transposh.org/license
|
8 |
*
|
9 |
-
* Date:
|
10 |
*/
|
11 |
t_jp.l={"Close without saving?":"\u05dc\u05e1\u05d2\u05d5\u05e8 \u05d1\u05dc\u05d9 \u05dc\u05e9\u05de\u05d5\u05e8?","You have made a change to the translation. Are you sure you want to discard it?":"\u05d1\u05d9\u05e6\u05e2\u05ea \u05e9\u05d9\u05e0\u05d5\u05d9 \u05d1\u05ea\u05e8\u05d2\u05d5\u05dd, \u05d4\u05d0\u05dd \u05d0\u05ea\u05d4 \u05d1\u05d8\u05d5\u05d7 \u05e9\u05d0\u05ea\u05d4 \u05e8\u05d5\u05e6\u05d4 \u05dc\u05d5\u05d5\u05ea\u05e8 \u05e2\u05dc\u05d9\u05d5?",History:"\u05d4\u05d9\u05e1\u05d8\u05d5\u05e8\u05d9\u05d4",
|
12 |
"Loading...":"\u05d8\u05d5\u05e2\u05df...",Translated:"\u05ea\u05d5\u05e8\u05d2\u05dd",By:"\u05e2\u05dc \u05d9\u05d3\u05d9",At:"\u05d1",google:"\u05d2\u05d5\u05d2\u05dc",bing:"\u05d1\u05d9\u05e0\u05d2",apertium:"\u05d0\u05e4\u05e8\u05d8\u05d9\u05d5\u05dd","manual translation":"\u05ea\u05e8\u05d2\u05d5\u05dd \u05d9\u05d3\u05e0\u05d9","bing suggest":"\u05d4\u05e6\u05e2\u05d5\u05ea \u05d1\u05d9\u05e0\u05d2","google suggest":"\u05d4\u05e6\u05e2\u05d5\u05ea \u05d2\u05d5\u05d2\u05dc","apertium suggest":"\u05d4\u05e6\u05e2\u05d5\u05ea \u05d0\u05e4\u05e8\u05d8\u05d9\u05d5\u05dd",
|
1 |
/*
|
2 |
+
* Transposh v0.7.4
|
3 |
* http://transposh.org/
|
4 |
*
|
5 |
* Copyright 2011, Team Transposh
|
6 |
* Licensed under the GPL Version 2 or higher.
|
7 |
* http://transposh.org/license
|
8 |
*
|
9 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
10 |
*/
|
11 |
t_jp.l={"Close without saving?":"\u05dc\u05e1\u05d2\u05d5\u05e8 \u05d1\u05dc\u05d9 \u05dc\u05e9\u05de\u05d5\u05e8?","You have made a change to the translation. Are you sure you want to discard it?":"\u05d1\u05d9\u05e6\u05e2\u05ea \u05e9\u05d9\u05e0\u05d5\u05d9 \u05d1\u05ea\u05e8\u05d2\u05d5\u05dd, \u05d4\u05d0\u05dd \u05d0\u05ea\u05d4 \u05d1\u05d8\u05d5\u05d7 \u05e9\u05d0\u05ea\u05d4 \u05e8\u05d5\u05e6\u05d4 \u05dc\u05d5\u05d5\u05ea\u05e8 \u05e2\u05dc\u05d9\u05d5?",History:"\u05d4\u05d9\u05e1\u05d8\u05d5\u05e8\u05d9\u05d4",
|
12 |
"Loading...":"\u05d8\u05d5\u05e2\u05df...",Translated:"\u05ea\u05d5\u05e8\u05d2\u05dd",By:"\u05e2\u05dc \u05d9\u05d3\u05d9",At:"\u05d1",google:"\u05d2\u05d5\u05d2\u05dc",bing:"\u05d1\u05d9\u05e0\u05d2",apertium:"\u05d0\u05e4\u05e8\u05d8\u05d9\u05d5\u05dd","manual translation":"\u05ea\u05e8\u05d2\u05d5\u05dd \u05d9\u05d3\u05e0\u05d9","bing suggest":"\u05d4\u05e6\u05e2\u05d5\u05ea \u05d1\u05d9\u05e0\u05d2","google suggest":"\u05d4\u05e6\u05e2\u05d5\u05ea \u05d2\u05d5\u05d2\u05dc","apertium suggest":"\u05d4\u05e6\u05e2\u05d5\u05ea \u05d0\u05e4\u05e8\u05d8\u05d9\u05d5\u05dd",
|
@@ -1,12 +1,12 @@
|
|
1 |
/*
|
2 |
-
* Transposh v0.7.
|
3 |
* http://transposh.org/
|
4 |
*
|
5 |
* Copyright 2011, Team Transposh
|
6 |
* Licensed under the GPL Version 2 or higher.
|
7 |
* http://transposh.org/license
|
8 |
*
|
9 |
-
* Date:
|
10 |
*/
|
11 |
t_jp.l={"Close without saving?":"Chiudere senza salvare?","You have made a change to the translation. Are you sure you want to discard it?":"È stata fatta una modifica alla traduzione. Si è sicuri di volerla scartare?",History:"Storia","Loading...":"Caricamento...",Translated:"Tradotto",By:"Da",At:"A",google:"google",bing:"bing",apertium:"apertium","manual translation":"traduzione manuale","bing suggest":"bing suggerisce","google suggest":"google suggerisce","apertium suggest":"apertium suggerisce",
|
12 |
"Edit Translation":"Modifica Traduzione","Original text":"Testo Originale","read alternate translations":"leggi le traduzioni alternative","previous translation":"traduzione precedente","find on page":"trova nella pagina","next translation":"prossima traduzione","Translate to":"Tradotto in","view translation log":"guarda il log delle traduzioni","virtual keyboard":"tastiera virtuale","approve translation":"approva traduzione","delete":"cancella",Discard:"Scarta",Cancel:"Cancella"};
|
1 |
/*
|
2 |
+
* Transposh v0.7.4
|
3 |
* http://transposh.org/
|
4 |
*
|
5 |
* Copyright 2011, Team Transposh
|
6 |
* Licensed under the GPL Version 2 or higher.
|
7 |
* http://transposh.org/license
|
8 |
*
|
9 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
10 |
*/
|
11 |
t_jp.l={"Close without saving?":"Chiudere senza salvare?","You have made a change to the translation. Are you sure you want to discard it?":"È stata fatta una modifica alla traduzione. Si è sicuri di volerla scartare?",History:"Storia","Loading...":"Caricamento...",Translated:"Tradotto",By:"Da",At:"A",google:"google",bing:"bing",apertium:"apertium","manual translation":"traduzione manuale","bing suggest":"bing suggerisce","google suggest":"google suggerisce","apertium suggest":"apertium suggerisce",
|
12 |
"Edit Translation":"Modifica Traduzione","Original text":"Testo Originale","read alternate translations":"leggi le traduzioni alternative","previous translation":"traduzione precedente","find on page":"trova nella pagina","next translation":"prossima traduzione","Translate to":"Tradotto in","view translation log":"guarda il log delle traduzioni","virtual keyboard":"tastiera virtuale","approve translation":"approva traduzione","delete":"cancella",Discard:"Scarta",Cancel:"Cancella"};
|
@@ -1,12 +1,12 @@
|
|
1 |
/*
|
2 |
-
* Transposh v0.7.
|
3 |
* http://transposh.org/
|
4 |
*
|
5 |
* Copyright 2011, Team Transposh
|
6 |
* Licensed under the GPL Version 2 or higher.
|
7 |
* http://transposh.org/license
|
8 |
*
|
9 |
-
* Date:
|
10 |
*/
|
11 |
t_jp.l={"Close without saving?":"Sluiten zonder op te slaan?","You have made a change to the translation. Are you sure you want to discard it?":"Je hebt de vertaling aangepast. Weet je zeker dat je dat wilt annuleren?",History:"Geschiedenis","Loading...":"Aan het laden...",Translated:"Vertaald",By:"Door",At:"Op",google:"google",bing:"bing",apertium:"apertium","manual translation":"eigen vertaling","bing suggest":"bing suggestie","google suggest":"google suggestie","apertium suggest":"apertium suggestie",
|
12 |
"Edit Translation":"Vertaling aanpassen","Original text":"Oorspronkelijke tekst","read alternate translations":"bekijk alternatieve vertaling","previous translation":"vorige","find on page":"laat op de pagina zien","next translation":"volgende","Translate to":"Vertaal naar","view translation log":"Bekijk vertaallog","virtual keyboard":"virtueel toetsenbord","approve translation":"vertaling goedkeuren","delete":"verwijder",Discard:"weggooien",Cancel:"Annuleren"};
|
1 |
/*
|
2 |
+
* Transposh v0.7.4
|
3 |
* http://transposh.org/
|
4 |
*
|
5 |
* Copyright 2011, Team Transposh
|
6 |
* Licensed under the GPL Version 2 or higher.
|
7 |
* http://transposh.org/license
|
8 |
*
|
9 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
10 |
*/
|
11 |
t_jp.l={"Close without saving?":"Sluiten zonder op te slaan?","You have made a change to the translation. Are you sure you want to discard it?":"Je hebt de vertaling aangepast. Weet je zeker dat je dat wilt annuleren?",History:"Geschiedenis","Loading...":"Aan het laden...",Translated:"Vertaald",By:"Door",At:"Op",google:"google",bing:"bing",apertium:"apertium","manual translation":"eigen vertaling","bing suggest":"bing suggestie","google suggest":"google suggestie","apertium suggest":"apertium suggestie",
|
12 |
"Edit Translation":"Vertaling aanpassen","Original text":"Oorspronkelijke tekst","read alternate translations":"bekijk alternatieve vertaling","previous translation":"vorige","find on page":"laat op de pagina zien","next translation":"volgende","Translate to":"Vertaal naar","view translation log":"Bekijk vertaallog","virtual keyboard":"virtueel toetsenbord","approve translation":"vertaling goedkeuren","delete":"verwijder",Discard:"weggooien",Cancel:"Annuleren"};
|
@@ -1,12 +1,12 @@
|
|
1 |
/*
|
2 |
-
* Transposh v0.7.
|
3 |
* http://transposh.org/
|
4 |
*
|
5 |
* Copyright 2011, Team Transposh
|
6 |
* Licensed under the GPL Version 2 or higher.
|
7 |
* http://transposh.org/license
|
8 |
*
|
9 |
-
* Date:
|
10 |
*/
|
11 |
t_jp.l={"Close without saving?":"\u0417\u0430\u043a\u0440\u044b\u0442\u044c \u0431\u0435\u0437 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f?","You have made a change to the translation. Are you sure you want to discard it?":"\u0412\u044b \u0441\u0434\u0435\u043b\u0430\u043b\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432 \u043f\u0435\u0440\u0435\u0432\u043e\u0434\u0435. \u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b, \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0441\u0431\u0440\u043e\u0441\u0438\u0442\u044c \u044d\u0442\u043e?",
|
12 |
History:"\u0418\u0441\u0442\u043e\u0440\u0438\u044f","Loading...":"\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430...",Translated:"\u041f\u0435\u0440\u0435\u0432\u0435\u0434\u0435\u043d\u043e",By:"",At:"\u0412",google:"",bing:"",apertium:"","manual translation":"\u0440\u0443\u0447\u043d\u043e\u0439 \u043f\u0435\u0440\u0435\u0432\u043e\u0434","bing suggest":"\u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0435 bing","google suggest":"\u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0435 google",
|
1 |
/*
|
2 |
+
* Transposh v0.7.4
|
3 |
* http://transposh.org/
|
4 |
*
|
5 |
* Copyright 2011, Team Transposh
|
6 |
* Licensed under the GPL Version 2 or higher.
|
7 |
* http://transposh.org/license
|
8 |
*
|
9 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
10 |
*/
|
11 |
t_jp.l={"Close without saving?":"\u0417\u0430\u043a\u0440\u044b\u0442\u044c \u0431\u0435\u0437 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f?","You have made a change to the translation. Are you sure you want to discard it?":"\u0412\u044b \u0441\u0434\u0435\u043b\u0430\u043b\u0438 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432 \u043f\u0435\u0440\u0435\u0432\u043e\u0434\u0435. \u0412\u044b \u0443\u0432\u0435\u0440\u0435\u043d\u044b, \u0447\u0442\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0441\u0431\u0440\u043e\u0441\u0438\u0442\u044c \u044d\u0442\u043e?",
|
12 |
History:"\u0418\u0441\u0442\u043e\u0440\u0438\u044f","Loading...":"\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430...",Translated:"\u041f\u0435\u0440\u0435\u0432\u0435\u0434\u0435\u043d\u043e",By:"",At:"\u0412",google:"",bing:"",apertium:"","manual translation":"\u0440\u0443\u0447\u043d\u043e\u0439 \u043f\u0435\u0440\u0435\u0432\u043e\u0434","bing suggest":"\u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0435 bing","google suggest":"\u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0435 google",
|
@@ -1,12 +1,12 @@
|
|
1 |
/*
|
2 |
-
* Transposh v0.7.
|
3 |
* http://transposh.org/
|
4 |
*
|
5 |
* Copyright 2011, Team Transposh
|
6 |
* Licensed under the GPL Version 2 or higher.
|
7 |
* http://transposh.org/license
|
8 |
*
|
9 |
-
* Date:
|
10 |
*/
|
11 |
(function(a){function v(b,e){if(a.trim(e).length!==0){var c=function(){var d=a(this).attr("id").substr(a(this).attr("id").lastIndexOf("_")+1),f=a("#"+h+"img_"+d);a("#"+h+d).attr("data-source",1);f.removeClass("tr-icon-yellow").removeClass("tr-icon-green").addClass("tr-icon-yellow")};a("*[data-token='"+b+"'][data-hidden!='y']").html(e).each(c);a("*[data-token='"+b+"'][data-hidden='y']").attr("data-trans",e).each(c)}}function w(b,e){clearTimeout(p);i.push(b);n.push(e);v(b,e);p=setTimeout(function(){var c=
|
12 |
{ln0:t_jp.lang,sr0:o,translation_posted:"2",items:i.length},d;for(d=0;d<i.length;d+=1){c["tk"+d]=i[d];c["tr"+d]=n[d];q+=a("*[data-token='"+i[d]+"']").size()}a.ajax({type:"POST",url:t_jp.post_url,data:c,success:function(){var f=q/k*100;t_jp.progress&&a("#"+l).progressbar("value",f)}});n=[];i=[]},200)}function j(b,e){w(b,a("<div>"+a.trim(e)+"</div>").text());var c=(k-a("."+h+'[data-source=""]').size())/k*100;t_jp.progress&&a("#"+m).progressbar("value",c)}function x(b,e,c){var d="",f="";a(b).each(function(g){d+=
|
@@ -14,6 +14,6 @@
|
|
14 |
function y(b,e){var c="[";a(b).each(function(d){c+='"'+encodeURIComponent(b[d])+'",'});c=c.slice(0,-1)+"]";a.ajax({url:"http://api.microsofttranslator.com/V2/Ajax.svc/TranslateArray?appId="+t_jp.MSN_APPID+"&to="+t_jp.binglang+"&texts="+c,dataType:"jsonp",jsonp:"oncomplete",success:e})}function z(b,e){o=2;y(e,function(c){a(c).each(function(d){j(b[d],this.TranslatedText)})})}function A(b,e){a.getJSON(t_jp.post_url+"?tgp="+e+"&tgl="+t_jp.lang,function(c){c.sentences!==undefined&&c.sentences[0].trans&&
|
15 |
j(b,c.sentences[0].trans)})}function B(b,e){var c="";a(b).each(function(d){c+="&q="+encodeURIComponent(b[d])});a.ajax({url:"http://api.apertium.org/json/translate?"+c+"&langpair="+t_jp.olang+"%7C"+t_jp.lang+"&markUnknown=no",dataType:"jsonp",success:e})}function C(b,e){o=3;B(e,function(c){if(c.responseStatus>=200&&c.responseStatus<300)c.responseData.translatedText!==undefined?j(b[0],c.responseData.translatedText):a(c.responseData).each(function(d){this.responseStatus===200&&j(b[d],this.responseData.translatedText)})})}
|
16 |
function s(b,e){if(t_jp.msn&&t_jp.preferred==="2")z(b,e);else if(t_jp.apertium&&(t_jp.olang==="en"||t_jp.olang==="es"))C(b,e);else if(t_jp.tgp)e[0]&&A(b[0],e[0]);else r(b,e,false)}function t(){var b=[],e=0,c=[],d=[];if(t_jp.tgp)u=0;a("."+h+'[data-source=""]').each(function(){var f=a(this).attr("data-token"),g=a(this).attr("data-orig");if(g===undefined)g=a(this).html();if(b[g]!==1){b[g]=1;if(e+g.length>u){s(d,c);e=0;c=[];d=[]}e+=g.length;d.push(f);c.push(g)}});s(d,c)}var u=128,k,h=t_jp.prefix,m=h+
|
17 |
-
"pbar",l=m+"_s",o=1,q=0,p,i=[],n=[];t_jp.MSN_APPID="FACA8E2DF8DCCECE0DC311C6E57DA98EFEFA9BC6";t_jp.jQueryUI="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.
|
18 |
if(k&&!t_jp.noauto&&(t_jp.google||t_jp.msn||t_jp.apertium||t_jp.tgp))if(t_jp.progress){var b=function(){a.xLazyLoader({js:t_jp.jQueryUI+"jquery-ui.min.js",css:t_jp.jQueryUI+"themes/"+t_jp.theme+"/jquery-ui.css",success:function(){a("#"+h+"credit").css({overflow:"auto"}).append('<div style="float: left;width: 90%;height: 10px" id="'+m+'"/><div style="margin-bottom:10px;float:left;width: 90%;height: 10px" id="'+l+'"/>');a("#"+m).progressbar({value:0});a("#"+l).progressbar({value:0});a("#"+l+" > div").css({background:"#28F828",
|
19 |
border:"#08A908 1px solid"});t()}})};typeof a.xLazyLoader==="function"?b():a.getScript(t_jp.plugin_url+"/js/lazy.js",b)}else t();t_jp.edit&&a.getScript(t_jp.plugin_url+"/js/transposhedit.js")})})(jQuery);
|
1 |
/*
|
2 |
+
* Transposh v0.7.4
|
3 |
* http://transposh.org/
|
4 |
*
|
5 |
* Copyright 2011, Team Transposh
|
6 |
* Licensed under the GPL Version 2 or higher.
|
7 |
* http://transposh.org/license
|
8 |
*
|
9 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
10 |
*/
|
11 |
(function(a){function v(b,e){if(a.trim(e).length!==0){var c=function(){var d=a(this).attr("id").substr(a(this).attr("id").lastIndexOf("_")+1),f=a("#"+h+"img_"+d);a("#"+h+d).attr("data-source",1);f.removeClass("tr-icon-yellow").removeClass("tr-icon-green").addClass("tr-icon-yellow")};a("*[data-token='"+b+"'][data-hidden!='y']").html(e).each(c);a("*[data-token='"+b+"'][data-hidden='y']").attr("data-trans",e).each(c)}}function w(b,e){clearTimeout(p);i.push(b);n.push(e);v(b,e);p=setTimeout(function(){var c=
|
12 |
{ln0:t_jp.lang,sr0:o,translation_posted:"2",items:i.length},d;for(d=0;d<i.length;d+=1){c["tk"+d]=i[d];c["tr"+d]=n[d];q+=a("*[data-token='"+i[d]+"']").size()}a.ajax({type:"POST",url:t_jp.post_url,data:c,success:function(){var f=q/k*100;t_jp.progress&&a("#"+l).progressbar("value",f)}});n=[];i=[]},200)}function j(b,e){w(b,a("<div>"+a.trim(e)+"</div>").text());var c=(k-a("."+h+'[data-source=""]').size())/k*100;t_jp.progress&&a("#"+m).progressbar("value",c)}function x(b,e,c){var d="",f="";a(b).each(function(g){d+=
|
14 |
function y(b,e){var c="[";a(b).each(function(d){c+='"'+encodeURIComponent(b[d])+'",'});c=c.slice(0,-1)+"]";a.ajax({url:"http://api.microsofttranslator.com/V2/Ajax.svc/TranslateArray?appId="+t_jp.MSN_APPID+"&to="+t_jp.binglang+"&texts="+c,dataType:"jsonp",jsonp:"oncomplete",success:e})}function z(b,e){o=2;y(e,function(c){a(c).each(function(d){j(b[d],this.TranslatedText)})})}function A(b,e){a.getJSON(t_jp.post_url+"?tgp="+e+"&tgl="+t_jp.lang,function(c){c.sentences!==undefined&&c.sentences[0].trans&&
|
15 |
j(b,c.sentences[0].trans)})}function B(b,e){var c="";a(b).each(function(d){c+="&q="+encodeURIComponent(b[d])});a.ajax({url:"http://api.apertium.org/json/translate?"+c+"&langpair="+t_jp.olang+"%7C"+t_jp.lang+"&markUnknown=no",dataType:"jsonp",success:e})}function C(b,e){o=3;B(e,function(c){if(c.responseStatus>=200&&c.responseStatus<300)c.responseData.translatedText!==undefined?j(b[0],c.responseData.translatedText):a(c.responseData).each(function(d){this.responseStatus===200&&j(b[d],this.responseData.translatedText)})})}
|
16 |
function s(b,e){if(t_jp.msn&&t_jp.preferred==="2")z(b,e);else if(t_jp.apertium&&(t_jp.olang==="en"||t_jp.olang==="es"))C(b,e);else if(t_jp.tgp)e[0]&&A(b[0],e[0]);else r(b,e,false)}function t(){var b=[],e=0,c=[],d=[];if(t_jp.tgp)u=0;a("."+h+'[data-source=""]').each(function(){var f=a(this).attr("data-token"),g=a(this).attr("data-orig");if(g===undefined)g=a(this).html();if(b[g]!==1){b[g]=1;if(e+g.length>u){s(d,c);e=0;c=[];d=[]}e+=g.length;d.push(f);c.push(g)}});s(d,c)}var u=128,k,h=t_jp.prefix,m=h+
|
17 |
+
"pbar",l=m+"_s",o=1,q=0,p,i=[],n=[];t_jp.MSN_APPID="FACA8E2DF8DCCECE0DC311C6E57DA98EFEFA9BC6";t_jp.jQueryUI="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.13/";a(document).ready(function(){if(t_jp.msn){t_jp.binglang=t_jp.lang;if(t_jp.binglang==="zh")t_jp.binglang="zh-chs";else if(t_jp.binglang==="zh-tw")t_jp.binglang="zh-cht"}a("#"+h+"setdeflang").click(function(){a.get(t_jp.post_url+"?tr_cookie="+Math.random());a(this).hide("slow");return false});k=a("."+h+'[data-source=""]').size();a.ajaxSetup({cache:true});
|
18 |
if(k&&!t_jp.noauto&&(t_jp.google||t_jp.msn||t_jp.apertium||t_jp.tgp))if(t_jp.progress){var b=function(){a.xLazyLoader({js:t_jp.jQueryUI+"jquery-ui.min.js",css:t_jp.jQueryUI+"themes/"+t_jp.theme+"/jquery-ui.css",success:function(){a("#"+h+"credit").css({overflow:"auto"}).append('<div style="float: left;width: 90%;height: 10px" id="'+m+'"/><div style="margin-bottom:10px;float:left;width: 90%;height: 10px" id="'+l+'"/>');a("#"+m).progressbar({value:0});a("#"+l).progressbar({value:0});a("#"+l+" > div").css({background:"#28F828",
|
19 |
border:"#08A908 1px solid"});t()}})};typeof a.xLazyLoader==="function"?b():a.getScript(t_jp.plugin_url+"/js/lazy.js",b)}else t();t_jp.edit&&a.getScript(t_jp.plugin_url+"/js/transposhedit.js")})})(jQuery);
|
@@ -1,12 +1,12 @@
|
|
1 |
/*
|
2 |
-
* Transposh v0.7.
|
3 |
* http://transposh.org/
|
4 |
*
|
5 |
* Copyright 2011, Team Transposh
|
6 |
* Licensed under the GPL Version 2 or higher.
|
7 |
* http://transposh.org/license
|
8 |
*
|
9 |
-
* Date:
|
10 |
*/
|
11 |
var timer,items=0,translations=[],tokens=[],langs=[],sources=[],BATCH_SIZE=128,pair_count=0,curr_pair=0;t_jp.MSN_APPID="FACA8E2DF8DCCECE0DC311C6E57DA98EFEFA9BC6";function make_progress(e,b){curr_pair+=1;jQuery("#progress_bar").progressbar("value",curr_pair/pair_count*100);jQuery("#p").text("("+b+") "+e);curr_pair===pair_count&&jQuery("#tr_loading").data("done",true)}
|
12 |
function ajax_translate_me(e,b,c,d){b=jQuery("<div>"+jQuery.trim(b)+"</div>").text();make_progress(b,c);clearTimeout(timer);items+=1;tokens.push(e);translations.push(b);langs.push(c);sources.push(d);timer=setTimeout(function(){var f={translation_posted:"2",items:items},a;for(a=0;a<items;a+=1){if(tokens[a]!==tokens[a-1])f["tk"+a]=tokens[a];if(langs[a]!==langs[a-1])f["ln"+a]=langs[a];if(translations[a]!==translations[a-1])f["tr"+a]=translations[a];if(sources[a]!==sources[a-1])f["sr"+a]=sources[a]}jQuery.ajax({type:"POST",
|
1 |
/*
|
2 |
+
* Transposh v0.7.4
|
3 |
* http://transposh.org/
|
4 |
*
|
5 |
* Copyright 2011, Team Transposh
|
6 |
* Licensed under the GPL Version 2 or higher.
|
7 |
* http://transposh.org/license
|
8 |
*
|
9 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
10 |
*/
|
11 |
var timer,items=0,translations=[],tokens=[],langs=[],sources=[],BATCH_SIZE=128,pair_count=0,curr_pair=0;t_jp.MSN_APPID="FACA8E2DF8DCCECE0DC311C6E57DA98EFEFA9BC6";function make_progress(e,b){curr_pair+=1;jQuery("#progress_bar").progressbar("value",curr_pair/pair_count*100);jQuery("#p").text("("+b+") "+e);curr_pair===pair_count&&jQuery("#tr_loading").data("done",true)}
|
12 |
function ajax_translate_me(e,b,c,d){b=jQuery("<div>"+jQuery.trim(b)+"</div>").text();make_progress(b,c);clearTimeout(timer);items+=1;tokens.push(e);translations.push(b);langs.push(c);sources.push(d);timer=setTimeout(function(){var f={translation_posted:"2",items:items},a;for(a=0;a<items;a+=1){if(tokens[a]!==tokens[a-1])f["tk"+a]=tokens[a];if(langs[a]!==langs[a-1])f["ln"+a]=langs[a];if(translations[a]!==translations[a-1])f["tr"+a]=translations[a];if(sources[a]!==sources[a-1])f["sr"+a]=sources[a]}jQuery.ajax({type:"POST",
|
@@ -1,12 +1,12 @@
|
|
1 |
/*
|
2 |
-
* Transposh v0.7.
|
3 |
* http://transposh.org/
|
4 |
*
|
5 |
* Copyright 2011, Team Transposh
|
6 |
* Licensed under the GPL Version 2 or higher.
|
7 |
* http://transposh.org/license
|
8 |
*
|
9 |
-
* Date:
|
10 |
*/
|
11 |
jQuery(function(){jQuery("#tr_anon").click(function(){if(jQuery("#tr_anon").attr("checked")){jQuery(".translateable").addClass("active").removeClass("translateable");jQuery("#sortable .active").each(function(){jQuery("input",this).val(jQuery(this).attr("id")+",v,t")})}jQuery("#yellowcolor").toggleClass("hidden")});jQuery("#sortable").sortable({placeholder:"highlight",update:function(b,a){a.item.unbind("click");a.item.one("click",function(c){c.stopImmediatePropagation();jQuery(this).click(clickfunction)})}});
|
12 |
jQuery("#sortable").disableSelection();jQuery("#changename").click(function(){jQuery(".langname").toggleClass("hidden");return false});jQuery("#selectall").click(function(){jQuery("#sortable .languages").addClass("active").removeClass("translateable");jQuery("#sortable .active").each(function(){jQuery("input",this).val(jQuery(this).attr("id")+",v,t")});return false});clickfunction=function(){if(jQuery(this).attr("id")!=jQuery("#default_list li").attr("id")){if(jQuery("#tr_anon").attr("checked"))jQuery(this).toggleClass("active");
|
1 |
/*
|
2 |
+
* Transposh v0.7.4
|
3 |
* http://transposh.org/
|
4 |
*
|
5 |
* Copyright 2011, Team Transposh
|
6 |
* Licensed under the GPL Version 2 or higher.
|
7 |
* http://transposh.org/license
|
8 |
*
|
9 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
10 |
*/
|
11 |
jQuery(function(){jQuery("#tr_anon").click(function(){if(jQuery("#tr_anon").attr("checked")){jQuery(".translateable").addClass("active").removeClass("translateable");jQuery("#sortable .active").each(function(){jQuery("input",this).val(jQuery(this).attr("id")+",v,t")})}jQuery("#yellowcolor").toggleClass("hidden")});jQuery("#sortable").sortable({placeholder:"highlight",update:function(b,a){a.item.unbind("click");a.item.one("click",function(c){c.stopImmediatePropagation();jQuery(this).click(clickfunction)})}});
|
12 |
jQuery("#sortable").disableSelection();jQuery("#changename").click(function(){jQuery(".langname").toggleClass("hidden");return false});jQuery("#selectall").click(function(){jQuery("#sortable .languages").addClass("active").removeClass("translateable");jQuery("#sortable .active").each(function(){jQuery("input",this).val(jQuery(this).attr("id")+",v,t")});return false});clickfunction=function(){if(jQuery(this).attr("id")!=jQuery("#default_list li").attr("id")){if(jQuery("#tr_anon").attr("checked"))jQuery(this).toggleClass("active");
|
@@ -1,12 +1,12 @@
|
|
1 |
/*
|
2 |
-
* Transposh v0.7.
|
3 |
* http://transposh.org/
|
4 |
*
|
5 |
* Copyright 2011, Team Transposh
|
6 |
* Licensed under the GPL Version 2 or higher.
|
7 |
* http://transposh.org/license
|
8 |
*
|
9 |
-
* Date:
|
10 |
*/
|
11 |
(function(a){function f(c){var d;if(typeof t_jp.l==="object"&&(d=t_jp.l[c]))return d;return c}function t(c,d,j){if(a.trim(d).length===0)d=a("[data-token='"+c+"']").attr("data-orig");var h=function(){var g=a(this).attr("id").substr(a(this).attr("id").lastIndexOf("_")+1),m=a(b+"img_"+g);a(b+g).attr("data-source",j);m.removeClass("tr-icon-yellow").removeClass("tr-icon-green");if(j==0)m.addClass("tr-icon-green");else j&&m.addClass("tr-icon-yellow")};a("*[data-token='"+c+"'][data-hidden!='y']").html(d).each(h);
|
12 |
a("*[data-token='"+c+"'][data-hidden='y']").attr("data-trans",d).each(h);a(b+"translation").data("origval",d);a(b+"translation").keyup()}function w(c,d){t(c,d,0);a.ajax({type:"POST",url:t_jp.post_url,data:{ln0:t_jp.lang,sr0:0,translation_posted:"2",items:1,tk0:c,tr0:d},success:function(){},error:function(j){alert("Error !!! failed to translate.\n\nServer's message: "+j.statusText)}})}function x(c,d){a.ajax({url:"http://ajax.googleapis.com/ajax/services/language/translate?v=1.0&q="+encodeURIComponent(c)+
|
1 |
/*
|
2 |
+
* Transposh v0.7.4
|
3 |
* http://transposh.org/
|
4 |
*
|
5 |
* Copyright 2011, Team Transposh
|
6 |
* Licensed under the GPL Version 2 or higher.
|
7 |
* http://transposh.org/license
|
8 |
*
|
9 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
10 |
*/
|
11 |
(function(a){function f(c){var d;if(typeof t_jp.l==="object"&&(d=t_jp.l[c]))return d;return c}function t(c,d,j){if(a.trim(d).length===0)d=a("[data-token='"+c+"']").attr("data-orig");var h=function(){var g=a(this).attr("id").substr(a(this).attr("id").lastIndexOf("_")+1),m=a(b+"img_"+g);a(b+g).attr("data-source",j);m.removeClass("tr-icon-yellow").removeClass("tr-icon-green");if(j==0)m.addClass("tr-icon-green");else j&&m.addClass("tr-icon-yellow")};a("*[data-token='"+c+"'][data-hidden!='y']").html(d).each(h);
|
12 |
a("*[data-token='"+c+"'][data-hidden='y']").attr("data-trans",d).each(h);a(b+"translation").data("origval",d);a(b+"translation").keyup()}function w(c,d){t(c,d,0);a.ajax({type:"POST",url:t_jp.post_url,data:{ln0:t_jp.lang,sr0:0,translation_posted:"2",items:1,tk0:c,tr0:d},success:function(){},error:function(j){alert("Error !!! failed to translate.\n\nServer's message: "+j.statusText)}})}function x(c,d){a.ajax({url:"http://ajax.googleapis.com/ajax/services/language/translate?v=1.0&q="+encodeURIComponent(c)+
|
Binary file
|
@@ -0,0 +1,497 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: transposh-translation-filter-for-wordpress.0.7.3\n"
|
4 |
+
"Report-Msgid-Bugs-To: http://wordpress.org/tag/transposh-translation-filter-for-wordpress\n"
|
5 |
+
"POT-Creation-Date: 2011-01-16 21:56:35+00:00\n"
|
6 |
+
"PO-Revision-Date: 2011-05-05 10:19+0100\n"
|
7 |
+
"Last-Translator: Rene <info@wpwebshop.com>\n"
|
8 |
+
"Language-Team: German\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
13 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
14 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
15 |
+
"X-Textdomain-Support: yes\n"
|
16 |
+
"X-Poedit-Basepath: .\n"
|
17 |
+
"X-Poedit-Language: German\n"
|
18 |
+
"X-Poedit-Country: GERMANY\n"
|
19 |
+
"X-Poedit-SearchPath-0: .\n"
|
20 |
+
|
21 |
+
# @ transposh
|
22 |
+
#: wp/transposh_db.php:638
|
23 |
+
msgid "Database stats"
|
24 |
+
msgstr "Datenbankstatistiken"
|
25 |
+
|
26 |
+
# @ transposh
|
27 |
+
#: wp/transposh_db.php:643
|
28 |
+
msgid "Total of <strong style=\"color:red\">%s</strong> translated phrases."
|
29 |
+
msgstr "Total aus <strong style=\"color:red\">%s</strong> übersetzte Phrasen."
|
30 |
+
|
31 |
+
# @ transposh
|
32 |
+
#: wp/transposh_db.php:650
|
33 |
+
msgid "<strong>%1s</strong> has <strong style=\"color:red\">%2s</strong> human translated phrases."
|
34 |
+
msgstr "<strong>%1s</strong> hat <strong style=\"color:red\">%2s</strong> geänderte Übersetzungen."
|
35 |
+
|
36 |
+
# @ transposh
|
37 |
+
#: wp/transposh_db.php:653
|
38 |
+
msgid "Recent activity"
|
39 |
+
msgstr "Neueste Aktivität"
|
40 |
+
|
41 |
+
# @ transposh
|
42 |
+
#: wp/transposh_db.php:658
|
43 |
+
msgid "On <strong>%1s</strong><br/>user <strong>%2s</strong> translated<br/>\"<strong>%3s</strong>\"<br/>to <strong style=\"color:red\">%4s</strong><br/>\"<strong>%5s</strong>\""
|
44 |
+
msgstr "Auf <strong>%1s</strong><br/>benutzer <strong>%2s</strong> übersetzt<br/>\"<strong>%3s</strong>\"<br/>nach <strong style=\"color:red\">%4s</strong><br/>\"<strong>%5s</strong>\""
|
45 |
+
|
46 |
+
# @ buddypress
|
47 |
+
#: wp/transposh_3rdparty.php:147
|
48 |
+
msgid "%s translated a phrase to %s with transposh:"
|
49 |
+
msgstr "%s hat eine Phrase mit transposh nach %s übersetzt:"
|
50 |
+
|
51 |
+
# @ transposh
|
52 |
+
#: wp/transposh_postpublish.php:49
|
53 |
+
#: wp/transposh_postpublish.php:50
|
54 |
+
#: wp/transposh_admin.php:150
|
55 |
+
#: wp/transposh_admin.php:215
|
56 |
+
#: wp/transposh_widget.php:88
|
57 |
+
#: wp/transposh_widget.php:91
|
58 |
+
#: wp/transposh_widget.php:252
|
59 |
+
msgid "Transposh"
|
60 |
+
msgstr "Transposh"
|
61 |
+
|
62 |
+
# @ transposh
|
63 |
+
#: wp/transposh_admin.php:140
|
64 |
+
msgid "Transposh makes your blog translatable"
|
65 |
+
msgstr "Transposh macht Ihren Blog übersetzbar"
|
66 |
+
|
67 |
+
# @ transposh
|
68 |
+
#: wp/transposh_admin.php:141
|
69 |
+
msgid "Plugin homepage"
|
70 |
+
msgstr "Plugin Startseite"
|
71 |
+
|
72 |
+
# @ transposh
|
73 |
+
#: wp/transposh_admin.php:142
|
74 |
+
msgid "Frequently asked questions"
|
75 |
+
msgstr "Häufig gestellte Fragen"
|
76 |
+
|
77 |
+
# @ transposh
|
78 |
+
#: wp/transposh_admin.php:150
|
79 |
+
msgid "Transposh control center"
|
80 |
+
msgstr "Transposh Kontrollzentrum"
|
81 |
+
|
82 |
+
# @ transposh
|
83 |
+
#: wp/transposh_admin.php:190
|
84 |
+
msgid "About this plugin"
|
85 |
+
msgstr "Über dieses Plug-In"
|
86 |
+
|
87 |
+
# @ transposh
|
88 |
+
#: wp/transposh_admin.php:191
|
89 |
+
msgid "Widget settings"
|
90 |
+
msgstr "Widget-Einstellungen"
|
91 |
+
|
92 |
+
# @ transposh
|
93 |
+
#: wp/transposh_admin.php:192
|
94 |
+
msgid "Plugin news"
|
95 |
+
msgstr "Plug-In News"
|
96 |
+
|
97 |
+
# @ transposh
|
98 |
+
#: wp/transposh_admin.php:193
|
99 |
+
msgid "Plugin stats"
|
100 |
+
msgstr "Plug-In Stats"
|
101 |
+
|
102 |
+
# @ transposh
|
103 |
+
#: wp/transposh_admin.php:194
|
104 |
+
msgid "Translate all"
|
105 |
+
msgstr "Alles übersetzen"
|
106 |
+
|
107 |
+
# @ transposh
|
108 |
+
#: wp/transposh_admin.php:195
|
109 |
+
msgid "Supported languages"
|
110 |
+
msgstr "Unterstützte Sprachen"
|
111 |
+
|
112 |
+
# @ transposh
|
113 |
+
#: wp/transposh_admin.php:196
|
114 |
+
msgid "Translation settings"
|
115 |
+
msgstr "Übersetzungseinstellungen"
|
116 |
+
|
117 |
+
# @ transposh
|
118 |
+
#: wp/transposh_admin.php:197
|
119 |
+
msgid "Automatic translation settings"
|
120 |
+
msgstr "Automatische Übersetzungseinstellungen"
|
121 |
+
|
122 |
+
# @ transposh
|
123 |
+
#: wp/transposh_admin.php:198
|
124 |
+
msgid "Generic settings"
|
125 |
+
msgstr "Allgemeine Einstellungen"
|
126 |
+
|
127 |
+
# @ transposh
|
128 |
+
#: wp/transposh_admin.php:199
|
129 |
+
msgid "Database maintenance"
|
130 |
+
msgstr "Datenbankwartung"
|
131 |
+
|
132 |
+
# @ transposh
|
133 |
+
#: wp/transposh_admin.php:208
|
134 |
+
msgid "Transposh community features"
|
135 |
+
msgstr "Transposh Gemeinschaftsfeatures"
|
136 |
+
|
137 |
+
# @ default
|
138 |
+
#: wp/transposh_admin.php:236
|
139 |
+
msgid "Save Changes"
|
140 |
+
msgstr "Änderungen speichern"
|
141 |
+
|
142 |
+
# @ transposh
|
143 |
+
#: wp/transposh_admin.php:260
|
144 |
+
msgid "Problems?"
|
145 |
+
msgstr "Probleme?"
|
146 |
+
|
147 |
+
# @ transposh
|
148 |
+
#: wp/transposh_admin.php:278
|
149 |
+
msgid "Plugin Homepage"
|
150 |
+
msgstr "Plug-In Startseite"
|
151 |
+
|
152 |
+
# @ transposh
|
153 |
+
#: wp/transposh_admin.php:279
|
154 |
+
msgid "Suggest a Feature"
|
155 |
+
msgstr "Feature vorschlagen"
|
156 |
+
|
157 |
+
# @ transposh
|
158 |
+
#: wp/transposh_admin.php:281
|
159 |
+
msgid "Report a Bug"
|
160 |
+
msgstr "Bug berichten"
|
161 |
+
|
162 |
+
# @ transposh
|
163 |
+
#: wp/transposh_admin.php:302
|
164 |
+
msgid "Translate by clicking the button below"
|
165 |
+
msgstr "Klicken Sie den nachstehenden Button um zu übersetzen"
|
166 |
+
|
167 |
+
# @ transposh
|
168 |
+
#: wp/transposh_admin.php:303
|
169 |
+
msgid "Translate All Now"
|
170 |
+
msgstr "Alles jetzt übersetzen"
|
171 |
+
|
172 |
+
# @ transposh
|
173 |
+
#: wp/transposh_admin.php:360
|
174 |
+
msgid "Default Language (drag another language here to make it default)"
|
175 |
+
msgstr "Standardsprache (ziehe eine andere Sprache um sie standard zu machen)"
|
176 |
+
|
177 |
+
# @ transposh
|
178 |
+
#: wp/transposh_admin.php:367
|
179 |
+
msgid "Available Languages (Click to toggle language state - Drag to sort in the widget)"
|
180 |
+
msgstr "Verfügbare Sprachen (ein/ausschalten durch klicken - ziehen für Reihenfolge im Widget)"
|
181 |
+
|
182 |
+
# @ transposh
|
183 |
+
#: wp/transposh_admin.php:377
|
184 |
+
msgid "Language supported by google translate"
|
185 |
+
msgstr "Sprache unterstützt durch Google Translate"
|
186 |
+
|
187 |
+
# @ transposh
|
188 |
+
#: wp/transposh_admin.php:379
|
189 |
+
msgid "Language supported by bing translate"
|
190 |
+
msgstr "Sprache unterstützt durch Bing Translate"
|
191 |
+
|
192 |
+
# @ transposh
|
193 |
+
#: wp/transposh_admin.php:381
|
194 |
+
msgid "Language supported by apertium translate"
|
195 |
+
msgstr "Sprache unterstützt durch Apertium Translate"
|
196 |
+
|
197 |
+
# @ transposh
|
198 |
+
#: wp/transposh_admin.php:383
|
199 |
+
msgid "Language is written from right to left"
|
200 |
+
msgstr "Sprache wird von rechts nach links geschrieben"
|
201 |
+
|
202 |
+
# @ transposh
|
203 |
+
#: wp/transposh_admin.php:388
|
204 |
+
msgid "Display options:"
|
205 |
+
msgstr "Wiedergabeoptionen:"
|
206 |
+
|
207 |
+
# @ transposh
|
208 |
+
#: wp/transposh_admin.php:389
|
209 |
+
msgid "Toggle names of languages between English and Original"
|
210 |
+
msgstr "Namen der Sprachen zwischen Englisch und Original umschalten"
|
211 |
+
|
212 |
+
# @ transposh
|
213 |
+
#: wp/transposh_admin.php:390
|
214 |
+
msgid "Make all languages active"
|
215 |
+
msgstr "Alle Sprachen aktivieren"
|
216 |
+
|
217 |
+
# @ transposh
|
218 |
+
#: wp/transposh_admin.php:391
|
219 |
+
msgid "Sort by language name"
|
220 |
+
msgstr "Sortieren nach Sprache"
|
221 |
+
|
222 |
+
# @ transposh
|
223 |
+
#: wp/transposh_admin.php:392
|
224 |
+
msgid "Sort by lSO code"
|
225 |
+
msgstr "Sortieren nach ISO-Kode"
|
226 |
+
|
227 |
+
# @ transposh
|
228 |
+
#: wp/transposh_admin.php:393
|
229 |
+
msgid "Legend:"
|
230 |
+
msgstr "Legende:"
|
231 |
+
|
232 |
+
# @ transposh
|
233 |
+
#: wp/transposh_admin.php:393
|
234 |
+
msgid "Green - active"
|
235 |
+
msgstr "Grün - aktiv"
|
236 |
+
|
237 |
+
# @ transposh
|
238 |
+
#: wp/transposh_admin.php:393
|
239 |
+
msgid "Yellow - translateable (only translators will see this language)"
|
240 |
+
msgstr "Gelb - übersetzbar (nur Übersetzer sehen diese Sprache)"
|
241 |
+
|
242 |
+
# @ transposh
|
243 |
+
#: wp/transposh_admin.php:393
|
244 |
+
msgid "blank - inactive"
|
245 |
+
msgstr "Leer - nicht aktiv"
|
246 |
+
|
247 |
+
# @ transposh
|
248 |
+
#: wp/transposh_admin.php:410
|
249 |
+
msgid "Who can translate ?"
|
250 |
+
msgstr "Wer kann übersetzen?"
|
251 |
+
|
252 |
+
# @ transposh
|
253 |
+
#: wp/transposh_admin.php:417
|
254 |
+
msgid "Anonymous"
|
255 |
+
msgstr "Anonym"
|
256 |
+
|
257 |
+
# @ transposh
|
258 |
+
#: wp/transposh_admin.php:423
|
259 |
+
msgid "Enable default language translation"
|
260 |
+
msgstr "Standard Sprache Übersetzung aktivieren"
|
261 |
+
|
262 |
+
# @ transposh
|
263 |
+
#: wp/transposh_admin.php:425
|
264 |
+
msgid "Allow translation of default language - useful for sites with more than one major language"
|
265 |
+
msgstr "Die standard Sprache übersetzen - nützlich für Blogs mit mehreren Hauptsprachen"
|
266 |
+
|
267 |
+
# @ transposh
|
268 |
+
#: wp/transposh_admin.php:432
|
269 |
+
msgid "Enable search in translated languages"
|
270 |
+
msgstr "Suchen in übersetzten Sprachen aktivieren"
|
271 |
+
|
272 |
+
# @ transposh
|
273 |
+
#: wp/transposh_admin.php:434
|
274 |
+
msgid "Allow search of translated languages, in those languages (and the original language)"
|
275 |
+
msgstr "Suchen in Übersetzungen zulassen, in Sprache der Übersetzung (und in originaler Sprache)"
|
276 |
+
|
277 |
+
# @ transposh
|
278 |
+
#: wp/transposh_admin.php:441
|
279 |
+
msgid "Enable url translation"
|
280 |
+
msgstr "URL-Übersetzung aktivieren"
|
281 |
+
|
282 |
+
# @ transposh
|
283 |
+
#: wp/transposh_admin.php:441
|
284 |
+
#: wp/transposh_admin.php:450
|
285 |
+
msgid "experimental"
|
286 |
+
msgstr "experimental"
|
287 |
+
|
288 |
+
# @ transposh
|
289 |
+
#: wp/transposh_admin.php:443
|
290 |
+
msgid "Allow translation of permalinks and urls"
|
291 |
+
msgstr "Übersetzung von Permalinks und URLs aktivieren"
|
292 |
+
|
293 |
+
# @ transposh
|
294 |
+
#: wp/transposh_admin.php:450
|
295 |
+
msgid "Enable gettext integration"
|
296 |
+
msgstr "Gettext Integration aktivieren"
|
297 |
+
|
298 |
+
# @ transposh
|
299 |
+
#: wp/transposh_admin.php:452
|
300 |
+
msgid "Enable integration of Transposh with existing gettext interface (.po/.mo files)"
|
301 |
+
msgstr "Integration von Transposh mit vorhandenen Gettext-Interface aktivieren (.po/.mo-Dateien)"
|
302 |
+
|
303 |
+
# @ transposh
|
304 |
+
#: wp/transposh_admin.php:461
|
305 |
+
msgid "Enable automatic translation"
|
306 |
+
msgstr "Automatische Übersetzungen aktivieren"
|
307 |
+
|
308 |
+
# @ transposh
|
309 |
+
#: wp/transposh_admin.php:463
|
310 |
+
msgid "Allow automatic translation of pages"
|
311 |
+
msgstr "Automatische Übersetzung von Webseiten zulassen"
|
312 |
+
|
313 |
+
# @ transposh
|
314 |
+
#: wp/transposh_admin.php:469
|
315 |
+
msgid "Enable automatic translation after posting"
|
316 |
+
msgstr "Automatische Übersetzung nach beitragen aktivieren"
|
317 |
+
|
318 |
+
# @ transposh
|
319 |
+
#: wp/transposh_admin.php:471
|
320 |
+
msgid "Do automatic translation immediately after a post has been published"
|
321 |
+
msgstr "Automatische Übersetzung gleich nach dem Veröffentlichen eines Berichts aktivieren"
|
322 |
+
|
323 |
+
# @ transposh
|
324 |
+
#: wp/transposh_admin.php:476
|
325 |
+
msgid "Select preferred auto translation engine"
|
326 |
+
msgstr "Bevorzugte Übersetzungsmaschine selektieren"
|
327 |
+
|
328 |
+
# @ transposh
|
329 |
+
#: wp/transposh_admin.php:477
|
330 |
+
msgid "Translation engine:"
|
331 |
+
msgstr "Übersetzungsmaschine"
|
332 |
+
|
333 |
+
# @ transposh
|
334 |
+
#: wp/transposh_admin.php:479
|
335 |
+
msgid "Google"
|
336 |
+
msgstr "Google"
|
337 |
+
|
338 |
+
# @ transposh
|
339 |
+
#: wp/transposh_admin.php:480
|
340 |
+
msgid "Bing"
|
341 |
+
msgstr "Bing"
|
342 |
+
|
343 |
+
# @ transposh
|
344 |
+
#: wp/transposh_admin.php:490
|
345 |
+
msgid "Rewrite URLs"
|
346 |
+
msgstr "URLs neu schreiben"
|
347 |
+
|
348 |
+
# @ transposh
|
349 |
+
#: wp/transposh_admin.php:501
|
350 |
+
msgid "Add scripts to footer"
|
351 |
+
msgstr "Skripts an der Fußzeile zufügen"
|
352 |
+
|
353 |
+
# @ transposh
|
354 |
+
#: wp/transposh_admin.php:510
|
355 |
+
msgid "Auto detect language for users"
|
356 |
+
msgstr "Benutzersprache automatisch erkennen"
|
357 |
+
|
358 |
+
# @ transposh
|
359 |
+
#: wp/transposh_admin.php:523
|
360 |
+
msgid "Delete all automated translations"
|
361 |
+
msgstr "Alle automatischen Übersetzungen löschen"
|
362 |
+
|
363 |
+
# @ transposh
|
364 |
+
#: wp/transposh_admin.php:524
|
365 |
+
msgid "Delete automated translations older than 14 days"
|
366 |
+
msgstr "Automatische Übersetzungen älter als 14 Tage löschen"
|
367 |
+
|
368 |
+
# @ transposh
|
369 |
+
#: wp/transposh_admin.php:525
|
370 |
+
msgid "Attempt to fix errors caused by previous versions - please backup first"
|
371 |
+
msgstr "Versuch Fehler verursacht von vorherigen Versionen zu reparieren - bitte zuerst sichern"
|
372 |
+
|
373 |
+
# @ transposh
|
374 |
+
#: wp/transposh_admin.php:529
|
375 |
+
msgid "Backup service for human translation"
|
376 |
+
msgstr "Sicherungsdienst für menschliche Übersetzung"
|
377 |
+
|
378 |
+
# @ transposh
|
379 |
+
#: wp/transposh_admin.php:530
|
380 |
+
msgid "Enable daily backup"
|
381 |
+
msgstr "Tägliche Sicherung aktivieren"
|
382 |
+
|
383 |
+
# @ transposh
|
384 |
+
#: wp/transposh_admin.php:531
|
385 |
+
msgid "Enable live backup"
|
386 |
+
msgstr "Live Sicherung aktivieren"
|
387 |
+
|
388 |
+
# @ transposh
|
389 |
+
#: wp/transposh_admin.php:532
|
390 |
+
msgid "Disable backup (Can be run manually by clicking the button below)"
|
391 |
+
msgstr "Sicherung deaktivieren (kann man manuell machen durch klicken der unterstehenden Schaltfläche)"
|
392 |
+
|
393 |
+
# @ transposh
|
394 |
+
#: wp/transposh_admin.php:533
|
395 |
+
msgid "Service Key:"
|
396 |
+
msgstr "Dienstschlüssel:"
|
397 |
+
|
398 |
+
# @ transposh
|
399 |
+
#: wp/transposh_admin.php:533
|
400 |
+
msgid "How to restore?"
|
401 |
+
msgstr "Wie wiederherstellen?"
|
402 |
+
|
403 |
+
# @ transposh
|
404 |
+
#: wp/transposh_admin.php:535
|
405 |
+
msgid "Do Backup Now"
|
406 |
+
msgstr "Jetzt sichern"
|
407 |
+
|
408 |
+
# @ transposh
|
409 |
+
#: wp/transposh_widget.php:88
|
410 |
+
msgid "Transposh language selection widget"
|
411 |
+
msgstr "Transposh Spracheselektionswidget"
|
412 |
+
|
413 |
+
# @ transposh
|
414 |
+
#: wp/transposh_widget.php:209
|
415 |
+
msgid "Translation"
|
416 |
+
msgstr "Übersetzung"
|
417 |
+
|
418 |
+
# @ transposh
|
419 |
+
#: wp/transposh_widget.php:222
|
420 |
+
msgid "Set as default language"
|
421 |
+
msgstr "Als Standardsprache festlegen"
|
422 |
+
|
423 |
+
# @ transposh
|
424 |
+
#: wp/transposh_widget.php:255
|
425 |
+
msgid "translation plugin for wordpress"
|
426 |
+
msgstr "Übersetzungs-Plug-In für WordPress"
|
427 |
+
|
428 |
+
# @ transposh
|
429 |
+
#: wp/transposh_widget.php:258
|
430 |
+
msgid "wordpress translation plugin"
|
431 |
+
msgstr "WordPress Übersetzung Plug-In"
|
432 |
+
|
433 |
+
# @ transposh
|
434 |
+
#: wp/transposh_widget.php:261
|
435 |
+
msgid "translate your blog to 60+ languages"
|
436 |
+
msgstr "Übersetzen Sie Ihren Blog nach 60+ Sprachen"
|
437 |
+
|
438 |
+
# @ transposh
|
439 |
+
#: wp/transposh_widget.php:264
|
440 |
+
msgid "website crowdsourcing translation plugin"
|
441 |
+
msgstr "Website Crowdsourcing Übersetzungs-Plug-In"
|
442 |
+
|
443 |
+
# @ transposh
|
444 |
+
#: wp/transposh_widget.php:267
|
445 |
+
msgid "google translate and bing translate plugin for wordpress"
|
446 |
+
msgstr "Google Translate und Bing Translate Plug-In für WordPress"
|
447 |
+
|
448 |
+
# @ transposh
|
449 |
+
#: wp/transposh_widget.php:363
|
450 |
+
msgid "Style:"
|
451 |
+
msgstr "Still:"
|
452 |
+
|
453 |
+
# @ transposh
|
454 |
+
#: wp/transposh_widget.php:372
|
455 |
+
msgid "Effects:"
|
456 |
+
msgstr "Effekte:"
|
457 |
+
|
458 |
+
# @ transposh
|
459 |
+
#: wp/transposh_widget.php:374
|
460 |
+
msgid "Show progress bar when a client triggers automatic translation"
|
461 |
+
msgstr "Statusanzeige zeigen wenn Benutzer automatische Übersetzung aktiviert"
|
462 |
+
|
463 |
+
# @ transposh
|
464 |
+
#: wp/transposh_widget.php:374
|
465 |
+
msgid "Show progress bar"
|
466 |
+
msgstr "Statusanzeige zeigen"
|
467 |
+
|
468 |
+
# @ transposh
|
469 |
+
#: wp/transposh_widget.php:376
|
470 |
+
msgid "Widget will allow setting this language as user default"
|
471 |
+
msgstr "Widget erlaubt Einstellung dieser Sprache als standard"
|
472 |
+
|
473 |
+
# @ transposh
|
474 |
+
#: wp/transposh_widget.php:376
|
475 |
+
msgid "Allow user to set current language as default"
|
476 |
+
msgstr "Benutzer erlauben aktuelle Sprache als standard festzulegen"
|
477 |
+
|
478 |
+
# @ transposh
|
479 |
+
#: wp/transposh_widget.php:378
|
480 |
+
msgid "Transposh logo will not appear on widget"
|
481 |
+
msgstr "Transposh-Logo erscheint nicht im Widget"
|
482 |
+
|
483 |
+
# @ transposh
|
484 |
+
#: wp/transposh_widget.php:378
|
485 |
+
msgid "Remove transposh logo (see <a href=\"http://transposh.org/logoterms\">terms</a>)"
|
486 |
+
msgstr "Transposh-Logo entfernen (siehe <a href=\"http://transposh.org/logoterms\">Bedingungen</a>)"
|
487 |
+
|
488 |
+
# @ transposh
|
489 |
+
#: wp/transposh_widget.php:381
|
490 |
+
msgid "Edit interface (and progress bar) theme:"
|
491 |
+
msgstr "Thema der Schnittstelle (und Statusanzeige) bearbeiten:"
|
492 |
+
|
493 |
+
# @ default
|
494 |
+
#: transposh.php:771
|
495 |
+
msgid "Settings"
|
496 |
+
msgstr "Einstellungen"
|
497 |
+
|
Binary file
|
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: \n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/transposh-translation-filter-for-wordpress\n"
|
5 |
"POT-Creation-Date: 2010-10-13 10:21+0000\n"
|
6 |
-
"PO-Revision-Date: 2011-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -19,7 +19,7 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: transposh.php:
|
23 |
#@ default
|
24 |
msgid "Settings"
|
25 |
msgstr "Configurazione"
|
@@ -30,28 +30,28 @@ msgstr "Configurazione"
|
|
30 |
msgid "%s translated a phrase to %s with transposh:"
|
31 |
msgstr "%s frase tradotta in %s con Transposh:"
|
32 |
|
33 |
-
#: wp/transposh_admin.php:
|
34 |
#@ transposh
|
35 |
msgid "Transposh makes your blog translatable"
|
36 |
msgstr "Transposh rende il tuo blog traducibile"
|
37 |
|
38 |
-
#: wp/transposh_admin.php:
|
39 |
#@ transposh
|
40 |
msgid "Plugin homepage"
|
41 |
msgstr "Homepage del plugin"
|
42 |
|
43 |
-
#: wp/transposh_admin.php:
|
44 |
#@ transposh
|
45 |
msgid "Frequently asked questions"
|
46 |
msgstr "Domande Frequenti (FAQ)"
|
47 |
|
48 |
-
#: wp/transposh_admin.php:
|
49 |
#@ transposh
|
50 |
msgid "Transposh control center"
|
51 |
msgstr "Transposh Pannello di controllo"
|
52 |
|
53 |
-
#: wp/transposh_admin.php:
|
54 |
-
#: wp/transposh_admin.php:
|
55 |
#: wp/transposh_postpublish.php:49
|
56 |
#: wp/transposh_postpublish.php:50
|
57 |
#: wp/transposh_widget.php:88
|
@@ -61,313 +61,313 @@ msgstr "Transposh Pannello di controllo"
|
|
61 |
msgid "Transposh"
|
62 |
msgstr "Transposh"
|
63 |
|
64 |
-
#: wp/transposh_admin.php:
|
65 |
#@ transposh
|
66 |
msgid "About this plugin"
|
67 |
msgstr "Riguardo al plugin"
|
68 |
|
69 |
-
#: wp/transposh_admin.php:
|
70 |
#@ transposh
|
71 |
msgid "Widget settings"
|
72 |
msgstr "Configurazione Widget"
|
73 |
|
74 |
-
#: wp/transposh_admin.php:
|
75 |
#@ transposh
|
76 |
msgid "Plugin news"
|
77 |
msgstr "Novità del Plugin"
|
78 |
|
79 |
-
#: wp/transposh_admin.php:
|
80 |
#@ transposh
|
81 |
msgid "Plugin stats"
|
82 |
msgstr "Statistiche del Plugin"
|
83 |
|
84 |
-
#: wp/transposh_admin.php:
|
85 |
#@ transposh
|
86 |
msgid "Translate all"
|
87 |
msgstr "Tradurre tutto"
|
88 |
|
89 |
-
#: wp/transposh_admin.php:
|
90 |
#@ transposh
|
91 |
msgid "Supported languages"
|
92 |
msgstr "Lingue supportate"
|
93 |
|
94 |
-
#: wp/transposh_admin.php:
|
95 |
#@ transposh
|
96 |
msgid "Translation settings"
|
97 |
msgstr "Configurazione Traduzioni"
|
98 |
|
99 |
-
#: wp/transposh_admin.php:
|
100 |
#@ transposh
|
101 |
msgid "Automatic translation settings"
|
102 |
msgstr "Configurazione traduzione automatica"
|
103 |
|
104 |
-
#: wp/transposh_admin.php:
|
105 |
#@ transposh
|
106 |
msgid "Generic settings"
|
107 |
msgstr "Configurazione Generale"
|
108 |
|
109 |
-
#: wp/transposh_admin.php:
|
110 |
#@ transposh
|
111 |
msgid "Database maintenance"
|
112 |
msgstr "Manutenzione Database"
|
113 |
|
114 |
-
#: wp/transposh_admin.php:
|
115 |
#@ transposh
|
116 |
msgid "Transposh community features"
|
117 |
msgstr "Caratteristiche del Transposh Community"
|
118 |
|
119 |
-
#: wp/transposh_admin.php:
|
120 |
#@ default
|
121 |
msgid "Save Changes"
|
122 |
msgstr "Salva modifiche"
|
123 |
|
124 |
-
#: wp/transposh_admin.php:
|
125 |
#@ transposh
|
126 |
msgid "Problems?"
|
127 |
msgstr "Problemi?"
|
128 |
|
129 |
-
#: wp/transposh_admin.php:
|
130 |
#@ transposh
|
131 |
msgid "Plugin Homepage"
|
132 |
msgstr "Homepage del Plugin"
|
133 |
|
134 |
-
#: wp/transposh_admin.php:
|
135 |
#@ transposh
|
136 |
msgid "Suggest a Feature"
|
137 |
msgstr "Suggerisci una funzione"
|
138 |
|
139 |
-
#: wp/transposh_admin.php:
|
140 |
#@ transposh
|
141 |
msgid "Report a Bug"
|
142 |
msgstr "Segnala un bug"
|
143 |
|
144 |
-
#: wp/transposh_admin.php:
|
145 |
#@ transposh
|
146 |
msgid "Translate by clicking the button below"
|
147 |
msgstr "Traduci cliccando sul bottone in basso"
|
148 |
|
149 |
-
#: wp/transposh_admin.php:
|
150 |
#@ transposh
|
151 |
msgid "Translate All Now"
|
152 |
msgstr "Traduci tutto ora"
|
153 |
|
154 |
-
#: wp/transposh_admin.php:
|
155 |
#@ transposh
|
156 |
msgid "Default Language (drag another language here to make it default)"
|
157 |
msgstr "Lingua predefinita (trascina qui un'altra lingua per renderla predefinita)"
|
158 |
|
159 |
-
#: wp/transposh_admin.php:
|
160 |
#@ transposh
|
161 |
msgid "Available Languages (Click to toggle language state - Drag to sort in the widget)"
|
162 |
msgstr "Lingue disponibili (Clicca per modificarne l'attivazione - Trascina per modificarne l'ordine nel widget)"
|
163 |
|
164 |
-
#: wp/transposh_admin.php:
|
165 |
#@ transposh
|
166 |
msgid "Language supported by google translate"
|
167 |
msgstr "Lingue supportate da Google Translate"
|
168 |
|
169 |
-
#: wp/transposh_admin.php:
|
170 |
#@ transposh
|
171 |
msgid "Language supported by bing translate"
|
172 |
msgstr "Lingue supportate da Bing Translate"
|
173 |
|
174 |
-
#: wp/transposh_admin.php:
|
175 |
#@ transposh
|
176 |
msgid "Language is written from right to left"
|
177 |
msgstr "Lingua scritta da destra a sinistra"
|
178 |
|
179 |
-
#: wp/transposh_admin.php:
|
180 |
#@ transposh
|
181 |
msgid "Display options:"
|
182 |
msgstr "Mostra opzioni:"
|
183 |
|
184 |
-
#: wp/transposh_admin.php:
|
185 |
#@ transposh
|
186 |
msgid "Toggle names of languages between English and Original"
|
187 |
msgstr "Inverti nome della lingua tra Inglese ed Originale"
|
188 |
|
189 |
-
#: wp/transposh_admin.php:
|
190 |
#@ transposh
|
191 |
msgid "Make all languages active"
|
192 |
msgstr "Attiva tutte le lingue"
|
193 |
|
194 |
-
#: wp/transposh_admin.php:
|
195 |
#@ transposh
|
196 |
msgid "Sort by language name"
|
197 |
msgstr "Elenca per nome della lingua"
|
198 |
|
199 |
-
#: wp/transposh_admin.php:
|
200 |
#@ transposh
|
201 |
msgid "Sort by lSO code"
|
202 |
msgstr "Elenca per codice ISO"
|
203 |
|
204 |
-
#: wp/transposh_admin.php:
|
205 |
#@ transposh
|
206 |
msgid "Legend:"
|
207 |
msgstr "Legenda:"
|
208 |
|
209 |
-
#: wp/transposh_admin.php:
|
210 |
#@ transposh
|
211 |
msgid "Green - active"
|
212 |
msgstr "Verde - Attivata"
|
213 |
|
214 |
-
#: wp/transposh_admin.php:
|
215 |
#@ transposh
|
216 |
msgid "Yellow - translateable (only translators will see this language)"
|
217 |
msgstr "Giallo - Traducibile (solo i traduttori autorizzati vedranno questa lingua)"
|
218 |
|
219 |
-
#: wp/transposh_admin.php:
|
220 |
#@ transposh
|
221 |
msgid "blank - inactive"
|
222 |
msgstr "Bianco - Non attiva"
|
223 |
|
224 |
-
#: wp/transposh_admin.php:
|
225 |
#@ transposh
|
226 |
msgid "Who can translate ?"
|
227 |
msgstr "Chi può tradurre?"
|
228 |
|
229 |
-
#: wp/transposh_admin.php:
|
230 |
#@ transposh
|
231 |
msgid "Anonymous"
|
232 |
msgstr "Anonimi"
|
233 |
|
234 |
-
#: wp/transposh_admin.php:
|
235 |
#@ transposh
|
236 |
msgid "Enable default language translation"
|
237 |
msgstr "Abilita traduzione della lingua predefinita"
|
238 |
|
239 |
-
#: wp/transposh_admin.php:
|
240 |
#@ transposh
|
241 |
msgid "Allow translation of default language - useful for sites with more than one major language"
|
242 |
msgstr "Permetti traduzione della lingua predefinita - utile per siti con più di una lingua principale"
|
243 |
|
244 |
-
#: wp/transposh_admin.php:
|
245 |
#@ transposh
|
246 |
msgid "Enable search in translated languages"
|
247 |
msgstr "Abilita ricerca nelle lingue tradotte"
|
248 |
|
249 |
-
#: wp/transposh_admin.php:
|
250 |
#@ transposh
|
251 |
msgid "Enable url translation"
|
252 |
msgstr "Abilita traduzione delle URL"
|
253 |
|
254 |
-
#: wp/transposh_admin.php:
|
255 |
-
#: wp/transposh_admin.php:
|
256 |
#@ transposh
|
257 |
msgid "experimental"
|
258 |
msgstr "sperimentale"
|
259 |
|
260 |
-
#: wp/transposh_admin.php:
|
261 |
#@ transposh
|
262 |
msgid "Allow translation of permalinks and urls"
|
263 |
msgstr "Permetti la traduzione dei permalinks e delle URL"
|
264 |
|
265 |
-
#: wp/transposh_admin.php:
|
266 |
#@ transposh
|
267 |
msgid "Enable gettext integration"
|
268 |
msgstr "Abilita la traduzione gettext"
|
269 |
|
270 |
-
#: wp/transposh_admin.php:
|
271 |
#@ transposh
|
272 |
msgid "Enable integration of Transposh with existing gettext interface (.po/.mo files)"
|
273 |
msgstr "Abilita l'integrazione di Transposh con l'interfaccia gettext esistente (.po/mo files)"
|
274 |
|
275 |
-
#: wp/transposh_admin.php:
|
276 |
#@ transposh
|
277 |
msgid "Enable automatic translation"
|
278 |
msgstr "Abilita la traduzione automatica"
|
279 |
|
280 |
-
#: wp/transposh_admin.php:
|
281 |
#@ transposh
|
282 |
msgid "Allow automatic translation of pages"
|
283 |
msgstr "Permetti la traduzione automatica delle pagine"
|
284 |
|
285 |
-
#: wp/transposh_admin.php:
|
286 |
#@ transposh
|
287 |
msgid "Enable automatic translation after posting"
|
288 |
msgstr "Abilita la traduzione automatica dopo la pubblicazione"
|
289 |
|
290 |
-
#: wp/transposh_admin.php:
|
291 |
#@ transposh
|
292 |
msgid "Do automatic translation immediately after a post has been published"
|
293 |
msgstr "Traduci immediatamente dopo che un articolo è stato pubblicato"
|
294 |
|
295 |
-
#: wp/transposh_admin.php:
|
296 |
#@ transposh
|
297 |
msgid "Select preferred auto translation engine"
|
298 |
msgstr "Seleziona il sistema di traduzione automatica preferito"
|
299 |
|
300 |
-
#: wp/transposh_admin.php:
|
301 |
#@ transposh
|
302 |
msgid "Translation engine:"
|
303 |
msgstr "Traduttore automatico:"
|
304 |
|
305 |
-
#: wp/transposh_admin.php:
|
306 |
#@ transposh
|
307 |
msgid "Google"
|
308 |
msgstr "Google"
|
309 |
|
310 |
-
#: wp/transposh_admin.php:
|
311 |
#@ transposh
|
312 |
msgid "Bing"
|
313 |
msgstr "Bing"
|
314 |
|
315 |
-
#: wp/transposh_admin.php:
|
316 |
#@ transposh
|
317 |
msgid "Rewrite URLs"
|
318 |
msgstr "Riscrivi URLs"
|
319 |
|
320 |
-
#: wp/transposh_admin.php:
|
321 |
#@ transposh
|
322 |
msgid "Add scripts to footer"
|
323 |
msgstr "Aggiungi gli scripts nel footer"
|
324 |
|
325 |
-
#: wp/transposh_admin.php:
|
326 |
#@ transposh
|
327 |
msgid "Auto detect language for users"
|
328 |
msgstr "Auto rilevamento della lingua degli utenti"
|
329 |
|
330 |
-
#: wp/transposh_admin.php:
|
331 |
#@ transposh
|
332 |
msgid "Delete all automated translations"
|
333 |
msgstr "Cancella tutte le traduzioni automatiche"
|
334 |
|
335 |
-
#: wp/transposh_admin.php:
|
336 |
#@ transposh
|
337 |
msgid "Delete automated translations older than 14 days"
|
338 |
msgstr "Cancella le traduzioni automatiche più vecchie di 14 giorni"
|
339 |
|
340 |
-
#: wp/transposh_admin.php:
|
341 |
#@ transposh
|
342 |
msgid "Backup service for human translation"
|
343 |
msgstr "Backup di servizio per traduzione manuale"
|
344 |
|
345 |
-
#: wp/transposh_admin.php:
|
346 |
#@ transposh
|
347 |
msgid "Enable daily backup"
|
348 |
msgstr "Abilita backup giornaliero"
|
349 |
|
350 |
-
#: wp/transposh_admin.php:
|
351 |
#@ transposh
|
352 |
msgid "Enable live backup"
|
353 |
msgstr "Abilita backup simultaneo"
|
354 |
|
355 |
-
#: wp/transposh_admin.php:
|
356 |
#@ transposh
|
357 |
msgid "Disable backup (Can be run manually by clicking the button below)"
|
358 |
msgstr "Disabilita backup ( può sempre essere effettuato cliccando sul bottone in basso)"
|
359 |
|
360 |
-
#: wp/transposh_admin.php:
|
361 |
#@ transposh
|
362 |
msgid "Service Key:"
|
363 |
msgstr "Service Key:"
|
364 |
|
365 |
-
#: wp/transposh_admin.php:
|
366 |
#@ transposh
|
367 |
msgid "How to restore?"
|
368 |
msgstr "Come ripristinare?"
|
369 |
|
370 |
-
#: wp/transposh_admin.php:
|
371 |
#@ transposh
|
372 |
msgid "Do Backup Now"
|
373 |
msgstr "Fai il backup adesso"
|
@@ -459,91 +459,91 @@ msgstr "Rimuovere il logo Transposh (leggere attentamente <a href=\"http://trans
|
|
459 |
#: transposh.php:0
|
460 |
#@ transposh
|
461 |
msgid "Transposh Translation Filter"
|
462 |
-
msgstr ""
|
463 |
|
464 |
#. translators: plugin header field 'PluginURI'
|
465 |
#. translators: plugin header field 'AuthorURI'
|
466 |
#: transposh.php:0
|
467 |
#@ transposh
|
468 |
msgid "http://transposh.org/"
|
469 |
-
msgstr ""
|
470 |
|
471 |
#. translators: plugin header field 'Description'
|
472 |
#: transposh.php:0
|
473 |
#@ transposh
|
474 |
msgid "Translation filter for WordPress, After enabling please set languages at the <a href=\"options-general.php?page=transposh\">the options page</a> Want to help? visit our development site at <a href=\"http://trac.transposh.org/\">trac.transposh.org</a>."
|
475 |
-
msgstr ""
|
476 |
|
477 |
#. translators: plugin header field 'Author'
|
478 |
#: transposh.php:0
|
479 |
#@ transposh
|
480 |
msgid "Team Transposh"
|
481 |
-
msgstr ""
|
482 |
|
483 |
#. translators: plugin header field 'Version'
|
484 |
#: transposh.php:0
|
485 |
#, php-format
|
486 |
#@ transposh
|
487 |
msgid "%VERSION%"
|
488 |
-
msgstr ""
|
489 |
|
490 |
-
#: wp/transposh_admin.php:
|
491 |
#@ transposh
|
492 |
msgid "Language supported by apertium translate"
|
493 |
-
msgstr ""
|
494 |
|
495 |
-
#: wp/transposh_admin.php:
|
496 |
#@ transposh
|
497 |
msgid "Allow search of translated languages (and the original language)"
|
498 |
-
msgstr ""
|
499 |
|
500 |
-
#: wp/transposh_admin.php:
|
501 |
#@ transposh
|
502 |
msgid "Rewrite URLs to be search engine friendly, e.g. (http://transposh.org/<strong>en</strong>). Requires that permalinks will be enabled."
|
503 |
-
msgstr ""
|
504 |
|
505 |
-
#: wp/transposh_admin.php:
|
506 |
#@ transposh
|
507 |
msgid "Push transposh scripts to footer of page instead of header, makes pages load faster. Requires that your theme should have proper footer support."
|
508 |
-
msgstr ""
|
509 |
|
510 |
-
#: wp/transposh_admin.php:
|
511 |
#@ transposh
|
512 |
msgid "This enables auto detection of language used by the user as defined in the ACCEPT_LANGUAGES they send. This will redirect the first page accessed in the session to the same page with the detected language."
|
513 |
-
msgstr ""
|
514 |
|
515 |
-
#: wp/transposh_admin.php:
|
516 |
#@ transposh
|
517 |
msgid "Attempt to fix errors caused by previous versions - please backup first"
|
518 |
-
msgstr ""
|
519 |
|
520 |
#: wp/transposh_widget.php:255
|
521 |
#@ transposh
|
522 |
msgid "translation plugin for wordpress"
|
523 |
-
msgstr ""
|
524 |
|
525 |
#: wp/transposh_widget.php:258
|
526 |
#@ transposh
|
527 |
msgid "wordpress translation plugin"
|
528 |
-
msgstr ""
|
529 |
|
530 |
#: wp/transposh_widget.php:261
|
531 |
#@ transposh
|
532 |
msgid "translate your blog to 60+ languages"
|
533 |
-
msgstr ""
|
534 |
|
535 |
#: wp/transposh_widget.php:264
|
536 |
#@ transposh
|
537 |
msgid "website crowdsourcing translation plugin"
|
538 |
-
msgstr ""
|
539 |
|
540 |
#: wp/transposh_widget.php:267
|
541 |
#@ transposh
|
542 |
msgid "google translate and bing translate plugin for wordpress"
|
543 |
-
msgstr ""
|
544 |
|
545 |
#: wp/transposh_widget.php:381
|
546 |
#@ transposh
|
547 |
msgid "Edit interface (and progress bar) theme:"
|
548 |
-
msgstr ""
|
549 |
|
3 |
"Project-Id-Version: \n"
|
4 |
"Report-Msgid-Bugs-To: http://wordpress.org/tag/transposh-translation-filter-for-wordpress\n"
|
5 |
"POT-Creation-Date: 2010-10-13 10:21+0000\n"
|
6 |
+
"PO-Revision-Date: 2011-03-27 01:31+0100\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: transposh.php:855
|
23 |
#@ default
|
24 |
msgid "Settings"
|
25 |
msgstr "Configurazione"
|
30 |
msgid "%s translated a phrase to %s with transposh:"
|
31 |
msgstr "%s frase tradotta in %s con Transposh:"
|
32 |
|
33 |
+
#: wp/transposh_admin.php:141
|
34 |
#@ transposh
|
35 |
msgid "Transposh makes your blog translatable"
|
36 |
msgstr "Transposh rende il tuo blog traducibile"
|
37 |
|
38 |
+
#: wp/transposh_admin.php:142
|
39 |
#@ transposh
|
40 |
msgid "Plugin homepage"
|
41 |
msgstr "Homepage del plugin"
|
42 |
|
43 |
+
#: wp/transposh_admin.php:143
|
44 |
#@ transposh
|
45 |
msgid "Frequently asked questions"
|
46 |
msgstr "Domande Frequenti (FAQ)"
|
47 |
|
48 |
+
#: wp/transposh_admin.php:151
|
49 |
#@ transposh
|
50 |
msgid "Transposh control center"
|
51 |
msgstr "Transposh Pannello di controllo"
|
52 |
|
53 |
+
#: wp/transposh_admin.php:151
|
54 |
+
#: wp/transposh_admin.php:216
|
55 |
#: wp/transposh_postpublish.php:49
|
56 |
#: wp/transposh_postpublish.php:50
|
57 |
#: wp/transposh_widget.php:88
|
61 |
msgid "Transposh"
|
62 |
msgstr "Transposh"
|
63 |
|
64 |
+
#: wp/transposh_admin.php:191
|
65 |
#@ transposh
|
66 |
msgid "About this plugin"
|
67 |
msgstr "Riguardo al plugin"
|
68 |
|
69 |
+
#: wp/transposh_admin.php:192
|
70 |
#@ transposh
|
71 |
msgid "Widget settings"
|
72 |
msgstr "Configurazione Widget"
|
73 |
|
74 |
+
#: wp/transposh_admin.php:193
|
75 |
#@ transposh
|
76 |
msgid "Plugin news"
|
77 |
msgstr "Novità del Plugin"
|
78 |
|
79 |
+
#: wp/transposh_admin.php:194
|
80 |
#@ transposh
|
81 |
msgid "Plugin stats"
|
82 |
msgstr "Statistiche del Plugin"
|
83 |
|
84 |
+
#: wp/transposh_admin.php:195
|
85 |
#@ transposh
|
86 |
msgid "Translate all"
|
87 |
msgstr "Tradurre tutto"
|
88 |
|
89 |
+
#: wp/transposh_admin.php:196
|
90 |
#@ transposh
|
91 |
msgid "Supported languages"
|
92 |
msgstr "Lingue supportate"
|
93 |
|
94 |
+
#: wp/transposh_admin.php:197
|
95 |
#@ transposh
|
96 |
msgid "Translation settings"
|
97 |
msgstr "Configurazione Traduzioni"
|
98 |
|
99 |
+
#: wp/transposh_admin.php:198
|
100 |
#@ transposh
|
101 |
msgid "Automatic translation settings"
|
102 |
msgstr "Configurazione traduzione automatica"
|
103 |
|
104 |
+
#: wp/transposh_admin.php:199
|
105 |
#@ transposh
|
106 |
msgid "Generic settings"
|
107 |
msgstr "Configurazione Generale"
|
108 |
|
109 |
+
#: wp/transposh_admin.php:200
|
110 |
#@ transposh
|
111 |
msgid "Database maintenance"
|
112 |
msgstr "Manutenzione Database"
|
113 |
|
114 |
+
#: wp/transposh_admin.php:209
|
115 |
#@ transposh
|
116 |
msgid "Transposh community features"
|
117 |
msgstr "Caratteristiche del Transposh Community"
|
118 |
|
119 |
+
#: wp/transposh_admin.php:237
|
120 |
#@ default
|
121 |
msgid "Save Changes"
|
122 |
msgstr "Salva modifiche"
|
123 |
|
124 |
+
#: wp/transposh_admin.php:261
|
125 |
#@ transposh
|
126 |
msgid "Problems?"
|
127 |
msgstr "Problemi?"
|
128 |
|
129 |
+
#: wp/transposh_admin.php:279
|
130 |
#@ transposh
|
131 |
msgid "Plugin Homepage"
|
132 |
msgstr "Homepage del Plugin"
|
133 |
|
134 |
+
#: wp/transposh_admin.php:280
|
135 |
#@ transposh
|
136 |
msgid "Suggest a Feature"
|
137 |
msgstr "Suggerisci una funzione"
|
138 |
|
139 |
+
#: wp/transposh_admin.php:282
|
140 |
#@ transposh
|
141 |
msgid "Report a Bug"
|
142 |
msgstr "Segnala un bug"
|
143 |
|
144 |
+
#: wp/transposh_admin.php:303
|
145 |
#@ transposh
|
146 |
msgid "Translate by clicking the button below"
|
147 |
msgstr "Traduci cliccando sul bottone in basso"
|
148 |
|
149 |
+
#: wp/transposh_admin.php:304
|
150 |
#@ transposh
|
151 |
msgid "Translate All Now"
|
152 |
msgstr "Traduci tutto ora"
|
153 |
|
154 |
+
#: wp/transposh_admin.php:361
|
155 |
#@ transposh
|
156 |
msgid "Default Language (drag another language here to make it default)"
|
157 |
msgstr "Lingua predefinita (trascina qui un'altra lingua per renderla predefinita)"
|
158 |
|
159 |
+
#: wp/transposh_admin.php:368
|
160 |
#@ transposh
|
161 |
msgid "Available Languages (Click to toggle language state - Drag to sort in the widget)"
|
162 |
msgstr "Lingue disponibili (Clicca per modificarne l'attivazione - Trascina per modificarne l'ordine nel widget)"
|
163 |
|
164 |
+
#: wp/transposh_admin.php:378
|
165 |
#@ transposh
|
166 |
msgid "Language supported by google translate"
|
167 |
msgstr "Lingue supportate da Google Translate"
|
168 |
|
169 |
+
#: wp/transposh_admin.php:380
|
170 |
#@ transposh
|
171 |
msgid "Language supported by bing translate"
|
172 |
msgstr "Lingue supportate da Bing Translate"
|
173 |
|
174 |
+
#: wp/transposh_admin.php:384
|
175 |
#@ transposh
|
176 |
msgid "Language is written from right to left"
|
177 |
msgstr "Lingua scritta da destra a sinistra"
|
178 |
|
179 |
+
#: wp/transposh_admin.php:389
|
180 |
#@ transposh
|
181 |
msgid "Display options:"
|
182 |
msgstr "Mostra opzioni:"
|
183 |
|
184 |
+
#: wp/transposh_admin.php:390
|
185 |
#@ transposh
|
186 |
msgid "Toggle names of languages between English and Original"
|
187 |
msgstr "Inverti nome della lingua tra Inglese ed Originale"
|
188 |
|
189 |
+
#: wp/transposh_admin.php:391
|
190 |
#@ transposh
|
191 |
msgid "Make all languages active"
|
192 |
msgstr "Attiva tutte le lingue"
|
193 |
|
194 |
+
#: wp/transposh_admin.php:392
|
195 |
#@ transposh
|
196 |
msgid "Sort by language name"
|
197 |
msgstr "Elenca per nome della lingua"
|
198 |
|
199 |
+
#: wp/transposh_admin.php:393
|
200 |
#@ transposh
|
201 |
msgid "Sort by lSO code"
|
202 |
msgstr "Elenca per codice ISO"
|
203 |
|
204 |
+
#: wp/transposh_admin.php:394
|
205 |
#@ transposh
|
206 |
msgid "Legend:"
|
207 |
msgstr "Legenda:"
|
208 |
|
209 |
+
#: wp/transposh_admin.php:394
|
210 |
#@ transposh
|
211 |
msgid "Green - active"
|
212 |
msgstr "Verde - Attivata"
|
213 |
|
214 |
+
#: wp/transposh_admin.php:394
|
215 |
#@ transposh
|
216 |
msgid "Yellow - translateable (only translators will see this language)"
|
217 |
msgstr "Giallo - Traducibile (solo i traduttori autorizzati vedranno questa lingua)"
|
218 |
|
219 |
+
#: wp/transposh_admin.php:394
|
220 |
#@ transposh
|
221 |
msgid "blank - inactive"
|
222 |
msgstr "Bianco - Non attiva"
|
223 |
|
224 |
+
#: wp/transposh_admin.php:411
|
225 |
#@ transposh
|
226 |
msgid "Who can translate ?"
|
227 |
msgstr "Chi può tradurre?"
|
228 |
|
229 |
+
#: wp/transposh_admin.php:418
|
230 |
#@ transposh
|
231 |
msgid "Anonymous"
|
232 |
msgstr "Anonimi"
|
233 |
|
234 |
+
#: wp/transposh_admin.php:424
|
235 |
#@ transposh
|
236 |
msgid "Enable default language translation"
|
237 |
msgstr "Abilita traduzione della lingua predefinita"
|
238 |
|
239 |
+
#: wp/transposh_admin.php:426
|
240 |
#@ transposh
|
241 |
msgid "Allow translation of default language - useful for sites with more than one major language"
|
242 |
msgstr "Permetti traduzione della lingua predefinita - utile per siti con più di una lingua principale"
|
243 |
|
244 |
+
#: wp/transposh_admin.php:433
|
245 |
#@ transposh
|
246 |
msgid "Enable search in translated languages"
|
247 |
msgstr "Abilita ricerca nelle lingue tradotte"
|
248 |
|
249 |
+
#: wp/transposh_admin.php:442
|
250 |
#@ transposh
|
251 |
msgid "Enable url translation"
|
252 |
msgstr "Abilita traduzione delle URL"
|
253 |
|
254 |
+
#: wp/transposh_admin.php:442
|
255 |
+
#: wp/transposh_admin.php:451
|
256 |
#@ transposh
|
257 |
msgid "experimental"
|
258 |
msgstr "sperimentale"
|
259 |
|
260 |
+
#: wp/transposh_admin.php:444
|
261 |
#@ transposh
|
262 |
msgid "Allow translation of permalinks and urls"
|
263 |
msgstr "Permetti la traduzione dei permalinks e delle URL"
|
264 |
|
265 |
+
#: wp/transposh_admin.php:451
|
266 |
#@ transposh
|
267 |
msgid "Enable gettext integration"
|
268 |
msgstr "Abilita la traduzione gettext"
|
269 |
|
270 |
+
#: wp/transposh_admin.php:453
|
271 |
#@ transposh
|
272 |
msgid "Enable integration of Transposh with existing gettext interface (.po/.mo files)"
|
273 |
msgstr "Abilita l'integrazione di Transposh con l'interfaccia gettext esistente (.po/mo files)"
|
274 |
|
275 |
+
#: wp/transposh_admin.php:462
|
276 |
#@ transposh
|
277 |
msgid "Enable automatic translation"
|
278 |
msgstr "Abilita la traduzione automatica"
|
279 |
|
280 |
+
#: wp/transposh_admin.php:464
|
281 |
#@ transposh
|
282 |
msgid "Allow automatic translation of pages"
|
283 |
msgstr "Permetti la traduzione automatica delle pagine"
|
284 |
|
285 |
+
#: wp/transposh_admin.php:470
|
286 |
#@ transposh
|
287 |
msgid "Enable automatic translation after posting"
|
288 |
msgstr "Abilita la traduzione automatica dopo la pubblicazione"
|
289 |
|
290 |
+
#: wp/transposh_admin.php:472
|
291 |
#@ transposh
|
292 |
msgid "Do automatic translation immediately after a post has been published"
|
293 |
msgstr "Traduci immediatamente dopo che un articolo è stato pubblicato"
|
294 |
|
295 |
+
#: wp/transposh_admin.php:477
|
296 |
#@ transposh
|
297 |
msgid "Select preferred auto translation engine"
|
298 |
msgstr "Seleziona il sistema di traduzione automatica preferito"
|
299 |
|
300 |
+
#: wp/transposh_admin.php:478
|
301 |
#@ transposh
|
302 |
msgid "Translation engine:"
|
303 |
msgstr "Traduttore automatico:"
|
304 |
|
305 |
+
#: wp/transposh_admin.php:480
|
306 |
#@ transposh
|
307 |
msgid "Google"
|
308 |
msgstr "Google"
|
309 |
|
310 |
+
#: wp/transposh_admin.php:481
|
311 |
#@ transposh
|
312 |
msgid "Bing"
|
313 |
msgstr "Bing"
|
314 |
|
315 |
+
#: wp/transposh_admin.php:491
|
316 |
#@ transposh
|
317 |
msgid "Rewrite URLs"
|
318 |
msgstr "Riscrivi URLs"
|
319 |
|
320 |
+
#: wp/transposh_admin.php:502
|
321 |
#@ transposh
|
322 |
msgid "Add scripts to footer"
|
323 |
msgstr "Aggiungi gli scripts nel footer"
|
324 |
|
325 |
+
#: wp/transposh_admin.php:511
|
326 |
#@ transposh
|
327 |
msgid "Auto detect language for users"
|
328 |
msgstr "Auto rilevamento della lingua degli utenti"
|
329 |
|
330 |
+
#: wp/transposh_admin.php:524
|
331 |
#@ transposh
|
332 |
msgid "Delete all automated translations"
|
333 |
msgstr "Cancella tutte le traduzioni automatiche"
|
334 |
|
335 |
+
#: wp/transposh_admin.php:525
|
336 |
#@ transposh
|
337 |
msgid "Delete automated translations older than 14 days"
|
338 |
msgstr "Cancella le traduzioni automatiche più vecchie di 14 giorni"
|
339 |
|
340 |
+
#: wp/transposh_admin.php:530
|
341 |
#@ transposh
|
342 |
msgid "Backup service for human translation"
|
343 |
msgstr "Backup di servizio per traduzione manuale"
|
344 |
|
345 |
+
#: wp/transposh_admin.php:531
|
346 |
#@ transposh
|
347 |
msgid "Enable daily backup"
|
348 |
msgstr "Abilita backup giornaliero"
|
349 |
|
350 |
+
#: wp/transposh_admin.php:532
|
351 |
#@ transposh
|
352 |
msgid "Enable live backup"
|
353 |
msgstr "Abilita backup simultaneo"
|
354 |
|
355 |
+
#: wp/transposh_admin.php:533
|
356 |
#@ transposh
|
357 |
msgid "Disable backup (Can be run manually by clicking the button below)"
|
358 |
msgstr "Disabilita backup ( può sempre essere effettuato cliccando sul bottone in basso)"
|
359 |
|
360 |
+
#: wp/transposh_admin.php:534
|
361 |
#@ transposh
|
362 |
msgid "Service Key:"
|
363 |
msgstr "Service Key:"
|
364 |
|
365 |
+
#: wp/transposh_admin.php:534
|
366 |
#@ transposh
|
367 |
msgid "How to restore?"
|
368 |
msgstr "Come ripristinare?"
|
369 |
|
370 |
+
#: wp/transposh_admin.php:536
|
371 |
#@ transposh
|
372 |
msgid "Do Backup Now"
|
373 |
msgstr "Fai il backup adesso"
|
459 |
#: transposh.php:0
|
460 |
#@ transposh
|
461 |
msgid "Transposh Translation Filter"
|
462 |
+
msgstr "Transposh Filtro per Traduzioni"
|
463 |
|
464 |
#. translators: plugin header field 'PluginURI'
|
465 |
#. translators: plugin header field 'AuthorURI'
|
466 |
#: transposh.php:0
|
467 |
#@ transposh
|
468 |
msgid "http://transposh.org/"
|
469 |
+
msgstr "http://transposh.org/"
|
470 |
|
471 |
#. translators: plugin header field 'Description'
|
472 |
#: transposh.php:0
|
473 |
#@ transposh
|
474 |
msgid "Translation filter for WordPress, After enabling please set languages at the <a href=\"options-general.php?page=transposh\">the options page</a> Want to help? visit our development site at <a href=\"http://trac.transposh.org/\">trac.transposh.org</a>."
|
475 |
+
msgstr "Filtro Traduzioni per Wordpress, Dopo attivato configurare le lingue nella <a href=\"options-general.php?page=transposh\">pagina opzioni</a> Serve aiuto? visita il nostro sito di sviluppo <a href=\"http://trac.transposh.org/\">trac.transposh.org</a>."
|
476 |
|
477 |
#. translators: plugin header field 'Author'
|
478 |
#: transposh.php:0
|
479 |
#@ transposh
|
480 |
msgid "Team Transposh"
|
481 |
+
msgstr "Il Team Transposh"
|
482 |
|
483 |
#. translators: plugin header field 'Version'
|
484 |
#: transposh.php:0
|
485 |
#, php-format
|
486 |
#@ transposh
|
487 |
msgid "%VERSION%"
|
488 |
+
msgstr "%VERSION%"
|
489 |
|
490 |
+
#: wp/transposh_admin.php:382
|
491 |
#@ transposh
|
492 |
msgid "Language supported by apertium translate"
|
493 |
+
msgstr "Lingua supportata da apertium translate"
|
494 |
|
495 |
+
#: wp/transposh_admin.php:435
|
496 |
#@ transposh
|
497 |
msgid "Allow search of translated languages (and the original language)"
|
498 |
+
msgstr "Permetti ricerca nelle lingue tradotte (e in quella originale)"
|
499 |
|
500 |
+
#: wp/transposh_admin.php:495
|
501 |
#@ transposh
|
502 |
msgid "Rewrite URLs to be search engine friendly, e.g. (http://transposh.org/<strong>en</strong>). Requires that permalinks will be enabled."
|
503 |
+
msgstr "Riscrivi le URLs per i motori di ricerca, e.g. (http://transposh.org/<strong>en</strong>). Richiede i permalinks abilitati."
|
504 |
|
505 |
+
#: wp/transposh_admin.php:505
|
506 |
#@ transposh
|
507 |
msgid "Push transposh scripts to footer of page instead of header, makes pages load faster. Requires that your theme should have proper footer support."
|
508 |
+
msgstr "Inserire lo script di Transposh nel footer della pagina invece che nella header, rende le pagine veloci da caricare. Richiede che il tema abbia il supporto per il footer."
|
509 |
|
510 |
+
#: wp/transposh_admin.php:514
|
511 |
#@ transposh
|
512 |
msgid "This enables auto detection of language used by the user as defined in the ACCEPT_LANGUAGES they send. This will redirect the first page accessed in the session to the same page with the detected language."
|
513 |
+
msgstr "Questo abilita il riconoscimento automatico della lingua usata dall'utente, come definito in ACCEPT_LANGUAGES del browser. Questo redireziona la prima pagina caricata in quella sessione, alla lingua rilevata."
|
514 |
|
515 |
+
#: wp/transposh_admin.php:526
|
516 |
#@ transposh
|
517 |
msgid "Attempt to fix errors caused by previous versions - please backup first"
|
518 |
+
msgstr "Tentativo di correggere gli errori causati dalla versione precedente - si prega di fare un backup, prima"
|
519 |
|
520 |
#: wp/transposh_widget.php:255
|
521 |
#@ transposh
|
522 |
msgid "translation plugin for wordpress"
|
523 |
+
msgstr "plugin di traduzione per woedpress"
|
524 |
|
525 |
#: wp/transposh_widget.php:258
|
526 |
#@ transposh
|
527 |
msgid "wordpress translation plugin"
|
528 |
+
msgstr "plugin di traduzione per wordpress"
|
529 |
|
530 |
#: wp/transposh_widget.php:261
|
531 |
#@ transposh
|
532 |
msgid "translate your blog to 60+ languages"
|
533 |
+
msgstr "traduce il tuo blog in 60+ lingue"
|
534 |
|
535 |
#: wp/transposh_widget.php:264
|
536 |
#@ transposh
|
537 |
msgid "website crowdsourcing translation plugin"
|
538 |
+
msgstr "plugin di traduzione comunitaria da parte degli utenti"
|
539 |
|
540 |
#: wp/transposh_widget.php:267
|
541 |
#@ transposh
|
542 |
msgid "google translate and bing translate plugin for wordpress"
|
543 |
+
msgstr "plugin per wordpress che usa i traduttori di Google e Bing"
|
544 |
|
545 |
#: wp/transposh_widget.php:381
|
546 |
#@ transposh
|
547 |
msgid "Edit interface (and progress bar) theme:"
|
548 |
+
msgstr "Modifica l'interfaccia (e la barra) con il tema:"
|
549 |
|
@@ -3,15 +3,17 @@ Contributors: oferwald
|
|
3 |
Donate link: http://transposh.org/donate/
|
4 |
Tags: translation, widget, filter, buddypress, bilingual, multilingual, transposh, translate, language, crowdsourcing, context, wiki, RTL, Hebrew, Spanish, French, Russian, English, Arabic, Portuguese
|
5 |
Requires at least: 2.8
|
6 |
-
Tested up to: 3.1
|
7 |
-
Stable tag: 0.7.
|
8 |
|
9 |
Transposh filter allows in context quick translation of websites, it allows you to crowd-source the translation to your users
|
10 |
|
11 |
== Description ==
|
12 |
Transposh translation filter for WordPress offers a unique approach to blog translation. It allows your blog to combine automatic translation with human translation aided by your users with an easy to use in-context interface.
|
13 |
|
14 |
-
[youtube http://www.youtube.com/watch?v=
|
|
|
|
|
15 |
|
16 |
***Transposh includes the following features:***
|
17 |
|
@@ -211,10 +213,19 @@ This version allows sorting of languages within the widget
|
|
211 |
* Italian translation by Marco Rossi
|
212 |
* Persian translation by [Sushyant Zavarzadeh](http://zavarzadeh.org)
|
213 |
* Spanish translation by [Angel Torregrosa](http://wordp.relatividad.org)
|
|
|
214 |
|
215 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
216 |
= 2011/03/24 - 0.7.3 =
|
217 |
[youtube http://www.youtube.com/watch?v=X0CGgYeBiHg]
|
|
|
218 |
* Shortcode support - see http://trac.transposh.org/wiki/ShortCodes
|
219 |
* Make bots redirect away from edit pages
|
220 |
* Avoid creation of session files for bots
|
@@ -236,6 +247,7 @@ This version allows sorting of languages within the widget
|
|
236 |
* Fix regression with after post translation and translate all
|
237 |
= 2011/01/11 - 0.7.0 =
|
238 |
[youtube http://www.youtube.com/watch?v=ktGtPb6SB34]
|
|
|
239 |
* Revamped edit interface
|
240 |
* Allow simple localization of interface
|
241 |
* Go to previous/next translation item
|
3 |
Donate link: http://transposh.org/donate/
|
4 |
Tags: translation, widget, filter, buddypress, bilingual, multilingual, transposh, translate, language, crowdsourcing, context, wiki, RTL, Hebrew, Spanish, French, Russian, English, Arabic, Portuguese
|
5 |
Requires at least: 2.8
|
6 |
+
Tested up to: 3.1.3
|
7 |
+
Stable tag: 0.7.4
|
8 |
|
9 |
Transposh filter allows in context quick translation of websites, it allows you to crowd-source the translation to your users
|
10 |
|
11 |
== Description ==
|
12 |
Transposh translation filter for WordPress offers a unique approach to blog translation. It allows your blog to combine automatic translation with human translation aided by your users with an easy to use in-context interface.
|
13 |
|
14 |
+
[youtube http://www.youtube.com/watch?v=hN0WppbhoFQ]
|
15 |
+
|
16 |
+
You can watch the video above, made by Fabrice Meuwissen of obviousidea.com which describes basic usage of Transposh, more videos can be found in the changelog
|
17 |
|
18 |
***Transposh includes the following features:***
|
19 |
|
213 |
* Italian translation by Marco Rossi
|
214 |
* Persian translation by [Sushyant Zavarzadeh](http://zavarzadeh.org)
|
215 |
* Spanish translation by [Angel Torregrosa](http://wordp.relatividad.org)
|
216 |
+
* German translation by [Jenny Beelens](http://www.professionaltranslation.com)
|
217 |
|
218 |
== Changelog ==
|
219 |
+
= 2011/06/03 - 0.7.4 =
|
220 |
+
* Allow default language of Transposh to override the one set in WP_LANG, this allows a Wordpress MU installation in which every site can be managed in a different language
|
221 |
+
* Fixed bug with using the only="y" parameter of the tp shortcode which made incorrect detections of source language further in parsing
|
222 |
+
* Added German translation by [Jenny Beelens](http://www.professionaltranslation.com)
|
223 |
+
* Added a new parameter for shortcode which provides the current language and can be used in image selection
|
224 |
+
* Iframes should be properly corrected to the current target language (thanks deepbevel)
|
225 |
+
* Added constants at the begining of the parser which allows some basic changes to parser behaviour wrt to numbers and punctuations
|
226 |
= 2011/03/24 - 0.7.3 =
|
227 |
[youtube http://www.youtube.com/watch?v=X0CGgYeBiHg]
|
228 |
+
|
229 |
* Shortcode support - see http://trac.transposh.org/wiki/ShortCodes
|
230 |
* Make bots redirect away from edit pages
|
231 |
* Avoid creation of session files for bots
|
247 |
* Fix regression with after post translation and translate all
|
248 |
= 2011/01/11 - 0.7.0 =
|
249 |
[youtube http://www.youtube.com/watch?v=ktGtPb6SB34]
|
250 |
+
|
251 |
* Revamped edit interface
|
252 |
* Allow simple localization of interface
|
253 |
* Go to previous/next translation item
|
@@ -5,7 +5,7 @@
|
|
5 |
Plugin URI: http://transposh.org/
|
6 |
Description: Translation filter for WordPress, After enabling please set languages at the <a href="options-general.php?page=transposh">the options page</a> Want to help? visit our development site at <a href="http://trac.transposh.org/">trac.transposh.org</a>.
|
7 |
Author: Team Transposh
|
8 |
-
Version: 0.7.
|
9 |
Author URI: http://transposh.org/
|
10 |
License: GPL (http://www.gnu.org/licenses/gpl.txt)
|
11 |
Text Domain: transposh
|
@@ -13,14 +13,14 @@
|
|
13 |
*/
|
14 |
|
15 |
/*
|
16 |
-
* Transposh v0.7.
|
17 |
* http://transposh.org/
|
18 |
*
|
19 |
* Copyright 2011, Team Transposh
|
20 |
* Licensed under the GPL Version 2 or higher.
|
21 |
* http://transposh.org/license
|
22 |
*
|
23 |
-
* Date:
|
24 |
*/
|
25 |
|
26 |
//avoid direct calls to this file where wp core files not present
|
@@ -289,7 +289,7 @@ class transposh_plugin {
|
|
289 |
} else {
|
290 |
// This one allows to redirect to a static element which we can find, since the redirection will remove
|
291 |
// the target language, we are able to avoid nasty redirection loops
|
292 |
-
if (is_404
|
293 |
global $wp;
|
294 |
if (isset($wp->query_vars['pagename']) && file_exists(ABSPATH . $wp->query_vars['pagename'])) { // Hmm
|
295 |
|
@@ -1092,14 +1092,14 @@ class transposh_plugin {
|
|
1092 |
if (!$this->options->is_viewable_language($lang)) {
|
1093 |
$lang = '';
|
1094 |
}
|
1095 |
-
if (!$lang)
|
1096 |
list ($l, $n, $f, $locale) = explode(',', transposh_consts::$languages[$lang]);
|
1097 |
if ($locale) {
|
1098 |
return $locale;
|
1099 |
} else {
|
1100 |
return $lang;
|
1101 |
}
|
1102 |
-
return $
|
1103 |
}
|
1104 |
|
1105 |
/**
|
@@ -1120,6 +1120,13 @@ class transposh_plugin {
|
|
1120 |
}
|
1121 |
}
|
1122 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1123 |
if (isset($atts['lang'])) {
|
1124 |
$lang = ' lang="' . $atts['lang'] . '"';
|
1125 |
}
|
5 |
Plugin URI: http://transposh.org/
|
6 |
Description: Translation filter for WordPress, After enabling please set languages at the <a href="options-general.php?page=transposh">the options page</a> Want to help? visit our development site at <a href="http://trac.transposh.org/">trac.transposh.org</a>.
|
7 |
Author: Team Transposh
|
8 |
+
Version: 0.7.4
|
9 |
Author URI: http://transposh.org/
|
10 |
License: GPL (http://www.gnu.org/licenses/gpl.txt)
|
11 |
Text Domain: transposh
|
13 |
*/
|
14 |
|
15 |
/*
|
16 |
+
* Transposh v0.7.4
|
17 |
* http://transposh.org/
|
18 |
*
|
19 |
* Copyright 2011, Team Transposh
|
20 |
* Licensed under the GPL Version 2 or higher.
|
21 |
* http://transposh.org/license
|
22 |
*
|
23 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
24 |
*/
|
25 |
|
26 |
//avoid direct calls to this file where wp core files not present
|
289 |
} else {
|
290 |
// This one allows to redirect to a static element which we can find, since the redirection will remove
|
291 |
// the target language, we are able to avoid nasty redirection loops
|
292 |
+
if (is_404()) {
|
293 |
global $wp;
|
294 |
if (isset($wp->query_vars['pagename']) && file_exists(ABSPATH . $wp->query_vars['pagename'])) { // Hmm
|
295 |
|
1092 |
if (!$this->options->is_viewable_language($lang)) {
|
1093 |
$lang = '';
|
1094 |
}
|
1095 |
+
if (!$lang) $lang = $this->options->get_default_language();
|
1096 |
list ($l, $n, $f, $locale) = explode(',', transposh_consts::$languages[$lang]);
|
1097 |
if ($locale) {
|
1098 |
return $locale;
|
1099 |
} else {
|
1100 |
return $lang;
|
1101 |
}
|
1102 |
+
return $this->options->get_default_language();
|
1103 |
}
|
1104 |
|
1105 |
/**
|
1120 |
}
|
1121 |
}
|
1122 |
|
1123 |
+
if (isset($atts['mylang'])) {
|
1124 |
+
if (isset($atts['lang']) && stripos($atts['lang'], $this->target_language) === false) {
|
1125 |
+
return;
|
1126 |
+
}
|
1127 |
+
return $this->target_language;
|
1128 |
+
}
|
1129 |
+
|
1130 |
if (isset($atts['lang'])) {
|
1131 |
$lang = ' lang="' . $atts['lang'] . '"';
|
1132 |
}
|
@@ -11,14 +11,14 @@
|
|
11 |
*/
|
12 |
|
13 |
/*
|
14 |
-
* Transposh v0.7.
|
15 |
* http://transposh.org/
|
16 |
*
|
17 |
* Copyright 2011, Team Transposh
|
18 |
* Licensed under the GPL Version 2 or higher.
|
19 |
* http://transposh.org/license
|
20 |
*
|
21 |
-
* Date:
|
22 |
*/
|
23 |
|
24 |
/*
|
11 |
*/
|
12 |
|
13 |
/*
|
14 |
+
* Transposh v0.7.4
|
15 |
* http://transposh.org/
|
16 |
*
|
17 |
* Copyright 2011, Team Transposh
|
18 |
* Licensed under the GPL Version 2 or higher.
|
19 |
* http://transposh.org/license
|
20 |
*
|
21 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
22 |
*/
|
23 |
|
24 |
/*
|
@@ -11,14 +11,14 @@
|
|
11 |
*/
|
12 |
|
13 |
/*
|
14 |
-
* Transposh v0.7.
|
15 |
* http://transposh.org/
|
16 |
*
|
17 |
* Copyright 2011, Team Transposh
|
18 |
* Licensed under the GPL Version 2 or higher.
|
19 |
* http://transposh.org/license
|
20 |
*
|
21 |
-
* Date:
|
22 |
*/
|
23 |
|
24 |
/**
|
11 |
*/
|
12 |
|
13 |
/*
|
14 |
+
* Transposh v0.7.4
|
15 |
* http://transposh.org/
|
16 |
*
|
17 |
* Copyright 2011, Team Transposh
|
18 |
* Licensed under the GPL Version 2 or higher.
|
19 |
* http://transposh.org/license
|
20 |
*
|
21 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
22 |
*/
|
23 |
|
24 |
/**
|
@@ -11,14 +11,14 @@
|
|
11 |
*/
|
12 |
|
13 |
/*
|
14 |
-
* Transposh v0.7.
|
15 |
* http://transposh.org/
|
16 |
*
|
17 |
* Copyright 2011, Team Transposh
|
18 |
* Licensed under the GPL Version 2 or higher.
|
19 |
* http://transposh.org/license
|
20 |
*
|
21 |
-
* Date:
|
22 |
*/
|
23 |
|
24 |
/**
|
11 |
*/
|
12 |
|
13 |
/*
|
14 |
+
* Transposh v0.7.4
|
15 |
* http://transposh.org/
|
16 |
*
|
17 |
* Copyright 2011, Team Transposh
|
18 |
* Licensed under the GPL Version 2 or higher.
|
19 |
* http://transposh.org/license
|
20 |
*
|
21 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
22 |
*/
|
23 |
|
24 |
/**
|
@@ -11,14 +11,14 @@
|
|
11 |
*/
|
12 |
|
13 |
/*
|
14 |
-
* Transposh v0.7.
|
15 |
* http://transposh.org/
|
16 |
*
|
17 |
* Copyright 2011, Team Transposh
|
18 |
* Licensed under the GPL Version 2 or higher.
|
19 |
* http://transposh.org/license
|
20 |
*
|
21 |
-
* Date:
|
22 |
*/
|
23 |
|
24 |
/**
|
11 |
*/
|
12 |
|
13 |
/*
|
14 |
+
* Transposh v0.7.4
|
15 |
* http://transposh.org/
|
16 |
*
|
17 |
* Copyright 2011, Team Transposh
|
18 |
* Licensed under the GPL Version 2 or higher.
|
19 |
* http://transposh.org/license
|
20 |
*
|
21 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
22 |
*/
|
23 |
|
24 |
/**
|
@@ -11,14 +11,14 @@
|
|
11 |
*/
|
12 |
|
13 |
/*
|
14 |
-
* Transposh v0.7.
|
15 |
* http://transposh.org/
|
16 |
*
|
17 |
* Copyright 2011, Team Transposh
|
18 |
* Licensed under the GPL Version 2 or higher.
|
19 |
* http://transposh.org/license
|
20 |
*
|
21 |
-
* Date:
|
22 |
*/
|
23 |
|
24 |
/**
|
11 |
*/
|
12 |
|
13 |
/*
|
14 |
+
* Transposh v0.7.4
|
15 |
* http://transposh.org/
|
16 |
*
|
17 |
* Copyright 2011, Team Transposh
|
18 |
* Licensed under the GPL Version 2 or higher.
|
19 |
* http://transposh.org/license
|
20 |
*
|
21 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
22 |
*/
|
23 |
|
24 |
/**
|
@@ -11,14 +11,14 @@
|
|
11 |
*/
|
12 |
|
13 |
/*
|
14 |
-
* Transposh v0.7.
|
15 |
* http://transposh.org/
|
16 |
*
|
17 |
* Copyright 2011, Team Transposh
|
18 |
* Licensed under the GPL Version 2 or higher.
|
19 |
* http://transposh.org/license
|
20 |
*
|
21 |
-
* Date:
|
22 |
*/
|
23 |
|
24 |
/**
|
11 |
*/
|
12 |
|
13 |
/*
|
14 |
+
* Transposh v0.7.4
|
15 |
* http://transposh.org/
|
16 |
*
|
17 |
* Copyright 2011, Team Transposh
|
18 |
* Licensed under the GPL Version 2 or higher.
|
19 |
* http://transposh.org/license
|
20 |
*
|
21 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
22 |
*/
|
23 |
|
24 |
/**
|
@@ -1,14 +1,14 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* Transposh v0.7.
|
5 |
* http://transposh.org/
|
6 |
*
|
7 |
* Copyright 2011, Team Transposh
|
8 |
* Licensed under the GPL Version 2 or higher.
|
9 |
* http://transposh.org/license
|
10 |
*
|
11 |
-
* Date:
|
12 |
*/
|
13 |
|
14 |
/*
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* Transposh v0.7.4
|
5 |
* http://transposh.org/
|
6 |
*
|
7 |
* Copyright 2011, Team Transposh
|
8 |
* Licensed under the GPL Version 2 or higher.
|
9 |
* http://transposh.org/license
|
10 |
*
|
11 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
12 |
*/
|
13 |
|
14 |
/*
|
@@ -1,14 +1,14 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* Transposh v0.7.
|
5 |
* http://transposh.org/
|
6 |
*
|
7 |
* Copyright 2011, Team Transposh
|
8 |
* Licensed under the GPL Version 2 or higher.
|
9 |
* http://transposh.org/license
|
10 |
*
|
11 |
-
* Date:
|
12 |
*/
|
13 |
|
14 |
/*
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* Transposh v0.7.4
|
5 |
* http://transposh.org/
|
6 |
*
|
7 |
* Copyright 2011, Team Transposh
|
8 |
* Licensed under the GPL Version 2 or higher.
|
9 |
* http://transposh.org/license
|
10 |
*
|
11 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
12 |
*/
|
13 |
|
14 |
/*
|
@@ -1,14 +1,14 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* Transposh v0.7.
|
5 |
* http://transposh.org/
|
6 |
*
|
7 |
* Copyright 2011, Team Transposh
|
8 |
* Licensed under the GPL Version 2 or higher.
|
9 |
* http://transposh.org/license
|
10 |
*
|
11 |
-
* Date:
|
12 |
*/
|
13 |
|
14 |
/*
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* Transposh v0.7.4
|
5 |
* http://transposh.org/
|
6 |
*
|
7 |
* Copyright 2011, Team Transposh
|
8 |
* Licensed under the GPL Version 2 or higher.
|
9 |
* http://transposh.org/license
|
10 |
*
|
11 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
12 |
*/
|
13 |
|
14 |
/*
|
@@ -1,14 +1,14 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* Transposh v0.7.
|
5 |
* http://transposh.org/
|
6 |
*
|
7 |
* Copyright 2011, Team Transposh
|
8 |
* Licensed under the GPL Version 2 or higher.
|
9 |
* http://transposh.org/license
|
10 |
*
|
11 |
-
* Date:
|
12 |
*/
|
13 |
|
14 |
/*
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* Transposh v0.7.4
|
5 |
* http://transposh.org/
|
6 |
*
|
7 |
* Copyright 2011, Team Transposh
|
8 |
* Licensed under the GPL Version 2 or higher.
|
9 |
* http://transposh.org/license
|
10 |
*
|
11 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
12 |
*/
|
13 |
|
14 |
/*
|
@@ -1,14 +1,14 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* Transposh v0.7.
|
5 |
* http://transposh.org/
|
6 |
*
|
7 |
* Copyright 2011, Team Transposh
|
8 |
* Licensed under the GPL Version 2 or higher.
|
9 |
* http://transposh.org/license
|
10 |
*
|
11 |
-
* Date:
|
12 |
*/
|
13 |
|
14 |
/**
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* Transposh v0.7.4
|
5 |
* http://transposh.org/
|
6 |
*
|
7 |
* Copyright 2011, Team Transposh
|
8 |
* Licensed under the GPL Version 2 or higher.
|
9 |
* http://transposh.org/license
|
10 |
*
|
11 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
12 |
*/
|
13 |
|
14 |
/**
|
@@ -1,14 +1,14 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* Transposh v0.7.
|
5 |
* http://transposh.org/
|
6 |
*
|
7 |
* Copyright 2011, Team Transposh
|
8 |
* Licensed under the GPL Version 2 or higher.
|
9 |
* http://transposh.org/license
|
10 |
*
|
11 |
-
* Date:
|
12 |
*/
|
13 |
|
14 |
// OLD Options - To be removed
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* Transposh v0.7.4
|
5 |
* http://transposh.org/
|
6 |
*
|
7 |
* Copyright 2011, Team Transposh
|
8 |
* Licensed under the GPL Version 2 or higher.
|
9 |
* http://transposh.org/license
|
10 |
*
|
11 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
12 |
*/
|
13 |
|
14 |
// OLD Options - To be removed
|
@@ -1,14 +1,14 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* Transposh v0.7.
|
5 |
* http://transposh.org/
|
6 |
*
|
7 |
* Copyright 2011, Team Transposh
|
8 |
* Licensed under the GPL Version 2 or higher.
|
9 |
* http://transposh.org/license
|
10 |
*
|
11 |
-
* Date:
|
12 |
*/
|
13 |
|
14 |
/*
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* Transposh v0.7.4
|
5 |
* http://transposh.org/
|
6 |
*
|
7 |
* Copyright 2011, Team Transposh
|
8 |
* Licensed under the GPL Version 2 or higher.
|
9 |
* http://transposh.org/license
|
10 |
*
|
11 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
12 |
*/
|
13 |
|
14 |
/*
|
@@ -1,14 +1,14 @@
|
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
-
* Transposh v0.7.
|
5 |
* http://transposh.org/
|
6 |
*
|
7 |
* Copyright 2011, Team Transposh
|
8 |
* Licensed under the GPL Version 2 or higher.
|
9 |
* http://transposh.org/license
|
10 |
*
|
11 |
-
* Date:
|
12 |
*/
|
13 |
|
14 |
/*
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* Transposh v0.7.4
|
5 |
* http://transposh.org/
|
6 |
*
|
7 |
* Copyright 2011, Team Transposh
|
8 |
* Licensed under the GPL Version 2 or higher.
|
9 |
* http://transposh.org/license
|
10 |
*
|
11 |
+
* Date: Fri, 03 Jun 2011 02:14:44 +0300
|
12 |
*/
|
13 |
|
14 |
/*
|