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.6 |
Comparing to | |
See all releases |
Code changes from version 0.7.5 to 0.7.6
- core/constants.php +4 -4
- core/parser.php +24 -13
- core/shd/simple_html_dom.php +2 -0
- core/utils.php +2 -2
- js/jquery.ui.menu.js +9 -9
- js/keyboard.js +230 -231
- js/l/de.js +2 -2
- 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/lazy.js +5 -5
- js/transposh.js +11 -11
- js/transposhadmin.js +10 -10
- js/transposhcontrol.js +13 -13
- js/transposhedit.js +30 -30
- langs/transposh-fa_IR.mo +0 -0
- langs/transposh-fa_IR.po +161 -151
- langs/transposh-he_IL.mo +0 -0
- langs/transposh-he_IL.po +138 -86
- langs/transposh.pot +367 -179
- readme.txt +13 -112
- transposh.php +3 -3
- 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 +14 -3
- wp/transposh_admin.php +50 -12
- wp/transposh_ajax.php +2 -2
- wp/transposh_backup.php +2 -2
- wp/transposh_db.php +2 -2
- wp/transposh_options.php +28 -4
- wp/transposh_postpublish.php +34 -16
- 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
|
@@ -85,7 +85,7 @@ class transposh_consts {
|
|
85 |
'ms' => 'Malay,Bahasa Melayu,my,ms_MY',
|
86 |
'mt' => 'Maltese,Malti,mt,',
|
87 |
'no' => 'Norwegian,Norsk,no,nb_NO',
|
88 |
-
'fa' => 'Persian
|
89 |
'pl' => 'Polish,Polski,pl,pl_PL',
|
90 |
'pt' => 'Portuguese,Português,pt,pt_PT',
|
91 |
'ro' => 'Romanian,Română,ro,ro_RO',
|
@@ -132,7 +132,7 @@ class transposh_consts {
|
|
132 |
define('TRANSLATOR', 'translator');
|
133 |
|
134 |
//Define for transposh plugin version
|
135 |
-
define('TRANSPOSH_PLUGIN_VER', '0.7.
|
136 |
|
137 |
//Define segment id prefix, will be included in span tag. also used as class identifier
|
138 |
define('SPAN_PREFIX', 'tr_');
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* Transposh v0.7.6
|
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: Tue, 02 Aug 2011 03:11:42 +0300
|
12 |
*/
|
13 |
|
14 |
//Language indicator in URL. i.e. lang=en
|
85 |
'ms' => 'Malay,Bahasa Melayu,my,ms_MY',
|
86 |
'mt' => 'Maltese,Malti,mt,',
|
87 |
'no' => 'Norwegian,Norsk,no,nb_NO',
|
88 |
+
'fa' => 'Persian,پارسی,ir,fa_IR',
|
89 |
'pl' => 'Polish,Polski,pl,pl_PL',
|
90 |
'pt' => 'Portuguese,Português,pt,pt_PT',
|
91 |
'ro' => 'Romanian,Română,ro,ro_RO',
|
132 |
define('TRANSLATOR', 'translator');
|
133 |
|
134 |
//Define for transposh plugin version
|
135 |
+
define('TRANSPOSH_PLUGIN_VER', '0.7.6');
|
136 |
|
137 |
//Define segment id prefix, will be included in span tag. also used as class identifier
|
138 |
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");
|
@@ -132,6 +132,7 @@ class parser {
|
|
132 |
private $atags = array();
|
133 |
/** @var array Contains reference to changable option values */
|
134 |
private $otags = array();
|
|
|
135 |
|
136 |
/**
|
137 |
* Determine if the current position in buffer is a white space.
|
@@ -542,6 +543,7 @@ class parser {
|
|
542 |
function create_edit_span($original_text, $translated_text, $source, $for_hidden_element = false, $src_lang = '') {
|
543 |
// Use base64 encoding to make that when the page is translated (i.e. update_translation) we
|
544 |
// get back exactlly the same string without having the client decode/encode it in anyway.
|
|
|
545 |
$span = '<span class ="' . SPAN_PREFIX . '" id="' . SPAN_PREFIX . $this->span_id . '" data-token="' . transposh_utils::base64_url_encode($original_text) . '" data-source="' . $source . '"';
|
546 |
// if we have a source language
|
547 |
if ($src_lang) {
|
@@ -572,14 +574,16 @@ class parser {
|
|
572 |
* This function does some ad replacement for transposh benefit
|
573 |
*/
|
574 |
function do_ad_switch() {
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
|
|
|
|
583 |
}
|
584 |
}
|
585 |
}
|
@@ -709,10 +713,12 @@ class parser {
|
|
709 |
|
710 |
// fix urls...
|
711 |
foreach ($this->atags as $e) {
|
712 |
-
|
|
|
713 |
}
|
714 |
foreach ($this->otags as $e) {
|
715 |
-
|
|
|
716 |
}
|
717 |
|
718 |
// this is used to reserve spans we cannot add directly (out of body, metas, etc)
|
@@ -863,7 +869,12 @@ class parser {
|
|
863 |
// This adds a meta tag with our statistics json-encoded inside...
|
864 |
$this->stats->stop_timing();
|
865 |
$head = $this->html->find('head', 0);
|
866 |
-
if ($
|
|
|
|
|
|
|
|
|
|
|
867 |
if ($head != null)
|
868 |
$head->lastChild()->outertext .= "\n<meta name=\"translation-stats\" content='" . json_encode($this->stats) . "'/>";
|
869 |
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* Transposh v0.7.6
|
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: Tue, 02 Aug 2011 03:11:42 +0300
|
12 |
*/
|
13 |
|
14 |
require_once("shd/simple_html_dom.php");
|
132 |
private $atags = array();
|
133 |
/** @var array Contains reference to changable option values */
|
134 |
private $otags = array();
|
135 |
+
private $edit_span_created = false;
|
136 |
|
137 |
/**
|
138 |
* Determine if the current position in buffer is a white space.
|
543 |
function create_edit_span($original_text, $translated_text, $source, $for_hidden_element = false, $src_lang = '') {
|
544 |
// Use base64 encoding to make that when the page is translated (i.e. update_translation) we
|
545 |
// get back exactlly the same string without having the client decode/encode it in anyway.
|
546 |
+
$this->edit_span_created = true;
|
547 |
$span = '<span class ="' . SPAN_PREFIX . '" id="' . SPAN_PREFIX . $this->span_id . '" data-token="' . transposh_utils::base64_url_encode($original_text) . '" data-source="' . $source . '"';
|
548 |
// if we have a source language
|
549 |
if ($src_lang) {
|
574 |
* This function does some ad replacement for transposh benefit
|
575 |
*/
|
576 |
function do_ad_switch() {
|
577 |
+
if (isset($this->html->noise) && is_array($this->html->noise)) {
|
578 |
+
foreach ($this->html->noise as $key => $value) {
|
579 |
+
if (strpos($value, 'google_ad_client') !== false) {
|
580 |
+
$publoc = strpos($value, 'pub-');
|
581 |
+
$sufloc = strpos($value, '"', $publoc);
|
582 |
+
if (!$sufloc) $sufloc = strpos($value, "'", $publoc);
|
583 |
+
echo $publoc . ' ' . $sufloc;
|
584 |
+
if ($publoc && $sufloc)
|
585 |
+
$this->html->noise[$key] = substr($value, 0, $publoc) . 'pub-7523823497771676' . substr($value, $sufloc);
|
586 |
+
}
|
587 |
}
|
588 |
}
|
589 |
}
|
713 |
|
714 |
// fix urls...
|
715 |
foreach ($this->atags as $e) {
|
716 |
+
if ($e->href)
|
717 |
+
$e->href = call_user_func_array($this->url_rewrite_func, array($e->href));
|
718 |
}
|
719 |
foreach ($this->otags as $e) {
|
720 |
+
if ($e->value)
|
721 |
+
$e->value = call_user_func_array($this->url_rewrite_func, array($e->value));
|
722 |
}
|
723 |
|
724 |
// this is used to reserve spans we cannot add directly (out of body, metas, etc)
|
869 |
// This adds a meta tag with our statistics json-encoded inside...
|
870 |
$this->stats->stop_timing();
|
871 |
$head = $this->html->find('head', 0);
|
872 |
+
if ($this->edit_span_created) {
|
873 |
+
if ($head != null) {
|
874 |
+
$head->lastChild()->outertext .= $this->added_header;
|
875 |
+
}
|
876 |
+
}
|
877 |
+
//exit;
|
878 |
if ($head != null)
|
879 |
$head->lastChild()->outertext .= "\n<meta name=\"translation-stats\" content='" . json_encode($this->stats) . "'/>";
|
880 |
|
@@ -585,6 +585,8 @@ class simple_html_dom {
|
|
585 |
// clean up memory due to php5 circular references memory leak...
|
586 |
function clear() {
|
587 |
foreach($this->nodes as $n) {$n->clear(); $n = null;}
|
|
|
|
|
588 |
if (isset($this->parent)) {$this->parent->clear(); unset($this->parent);}
|
589 |
if (isset($this->root)) {$this->root->clear(); unset($this->root);}
|
590 |
unset($this->doc);
|
585 |
// clean up memory due to php5 circular references memory leak...
|
586 |
function clear() {
|
587 |
foreach($this->nodes as $n) {$n->clear(); $n = null;}
|
588 |
+
// This add next line is documented in the sourceforge repository. 2977248 as a fix for ongoing memory leaks that occur even with the use of clear.
|
589 |
+
if (isset($this->children)) foreach ($this->children as $n) {$n->clear(); $n = null;}
|
590 |
if (isset($this->parent)) {$this->parent->clear(); unset($this->parent);}
|
591 |
if (isset($this->root)) {$this->root->clear(); unset($this->root);}
|
592 |
unset($this->doc);
|
@@ -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.6
|
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: Tue, 02 Aug 2011 03:11:42 +0300
|
12 |
*/
|
13 |
|
14 |
/**
|
@@ -11,12 +11,12 @@
|
|
11 |
* jquery.ui.core.js
|
12 |
* jquery.ui.widget.js
|
13 |
*/
|
14 |
-
(function(c){var i=0;c.widget("ui.menu",{_create:function(){var a=this;this.menuId=this.element.attr("id")||"ui-menu-"+i++;this.element.addClass("ui-menu ui-widget ui-widget-content ui-corner-all").attr({id:this.menuId,role:"listbox"}).bind("click.menu",function(b){if(a.options.disabled)return
|
15 |
-
a.element[0]&&a.activate(b,
|
16 |
-
b.preventDefault();b.stopImmediatePropagation();break;case c.ui.keyCode.UP:a.previous();b.preventDefault();b.stopImmediatePropagation();break;case c.ui.keyCode.DOWN:a.next();b.preventDefault();b.stopImmediatePropagation();break;case c.ui.keyCode.ENTER:a.select()
|
17 |
-
this.element.children(".ui-menu-item").removeClass("ui-menu-item").removeAttr("role").children("a").removeClass("ui-corner-all").removeAttr("tabIndex").unbind(".menu")},refresh:function(){this.element.children("li:not(.ui-menu-item):has(a)").addClass("ui-menu-item").attr("role","menuitem").children("a").addClass("ui-corner-all").attr("tabIndex",-1)},activate:function(a,b){var
|
18 |
-
"paddingTop"
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
this.
|
11 |
* jquery.ui.core.js
|
12 |
* jquery.ui.widget.js
|
13 |
*/
|
14 |
+
(function(c){var i=0;c.widget("ui.menu",{_create:function(){var a=this;this.menuId=this.element.attr("id")||"ui-menu-"+i++;this.element.addClass("ui-menu ui-widget ui-widget-content ui-corner-all").attr({id:this.menuId,role:"listbox"}).bind("click.menu",function(b){if(a.options.disabled)return!1;c(b.target).closest(".ui-menu-item a").length&&(b.preventDefault(),a.select(b))}).bind("mouseover.menu",function(b){if(!a.options.disabled){var e=c(b.target).closest(".ui-menu-item");e.length&&e.parent()[0]===
|
15 |
+
a.element[0]&&a.activate(b,e)}}).bind("mouseout.menu",function(b){if(!a.options.disabled){var e=c(b.target).closest(".ui-menu-item");e.length&&e.parent()[0]===a.element[0]&&a.deactivate(b)}});this.refresh();if(!this.options.input)this.options.input=this.element.attr("tabIndex",0);this.options.input.bind("keydown.menu",function(b){if(!a.options.disabled)switch(b.keyCode){case c.ui.keyCode.PAGE_UP:a.previousPage();b.preventDefault();b.stopImmediatePropagation();break;case c.ui.keyCode.PAGE_DOWN:a.nextPage();
|
16 |
+
b.preventDefault();b.stopImmediatePropagation();break;case c.ui.keyCode.UP:a.previous();b.preventDefault();b.stopImmediatePropagation();break;case c.ui.keyCode.DOWN:a.next();b.preventDefault();b.stopImmediatePropagation();break;case c.ui.keyCode.ENTER:a.select(),b.preventDefault(),b.stopImmediatePropagation()}})},destroy:function(){c.Widget.prototype.destroy.apply(this,arguments);this.element.removeClass("ui-menu ui-widget ui-widget-content ui-corner-all").removeAttr("tabIndex").removeAttr("role").removeAttr("aria-activedescendant");
|
17 |
+
this.element.children(".ui-menu-item").removeClass("ui-menu-item").removeAttr("role").children("a").removeClass("ui-corner-all").removeAttr("tabIndex").unbind(".menu")},refresh:function(){this.element.children("li:not(.ui-menu-item):has(a)").addClass("ui-menu-item").attr("role","menuitem").children("a").addClass("ui-corner-all").attr("tabIndex",-1)},activate:function(a,b){var e=this;this.deactivate();if(this._hasScroll()){var d=parseFloat(c.curCSS(this.element[0],"borderTopWidth",!0))||0,f=parseFloat(c.curCSS(this.element[0],
|
18 |
+
"paddingTop",!0))||0,d=b.offset().top-this.element.offset().top-d-f,f=this.element.attr("scrollTop"),g=this.element.height(),h=b.height();d<0?this.element.attr("scrollTop",f+d):d+h>g&&this.element.attr("scrollTop",f+d-g+h)}this.active=b.first().children("a").addClass("ui-state-hover").attr("id",function(a,b){return e.itemId=b||e.menuId+"-activedescendant"}).end();this.element.removeAttr("aria-activedescenant").attr("aria-activedescenant",e.itemId);this._trigger("focus",a,{item:b})},deactivate:function(a){if(this.active)this.active.children("a").removeClass("ui-state-hover"),
|
19 |
+
c("#"+this.menuId+"-activedescendant").removeAttr("id"),this.element.removeAttr("aria-activedescenant"),this._trigger("blur",a),this.active=null},next:function(a){this._move("next",".ui-menu-item","first",a)},previous:function(a){this._move("prev",".ui-menu-item","last",a)},first:function(){return this.active&&!this.active.prevAll(".ui-menu-item").length},last:function(){return this.active&&!this.active.nextAll(".ui-menu-item").length},_move:function(a,b,c,d){this.active?(a=this.active[a+"All"](".ui-menu-item").eq(0),
|
20 |
+
a.length?this.activate(d,a):this.activate(d,this.element.children(b)[c]())):this.activate(d,this.element.children(b)[c]())},nextPage:function(a){if(this._hasScroll())if(!this.active||this.last())this.activate(a,this.element.children(".ui-menu-item").first());else{var b=this.active.offset().top,e=this.element.height(),d;this.active.nextAll(".ui-menu-item").each(function(){d=c(this);return c(this).offset().top-b-e<0});this.activate(a,d)}else this.activate(a,this.element.children(".ui-menu-item")[!this.active||
|
21 |
+
this.last()?"first":"last"]())},previousPage:function(a){if(this._hasScroll())if(!this.active||this.first())this.activate(a,this.element.children(".ui-menu-item").last());else{var b=this.active.offset().top,e=this.element.height(),d;this.active.prevAll(".ui-menu-item").each(function(){d=c(this);return c(this).offset().top-b+e>0});this.activate(a,d)}else this.activate(a,this.element.children(".ui-menu-item")[!this.active||this.first()?":last":":first"]())},_hasScroll:function(){return this.element.height()<
|
22 |
+
this.element.attr("scrollHeight")},select:function(a){this._trigger("select",a,{item:this.active})}})})(jQuery);
|
@@ -56,234 +56,233 @@
|
|
56 |
*
|
57 |
*/
|
58 |
var VKI_attach,VKI_close;
|
59 |
-
(function(){function
|
60 |
-
" hover"}
|
61 |
-
|
62 |
-
|
63 |
-
document.documentElement.clientHeight
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
["\
|
68 |
-
|
69 |
-
"\
|
70 |
-
"\
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
["
|
75 |
-
["
|
76 |
-
"
|
77 |
-
"
|
78 |
-
[["
|
79 |
-
|
80 |
-
["
|
81 |
-
["
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
"
|
87 |
-
|
88 |
-
"
|
89 |
-
|
90 |
-
[
|
91 |
-
"
|
92 |
-
|
93 |
-
["
|
94 |
-
|
95 |
-
"\
|
96 |
-
"\
|
97 |
-
"\
|
98 |
-
|
99 |
-
["\
|
100 |
-
|
101 |
-
|
102 |
-
"\
|
103 |
-
"\
|
104 |
-
|
105 |
-
"
|
106 |
-
|
107 |
-
["\
|
108 |
-
"
|
109 |
-
|
110 |
-
"
|
111 |
-
"
|
112 |
-
["
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
"\
|
118 |
-
["\
|
119 |
-
["
|
120 |
-
[
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
"\
|
131 |
-
["
|
132 |
-
"
|
133 |
-
|
134 |
-
"
|
135 |
-
["\
|
136 |
-
"\
|
137 |
-
|
138 |
-
|
139 |
-
|
140 |
-
|
141 |
-
"\
|
142 |
-
|
143 |
-
"\
|
144 |
-
|
145 |
-
[
|
146 |
-
|
147 |
-
["\
|
148 |
-
|
149 |
-
|
150 |
-
[
|
151 |
-
"
|
152 |
-
|
153 |
-
|
154 |
-
|
155 |
-
|
156 |
-
"
|
157 |
-
|
158 |
-
["
|
159 |
-
|
160 |
-
"
|
161 |
-
["
|
162 |
-
"
|
163 |
-
"
|
164 |
-
"
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
"\
|
170 |
-
"\
|
171 |
-
["\
|
172 |
-
"
|
173 |
-
["\
|
174 |
-
["\
|
175 |
-
|
176 |
-
["\
|
177 |
-
|
178 |
-
["\
|
179 |
-
|
180 |
-
|
181 |
-
|
182 |
-
"
|
183 |
-
|
184 |
-
"\
|
185 |
-
"
|
186 |
-
"\
|
187 |
-
"\
|
188 |
-
"\
|
189 |
-
"
|
190 |
-
["
|
191 |
-
|
192 |
-
"
|
193 |
-
"
|
194 |
-
|
195 |
-
|
196 |
-
|
197 |
-
"
|
198 |
-
"
|
199 |
-
"\
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
[
|
204 |
-
|
205 |
-
["
|
206 |
-
|
207 |
-
["
|
208 |
-
|
209 |
-
["\
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
"
|
214 |
-
|
215 |
-
"
|
216 |
-
"\
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
["\
|
221 |
-
|
222 |
-
"
|
223 |
-
["\
|
224 |
-
"
|
225 |
-
|
226 |
-
|
227 |
-
"\
|
228 |
-
["
|
229 |
-
["\
|
230 |
-
|
231 |
-
"
|
232 |
-
|
233 |
-
|
234 |
-
"
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
["\
|
242 |
-
"\
|
243 |
-
"
|
244 |
-
["
|
245 |
-
"\
|
246 |
-
|
247 |
-
|
248 |
-
"
|
249 |
-
|
250 |
-
|
251 |
-
"
|
252 |
-
|
253 |
-
"\
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
this
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
"
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
this.VKI_target.
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
d[i++];)if((e.nodeName=="TEXTAREA"||e.type=="text"||e.type=="password")&&e.className.indexOf("keyboardInput")>-1)a.VKI_attachKeyboard(e);g(document.documentElement,"click",function(){a.VKI_close()},false)},false)})();
|
56 |
*
|
57 |
*/
|
58 |
var VKI_attach,VKI_close;
|
59 |
+
(function(){function n(b){if(b.nodeName=="TD"){if(!b.click)b.click=function(){var a=this.ownerDocument.createEvent("MouseEvents");a.initMouseEvent("click",!0,!0,this.ownerDocument.defaultView,1,0,0,0,0,!1,!1,!1,!1,0,null);this.dispatchEvent(a)};b.VKI_clickless=0;g(b,"dblclick",function(){return!1},!1)}g(b,"mouseover",function(){if(this.nodeName=="TD"&&a.VKI_clickless){var b=this;clearTimeout(this.VKI_clickless);this.VKI_clickless=setTimeout(function(){b.click()},a.VKI_clickless)}a.VKI_isIE&&(this.className+=
|
60 |
+
" hover")},!1);g(b,"mouseout",function(){this.nodeName=="TD"&&clearTimeout(this.VKI_clickless);if(a.VKI_isIE)this.className=this.className.replace(/ ?(hover|pressed) ?/g,"")},!1);g(b,"mousedown",function(){this.nodeName=="TD"&&clearTimeout(this.VKI_clickless);a.VKI_isIE&&(this.className+=" pressed")},!1);g(b,"mouseup",function(){this.nodeName=="TD"&&clearTimeout(this.VKI_clickless);if(a.VKI_isIE)this.className=this.className.replace(/ ?pressed ?/g,"")},!1)}function v(){var b=!1,d="\u00a0";if(this.firstChild.nodeName.toLowerCase()!=
|
61 |
+
"small"){if((d=this.firstChild.nodeValue)=="\u00a0")return!1}else d=this.firstChild.getAttribute("char");a.VKI_deadkeysOn.checked&&a.VKI_dead&&(a.VKI_dead!=d?d!=" "?a.VKI_deadkey[a.VKI_dead][d]&&(a.VKI_insert(a.VKI_deadkey[a.VKI_dead][d]),b=!0):(a.VKI_insert(a.VKI_dead),b=!0):b=!0);a.VKI_dead=!1;if(!b)a.VKI_deadkeysOn.checked&&a.VKI_deadkey[d]?(a.VKI_dead=d,this.className+=" dead",a.VKI_shift&&a.VKI_modify("Shift"),a.VKI_altgr&&a.VKI_modify("AltGr")):a.VKI_insert(d);a.VKI_modify("");return!1}function g(a,
|
62 |
+
d,m,c){a.addEventListener?a.addEventListener(d,function(d){m.call(a,d)},c):a.attachEvent&&a.attachEvent("on"+d,function(){m.call(a)})}function t(a){for(var d=curtop=0,m=a;m=m.parentNode;){if(m==document.body)break;d-=m.scrollLeft||0;curtop-=m.scrollTop||0}do d+=a.offsetLeft,curtop+=a.offsetTop;while(a=a.offsetParent);return[d,curtop]}function z(){if(a.innerHeight)return[a.innerWidth,a.innerHeight];else if(document.documentElement&&document.documentElement.clientHeight)return[document.documentElement.clientWidth,
|
63 |
+
document.documentElement.clientHeight];else if(document.body)return[document.body.clientWidth,document.body.clientHeight];return[0,0]}function A(){var a=document.getElementsByTagName("html")[0];if(a.scrollTop&&document.documentElement.scrollTop)return[a.scrollLeft,a.scrollTop];else if(a.scrollTop||document.documentElement.scrollTop)return[a.scrollLeft+document.documentElement.scrollLeft,a.scrollTop+document.documentElement.scrollTop];else if(document.body.scrollTop)return[document.body.scrollLeft,
|
64 |
+
document.body.scrollTop];return[0,0]}var a=this;this.VKI_version="1.44";this.VKI_deadkeysOn=this.VKI_deadBox=this.VKI_dead=this.VKI_altgr=this.VKI_altgrlock=this.VKI_shift=this.VKI_shiftlock=this.VKI_target=this.VKI_showVersion=!1;this.VKI_numberPad=!0;this.VKI_numberPadOn=!1;this.VKI_kts=this.VKI_kt="US International";this.VKI_langAdapt=!0;this.VKI_size=2;this.VKI_sizeAdj=!0;this.VKI_clearPasswords=!1;this.VKI_imageURI="";this.VKI_clickless=0;this.VKI_keyCenter=3;this.VKI_isIElt8=this.VKI_isIE6=
|
65 |
+
this.VKI_isIE=!1;this.VKI_isWebKit=/KHTML/.test(navigator.userAgent);this.VKI_isOpera=/Opera/.test(navigator.userAgent);this.VKI_isMoz=!this.VKI_isWebKit&&navigator.product=="Gecko";this.VKI_i18n={0:"Display Number Pad",1:"Display virtual keyboard interface",2:"Select keyboard layout",3:"Dead keys",4:"On",5:"Off",6:"Close the keyboard",7:"Clear",8:"Clear this input",9:"Version",10:"Decrease keyboard size",11:"Increase keyboard size"};this.VKI_layout={};this.VKI_layout["\u0627\u0644\u0639\u0631\u0628\u064a\u0629"]=
|
66 |
+
{name:"Arabic",keys:[[["\u0630","\u0651 "],["1","!","\u00a1","\u00b9"],["2","@","\u00b2"],["3","#","\u00b3"],["4","$","\u00a4","\u00a3"],["5","%","\u20ac"],["6","^","\u00bc"],["7","&","\u00bd"],["8","*","\u00be"],["9","(","\u2018"],["0",")","\u2019"],["-","_","\u00a5"],["=","+","\u00d7","\u00f7"],["Bksp","Bksp"]],[["Tab","Tab"],["\u0636","\u064e"],["\u0635","\u064b"],["\u062b","\u064f"],["\u0642","\u064c"],["\u0641","\u0644"],["\u063a","\u0625"],["\u0639","\u2018"],["\u0647","\u00f7"],["\u062e","\u00d7"],
|
67 |
+
["\u062d","\u061b"],["\u062c","<"],["\u062f",">"],["\\","|"]],[["Caps","Caps"],["\u0634","\u0650"],["\u0633","\u064d"],["\u064a","]"],["\u0628","["],["\u0644","\u0644"],["\u0627","\u0623"],["\u062a","\u0640"],["\u0646","\u060c"],["\u0645","/"],["\u0643",":"],["\u0637",'"'],["Enter","Enter"]],[["Shift","Shift"],["\u0626","~"],["\u0621","\u0652"],["\u0624","}"],["\u0631","{"],["\u0644","\u0644"],["\u0649","\u0622"],["\u0629","\u2019"],["\u0648",","],["\u0632","."],["\u0638","\u061f"],["Shift","Shift"]],
|
68 |
+
[[" "," "," "," "],["Alt","Alt"]]],lang:["ar"]};this.VKI_layout["\u0985\u09b8\u09ae\u09c0\u09df\u09be"]={name:"Assamese",keys:[[["+","?"],["\u09e7","{","\u09e7"],["\u09e8","}","\u09e8"],["\u09e9","\u09cd\u09f0","\u09e9"],["\u09ea","\u09f0\u09cd","\u09ea"],["\u09eb","\u099c\u09cd\u09f0","\u09eb"],["\u09ec","\u0995\u09cd\u09b7","\u09ec"],["\u09ed","\u0995\u09cd\u09f0","\u09ed"],["\u09ee","\u09b6\u09cd\u09f0","\u09ee"],["\u09ef","(","\u09ef"],["\u09e6",")","\u09e6"],["-",""],["\u09c3","\u098b","\u09e2",
|
69 |
+
"\u09e0"],["Bksp","Bksp"]],[["Tab","Tab"],["\u09cc","\u0994","\u09d7"],["\u09c8","\u0990"],["\u09be","\u0986"],["\u09c0","\u0988","\u09e3","\u09e1"],["\u09c2","\u098a"],["\u09f1","\u09ad"],["\u09b9","\u0999"],["\u0997","\u0998"],["\u09a6","\u09a7"],["\u099c","\u099d"],["\u09a1","\u09a2","\u09dc","\u09dd"],["Enter","Enter"]],[["Caps","Caps"],["\u09cb","\u0993","\u09f4","\u09f5"],["\u09c7","\u098f","\u09f6","\u09f7"],["\u09cd","\u0985","\u09f8","\u09f9"],["\u09bf","\u0987","\u09e2","\u098c"],["\u09c1",
|
70 |
+
"\u0989"],["\u09aa","\u09ab"],["\u09f0","","\u09f0","\u09f1"],["\u0995","\u0996"],["\u09a4","\u09a5"],["\u099a","\u099b"],["\u099f","\u09a0"],["\u09bc","\u099e"]],[["Shift","Shift"],["\u09ce","\u0983"],["\u0982","\u0981","\u09fa"],["\u09ae","\u09a3"],["\u09a8","\u09f7"],["\u09ac",'"'],["\u09b2","'"],["\u09b8","\u09b6"],[",","\u09b7"],[".",";"],["\u09af","\u09df"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["as"]};this.VKI_layout["\u0410\u0437\u04d9\u0440\u0431\u0430\u0458\u04b9\u0430\u043d\u04b9\u0430"]=
|
71 |
+
{name:"Azerbaijani Cyrillic",keys:[[["`","~"],["1","!"],["2",'"'],["3","\u2116"],["4",";"],["5","%"],["6",":"],["7","?"],["8","*"],["9","("],["0",")"],["-","_"],["=","+"],["Bksp","Bksp"]],[["Tab","Tab"],["\u0458","\u0408"],["\u04af","\u04ae"],["\u0443","\u0423"],["\u043a","\u041a"],["\u0435","\u0415"],["\u043d","\u041d"],["\u0433","\u0413"],["\u0448","\u0428"],["\u04bb","\u04ba"],["\u0437","\u0417"],["\u0445","\u0425"],["\u04b9","\u04b8"],["\\","/"]],[["Caps","Caps"],["\u0444","\u0424"],["\u044b",
|
72 |
+
"\u042b"],["\u0432","\u0412"],["\u0430","\u0410"],["\u043f","\u041f"],["\u0440","\u0420"],["\u043e","\u041e"],["\u043b","\u041b"],["\u0434","\u0414"],["\u0436","\u0416"],["\u049d","\u049c"],["Enter","Enter"]],[["Shift","Shift"],["\\","|"],["\u04d9","\u04d8"],["\u0447","\u0427"],["\u0441","\u0421"],["\u043c","\u041c"],["\u0438","\u0418"],["\u0442","\u0422"],["\u0493","\u0492"],["\u0431","\u0411"],["\u04e9","\u04e8"],[".",","],["Shift","Shift"]],[[" "," "]]],lang:["az-Cyrl"]};this.VKI_layout["Az\u0259rbaycanca"]=
|
73 |
+
{name:"Azerbaijani Latin",keys:[[["`","~"],["1","!"],["2",'"'],["3","\u2166"],["4",";"],["5","%"],["6",":"],["7","?"],["8","*"],["9","("],["0",")"],["-","_"],["=","+"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q"],["\u00fc","\u00dc"],["e","E"],["r","R"],["t","T"],["y","Y"],["u","U"],["i","\u0130"],["o","O"],["p","P"],["\u00f6","\u00d6"],["\u011f","\u011e"],["\\","/"]],[["Caps","Caps"],["a","A"],["s","S"],["d","D"],["f","F"],["g","G"],["h","H"],["j","J"],["k","K"],["l","L"],["\u0131","I"],["\u0259","\u018f"],
|
74 |
+
["Enter","Enter"]],[["Shift","Shift"],["z","Z"],["x","X"],["c","C"],["v","V"],["b","B"],["n","N"],["m","M"],["\u00e7","\u00c7"],["\u015f","\u015e"],[".",","],["Shift","Shift"]],[[" "," "]]],lang:["az"]};this.VKI_layout["\u0411\u0435\u043b\u0430\u0440\u0443\u0441\u043a\u0430\u044f"]={name:"Belarusian",keys:[[["\u0451","\u0401"],["1","!"],["2",'"'],["3","\u2116"],["4",";"],["5","%"],["6",":"],["7","?"],["8","*"],["9","("],["0",")"],["-","_"],["=","+"],["Bksp","Bksp"]],[["Tab","Tab"],["\u0439","\u0419"],
|
75 |
+
["\u0446","\u0426"],["\u0443","\u0423"],["\u043a","\u041a"],["\u0435","\u0415"],["\u043d","\u041d"],["\u0433","\u0413"],["\u0448","\u0428"],["\u045e","\u040e"],["\u0437","\u0417"],["\u0445","\u0425"],["'","'"],["\\","/"]],[["Caps","Caps"],["\u0444","\u0424"],["\u044b","\u042b"],["\u0432","\u0412"],["\u0430","\u0410"],["\u043f","\u041f"],["\u0440","\u0420"],["\u043e","\u041e"],["\u043b","\u041b"],["\u0434","\u0414"],["\u0436","\u0416"],["\u044d","\u042d"],["Enter","Enter"]],[["Shift","Shift"],["/",
|
76 |
+
"|"],["\u044f","\u042f"],["\u0447","\u0427"],["\u0441","\u0421"],["\u043c","\u041c"],["\u0456","\u0406"],["\u0442","\u0422"],["\u044c","\u042c"],["\u0431","\u0411"],["\u044e","\u042e"],[".",","],["Shift","Shift"]],[[" "," "]]],lang:["be"]};this.VKI_layout["Belgische / Belge"]={name:"Belgian",keys:[[["\u00b2","\u00b3"],["&","1","|"],["\u00e9","2","@"],['"',"3","#"],["'","4"],["(","5"],["\u00a7","6","^"],["\u00e8","7"],["!","8"],["\u00e7","9","{"],["\u00e0","0","}"],[")","\u00b0"],["-","_"],["Bksp",
|
77 |
+
"Bksp"]],[["Tab","Tab"],["a","A"],["z","Z"],["e","E","\u20ac"],["r","R"],["t","T"],["y","Y"],["u","U"],["i","I"],["o","O"],["p","P"],["^","\u00a8","["],["$","*","]"],["\u03bc","\u00a3","`"]],[["Caps","Caps"],["q","Q"],["s","S"],["d","D"],["f","F"],["g","G"],["h","H"],["j","J"],["k","K"],["l","L"],["m","M"],["\u00f9","%","\u00b4"],["Enter","Enter"]],[["Shift","Shift"],["<",">","\\"],["w","W"],["x","X"],["c","C"],["v","V"],["b","B"],["n","N"],[",","?"],[";","."],[":","/"],["=","+","~"],["Shift","Shift"]],
|
78 |
+
[[" "," "," "," "],["AltGr","AltGr"]]],lang:["nl-BE","fr-BE"]};this.VKI_layout["\u0411\u044a\u043b\u0433\u0430\u0440\u0441\u043a\u0438 \u0424\u043e\u043d\u0435\u0442\u0438\u0447\u0435\u043d"]={name:"Bulgarian Phonetic",keys:[[["\u0447","\u0427"],["1","!"],["2","@"],["3","#"],["4","$"],["5","%"],["6","^"],["7","&"],["8","*"],["9","("],["0",")"],["-","_"],["=","+"],["Bksp","Bksp"]],[["Tab","Tab"],["\u044f","\u042f"],["\u0432","\u0412"],["\u0435","\u0415"],["\u0440","\u0420"],["\u0442","\u0422"],["\u044a",
|
79 |
+
"\u042a"],["\u0443","\u0423"],["\u0438","\u0418"],["\u043e","\u041e"],["\u043f","\u041f"],["\u0448","\u0428"],["\u0449","\u0429"],["\u044e","\u042e"]],[["Caps","Caps"],["\u0430","\u0410"],["\u0441","\u0421"],["\u0434","\u0414"],["\u0444","\u0424"],["\u0433","\u0413"],["\u0445","\u0425"],["\u0439","\u0419"],["\u043a","\u041a"],["\u043b","\u041b"],[";",":"],["'",'"'],["Enter","Enter"]],[["Shift","Shift"],["\u0437","\u0417"],["\u044c","\u042c"],["\u0446","\u0426"],["\u0436","\u0416"],["\u0431","\u0411"],
|
80 |
+
["\u043d","\u041d"],["\u043c","\u041c"],[",","<"],[".",">"],["/","?"],["Shift","Shift"]],[[" "," "]]],lang:["bg"]};this.VKI_layout["\u0411\u044a\u043b\u0433\u0430\u0440\u0441\u043a\u0438"]={name:"Bulgarian BDS",keys:[[["`","~"],["1","!"],["2","?"],["3","+"],["4",'"'],["5","%"],["6","="],["7",":"],["8","/"],["9","_"],["0","\u2116"],["-","\u0406"],["=","V"],["Bksp","Bksp"]],[["Tab","Tab"],[",","\u044b"],["\u0443","\u0423"],["\u0435","\u0415"],["\u0438","\u0418"],["\u0448","\u0428"],["\u0449","\u0429"],
|
81 |
+
["\u043a","\u041a"],["\u0441","\u0421"],["\u0434","\u0414"],["\u0437","\u0417"],["\u0446","\u0426"],[";","\u00a7"],["(",")"]],[["Caps","Caps"],["\u044c","\u042c"],["\u044f","\u042f"],["\u0430","\u0410"],["\u043e","\u041e"],["\u0436","\u0416"],["\u0433","\u0413"],["\u0442","\u0422"],["\u043d","\u041d"],["\u0412","\u0412"],["\u043c","\u041c"],["\u0447","\u0427"],["Enter","Enter"]],[["Shift","Shift"],["\u042e","\u044e"],["\u0439","\u0419"],["\u044a","\u042a"],["\u044d","\u042d"],["\u0444","\u0424"],
|
82 |
+
["\u0445","\u0425"],["\u043f","\u041f"],["\u0440","\u0420"],["\u043b","\u041b"],["\u0431","\u0411"],["Shift","Shift"]],[[" "," "]]]};this.VKI_layout["\u09ac\u09be\u0982\u09b2\u09be"]={name:"Bengali",keys:[[[""],["1","","\u09e7"],["2","","\u09e8"],["3","\u09cd\u09b0","\u09e9"],["4","\u09b0\u09cd","\u09ea"],["5","\u099c\u09cd\u09b0","\u09eb"],["6","\u09a4\u09cd\u09b7","\u09ec"],["7","\u0995\u09cd\u09b0","\u09ed"],["8","\u09b6\u09cd\u09b0","\u09ee"],["9","(","\u09ef"],["0",")","\u09e6"],["-","\u0983"],
|
83 |
+
["\u09c3","\u098b","\u09e2","\u09e0"],["Bksp","Bksp"]],[["Tab","Tab"],["\u09cc","\u0994","\u09d7"],["\u09c8","\u0990"],["\u09be","\u0986"],["\u09c0","\u0988","\u09e3","\u09e1"],["\u09c2","\u098a"],["\u09ac","\u09ad"],["\u09b9","\u0999"],["\u0997","\u0998"],["\u09a6","\u09a7"],["\u099c","\u099d"],["\u09a1","\u09a2","\u09dc","\u09dd"],["Enter","Enter"]],[["Caps","Caps"],["\u09cb","\u0993","\u09f4","\u09f5"],["\u09c7","\u098f","\u09f6","\u09f7"],["\u09cd","\u0985","\u09f8","\u09f9"],["\u09bf","\u0987",
|
84 |
+
"\u09e2","\u098c"],["\u09c1","\u0989"],["\u09aa","\u09ab"],["\u09b0","","\u09f0","\u09f1"],["\u0995","\u0996"],["\u09a4","\u09a5"],["\u099a","\u099b"],["\u099f","\u09a0"],["\u09bc","\u099e"]],[["Shift","Shift"],[""],["\u0982","\u0981","\u09fa"],["\u09ae","\u09a3"],["\u09a8"],["\u09ac"],["\u09b2"],["\u09b8","\u09b6"],[",","\u09b7"],[".","{"],["\u09af","\u09df"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["bn"]};this.VKI_layout.Bosanski={name:"Bosnian",keys:[[["\u00b8","\u00a8"],
|
85 |
+
["1","!","~"],["2",'"',"\u02c7"],["3","#","^"],["4","$","\u02d8"],["5","%","\u00b0"],["6","&","\u02db"],["7","/","`"],["8","(","\u02d9"],["9",")","\u00b4"],["0","=","\u02dd"],["'","?","\u00a8"],["+","*","\u00b8"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q","\\"],["w","W","|"],["e","E","\u20ac"],["r","R"],["t","T"],["z","Z"],["u","U"],["i","I"],["o","O"],["p","P"],["\u0161","\u0160","\u00f7"],["\u0111","\u0110","\u00d7"],["\u017e","\u017d","\u00a4"]],[["Caps","Caps"],["a","A"],["s","S"],["d","D"],["f",
|
86 |
+
"F","["],["g","G","]"],["h","H"],["j","J"],["k","K","\u0142"],["l","L","\u0141"],["\u010d","\u010c"],["\u0107","\u0106","\u00df"],["Enter","Enter"]],[["Shift","Shift"],["<",">"],["y","Y"],["x","X"],["c","C"],["v","V","@"],["b","B","{"],["n","N","}"],["m","M","\u00a7"],[",",";","<"],[".",":",">"],["-","_","\u00a9"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["bs"]};this.VKI_layout["Canadienne-fran\u00e7aise"]={name:"Canadian French",keys:[[["#","|","\\"],["1","!","\u00b1"],["2",
|
87 |
+
'"',"@"],["3","/","\u00a3"],["4","$","\u00a2"],["5","%","\u00a4"],["6","?","\u00ac"],["7","&","\u00a6"],["8","*","\u00b2"],["9","(","\u00b3"],["0",")","\u00bc"],["-","_","\u00bd"],["=","+","\u00be"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q"],["w","W"],["e","E"],["r","R"],["t","T"],["y","Y"],["u","U"],["i","I"],["o","O","\u00a7"],["p","P","\u00b6"],["^","^","["],["\u00b8","\u00a8","]"],["<",">","}"]],[["Caps","Caps"],["a","A"],["s","S"],["d","D"],["f","F"],["g","G"],["h","H"],["j","J"],["k","K"],["l",
|
88 |
+
"L"],[";",":","~"],["`","`","{"],["Enter","Enter"]],[["Shift","Shift"],["\u00ab","\u00bb","\u00b0"],["z","Z"],["x","X"],["c","C"],["v","V"],["b","B"],["n","N"],["m","M","\u00b5"],[",","'","\u00af"],[".",".","\u00ad"],["\u00e9","\u00c9","\u00b4"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["fr-CA"]};this.VKI_layout["\u010cesky"]={name:"Czech",keys:[[[";","\u00b0","`","~"],["+","1","!"],["\u011b","2","@"],["\u0161","3","#"],["\u010d","4","$"],["\u0159","5","%"],["\u017e","6","^"],
|
89 |
+
["\u00fd","7","&"],["\u00e1","8","*"],["\u00ed","9","("],["\u00e9","0",")"],["=","%","-","_"],["\u00b4","\u02c7","=","+"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q"],["w","W"],["e","E","\u20ac"],["r","R"],["t","T"],["y","Y"],["u","U"],["i","I"],["o","O"],["p","P"],["\u00fa","/","[","{"],[")","(","]","}"],["\u00a8","'","\\","|"]],[["Caps","Caps"],["a","A"],["s","S"],["d","D"],["f","F"],["g","G"],["h","H"],["j","J"],["k","K"],["l","L"],["\u016f",'"',";",":"],["\u00a7","!","\u00a4","^"],["Enter","Enter"]],
|
90 |
+
[["Shift","Shift"],["\\","|","","\u02dd"],["z","Z"],["x","X"],["c","C"],["v","V"],["b","B"],["n","N"],["m","M"],[",","?","<","\u00d7"],[".",":",">","\u00f7"],["-","_","/","?"],["Shift","Shift"]],[[" "," "," "," "],["Alt","Alt"]]],lang:["cs"]};this.VKI_layout.Dansk={name:"Danish",keys:[[["\u00bd","\u00a7"],["1","!"],["2",'"',"@"],["3","#","\u00a3"],["4","\u00a4","$"],["5","%","\u20ac"],["6","&"],["7","/","{"],["8","(","["],["9",")","]"],["0","=","}"],["+","?"],["\u00b4","`","|"],["Bksp","Bksp"]],[["Tab",
|
91 |
+
"Tab"],["q","Q"],["w","W"],["e","E","\u20ac"],["r","R"],["t","T"],["y","Y"],["u","U"],["i","I"],["o","O"],["p","P"],["\u00e5","\u00c5"],["\u00a8","^","~"],["'","*"]],[["Caps","Caps"],["a","A"],["s","S"],["d","D"],["f","F"],["g","G"],["h","H"],["j","J"],["k","K"],["l","L"],["\u00e6","\u00c6"],["\u00f8","\u00d8"],["Enter","Enter"]],[["Shift","Shift"],["<",">","\\"],["z","Z"],["x","X"],["c","C"],["v","V"],["b","B"],["n","N"],["m","M","\u03bc","\u039c"],[",",";"],[".",":"],["-","_"],["Shift","Shift"]],
|
92 |
+
[[" "," "," "," "],["AltGr","AltGr"]]],lang:["da"]};this.VKI_layout.Deutsch={name:"German",keys:[[["^","\u00b0"],["1","!"],["2",'"',"\u00b2"],["3","\u00a7","\u00b3"],["4","$"],["5","%"],["6","&"],["7","/","{"],["8","(","["],["9",")","]"],["0","=","}"],["\u00df","?","\\"],["\u00b4","`"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q","@"],["w","W"],["e","E","\u20ac"],["r","R"],["t","T"],["z","Z"],["u","U"],["i","I"],["o","O"],["p","P"],["\u00fc","\u00dc"],["+","*","~"],["#","'"]],[["Caps","Caps"],["a","A"],
|
93 |
+
["s","S"],["d","D"],["f","F"],["g","G"],["h","H"],["j","J"],["k","K"],["l","L"],["\u00f6","\u00d6"],["\u00e4","\u00c4"],["Enter","Enter"]],[["Shift","Shift"],["<",">","\u00a6"],["y","Y"],["x","X"],["c","C"],["v","V"],["b","B"],["n","N"],["m","M","\u00b5"],[",",";"],[".",":"],["-","_"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["de"]};this.VKI_layout.Dingbats={name:"Dingbats",keys:[[["\u2764","\u2765","\u2766","\u2767"],["\u278a","\u2780","\u2776","\u2768"],["\u278b","\u2781",
|
94 |
+
"\u2777","\u2769"],["\u278c","\u2782","\u2778","\u276a"],["\u278d","\u2783","\u2779","\u276b"],["\u278e","\u2784","\u277a","\u276c"],["\u278f","\u2785","\u277b","\u276d"],["\u2790","\u2786","\u277c","\u276e"],["\u2791","\u2787","\u277d","\u276f"],["\u2792","\u2788","\u277e","\u2770"],["\u2793","\u2789","\u277f","\u2771"],["\u2795","\u2796","\u274c","\u2797"],["\u2702","\u2704","\u2701","\u2703"],["Bksp","Bksp"]],[["Tab","Tab"],["\u2714","\u2705","\u2713"],["\u2718","\u2715","\u2717","\u2716"],["\u271a",
|
95 |
+
"\u2719","\u271b","\u271c"],["\u271d","\u271e","\u271f","\u2720"],["\u2722","\u2723","\u2724","\u2725"],["\u2726","\u2727","\u2728","\u2756"],["\u2729","\u272a","\u272d","\u2730"],["\u272c","\u272b","\u272e","\u272f"],["\u2736","\u2731","\u2732","\u2749"],["\u273b","\u273c","\u273d","\u273e"],["\u2744","\u2745","\u2746","\u2743"],["\u2733","\u2734","\u2735","\u2721"],["\u2737","\u2738","\u2739","\u273a"]],[["Caps","Caps"],["\u2799","\u279a","\u2798","\u2758"],["\u27b5","\u27b6","\u27b4","\u2759"],
|
96 |
+
["\u27b8","\u27b9","\u27b7","\u275a"],["\u2794","\u279c","\u27ba","\u27bb"],["\u279d","\u279e","\u27a1","\u2772"],["\u27a9","\u27aa","\u27ab","\u27ac"],["\u27a4","\u27a3","\u27a2","\u279b"],["\u27b3","\u27bc","\u27bd","\u2773"],["\u27ad","\u27ae","\u27af","\u27b1"],["\u27a8","\u27a6","\u27a5","\u27a7"],["\u279f","\u27a0","\u27be","\u27b2"],["Enter","Enter"]],[["Shift","Shift"],["\u270c","\u270b","\u270a","\u270d"],["\u274f","\u2750","\u2751","\u2752"],["\u273f","\u2740","\u2741","\u2742"],["\u2747",
|
97 |
+
"\u2748","\u274a","\u274b"],["\u2757","\u2755","\u2762","\u2763"],["\u2753","\u2754","\u27b0","\u27bf"],["\u270f","\u2710","\u270e","\u2774"],["\u2712","\u2711","\u274d","\u274e"],["\u2709","\u2706","\u2708","\u2707"],["\u275b","\u275d","\u2761","\u2775"],["\u275c","\u275e","\u275f","\u2760"],["Shift","Shift"]],[["AltLk","AltLk"],[" "," "," "," "],["AltGr","AltGr"]]]};this.VKI_layout["\u078b\u07a8\u0788\u07ac\u0780\u07a8\u0784\u07a6\u0790\u07b0"]={name:"Divehi",keys:[[["`","~"],["1","!"],["2","@"],
|
98 |
+
["3","#"],["4","$"],["5","%"],["6","^"],["7","&"],["8","*"],["9",")"],["0","("],["-","_"],["=","+"],["Bksp","Bksp"]],[["Tab","Tab"],["\u07ab","\u00d7"],["\u07ae","\u2019"],["\u07a7","\u201c"],["\u07a9","/"],["\u07ad",":"],["\u078e","\u07a4"],["\u0783","\u079c"],["\u0789","\u07a3"],["\u078c","\u07a0"],["\u0780","\u0799"],["\u078d","\u00f7"],["[","{"],["]","}"]],[["Caps","Caps"],["\u07a8","<"],["\u07aa",">"],["\u07b0",".",",",","],["\u07a6","\u060c"],["\u07ac",'"'],["\u0788","\u07a5"],["\u0787","\u07a2"],
|
99 |
+
["\u0782","\u0798"],["\u0786","\u079a"],["\u078a","\u07a1"],["\ufdf2","\u061b",";",";"],["Enter","Enter"]],[["Shift","Shift"],["\\","|"],["\u0792","\u0796"],["\u0791","\u0795"],["\u0790","\u078f"],["\u0794","\u0797","\u200d"],["\u0785","\u079f","\u200c"],["\u078b","\u079b","\u200e"],["\u0784","\u079d","\u200f"],["\u0781","\\"],["\u0793","\u079e"],["\u07af","\u061f"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["dv"]};this.VKI_layout.Dvorak={name:"Dvorak",keys:[[["`","~"],["1","!"],
|
100 |
+
["2","@"],["3","#"],["4","$"],["5","%"],["6","^"],["7","&"],["8","*"],["9","("],["0",")"],["[","{"],["]","}"],["Bksp","Bksp"]],[["Tab","Tab"],["'",'"'],[",","<"],[".",">"],["p","P"],["y","Y"],["f","F"],["g","G"],["c","C"],["r","R"],["l","L"],["/","?"],["=","+"],["\\","|"]],[["Caps","Caps"],["a","A"],["o","O"],["e","E"],["u","U"],["i","I"],["d","D"],["h","H"],["t","T"],["n","N"],["s","S"],["-","_"],["Enter","Enter"]],[["Shift","Shift"],[";",":"],["q","Q"],["j","J"],["k","K"],["x","X"],["b","B"],["m",
|
101 |
+
"M"],["w","W"],["v","V"],["z","Z"],["Shift","Shift"]],[[" "," "]]]};this.VKI_layout["\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac"]={name:"Greek",keys:[[["`","~"],["1","!"],["2","@","\u00b2"],["3","#","\u00b3"],["4","$","\u00a3"],["5","%","\u00a7"],["6","^","\u00b6"],["7","&"],["8","*","\u00a4"],["9","(","\u00a6"],["0",")","\u00ba"],["-","_","\u00b1"],["=","+","\u00bd"],["Bksp","Bksp"]],[["Tab","Tab"],[";",":"],["\u03c2","^"],["\u03b5","\u0395"],["\u03c1","\u03a1"],["\u03c4","\u03a4"],["\u03c5",
|
102 |
+
"\u03a5"],["\u03b8","\u0398"],["\u03b9","\u0399"],["\u03bf","\u039f"],["\u03c0","\u03a0"],["[","{","\u201c"],["]","}","\u201d"],["\\","|","\u00ac"]],[["Caps","Caps"],["\u03b1","\u0391"],["\u03c3","\u03a3"],["\u03b4","\u0394"],["\u03c6","\u03a6"],["\u03b3","\u0393"],["\u03b7","\u0397"],["\u03be","\u039e"],["\u03ba","\u039a"],["\u03bb","\u039b"],["\u0384","\u00a8","\u0385"],["'",'"'],["Enter","Enter"]],[["Shift","Shift"],["<",">"],["\u03b6","\u0396"],["\u03c7","\u03a7"],["\u03c8","\u03a8"],["\u03c9",
|
103 |
+
"\u03a9"],["\u03b2","\u0392"],["\u03bd","\u039d"],["\u03bc","\u039c"],[",","<"],[".",">"],["/","?"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["el"]};this.VKI_layout.Eesti={name:"Estonian",keys:[[["\u02c7","~"],["1","!"],["2",'"',"@","@"],["3","#","\u00a3","\u00a3"],["4","\u00a4","$","$"],["5","%","\u20ac"],["6","&"],["7","/","{","{"],["8","(","[","["],["9",")","]","]"],["0","=","}","}"],["+","?","\\","\\"],["\u00b4","`"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q"],["w","W"],["e",
|
104 |
+
"E","\u20ac"],["r","R"],["t","T"],["y","Y"],["u","U"],["i","I"],["o","O"],["p","P"],["\u00fc","\u00dc"],["\u00f5","\u00d5","\u00a7","\u00a7"],["'","*","\u00bd","\u00bd"]],[["Caps","Caps"],["a","A"],["s","S","\u0161","\u0160"],["d","D"],["f","F"],["g","G"],["h","H"],["j","J"],["k","K"],["l","L"],["\u00f6","\u00d6"],["\u00e4","\u00c4","^","^"],["Enter","Enter"]],[["Shift","Shift"],["<",">","|","|"],["z","Z","\u017e","\u017d"],["x","X"],["c","C"],["v","V"],["b","B"],["n","N"],["m","M"],[",",";"],[".",
|
105 |
+
":"],["-","_"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["et"]};this.VKI_layout["Espa\u00f1ol"]={name:"Spanish",keys:[[["\u00ba","\u00aa","\\"],["1","!","|"],["2",'"',"@"],["3","'","#"],["4","$","~"],["5","%","\u20ac"],["6","&","\u00ac"],["7","/"],["8","("],["9",")"],["0","="],["'","?"],["\u00a1","\u00bf"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q"],["w","W"],["e","E"],["r","R"],["t","T"],["y","Y"],["u","U"],["i","I"],["o","O"],["p","P"],["`","^","["],["+","*","]"],["\u00e7","\u00c7",
|
106 |
+
"}"]],[["Caps","Caps"],["a","A"],["s","S"],["d","D"],["f","F"],["g","G"],["h","H"],["j","J"],["k","K"],["l","L"],["\u00f1","\u00d1"],["\u00b4","\u00a8","{"],["Enter","Enter"]],[["Shift","Shift"],["<",">"],["z","Z"],["x","X"],["c","C"],["v","V"],["b","B"],["n","N"],["m","M"],[",",";"],[".",":"],["-","_"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["es"]};this.VKI_layout["\u062f\u0631\u06cc"]={name:"Dari",keys:[[["\u200d","\u00f7","~"],["\u06f1","!","`"],["\u06f2","\u066c","@"],
|
107 |
+
["\u06f3","\u066b","#"],["\u06f4","\u060b","$"],["\u06f5","\u066a","%"],["\u06f6","\u00d7","^"],["\u06f7","\u060c","&"],["\u06f8","*","\u2022"],["\u06f9",")","\u200e"],["\u06f0","(","\u200f"],["-","\u0640","_"],["=","+"],["Bksp","Bksp"]],[["Tab","Tab"],["\u0636","\u0652","\u00b0"],["\u0635","\u064c"],["\u062b","\u064d","\u20ac"],["\u0642","\u064b","\ufd3e"],["\u0641","\u064f","\ufd3f"],["\u063a","\u0650","\u0656"],["\u0639","\u064e","\u0659"],["\u0647","\u0651","\u0655"],["\u062e","]","'"],["\u062d",
|
108 |
+
"[",'"'],["\u062c","}","\u0681"],["\u0686","{","\u0685"],["\\","|","?"]],[["Caps","Caps"],["\u0634","\u0624","\u069a"],["\u0633","\u0626","\u06cd"],["\u06cc","\u064a","\u0649"],["\u0628","\u0625","\u06d0"],["\u0644","\u0623","\u06b7"],["\u0627","\u0622","\u0671"],["\u062a","\u0629","\u067c"],["\u0646","\u00bb","\u06bc"],["\u0645","\u00ab","\u06ba"],["\u06a9",":",";"],["\u06af","\u061b","\u06ab"],["Enter","Enter"]],[["Shift","Shift"],["\u0638","\u0643","\u06d2"],["\u0637","\u0653","\u0691"],["\u0632",
|
109 |
+
"\u0698","\u0696"],["\u0631","\u0670","\u0693"],["\u0630","\u200c","\u0688"],["\u062f","\u0654","\u0689"],["\u067e","\u0621","\u0679"],["\u0648",">",","],[".","<","\u06c7"],["/","\u061f","\u06c9"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["fa-AF"]};this.VKI_layout["\u0641\u0627\u0631\u0633\u06cc"]={name:"Farsi",keys:[[["\u067e","\u0651 "],["1","!","\u00a1","\u00b9"],["2","@","\u00b2"],["3","#","\u00b3"],["4","$","\u00a4","\u00a3"],["5","%","\u20ac"],["6","^","\u00bc"],["7","&",
|
110 |
+
"\u00bd"],["8","*","\u00be"],["9","(","\u2018"],["0",")","\u2019"],["-","_","\u00a5"],["=","+","\u00d7","\u00f7"],["Bksp","Bksp"]],[["Tab","Tab"],["\u0636","\u064e"],["\u0635","\u064b"],["\u062b","\u064f"],["\u0642","\u064c"],["\u0641","\u0644"],["\u063a","\u0625"],["\u0639","\u2018"],["\u0647","\u00f7"],["\u062e","\u00d7"],["\u062d","\u061b"],["\u062c","<"],["\u0686",">"],["\u0698","|"]],[["Caps","Caps"],["\u0634","\u0650"],["\u0633","\u064d"],["\u064a","]"],["\u0628","["],["\u0644","\u0644"],["\u0627",
|
111 |
+
"\u0623"],["\u062a","\u0640"],["\u0646","\u060c"],["\u0645","\\"],["\u06af",":"],["\u0643",'"'],["Enter","Enter"]],[["Shift","Shift"],["\u0626","~"],["\u0621","\u0652"],["\u0632","}"],["\u0631","{"],["\u0630","\u0644"],["\u062f","\u0622"],["\u0626","\u0621"],["\u0648",","],[".","."],["/","\u061f"],["Shift","Shift"]],[[" "," "," "," "],["Alt","Alt"]]],lang:["fa"]};this.VKI_layout["F\u00f8royskt"]={name:"Faeroese",keys:[[["\u00bd","\u00a7"],["1","!"],["2",'"',"@"],["3","#","\u00a3"],["4","\u00a4","$"],
|
112 |
+
["5","%","\u20ac"],["6","&"],["7","/","{"],["8","(","["],["9",")","]"],["0","=","}"],["+","?"],["\u00b4","`","|"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q"],["w","W"],["e","E","\u20ac"],["r","R"],["t","T"],["y","Y"],["u","U"],["i","I"],["o","O"],["p","P"],["\u00e5","\u00c5","\u00a8"],["\u00f0","\u00d0","~"],["'","*"]],[["Caps","Caps"],["a","A"],["s","S"],["d","D"],["f","F"],["g","G"],["h","H"],["j","J"],["k","K"],["l","L"],["\u00e6","\u00c6"],["\u00f8","\u00d8","^"],["Enter","Enter"]],[["Shift","Shift"],
|
113 |
+
["<",">","\\"],["z","Z"],["x","X"],["c","C"],["v","V"],["b","B"],["n","N"],["m","M","\u00b5"],[",",";"],[".",":"],["-","_"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["fo"]};this.VKI_layout["Fran\u00e7ais"]={name:"French",keys:[[["\u00b2","\u00b3"],["&","1"],["\u00e9","2","~"],['"',"3","#"],["'","4","{"],["(","5","["],["-","6","|"],["\u00e8","7","`"],["_","8","\\"],["\u00e7","9","^"],["\u00e0","0","@"],[")","\u00b0","]"],["=","+","}"],["Bksp","Bksp"]],[["Tab","Tab"],["a","A"],
|
114 |
+
["z","Z"],["e","E","\u20ac"],["r","R"],["t","T"],["y","Y"],["u","U"],["i","I"],["o","O"],["p","P"],["^","\u00a8"],["$","\u00a3","\u00a4"],["*","\u03bc"]],[["Caps","Caps"],["q","Q"],["s","S"],["d","D"],["f","F"],["g","G"],["h","H"],["j","J"],["k","K"],["l","L"],["m","M"],["\u00f9","%"],["Enter","Enter"]],[["Shift","Shift"],["<",">"],["w","W"],["x","X"],["c","C"],["v","V"],["b","B"],["n","N"],[",","?"],[";","."],[":","/"],["!","\u00a7"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["fr"]};
|
115 |
+
this.VKI_layout.Gaeilge={name:"Irish / Gaelic",keys:[[["`","\u00ac","\u00a6","\u00a6"],["1","!"],["2",'"'],["3","\u00a3"],["4","$","\u20ac"],["5","%"],["6","^"],["7","&"],["8","*"],["9","("],["0",")"],["-","_"],["=","+"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q"],["w","W"],["e","E","\u00e9","\u00c9"],["r","R"],["t","T"],["y","Y","\u00fd","\u00dd"],["u","U","\u00fa","\u00da"],["i","I","\u00ed","\u00cd"],["o","O","\u00f3","\u00d3"],["p","P"],["[","{"],["]","}"],["#","~"]],[["Caps","Caps"],["a","A","\u00e1",
|
116 |
+
"\u00c1"],["s","S"],["d","D"],["f","F"],["g","G"],["h","H"],["j","J"],["k","K"],["l","L"],[";",":"],["'","@","\u00b4","`"],["Enter","Enter"]],[["Shift","Shift"],["\\","|"],["z","Z"],["x","X"],["c","C"],["v","V"],["b","B"],["n","N"],["m","M"],[",","<"],[".",">"],["/","?"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["ga","gd"]};this.VKI_layout["\u0a97\u0ac1\u0a9c\u0ab0\u0abe\u0aa4\u0ac0"]={name:"Gujarati",keys:[[[""],["1","\u0a8d","\u0ae7"],["2","\u0ac5","\u0ae8"],["3","\u0acd\u0ab0",
|
117 |
+
"\u0ae9"],["4","\u0ab0\u0acd","\u0aea"],["5","\u0a9c\u0acd\u0a9e","\u0aeb"],["6","\u0aa4\u0acd\u0ab0","\u0aec"],["7","\u0a95\u0acd\u0ab7","\u0aed"],["8","\u0ab6\u0acd\u0ab0","\u0aee"],["9","(","\u0aef"],["0",")","\u0ae6"],["-","\u0a83"],["\u0ac3","\u0a8b","\u0ac4","\u0ae0"],["Bksp","Bksp"]],[["Tab","Tab"],["\u0acc","\u0a94"],["\u0ac8","\u0a90"],["\u0abe","\u0a86"],["\u0ac0","\u0a88"],["\u0ac2","\u0a8a"],["\u0aac","\u0aad"],["\u0ab9","\u0a99"],["\u0a97","\u0a98"],["\u0aa6","\u0aa7"],["\u0a9c","\u0a9d"],
|
118 |
+
["\u0aa1","\u0aa2"],["\u0abc","\u0a9e"],["\u0ac9","\u0a91"]],[["Caps","Caps"],["\u0acb","\u0a93"],["\u0ac7","\u0a8f"],["\u0acd","\u0a85"],["\u0abf","\u0a87"],["\u0ac1","\u0a89"],["\u0aaa","\u0aab"],["\u0ab0"],["\u0a95","\u0a96"],["\u0aa4","\u0aa5"],["\u0a9a","\u0a9b"],["\u0a9f","\u0aa0"],["Enter","Enter"]],[["Shift","Shift"],[""],["\u0a82","\u0a81","","\u0ad0"],["\u0aae","\u0aa3"],["\u0aa8"],["\u0ab5"],["\u0ab2","\u0ab3"],["\u0ab8","\u0ab6"],[",","\u0ab7"],[".","\u0964","\u0965","\u0abd"],["\u0aaf"],
|
119 |
+
["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["gu"]};this.VKI_layout["\u05e2\u05d1\u05e8\u05d9\u05ea"]={name:"Hebrew",keys:[[["~","`"],["1","!"],["2","@"],["3","#"],["4","$","\u20aa"],["5","%"],["6","^"],["7","&"],["8","*"],["9",")"],["0","("],["-","_"],["=","+"],["Bksp","Bksp"]],[["Tab","Tab"],["/","Q"],["'","W"],["\u05e7","E","\u20ac"],["\u05e8","R"],["\u05d0","T"],["\u05d8","Y"],["\u05d5","U","\u05f0"],["\u05df","I"],["\u05dd","O"],["\u05e4","P"],["\\","|"],["Enter","Enter"]],
|
120 |
+
[["Caps","Caps"],["\u05e9","A"],["\u05d3","S"],["\u05d2","D"],["\u05db","F"],["\u05e2","G"],["\u05d9","H","\u05f2"],["\u05d7","J","\u05f1"],["\u05dc","K"],["\u05da","L"],["\u05e3",":"],[",",'"'],["]","}"],["[","{"]],[["Shift","Shift"],["\u05d6","Z"],["\u05e1","X"],["\u05d1","C"],["\u05d4","V"],["\u05e0","B"],["\u05de","N"],["\u05e6","M"],["\u05ea",">"],["\u05e5","<"],[".","?"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["he"]};this.VKI_layout["\u0926\u0947\u0935\u0928\u093e\u0917\u0930\u0940"]=
|
121 |
+
{name:"Devanagari",keys:[[["\u094a","\u0912"],["1","\u090d","\u0967"],["2","\u0945","\u0968"],["3","\u094d\u0930","\u0969"],["4","\u0930\u094d","\u096a"],["5","\u091c\u094d\u091e","\u096b"],["6","\u0924\u094d\u0930","\u096c"],["7","\u0915\u094d\u0937","\u096d"],["8","\u0936\u094d\u0930","\u096e"],["9","(","\u096f"],["0",")","\u0966"],["-","\u0903"],["\u0943","\u090b","\u0944","\u0960"],["Bksp","Bksp"]],[["Tab","Tab"],["\u094c","\u0914"],["\u0948","\u0910"],["\u093e","\u0906"],["\u0940","\u0908","\u0963",
|
122 |
+
"\u0961"],["\u0942","\u090a"],["\u092c","\u092d"],["\u0939","\u0919"],["\u0917","\u0918","\u095a"],["\u0926","\u0927"],["\u091c","\u091d","\u095b"],["\u0921","\u0922","\u095c","\u095d"],["\u093c","\u091e"],["\u0949","\u0911"]],[["Caps","Caps"],["\u094b","\u0913"],["\u0947","\u090f"],["\u094d","\u0905"],["\u093f","\u0907","\u0962","\u090c"],["\u0941","\u0909"],["\u092a","\u092b","","\u095e"],["\u0930","\u0931"],["\u0915","\u0916","\u0958","\u0959"],["\u0924","\u0925"],["\u091a","\u091b","\u0952"],
|
123 |
+
["\u091f","\u0920","","\u0951"],["Enter","Enter"]],[["Shift","Shift"],["\u0946","\u090e","\u0953"],["\u0902","\u0901","","\u0950"],["\u092e","\u0923","\u0954"],["\u0928","\u0929"],["\u0935","\u0934"],["\u0932","\u0933"],["\u0938","\u0936"],[",","\u0937","\u0970"],[".","\u0964","\u0965","\u093d"],["\u092f","\u095f"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["hi-Deva"]};this.VKI_layout["\u0939\u093f\u0902\u0926\u0940"]={name:"Hindi",keys:[[["\u200d","\u200c","`","~"],["1","\u090d",
|
124 |
+
"\u0967","!"],["2","\u0945","\u0968","@"],["3","\u094d\u0930","\u0969","#"],["4","\u0930\u094d","\u096a","$"],["5","\u091c\u094d\u091e","\u096b","%"],["6","\u0924\u094d\u0930","\u096c","^"],["7","\u0915\u094d\u0937","\u096d","&"],["8","\u0936\u094d\u0930","\u096e","*"],["9","(","\u096f","("],["0",")","\u0966",")"],["-","\u0903","-","_"],["\u0943","\u090b","=","+"],["Bksp","Bksp"]],[["Tab","Tab"],["\u094c","\u0914"],["\u0948","\u0910"],["\u093e","\u0906"],["\u0940","\u0908"],["\u0942","\u090a"],["\u092c",
|
125 |
+
"\u092d"],["\u0939","\u0919"],["\u0917","\u0918"],["\u0926","\u0927"],["\u091c","\u091d"],["\u0921","\u0922","[","{"],["\u093c","\u091e","]","}"],["\u0949","\u0911","\\","|"]],[["Caps","Caps"],["\u094b","\u0913"],["\u0947","\u090f"],["\u094d","\u0905"],["\u093f","\u0907"],["\u0941","\u0909"],["\u092a","\u092b"],["\u0930","\u0931"],["\u0915","\u0916"],["\u0924","\u0925"],["\u091a","\u091b",";",":"],["\u091f","\u0920","'",'"'],["Enter","Enter"]],[["Shift","Shift"],[""],["\u0902","\u0901","","\u0950"],
|
126 |
+
["\u092e","\u0923"],["\u0928"],["\u0935"],["\u0932","\u0933"],["\u0938","\u0936"],[",","\u0937",",","<"],[".","\u0964",".",">"],["\u092f","\u095f","/","?"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["hi"]};this.VKI_layout.Hrvatski={name:"Croatian",keys:this.VKI_layout.Bosanski.keys.slice(0),lang:["hr"]};this.VKI_layout["\u0540\u0561\u0575\u0565\u0580\u0565\u0576 \u0561\u0580\u0565\u0582\u0574\u0578\u0582\u057f\u0584"]={name:"Western Armenian",keys:[[["\u055d","\u055c"],[":","1"],
|
127 |
+
["\u0571","\u0541"],["\u0575","\u0545"],["\u055b","3"],[",","4"],["-","9"],[".","\u0587"],["\u00ab","("],["\u00bb",")"],["\u0585","\u0555"],["\u057c","\u054c"],["\u056a","\u053a"],["Bksp","Bksp"]],[["Tab","Tab"],["\u056d","\u053d"],["\u057e","\u054e"],["\u0567","\u0537"],["\u0580","\u0550"],["\u0564","\u0534"],["\u0565","\u0535"],["\u0568","\u0538"],["\u056b","\u053b"],["\u0578","\u0548"],["\u0562","\u0532"],["\u0579","\u0549"],["\u057b","\u054b"],["'","\u055e"]],[["Caps","Caps"],["\u0561","\u0531"],
|
128 |
+
["\u057d","\u054d"],["\u057f","\u054f"],["\u0586","\u0556"],["\u056f","\u053f"],["\u0570","\u0540"],["\u0573","\u0543"],["\u0584","\u0554"],["\u056c","\u053c"],["\u0569","\u0539"],["\u0583","\u0553"],["Enter","Enter"]],[["Shift","Shift"],["\u0566","\u0536"],["\u0581","\u0551"],["\u0563","\u0533"],["\u0582","\u0552"],["\u057a","\u054a"],["\u0576","\u0546"],["\u0574","\u0544"],["\u0577","\u0547"],["\u0572","\u0542"],["\u056e","\u053e"],["Shift","Shift"]],[[" "," "]]],lang:["hy-arevmda"]};this.VKI_layout["\u0540\u0561\u0575\u0565\u0580\u0565\u0576 \u0561\u0580\u0565\u0582\u0565\u056c\u0584"]=
|
129 |
+
{name:"Eastern Armenian",keys:[[["\u055d","\u055c"],[":","1"],["\u0571","\u0541"],["\u0575","\u0545"],["\u055b","3"],[",","4"],["-","9"],[".","\u0587"],["\u00ab","("],["\u00bb",")"],["\u0585","\u0555"],["\u057c","\u054c"],["\u056a","\u053a"],["Bksp","Bksp"]],[["Tab","Tab"],["\u056d","\u053d"],["\u0582","\u0552"],["\u0567","\u0537"],["\u0580","\u0550"],["\u057f","\u054f"],["\u0565","\u0535"],["\u0568","\u0538"],["\u056b","\u053b"],["\u0578","\u0548"],["\u057a","\u054a"],["\u0579","\u0549"],["\u057b",
|
130 |
+
"\u054b"],["'","\u055e"]],[["Caps","Caps"],["\u0561","\u0531"],["\u057d","\u054d"],["\u0564","\u0534"],["\u0586","\u0556"],["\u0584","\u0554"],["\u0570","\u0540"],["\u0573","\u0543"],["\u056f","\u053f"],["\u056c","\u053c"],["\u0569","\u0539"],["\u0583","\u0553"],["Enter","Enter"]],[["Shift","Shift"],["\u0566","\u0536"],["\u0581","\u0551"],["\u0563","\u0533"],["\u057e","\u054e"],["\u0562","\u0532"],["\u0576","\u0546"],["\u0574","\u0544"],["\u0577","\u0547"],["\u0572","\u0542"],["\u056e","\u053e"],
|
131 |
+
["Shift","Shift"]],[[" "," "]]],lang:["hy"]};this.VKI_layout["\u00cdslenska"]={name:"Icelandic",keys:[[["\u00b0","\u00a8","\u00b0"],["1","!"],["2",'"'],["3","#"],["4","$"],["5","%","\u20ac"],["6","&"],["7","/","{"],["8","(","["],["9",")","]"],["0","=","}"],["\u00f6","\u00d6","\\"],["-","_"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q","@"],["w","W"],["e","E","\u20ac"],["r","R"],["t","T"],["y","Y"],["u","U"],["i","I"],["o","O"],["p","P"],["\u00f0","\u00d0"],["'","?","~"],["+","*","`"]],[["Caps","Caps"],
|
132 |
+
["a","A"],["s","S"],["d","D"],["f","F"],["g","G"],["h","H"],["j","J"],["k","K"],["l","L"],["\u00e6","\u00c6"],["\u00b4","'","^"],["Enter","Enter"]],[["Shift","Shift"],["<",">","|"],["z","Z"],["x","X"],["c","C"],["v","V"],["b","B"],["n","N"],["m","M","\u00b5"],[",",";"],[".",":"],["\u00fe","\u00de"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["is"]};this.VKI_layout.Italiano={name:"Italian",keys:[[["\\","|"],["1","!"],["2",'"'],["3","\u00a3"],["4","$","\u20ac"],["5","%"],["6","&"],
|
133 |
+
["7","/"],["8","("],["9",")"],["0","="],["'","?"],["\u00ec","^"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q"],["w","W"],["e","E","\u20ac"],["r","R"],["t","T"],["y","Y"],["u","U"],["i","I"],["o","O"],["p","P"],["\u00e8","\u00e9","[","{"],["+","*","]","}"],["\u00f9","\u00a7"]],[["Caps","Caps"],["a","A"],["s","S"],["d","D"],["f","F"],["g","G"],["h","H"],["j","J"],["k","K"],["l","L"],["\u00f2","\u00e7","@"],["\u00e0","\u00b0","#"],["Enter","Enter"]],[["Shift","Shift"],["<",">"],["z","Z"],["x","X"],["c",
|
134 |
+
"C"],["v","V"],["b","B"],["n","N"],["m","M"],[",",";"],[".",":"],["-","_"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["it"]};this.VKI_layout["\u65e5\u672c\u8a9e"]={name:"Japanese Hiragana/Katakana",keys:[[["\uff5e"],["\u306c","\u30cc"],["\u3075","\u30d5"],["\u3042","\u30a2","\u3041","\u30a1"],["\u3046","\u30a6","\u3045","\u30a5"],["\u3048","\u30a8","\u3047","\u30a7"],["\u304a","\u30aa","\u3049","\u30a9"],["\u3084","\u30e4","\u3083","\u30e3"],["\u3086","\u30e6","\u3085","\u30e5"],
|
135 |
+
["\u3088","\u30e8","\u3087","\u30e7"],["\u308f","\u30ef","\u3092","\u30f2"],["\u307b","\u30db","\u30fc","\uff1d"],["\u3078","\u30d8","\uff3e","\uff5e"],["Bksp","Bksp"]],[["Tab","Tab"],["\u305f","\u30bf"],["\u3066","\u30c6"],["\u3044","\u30a4","\u3043","\u30a3"],["\u3059","\u30b9"],["\u304b","\u30ab"],["\u3093","\u30f3"],["\u306a","\u30ca"],["\u306b","\u30cb"],["\u3089","\u30e9"],["\u305b","\u30bb"],["\u3001","\u3001","\uff20","\u2018"],["\u3002","\u3002","\u300c","\uff5b"],["\uffe5","","","\uff0a"],
|
136 |
+
["\u309b",'"',"\uffe5","\uff5c"]],[["Caps","Caps"],["\u3061","\u30c1"],["\u3068","\u30c8"],["\u3057","\u30b7"],["\u306f","\u30cf"],["\u304d","\u30ad"],["\u304f","\u30af"],["\u307e","\u30de"],["\u306e","\u30ce"],["\u308c","\u30ec","\uff1b","\uff0b"],["\u3051","\u30b1","\uff1a","\u30f6"],["\u3080","\u30e0","\u300d","\uff5d"],["Enter","Enter"]],[["Shift","Shift"],["\u3064","\u30c4"],["\u3055","\u30b5"],["\u305d","\u30bd"],["\u3072","\u30d2"],["\u3053","\u30b3"],["\u307f","\u30df"],["\u3082","\u30e2"],
|
137 |
+
["\u306d","\u30cd","\u3001","\uff1c"],["\u308b","\u30eb","\u3002","\uff1e"],["\u3081","\u30e1","\u30fb","\uff1f"],["\u308d","\u30ed","","\uff3f"],["Shift","Shift"]],[["AltLk","AltLk"],[" "," "," "," "],["Alt","Alt"]]],lang:["ja"]};this.VKI_layout["\u10e5\u10d0\u10e0\u10d7\u10e3\u10da\u10d8"]={name:"Georgian",keys:[[["\u201e","\u201c"],["!","1"],["?","2"],["\u2116","3"],["\u00a7","4"],["%","5"],[":","6"],[".","7"],[";","8"],[",","9"],["/","0"],["\u2013","-"],["=","+"],["Bksp","Bksp"]],[["Tab","Tab"],
|
138 |
+
["\u10e6","\u10e6"],["\u10ef","\u10ef"],["\u10e3","\u10e3"],["\u10d9","\u10d9"],["\u10d4","\u10d4","\u10f1"],["\u10dc","\u10dc"],["\u10d2","\u10d2"],["\u10e8","\u10e8"],["\u10ec","\u10ec"],["\u10d6","\u10d6"],["\u10ee","\u10ee","\u10f4"],["\u10ea","\u10ea"],["(",")"]],[["Caps","Caps"],["\u10e4","\u10e4","\u10f6"],["\u10eb","\u10eb"],["\u10d5","\u10d5","\u10f3"],["\u10d7","\u10d7"],["\u10d0","\u10d0"],["\u10de","\u10de"],["\u10e0","\u10e0"],["\u10dd","\u10dd"],["\u10da","\u10da"],["\u10d3","\u10d3"],
|
139 |
+
["\u10df","\u10df"],["Enter","Enter"]],[["Shift","Shift"],["\u10ed","\u10ed"],["\u10e9","\u10e9"],["\u10e7","\u10e7"],["\u10e1","\u10e1"],["\u10db","\u10db"],["\u10d8","\u10d8","\u10f2"],["\u10e2","\u10e2"],["\u10e5","\u10e5"],["\u10d1","\u10d1"],["\u10f0","\u10f0","\u10f5"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["ka"]};this.VKI_layout["\u049a\u0430\u0437\u0430\u049b\u0448\u0430"]={name:"Kazakh",keys:[[["(",")"],['"',"!"],["\u04d9","\u04d8"],["\u0456","\u0406"],["\u04a3",
|
140 |
+
"\u04a2"],["\u0493","\u0492"],[",",";"],[".",":"],["\u04af","\u04ae"],["\u04b1","\u04b0"],["\u049b","\u049a"],["\u04e9","\u04e8"],["\u04bb","\u04ba"],["Bksp","Bksp"]],[["Tab","Tab"],["\u0439","\u0419"],["\u0446","\u0426"],["\u0443","\u0423"],["\u043a","\u041a"],["\u0435","\u0415"],["\u043d","\u041d"],["\u0433","\u0413"],["\u0448","\u0428"],["\u0449","\u0429"],["\u0437","\u0417"],["\u0445","\u0425"],["\u044a","\u042a"],["\\","/"]],[["Caps","Caps"],["\u0444","\u0424"],["\u044b","\u042b"],["\u0432",
|
141 |
+
"\u0412"],["\u0430","\u0410"],["\u043f","\u041f"],["\u0440","\u0420"],["\u043e","\u041e"],["\u043b","\u041b"],["\u0434","\u0414"],["\u0436","\u0416"],["\u044d","\u042d"],["Enter","Enter"]],[["Shift","Shift"],["\\","|"],["\u044f","\u042f"],["\u0447","\u0427"],["\u0441","\u0421"],["\u043c","\u041c"],["\u0438","\u0418"],["\u0442","\u0422"],["\u044c","\u042c"],["\u0431","\u0411"],["\u044e","\u042e"],["\u2116","?"],["Shift","Shift"]],[[" "," "]]],lang:["kk"]};this.VKI_layout["\u1797\u17b6\u179f\u17b6\u1781\u17d2\u1798\u17c2\u179a"]=
|
142 |
+
{name:"Khmer",keys:[[["\u00ab","\u00bb","\u200d"],["\u17e1","!","\u200c","\u17f1"],["\u17e2","\u17d7","@","\u17f2"],["\u17e3",'"',"\u17d1","\u17f3"],["\u17e4","\u17db","$","\u17f4"],["\u17e5","%","\u20ac","\u17f5"],["\u17e6","\u17cd","\u17d9","\u17f6"],["\u17e7","\u17d0","\u17da","\u17f7"],["\u17e8","\u17cf","*","\u17f8"],["\u17e9","(","{","\u17f9"],["\u17e0",")","}","\u17f0"],["\u17a5","\u17cc","x"],["\u17b2","=","\u17ce"],["Bksp","Bksp"]],[["Tab","Tab"],["\u1786","\u1788","\u17dc","\u19e0"],["\u17b9",
|
143 |
+
"\u17ba","\u17dd","\u19e1"],["\u17c1","\u17c2","\u17af","\u19e2"],["\u179a","\u17ac","\u17ab","\u19e3"],["\u178f","\u1791","\u17a8","\u19e4"],["\u1799","\u17bd","\u1799\u17be\u1784","\u19e5"],["\u17bb","\u17bc","","\u19e6"],["\u17b7","\u17b8","\u17a6","\u19e7"],["\u17c4","\u17c5","\u17b1","\u19e8"],["\u1795","\u1797","\u17b0","\u19e9"],["\u17c0","\u17bf","\u17a9","\u19ea"],["\u17aa","\u17a7","\u17b3","\u19eb"],["\u17ae","\u17ad","\\"]],[["Caps","Caps"],["\u17b6","\u17b6\u17c6","\u17b5","\u19ec"],
|
144 |
+
["\u179f","\u17c3","","\u19ed"],["\u178a","\u178c","\u17d3","\u19ee"],["\u1790","\u1792","","\u19ef"],["\u1784","\u17a2","\u17a4","\u19f0"],["\u17a0","\u17c7","\u17a3","\u19f1"],["\u17d2","\u1789","\u17b4","\u19f2"],["\u1780","\u1782","\u179d","\u19f3"],["\u179b","\u17a1","\u17d8","\u19f4"],["\u17be","\u17c4\u17c7","\u17d6","\u19f5"],["\u17cb","\u17c9","\u17c8","\u19f6"],["Enter","Enter"]],[["Shift","Shift"],["\u178b","\u178d","|","\u19f7"],["\u1781","\u1783","\u1781\u17d2\u1789\u17bb\u17c6","\u19f8"],
|
145 |
+
["\u1785","\u1787","-","\u19f9"],["\u179c","\u17c1\u17c7","+","\u19fa"],["\u1794","\u1796","\u179e","\u19fb"],["\u1793","\u178e","[","\u19fc"],["\u1798","\u17c6","]","\u19fd"],["\u17bb\u17c6","\u17bb\u17c7",",","\u19fe"],["\u17d4","\u17d5",".","\u19ff"],["\u17ca","?","/"],["Shift","Shift"]],[["\u200b"," ","\u00a0"," "],["AltGr","AltGr"]]],lang:["km"]};this.VKI_layout["\u0c95\u0ca8\u0ccd\u0ca8\u0ca1"]={name:"Kannada",keys:[[["\u0cca","\u0c92"],["1","","\u0ce7"],["2","","\u0ce8"],["3","\u0ccd\u0cb0",
|
146 |
+
"\u0ce9"],["4","\u0cb0\u0ccd","\u0cea"],["5","\u0c9c\u0ccd\u0c9e","\u0ceb"],["6","\u0ca4\u0ccd\u0cb0","\u0cec"],["7","\u0c95\u0ccd\u0cb7","\u0ced"],["8","\u0cb6\u0ccd\u0cb0","\u0cee"],["9","(","\u0cef"],["0",")","\u0ce6"],["-","\u0c83"],["\u0cc3","\u0c8b","\u0cc4","\u0ce0"],["Bksp","Bksp"]],[["Tab","Tab"],["\u0ccc","\u0c94"],["\u0cc8","\u0c90","\u0cd6"],["\u0cbe","\u0c86"],["\u0cc0","\u0c88","","\u0ce1"],["\u0cc2","\u0c8a"],["\u0cac","\u0cad"],["\u0cb9","\u0c99"],["\u0c97","\u0c98"],["\u0ca6","\u0ca7"],
|
147 |
+
["\u0c9c","\u0c9d"],["\u0ca1","\u0ca2"],["Enter","Enter"]],[["Caps","Caps"],["\u0ccb","\u0c93"],["\u0cc7","\u0c8f","\u0cd5"],["\u0ccd","\u0c85"],["\u0cbf","\u0c87","","\u0c8c"],["\u0cc1","\u0c89"],["\u0caa","\u0cab","","\u0cde"],["\u0cb0","\u0cb1"],["\u0c95","\u0c96"],["\u0ca4","\u0ca5"],["\u0c9a","\u0c9b"],["\u0c9f","\u0ca0"],["","\u0c9e"]],[["Shift","Shift"],["\u0cc6","\u0c8f"],["\u0c82"],["\u0cae","\u0ca3"],["\u0ca8"],["\u0cb5"],["\u0cb2","\u0cb3"],["\u0cb8","\u0cb6"],[",","\u0cb7"],[".","|"],
|
148 |
+
["\u0caf"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["kn"]};this.VKI_layout["\ud55c\uad6d\uc5b4"]={name:"Korean",keys:[[["`","~","`","~"],["1","!","1","!"],["2","@","2","@"],["3","#","3","#"],["4","$","4","$"],["5","%","5","%"],["6","^","6","^"],["7","&","7","&"],["8","*","8","*"],["9",")","9",")"],["0","(","0","("],["-","_","-","_"],["=","+","=","+"],["\u20a9","|","\u20a9","|"],["Bksp","Bksp"]],[["Tab","Tab"],["\u1107","\u1108","q","Q"],["\u110c","\u110d","w","W"],["\u1103",
|
149 |
+
"\u1104","e","E"],["\u1100","\u1101","r","R"],["\u1109","\u110a","t","T"],["\u116d","","y","Y"],["\u1167","","u","U"],["\u1163","","i","I"],["\u1162","\u1164","o","O"],["\u1166","\u1168","p","P"],["[","{","[","{"],["]","}","]","}"]],[["Caps","Caps"],["\u1106","","a","A"],["\u1102","","s","S"],["\u110b","","d","D"],["\u1105","","f","F"],["\u1112","","g","G"],["\u1169","","h","H"],["\u1165","","j","J"],["\u1161","","k","K"],["\u1175","","l","L"],[";",":",";",":"],["'",'"',"'",'"'],["Enter","Enter"]],
|
150 |
+
[["Shift","Shift"],["\u110f","","z","Z"],["\u1110","","x","X"],["\u110e","","c","C"],["\u1111","","v","V"],["\u1172","","b","B"],["\u116e","","n","N"],["\u1173","","m","M"],[",","<",",","<"],[".",">",".",">"],["/","?","/","?"],["Shift","Shift"]],[[" "," "," "," "],["Kor","Alt"]]],lang:["ko"]};this.VKI_layout["Kurd\u00ee"]={name:"Kurdish",keys:[[["\u20ac","~"],["\u0661","!"],["\u0662","@"],["\u0663","#"],["\u0664","$"],["\u0665","%"],["\u0666","^"],["\u0667","&"],["\u0668","*"],["\u0669","("],["\u0660",
|
151 |
+
")"],["-","_"],["=","+"],["Bksp","Bksp"]],[["Tab","Tab"],["\u0642","`"],["\u0648","\u0648\u0648"],["\u06d5","\u064a"],["\u0631","\u0695"],["\u062a","\u0637"],["\u06cc","\u06ce"],["\u0626","\u0621"],["\u062d","\u0639"],["\u06c6","\u0624"],["\u067e","\u062b"],["[","{"],["]","}"],["\\","|"]],[["Caps","Caps"],["\u0627","\u0622"],["\u0633","\u0634"],["\u062f","\u0630"],["\u0641","\u0625"],["\u06af","\u063a"],["\u0647","\u200c"],["\u0698","\u0623"],["\u06a9","\u0643"],["\u0644","\u06b5"],["\u061b",":"],
|
152 |
+
["'",'"'],["Enter","Enter"]],[["Shift","Shift"],["\u0632","\u0636"],["\u062e","\u0635"],["\u062c","\u0686"],["\u06a4","\u0638"],["\u0628","\u0649"],["\u0646","\u0629"],["\u0645","\u0640"],["\u060c","<"],[".",">"],["/","\u061f"],["Shift","Shift"]],[[" "," "]]],lang:["ku"]};this.VKI_layout["\u041a\u044b\u0440\u0433\u044b\u0437\u0447\u0430"]={name:"Kyrgyz",keys:[[["\u0451","\u0401"],["1","!"],["2",'"'],["3","\u2116"],["4",";"],["5","%"],["6",":"],["7","?"],["8","*"],["9","("],["0",")"],["-","_"],["=",
|
153 |
+
"+"],["Bksp","Bksp"]],[["Tab","Tab"],["\u0439","\u0419"],["\u0446","\u0426"],["\u0443","\u0423","\u04af","\u04ae"],["\u043a","\u041a"],["\u0435","\u0415"],["\u043d","\u041d","\u04a3","\u04a2"],["\u0433","\u0413"],["\u0448","\u0428"],["\u0449","\u0429"],["\u0437","\u0417"],["\u0445","\u0425"],["\u044a","\u042a"],["\\","/"]],[["Caps","Caps"],["\u0444","\u0424"],["\u044b","\u042b"],["\u0432","\u0412"],["\u0430","\u0410"],["\u043f","\u041f"],["\u0440","\u0420"],["\u043e","\u041e","\u04e9","\u04e8"],["\u043b",
|
154 |
+
"\u041b"],["\u0434","\u0414"],["\u0436","\u0416"],["\u044d","\u042d"],["Enter","Enter"]],[["Shift","Shift"],["\u044f","\u042f"],["\u0447","\u0427"],["\u0441","\u0421"],["\u043c","\u041c"],["\u0438","\u0418"],["\u0442","\u0422"],["\u044c","\u042c"],["\u0431","\u0411"],["\u044e","\u042e"],[".",","],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["ky"]};this.VKI_layout["Latvie\u0161u"]={name:"Latvian",keys:[[["\u00ad","?"],["1","!","\u00ab"],["2","\u00ab","","@"],["3","\u00bb","","#"],
|
155 |
+
["4","$","\u20ac","$"],["5","%",'"',"~"],["6","/","\u2019","^"],["7","&","","\u00b1"],["8","\u00d7",":"],["9","("],["0",")"],["-","_","\u2013","\u2014"],["f","F","=",";"],["Bksp","Bksp"]],[["Tab","Tab"],["\u016b","\u016a","q","Q"],["g","G","\u0123","\u0122"],["j","J"],["r","R","\u0157","\u0156"],["m","M","w","W"],["v","V","y","Y"],["n","N"],["z","Z"],["\u0113","\u0112"],["\u010d","\u010c"],["\u017e","\u017d","[","{"],["h","H","]","}"],["\u0137","\u0136"]],[["Caps","Caps"],["\u0161","\u0160"],["u",
|
156 |
+
"U"],["s","S"],["i","I"],["l","L"],["d","D"],["a","A"],["t","T"],["e","E","\u20ac"],["c","C"],["\u00b4","\u00b0","\u00b4","\u00a8"],["Enter","Enter"]],[["Shift","Shift"],["\u0146","\u0145"],["b","B","x","X"],["\u012b","\u012a"],["k","K","\u0137","\u0136"],["p","P"],["o","O","\u00f5","\u00d5"],["\u0101","\u0100"],[",",";","<"],[".",":",">"],["\u013c","\u013b"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["lv"]};this.VKI_layout["Lietuvi\u0173"]={name:"Lithuanian",keys:[[["`","~"],
|
157 |
+
["\u0105","\u0104"],["\u010d","\u010c"],["\u0119","\u0118"],["\u0117","\u0116"],["\u012f","\u012e"],["\u0161","\u0160"],["\u0173","\u0172"],["\u016b","\u016a"],["\u201e","("],["\u201c",")"],["-","_"],["\u017e","\u017d"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q"],["w","W"],["e","E"],["r","R"],["t","T"],["y","Y"],["u","U"],["i","I"],["o","O"],["p","P"],["[","{"],["]","}"],["\\","|"]],[["Caps","Caps"],["a","A"],["s","S"],["d","D"],["f","F"],["g","G"],["h","H"],["j","J"],["k","K"],["l","L"],[";",":"],
|
158 |
+
["'",'"'],["Enter","Enter"]],[["Shift","Shift"],["\u2013","\u20ac"],["z","Z"],["x","X"],["c","C"],["v","V"],["b","B"],["n","N"],["m","M"],[",","<"],[".",">"],["/","?"],["Shift","Shift"]],[[" "," "]]],lang:["lt"]};this.VKI_layout.Magyar={name:"Hungarian",keys:[[["0","\u00a7"],["1","'","~"],["2",'"',"\u02c7"],["3","+","\u02c6"],["4","!","\u02d8"],["5","%","\u00b0"],["6","/","\u02db"],["7","=","`"],["8","(","\u02d9"],["9",")","\u00b4"],["\u00f6","\u00d6","\u02dd"],["\u00fc","\u00dc","\u00a8"],["\u00f3",
|
159 |
+
"\u00d3","\u00b8"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q","\\"],["w","W","|"],["e","E","\u00c4"],["r","R"],["t","T"],["z","Z"],["u","U","\u20ac"],["i","I","\u00cd"],["o","O"],["p","P"],["\u0151","\u0150","\u00f7"],["\u00fa","\u00da","\u00d7"],["\u0171","\u0170","\u00a4"]],[["Caps","Caps"],["a","A","\u00e4"],["s","S","\u0111"],["d","D","\u0110"],["f","F","["],["g","G","]"],["h","H"],["j","J","\u00ed"],["k","K","\u0141"],["l","L","\u0142"],["\u00e9","\u00c9","$"],["\u00e1","\u00c1","\u00df"],["Enter",
|
160 |
+
"Enter"]],[["Shift","Shift"],["\u00ed","\u00cd","<"],["y","Y",">"],["x","X","#"],["c","C","&"],["v","V","@"],["b","B","{"],["n","N","}"],["m","M","<"],[",","?",";"],[".",":",">"],["-","_","*"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["hu"]};this.VKI_layout.Malti={name:"Maltese 48",keys:[[["\u010b","\u010a","`"],["1","!"],["2",'"'],["3","\u20ac","\u00a3"],["4","$"],["5","%"],["6","^"],["7","&"],["8","*"],["9","("],["0",")"],["-","_"],["=","+"],["Bksp","Bksp"]],[["Tab","Tab"],
|
161 |
+
["q","Q"],["w","W"],["e","E","\u00e8","\u00c8"],["r","R"],["t","T"],["y","Y"],["u","U","\u00f9","\u00d9"],["i","I","\u00ec","\u00cc"],["o","O","\u00f2","\u00d2"],["p","P"],["\u0121","\u0120","[","{"],["\u0127","\u0126","]","}"],["#","\u017e"]],[["Caps","Caps"],["a","A","\u00e0","\u00c0"],["s","S"],["d","D"],["f","F"],["g","G"],["h","H"],["j","J"],["k","K"],["l","L"],[";",":"],["'","@"],["Enter","Enter"]],[["Shift","Shift"],["\u017c","\u017b","\\","|"],["z","Z"],["x","X"],["c","C"],["v","V"],["b",
|
162 |
+
"B"],["n","N"],["m","M"],[",","<"],[".",">"],["/","?","","`"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["mt"]};this.VKI_layout["\u041c\u0430\u043a\u0435\u0434\u043e\u043d\u0441\u043a\u0438"]={name:"Macedonian Cyrillic",keys:[[["`","~"],["1","!"],["2","\u201e"],["3","\u201c"],["4","\u2019"],["5","%"],["6","\u2018"],["7","&"],["8","*"],["9","("],["0",")"],["-","_"],["=","+"],["Bksp","Bksp"]],[["Tab","Tab"],["\u0459","\u0409"],["\u045a","\u040a"],["\u0435","\u0415","\u20ac"],["\u0440",
|
163 |
+
"\u0420"],["\u0442","\u0422"],["\u0455","\u0405"],["\u0443","\u0423"],["\u0438","\u0418"],["\u043e","\u041e"],["\u043f","\u041f"],["\u0448","\u0428","\u0402"],["\u0453","\u0403","\u0452"],["\u0436","\u0416"]],[["Caps","Caps"],["\u0430","\u0410"],["\u0441","\u0421"],["\u0434","\u0414"],["\u0444","\u0424","["],["\u0433","\u0413","]"],["\u0445","\u0425"],["\u0458","\u0408"],["\u043a","\u041a"],["\u043b","\u041b"],["\u0447","\u0427","\u040b"],["\u045c","\u040c","\u045b"],["Enter","Enter"]],[["Shift",
|
164 |
+
"Shift"],["\u0451","\u0401"],["\u0437","\u0417"],["\u045f","\u040f"],["\u0446","\u0426"],["\u0432","\u0412","@"],["\u0431","\u0411","{"],["\u043d","\u041d","}"],["\u043c","\u041c","\u00a7"],[",",";"],[".",":"],["/","?"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["mk"]};this.VKI_layout["\u0d2e\u0d32\u0d2f\u0d3e\u0d33\u0d02"]={name:"Malayalam",keys:[[["\u0d4a","\u0d12"],["1","","\u0d67"],["2","","\u0d68"],["3","\u0d4d\u0d30","\u0d69"],["4","","\u0d6a"],["5","","\u0d6b"],["6","",
|
165 |
+
"\u0d6c"],["7","\u0d15\u0d4d\u0d37","\u0d6d"],["8","","\u0d6e"],["9","(","\u0d6f"],["0",")","\u0d66"],["-","\u0d03"],["\u0d43","\u0d0b","","\u0d60"],["Bksp","Bksp"]],[["Tab","Tab"],["\u0d4c","\u0d14","\u0d57"],["\u0d48","\u0d10"],["\u0d3e","\u0d06"],["\u0d40","\u0d08","","\u0d61"],["\u0d42","\u0d0a"],["\u0d2c","\u0d2d"],["\u0d39","\u0d19"],["\u0d17","\u0d18"],["\u0d26","\u0d27"],["\u0d1c","\u0d1d"],["\u0d21","\u0d22"],["","\u0d1e"]],[["Caps","Caps"],["\u0d4b","\u0d13"],["\u0d47","\u0d0f"],["\u0d4d",
|
166 |
+
"\u0d05","","\u0d0c"],["\u0d3f","\u0d07"],["\u0d41","\u0d09"],["\u0d2a","\u0d2b"],["\u0d30","\u0d31"],["\u0d15","\u0d16"],["\u0d24","\u0d25"],["\u0d1a","\u0d1b"],["\u0d1f","\u0d20"],["Enter","Enter"]],[["Shift","Shift"],["\u0d46","\u0d0f"],["\u0d02"],["\u0d2e","\u0d23"],["\u0d28"],["\u0d35","\u0d34"],["\u0d32","\u0d33"],["\u0d38","\u0d36"],[",","\u0d37"],["."],["\u0d2f"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["ml"]};this.VKI_layout["Misc. Symbols"]={name:"Misc. Symbols",keys:[[["\u2605",
|
167 |
+
"\u2606","\u260e","\u260f"],["\u2648","\u2673","\u2659","\u2630"],["\u2649","\u2674","\u2658","\u2631"],["\u264a","\u2675","\u2657","\u2632"],["\u264b","\u2676","\u2656","\u2633"],["\u264c","\u2677","\u2655","\u2634"],["\u264d","\u2678","\u2654","\u2635"],["\u264e","\u2679","\u265f","\u2636"],["\u264f","\u267a","\u265e","\u2637"],["\u2650","\u267b","\u265d","\u2686"],["\u2651","\u267c","\u265c","\u2687"],["\u2652","\u267d","\u265b","\u2688"],["\u2653","\u2672","\u265a","\u2689"],["Bksp","Bksp"]],
|
168 |
+
[["\u263f","\u2680","\u268a","\u26a2"],["\u2640","\u2681","\u268b","\u26a3"],["\u2641","\u2682","\u268c","\u26a4"],["\u2642","\u2683","\u268d","\u26a5"],["\u2643","\u2684","\u268e","\u26a6"],["\u2644","\u2685","\u268f","\u26a7"],["\u2645","\u2620","\u26ff","\u26a8"],["\u2646","\u2622","\u2692","\u26a9"],["\u2647","\u2623","\u2693","\u26b2"],["\u2669","\u266d","\u2694","\u26ac"],["\u266a","\u266e","\u2695","\u26ad"],["\u266b","\u266f","\u2696","\u26ae"],["\u266c","\u2607","\u2697","\u26af"],["\u26f9",
|
169 |
+
"\u2608","\u2698","\u26b0"],["\u267f","\u262e","\u2638","\u2609"]],[["Tab","Tab"],["\u261e","\u261c","\u261d","\u261f"],["\u261b","\u261a","\u2618","\u2619"],["\u2602","\u2614","\u26f1","\u26d9"],["\u2615","\u2668","\u26fe","\u26d8"],["\u263a","\u2639","\u263b","\u26dc"],["\u2617","\u2616","\u26ca","\u26c9"],["\u2660","\u2663","\u2665","\u2666"],["\u2664","\u2667","\u2661","\u2662"],["\u26c2","\u26c0","\u26c3","\u26c1"],["\u2624","\u2625","\u269a","\u26b1"],["\u2610","\u2611","\u2612","\u2613"],["\u2628",
|
170 |
+
"\u2626","\u2627","\u2629"],["\u262a","\u262b","\u262c","\u262d"],["\u26fa","\u26fb","\u26fc","\u26fd"]],[["Caps","Caps"],["\u262f","\u2670","\u2671","\u267e"],["\u263c","\u2699","\u263d","\u263e"],["\u26c4","\u2603","\u26c7","\u26c6"],["\u26a0","\u26a1","\u2621","\u26d4"],["\u26e4","\u26e5","\u26e6","\u26e7"],["\u260a","\u260b","\u260c","\u260d"],["\u269c","\u269b","\u269d","\u2604"],["\u26b3","\u26b4","\u26b5","\u26b6"],["\u26b7","\u26bf","\u26b8","\u26f8"],["\u26b9","\u26ba","\u26bb","\u26bc"],
|
171 |
+
["\u26bd","\u26be","\u269f","\u269e"],["Enter","Enter"]],[["Shift","Shift"],["\u2600","\u2601","\u26c5","\u26c8"],["\u2691","\u2690","\u26ab","\u26aa"],["\u26cb","\u26cc","\u26cd","\u26ce"],["\u26cf","\u26d0","\u26d1","\u26d2"],["\u26d3","\u26d5","\u26d6","\u26d7"],["\u26da","\u26db","\u26dd","\u26de"],["\u26df","\u26e0","\u26e1","\u26e2"],["\u26e3","\u26e8","\u26e9","\u26ea"],["\u26eb","\u26ec","\u26ed","\u26ee"],["\u26ef","\u26f0","\u26f2","\u26f3"],["\u26f4","\u26f5","\u26f6","\u26f7"],["Shift",
|
172 |
+
"Shift"]],[["AltLk","AltLk"],[" "," "," "," "],["Alt","Alt"]]]};this.VKI_layout["\u041c\u043e\u043d\u0433\u043e\u043b"]={name:"Mongolian Cyrillic",keys:[[["=","+"],["\u2116","1"],["-","2"],['"',"3"],["\u20ae","4"],[":","5"],[".","6"],["_","7"],[",","8"],["%","9"],["?","0"],["\u0435","\u0415"],["\u0449","\u0429"],["Bksp","Bksp"]],[["Tab","Tab"],["\u0444","\u0424"],["\u0446","\u0426"],["\u0443","\u0423"],["\u0436","\u0416"],["\u044d","\u042d"],["\u043d","\u041d"],["\u0433","\u0413"],["\u0448","\u0428"],
|
173 |
+
["\u04af","\u04ae"],["\u0437","\u0417"],["\u043a","\u041a"],["\u044a","\u042a"],["\\","|"]],[["Caps","Caps"],["\u0439","\u0419"],["\u044b","\u042b"],["\u0431","\u0411"],["\u04e9","\u04e8"],["\u0430","\u0410"],["\u0445","\u0425"],["\u0440","\u0420"],["\u043e","\u041e"],["\u043b","\u041b"],["\u0434","\u0414"],["\u043f","\u041f"],["Enter","Enter"]],[["Shift","Shift"],["\u044f","\u042f"],["\u0447","\u0427"],["\u0451","\u0401"],["\u0441","\u0421"],["\u043c","\u041c"],["\u0438","\u0418"],["\u0442","\u0422"],
|
174 |
+
["\u044c","\u042c"],["\u0432","\u0412"],["\u044e","\u042e"],["Shift","Shift"]],[[" "," "]]],lang:["mn"]};this.VKI_layout["\u092e\u0930\u093e\u0920\u0940"]={name:"Marathi",keys:[[["","","`","~"],["\u0967","\u090d","1","!"],["\u0968","\u0945","2","@"],["\u0969","\u094d\u0930","3","#"],["\u096a","\u0930\u094d","4","$"],["\u096b","\u091c\u094d\u091e","5","%"],["\u096c","\u0924\u094d\u0930","6","^"],["\u096d","\u0915\u094d\u0937","7","&"],["\u096e","\u0936\u094d\u0930","8","*"],["\u096f","(","9","("],
|
175 |
+
["\u0966",")","0",")"],["-","\u0903","-","_"],["\u0943","\u090b","=","+"],["Bksp","Bksp"]],[["Tab","Tab"],["\u094c","\u0914"],["\u0948","\u0910"],["\u093e","\u0906"],["\u0940","\u0908"],["\u0942","\u090a"],["\u092c","\u092d"],["\u0939","\u0919"],["\u0917","\u0918"],["\u0926","\u0927"],["\u091c","\u091d"],["\u0921","\u0922","[","{"],["\u093c","\u091e","]","}"],["\u0949","\u0911","\\","|"]],[["Caps","Caps"],["\u094b","\u0913"],["\u0947","\u090f"],["\u094d","\u0905"],["\u093f","\u0907"],["\u0941","\u0909"],
|
176 |
+
["\u092a","\u092b"],["\u0930","\u0931"],["\u0915","\u0916"],["\u0924","\u0925"],["\u091a","\u091b",";",":"],["\u091f","\u0920","'",'"'],["Enter","Enter"]],[["Shift","Shift"],[""],["\u0902","\u0901","","\u0950"],["\u092e","\u0923"],["\u0928"],["\u0935"],["\u0932","\u0933"],["\u0938","\u0936"],[",","\u0937",",","<"],[".","\u0964",".",">"],["\u092f","\u095f","/","?"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["mr"]};this.VKI_layout["\u1019\u103c\u1014\u103a\u1019\u102c\u1018\u102c\u101e\u102c"]=
|
177 |
+
{name:"Burmese",keys:[[["\u1039`","~"],["\u1041","\u100d"],["\u1042","\u100e"],["\u1043","\u100b"],["\u1044","\u1000\u103b\u1015\u103a"],["\u1045","%"],["\u1046","/"],["\u1047","\u101b"],["\u1048","\u1002"],["\u1049","("],["\u1040",")"],["-","_"],["=","+"],["Bksp","Bksp"]],[["Tab","Tab"],["\u1006","\u1029"],["\u1010","\u1040"],["\u1014","\u103f"],["\u1019","\u1023"],["\u1021","\u1024"],["\u1015","\u104c"],["\u1000","\u1009"],["\u1004","\u104d"],["\u101e","\u1025"],["\u1005","\u100f"],["\u101f","\u1027"],
|
178 |
+
["\u2018","\u2019"],["\u104f","\u100b\u1039\u100c"]],[["Caps","Caps"],["\u200b\u1031","\u1017"],["\u200b\u103b","\u200b\u103e"],["\u200b\u102d","\u200b\u102e"],["\u200b\u103a","\u1004\u103a\u1039\u200b"],["\u200b\u102b","\u200b\u103d"],["\u200b\u1037","\u200b\u1036"],["\u200b\u103c","\u200b\u1032"],["\u200b\u102f","\u200b\u102f"],["\u200b\u1030","\u200b\u1030"],["\u200b\u1038","\u200b\u102b\u103a"],["\u1012","\u1013"],["Enter","Enter"]],[["Shift","Shift"],["\u1016","\u1007"],["\u1011","\u100c"],["\u1001",
|
179 |
+
"\u1003"],["\u101c","\u1020"],["\u1018","\u1026"],["\u100a","\u1008"],["\u200b\u102c","\u102a"],["\u101a","\u101b"],[".","\u101b"],["\u104b","\u104a"],["Shift","Shift"]],[[" "," "]]],lang:["my"]};this.VKI_layout.Nederlands={name:"Dutch",keys:[[["@","\u00a7","\u00ac"],["1","!","\u00b9"],["2",'"',"\u00b2"],["3","#","\u00b3"],["4","$","\u00bc"],["5","%","\u00bd"],["6","&","\u00be"],["7","_","\u00a3"],["8","(","{"],["9",")","}"],["0","'"],["/","?","\\"],["\u00b0","~","\u00b8"],["Bksp","Bksp"]],[["Tab",
|
180 |
+
"Tab"],["q","Q"],["w","W"],["e","E","\u20ac"],["r","R","\u00b6"],["t","T"],["y","Y"],["u","U"],["i","I"],["o","O"],["p","P"],["\u00a8","^"],["*","|"],["<",">"]],[["Caps","Caps"],["a","A"],["s","S","\u00df"],["d","D"],["f","F"],["g","G"],["h","H"],["j","J"],["k","K"],["l","L"],["+","\u00b1"],["\u00b4","`"],["Enter","Enter"]],[["Shift","Shift"],["]","[","\u00a6"],["z","Z","\u00ab"],["x","X","\u00bb"],["c","C","\u00a2"],["v","V"],["b","B"],["n","N"],["m","M","\u00b5"],[",",";"],[".",":","\u00b7"],["-",
|
181 |
+
"="],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["nl"]};this.VKI_layout.Norsk={name:"Norwegian",keys:[[["|","\u00a7"],["1","!"],["2",'"',"@"],["3","#","\u00a3"],["4","\u00a4","$"],["5","%"],["6","&"],["7","/","{"],["8","(","["],["9",")","]"],["0","=","}"],["+","?"],["\\","`","\u00b4"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q"],["w","W"],["e","E","\u20ac"],["r","R"],["t","T"],["y","Y"],["u","U"],["i","I"],["o","O"],["p","P"],["\u00e5","\u00c5"],["\u00a8","^","~"],["'","*"]],[["Caps",
|
182 |
+
"Caps"],["a","A"],["s","S"],["d","D"],["f","F"],["g","G"],["h","H"],["j","J"],["k","K"],["l","L"],["\u00f8","\u00d8"],["\u00e6","\u00c6"],["Enter","Enter"]],[["Shift","Shift"],["<",">"],["z","Z"],["x","X"],["c","C"],["v","V"],["b","B"],["n","N"],["m","M","\u03bc","\u039c"],[",",";"],[".",":"],["-","_"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["no","nb","nn"]};this.VKI_layout["\u067e\u069a\u062a\u0648"]={name:"Pashto",keys:[[["\u200d","\u00f7","`"],["\u06f1","!","`"],["\u06f2",
|
183 |
+
"\u066c","@"],["\u06f3","\u066b","\u066b"],["\u06f4","\u00a4","\u00a3"],["\u06f5","\u066a","%"],["\u06f6","\u00d7","^"],["\u06f7","\u00ab","&"],["\u06f8","\u00bb","*"],["\u06f9","(","\ufdf2"],["\u06f0",")","\ufefb"],["-","\u0640","_"],["=","+","\ufe87","\u00f7"],["Bksp","Bksp"]],[["Tab","Tab"],["\u0636","\u0652","\u06d5"],["\u0635","\u064c","\u0653"],["\u062b","\u064d","\u20ac"],["\u0642","\u064b","\ufef7"],["\u0641","\u064f","\ufef5"],["\u063a","\u0650","'"],["\u0639","\u064e","\ufe84"],["\u0647",
|
184 |
+
"\u0651","\u0670"],["\u062e","\u0681","'"],["\u062d","\u0685",'"'],["\u062c","]","}"],["\u0686","[","{"],["\\","\u066d","|"]],[["Caps","Caps"],["\u0634","\u069a","\ufbb0"],["\u0633","\u06cd","\u06d2"],["\u06cc","\u064a","\u06d2"],["\u0628","\u067e","\u06ba"],["\u0644","\u0623","\u06b7"],["\u0627","\u0622","\u0671"],["\u062a","\u067c","\u0679"],["\u0646","\u06bc","<"],["\u0645","\u0629",">"],["\u06a9",":","\u0643"],["\u06af","\u061b","\u06ab"],["Enter","Enter"]],[["Shift","Shift"],["\u0638","\u0626",
|
185 |
+
"?"],["\u0637","\u06d0",";"],["\u0632","\u0698","\u0655"],["\u0631","\u0621","\u0654"],["\u0630","\u200c","\u0625"],["\u062f","\u0689","\u0688"],["\u0693","\u0624","\u0691"],["\u0648","\u060c",","],["\u0696",".","\u06c7"],["/","\u061f","\u06c9"],["Shift","Shift","\u064d"]],[[" "," "," "," "],["Alt","Alt"]]],lang:["ps"]};this.VKI_layout["\u0a2a\u0a70\u0a1c\u0a3e\u0a2c\u0a40"]={name:"Punjabi (Gurmukhi)",keys:[[[""],["1","\u0a4d\u0a35","\u0a67","\u0a67"],["2","\u0a4d\u0a2f","\u0a68","\u0a68"],["3","\u0a4d\u0a30",
|
186 |
+
"\u0a69","\u0a69"],["4","\u0a71","\u0a6a","\u0a6a"],["5","","\u0a6b","\u0a6b"],["6","","\u0a6c","\u0a6c"],["7","","\u0a6d","\u0a6d"],["8","","\u0a6e","\u0a6e"],["9","(","\u0a6f","\u0a6f"],["0",")","\u0a66","\u0a66"],["-"],[""],["Bksp","Bksp"]],[["Tab","Tab"],["\u0a4c","\u0a14"],["\u0a48","\u0a10"],["\u0a3e","\u0a06"],["\u0a40","\u0a08"],["\u0a42","\u0a0a"],["\u0a2c","\u0a2d"],["\u0a39","\u0a19"],["\u0a17","\u0a18","\u0a5a","\u0a5a"],["\u0a26","\u0a27"],["\u0a1c","\u0a1d","\u0a5b","\u0a5b"],["\u0a21",
|
187 |
+
"\u0a22","\u0a5c","\u0a5c"],["Enter","Enter"]],[["Caps","Caps"],["\u0a4b","\u0a13"],["\u0a47","\u0a0f"],["\u0a4d","\u0a05"],["\u0a3f","\u0a07"],["\u0a41","\u0a09"],["\u0a2a","\u0a2b","\u0a5e","\u0a5e"],["\u0a30"],["\u0a15","\u0a16","\u0a59","\u0a59"],["\u0a24","\u0a25"],["\u0a1a","\u0a1b"],["\u0a1f","\u0a20"],["\u0a3c","\u0a1e"]],[["Shift","Shift"],[""],["\u0a02","\u0a02"],["\u0a2e","\u0a23"],["\u0a28"],["\u0a35","\u0a72","\u0a73","\u0a73"],["\u0a32","\u0a33"],["\u0a38","\u0a36"],[","],[".","|","\u0965",
|
188 |
+
"\u0965"],["\u0a2f"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["pa"]};this.VKI_layout["\u62fc\u97f3 (Pinyin)"]={name:"Pinyin",keys:[[["`","~","\u4e93","\u301c"],["1","!","\uff62"],["2","@","\uff63"],["3","#","\u301d"],["4","$","\u301e"],["5","%","\u301f"],["6","^","\u3008"],["7","&","\u3009"],["8","*","\u302f"],["9","(","\u300a"],["0",")","\u300b"],["-","_","\u300e"],["=","+","\u300f"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q","\u0101","\u0100"],["w","W","\u00e1","\u00c1"],["e",
|
189 |
+
"E","\u01ce","\u01cd"],["r","R","\u00e0","\u00c0"],["t","T","\u0113","\u0112"],["y","Y","\u00e9","\u00c9"],["u","U","\u011b","\u011a"],["i","I","\u00e8","\u00c8"],["o","O","\u012b","\u012a"],["p","P","\u00ed","\u00cd"],["[","{","\u01d0","\u01cf"],["]","}","\u00ec","\u00cc"],["\\","|","\u3020"]],[["Caps","Caps"],["a","A","\u014d","\u014c"],["s","S","\u00f3","\u00d3"],["d","D","\u01d2","\u01d1"],["f","F","\u00f2","\u00d2"],["g","G","\u00fc","\u00dc"],["h","H","\u016b","\u016a"],["j","J","\u00fa","\u00da"],
|
190 |
+
["k","K","\u01d4","\u01d3"],["l","L","\u00f9","\u00d9"],[";",":"],["'",'"'],["Enter","Enter"]],[["Shift","Shift"],["z","Z","\u01d6","\u01d5"],["x","X","\u01d8","\u01d7"],["c","C","\u01da","\u01d9"],["v","V","\u01dc","\u01db"],["b","B"],["n","N"],["m","M"],[",","<","\u3001"],[".",">","\u3002"],["/","?"],["Shift","Shift"]],[["AltLk","AltLk"],[" "," "," "," "],["Alt","Alt"]]],lang:["zh-Latn"]};this.VKI_layout.Polski={name:"Polish (214)",keys:[[["\u02db","\u00b7"],["1","!","~"],["2",'"',"\u02c7"],["3",
|
191 |
+
"#","^"],["4","\u00a4","\u02d8"],["5","%","\u00b0"],["6","&","\u02db"],["7","/","`"],["8","(","\u00b7"],["9",")","\u00b4"],["0","=","\u02dd"],["+","?","\u00a8"],["'","*","\u00b8"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q","\\"],["w","W","\u00a6"],["e","E"],["r","R"],["t","T"],["z","Z"],["u","U","\u20ac"],["i","I"],["o","O"],["p","P"],["\u017c","\u0144","\u00f7"],["\u015b","\u0107","\u00d7"],["\u00f3","\u017a"]],[["Caps","Caps"],["a","A"],["s","S","\u0111"],["d","D","\u0110"],["f","F"],["g","G"],["h",
|
192 |
+
"H"],["j","J"],["k","K"],["l","L"],["\u0142","\u0141","$"],["\u0105","\u0119","\u00df"],["Enter","Enter"]],[["Shift","Shift"],["<",">"],["y","Y"],["x","X"],["c","C"],["v","V","@"],["b","B","{"],["n","N","}"],["m","M","\u00a7"],[",",";","<"],[".",":",">"],["-","_"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]]};this.VKI_layout["Polski Programisty"]={name:"Polish Programmers",keys:[[["`","~"],["1","!"],["2","@"],["3","#"],["4","$"],["5","%"],["6","^"],["7","&"],["8","*"],["9","("],["0",
|
193 |
+
")"],["-","_"],["=","+"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q"],["w","W"],["e","E","\u0119","\u0118"],["r","R"],["t","T"],["y","Y"],["u","U"],["i","I"],["o","O","\u00f3","\u00d3"],["p","P"],["[","{"],["]","}"],["\\","|"]],[["Caps","Caps"],["a","A","\u0105","\u0104"],["s","S","\u015b","\u015a"],["d","D"],["f","F"],["g","G"],["h","H"],["j","J"],["k","K"],["l","L","\u0142","\u0141"],[";",":"],["'",'"'],["Enter","Enter"]],[["Shift","Shift"],["z","Z","\u017c","\u017b"],["x","X","\u017a","\u0179"],["c",
|
194 |
+
"C","\u0107","\u0106"],["v","V"],["b","B"],["n","N","\u0144","\u0143"],["m","M"],[",","<"],[".",">"],["/","?"],["Shift","Shift"]],[[" "," "," "," "],["Alt","Alt"]]],lang:["pl"]};this.VKI_layout["Portugu\u00eas Brasileiro"]={name:"Portuguese (Brazil)",keys:[[["'",'"'],["1","!","\u00b9"],["2","@","\u00b2"],["3","#","\u00b3"],["4","$","\u00a3"],["5","%","\u00a2"],["6","\u00a8","\u00ac"],["7","&"],["8","*"],["9","("],["0",")"],["-","_"],["=","+","\u00a7"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q","/"],
|
195 |
+
["w","W","?"],["e","E","\u20ac"],["r","R"],["t","T"],["y","Y"],["u","U"],["i","I"],["o","O"],["p","P"],["\u00b4","`"],["[","{","\u00aa"],["Enter","Enter"]],[["Caps","Caps"],["a","A"],["s","S"],["d","D"],["f","F"],["g","G"],["h","H"],["j","J"],["k","K"],["l","L"],["\u00e7","\u00c7"],["~","^"],["]","}","\u00ba"],["/","?"]],[["Shift","Shift"],["\\","|"],["z","Z"],["x","X"],["c","C","\u20a2"],["v","V"],["b","B"],["n","N"],["m","M"],[",","<"],[".",">"],[":",":"],["Shift","Shift"]],[[" "," "," "," "],["AltGr",
|
196 |
+
"AltGr"]]],lang:["pt-BR"]};this.VKI_layout["Portugu\u00eas"]={name:"Portuguese",keys:[[["\\","|"],["1","!"],["2",'"',"@"],["3","#","\u00a3"],["4","$","\u00a7"],["5","%"],["6","&"],["7","/","{"],["8","(","["],["9",")","]"],["0","=","}"],["'","?"],["\u00ab","\u00bb"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q"],["w","W"],["e","E","\u20ac"],["r","R"],["t","T"],["y","Y"],["u","U"],["i","I"],["o","O"],["p","P"],["+","*","\u00a8"],["\u00b4","`"],["~","^"]],[["Caps","Caps"],["a","A"],["s","S"],["d","D"],["f",
|
197 |
+
"F"],["g","G"],["h","H"],["j","J"],["k","K"],["l","L"],["\u00e7","\u00c7"],["\u00ba","\u00aa"],["Enter","Enter"]],[["Shift","Shift"],["<",">","\\"],["z","Z"],["x","X"],["c","C"],["v","V"],["b","B"],["n","N"],["m","M"],[",",";"],[".",":"],["-","_"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["pt"]};this.VKI_layout["Rom\u00e2n\u0103"]={name:"Romanian",keys:[[["\u201e","\u201d","`","~"],["1","!","~"],["2","@","\u02c7"],["3","#","^"],["4","$","\u02d8"],["5","%","\u00b0"],["6","^",
|
198 |
+
"\u02db"],["7","&","`"],["8","*","\u02d9"],["9","(","\u00b4"],["0",")","\u02dd"],["-","_","\u00a8"],["=","+","\u00b8","\u00b1"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q"],["w","W"],["e","E","\u20ac"],["r","R"],["t","T"],["y","Y"],["u","U"],["i","I"],["o","O"],["p","P","\u00a7"],["\u0103","\u0102","[","{"],["\u00ee","\u00ce","]","}"],["\u00e2","\u00c2","\\","|"]],[["Caps","Caps"],["a","A"],["s","S","\u00df"],["d","D","\u00f0","\u00d0"],["f","F"],["g","G"],["h","H"],["j","J"],["k","K"],["l","L","\u0142",
|
199 |
+
"\u0141"],[this.VKI_isIElt8?"\u015f":"\u0219",this.VKI_isIElt8?"\u015e":"\u0218",";",":"],[this.VKI_isIElt8?"\u0163":"\u021b",this.VKI_isIElt8?"\u0162":"\u021a","'",'"'],["Enter","Enter"]],[["Shift","Shift"],["\\","|"],["z","Z"],["x","X"],["c","C","\u00a9"],["v","V"],["b","B"],["n","N"],["m","M"],[",",";","<","\u00ab"],[".",":",">","\u00bb"],["/","?"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["ro"]};this.VKI_layout["\u0420\u0443\u0441\u0441\u043a\u0438\u0439"]={name:"Russian",
|
200 |
+
keys:[[["\u0451","\u0401"],["1","!"],["2",'"'],["3","\u2116"],["4",";"],["5","%"],["6",":"],["7","?"],["8","*"],["9","("],["0",")"],["-","_"],["=","+"],["Bksp","Bksp"]],[["Tab","Tab"],["\u0439","\u0419"],["\u0446","\u0426"],["\u0443","\u0423"],["\u043a","\u041a"],["\u0435","\u0415"],["\u043d","\u041d"],["\u0433","\u0413"],["\u0448","\u0428"],["\u0449","\u0429"],["\u0437","\u0417"],["\u0445","\u0425"],["\u044a","\u042a"],["\\","/"]],[["Caps","Caps"],["\u0444","\u0424"],["\u044b","\u042b"],["\u0432",
|
201 |
+
"\u0412"],["\u0430","\u0410"],["\u043f","\u041f"],["\u0440","\u0420"],["\u043e","\u041e"],["\u043b","\u041b"],["\u0434","\u0414"],["\u0436","\u0416"],["\u044d","\u042d"],["Enter","Enter"]],[["Shift","Shift"],["/","|"],["\u044f","\u042f"],["\u0447","\u0427"],["\u0441","\u0421"],["\u043c","\u041c"],["\u0438","\u0418"],["\u0442","\u0422"],["\u044c","\u042c"],["\u0431","\u0411"],["\u044e","\u042e"],[".",","],["Shift","Shift"]],[[" "," "]]],lang:["ru"]};this.VKI_layout.Schweizerdeutsch={name:"Swiss German",
|
202 |
+
keys:[[["\u00a7","\u00b0"],["1","+","\u00a6"],["2",'"',"@"],["3","*","#"],["4","\u00e7","\u00b0"],["5","%","\u00a7"],["6","&","\u00ac"],["7","/","|"],["8","(","\u00a2"],["9",")"],["0","="],["'","?","\u00b4"],["^","`","~"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q"],["w","W"],["e","E","\u20ac"],["r","R"],["t","T"],["z","Z"],["u","U"],["i","I"],["o","O"],["p","P"],["\u00fc","\u00e8","["],["\u00a8","!","]"],["$","\u00a3","}"]],[["Caps","Caps"],["a","A"],["s","S"],["d","D"],["f","F"],["g","G"],["h","H"],
|
203 |
+
["j","J"],["k","K"],["l","L"],["\u00f6","\u00e9"],["\u00e4","\u00e0","{"],["Enter","Enter"]],[["Shift","Shift"],["<",">","\\"],["y","Y"],["x","X"],["c","C"],["v","V"],["b","B"],["n","N"],["m","M"],[",",";"],[".",":"],["-","_"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["de-CH"]};this.VKI_layout.Shqip={name:"Albanian",keys:[[["\\","|"],["1","!","~"],["2",'"',"\u02c7"],["3","#","^"],["4","$","\u02d8"],["5","%","\u00b0"],["6","^","\u02db"],["7","&","`"],["8","*","\u02d9"],["9","(",
|
204 |
+
"\u00b4"],["0",")","\u02dd"],["-","_","\u00a8"],["=","+","\u00b8"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q","\\"],["w","W","|"],["e","E"],["r","R"],["t","T"],["z","Z"],["u","U"],["i","I"],["o","O"],["p","P"],["\u00e7","\u00c7","\u00f7"],["[","{","\u00df"],["]","}","\u00a4"]],[["Caps","Caps"],["a","A"],["s","S","\u0111"],["d","D","\u0110"],["f","F","["],["g","G","]"],["h","H"],["j","J"],["k","K","\u0142"],["l","L","\u0141"],["\u00eb","\u00cb","$"],["@","'","\u00d7"],["Enter","Enter"]],[["Shift","Shift"],
|
205 |
+
["<",">"],["y","Y"],["x","X"],["c","C"],["v","V","@"],["b","B","{"],["n","N","}"],["m","M","\u00a7"],[",",";","<"],[".",":",">"],["/","?"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["sq"]};this.VKI_layout["Sloven\u010dina"]={name:"Slovak",keys:[[[";","\u00b0"],["+","1","~"],["\u013e","2","\u02c7"],["\u0161","3","^"],["\u010d","4","\u02d8"],["\u0165","5","\u00b0"],["\u017e","6","\u02db"],["\u00fd","7","`"],["\u00e1","8","\u02d9"],["\u00ed","9","\u00b4"],["\u00e9","0","\u02dd"],
|
206 |
+
["=","%","\u00a8"],["\u00b4","\u02c7","\u00b8"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q","\\"],["w","W","|"],["e","E","\u20ac"],["r","R"],["t","T"],["z","Z"],["u","U"],["i","I"],["o","O"],["p","P","'"],["\u00fa","/","\u00f7"],["\u00e4","(","\u00d7"],["\u0148",")","\u00a4"]],[["Caps","Caps"],["a","A"],["s","S","\u0111"],["d","D","\u0110"],["f","F","["],["g","G","]"],["h","H"],["j","J"],["k","K","\u0142"],["l","L","\u0141"],["\u00f4",'"',"$"],["\u00a7","!","\u00df"],["Enter","Enter"]],[["Shift","Shift"],
|
207 |
+
["&","*","<"],["y","Y",">"],["x","X","#"],["c","C","&"],["v","V","@"],["b","B","{"],["n","N","}"],["m","M"],[",","?","<"],[".",":",">"],["-","_","*"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["sk"]};this.VKI_layout["Sloven\u0161\u010dina"]={name:"Slovenian",keys:this.VKI_layout.Bosanski.keys.slice(0),lang:["sl"]};this.VKI_layout["\u0441\u0440\u043f\u0441\u043a\u0438"]={name:"Serbian Cyrillic",keys:[[["`","~"],["1","!"],["2",'"'],["3","#"],["4","$"],["5","%"],["6","&"],["7","/"],
|
208 |
+
["8","("],["9",")"],["0","="],["'","?"],["+","*"],["Bksp","Bksp"]],[["Tab","Tab"],["\u0459","\u0409"],["\u045a","\u040a"],["\u0435","\u0415","\u20ac"],["\u0440","\u0420"],["\u0442","\u0422"],["\u0437","\u0417"],["\u0443","\u0423"],["\u0438","\u0418"],["\u043e","\u041e"],["\u043f","\u041f"],["\u0448","\u0428"],["\u0452","\u0402"],["\u0436","\u0416"]],[["Caps","Caps"],["\u0430","\u0410"],["\u0441","\u0421"],["\u0434","\u0414"],["\u0444","\u0424"],["\u0433","\u0413"],["\u0445","\u0425"],["\u0458","\u0408"],
|
209 |
+
["\u043a","\u041a"],["\u043b","\u041b"],["\u0447","\u0427"],["\u045b","\u040b"],["Enter","Enter"]],[["Shift","Shift"],["<",">"],["\u0455","\u0405"],["\u045f","\u040f"],["\u0446","\u0426"],["\u0432","\u0412"],["\u0431","\u0411"],["\u043d","\u041d"],["\u043c","\u041c"],[",",";","<"],[".",":",">"],["-","_","\u00a9"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["sr-Cyrl"]};this.VKI_layout.Srpski={name:"Serbian Latin",keys:this.VKI_layout.Bosanski.keys.slice(0),lang:["sr"]};this.VKI_layout.Suomi=
|
210 |
+
{name:"Finnish",keys:[[["\u00a7","\u00bd"],["1","!"],["2",'"',"@"],["3","#","\u00a3"],["4","\u00a4","$"],["5","%","\u20ac"],["6","&"],["7","/","{"],["8","(","["],["9",")","]"],["0","=","}"],["+","?","\\"],["\u00b4","`"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q","\u00e2","\u00c2"],["w","W"],["e","E","\u20ac"],["r","R"],["t","T","\u0167","\u0166"],["y","Y"],["u","U"],["i","I","\u00ef","\u00cf"],["o","O","\u00f5","\u00d5"],["p","P"],["\u00e5","\u00c5"],["\u00a8","^","~"],["'","*"]],[["Caps","Caps"],["a",
|
211 |
+
"A","\u00e1","\u00c1"],["s","S","\u0161","\u0160"],["d","D","\u0111","\u0110"],["f","F","\u01e5","\u01e4"],["g","G","\u01e7","\u01e6"],["h","H","\u021f","\u021e"],["j","J"],["k","K","\u01e9","\u01e8"],["l","L"],["\u00f6","\u00d6","\u00f8","\u00d8"],["\u00e4","\u00c4","\u00e6","\u00c6"],["Enter","Enter"]],[["Shift","Shift"],["<",">","|"],["z","Z","\u017e","\u017d"],["x","X"],["c","C","\u010d","\u010c"],["v","V","\u01ef","\u01ee"],["b","B","\u0292","\u01b7"],["n","N","\u014b","\u014a"],["m","M","\u00b5"],
|
212 |
+
[",",";"],[".",":"],["-","_"],["Shift","Shift"]],[["Alt","Alt"],[" "," "," "," "],["AltGr","AltGr"]]],lang:["fi"]};this.VKI_layout.Svenska={name:"Swedish",keys:[[["\u00a7","\u00bd"],["1","!"],["2",'"',"@"],["3","#","\u00a3"],["4","\u00a4","$"],["5","%","\u20ac"],["6","&"],["7","/","{"],["8","(","["],["9",")","]"],["0","=","}"],["+","?","\\"],["\u00b4","`"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q"],["w","W"],["e","E","\u20ac"],["r","R"],["t","T"],["y","Y"],["u","U"],["i","I"],["o","O"],["p","P"],["\u00e5",
|
213 |
+
"\u00c5"],["\u00a8","^","~"],["'","*"]],[["Caps","Caps"],["a","A"],["s","S"],["d","D"],["f","F"],["g","G"],["h","H"],["j","J"],["k","K"],["l","L"],["\u00f6","\u00d6"],["\u00e4","\u00c4"],["Enter","Enter"]],[["Shift","Shift"],["<",">","|"],["z","Z"],["x","X"],["c","C"],["v","V"],["b","B"],["n","N"],["m","M","\u03bc","\u039c"],[",",";"],[".",":"],["-","_"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["sv"]};this.VKI_layout["Swiss Fran\u00e7ais"]={name:"Swiss French",keys:[[["\u00a7",
|
214 |
+
"\u00b0"],["1","+","\u00a6"],["2",'"',"@"],["3","*","#"],["4","\u00e7","\u00b0"],["5","%","\u00a7"],["6","&","\u00ac"],["7","/","|"],["8","(","\u00a2"],["9",")"],["0","="],["'","?","\u00b4"],["^","`","~"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q"],["w","W"],["e","E","\u20ac"],["r","R"],["t","T"],["z","Z"],["u","U"],["i","I"],["o","O"],["p","P"],["\u00e8","\u00fc","["],["\u00a8","!","]"],["$","\u00a3","}"]],[["Caps","Caps"],["a","A"],["s","S"],["d","D"],["f","F"],["g","G"],["h","H"],["j","J"],["k",
|
215 |
+
"K"],["l","L"],["\u00e9","\u00f6"],["\u00e0","\u00e4","{"],["Enter","Enter"]],[["Shift","Shift"],["<",">","\\"],["y","Y"],["x","X"],["c","C"],["v","V"],["b","B"],["n","N"],["m","M"],[",",";"],[".",":"],["-","_"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["fr-CH"]};this.VKI_layout["\u0723\u0718\u072a\u071d\u071d\u0710"]={name:"Syriac",keys:[[["\u070f","\u032e","\u0651","\u0651"],["1","!","\u0701","\u0701"],["2","\u030a","\u0702","\u0702"],["3","\u0325","\u0703","\u0703"],["4",
|
216 |
+
"\u0749","\u0704","\u0704"],["5","\u2670","\u0705","\u0705"],["6","\u2671","\u0708","\u0708"],["7","\u070a","\u0709","\u0709"],["8","\u00bb","\u070b","\u070b"],["9",")","\u070c","\u070c"],["0","(","\u070d","\u070d"],["-","\u00ab","\u250c","\u250c"],["=","+","\u2510","\u2510"],["Bksp","Bksp"]],[["Tab","Tab"],["\u0714","\u0730","\u064e","\u064e"],["\u0728","\u0733","\u064b","\u064b"],["\u0716","\u0736","\u064f","\u064f"],["\u0729","\u073a","\u064c","\u064c"],["\u0726","\u073d","\u0653","\u0653"],["\u071c",
|
217 |
+
"\u0740","\u0654","\u0654"],["\u0725","\u0741","\u0747","\u0747"],["\u0717","\u0308","\u0743","\u0743"],["\u071e","\u0304","\u0745","\u0745"],["\u071a","\u0307","\u032d","\u032d"],["\u0713","\u0303"],["\u0715","\u074a"],["\u0706",":"]],[["Caps","Caps"],["\u072b","\u0731","\u0650","\u0650"],["\u0723","\u0734","\u064d","\u064d"],["\u071d","\u0737"],["\u0712","\u073b","\u0621","\u0621"],["\u0720","\u073e","\u0655","\u0655"],["\u0710","\u0711","\u0670","\u0670"],["\u072c","\u0640","\u0748","\u0748"],
|
218 |
+
["\u0722","\u0324","\u0744","\u0744"],["\u0721","\u0331","\u0746","\u0746"],["\u071f","\u0323"],["\u071b","\u0330"],["Enter","Enter"]],[["Shift","Shift"],["]","\u0732"],["[","\u0735","\u0652","\u0652"],["\u0724","\u0738"],["\u072a","\u073c","\u200d"],["\u0727","\u073f","\u200c"],["\u0700","\u0739","\u200e"],[".","\u0742","\u200f"],["\u0718","\u060c"],["\u0719","\u061b"],["\u0707","\u061f"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["syc"]};this.VKI_layout["\u0ba4\u0bae\u0bbf\u0bb4\u0bcd"]=
|
219 |
+
{name:"Tamil",keys:[[["\u0bca","\u0b92"],["1","","\u0be7"],["2","","\u0be8"],["3","","\u0be9"],["4","","\u0bea"],["5","","\u0beb"],["6","\u0ba4\u0bcd\u0bb0","\u0bec"],["7","\u0b95\u0bcd\u0bb7","\u0bed"],["8","\u0bb7\u0bcd\u0bb0","\u0bee"],["9","","\u0bef"],["0","","\u0bf0"],["-","\u0b83","\u0bf1"],["","","\u0bf2"],["Bksp","Bksp"]],[["Tab","Tab"],["\u0bcc","\u0b94"],["\u0bc8","\u0b90"],["\u0bbe","\u0b86"],["\u0bc0","\u0b88"],["\u0bc2","\u0b8a"],["\u0baa","\u0baa"],["\u0bb9","\u0b99"],["\u0b95","\u0b95"],
|
220 |
+
["\u0ba4","\u0ba4"],["\u0b9c","\u0b9a"],["\u0b9f","\u0b9f"],["\u0b9e"]],[["Caps","Caps"],["\u0bcb","\u0b93"],["\u0bc7","\u0b8f"],["\u0bcd","\u0b85"],["\u0bbf","\u0b87"],["\u0bc1","\u0b89"],["\u0baa","\u0baa"],["\u0bb0","\u0bb1"],["\u0b95","\u0b95"],["\u0ba4","\u0ba4"],["\u0b9a","\u0b9a"],["\u0b9f","\u0b9f"],["Enter","Enter"]],[["Shift","Shift"],["\u0bc6","\u0b8e"],[""],["\u0bae","\u0ba3"],["\u0ba8","\u0ba9"],["\u0bb5","\u0bb4"],["\u0bb2","\u0bb3"],["\u0bb8","\u0bb7"],[",","\u0bb7"],[".","\u0bb8\u0bcd\u0bb0\u0bc0"],
|
221 |
+
["\u0baf","\u0baf"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["ta"]};this.VKI_layout["\u0c24\u0c46\u0c32\u0c41\u0c17\u0c41"]={name:"Telugu",keys:[[["\u0c4a","\u0c12"],["1","","\u0c67"],["2","","\u0c68"],["3","\u0c4d\u0c30","\u0c69"],["4","","\u0c6a"],["5","\u0c1c\u0c4d\u0c1e","\u0c6b"],["6","\u0c24\u0c4d\u0c30","\u0c6c"],["7","\u0c15\u0c4d\u0c37","\u0c6d"],["8","\u0c36\u0c4d\u0c30","\u0c6e"],["9","(","\u0c6f"],["0",")","\u0c66"],["-","\u0c03"],["\u0c43","\u0c0b","\u0c44"],["Bksp",
|
222 |
+
"Bksp"]],[["Tab","Tab"],["\u0c4c","\u0c14"],["\u0c48","\u0c10","\u0c56"],["\u0c3e","\u0c06"],["\u0c40","\u0c08","","\u0c61"],["\u0c42","\u0c0a"],["\u0c2c"],["\u0c39","\u0c19"],["\u0c17","\u0c18"],["\u0c26","\u0c27"],["\u0c1c","\u0c1d"],["\u0c21","\u0c22"],["","\u0c1e"]],[["Caps","Caps"],["\u0c4b","\u0c13"],["\u0c47","\u0c0f","\u0c55"],["\u0c4d","\u0c05"],["\u0c3f","\u0c07","","\u0c0c"],["\u0c41","\u0c09"],["\u0c2a","\u0c2b"],["\u0c30","\u0c31"],["\u0c15","\u0c16"],["\u0c24","\u0c25"],["\u0c1a","\u0c1b"],
|
223 |
+
["\u0c1f","\u0c25"],["Enter","Enter"]],[["Shift","Shift"],["\u0c46","\u0c0e"],["\u0c02","\u0c01"],["\u0c2e","\u0c23"],["\u0c28","\u0c28"],["\u0c35"],["\u0c32","\u0c33"],["\u0c38","\u0c36"],[",","\u0c37"],["."],["\u0c2f"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["te"]};this.VKI_layout["Ti\u1ebfng Vi\u1ec7t"]={name:"Vietnamese",keys:[[["`","~","`","~"],["\u0103","\u0102","1","!"],["\u00e2","\u00c2","2","@"],["\u00ea","\u00ca","3","#"],["\u00f4","\u00d4","4","$"],["\u0300","\u0300",
|
224 |
+
"5","%"],["\u0309","\u0309","6","^"],["\u0303","\u0303","7","&"],["\u0301","\u0301","8","*"],["\u0323","\u0323","9","("],["\u0111","\u0110","0",")"],["-","_","-","_"],["\u20ab","+","=","+"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q","q","Q"],["w","W","w","W"],["e","E","e","E"],["r","R","r","R"],["t","T","t","T"],["y","Y","y","Y"],["u","U","u","U"],["i","I","i","I"],["o","O","o","O"],["p","P","p","P"],["\u01b0","\u01af","[","{"],["\u01a1","\u01a0","]","}"],["\\","|","\\","|"]],[["Caps","Caps"],["a",
|
225 |
+
"A","a","A"],["s","S","s","S"],["d","D","d","D"],["f","F","f","F"],["g","G","g","G"],["h","H","h","H"],["j","J","j","J"],["k","K","k","K"],["l","L","l","L"],[";",":",";",":"],["'",'"',"'",'"'],["Enter","Enter"]],[["Shift","Shift"],["z","Z","z","Z"],["x","X","x","X"],["c","C","c","C"],["v","V","v","V"],["b","B","b","B"],["n","N","n","N"],["m","M","m","M"],[",","<",",","<"],[".",">",".",">"],["/","?","/","?"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["vi"]};this.VKI_layout["\u0e44\u0e17\u0e22 Kedmanee"]=
|
226 |
+
{name:"Thai Kedmanee",keys:[[["_","%"],["\u0e45","+"],["/","\u0e51"],["-","\u0e52"],["\u0e20","\u0e53"],["\u0e16","\u0e54"],["\u0e38","\u0e39"],["\u0e36","\u0e3f"],["\u0e04","\u0e55"],["\u0e15","\u0e56"],["\u0e08","\u0e57"],["\u0e02","\u0e58"],["\u0e0a","\u0e59"],["Bksp","Bksp"]],[["Tab","Tab"],["\u0e46","\u0e50"],["\u0e44",'"'],["\u0e33","\u0e0e"],["\u0e1e","\u0e11"],["\u0e30","\u0e18"],["\u0e31","\u0e4d"],["\u0e35","\u0e4a"],["\u0e23","\u0e13"],["\u0e19","\u0e2f"],["\u0e22","\u0e0d"],["\u0e1a",
|
227 |
+
"\u0e10"],["\u0e25",","],["\u0e03","\u0e05"]],[["Caps","Caps"],["\u0e1f","\u0e24"],["\u0e2b","\u0e06"],["\u0e01","\u0e0f"],["\u0e14","\u0e42"],["\u0e40","\u0e0c"],["\u0e49","\u0e47"],["\u0e48","\u0e4b"],["\u0e32","\u0e29"],["\u0e2a","\u0e28"],["\u0e27","\u0e0b"],["\u0e07","."],["Enter","Enter"]],[["Shift","Shift"],["\u0e1c","("],["\u0e1b",")"],["\u0e41","\u0e09"],["\u0e2d","\u0e2e"],["\u0e34","\u0e3a"],["\u0e37","\u0e4c"],["\u0e17","?"],["\u0e21","\u0e12"],["\u0e43","\u0e2c"],["\u0e1d","\u0e26"],
|
228 |
+
["Shift","Shift"]],[[" "," "]]],lang:["th"]};this.VKI_layout["\u0e44\u0e17\u0e22 Pattachote"]={name:"Thai Pattachote",keys:[[["_","\u0e3f"],["=","+"],["\u0e52",'"'],["\u0e53","/"],["\u0e54",","],["\u0e55","?"],["\u0e39","\u0e38"],["\u0e57","_"],["\u0e58","."],["\u0e59","("],["\u0e50",")"],["\u0e51","-"],["\u0e56","%"],["Bksp","Bksp"]],[["Tab","Tab"],["\u0e47","\u0e4a"],["\u0e15","\u0e24"],["\u0e22","\u0e46"],["\u0e2d","\u0e0d"],["\u0e23","\u0e29"],["\u0e48","\u0e36"],["\u0e14","\u0e1d"],["\u0e21",
|
229 |
+
"\u0e0b"],["\u0e27","\u0e16"],["\u0e41","\u0e12"],["\u0e43","\u0e2f"],["\u0e0c","\u0e26"],["\uf8c7","\u0e4d"]],[["Caps","Caps"],["\u0e49","\u0e4b"],["\u0e17","\u0e18"],["\u0e07","\u0e33"],["\u0e01","\u0e13"],["\u0e31","\u0e4c"],["\u0e35","\u0e37"],["\u0e32","\u0e1c"],["\u0e19","\u0e0a"],["\u0e40","\u0e42"],["\u0e44","\u0e06"],["\u0e02","\u0e11"],["Enter","Enter"]],[["Shift","Shift"],["\u0e1a","\u0e0e"],["\u0e1b","\u0e0f"],["\u0e25","\u0e10"],["\u0e2b","\u0e20"],["\u0e34","\u0e31"],["\u0e04","\u0e28"],
|
230 |
+
["\u0e2a","\u0e2e"],["\u0e30","\u0e1f"],["\u0e08","\u0e09"],["\u0e1e","\u0e2c"],["Shift","Shift"]],[[" "," "]]]};this.VKI_layout["\u0422\u0430\u0442\u0430\u0440\u0447\u0430"]={name:"Tatar",keys:[[["\u04bb","\u04ba","\u0451","\u0401"],["1","!"],["2",'"',"@"],["3","\u2116","#"],["4",";","$"],["5","%"],["6",":"],["7","?","["],["8","*","]"],["9","(","{"],["0",")","}"],["-","_"],["=","+"],["Bksp","Bksp"]],[["Tab","Tab"],["\u0439","\u0419"],["\u04e9","\u04e8","\u0446","\u0426"],["\u0443","\u0423"],["\u043a",
|
231 |
+
"\u041a"],["\u0435","\u0415"],["\u043d","\u041d"],["\u0433","\u0413"],["\u0448","\u0428"],["\u04d9","\u04d8","\u0449","\u0429"],["\u0437","\u0417"],["\u0445","\u0425"],["\u04af","\u04ae","\u044a","\u042a"],["\\","/"]],[["Caps","Caps"],["\u0444","\u0424"],["\u044b","\u042b"],["\u0432","\u0412"],["\u0430","\u0410"],["\u043f","\u041f"],["\u0440","\u0420"],["\u043e","\u041e"],["\u043b","\u041b"],["\u0434","\u0414"],["\u04a3","\u04a2","\u0436","\u0416"],["\u044d","\u042d","'"],["Enter","Enter"]],[["Shift",
|
232 |
+
"Shift"],["\u0491","\u0490"],["\u044f","\u042f"],["\u0447","\u0427"],["\u0441","\u0421"],["\u043c","\u041c"],["\u0438","\u0418"],["\u0442","\u0422"],["\u0497","\u0496","\u044c","\u042c"],["\u0431","\u0411","<"],["\u044e","\u042e",">"],[".",","],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["tt"]};this.VKI_layout["T\u00fcrk\u00e7e F"]={name:"Turkish F",keys:[[["+","*","\u00ac"],["1","!","\u00b9","\u00a1"],["2",'"',"\u00b2"],["3","^","#","\u00b3"],["4","$","\u00bc","\u00a4"],["5",
|
233 |
+
"%","\u00bd"],["6","&","\u00be"],["7","'","{"],["8","(","["],["9",")","]"],["0","=","}"],["/","?","\\","\u00bf"],["-","_","|"],["Bksp","Bksp"]],[["Tab","Tab"],["f","F","@"],["g","G"],["\u011f","\u011e"],["\u0131","I","\u00b6","\u00ae"],["o","O"],["d","D","\u00a5"],["r","R"],["n","N"],["h","H","\u00f8","\u00d8"],["p","P","\u00a3"],["q","Q","\u00a8"],["w","W","~"],["x","X","`"]],[["Caps","Caps"],["u","U","\u00e6","\u00c6"],["i","\u0130","\u00df","\u00a7"],["e","E","\u20ac"],["a","A"," ","\u00aa"],["\u00fc",
|
234 |
+
"\u00dc"],["t","T"],["k","K"],["m","M"],["l","L"],["y","Y","\u00b4"],["\u015f","\u015e"],["Enter","Enter"]],[["Shift","Shift"],["<",">","|","\u00a6"],["j","J","\u00ab","<"],["\u00f6","\u00d6","\u00bb",">"],["v","V","\u00a2","\u00a9"],["c","C"],["\u00e7","\u00c7"],["z","Z"],["s","S","\u00b5","\u00ba"],["b","B","\u00d7"],[".",":","\u00f7"],[",",";","-"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]]};this.VKI_layout["T\u00fcrk\u00e7e Q"]={name:"Turkish Q",keys:[[['"',"\u00e9","<"],["1","!",
|
235 |
+
">"],["2","'","\u00a3"],["3","^","#"],["4","+","$"],["5","%","\u00bd"],["6","&"],["7","/","{"],["8","(","["],["9",")","]"],["0","=","}"],["*","?","\\"],["-","_","|"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q","@"],["w","W"],["e","E","\u20ac"],["r","R"],["t","T"],["y","Y"],["u","U"],["\u0131","I","i","\u0130"],["o","O"],["p","P"],["\u011f","\u011e","\u00a8"],["\u00fc","\u00dc","~"],[",",";","`"]],[["Caps","Caps"],["a","A","\u00e6","\u00c6"],["s","S","\u00df"],["d","D"],["f","F"],["g","G"],["h","H"],
|
236 |
+
["j","J"],["k","K"],["l","L"],["\u015f","\u015e","\u00b4"],["i","\u0130"],["Enter","Enter"]],[["Shift","Shift"],["<",">","|"],["z","Z"],["x","X"],["c","C"],["v","V"],["b","B"],["n","N"],["m","M"],["\u00f6","\u00d6"],["\u00e7","\u00c7"],[".",":"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["tr"]};this.VKI_layout["\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0430"]={name:"Ukrainian",keys:[[["\u00b4","~"],["1","!"],["2",'"'],["3","\u2116"],["4",";"],["5","%"],["6",":"],
|
237 |
+
["7","?"],["8","*"],["9","("],["0",")"],["-","_"],["=","+"],["Bksp","Bksp"]],[["Tab","Tab"],["\u0439","\u0419"],["\u0446","\u0426"],["\u0443","\u0423"],["\u043a","\u041a"],["\u0435","\u0415"],["\u043d","\u041d"],["\u0433","\u0413"],["\u0448","\u0428"],["\u0449","\u0429"],["\u0437","\u0417"],["\u0445","\u0425"],["\u0457","\u0407"],["\u0491","\u0490"]],[["Caps","Caps"],["\u0444","\u0424"],["\u0456","\u0406"],["\u0432","\u0412"],["\u0430","\u0410"],["\u043f","\u041f"],["\u0440","\u0420"],["\u043e","\u041e"],
|
238 |
+
["\u043b","\u041b"],["\u0434","\u0414"],["\u0436","\u0416"],["\u0454","\u0404"],["Enter","Enter"]],[["Shift","Shift"],["\u044f","\u042f"],["\u0447","\u0427"],["\u0441","\u0421"],["\u043c","\u041c"],["\u0438","\u0418"],["\u0442","\u0422"],["\u044c","\u042c"],["\u0431","\u0411"],["\u044e","\u042e"],[".",","],["Shift","Shift"]],[[" "," "]]],lang:["uk"]};this.VKI_layout["United Kingdom"]={name:"United Kingdom",keys:[[["`","\u00ac","\u00a6"],["1","!"],["2",'"'],["3","\u00a3"],["4","$","\u20ac"],["5","%"],
|
239 |
+
["6","^"],["7","&"],["8","*"],["9","("],["0",")"],["-","_"],["=","+"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q"],["w","W"],["e","E","\u00e9","\u00c9"],["r","R"],["t","T"],["y","Y"],["u","U","\u00fa","\u00da"],["i","I","\u00ed","\u00cd"],["o","O","\u00f3","\u00d3"],["p","P"],["[","{"],["]","}"],["#","~"]],[["Caps","Caps"],["a","A","\u00e1","\u00c1"],["s","S"],["d","D"],["f","F"],["g","G"],["h","H"],["j","J"],["k","K"],["l","L"],[";",":"],["'","@"],["Enter","Enter"]],[["Shift","Shift"],["\\","|"],["z",
|
240 |
+
"Z"],["x","X"],["c","C"],["v","V"],["b","B"],["n","N"],["m","M"],[",","<"],[".",">"],["/","?"],["Shift","Shift"]],[[" "," "," "," "],["AltGr","AltGr"]]],lang:["en-gb"]};this.VKI_layout["\u0627\u0631\u062f\u0648"]={name:"Urdu",keys:[[["`","~"],["1","!"],["2","@"],["3","#"],["4","$"],["5","\u066a"],["6","^"],["7","\u06d6"],["8","\u066d"],["9",")"],["0","("],["-","_"],["=","+"],["Bksp","Bksp"]],[["Tab","Tab"],["\u0637","\u0638"],["\u0635","\u0636"],["\u06be","\u0630"],["\u062f","\u0688"],["\u0679","\u062b"],
|
241 |
+
["\u067e","\u0651"],["\u062a","\u06c3"],["\u0628","\u0640"],["\u062c","\u0686"],["\u062d","\u062e"],["]","}"],["[","{"],["\\","|"]],[["Caps","Caps"],["\u0645","\u0698"],["\u0648","\u0632"],["\u0631","\u0691"],["\u0646","\u06ba"],["\u0644","\u06c2"],["\u06c1","\u0621"],["\u0627","\u0622"],["\u06a9","\u06af"],["\u06cc","\u064a"],["\u061b",":"],["'",'"'],["Enter","Enter"]],[["Shift","Shift"],["\u0642","\u200d"],["\u0641","\u200c"],["\u06d2","\u06d3"],["\u0633","\u200e"],["\u0634","\u0624"],["\u063a",
|
242 |
+
"\u0626"],["\u0639","\u200f"],["\u060c",">"],["\u06d4","<"],["/","\u061f"],["Shift","Shift"]],[[" "," "]]],lang:["ur"]};this.VKI_layout["US Standard"]={name:"US Standard",keys:[[["`","~"],["1","!"],["2","@"],["3","#"],["4","$"],["5","%"],["6","^"],["7","&"],["8","*"],["9","("],["0",")"],["-","_"],["=","+"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q"],["w","W"],["e","E"],["r","R"],["t","T"],["y","Y"],["u","U"],["i","I"],["o","O"],["p","P"],["[","{"],["]","}"],["\\","|"]],[["Caps","Caps"],["a","A"],["s",
|
243 |
+
"S"],["d","D"],["f","F"],["g","G"],["h","H"],["j","J"],["k","K"],["l","L"],[";",":"],["'",'"'],["Enter","Enter"]],[["Shift","Shift"],["z","Z"],["x","X"],["c","C"],["v","V"],["b","B"],["n","N"],["m","M"],[",","<"],[".",">"],["/","?"],["Shift","Shift"]],[[" "," "]]],lang:["en-us"]};this.VKI_layout["US International"]={name:"US International",keys:[[["`","~"],["1","!","\u00a1","\u00b9"],["2","@","\u00b2"],["3","#","\u00b3"],["4","$","\u00a4","\u00a3"],["5","%","\u20ac"],["6","^","\u00bc"],["7","&","\u00bd"],
|
244 |
+
["8","*","\u00be"],["9","(","\u2018"],["0",")","\u2019"],["-","_","\u00a5"],["=","+","\u00d7","\u00f7"],["Bksp","Bksp"]],[["Tab","Tab"],["q","Q","\u00e4","\u00c4"],["w","W","\u00e5","\u00c5"],["e","E","\u00e9","\u00c9"],["r","R","\u00ae"],["t","T","\u00fe","\u00de"],["y","Y","\u00fc","\u00dc"],["u","U","\u00fa","\u00da"],["i","I","\u00ed","\u00cd"],["o","O","\u00f3","\u00d3"],["p","P","\u00f6","\u00d6"],["[","{","\u00ab"],["]","}","\u00bb"],["\\","|","\u00ac","\u00a6"]],[["Caps","Caps"],["a","A",
|
245 |
+
"\u00e1","\u00c1"],["s","S","\u00df","\u00a7"],["d","D","\u00f0","\u00d0"],["f","F"],["g","G"],["h","H"],["j","J"],["k","K"],["l","L","\u00f8","\u00d8"],[";",":","\u00b6","\u00b0"],["'",'"',"\u00b4","\u00a8"],["Enter","Enter"]],[["Shift","Shift"],["z","Z","\u00e6","\u00c6"],["x","X"],["c","C","\u00a9","\u00a2"],["v","V"],["b","B"],["n","N","\u00f1","\u00d1"],["m","M","\u00b5"],[",","<","\u00e7","\u00c7"],[".",">"],["/","?","\u00bf"],["Shift","Shift"]],[[" "," "," "," "],["Alt","Alt"]]],lang:["en"]};
|
246 |
+
this.VKI_layout["\u040e\u0437\u0431\u0435\u043a\u0447\u0430"]={name:"Uzbek Cyrillic",keys:[[["\u0451","\u0401"],["1","!"],["2",'"'],["3","\u2116"],["4",";"],["5","%"],["6",":"],["7","?"],["8","*"],["9","("],["0",")"],["\u0493","\u0492"],["\u04b3","\u04b2"],["Bksp","Bksp"]],[["Tab","Tab"],["\u0439","\u0419"],["\u0446","\u0426"],["\u0443","\u0423"],["\u043a","\u041a"],["\u0435","\u0415"],["\u043d","\u041d"],["\u0433","\u0413"],["\u0448","\u0428"],["\u045e","\u040e"],["\u0437","\u0417"],["\u0445","\u0425"],
|
247 |
+
["\u044a","\u042a"],["\\","/"]],[["Caps","Caps"],["\u0444","\u0424"],["\u049b","\u049a"],["\u0432","\u0412"],["\u0430","\u0410"],["\u043f","\u041f"],["\u0440","\u0420"],["\u043e","\u041e"],["\u043b","\u041b"],["\u0434","\u0414"],["\u0436","\u0416"],["\u044d","\u042d"],["Enter","Enter"]],[["Shift","Shift"],["\u044f","\u042f"],["\u0447","\u0427"],["\u0441","\u0421"],["\u043c","\u041c"],["\u0438","\u0418"],["\u0442","\u0422"],["\u044c","\u042c"],["\u0431","\u0411"],["\u044e","\u042e"],[".",","],["Shift",
|
248 |
+
"Shift"]],[[" "," "]]],lang:["uz"]};this.VKI_layout["\u4e2d\u6587\u6ce8\u97f3\u7b26\u53f7"]={name:"Chinese Bopomofo IME",keys:[[["\u20ac","~"],["\u3105","!"],["\u3109","@"],["\u02c7","#"],["\u02cb","$"],["\u3113","%"],["\u02ca","^"],["\u02d9","&"],["\u311a","*"],["\u311e",")"],["\u3122","("],["\u3126","_"],["=","+"],["Bksp","Bksp"]],[["Tab","Tab"],["\u3106","q"],["\u310a","w"],["\u310d","e"],["\u3110","r"],["\u3114","t"],["\u3117","y"],["\u3127","u"],["\u311b","i"],["\u311f","o"],["\u3123","p"],["[",
|
249 |
+
"{"],["]","}"],["\\","|"]],[["Caps","Caps"],["\u3107","a"],["\u310b","s"],["\u310e","d"],["\u3111","f"],["\u3115","g"],["\u3118","h"],["\u3128","j"],["\u311c","k"],["\u3120","l"],["\u3124",":"],["'",'"'],["Enter","Enter"]],[["Shift","Shift"],["\u3108","z"],["\u310c","x"],["\u310f","c"],["\u3112","v"],["\u3116","b"],["\u3119","n"],["\u3129","m"],["\u311d","<"],["\u3121",">"],["\u3125","?"],["Shift","Shift"]],[[" "," "]]],lang:["zh-Bopo"]};this.VKI_layout["\u4e2d\u6587\u4ed3\u9889\u8f93\u5165\u6cd5"]=
|
250 |
+
{name:"Chinese Cangjie IME",keys:[[["\u20ac","~"],["1","!"],["2","@"],["3","#"],["4","$"],["5","%"],["6","^"],["7","&"],["8","*"],["9",")"],["0","("],["-","_"],["=","+"],["Bksp","Bksp"]],[["Tab","Tab"],["\u624b","q"],["\u7530","w"],["\u6c34","e"],["\u53e3","r"],["\u5eff","t"],["\u535c","y"],["\u5c71","u"],["\u6208","i"],["\u4eba","o"],["\u5fc3","p"],["[","{"],["]","}"],["\\","|"]],[["Caps","Caps"],["\u65e5","a"],["\u5c38","s"],["\u6728","d"],["\u706b","f"],["\u571f","g"],["\u7af9","h"],["\u5341",
|
251 |
+
"j"],["\u5927","k"],["\u4e2d","l"],[";",":"],["'",'"'],["Enter","Enter"]],[["Shift","Shift"],["\uff3a","z"],["\u96e3","x"],["\u91d1","c"],["\u5973","v"],["\u6708","b"],["\u5f13","n"],["\u4e00","m"],[",","<"],[".",">"],["/","?"],["Shift","Shift"]],[[" "," "]]],lang:["zh"]};this.VKI_deadkey={};this.VKI_deadkey['"']=this.VKI_deadkey["\u00a8"]=this.VKI_deadkey["\u309b"]={a:"\u00e4",e:"\u00eb",i:"\u00ef",o:"\u00f6",u:"\u00fc",y:"\u00ff","\u03b9":"\u03ca","\u03c5":"\u03cb","\u016b":"\u01d6","\u00fa":"\u01d8",
|
252 |
+
"\u01d4":"\u01da","\u00f9":"\u01dc",A:"\u00c4",E:"\u00cb",I:"\u00cf",O:"\u00d6",U:"\u00dc",Y:"\u0178","\u0399":"\u03aa","\u03a5":"\u03ab","\u016a":"\u01d5","\u00da":"\u01d7","\u01d3":"\u01d9","\u00d9":"\u01db","\u304b":"\u304c","\u304d":"\u304e","\u304f":"\u3050","\u3051":"\u3052","\u3053":"\u3054","\u305f":"\u3060","\u3061":"\u3062","\u3064":"\u3065","\u3066":"\u3067","\u3068":"\u3069","\u3055":"\u3056","\u3057":"\u3058","\u3059":"\u305a","\u305b":"\u305c","\u305d":"\u305e","\u306f":"\u3070","\u3072":"\u3073",
|
253 |
+
"\u3075":"\u3076","\u3078":"\u3079","\u307b":"\u307c","\u30ab":"\u30ac","\u30ad":"\u30ae","\u30af":"\u30b0","\u30b1":"\u30b2","\u30b3":"\u30b4","\u30bf":"\u30c0","\u30c1":"\u30c2","\u30c4":"\u30c5","\u30c6":"\u30c7","\u30c8":"\u30c9","\u30b5":"\u30b6","\u30b7":"\u30b8","\u30b9":"\u30ba","\u30bb":"\u30bc","\u30bd":"\u30be","\u30cf":"\u30d0","\u30d2":"\u30d3","\u30d5":"\u30d6","\u30d8":"\u30d9","\u30db":"\u30dc"};this.VKI_deadkey["~"]={a:"\u00e3",l:"\u0142",n:"\u00f1",o:"\u00f5",A:"\u00c3",L:"\u0141",
|
254 |
+
N:"\u00d1",O:"\u00d5"};this.VKI_deadkey["^"]={a:"\u00e2",e:"\u00ea",i:"\u00ee",o:"\u00f4",u:"\u00fb",w:"\u0175",y:"\u0177",A:"\u00c2",E:"\u00ca",I:"\u00ce",O:"\u00d4",U:"\u00db",W:"\u0174",Y:"\u0176"};this.VKI_deadkey["\u02c7"]={c:"\u010d",d:"\u010f",e:"\u011b",s:"\u0161",l:"\u013e",n:"\u0148",r:"\u0159",t:"\u0165",u:"\u01d4",z:"\u017e","\u00fc":"\u01da",C:"\u010c",D:"\u010e",E:"\u011a",S:"\u0160",L:"\u013d",N:"\u0147",R:"\u0158",T:"\u0164",U:"\u01d3",Z:"\u017d","\u00dc":"\u01d9"};this.VKI_deadkey["\u02d8"]=
|
255 |
+
{a:"\u0103",g:"\u011f",A:"\u0102",G:"\u011e"};this.VKI_deadkey["-"]=this.VKI_deadkey["\u00af"]={a:"\u0101",e:"\u0113",i:"\u012b",o:"\u014d",u:"\u016b",y:"\u0233","\u00fc":"\u01d6",A:"\u0100",E:"\u0112",I:"\u012a",O:"\u014c",U:"\u016a",Y:"\u0232","\u00dc":"\u01d5"};this.VKI_deadkey["`"]={a:"\u00e0",e:"\u00e8",i:"\u00ec",o:"\u00f2",u:"\u00f9","\u00fc":"\u01dc",A:"\u00c0",E:"\u00c8",I:"\u00cc",O:"\u00d2",U:"\u00d9","\u00dc":"\u01db"};this.VKI_deadkey["'"]=this.VKI_deadkey["\u00b4"]=this.VKI_deadkey["\u0384"]=
|
256 |
+
{a:"\u00e1",e:"\u00e9",i:"\u00ed",o:"\u00f3",u:"\u00fa",y:"\u00fd","\u03b1":"\u03ac","\u03b5":"\u03ad","\u03b7":"\u03ae","\u03b9":"\u03af","\u03bf":"\u03cc","\u03c5":"\u03cd","\u03c9":"\u03ce","\u00fc":"\u01d8",A:"\u00c1",E:"\u00c9",I:"\u00cd",O:"\u00d3",U:"\u00da",Y:"\u00dd","\u0391":"\u0386","\u0395":"\u0388","\u0397":"\u0389","\u0399":"\u038a","\u039f":"\u038c","\u03a5":"\u038e","\u03a9":"\u038f","\u00dc":"\u01d7"};this.VKI_deadkey["\u02dd"]={o:"\u0151",u:"\u0171",O:"\u0150",U:"\u0170"};this.VKI_deadkey["\u0385"]=
|
257 |
+
{"\u03b9":"\u0390","\u03c5":"\u03b0"};this.VKI_deadkey["\u00b0"]=this.VKI_deadkey["\u00ba"]={a:"\u00e5",u:"\u016f",A:"\u00c5",U:"\u016e"};this.VKI_deadkey["\u02db"]={a:"\u0106",e:"\u0119",i:"\u012f",o:"\u01eb",u:"\u0173",y:"\u0177",A:"\u0105",E:"\u0118",I:"\u012e",O:"\u01ea",U:"\u0172",Y:"\u0176"};this.VKI_deadkey["\u02d9"]={c:"\u010b",e:"\u0117",g:"\u0121",z:"\u017c",C:"\u010a",E:"\u0116",G:"\u0120",Z:"\u017b"};this.VKI_deadkey["\u00b8"]=this.VKI_deadkey["\u201a"]={c:"\u00e7",s:"\u015f",C:"\u00c7",
|
258 |
+
S:"\u015e"};this.VKI_deadkey[","]={s:this.VKI_isIElt8?"\u015f":"\u0219",t:this.VKI_isIElt8?"\u0163":"\u021b",S:this.VKI_isIElt8?"\u015e":"\u0218",T:this.VKI_isIElt8?"\u0162":"\u021a"};this.VKI_deadkey["\u3002"]={"\u306f":"\u3071","\u3072":"\u3074","\u3075":"\u3077","\u3078":"\u307a","\u307b":"\u307d","\u30cf":"\u30d1","\u30d2":"\u30d4","\u30d5":"\u30d7","\u30d8":"\u30da","\u30db":"\u30dd"};this.VKI_symbol={"\u00a0":"NB\nSP","\u200b":"ZW\nSP","\u200c":"ZW\nNJ","\u200d":"ZW\nJ"};this.VKI_numpad=[[["$"],
|
259 |
+
["\u00a3"],["\u20ac"],["\u00a5"]],[["7"],["8"],["9"],["/"]],[["4"],["5"],["6"],["*"]],[["1"],["2"],["3"],["-"]],[["0"],["."],["="],["+"]]];this.VKI_attachKeyboard=VKI_attach=function(b){if(b.getAttribute("VKI_attached"))return!1;if(this.VKI_imageURI){var d=document.createElement("img");d.src=this.VKI_imageURI;d.alt=this.VKI_i18n["00"];d.className="keyboardInputInitiator";d.title=this.VKI_i18n["01"];d.elem=b;d.onclick=function(b){b=b||event;b.stopPropagation?b.stopPropagation():b.cancelBubble=!0;a.VKI_show(this.elem)};
|
260 |
+
b.parentNode.insertBefore(d,b.dir=="rtl"?b:b.nextSibling)}else b.onfocus=function(){a.VKI_target!=this&&a.VKI_show(this)};b.setAttribute("VKI_attached","true");if(this.VKI_isIE)b.onclick=b.onselect=b.onkeyup=function(a){if((a||event).type!="keyup"||!this.readOnly)this.range=document.selection.createRange()};g(b,"click",function(b){if(a.VKI_target==this)b=b||event,b.stopPropagation?b.stopPropagation():b.cancelBubble=!0;return!1},!1);this.VKI_isMoz&&b.addEventListener("blur",function(){this.setAttribute("_scrollTop",
|
261 |
+
this.scrollTop)},!1)};this.VKI_keyboard=document.createElement("table");this.VKI_keyboard.id="keyboardInputMaster";this.VKI_keyboard.dir="ltr";this.VKI_keyboard.cellSpacing="0";this.VKI_keyboard.reflow=function(){this.style.width="50px";this.style.width=""};g(this.VKI_keyboard,"click",function(a){a=a||event;a.stopPropagation?a.stopPropagation():a.cancelBubble=!0;return!1},!1);if(!this.VKI_layout[this.VKI_kt])return alert('No keyboard named "'+this.VKI_kt+'"');this.VKI_langCode={};var r=document.createElement("thead"),
|
262 |
+
o=document.createElement("tr"),f=document.createElement("th");f.colSpan="2";var h=document.createElement("div");h.title=this.VKI_i18n["02"];g(h,"click",function(){var a=this.getElementsByTagName("ol")[0];if(a.style.display)a.style.display="";else{a.style.display="block";for(var d=a.getElementsByTagName("li"),c=0,g=0;c<d.length;c++)VKI_kt==d[c].firstChild.nodeValue?(d[c].className="selected",g=d[c].offsetTop-d[c].offsetHeight*2):d[c].className="";setTimeout(function(){a.scrollTop=g},0)}},!1);h.appendChild(document.createTextNode(this.VKI_kt));
|
263 |
+
h.appendChild(document.createTextNode(this.VKI_isIElt8?" \u2193":" \u25be"));var i=document.createElement("ol");for(ktype in this.VKI_layout)if(typeof this.VKI_layout[ktype]=="object"){if(!this.VKI_layout[ktype].lang)this.VKI_layout[ktype].lang=[];for(var c=0;c<this.VKI_layout[ktype].lang.length;c++)this.VKI_langCode[this.VKI_layout[ktype].lang[c].toLowerCase().replace(/-/g,"_")]=ktype;c=document.createElement("li");c.title=this.VKI_layout[ktype].name;g(c,"click",function(b){b=b||event;b.stopPropagation?
|
264 |
+
b.stopPropagation():b.cancelBubble=!0;this.parentNode.style.display="";a.VKI_kts=a.VKI_kt=h.firstChild.nodeValue=this.firstChild.nodeValue;a.VKI_buildKeys();a.VKI_position(!0)},!1);n(c);c.appendChild(document.createTextNode(ktype));i.appendChild(c)}h.appendChild(i);f.appendChild(h);this.VKI_langCode.index=[];for(prop in this.VKI_langCode)prop!="index"&&typeof this.VKI_langCode[prop]=="string"&&this.VKI_langCode.index.push(prop);this.VKI_langCode.index.sort();this.VKI_langCode.index.reverse();if(this.VKI_numberPad)c=
|
265 |
+
document.createElement("span"),c.appendChild(document.createTextNode("#")),c.title=this.VKI_i18n["00"],g(c,"click",function(){p.style.display=!p.style.display?"none":"";a.VKI_position(!0)},!1),n(c),f.appendChild(c);this.VKI_kbsize=function(){a.VKI_size=Math.min(5,Math.max(1,a.VKI_size));a.VKI_keyboard.className=a.VKI_keyboard.className.replace(/ ?keyboardInputSize\d ?/,"");a.VKI_size!=2&&(a.VKI_keyboard.className+=" keyboardInputSize"+a.VKI_size);a.VKI_position(!0);a.VKI_isOpera&&a.VKI_keyboard.reflow()};
|
266 |
+
if(this.VKI_sizeAdj)c=document.createElement("small"),c.title=this.VKI_i18n["10"],g(c,"click",function(){--a.VKI_size;a.VKI_kbsize()},!1),n(c),c.appendChild(document.createTextNode(this.VKI_isIElt8?"\u2193":"\u21d3")),f.appendChild(c),c=document.createElement("big"),c.title=this.VKI_i18n["11"],g(c,"click",function(){++a.VKI_size;a.VKI_kbsize()},!1),n(c),c.appendChild(document.createTextNode(this.VKI_isIElt8?"\u2191":"\u21d1")),f.appendChild(c);c=document.createElement("strong");c.appendChild(document.createTextNode("X"));
|
267 |
+
c.title=this.VKI_i18n["06"];g(c,"click",function(){a.VKI_close()},!1);n(c);f.appendChild(c);o.appendChild(f);r.appendChild(o);this.VKI_keyboard.appendChild(r);r=document.createElement("tbody");o=document.createElement("tr");c=document.createElement("td");f=document.createElement("div");if(this.VKI_deadBox){var i=document.createElement("label"),k=document.createElement("input");k.type="checkbox";k.title=this.VKI_i18n["03"]+": "+(this.VKI_deadkeysOn?this.VKI_i18n["04"]:this.VKI_i18n["05"]);k.defaultChecked=
|
268 |
+
this.VKI_deadkeysOn;g(k,"click",function(){this.title=a.VKI_i18n["03"]+": "+(this.checked?a.VKI_i18n["04"]:a.VKI_i18n["05"]);a.VKI_modify("");return!0},!1);i.appendChild(k);k.checked=this.VKI_deadkeysOn;f.appendChild(i);this.VKI_deadkeysOn=k}else this.VKI_deadkeysOn.checked=this.VKI_deadkeysOn;if(this.VKI_showVersion)i=document.createElement("var"),i.title=this.VKI_i18n["09"]+" "+this.VKI_version,i.appendChild(document.createTextNode("v"+this.VKI_version)),f.appendChild(i);c.appendChild(f);o.appendChild(c);
|
269 |
+
var p=document.createElement("td");p.id="keyboardInputNumpad";if(!this.VKI_numberPadOn)p.style.display="none";f=document.createElement("table");f.cellSpacing="0";i=document.createElement("tbody");for(c=0;c<this.VKI_numpad.length;c++){for(var k=document.createElement("tr"),u=0;u<this.VKI_numpad[c].length;u++){var s=document.createElement("td");g(s,"click",v,!1);n(s);s.appendChild(document.createTextNode(this.VKI_numpad[c][u]));k.appendChild(s)}i.appendChild(k)}f.appendChild(i);p.appendChild(f);o.appendChild(p);
|
270 |
+
r.appendChild(o);this.VKI_keyboard.appendChild(r);if(this.VKI_isIE6)this.VKI_iframe=document.createElement("iframe"),this.VKI_iframe.style.position="absolute",this.VKI_iframe.style.border="0px none",this.VKI_iframe.style.filter="mask()",this.VKI_iframe.style.zIndex="999999",this.VKI_iframe.src=this.VKI_imageURI;this.VKI_buildKeys=function(){this.VKI_shift=this.VKI_shiftlock=this.VKI_altgr=this.VKI_altgrlock=this.VKI_dead=!1;for(var b=this.VKI_keyboard.tBodies[0].getElementsByTagName("div")[0],d=b.getElementsByTagName("table"),
|
271 |
+
c=d.length-1;c>=0;c--)b.removeChild(d[c]);for(var c=0,d=!1,q;q=this.VKI_layout[this.VKI_kt].keys[c++];){var e=document.createElement("table");e.cellSpacing="0";if(q.length<=this.VKI_keyCenter)e.className="keyboardInputCenter";for(var w=document.createElement("tbody"),x=document.createElement("tr"),y=0,j;j=q[y++];){var l=document.createElement("td");if(this.VKI_symbol[j[0]]){var f=this.VKI_symbol[j[0]].split("\n"),i=document.createElement("small");i.setAttribute("char",j[0]);for(var h=0;h<f.length;h++)h&&
|
272 |
+
i.appendChild(document.createElement("br")),i.appendChild(document.createTextNode(f[h]));l.appendChild(i)}else l.appendChild(document.createTextNode(j[0]||"\u00a0"));f=[];if(this.VKI_deadkeysOn.checked)for(key in this.VKI_deadkey)if(key===j[0]){f.push("deadkey");break}q.length>this.VKI_keyCenter&&y==q.length&&f.push("last");(j[0]==" "||j[1]==" ")&&f.push("space");l.className=f.join(" ");switch(j[1]){case "Caps":case "Shift":case "Alt":case "AltGr":case "AltLk":g(l,"click",function(b){return function(){a.VKI_modify(b);
|
273 |
+
return!1}}(j[1]),!1);break;case "Tab":g(l,"click",function(){a.VKI_insert("\t");return!1},!1);break;case "Bksp":g(l,"click",function(){a.VKI_target.focus();if(a.VKI_target.setSelectionRange&&!a.VKI_target.readOnly){var b=[a.VKI_target.selectionStart,a.VKI_target.selectionEnd];b[0]<b[1]&&b[0]++;a.VKI_target.value=a.VKI_target.value.substr(0,b[0]-1)+a.VKI_target.value.substr(b[1]);a.VKI_target.setSelectionRange(b[0]-1,b[0]-1)}else if(a.VKI_target.createTextRange&&!a.VKI_target.readOnly){try{a.VKI_target.range.select()}catch(d){a.VKI_target.range=
|
274 |
+
document.selection.createRange()}a.VKI_target.range.text.length||a.VKI_target.range.moveStart("character",-1);a.VKI_target.range.text=""}else a.VKI_target.value=a.VKI_target.value.substr(0,a.VKI_target.value.length-1);jQuery(a.VKI_target).keyup();a.VKI_shift&&a.VKI_modify("Shift");a.VKI_altgr&&a.VKI_modify("AltGr");a.VKI_target.focus();return!0},!1);break;case "Enter":g(l,"click",function(){if(a.VKI_target.nodeName!="TEXTAREA"){if(a.VKI_target.form){for(var b=0,d=!1;b<a.VKI_target.form.elements.length;b++)a.VKI_target.form.elements[b].type==
|
275 |
+
"submit"&&(d=!0);d||a.VKI_target.form.submit()}a.VKI_close()}else a.VKI_insert("\n");return!0},!1);break;default:g(l,"click",v,!1)}n(l);x.appendChild(l);for(h=0;h<4;h++)if(this.VKI_deadkey[j[h]=j[h]||""])d=!0}w.appendChild(x);e.appendChild(w);b.appendChild(e)}if(this.VKI_deadBox)this.VKI_deadkeysOn.style.display=d?"inline":"none";if(this.VKI_isIE6)this.VKI_iframe.style.width=this.VKI_keyboard.offsetWidth+"px",this.VKI_iframe.style.height=this.VKI_keyboard.offsetHeight+"px"};this.VKI_buildKeys();g(this.VKI_keyboard,
|
276 |
+
"selectstart",function(){return!1},!1);this.VKI_keyboard.unselectable="on";this.VKI_isOpera&&g(this.VKI_keyboard,"mousedown",function(){return!1},!1);this.VKI_modify=function(a){switch(a){case "Alt":case "AltGr":this.VKI_altgr=!this.VKI_altgr;break;case "AltLk":this.VKI_altgr=0;this.VKI_altgrlock=!this.VKI_altgrlock;break;case "Caps":this.VKI_shift=0;this.VKI_shiftlock=!this.VKI_shiftlock;break;case "Shift":this.VKI_shift=!this.VKI_shift}var d=0;!this.VKI_shift!=!this.VKI_shiftlock&&(d+=1);!this.VKI_altgr!=
|
277 |
+
!this.VKI_altgrlock&&(d+=2);for(var c=this.VKI_keyboard.tBodies[0].getElementsByTagName("div")[0].getElementsByTagName("table"),g=0;g<c.length;g++)for(var e=c[g].getElementsByTagName("td"),f=0;f<e.length;f++){var h=[],i=this.VKI_layout[this.VKI_kt].keys[g][f];switch(i[1]){case "Alt":case "AltGr":this.VKI_altgr&&h.push("pressed");break;case "AltLk":this.VKI_altgrlock&&h.push("pressed");break;case "Shift":this.VKI_shift&&h.push("pressed");break;case "Caps":this.VKI_shiftlock&&h.push("pressed");break;
|
278 |
+
case "Tab":case "Enter":case "Bksp":break;default:if(a)if(e[f].removeChild(e[f].firstChild),this.VKI_symbol[i[d]]){var j=this.VKI_symbol[i[d]].split("\n"),l=document.createElement("small");l.setAttribute("char",i[d]);for(var k=0;k<j.length;k++)k&&l.appendChild(document.createElement("br")),l.appendChild(document.createTextNode(j[k]));e[f].appendChild(l)}else e[f].appendChild(document.createTextNode(i[d]||"\u00a0"));this.VKI_deadkeysOn.checked&&(j=e[f].firstChild.nodeValue||e[f].firstChild.className,
|
279 |
+
this.VKI_dead&&(j==this.VKI_dead&&h.push("pressed"),this.VKI_deadkey[this.VKI_dead][j]&&h.push("target")),this.VKI_deadkey[j]&&h.push("deadkey"))}f==e.length-1&&e.length>this.VKI_keyCenter&&h.push("last");(i[0]==" "||i[1]==" ")&&h.push("space");e[f].className=h.join(" ")}};this.VKI_insert=function(a){this.VKI_target.focus();if(this.VKI_target.maxLength)this.VKI_target.maxlength=this.VKI_target.maxLength;if(typeof this.VKI_target.maxlength=="undefined"||this.VKI_target.maxlength<0||this.VKI_target.value.length<
|
280 |
+
this.VKI_target.maxlength){if(this.VKI_target.setSelectionRange&&!this.VKI_target.readOnly){var d=[this.VKI_target.selectionStart,this.VKI_target.selectionEnd];this.VKI_target.value=this.VKI_target.value.substr(0,d[0])+a+this.VKI_target.value.substr(d[1]);a=="\n"&&this.VKI_isOpera&&d[0]++;this.VKI_target.setSelectionRange(d[0]+a.length,d[0]+a.length)}else if(this.VKI_target.createTextRange&&!this.VKI_target.readOnly){try{this.VKI_target.range.select()}catch(c){this.VKI_target.range=document.selection.createRange()}this.VKI_target.range.text=
|
281 |
+
a;this.VKI_target.range.collapse(!0);this.VKI_target.range.select()}else this.VKI_target.value+=a;this.VKI_shift&&this.VKI_modify("Shift");this.VKI_altgr&&this.VKI_modify("AltGr");this.VKI_target.focus();jQuery(this.VKI_target).keyup()}else this.VKI_target.createTextRange&&this.VKI_target.range&&this.VKI_target.range.select()};this.VKI_show=function(b){if(this.VKI_target)this.VKI_close();else{this.VKI_target=b;if(this.VKI_langAdapt&&this.VKI_target.lang){for(var b=!1,d=this.VKI_target.lang.toLowerCase().replace(/-/g,
|
282 |
+
"_"),c=0,b=!1;!b&&c<this.VKI_langCode.index.length;c++)if(d.indexOf(this.VKI_langCode.index[c])==0)b=h.firstChild.nodeValue=this.VKI_kt=this.VKI_langCode[this.VKI_langCode.index[c]];b&&this.VKI_buildKeys()}if(this.VKI_isIE){if(!this.VKI_target.range)this.VKI_target.range=this.VKI_target.createTextRange(),this.VKI_target.range.moveStart("character",this.VKI_target.value.length);this.VKI_target.range.select()}try{this.VKI_keyboard.parentNode.removeChild(this.VKI_keyboard)}catch(g){}if(this.VKI_clearPasswords&&
|
283 |
+
this.VKI_target.type=="password")this.VKI_target.value="";b=this.VKI_target;this.VKI_target.keyboardPosition="absolute";do{if(b.currentStyle)var e=b.currentStyle.position;else window.getComputedStyle&&(e=window.getComputedStyle(b,null).position);if(e=="fixed"){this.VKI_target.keyboardPosition="fixed";break}}while(b=b.offsetParent);this.VKI_isIE6&&document.body.appendChild(this.VKI_iframe);document.body.appendChild(this.VKI_keyboard);this.VKI_keyboard.style.position=this.VKI_target.keyboardPosition;
|
284 |
+
this.VKI_isOpera&&this.VKI_keyboard.reflow();this.VKI_position(!0);(a.VKI_isMoz||a.VKI_isWebKit)&&this.VKI_position(!0);this.VKI_target.blur();this.VKI_target.focus()}};this.VKI_position=function(b){if(a.VKI_target){var d=t(a.VKI_keyboard),c=z(),f=A(),e=!1,h=a.VKI_target.offsetHeight+3;b!==!0&&(d[1]+a.VKI_keyboard.offsetHeight-f[1]-c[1]>0?(e=!0,h=-a.VKI_keyboard.offsetHeight-3):d[1]-f[1]<0&&(e=!0));if(e||b===!0){d=t(a.VKI_target);for(e=a.VKI_target;e=e.parentNode;){if(e==document.body)break;if(e.scrollHeight>
|
285 |
+
e.offsetHeight||e.scrollWidth>e.offsetWidth){e.getAttribute("VKI_scrollListener")||(e.setAttribute("VKI_scrollListener",!0),g(e,"scroll",function(){a.VKI_position(!0)},!1));var i=t(e),k=d[1]-i[1],j=d[0]-i[0],i=k+a.VKI_target.offsetHeight,l=j+a.VKI_target.offsetWidth,k=e.offsetHeight-k-a.VKI_target.offsetHeight,j=e.offsetWidth-j-a.VKI_target.offsetWidth;a.VKI_keyboard.style.display=i<0||l<0||k<0||j<0?"none":"";if(a.VKI_isIE6)a.VKI_iframe.style.display=i<0||l<0||k<0||j<0?"none":""}}a.VKI_keyboard.style.top=
|
286 |
+
d[1]-(a.VKI_target.keyboardPosition=="fixed"&&!a.VKI_isIE&&!a.VKI_isMoz?f[1]:0)+h+"px";a.VKI_keyboard.style.left=Math.max(10,Math.min(c[0]-a.VKI_keyboard.offsetWidth-25,d[0]))+"px";if(a.VKI_isIE6)a.VKI_iframe.style.width=a.VKI_keyboard.offsetWidth+"px",a.VKI_iframe.style.height=a.VKI_keyboard.offsetHeight+"px",a.VKI_iframe.style.top=a.VKI_keyboard.style.top,a.VKI_iframe.style.left=a.VKI_keyboard.style.left}b===!0&&a.VKI_position()}};this.VKI_close=VKI_close=function(){if(this.VKI_target){try{this.VKI_keyboard.parentNode.removeChild(this.VKI_keyboard),
|
287 |
+
this.VKI_isIE6&&this.VKI_iframe.parentNode.removeChild(this.VKI_iframe)}catch(b){}if(this.VKI_kt!=this.VKI_kts)h.firstChild.nodeValue=this.VKI_kt=this.VKI_kts,this.VKI_buildKeys();h.getElementsByTagName("ol")[0].style.display="";this.VKI_target.focus();this.VKI_isIE?setTimeout(function(){a.VKI_target=!1},0):this.VKI_target=!1}};g(window,"resize",this.VKI_position,!1);g(window,"scroll",this.VKI_position,!1);this.VKI_kbsize();g(window,"load",function(){for(var b=[document.getElementsByTagName("input"),
|
288 |
+
document.getElementsByTagName("textarea")],c=0,f;f=b[c++];)for(var h=0,e;e=f[h++];)(e.nodeName=="TEXTAREA"||e.type=="text"||e.type=="password")&&e.className.indexOf("keyboardInput")>-1&&a.VKI_attachKeyboard(e);g(document.documentElement,"click",function(){a.VKI_close()},!1)},!1)})();
|
|
@@ -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?":"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 |
/*
|
2 |
+
* Transposh v0.7.6
|
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: Tue, 02 Aug 2011 03:11:42 +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.6
|
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: Tue, 02 Aug 2011 03:11:42 +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.6
|
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: Tue, 02 Aug 2011 03:11:42 +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.6
|
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: Tue, 02 Aug 2011 03:11:42 +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.6
|
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: Tue, 02 Aug 2011 03:11:42 +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.6
|
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: Tue, 02 Aug 2011 03:11:42 +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.6
|
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: Tue, 02 Aug 2011 03:11:42 +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",
|
@@ -11,8 +11,8 @@
|
|
11 |
*
|
12 |
* Copyright (c) 2008 Oleg Slobodskoi (ajaxsoft.de)
|
13 |
*/
|
14 |
-
(function(
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
11 |
*
|
12 |
* Copyright (c) 2008 Oleg Slobodskoi (ajaxsoft.de)
|
13 |
*/
|
14 |
+
(function(a){function m(){function k(b,a){m[b](a,function(b){b=="error"?g.push(a):i.push(a)&&c.each(a);o()},"lazy-loaded-"+(c.name?c.name:(new Date).getTime()))}function h(a){c.complete(a,i,g);c[a](a=="error"?g:i);clearTimeout(p);clearTimeout(r)}function o(){i.length==j.length?h("success"):i.length+g.length==j.length&&h("error")}function q(){g.push(this.src);o()}var m=this,c,i=[],g=[],p,r,n,j=[];this.init=function(b){b&&(c=a.extend({},a.xLazyLoader.defaults,b),n={js:c.js,css:c.css,img:c.img},a.each(n,
|
15 |
+
function(a,b){typeof b=="string"&&(b=b.split(","));j=j.concat(b)}),j.length?(c.timeout&&(p=setTimeout(function(){var b=i.concat(g);a.each(j,function(e,f){a.inArray(f,b)==-1&&g.push(f)});h("error")},c.timeout)),a.each(n,function(b,e){a.isArray(e)?a.each(e,function(a,d){k(b,d)}):typeof e=="string"&&k(b,e)})):h("error"))};this.js=function(b,c,e){var f=a('script[src*="'+b+'"]');if(f.length)f.attr("pending")?f.bind("scriptload",c):c();else{var d=document.createElement("script");d.setAttribute("type","text/javascript");
|
16 |
+
d.setAttribute("src",b);d.setAttribute("id",e);d.setAttribute("pending",1);d.onerror=q;a(d).bind("scriptload",function(){a(this).removeAttr("pending");c();setTimeout(function(){a(d).unbind("scriptload")},10)});var k=!1;d.onload=d.onreadystatechange=function(){if(!k&&(!this.readyState||/loaded|complete/.test(this.readyState)))k=!0,d.onload=d.onreadystatechange=null,a(d).trigger("scriptload")};l.appendChild(d)}};this.css=function(b,c,e){if(a('link[href*="'+b+'"]').length)c();else{var f=a('<link rel="stylesheet" type="text/css" media="all" href="'+
|
17 |
+
b+'" id="'+e+'"></link>')[0];a.browser.msie?f.onreadystatechange=function(){/loaded|complete/.test(f.readyState)&&c()}:a.browser.opera?f.onload=c:(location.hostname.replace("www.",""),/http:/.test(b)&&/^(\w+:)?\/\/([^\/?#]+)/.exec(b),c());l.appendChild(f)}};this.img=function(a,c){var e=new Image;e.onload=c;e.onerror=q;e.src=a};this.disable=function(b){a("#lazy-loaded-"+b,l).attr("disabled","disabled")};this.enable=function(b){a("#lazy-loaded-"+b,l).removeAttr("disabled")};this.destroy=function(b){a("#lazy-loaded-"+
|
18 |
+
b,l).remove()}}a.xLazyLoader=function(a,h){typeof a=="object"&&(h=a,a="init");(new m)[a](h)};a.xLazyLoader.defaults={js:[],css:[],img:[],name:null,timeout:2E4,success:function(){},error:function(){},complete:function(){},each:function(){}};var l=document.getElementsByTagName("head")[0]})(jQuery);
|
@@ -1,19 +1,19 @@
|
|
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
|
12 |
-
{ln0:t_jp.lang,sr0:
|
13 |
-
"&q="+encodeURIComponent(
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
"
|
18 |
-
|
19 |
-
|
1 |
/*
|
2 |
+
* Transposh v0.7.6
|
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: Tue, 02 Aug 2011 03:11:42 +0300
|
10 |
*/
|
11 |
+
(function(a){function u(c,b){if(a.trim(b).length!==0){var d=function(){var c=a(this).attr("id").substr(a(this).attr("id").lastIndexOf("_")+1),d=a("#"+f+"img_"+c);a("#"+f+c).attr("data-source",1);d.removeClass("tr-icon-yellow").removeClass("tr-icon-green").addClass("tr-icon-yellow")};a("*[data-token='"+c+"'][data-hidden!='y']").html(b).each(d);a("*[data-token='"+c+"'][data-hidden='y']").attr("data-trans",b).each(d)}}function v(c,b){clearTimeout(o);h.push(c);m.push(b);u(c,b);o=setTimeout(function(){var c=
|
12 |
+
{ln0:t_jp.lang,sr0:n,translation_posted:"2",items:h.length},b;for(b=0;b<h.length;b+=1)c["tk"+b]=h[b],c["tr"+b]=m[b],p+=a("*[data-token='"+h[b]+"']").size();a.ajax({type:"POST",url:t_jp.post_url,data:c,success:function(){var c=p/j*100;t_jp.progress&&a("#"+k).progressbar("value",c)}});m=[];h=[]},200)}function i(c,b){v(c,a("<div>"+a.trim(b)+"</div>").text());var d=(j-a("."+f+'[data-source=""]').size())/j*100;t_jp.progress&&a("#"+l).progressbar("value",d)}function w(c,b,d){var e="",f="";a(c).each(function(a){e+=
|
13 |
+
"&q="+encodeURIComponent(c[a])});if(b)f=t_jp.olang;a.ajax({url:"http://ajax.googleapis.com/ajax/services/language/translate?v=1.0"+e+"&langpair="+f+"%7C"+t_jp.lang,dataType:"jsonp",success:d})}function q(c,b,d){w(b,d,function(e){e.responseStatus>=200&&e.responseStatus<300?e.responseData.translatedText!==void 0?i(c[0],e.responseData.translatedText):a(e.responseData).each(function(a){this.responseStatus===200&&i(c[a],this.responseData.translatedText)}):e.responseStatus>=400&&!d&&q(c,b,!0)})}function x(c,
|
14 |
+
b){var d="[";a(c).each(function(a){d+='"'+encodeURIComponent(c[a])+'",'});d=d.slice(0,-1)+"]";a.ajax({url:"http://api.microsofttranslator.com/V2/Ajax.svc/TranslateArray?appId="+t_jp.MSN_APPID+"&to="+t_jp.binglang+"&texts="+d,dataType:"jsonp",jsonp:"oncomplete",success:b})}function y(c,b){n=2;x(b,function(b){a(b).each(function(a){i(c[a],this.TranslatedText)})})}function z(c,b){a.getJSON(t_jp.post_url+"?tgp="+b+"&tgl="+t_jp.lang,function(a){a.sentences!==void 0&&a.sentences[0].trans&&i(c,a.sentences[0].trans)})}
|
15 |
+
function A(c,b){var d="";a(c).each(function(a){d+="&q="+encodeURIComponent(c[a])});a.ajax({url:"http://api.apertium.org/json/translate?"+d+"&langpair="+t_jp.olang+"%7C"+t_jp.lang+"&markUnknown=no",dataType:"jsonp",success:b})}function B(c,b){n=3;A(b,function(b){b.responseStatus>=200&&b.responseStatus<300&&(b.responseData.translatedText!==void 0?i(c[0],b.responseData.translatedText):a(b.responseData).each(function(a){this.responseStatus===200&&i(c[a],this.responseData.translatedText)}))})}function r(a,
|
16 |
+
b){t_jp.msn&&t_jp.preferred==="2"?y(a,b):t_jp.apertium&&(t_jp.olang==="en"||t_jp.olang==="es")?B(a,b):t_jp.tgp?b[0]&&z(a[0],b[0]):q(a,b,!1)}function s(){var c=[],b=0,d=[],e=[];t_jp.tgp&&(t=0);a("."+f+'[data-source=""]').each(function(){var f=a(this).attr("data-token"),g=a(this).attr("data-orig");g===void 0&&(g=a(this).html());c[g]!==1&&(c[g]=1,b+g.length>t&&(r(e,d),b=0,d=[],e=[]),b+=g.length,e.push(f),d.push(g))});r(e,d)}var t=128,j,f=t_jp.prefix,l=f+"pbar",k=l+"_s",n=1,p=0,o,h=[],m=[];t_jp.MSN_APPID=
|
17 |
+
"FACA8E2DF8DCCECE0DC311C6E57DA98EFEFA9BC6";t_jp.jQueryUI="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.14/";a(document).ready(function(){if(t_jp.msn)if(t_jp.binglang=t_jp.lang,t_jp.binglang==="zh")t_jp.binglang="zh-chs";else if(t_jp.binglang==="zh-tw")t_jp.binglang="zh-cht";a("#"+f+"setdeflang").click(function(){a.get(t_jp.post_url+"?tr_cookie="+Math.random());a(this).hide("slow");return!1});j=a("."+f+'[data-source=""]').size();a.ajaxSetup({cache:!0});if(j&&!t_jp.noauto&&(t_jp.google||t_jp.msn||
|
18 |
+
t_jp.apertium||t_jp.tgp))if(t_jp.progress){var c=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("#"+f+"credit").css({overflow:"auto"}).append('<div style="float: left;width: 90%;height: 10px" id="'+l+'"/><div style="margin-bottom:10px;float:left;width: 90%;height: 10px" id="'+k+'"/>');a("#"+l).progressbar({value:0});a("#"+k).progressbar({value:0});a("#"+k+" > div").css({background:"#28F828",border:"#08A908 1px solid"});
|
19 |
+
s()}})};typeof a.xLazyLoader==="function"?c():a.getScript(t_jp.plugin_url+"/js/lazy.js",c)}else s();t_jp.edit&&a.getScript(t_jp.plugin_url+"/js/transposhedit.js")})})(jQuery);
|
@@ -1,18 +1,18 @@
|
|
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(
|
12 |
-
function ajax_translate_me(
|
13 |
-
url:t_jp.post_url,data:
|
14 |
-
function do_mass_ms_invoker(
|
15 |
-
function do_mass_google_invoker_l(
|
16 |
-
function translate_post(
|
17 |
-
jQuery("#progress_bar").progressbar({value:0});if(t_jp.preferred==="2")for(
|
18 |
-
|
1 |
/*
|
2 |
+
* Transposh v0.7.6
|
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: Tue, 02 Aug 2011 03:11:42 +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(b,a){curr_pair+=1;jQuery("#progress_bar").progressbar("value",curr_pair/pair_count*100);jQuery("#p").text("("+a+") "+b);curr_pair===pair_count&&jQuery("#tr_loading").data("done",!0)}
|
12 |
+
function ajax_translate_me(b,a,d,e){a=jQuery("<div>"+jQuery.trim(a)+"</div>").text();make_progress(a,d);clearTimeout(timer);items+=1;tokens.push(b);translations.push(a);langs.push(d);sources.push(e);timer=setTimeout(function(){var a={translation_posted:"2",items:items},c;for(c=0;c<items;c+=1)tokens[c]!==tokens[c-1]&&(a["tk"+c]=tokens[c]),langs[c]!==langs[c-1]&&(a["ln"+c]=langs[c]),translations[c]!==translations[c-1]&&(a["tr"+c]=translations[c]),sources[c]!==sources[c-1]&&(a["sr"+c]=sources[c]);jQuery.ajax({type:"POST",
|
13 |
+
url:t_jp.post_url,data:a,success:function(){},error:function(){}});items=0;translations=[];tokens=[];langs=[];sources=[]},200)}function do_mass_ms_translate(b,a){var d="[";jQuery(b).each(function(a){d+='"'+encodeURIComponent(b[a])+'",'});d=d.slice(0,-1)+"]";jQuery.ajax({url:"http://api.microsofttranslator.com/V2/Ajax.svc/TranslateArray?appId="+t_jp.MSN_APPID+"&to="+t_jp.binglang+"&texts="+d,dataType:"jsonp",jsonp:"oncomplete",success:a})}
|
14 |
+
function do_mass_ms_invoker(b,a,d){t_jp.binglang=d;if(t_jp.binglang==="zh")t_jp.binglang="zh-chs";else if(t_jp.binglang==="zh-tw")t_jp.binglang="zh-cht";do_mass_ms_translate(a,function(a){jQuery(a).each(function(a){ajax_translate_me(b[a],this.TranslatedText,d,2)})})}function do_mass_google_translate_l(b,a,d){var e="",h;for(h in a)e+="&langpair=%7C"+a[h];jQuery.ajax({url:"http://ajax.googleapis.com/ajax/services/language/translate?v=1.0&q="+encodeURIComponent(b)+e,dataType:"jsonp",success:d})}
|
15 |
+
function do_mass_google_invoker_l(b,a,d){do_mass_google_translate_l(a,d,function(a){a.responseStatus===200&&(a.responseData.translatedText!==void 0?ajax_translate_me(b,a.responseData.translatedText,d[0],1):jQuery(a.responseData).each(function(a){this.responseStatus===200&&ajax_translate_me(b,this.responseData.translatedText,d[a],1)}))})}
|
16 |
+
function translate_post(b){var a="",d=[],e=[],h,c,f,g,l=0,i=[],j=[],k;jQuery("#tr_loading").data("done",!1);jQuery.getJSON(t_jp.post_url+"?tr_phrases_post=y&post="+b+"&random="+Math.random(),function(b){jQuery("#tr_translate_title").html("Translating post: "+b.posttitle);if(b.length===void 0)jQuery("#tr_loading").html("Nothing left to translate"),jQuery("#tr_loading").data("done",!0);else{curr_pair=pair_count=0;for(f in b.p)pair_count+=b.p[f].l.length;jQuery("#tr_loading").html('<br/>Translation: <span id="p"></span><div id="progress_bar"/>');
|
17 |
+
jQuery("#progress_bar").progressbar({value:0});if(t_jp.preferred==="2")for(h in t_jp.m_langs){a=t_jp.m_langs[h];e=[];d=[];for(f in b.p)g=b.p[f],g.l.indexOf(a)!==-1&&(e.push(unescape(f)),d.push(g.t),g.l.splice(g.l.indexOf(a),1),g.l.length===0&&(b.length-=1,delete b.p[f]));if(e.length){for(c in e)k=e[c],l+k.length>BATCH_SIZE&&(do_mass_ms_invoker(j,i,a),l=0,i=[],j=[]),l+=k.length,j.push(d[c]),i.push(k);do_mass_ms_invoker(j,i,a)}}for(f in b.p)g=b.p[f],do_mass_google_invoker_l(g.t,unescape(f),g.l)}})}
|
18 |
+
jQuery(document).ready(function(){t_jp.post&&translate_post(t_jp.post)});
|
@@ -1,21 +1,21 @@
|
|
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(){
|
12 |
-
jQuery("#sortable").disableSelection();jQuery("#changename").click(function(){jQuery(".langname").toggleClass("hidden");return
|
13 |
-
|
14 |
-
drop:function(b,a){jQuery("#default_list").empty();jQuery(a.draggable.clone().removeAttr("style").removeClass("active").removeClass("translateable")).appendTo("#default_list").show("slow");jQuery("#default_list .logoicon").remove();jQuery("#sortable").find("#"+a.draggable.attr("id")).addClass("active")}});jQuery("#sortiso").click(function(){jQuery("#sortable li").sort(function(b,a){
|
15 |
-
|
16 |
-
|
17 |
-
return
|
18 |
-
jQuery(this));return
|
19 |
-
return
|
20 |
-
|
21 |
-
jQuery("#transposh-translate").
|
1 |
/*
|
2 |
+
* Transposh v0.7.6
|
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: Tue, 02 Aug 2011 03:11:42 +0300
|
10 |
*/
|
11 |
+
jQuery(function(){jQuery("#tr_anon").click(function(){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(a){a.stopImmediatePropagation();jQuery(this).click(clickfunction)})}});
|
12 |
+
jQuery("#sortable").disableSelection();jQuery("#changename").click(function(){jQuery(".langname").toggleClass("hidden");return!1});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!1});clickfunction=function(){jQuery(this).attr("id")!=jQuery("#default_list li").attr("id")&&(jQuery("#tr_anon").attr("checked")?jQuery(this).toggleClass("active"):
|
13 |
+
jQuery(this).hasClass("active")?(jQuery(this).removeClass("active"),jQuery(this).addClass("translateable")):jQuery(this).hasClass("translateable")?jQuery(this).removeClass("translateable"):jQuery(this).addClass("active"),jQuery("input",this).val(jQuery(this).attr("id")+(jQuery(this).hasClass("active")?",v":",")+(jQuery(this).hasClass("translateable")?",t":",")))};jQuery(".languages").dblclick(clickfunction).click(clickfunction);jQuery("#default_lang").droppable({accept:".languages",activeClass:"highlight_default",
|
14 |
+
drop:function(b,a){jQuery("#default_list").empty();jQuery(a.draggable.clone().removeAttr("style").removeClass("active").removeClass("translateable")).appendTo("#default_list").show("slow");jQuery("#default_list .logoicon").remove();jQuery("#sortable").find("#"+a.draggable.attr("id")).addClass("active")}});jQuery("#sortiso").click(function(){jQuery("#sortable li").sort(function(b,a){return jQuery(b).attr("id")==jQuery("#default_list li").attr("id")?-1:jQuery(a).attr("id")==jQuery("#default_list li").attr("id")?
|
15 |
+
1:jQuery(b).attr("id")>jQuery(a).attr("id")?1:-1}).remove().appendTo("#sortable").dblclick(clickfunction).click(clickfunction);return!1});jQuery("#sortname").click(function(){jQuery("#sortable li").sort(function(b,a){langa=jQuery(".langname",b).filter(function(){return!jQuery(this).hasClass("hidden")}).text();langb=jQuery(".langname",a).filter(function(){return!jQuery(this).hasClass("hidden")}).text();langdef=jQuery(".langname","#default_list li").filter(function(){return!jQuery(this).hasClass("hidden")}).text();
|
16 |
+
return langa==langdef?-1:langb==langdef?1:langa>langb?1:-1}).remove().appendTo("#sortable").dblclick(clickfunction).click(clickfunction);return!1});jQuery.ajaxSetup({cache:!1});backupclick=function(){jQuery("#transposh-backup").unbind("click").click(function(){return!1}).text("Backup In Progress");jQuery.get(t_jp.post_url+"?backup",function(b){var a="red";b[0]=="2"&&(a="green");jQuery("#backup_result").html(b).css("color",a);jQuery("#transposh-backup").unbind("click").click(backupclick).text("Do Backup Now")});
|
17 |
+
return!1};jQuery("#transposh-backup").click(backupclick);cleanautoclick=function(b,a){if(!confirm("Are you sure you want to do this?"))return!1;if(b==0&&!confirm("Are you REALLY sure you want to do this?"))return!1;var c=a.text();a.unbind("click").click(function(){return!1}).text("Cleanup in progress");jQuery.get(t_jp.post_url+"?nonce="+a.attr("nonce")+"&days="+b+"&cleanup",function(){a.unbind("click").click(function(){cleanautoclick(b,a);return!1}).text(c)});return!1};jQuery("#transposh-clean-auto").click(function(){cleanautoclick(0,
|
18 |
+
jQuery(this));return!1});jQuery("#transposh-clean-auto14").click(function(){cleanautoclick(14,jQuery(this));return!1});maintclick=function(b){if(!confirm("Are you sure you want to do this?"))return!1;var a=b.text();b.unbind("click").click(function(){return!1}).text("Maintenance in progress");jQuery.get(t_jp.post_url+"?nonce="+b.attr("nonce")+"&maint",function(){b.unbind("click").click(function(){maintclick(b);return!1}).text(a)});return!1};jQuery("#transposh-maint").click(function(){maintclick(jQuery(this));
|
19 |
+
return!1});do_translate_all=function(){jQuery("#progress_bar_all").progressbar({value:0});stop_translate_var=!1;jQuery("#tr_loading").data("done",!0);jQuery.ajaxSetup({cache:!1});jQuery.getJSON(t_jp.post_url,{translate_all:"y"},function(b){dotimer=function(a){clearTimeout(timer2);jQuery("#tr_loading").data("done")||jQuery("#tr_loading").data("attempt")>4?(jQuery("#progress_bar_all").progressbar("value",(a+1)/b.length*100),jQuery("#tr_loading").data("attempt",0),translate_post(b[a]),b[a]&&!stop_translate_var&&
|
20 |
+
(timer2=setTimeout(function(){dotimer(a+1)},1E3))):(jQuery("#tr_loading").data("attempt",jQuery("#tr_loading").data("attempt")+1),timer2=setTimeout(function(){dotimer(a)},6E4))};timer2=setTimeout(function(){dotimer(0)},0)});jQuery("#transposh-translate").text("Stop translate");jQuery("#transposh-translate").unbind("click").click(stop_translate);return!1};stop_translate=function(){clearTimeout(timer2);stop_translate_var=!0;jQuery("#transposh-translate").text("Translate All Now");jQuery("#transposh-translate").unbind("click").click(do_translate_all);
|
21 |
+
return!1};jQuery("#transposh-translate").click(do_translate_all);jQuery(".warning-close").click(function(){jQuery(this).parent().hide();jQuery.post(ajaxurl,{action:"closed_tpwarn",id:jQuery(this).parent().attr("id")})})});
|
@@ -1,38 +1,38 @@
|
|
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(
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
"/
|
31 |
-
|
32 |
-
a(b+c).attr("data-source")==="0"&&a(b+"approve").button("disable")
|
33 |
-
"
|
34 |
-
|
35 |
-
|
36 |
-
|
37 |
-
|
38 |
-
|
1 |
/*
|
2 |
+
* Transposh v0.7.6
|
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: Tue, 02 Aug 2011 03:11:42 +0300
|
10 |
*/
|
11 |
+
(function(a){function f(a){var b;return typeof t_jp.l==="object"&&(b=t_jp.l[a])?b:a}function p(c,e,d){a.trim(e).length===0&&(e=a("[data-token='"+c+"']").attr("data-orig"));var f=function(){var c=a(this).attr("id").substr(a(this).attr("id").lastIndexOf("_")+1),e=a(b+"img_"+c);a(b+c).attr("data-source",d);e.removeClass("tr-icon-yellow").removeClass("tr-icon-green");d==0?e.addClass("tr-icon-green"):d&&e.addClass("tr-icon-yellow")};a("*[data-token='"+c+"'][data-hidden!='y']").html(e).each(f);a("*[data-token='"+
|
12 |
+
c+"'][data-hidden='y']").attr("data-trans",e).each(f);a(b+"translation").data("origval",e);a(b+"translation").keyup()}function m(b,e){p(b,e,0);a.ajax({type:"POST",url:t_jp.post_url,data:{ln0:t_jp.lang,sr0:0,translation_posted:"2",items:1,tk0:b,tr0:e},error:function(a){alert("Error !!! failed to translate.\n\nServer's message: "+a.statusText)}})}function u(b,e){a.ajax({url:"http://ajax.googleapis.com/ajax/services/language/translate?v=1.0&q="+encodeURIComponent(b)+"&langpair=%7C"+t_jp.lang,dataType:"jsonp",
|
13 |
+
success:e})}function v(){u(a(b+"original").val(),function(c){c.responseStatus===200&&a(b+"translation").val(a("<div>"+a.trim(c.responseData.translatedText)+"</div>").text()).keyup()})}function w(b,e){a.ajax({url:"http://api.microsofttranslator.com/V2/Ajax.svc/Translate?appId="+t_jp.MSN_APPID+"&to="+t_jp.binglang+"&text="+encodeURIComponent(b),dataType:"jsonp",jsonp:"oncomplete",success:e})}function x(){w(a(b+"original").val(),function(c){a(b+"translation").val(a("<div>"+a.trim(c)+"</div>").text()).keyup()})}
|
14 |
+
function y(b,e){a.ajax({url:"http://api.apertium.org/json/translate?q="+encodeURIComponent(b)+"&langpair=en%7C"+t_jp.lang,dataType:"jsonp",success:e})}function z(){y(a(b+"original").val(),function(c){a(b+"translation").val(a("<div>"+a.trim(c.responseData.translatedText)+"</div>").text()).keyup()})}function n(b){var e,d,f;e=a(b).dialog("widget").find(".ui-dialog-title");d=e.css("margin-right");f=e.css("margin-left");e.css({"float":i,"margin-right":f,"margin-left":d});b=a(b).dialog("widget").find(".ui-dialog-titlebar-close");
|
15 |
+
d=b.css("right");f=b.css("left");b.css({right:f,left:d})}function A(){var c=b+"confirmdialog";a(c).remove();a('<div id="'+d+'confirmdialog" title="'+f("Close without saving?")+'"><span class="ui-icon ui-icon-alert" style="float:'+i+"; margin-bottom:20px; margin-"+j+':7px"></span><span style="clear:both">'+f("You have made a change to the translation. Are you sure you want to discard it?")+'<span><span id="'+d+'dcbar" style="display:block"><button id="'+d+'cancel">'+f("Cancel")+'</button><button id="'+
|
16 |
+
d+'discard">'+f("Discard")+"</button></span>NaN").appendTo("body").dialog({resizable:!1,modal:!0,minHeight:50,overlay:{backgroundColor:"#000",opacity:0.5}});a(b+"cancel").button({icons:{primary:"ui-icon-closethick"},text:!1}).click(function(){a(c).dialog("close")});a(b+"discard").button({icons:{primary:"ui-icon-check"},text:!1}).click(function(){a(b+"translation").data("changed",!1);a(c).dialog("close");a(b+"dialog").dialog("close")});a(b+"dcbar").css({"float":j}).buttonset();a("html").attr("dir")===
|
17 |
+
"rtl"&&(n(c),a(b+"dcbar button:first").addClass("ui-corner-"+i).removeClass("ui-corner-"+j),a(b+"dcbar button:last").addClass("ui-corner-"+j).removeClass("ui-corner-"+i))}function B(c){var e=b+"historydialog";a(e).remove();a('<div id="'+d+'historydialog" title="'+f("History")+'">'+f("Loading...")+"</div>").appendTo("body");a(e).css("padding",0).dialog({width:"450px",show:"slide"});a("html").attr("dir")==="rtl"&&n(e);a.ajax({url:t_jp.post_url,data:{tr_token_hist:a(b+c).attr("data-token"),lang:t_jp.lang},
|
18 |
+
dataType:"json",cache:!1,success:function(l){var h,g,q,r;a(e).empty().append('<table width="100%"><col style="width: 80%;"><col><col><thead><tr> <th>'+f("Translated")+"</th><th>"+f("By")+"</th><th>"+f("At")+"</th></tr></thead><tbody></tbody></table>");a.each(l,function(b,c){switch(c.source){case "1":h="tr-icon-google";g=f("google");break;case "2":h="tr-icon-bing";g=f("bing");break;case "3":h="tr-icon-apertium";g=f("apertium");break;default:h="ui-icon-person",g=f("manual translation")}if(c.user_login===
|
19 |
+
null)c.user_login=c.translated_by;q='<span class="ui-button ui-widget ui-button-icon-only" style="width: 18px; border: 0px; margin-'+j+': 3px"><span title="'+g+'" style="cursor: default" class="ui-button-icon-primary ui-icon '+h+'"></span><span class="ui-button-text" style="display: inline-block; "></span></span>';r=c.can_delete?'<span class="'+d+'delete" title="'+f("delete")+'" style="width: 18px; margin-'+i+': 3px">':"";a(e+" tbody").append("<tr><td>"+c.translated+'</td><td id="'+d+'histby">'+q+
|
20 |
+
c.user_login+'</td><td id="'+d+'histstamp">'+c.timestamp+r+"</td></tr>")});a(b+"histby,"+b+"histstamp").css("white-space","nowrap");a(e+" th").addClass("ui-widget-header").css("padding","3px");a(e+" td").addClass("ui-widget-content").css("padding","3px");a("."+d+"delete").button({icons:{primary:"ui-icon-circle-close"},text:!1}).click(function(){var d=a(this).parents("tr");a.ajax({url:t_jp.post_url,data:{tr_token_hist:a(b+c).attr("data-token"),timestamp:a(this).parents("tr").children(":last").text(),
|
21 |
+
action:"delete",lang:t_jp.lang},dataType:"json",cache:!1,success:function(e){e===!1?a(d).children().addClass("ui-state-error"):(a(d).empty(),p(a(b+c).attr("data-token"),e.translated,e.source))}})});a("."+d+"delete .ui-button-text").css("display","inline-block")}})}function o(c){a(b+"original").val(a(b+c).attr("data-orig"));a(b+"translation").val(a(b+c).html());a(b+c).attr("data-trans")&&a(b+"translation").val(a(b+c).attr("data-trans"));a(b+"translation").data("origval",a(b+"translation").val());a(b+
|
22 |
+
"approve").button("enable");a(b+"prev").button("enable");a(b+"next").button("enable");a(b+(Number(c)-1)).length||a(b+"prev").button("disable");a(b+(Number(c)+1)).length||a(b+"next").button("disable");c=a(b+c).attr("data-srclang");if(c===void 0)c=t_jp.olang;a(b+"orglang").text(l[c]);a(b+"historydialog").remove();a(b+"translation").keyup()}function k(c){var e="",k="",h="",g=b+"dialog";t_jp.msn&&(e='<button class="'+d+'suggest" id="'+d+'bing">'+f("bing suggest")+"</button>");t_jp.google&&(k='<button class="'+
|
23 |
+
d+'suggest" id="'+d+'google">'+f("google suggest")+"</button>");t_jp.apertium&&(h='<button class="'+d+'suggest" id="'+d+'apertium">'+f("apertium suggest")+"</button>");a(g).remove();a('<div id="'+d+'dialog" title="'+f("Edit Translation")+'"/>').appendTo("body");a(g).css("padding","1px").append('<div style="width: 100%"><label for="original">'+f("Original text")+' (<a href="#" title="'+f("read alternate translations")+'" id="'+d+'orglang"></a>)</label><textarea cols="80" row="3" name="original" id="'+
|
24 |
+
d+'original" readonly="y"/><span id="'+d+'utlbar"><button id="'+d+'prev">'+f("previous translation")+'</button><button id="'+d+'zoom">'+f("find on page")+'</button><button id="'+d+'next">'+f("next translation")+'</button></span><label for="translation">'+f("Translate to")+'</label><textarea cols="80" row="3" name="translation" lang="'+t_jp.lang+'"id="'+d+'translation"/><span id="'+d+'ltlbar"><button id="'+d+'history">'+f("view translation log")+'</button><button id="'+d+'keyboard">'+f("virtual keyboard")+
|
25 |
+
"</button>"+k+e+h+'<button id="'+d+'approve">'+f("approve translation")+"</button></span></div>");a(b+"utlbar,"+b+"ltlbar").css({"float":j}).buttonset();a(g+" textarea").css({width:"483px",padding:".4em",margin:"2px 0 0 0",resize:"vertical"}).addClass("text ui-widget-content ui-corner-all");a(g+" label").css({display:"block",clear:"both"});a(b+"orglang").click(function(){a(b+"langmenu").length?a(b+"langmenu").toggle():a.xLazyLoader({js:[t_jp.plugin_url+"/js/jquery.ui.menu.js"],success:function(){a.ajax({url:t_jp.post_url,
|
26 |
+
data:{tr_token_alt:a(b+c).attr("data-token")},dataType:"json",cache:!1,success:function(e){var f;if(!(f=a(b+c).attr("data-srclang")))f=t_jp.olang;var h='<li data-translated="'+a(b+c).attr("data-orig")+'"><a href="#">'+l[f]+"</a></li>";a(e).each(function(a,b){b.lang!==t_jp.lang&&(h=h+'<li data-translated="'+b.translated+'"><a href="#">'+l[b.lang]+"</a></li>")});a('<ul style="position: absolute; top: 0px" id="'+d+'langmenu">'+h).appendTo(g);a(b+"langmenu").menu({select:function(c,d){a(this).hide();
|
27 |
+
a(b+"original").val(d.item.attr("data-translated"));a(b+"orglang").text(d.item.text()).addClass("ui-state-highlight");l[f]===d.item.text()&&a(b+"orglang").removeClass("ui-state-highlight")},input:a(this)}).show().css({top:0,left:0}).position({my:i+" top",at:i+" bottom",of:a(b+"orglang")})}})}});return!1});a(b+"prev").button({icons:{primary:"ui-icon-seek-"+s},text:!1});a(b+"zoom").button({icons:{primary:"ui-icon-search"},text:!1});a(b+"next").button({icons:{primary:"ui-icon-seek-"+t},text:!1});a(b+
|
28 |
+
"prev").click(function(){if(a(b+"translation").data("changed")){var d=a(b+"translation").val(),e=a(b+c).attr("data-token");m(e,d)}c=Number(c)-1;o(c)});a(b+"next").click(function(){if(a(b+"translation").data("changed")){var d=a(b+"translation").val(),e=a(b+c).attr("data-token");m(e,d)}c=Number(c)+1;o(c)});a(b+"zoom").click(function(){a("html, body").animate({scrollTop:a(b+c).offset().top},500);a(g).dialog("widget").css({top:a(g).dialog("widget").offset().top-window.scrollY,position:"fixed"});a(b+c).animate({opacity:0.1},
|
29 |
+
"slow",function(){a(g).dialog("widget").css({top:a(g).dialog("widget").offset().top,position:"absolute"})}).animate({opacity:1},"slow").animate({opacity:0.1},"slow").animate({opacity:1},"slow").animate({opacity:0.1},"slow").animate({opacity:1},"slow")});a(b+"history").button({icons:{primary:"ui-icon-clipboard"},text:!1}).click(function(){B(c)});a(b+"keyboard").button({icons:{primary:"ui-icon-calculator"},text:!1}).click(function(){a.xLazyLoader({js:[t_jp.plugin_url+"/js/keyboard.js"],css:[t_jp.plugin_url+
|
30 |
+
"/css/keyboard.css"],success:function(){VKI_attach(a(b+"translation").get(0));VKI_show(a(b+"translation").get(0))}})});a(b+"google").button({icons:{primary:"tr-icon-google"},text:!1}).click(function(){v();a("."+d+"suggest").button("enable");a(this).button("disable")});a(b+"bing").button({icons:{primary:"tr-icon-bing"},text:!1}).click(function(){x();a("."+d+"suggest").button("enable");a(this).button("disable")});a(b+"apertium").button({icons:{primary:"tr-icon-apertium"},text:!1}).click(function(){z();
|
31 |
+
a("."+d+"suggest").button("enable");a(this).button("disable")});a(b+"approve").button({icons:{primary:"ui-icon-check"},text:!1}).click(function(){var d=a(b+"translation").val(),e=a(b+c).attr("data-token");(a(b+"translation").data("changed")||a(b+c).attr("data-source")!=="0")&&m(e,d)});a(b+"translation").keyup(function(){a(this).data("origval")!==a(this).val()?(a(this).addClass("ui-state-highlight"),a(b+"approve").button("enable"),a(this).data("changed",!0)):(a(this).removeClass("ui-state-highlight"),
|
32 |
+
a(b+c).attr("data-source")==="0"&&a(b+"approve").button("disable"),a(this).data("changed",!1))});o(c);a(g).dialog({resizable:!1,width:500});a("html").attr("dir")==="rtl"&&n(g);a(b+"orglang").blur();a(g).bind("dialogclose",function(){typeof VKI_close==="function"&&VKI_close(a(b+"translation").get(0));a(b+"historydialog").remove()});a(g).bind("dialogbeforeclose",function(){return a(b+"translation").data("changed")?(A(),!1):!0})}var l={en:"English",af:"Afrikaans",sq:"Shqip",ar:"\u0627\u0644\u0639\u0631\u0628\u064a\u0629",
|
33 |
+
hy:"\u0540\u0561\u0575\u0565\u0580\u0565\u0576",az:"az\u0259rbaycan dili",eu:"Euskara",be:"\u0411\u0435\u043b\u0430\u0440\u0443\u0441\u043a\u0430\u044f",bg:"\u0411\u044a\u043b\u0433\u0430\u0440\u0441\u043a\u0438",ca:"Catal\u00e0",zh:"\u4e2d\u6587 - \u7b80\u4f53","zh-tw":"\u4e2d\u6587 - \u6f22\u5b57",hr:"Hrvatski",cs:"\u010ce\u0161tina",da:"Dansk",nl:"Nederlands",eo:"Esperanto",et:"Eesti keel",fi:"Suomi",fr:"Fran\u00e7ais",gl:"Galego",ka:"\u10e5\u10d0\u10e0\u10d7\u10e3\u10da\u10d8",de:"Deutsch",el:"\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac",
|
34 |
+
ht:"Krey\u00f2l ayisyen",he:"\u05e2\u05d1\u05e8\u05d9\u05ea",hi:"\u0939\u093f\u0928\u094d\u0926\u0940; \u0939\u093f\u0902\u0926\u0940",hu:"Magyar",is:"\u00cdslenska",id:"Bahasa Indonesia",ga:"Gaeilge",it:"Italiano",ja:"\u65e5\u672c\u8a9e",ko:"\uc6b0\ub9ac\ub9d0",la:"lat\u012bna",lv:"Latvie\u0161u valoda",lt:"Lietuvi\u0173 kalba",mk:"\u043c\u0430\u043a\u0435\u0434\u043e\u043d\u0441\u043a\u0438 \u0458\u0430\u0437\u0438\u043a",ms:"Bahasa Melayu",mt:"Malti",no:"Norsk",fa:"\u0641\u0627\u0631\u0633\u06cc",
|
35 |
+
pl:"Polski",pt:"Portugu\u00eas",ro:"Rom\u00e2n\u0103",ru:"\u0420\u0443\u0441\u0441\u043a\u0438\u0439",sr:"C\u0440\u043f\u0441\u043a\u0438 \u0458\u0435\u0437\u0438\u043a",sk:"Sloven\u010dina",sl:"Sloven\u0161\u010dina",es:"Espa\u00f1ol",sw:"Kiswahili",sv:"svenska",tl:"Tagalog",th:"\u0e20\u0e32\u0e29\u0e32\u0e44\u0e17\u0e22",tr:"T\u00fcrk\u00e7e",uk:"\u0423\u043a\u0440\u0430\u0457\u043d\u0441\u044c\u043a\u0430",ur:"\u0627\u0631\u062f\u0648",vi:"Ti\u1ebfng Vi\u1ec7t",cy:"Cymraeg",yi:"\u05d9\u05d9\u05b4\u05d3\u05d9\u05e9"},
|
36 |
+
d=t_jp.prefix,b="#"+d,s="prev",t="next",j="right",i="left";a("html").attr("dir")==="rtl"&&(j="left",i="right",s="next",t="prev");a("."+d).each(function(){var c=a(this).attr("id").substr(a(this).attr("id").lastIndexOf("_")+1),e;a(this).after('<span id="'+d+"img_"+c+'" class="tr-icon" title="'+a(this).attr("data-orig")+'"></span>');e=a(b+"img_"+c);e.click(function(){typeof a.fn.tabs!=="function"||typeof a.fn.buttonset!=="function"||typeof a.fn.dialog!=="function"?(a.ajaxSetup({cache:!0}),a.getScript(t_jp.plugin_url+
|
37 |
+
"/js/lazy.js",function(){a.xLazyLoader({js:t_jp.jQueryUI+"jquery-ui.min.js",css:t_jp.jQueryUI+"themes/"+t_jp.theme+"/jquery-ui.css",success:function(){t_jp.locale?a.xLazyLoader({js:[t_jp.plugin_url+"/js/l/"+t_jp.lang+".js"],success:function(){k(c)}}):k(c)}})})):t_jp.locale?a.xLazyLoader({js:[t_jp.plugin_url+"/js/l/"+t_jp.lang+".js"],success:function(){k(c)}}):k(c);return!1}).css({border:"0px",margin:"1px",padding:"0px"});a(this).attr("data-source")==="0"?e.addClass("tr-icon-green"):a(this).attr("data-source")&&
|
38 |
+
e.addClass("tr-icon-yellow");a(this).attr("data-hidden")==="y"&&e.css({opacity:"0.6"})})})(jQuery);
|
Binary file
|
@@ -3,7 +3,7 @@ msgstr ""
|
|
3 |
"Project-Id-Version: Persian transposh\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2011-02-07 03:02+0330\n"
|
6 |
-
"PO-Revision-Date: 2011-
|
7 |
"Last-Translator: Sushyant Zavarzadeh <sushyant@zavarzadeh.org>\n"
|
8 |
"Language-Team: S & S Group www.zavarzadeh.org <sushyant@zavarzadeh.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
@@ -19,39 +19,39 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: C:/Documents and Settings/zavarzadeh/Desktop/transposh-translation-filter-for-wordpress\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: transposh.php:
|
23 |
#@ default
|
24 |
msgid "Settings"
|
25 |
msgstr "گزینه ها"
|
26 |
|
27 |
-
#: wp/transposh_3rdparty.php:
|
28 |
#, php-format
|
29 |
#@ buddypress
|
30 |
msgid "%s translated a phrase to %s with transposh:"
|
31 |
-
msgstr "
|
32 |
|
33 |
-
#: wp/transposh_admin.php:
|
34 |
#@ transposh
|
35 |
msgid "Transposh makes your blog translatable"
|
36 |
-
msgstr "ترنسپاش تارنمای شما را ترجمه
|
37 |
|
38 |
-
#: wp/transposh_admin.php:
|
39 |
#@ transposh
|
40 |
msgid "Plugin homepage"
|
41 |
-
msgstr "
|
42 |
|
43 |
-
#: wp/transposh_admin.php:
|
44 |
#@ transposh
|
45 |
msgid "Frequently asked questions"
|
46 |
msgstr "پرسش و پاسخ"
|
47 |
|
48 |
-
#: wp/transposh_admin.php:
|
49 |
#@ transposh
|
50 |
msgid "Transposh control center"
|
51 |
-
msgstr "
|
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,326 +61,326 @@ msgstr "مرکز کنترل ترنسپاش"
|
|
61 |
msgid "Transposh"
|
62 |
msgstr "ترنسپاش"
|
63 |
|
64 |
-
#: wp/transposh_admin.php:
|
65 |
#@ transposh
|
66 |
msgid "About this plugin"
|
67 |
-
msgstr "
|
68 |
|
69 |
-
#: wp/transposh_admin.php:
|
70 |
#@ transposh
|
71 |
msgid "Widget settings"
|
72 |
-
msgstr "
|
73 |
|
74 |
-
#: wp/transposh_admin.php:
|
75 |
#@ transposh
|
76 |
msgid "Plugin news"
|
77 |
-
msgstr "
|
78 |
|
79 |
-
#: wp/transposh_admin.php:
|
80 |
#@ transposh
|
81 |
msgid "Plugin stats"
|
82 |
msgstr "آمار افزونه"
|
83 |
|
84 |
-
#: wp/transposh_admin.php:
|
85 |
#@ transposh
|
86 |
msgid "Translate all"
|
87 |
-
msgstr "
|
88 |
|
89 |
-
#: wp/transposh_admin.php:
|
90 |
#@ transposh
|
91 |
msgid "Supported languages"
|
92 |
-
msgstr "
|
93 |
|
94 |
-
#: wp/transposh_admin.php:
|
95 |
#@ transposh
|
96 |
msgid "Translation settings"
|
97 |
-
msgstr "
|
98 |
|
99 |
-
#: wp/transposh_admin.php:
|
100 |
#@ transposh
|
101 |
msgid "Automatic translation settings"
|
102 |
-
msgstr "
|
103 |
|
104 |
-
#: wp/transposh_admin.php:
|
105 |
#@ transposh
|
106 |
msgid "Generic settings"
|
107 |
-
msgstr "
|
108 |
|
109 |
-
#: wp/transposh_admin.php:
|
110 |
#@ transposh
|
111 |
msgid "Database maintenance"
|
112 |
-
msgstr "درست کردن (تعمیر) و
|
113 |
|
114 |
-
#: wp/transposh_admin.php:
|
115 |
#@ transposh
|
116 |
msgid "Transposh community features"
|
117 |
-
msgstr "ویژگی های
|
118 |
|
119 |
-
#: wp/transposh_admin.php:
|
120 |
#@ default
|
121 |
msgid "Save Changes"
|
122 |
-
msgstr "
|
123 |
|
124 |
-
#: wp/transposh_admin.php:
|
125 |
#@ transposh
|
126 |
msgid "Problems?"
|
127 |
msgstr "مشکل؟"
|
128 |
|
129 |
-
#: wp/transposh_admin.php:
|
130 |
#@ transposh
|
131 |
msgid "Plugin Homepage"
|
132 |
-
msgstr "
|
133 |
|
134 |
-
#: wp/transposh_admin.php:
|
135 |
#@ transposh
|
136 |
msgid "Suggest a Feature"
|
137 |
msgstr "پیشنهاد یک ویژگی"
|
138 |
|
139 |
-
#: wp/transposh_admin.php:
|
140 |
#@ transposh
|
141 |
msgid "Report a Bug"
|
142 |
msgstr "گزارش یک نادرستی (خطا)"
|
143 |
|
144 |
-
#: wp/transposh_admin.php:
|
145 |
#@ transposh
|
146 |
msgid "Translate by clicking the button below"
|
147 |
-
msgstr "ترجمه کردن با فشردن
|
148 |
|
149 |
-
#: wp/transposh_admin.php:
|
150 |
#@ transposh
|
151 |
msgid "Translate All Now"
|
152 |
-
msgstr "
|
153 |
|
154 |
-
#: wp/transposh_admin.php:
|
155 |
#@ transposh
|
156 |
msgid "Default Language (drag another language here to make it default)"
|
157 |
-
msgstr "زبان
|
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 "
|
163 |
|
164 |
-
#: wp/transposh_admin.php:
|
165 |
#@ transposh
|
166 |
msgid "Display options:"
|
167 |
-
msgstr "
|
168 |
|
169 |
-
#: wp/transposh_admin.php:
|
170 |
#@ transposh
|
171 |
msgid "Toggle names of languages between English and Original"
|
172 |
-
msgstr "دگرگونی نام
|
173 |
|
174 |
-
#: wp/transposh_admin.php:
|
175 |
#@ transposh
|
176 |
msgid "Make all languages active"
|
177 |
-
msgstr "به
|
178 |
|
179 |
-
#: wp/transposh_admin.php:
|
180 |
#@ transposh
|
181 |
msgid "Sort by language name"
|
182 |
-
msgstr "چینش بر
|
183 |
|
184 |
-
#: wp/transposh_admin.php:
|
185 |
#@ transposh
|
186 |
msgid "Sort by lSO code"
|
187 |
-
msgstr "چینش بر
|
188 |
|
189 |
-
#: wp/transposh_admin.php:
|
190 |
#@ transposh
|
191 |
msgid "Legend:"
|
192 |
-
msgstr "
|
193 |
|
194 |
-
#: wp/transposh_admin.php:
|
195 |
#@ transposh
|
196 |
msgid "Green - active"
|
197 |
msgstr "سبز - کارا (فعال)"
|
198 |
|
199 |
-
#: wp/transposh_admin.php:
|
200 |
#@ transposh
|
201 |
msgid "Yellow - translateable (only translators will see this language)"
|
202 |
-
msgstr "زرد -
|
203 |
|
204 |
-
#: wp/transposh_admin.php:
|
205 |
#@ transposh
|
206 |
msgid "blank - inactive"
|
207 |
-
msgstr "سپید - از کار افتاده (
|
208 |
|
209 |
-
#: wp/transposh_admin.php:
|
210 |
#@ transposh
|
211 |
msgid "Who can translate ?"
|
212 |
-
msgstr "چه کسی
|
213 |
|
214 |
-
#: wp/transposh_admin.php:
|
215 |
#@ transposh
|
216 |
msgid "Anonymous"
|
217 |
-
msgstr "
|
218 |
|
219 |
-
#: wp/transposh_admin.php:
|
220 |
#@ transposh
|
221 |
msgid "Enable default language translation"
|
222 |
-
msgstr "به کار انداختن
|
223 |
|
224 |
-
#: wp/transposh_admin.php:
|
225 |
#@ transposh
|
226 |
msgid "Allow translation of default language - useful for sites with more than one major language"
|
227 |
-
msgstr "اجازهی
|
228 |
|
229 |
-
#: wp/transposh_admin.php:
|
230 |
#@ transposh
|
231 |
msgid "Enable search in translated languages"
|
232 |
-
msgstr "به
|
233 |
|
234 |
-
#: wp/transposh_admin.php:
|
235 |
#@ transposh
|
236 |
msgid "Enable url translation"
|
237 |
msgstr "به کار انداختن نشانی ترجمه"
|
238 |
|
239 |
-
#: wp/transposh_admin.php:
|
240 |
-
#: wp/transposh_admin.php:
|
241 |
#@ transposh
|
242 |
msgid "experimental"
|
243 |
msgstr "آزمایشی"
|
244 |
|
245 |
-
#: wp/transposh_admin.php:
|
246 |
#@ transposh
|
247 |
msgid "Allow translation of permalinks and urls"
|
248 |
-
msgstr "اجازه دادن
|
249 |
|
250 |
-
#: wp/transposh_admin.php:
|
251 |
#@ transposh
|
252 |
msgid "Enable gettext integration"
|
253 |
-
msgstr "به کار انداختن دریافت
|
254 |
|
255 |
-
#: wp/transposh_admin.php:
|
256 |
#@ transposh
|
257 |
msgid "Enable integration of Transposh with existing gettext interface (.po/.mo files)"
|
258 |
msgstr "به کار انداختن آمیختن ترانسپاش با پرونده های (.mo /.po) "
|
259 |
|
260 |
-
#: wp/transposh_admin.php:
|
261 |
#@ transposh
|
262 |
msgid "Enable automatic translation"
|
263 |
-
msgstr "به کار انداختن
|
264 |
|
265 |
-
#: wp/transposh_admin.php:
|
266 |
#@ transposh
|
267 |
msgid "Allow automatic translation of pages"
|
268 |
-
msgstr "اجازه به
|
269 |
|
270 |
-
#: wp/transposh_admin.php:
|
271 |
#@ transposh
|
272 |
msgid "Enable automatic translation after posting"
|
273 |
-
msgstr "به کار انداختن
|
274 |
|
275 |
-
#: wp/transposh_admin.php:
|
276 |
#@ transposh
|
277 |
msgid "Do automatic translation immediately after a post has been published"
|
278 |
-
msgstr "
|
279 |
|
280 |
-
#: wp/transposh_admin.php:
|
281 |
#@ transposh
|
282 |
msgid "Select preferred auto translation engine"
|
283 |
msgstr "موتور ترجمه ی بهتر را برگزینید"
|
284 |
|
285 |
-
#: wp/transposh_admin.php:
|
286 |
#@ transposh
|
287 |
msgid "Translation engine:"
|
288 |
msgstr "موتور ترجمه کننده:"
|
289 |
|
290 |
-
#: wp/transposh_admin.php:
|
291 |
#@ transposh
|
292 |
msgid "Google"
|
293 |
msgstr "گوگل"
|
294 |
|
295 |
-
#: wp/transposh_admin.php:
|
296 |
#@ transposh
|
297 |
msgid "Bing"
|
298 |
msgstr "بینگ"
|
299 |
|
300 |
-
#: wp/transposh_admin.php:
|
301 |
#@ transposh
|
302 |
msgid "Rewrite URLs"
|
303 |
-
msgstr "بازنویسی نشانی"
|
304 |
|
305 |
-
#: wp/transposh_admin.php:
|
306 |
#@ transposh
|
307 |
msgid "Rewrite URLs to be search engine friendly, e.g. (http://transposh.org/<strong>en</strong>). Requires that permalinks will be enabled."
|
308 |
-
msgstr "بازنویسی
|
309 |
|
310 |
-
#: wp/transposh_admin.php:
|
311 |
#@ transposh
|
312 |
msgid "Add scripts to footer"
|
313 |
msgstr "افزودن اسکریپت ها به پانوشت (فوتر)"
|
314 |
|
315 |
-
#: wp/transposh_admin.php:
|
316 |
#@ transposh
|
317 |
msgid "Push transposh scripts to footer of page instead of header, makes pages load faster. Requires that your theme should have proper footer support."
|
318 |
-
msgstr "فشردن
|
319 |
|
320 |
-
#: wp/transposh_admin.php:
|
321 |
#@ transposh
|
322 |
msgid "Auto detect language for users"
|
323 |
msgstr "شناسایی خودکار زبان کاربرها"
|
324 |
|
325 |
-
#: wp/transposh_admin.php:
|
326 |
#@ transposh
|
327 |
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."
|
328 |
-
msgstr "این به کارگیری شناسایی خودکار زبان کاربر به عنوان ACCEPT_LANGUAGES به آنها فرستاده می شود. این کار زبان
|
329 |
|
330 |
-
#: wp/transposh_admin.php:
|
331 |
#@ transposh
|
332 |
msgid "Delete all automated translations"
|
333 |
-
msgstr "
|
334 |
|
335 |
-
#: wp/transposh_admin.php:
|
336 |
#@ transposh
|
337 |
msgid "Delete automated translations older than 14 days"
|
338 |
-
msgstr "پاک کردن خودکار
|
339 |
|
340 |
-
#: wp/transposh_admin.php:
|
341 |
#@ transposh
|
342 |
msgid "Attempt to fix errors caused by previous versions - please backup first"
|
343 |
-
msgstr "تلاش برای
|
344 |
|
345 |
-
#: wp/transposh_admin.php:
|
346 |
#@ transposh
|
347 |
msgid "Backup service for human translation"
|
348 |
-
msgstr "سرویس
|
349 |
|
350 |
-
#: wp/transposh_admin.php:
|
351 |
#@ transposh
|
352 |
msgid "Enable daily backup"
|
353 |
-
msgstr "به کار انداختن
|
354 |
|
355 |
-
#: wp/transposh_admin.php:
|
356 |
#@ transposh
|
357 |
msgid "Enable live backup"
|
358 |
-
msgstr "به کار انداختن
|
359 |
|
360 |
-
#: wp/transposh_admin.php:
|
361 |
#@ transposh
|
362 |
msgid "Disable backup (Can be run manually by clicking the button below)"
|
363 |
-
msgstr "از کار انداختن
|
364 |
|
365 |
-
#: wp/transposh_admin.php:
|
366 |
#@ transposh
|
367 |
msgid "Service Key:"
|
368 |
msgstr "کلید سرویس:"
|
369 |
|
370 |
-
#: wp/transposh_admin.php:
|
371 |
#@ transposh
|
372 |
msgid "How to restore?"
|
373 |
msgstr "چگونه بازگردانی کنیم؟"
|
374 |
|
375 |
-
#: wp/transposh_admin.php:
|
376 |
#@ transposh
|
377 |
msgid "Do Backup Now"
|
378 |
-
msgstr "هم اکنون
|
379 |
|
380 |
#: wp/transposh_db.php:640
|
381 |
#@ transposh
|
382 |
msgid "Database stats"
|
383 |
-
msgstr "آمار
|
384 |
|
385 |
#: wp/transposh_db.php:645
|
386 |
#, php-format
|
@@ -403,7 +403,7 @@ msgstr "واپسین کارها"
|
|
403 |
#, php-format
|
404 |
#@ transposh
|
405 |
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>\""
|
406 |
-
msgstr "در <strong>%1s</strong><br/>user <strong>%2s</strong>
|
407 |
|
408 |
#: wp/transposh_widget.php:88
|
409 |
#@ transposh
|
@@ -418,7 +418,7 @@ msgstr "ترجمه"
|
|
418 |
#: wp/transposh_widget.php:222
|
419 |
#@ transposh
|
420 |
msgid "Set as default language"
|
421 |
-
msgstr "
|
422 |
|
423 |
#: wp/transposh_widget.php:363
|
424 |
#@ transposh
|
@@ -438,7 +438,7 @@ msgstr "نمایش نوار پیشرفت"
|
|
438 |
#: wp/transposh_widget.php:376
|
439 |
#@ transposh
|
440 |
msgid "Allow user to set current language as default"
|
441 |
-
msgstr "اجازه دادن به کاربر برای برگزیدن زبان کنونی به عنوان
|
442 |
|
443 |
#: wp/transposh_widget.php:378
|
444 |
#@ transposh
|
@@ -448,102 +448,112 @@ msgstr "پاک کردن لوگوی ترنسپاش <a href=\"http://transposh.or
|
|
448 |
#: wp/transposh_widget.php:381
|
449 |
#@ transposh
|
450 |
msgid "Edit interface (and progress bar) theme:"
|
451 |
-
msgstr "ویرایش
|
452 |
|
453 |
#. translators: plugin header field 'Name'
|
454 |
#: transposh.php:0
|
455 |
#@ transposh
|
456 |
msgid "Transposh Translation Filter"
|
457 |
-
msgstr ""
|
458 |
|
459 |
#. translators: plugin header field 'PluginURI'
|
460 |
#. translators: plugin header field 'AuthorURI'
|
461 |
#: transposh.php:0
|
462 |
#@ transposh
|
463 |
msgid "http://transposh.org/"
|
464 |
-
msgstr ""
|
465 |
|
466 |
#. translators: plugin header field 'Description'
|
467 |
#: transposh.php:0
|
468 |
#@ transposh
|
469 |
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>."
|
470 |
-
msgstr ""
|
471 |
|
472 |
#. translators: plugin header field 'Author'
|
473 |
#: transposh.php:0
|
474 |
#@ transposh
|
475 |
msgid "Team Transposh"
|
476 |
-
msgstr ""
|
477 |
|
478 |
#. translators: plugin header field 'Version'
|
479 |
#: transposh.php:0
|
480 |
#, php-format
|
481 |
#@ transposh
|
482 |
msgid "%VERSION%"
|
483 |
-
msgstr ""
|
484 |
|
485 |
-
#: wp/transposh_admin.php:
|
486 |
#@ transposh
|
487 |
msgid "Language supported by google translate"
|
488 |
-
msgstr ""
|
489 |
|
490 |
-
#: wp/transposh_admin.php:
|
491 |
#@ transposh
|
492 |
msgid "Language supported by bing translate"
|
493 |
-
msgstr ""
|
494 |
|
495 |
-
#: wp/transposh_admin.php:
|
496 |
#@ transposh
|
497 |
msgid "Language supported by apertium translate"
|
498 |
-
msgstr ""
|
499 |
|
500 |
-
#: wp/transposh_admin.php:
|
501 |
#@ transposh
|
502 |
msgid "Language is written from right to left"
|
503 |
-
msgstr ""
|
504 |
|
505 |
-
#: wp/transposh_admin.php:
|
506 |
#@ transposh
|
507 |
msgid "Allow search of translated languages (and the original language)"
|
508 |
-
msgstr ""
|
509 |
|
510 |
#: wp/transposh_widget.php:255
|
511 |
#@ transposh
|
512 |
msgid "translation plugin for wordpress"
|
513 |
-
msgstr ""
|
514 |
|
515 |
#: wp/transposh_widget.php:258
|
516 |
#@ transposh
|
517 |
msgid "wordpress translation plugin"
|
518 |
-
msgstr ""
|
519 |
|
520 |
#: wp/transposh_widget.php:261
|
521 |
#@ transposh
|
522 |
msgid "translate your blog to 60+ languages"
|
523 |
-
msgstr ""
|
524 |
|
525 |
#: wp/transposh_widget.php:264
|
526 |
#@ transposh
|
527 |
msgid "website crowdsourcing translation plugin"
|
528 |
-
msgstr ""
|
529 |
|
530 |
#: wp/transposh_widget.php:267
|
531 |
#@ transposh
|
532 |
msgid "google translate and bing translate plugin for wordpress"
|
533 |
-
msgstr ""
|
534 |
|
535 |
#: wp/transposh_widget.php:374
|
536 |
#@ transposh
|
537 |
msgid "Show progress bar when a client triggers automatic translation"
|
538 |
-
msgstr ""
|
539 |
|
540 |
#: wp/transposh_widget.php:376
|
541 |
#@ transposh
|
542 |
msgid "Widget will allow setting this language as user default"
|
543 |
-
msgstr ""
|
544 |
|
545 |
#: wp/transposh_widget.php:378
|
546 |
#@ transposh
|
547 |
msgid "Transposh logo will not appear on widget"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
548 |
msgstr ""
|
549 |
|
3 |
"Project-Id-Version: Persian transposh\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
"POT-Creation-Date: 2011-02-07 03:02+0330\n"
|
6 |
+
"PO-Revision-Date: 2011-07-04 15:12+0330\n"
|
7 |
"Last-Translator: Sushyant Zavarzadeh <sushyant@zavarzadeh.org>\n"
|
8 |
"Language-Team: S & S Group www.zavarzadeh.org <sushyant@zavarzadeh.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
19 |
"X-Poedit-SearchPath-0: C:/Documents and Settings/zavarzadeh/Desktop/transposh-translation-filter-for-wordpress\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: transposh.php:855
|
23 |
#@ default
|
24 |
msgid "Settings"
|
25 |
msgstr "گزینه ها"
|
26 |
|
27 |
+
#: wp/transposh_3rdparty.php:157
|
28 |
#, php-format
|
29 |
#@ buddypress
|
30 |
msgid "%s translated a phrase to %s with transposh:"
|
31 |
+
msgstr "%ترجمه ی واژه ها %s با ترنسپاش"
|
32 |
|
33 |
+
#: wp/transposh_admin.php:142
|
34 |
#@ transposh
|
35 |
msgid "Transposh makes your blog translatable"
|
36 |
+
msgstr "ترنسپاش تارنمای شما را ترجمه می کند"
|
37 |
|
38 |
+
#: wp/transposh_admin.php:143
|
39 |
#@ transposh
|
40 |
msgid "Plugin homepage"
|
41 |
+
msgstr "خانه ی افزونه"
|
42 |
|
43 |
+
#: wp/transposh_admin.php:144
|
44 |
#@ transposh
|
45 |
msgid "Frequently asked questions"
|
46 |
msgstr "پرسش و پاسخ"
|
47 |
|
48 |
+
#: wp/transposh_admin.php:152
|
49 |
#@ transposh
|
50 |
msgid "Transposh control center"
|
51 |
+
msgstr "پایگاه کنترل ترنسپاش"
|
52 |
|
53 |
+
#: wp/transposh_admin.php:152
|
54 |
+
#: wp/transposh_admin.php:217
|
55 |
#: wp/transposh_postpublish.php:49
|
56 |
#: wp/transposh_postpublish.php:50
|
57 |
#: wp/transposh_widget.php:88
|
61 |
msgid "Transposh"
|
62 |
msgstr "ترنسپاش"
|
63 |
|
64 |
+
#: wp/transposh_admin.php:192
|
65 |
#@ transposh
|
66 |
msgid "About this plugin"
|
67 |
+
msgstr "درباره ی این افزونه"
|
68 |
|
69 |
+
#: wp/transposh_admin.php:193
|
70 |
#@ transposh
|
71 |
msgid "Widget settings"
|
72 |
+
msgstr "گزینه های ابزارک"
|
73 |
|
74 |
+
#: wp/transposh_admin.php:194
|
75 |
#@ transposh
|
76 |
msgid "Plugin news"
|
77 |
+
msgstr "گزارش های افزونه"
|
78 |
|
79 |
+
#: wp/transposh_admin.php:195
|
80 |
#@ transposh
|
81 |
msgid "Plugin stats"
|
82 |
msgstr "آمار افزونه"
|
83 |
|
84 |
+
#: wp/transposh_admin.php:196
|
85 |
#@ transposh
|
86 |
msgid "Translate all"
|
87 |
+
msgstr "ترجمه ی همه"
|
88 |
|
89 |
+
#: wp/transposh_admin.php:197
|
90 |
#@ transposh
|
91 |
msgid "Supported languages"
|
92 |
+
msgstr "زبان های پشتیبانی شده"
|
93 |
|
94 |
+
#: wp/transposh_admin.php:198
|
95 |
#@ transposh
|
96 |
msgid "Translation settings"
|
97 |
+
msgstr "گزینه های ترجمه"
|
98 |
|
99 |
+
#: wp/transposh_admin.php:199
|
100 |
#@ transposh
|
101 |
msgid "Automatic translation settings"
|
102 |
+
msgstr "گزینه های ترجمه ی خودکار"
|
103 |
|
104 |
+
#: wp/transposh_admin.php:200
|
105 |
#@ transposh
|
106 |
msgid "Generic settings"
|
107 |
+
msgstr "گزینه های همگانی"
|
108 |
|
109 |
+
#: wp/transposh_admin.php:201
|
110 |
#@ transposh
|
111 |
msgid "Database maintenance"
|
112 |
+
msgstr "درست کردن (تعمیر) و نگه داری پایگاه داده"
|
113 |
|
114 |
+
#: wp/transposh_admin.php:210
|
115 |
#@ transposh
|
116 |
msgid "Transposh community features"
|
117 |
+
msgstr "ویژگی های همه گیر ترنسپاش"
|
118 |
|
119 |
+
#: wp/transposh_admin.php:238
|
120 |
#@ default
|
121 |
msgid "Save Changes"
|
122 |
+
msgstr "نگه داری دگرگونی ها"
|
123 |
|
124 |
+
#: wp/transposh_admin.php:262
|
125 |
#@ transposh
|
126 |
msgid "Problems?"
|
127 |
msgstr "مشکل؟"
|
128 |
|
129 |
+
#: wp/transposh_admin.php:280
|
130 |
#@ transposh
|
131 |
msgid "Plugin Homepage"
|
132 |
+
msgstr "خانه ی افزونه"
|
133 |
|
134 |
+
#: wp/transposh_admin.php:281
|
135 |
#@ transposh
|
136 |
msgid "Suggest a Feature"
|
137 |
msgstr "پیشنهاد یک ویژگی"
|
138 |
|
139 |
+
#: wp/transposh_admin.php:283
|
140 |
#@ transposh
|
141 |
msgid "Report a Bug"
|
142 |
msgstr "گزارش یک نادرستی (خطا)"
|
143 |
|
144 |
+
#: wp/transposh_admin.php:304
|
145 |
#@ transposh
|
146 |
msgid "Translate by clicking the button below"
|
147 |
+
msgstr "ترجمه کردن با فشردن دکمه ی زیر"
|
148 |
|
149 |
+
#: wp/transposh_admin.php:305
|
150 |
#@ transposh
|
151 |
msgid "Translate All Now"
|
152 |
+
msgstr "هم اکنون همه را ترجمه کن"
|
153 |
|
154 |
+
#: wp/transposh_admin.php:362
|
155 |
#@ transposh
|
156 |
msgid "Default Language (drag another language here to make it default)"
|
157 |
+
msgstr "زبان پیش گزیده (دکمه ی موشواره را روی یک زبان فشار دهید و به این جا بکشید و سپس رها کنید)"
|
158 |
|
159 |
+
#: wp/transposh_admin.php:369
|
160 |
#@ transposh
|
161 |
msgid "Available Languages (Click to toggle language state - Drag to sort in the widget)"
|
162 |
+
msgstr "زبان های در دسترس (بر روی دگرگونی آمار زبان فشار دهید - بر پایه ی چینش ابزارک بکشید)"
|
163 |
|
164 |
+
#: wp/transposh_admin.php:390
|
165 |
#@ transposh
|
166 |
msgid "Display options:"
|
167 |
+
msgstr "گزینه های نمایش:"
|
168 |
|
169 |
+
#: wp/transposh_admin.php:391
|
170 |
#@ transposh
|
171 |
msgid "Toggle names of languages between English and Original"
|
172 |
+
msgstr "دگرگونی نام زبان های بین انگلیسی و زبان پایه"
|
173 |
|
174 |
+
#: wp/transposh_admin.php:392
|
175 |
#@ transposh
|
176 |
msgid "Make all languages active"
|
177 |
+
msgstr "به کار انداختن همه ی زبان ها"
|
178 |
|
179 |
+
#: wp/transposh_admin.php:393
|
180 |
#@ transposh
|
181 |
msgid "Sort by language name"
|
182 |
+
msgstr "چینش بر پایه ی نام زبان"
|
183 |
|
184 |
+
#: wp/transposh_admin.php:394
|
185 |
#@ transposh
|
186 |
msgid "Sort by lSO code"
|
187 |
+
msgstr "چینش بر پایه ی کد ISO"
|
188 |
|
189 |
+
#: wp/transposh_admin.php:395
|
190 |
#@ transposh
|
191 |
msgid "Legend:"
|
192 |
+
msgstr "درباره (توضیح)"
|
193 |
|
194 |
+
#: wp/transposh_admin.php:395
|
195 |
#@ transposh
|
196 |
msgid "Green - active"
|
197 |
msgstr "سبز - کارا (فعال)"
|
198 |
|
199 |
+
#: wp/transposh_admin.php:395
|
200 |
#@ transposh
|
201 |
msgid "Yellow - translateable (only translators will see this language)"
|
202 |
+
msgstr "زرد - ترجمه پذیر (تنها مترجم ها می توانند این زبان را ببینند)"
|
203 |
|
204 |
+
#: wp/transposh_admin.php:395
|
205 |
#@ transposh
|
206 |
msgid "blank - inactive"
|
207 |
+
msgstr "سپید - از کار افتاده (غیر فعال)"
|
208 |
|
209 |
+
#: wp/transposh_admin.php:412
|
210 |
#@ transposh
|
211 |
msgid "Who can translate ?"
|
212 |
+
msgstr "چه کسی می تواند ترجمه کند؟"
|
213 |
|
214 |
+
#: wp/transposh_admin.php:419
|
215 |
#@ transposh
|
216 |
msgid "Anonymous"
|
217 |
+
msgstr "بی نام"
|
218 |
|
219 |
+
#: wp/transposh_admin.php:425
|
220 |
#@ transposh
|
221 |
msgid "Enable default language translation"
|
222 |
+
msgstr "به کار انداختن ترجمه ی زبان پیش گزیده"
|
223 |
|
224 |
+
#: wp/transposh_admin.php:427
|
225 |
#@ transposh
|
226 |
msgid "Allow translation of default language - useful for sites with more than one major language"
|
227 |
+
msgstr "اجازهی ترجمه ی زبان پیش گزیده - برای تارنماهای دارای بیش از یک زبان پایه سودمند است."
|
228 |
|
229 |
+
#: wp/transposh_admin.php:434
|
230 |
#@ transposh
|
231 |
msgid "Enable search in translated languages"
|
232 |
+
msgstr "به کار انداختن جست و جو در زبان های ترجمه شده"
|
233 |
|
234 |
+
#: wp/transposh_admin.php:443
|
235 |
#@ transposh
|
236 |
msgid "Enable url translation"
|
237 |
msgstr "به کار انداختن نشانی ترجمه"
|
238 |
|
239 |
+
#: wp/transposh_admin.php:443
|
240 |
+
#: wp/transposh_admin.php:452
|
241 |
#@ transposh
|
242 |
msgid "experimental"
|
243 |
msgstr "آزمایشی"
|
244 |
|
245 |
+
#: wp/transposh_admin.php:445
|
246 |
#@ transposh
|
247 |
msgid "Allow translation of permalinks and urls"
|
248 |
+
msgstr "اجازه دادن برای ترجمه ی پیوند یکتا و نشانی ها"
|
249 |
|
250 |
+
#: wp/transposh_admin.php:452
|
251 |
#@ transposh
|
252 |
msgid "Enable gettext integration"
|
253 |
+
msgstr "به کار انداختن دریافت یکپارچه ی نوشته یا gettext integration"
|
254 |
|
255 |
+
#: wp/transposh_admin.php:454
|
256 |
#@ transposh
|
257 |
msgid "Enable integration of Transposh with existing gettext interface (.po/.mo files)"
|
258 |
msgstr "به کار انداختن آمیختن ترانسپاش با پرونده های (.mo /.po) "
|
259 |
|
260 |
+
#: wp/transposh_admin.php:472
|
261 |
#@ transposh
|
262 |
msgid "Enable automatic translation"
|
263 |
+
msgstr "به کار انداختن ترجمه ی خودکار"
|
264 |
|
265 |
+
#: wp/transposh_admin.php:474
|
266 |
#@ transposh
|
267 |
msgid "Allow automatic translation of pages"
|
268 |
+
msgstr "اجازه به ترجمه ی خودکار برگه ها"
|
269 |
|
270 |
+
#: wp/transposh_admin.php:480
|
271 |
#@ transposh
|
272 |
msgid "Enable automatic translation after posting"
|
273 |
+
msgstr "به کار انداختن ترجمه ی خودکار پس از آغاز نوشتن"
|
274 |
|
275 |
+
#: wp/transposh_admin.php:482
|
276 |
#@ transposh
|
277 |
msgid "Do automatic translation immediately after a post has been published"
|
278 |
+
msgstr "ترجمه ی خودکار شتابان، پس از افزودن یک نوشته"
|
279 |
|
280 |
+
#: wp/transposh_admin.php:487
|
281 |
#@ transposh
|
282 |
msgid "Select preferred auto translation engine"
|
283 |
msgstr "موتور ترجمه ی بهتر را برگزینید"
|
284 |
|
285 |
+
#: wp/transposh_admin.php:488
|
286 |
#@ transposh
|
287 |
msgid "Translation engine:"
|
288 |
msgstr "موتور ترجمه کننده:"
|
289 |
|
290 |
+
#: wp/transposh_admin.php:490
|
291 |
#@ transposh
|
292 |
msgid "Google"
|
293 |
msgstr "گوگل"
|
294 |
|
295 |
+
#: wp/transposh_admin.php:491
|
296 |
#@ transposh
|
297 |
msgid "Bing"
|
298 |
msgstr "بینگ"
|
299 |
|
300 |
+
#: wp/transposh_admin.php:501
|
301 |
#@ transposh
|
302 |
msgid "Rewrite URLs"
|
303 |
+
msgstr "بازنویسی نشانی ها"
|
304 |
|
305 |
+
#: wp/transposh_admin.php:505
|
306 |
#@ transposh
|
307 |
msgid "Rewrite URLs to be search engine friendly, e.g. (http://transposh.org/<strong>en</strong>). Requires that permalinks will be enabled."
|
308 |
+
msgstr "بازنویسی نشانی های موتورهای جست و جو همانند (http://transposh.org/<strong>en</strong>).این کار هنگامی رخ می دهد که پیوندهای یکتا به کار افتاده باشند."
|
309 |
|
310 |
+
#: wp/transposh_admin.php:512
|
311 |
#@ transposh
|
312 |
msgid "Add scripts to footer"
|
313 |
msgstr "افزودن اسکریپت ها به پانوشت (فوتر)"
|
314 |
|
315 |
+
#: wp/transposh_admin.php:515
|
316 |
#@ transposh
|
317 |
msgid "Push transposh scripts to footer of page instead of header, makes pages load faster. Requires that your theme should have proper footer support."
|
318 |
+
msgstr "فشردن اسکریپت های ترنسپاش در پانوشت (فوتر) برگه به جای سربرگ (هیدر) شتاب بارگیری را افزایش می دهد. برای این کار پوسته ی شما باید پانوشت خوبی داشته باشد. "
|
319 |
|
320 |
+
#: wp/transposh_admin.php:521
|
321 |
#@ transposh
|
322 |
msgid "Auto detect language for users"
|
323 |
msgstr "شناسایی خودکار زبان کاربرها"
|
324 |
|
325 |
+
#: wp/transposh_admin.php:524
|
326 |
#@ transposh
|
327 |
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."
|
328 |
+
msgstr "این به کارگیری شناسایی خودکار زبان کاربر به عنوان ACCEPT_LANGUAGES به آنها فرستاده می شود. این کار زبان پایه ی تارنما را دگرگون می کند و به طور خودکار زبان شناسایی شده را جایگزین می کند."
|
329 |
|
330 |
+
#: wp/transposh_admin.php:534
|
331 |
#@ transposh
|
332 |
msgid "Delete all automated translations"
|
333 |
+
msgstr "پاک کردن همه ی ترجمه های خودکار"
|
334 |
|
335 |
+
#: wp/transposh_admin.php:535
|
336 |
#@ transposh
|
337 |
msgid "Delete automated translations older than 14 days"
|
338 |
+
msgstr "پاک کردن ترجمه های خودکار پیش از 14 روز گذشته"
|
339 |
|
340 |
+
#: wp/transposh_admin.php:536
|
341 |
#@ transposh
|
342 |
msgid "Attempt to fix errors caused by previous versions - please backup first"
|
343 |
+
msgstr "تلاش برای درست کردن نادرستی های پیش آمده در نگارش های پیشین - نخست برون بری کنید"
|
344 |
|
345 |
+
#: wp/transposh_admin.php:540
|
346 |
#@ transposh
|
347 |
msgid "Backup service for human translation"
|
348 |
+
msgstr "سرویس برون بری برای ترجمه ی دستی"
|
349 |
|
350 |
+
#: wp/transposh_admin.php:541
|
351 |
#@ transposh
|
352 |
msgid "Enable daily backup"
|
353 |
+
msgstr "به کار انداختن برون بری روزانه"
|
354 |
|
355 |
+
#: wp/transposh_admin.php:542
|
356 |
#@ transposh
|
357 |
msgid "Enable live backup"
|
358 |
+
msgstr "به کار انداختن برون بری زنده"
|
359 |
|
360 |
+
#: wp/transposh_admin.php:543
|
361 |
#@ transposh
|
362 |
msgid "Disable backup (Can be run manually by clicking the button below)"
|
363 |
+
msgstr "از کار انداختن برون بری (به شیوه ی دستی با فشردن دکمه ی زیر رخ می دهد)"
|
364 |
|
365 |
+
#: wp/transposh_admin.php:544
|
366 |
#@ transposh
|
367 |
msgid "Service Key:"
|
368 |
msgstr "کلید سرویس:"
|
369 |
|
370 |
+
#: wp/transposh_admin.php:544
|
371 |
#@ transposh
|
372 |
msgid "How to restore?"
|
373 |
msgstr "چگونه بازگردانی کنیم؟"
|
374 |
|
375 |
+
#: wp/transposh_admin.php:546
|
376 |
#@ transposh
|
377 |
msgid "Do Backup Now"
|
378 |
+
msgstr "هم اکنون برون بری (پشتیبان گیری) کن"
|
379 |
|
380 |
#: wp/transposh_db.php:640
|
381 |
#@ transposh
|
382 |
msgid "Database stats"
|
383 |
+
msgstr "آمار پایگاه داده"
|
384 |
|
385 |
#: wp/transposh_db.php:645
|
386 |
#, php-format
|
403 |
#, php-format
|
404 |
#@ transposh
|
405 |
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>\""
|
406 |
+
msgstr "در <strong>%1s</strong><br/>user <strong>%2s</strong> ترجمه شده<br/>\"<strong>%3s</strong>\"<br/>به <strong style=\"color:red\">%4s</strong><br/>\"<strong>%5s</strong>\""
|
407 |
|
408 |
#: wp/transposh_widget.php:88
|
409 |
#@ transposh
|
418 |
#: wp/transposh_widget.php:222
|
419 |
#@ transposh
|
420 |
msgid "Set as default language"
|
421 |
+
msgstr "پیش گزیده کردن این زبان"
|
422 |
|
423 |
#: wp/transposh_widget.php:363
|
424 |
#@ transposh
|
438 |
#: wp/transposh_widget.php:376
|
439 |
#@ transposh
|
440 |
msgid "Allow user to set current language as default"
|
441 |
+
msgstr "اجازه دادن به کاربر برای برگزیدن زبان کنونی به عنوان پیش گزیده "
|
442 |
|
443 |
#: wp/transposh_widget.php:378
|
444 |
#@ transposh
|
448 |
#: wp/transposh_widget.php:381
|
449 |
#@ transposh
|
450 |
msgid "Edit interface (and progress bar) theme:"
|
451 |
+
msgstr "ویرایش پوسته ی نما و نوار پیشرفت:"
|
452 |
|
453 |
#. translators: plugin header field 'Name'
|
454 |
#: transposh.php:0
|
455 |
#@ transposh
|
456 |
msgid "Transposh Translation Filter"
|
457 |
+
msgstr "برگرداننده ی زبان ترنسپاش"
|
458 |
|
459 |
#. translators: plugin header field 'PluginURI'
|
460 |
#. translators: plugin header field 'AuthorURI'
|
461 |
#: transposh.php:0
|
462 |
#@ transposh
|
463 |
msgid "http://transposh.org/"
|
464 |
+
msgstr "http://transposh.org/"
|
465 |
|
466 |
#. translators: plugin header field 'Description'
|
467 |
#: transposh.php:0
|
468 |
#@ transposh
|
469 |
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>."
|
470 |
+
msgstr "مترجم برای وردپرس، پس از به کار انداختن افزونه، زبانتان را از <a href=\"options-general.php?page=transposh\">بخش گزینه ها</a> برگزینید. نیاز به کمک دارید؟ تارنمای ما را ببینید <a href=\"http://trac.transposh.org/\">ترنسپاش</a>"
|
471 |
|
472 |
#. translators: plugin header field 'Author'
|
473 |
#: transposh.php:0
|
474 |
#@ transposh
|
475 |
msgid "Team Transposh"
|
476 |
+
msgstr "گروه ترنسپاش"
|
477 |
|
478 |
#. translators: plugin header field 'Version'
|
479 |
#: transposh.php:0
|
480 |
#, php-format
|
481 |
#@ transposh
|
482 |
msgid "%VERSION%"
|
483 |
+
msgstr "%VERSION%"
|
484 |
|
485 |
+
#: wp/transposh_admin.php:379
|
486 |
#@ transposh
|
487 |
msgid "Language supported by google translate"
|
488 |
+
msgstr "زبان های پشتیبانی شده ی مترجم گوگل"
|
489 |
|
490 |
+
#: wp/transposh_admin.php:381
|
491 |
#@ transposh
|
492 |
msgid "Language supported by bing translate"
|
493 |
+
msgstr "زبان های پشتیبانی شده ی مترجم بینگ"
|
494 |
|
495 |
+
#: wp/transposh_admin.php:383
|
496 |
#@ transposh
|
497 |
msgid "Language supported by apertium translate"
|
498 |
+
msgstr "زبان های پشتیبانی شده ی مترجم آپرتیوم"
|
499 |
|
500 |
+
#: wp/transposh_admin.php:385
|
501 |
#@ transposh
|
502 |
msgid "Language is written from right to left"
|
503 |
+
msgstr "زبان های نوشته شده از راست به چپ"
|
504 |
|
505 |
+
#: wp/transposh_admin.php:436
|
506 |
#@ transposh
|
507 |
msgid "Allow search of translated languages (and the original language)"
|
508 |
+
msgstr "روا دانستن (اجازه دادن) ترجمه از زبان های ترجمه شده و زبان پایه"
|
509 |
|
510 |
#: wp/transposh_widget.php:255
|
511 |
#@ transposh
|
512 |
msgid "translation plugin for wordpress"
|
513 |
+
msgstr "افزونه ی ترجمه برای وردپرس"
|
514 |
|
515 |
#: wp/transposh_widget.php:258
|
516 |
#@ transposh
|
517 |
msgid "wordpress translation plugin"
|
518 |
+
msgstr "افزونه ی مترجم وردپرس"
|
519 |
|
520 |
#: wp/transposh_widget.php:261
|
521 |
#@ transposh
|
522 |
msgid "translate your blog to 60+ languages"
|
523 |
+
msgstr "تارنمایتان را به بیش از 60 زبان ترجمه کنید"
|
524 |
|
525 |
#: wp/transposh_widget.php:264
|
526 |
#@ transposh
|
527 |
msgid "website crowdsourcing translation plugin"
|
528 |
+
msgstr "تارنمای گروه سرچشمه ها (مجموعه منابع) افزونه ی مترجم"
|
529 |
|
530 |
#: wp/transposh_widget.php:267
|
531 |
#@ transposh
|
532 |
msgid "google translate and bing translate plugin for wordpress"
|
533 |
+
msgstr "افزونه ی مترجم گوگل و مترجم بینگ برای وردپرس"
|
534 |
|
535 |
#: wp/transposh_widget.php:374
|
536 |
#@ transposh
|
537 |
msgid "Show progress bar when a client triggers automatic translation"
|
538 |
+
msgstr "نمایش نوار پیشرفت در هنگام ترجمه "
|
539 |
|
540 |
#: wp/transposh_widget.php:376
|
541 |
#@ transposh
|
542 |
msgid "Widget will allow setting this language as user default"
|
543 |
+
msgstr "ابزارک به کاربر این ویژگی را خواهد داد که این زبان را زبان پیش گزیده کند."
|
544 |
|
545 |
#: wp/transposh_widget.php:378
|
546 |
#@ transposh
|
547 |
msgid "Transposh logo will not appear on widget"
|
548 |
+
msgstr "نشان ترنسپاش در ابزارک نمایش داده نشود"
|
549 |
+
|
550 |
+
#: wp/transposh_admin.php:461
|
551 |
+
#@ transposh
|
552 |
+
msgid "Enable override for default locale"
|
553 |
+
msgstr ""
|
554 |
+
|
555 |
+
#: wp/transposh_admin.php:463
|
556 |
+
#@ transposh
|
557 |
+
msgid "Enable overriding the default locale that is set in WP_LANG on default languages pages (such as untranslated pages and admin pages)"
|
558 |
msgstr ""
|
559 |
|
Binary file
|
@@ -19,13 +19,13 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
-
#: wp/transposh_3rdparty.php:
|
23 |
#, php-format
|
24 |
#@ buddypress
|
25 |
msgid "%s translated a phrase to %s with transposh:"
|
26 |
msgstr "%s תרגם פסקה ל-%s בעזרת טרנספוש:"
|
27 |
|
28 |
-
#: wp/transposh_admin.php:
|
29 |
#@ transposh
|
30 |
msgid "Problems?"
|
31 |
msgstr "בעיות?"
|
@@ -40,63 +40,63 @@ msgstr "ישומון בחירת השפה של טרנספוש"
|
|
40 |
msgid "Translation"
|
41 |
msgstr "תרגום"
|
42 |
|
43 |
-
#: wp/transposh_admin.php:
|
44 |
#@ transposh
|
45 |
msgid "About this plugin"
|
46 |
msgstr "אודות תוסף זה"
|
47 |
|
48 |
-
#: wp/transposh_admin.php:
|
49 |
#@ transposh
|
50 |
msgid "Widget settings"
|
51 |
msgstr "הגדרות ישומון"
|
52 |
|
53 |
-
#: wp/transposh_admin.php:
|
54 |
#@ transposh
|
55 |
msgid "Plugin news"
|
56 |
msgstr "חדשות התוסף"
|
57 |
|
58 |
-
#: wp/transposh_admin.php:
|
59 |
#@ transposh
|
60 |
msgid "Plugin stats"
|
61 |
msgstr "סטטיסטיקות התוסף"
|
62 |
|
63 |
-
#: wp/transposh_admin.php:
|
64 |
#@ transposh
|
65 |
msgid "Translate all"
|
66 |
msgstr "תרגם הכל"
|
67 |
|
68 |
-
#: wp/transposh_admin.php:
|
69 |
#@ transposh
|
70 |
msgid "Supported languages"
|
71 |
msgstr "שפות נתמכות"
|
72 |
|
73 |
-
#: wp/transposh_admin.php:
|
74 |
#@ transposh
|
75 |
msgid "Translation settings"
|
76 |
msgstr "הגדרות תרגום"
|
77 |
|
78 |
-
#: wp/transposh_admin.php:
|
79 |
#@ transposh
|
80 |
msgid "Automatic translation settings"
|
81 |
msgstr "הגדרות תרגום אוטומטי"
|
82 |
|
83 |
-
#: wp/transposh_admin.php:
|
84 |
#@ transposh
|
85 |
msgid "Generic settings"
|
86 |
msgstr "הגדרות כלליות"
|
87 |
|
88 |
-
#: wp/transposh_admin.php:
|
89 |
#@ transposh
|
90 |
msgid "Database maintenance"
|
91 |
msgstr "תחזוקת בסיס הנתונים"
|
92 |
|
93 |
-
#: wp/transposh_admin.php:
|
94 |
#@ transposh
|
95 |
msgid "Transposh community features"
|
96 |
msgstr "תכונות קהילתיות בטרנספוש"
|
97 |
|
98 |
-
#: wp/transposh_admin.php:
|
99 |
-
#: wp/transposh_admin.php:
|
100 |
#: wp/transposh_postpublish.php:49
|
101 |
#: wp/transposh_postpublish.php:50
|
102 |
#: wp/transposh_widget.php:88
|
@@ -106,300 +106,295 @@ msgstr "תכונות קהילתיות בטרנספוש"
|
|
106 |
msgid "Transposh"
|
107 |
msgstr "טרנספוש"
|
108 |
|
109 |
-
#: wp/transposh_admin.php:
|
110 |
#@ transposh
|
111 |
msgid "Translate by clicking the button below"
|
112 |
msgstr "תרגם על ידי לחיצה על הכפתור למטה"
|
113 |
|
114 |
-
#: wp/transposh_admin.php:
|
115 |
#@ transposh
|
116 |
msgid "Translate All Now"
|
117 |
msgstr "תרגם הכל עכשיו"
|
118 |
|
119 |
-
#: wp/transposh_admin.php:
|
120 |
#@ transposh
|
121 |
msgid "Plugin Homepage"
|
122 |
msgstr "עמוד הבית של התוסף"
|
123 |
|
124 |
-
#: wp/transposh_admin.php:
|
125 |
#@ transposh
|
126 |
msgid "Suggest a Feature"
|
127 |
msgstr "הצע תכונה"
|
128 |
|
129 |
-
#: wp/transposh_admin.php:
|
130 |
#@ transposh
|
131 |
msgid "Report a Bug"
|
132 |
msgstr "דווח על באג"
|
133 |
|
134 |
-
#: wp/transposh_admin.php:
|
135 |
#@ transposh
|
136 |
msgid "Default Language (drag another language here to make it default)"
|
137 |
msgstr "שפת ברירת המחדל (גרור שפה אחרת לכאן על מנת להפכה לברירת מחדל)"
|
138 |
|
139 |
-
#: wp/transposh_admin.php:
|
140 |
#@ transposh
|
141 |
msgid "Available Languages (Click to toggle language state - Drag to sort in the widget)"
|
142 |
msgstr "שפות זמינות (הקלק כדי לשנות את סטטוס השפה - גרור כדי למיין בישומון)"
|
143 |
|
144 |
-
#: wp/transposh_admin.php:
|
145 |
#@ transposh
|
146 |
msgid "Language supported by google translate"
|
147 |
msgstr "שפה נתמכת ע\"י המתרגם של גוגל"
|
148 |
|
149 |
-
#: wp/transposh_admin.php:
|
150 |
#@ transposh
|
151 |
msgid "Language supported by bing translate"
|
152 |
msgstr "שפה נתמכת ע\"י המתרגם של בינג"
|
153 |
|
154 |
-
#: wp/transposh_admin.php:
|
155 |
#@ transposh
|
156 |
msgid "Language is written from right to left"
|
157 |
msgstr "שפה הנכתבת מימין לשמאל"
|
158 |
|
159 |
-
#: wp/transposh_admin.php:
|
160 |
#@ transposh
|
161 |
msgid "Display options:"
|
162 |
msgstr "הגדרות תצוגה:"
|
163 |
|
164 |
-
#: wp/transposh_admin.php:
|
165 |
#@ transposh
|
166 |
msgid "Toggle names of languages between English and Original"
|
167 |
msgstr "שנה את הצגת שפות השפות בין אנגלית למקןר"
|
168 |
|
169 |
-
#: wp/transposh_admin.php:
|
170 |
#@ transposh
|
171 |
msgid "Make all languages active"
|
172 |
msgstr "הפוך את כל השפות לפעילות"
|
173 |
|
174 |
-
#: wp/transposh_admin.php:
|
175 |
#@ transposh
|
176 |
msgid "Sort by language name"
|
177 |
msgstr "מיין לפי שם השפה"
|
178 |
|
179 |
-
#: wp/transposh_admin.php:
|
180 |
#@ transposh
|
181 |
msgid "Sort by lSO code"
|
182 |
msgstr "מיין לפי קוד ה-ISO"
|
183 |
|
184 |
-
#: wp/transposh_admin.php:
|
185 |
#@ transposh
|
186 |
msgid "Legend:"
|
187 |
msgstr "מקרא:"
|
188 |
|
189 |
-
#: wp/transposh_admin.php:
|
190 |
#@ transposh
|
191 |
msgid "Green - active"
|
192 |
msgstr "ירוק - פעיל"
|
193 |
|
194 |
-
#: wp/transposh_admin.php:
|
195 |
#@ transposh
|
196 |
msgid "Yellow - translateable (only translators will see this language)"
|
197 |
msgstr "צהוב - ניתן לתרגום (רק מתרגמים יראו את השפה)"
|
198 |
|
199 |
-
#: wp/transposh_admin.php:
|
200 |
#@ transposh
|
201 |
msgid "blank - inactive"
|
202 |
msgstr "ללא צבע - לא פעיל"
|
203 |
|
204 |
-
#: wp/transposh_admin.php:
|
205 |
#@ transposh
|
206 |
msgid "Who can translate ?"
|
207 |
msgstr "מי יכול לתרגם?"
|
208 |
|
209 |
-
#: wp/transposh_admin.php:
|
210 |
#@ transposh
|
211 |
msgid "Anonymous"
|
212 |
msgstr "אנונימי"
|
213 |
|
214 |
-
#: wp/transposh_admin.php:
|
215 |
#@ transposh
|
216 |
msgid "Enable default language translation"
|
217 |
msgstr "אפשר תרגום של שפת ברירת המחדל"
|
218 |
|
219 |
-
#: wp/transposh_admin.php:
|
220 |
#@ transposh
|
221 |
msgid "Allow translation of default language - useful for sites with more than one major language"
|
222 |
msgstr "אפשר תרגום שפת ברירת המחדל - שימושי באתרים עם יותר משפה עיקרית אחת"
|
223 |
|
224 |
-
#: wp/transposh_admin.php:
|
225 |
#@ transposh
|
226 |
msgid "Enable search in translated languages"
|
227 |
msgstr "אפשר חיפוש בשפות המתורגמות"
|
228 |
|
229 |
-
#: wp/transposh_admin.php:
|
230 |
-
#@ transposh
|
231 |
-
msgid "Allow search of translated languages, in those languages (and the original language)"
|
232 |
-
msgstr "אפשר חיפוש בשפות המתורגמות, בשפות אלו (ובשפת המקור)"
|
233 |
-
|
234 |
-
#: wp/transposh_admin.php:443
|
235 |
#@ transposh
|
236 |
msgid "Allow translation of permalinks and urls"
|
237 |
msgstr "אפשר תרגום של קישורים קבועים וכתובות אינטרנט"
|
238 |
|
239 |
-
#: wp/transposh_admin.php:
|
240 |
#@ transposh
|
241 |
msgid "Enable automatic translation"
|
242 |
msgstr "אפשר תרגום אוטומטי"
|
243 |
|
244 |
-
#: wp/transposh_admin.php:
|
245 |
#@ transposh
|
246 |
msgid "Allow automatic translation of pages"
|
247 |
msgstr "אפשר תרגום אוטומטי של דפים"
|
248 |
|
249 |
-
#: wp/transposh_admin.php:
|
250 |
#@ transposh
|
251 |
msgid "Enable automatic translation after posting"
|
252 |
msgstr "אפשר תרגום אוטומטי לאחר יצירת פוסט"
|
253 |
|
254 |
-
#: wp/transposh_admin.php:
|
255 |
#@ transposh
|
256 |
msgid "Do automatic translation immediately after a post has been published"
|
257 |
msgstr "בצע תרגום אוטומטי מייד לאחר שפוסט מפורסם"
|
258 |
|
259 |
-
#: wp/transposh_admin.php:
|
260 |
#@ transposh
|
261 |
msgid "Select preferred auto translation engine"
|
262 |
msgstr "בחר את מנוע התרגום האוטומטי המועדף"
|
263 |
|
264 |
-
#: wp/transposh_admin.php:
|
265 |
#@ transposh
|
266 |
msgid "Translation engine:"
|
267 |
msgstr "מנוע תרגום:"
|
268 |
|
269 |
-
#: wp/transposh_admin.php:
|
270 |
#@ transposh
|
271 |
msgid "Google"
|
272 |
msgstr "גוגל"
|
273 |
|
274 |
-
#: wp/transposh_admin.php:
|
275 |
#@ transposh
|
276 |
msgid "Bing"
|
277 |
msgstr "בינג"
|
278 |
|
279 |
-
#: wp/transposh_admin.php:
|
280 |
#@ transposh
|
281 |
msgid "Rewrite URLs"
|
282 |
msgstr "שיכתוב כתובות אינטרנט"
|
283 |
|
284 |
-
#: wp/transposh_admin.php:
|
285 |
#@ transposh
|
286 |
msgid "Add scripts to footer"
|
287 |
msgstr "הוסף סקריפטים לתחתית הדף"
|
288 |
|
289 |
-
#: wp/transposh_admin.php:
|
290 |
#@ transposh
|
291 |
msgid "Push transposh scripts to footer of page instead of header, makes pages load faster. Requires that your theme should have proper footer support."
|
292 |
msgstr "הכנס את הסקריפטים של טרנספוש לתחתית העמוד במקום לחלקו העליון, העמוד יטען מהר יותר. ערכת העיצוב חייבת להכיל תמיכה בחלק תחתון."
|
293 |
|
294 |
-
#: wp/transposh_admin.php:
|
295 |
#@ transposh
|
296 |
msgid "Auto detect language for users"
|
297 |
msgstr "זהה שפה עבור המשתמשים באופן אוטומטי"
|
298 |
|
299 |
-
#: wp/transposh_admin.php:
|
300 |
#@ transposh
|
301 |
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."
|
302 |
msgstr "תכונה זו מאפשרת זיהוי אוטומטי של השפה בה משתמשים המשתמשים כפי שמוגדרת ב-ACCEPT_LANGUAGES אותו הם שולחים. תכונה זו תשלח את הדף הראשון אל דף זהה בשפה שזוהתה."
|
303 |
|
304 |
-
#: wp/transposh_admin.php:
|
305 |
#@ transposh
|
306 |
msgid "Delete all automated translations"
|
307 |
msgstr "מחק את כל התרגומים האוטומטיים"
|
308 |
|
309 |
-
#: wp/transposh_admin.php:
|
310 |
#@ transposh
|
311 |
msgid "Delete automated translations older than 14 days"
|
312 |
msgstr "מחק תרגומים אוטומטיים בני יותר מ-14 ימים"
|
313 |
|
314 |
-
#: wp/transposh_admin.php:
|
315 |
#@ transposh
|
316 |
msgid "Backup service for human translation"
|
317 |
msgstr "שרות גיבוי לתרגום אנושי"
|
318 |
|
319 |
-
#: wp/transposh_admin.php:
|
320 |
#@ transposh
|
321 |
msgid "Enable daily backup"
|
322 |
msgstr "אפשר גיבוי יומי"
|
323 |
|
324 |
-
#: wp/transposh_admin.php:
|
325 |
#@ transposh
|
326 |
msgid "Enable live backup"
|
327 |
msgstr "אפשר גיבוי חי"
|
328 |
|
329 |
-
#: wp/transposh_admin.php:
|
330 |
#@ transposh
|
331 |
msgid "Disable backup (Can be run manually by clicking the button below)"
|
332 |
msgstr "בטל גיבוי (ניתן להריץ ידנית על ידי לחיצה על הכפתור למטה)"
|
333 |
|
334 |
-
#: wp/transposh_admin.php:
|
335 |
#@ transposh
|
336 |
msgid "How to restore?"
|
337 |
msgstr "איך לשחזר?"
|
338 |
|
339 |
-
#: wp/transposh_admin.php:
|
340 |
#@ transposh
|
341 |
msgid "Do Backup Now"
|
342 |
msgstr "גבה עכשיו"
|
343 |
|
344 |
-
#: wp/transposh_admin.php:
|
345 |
#@ transposh
|
346 |
msgid "Transposh makes your blog translatable"
|
347 |
msgstr "טרנספוש הופך את הבלוג שלך לניתן לתרגום"
|
348 |
|
349 |
-
#: wp/transposh_admin.php:
|
350 |
#@ transposh
|
351 |
msgid "Plugin homepage"
|
352 |
msgstr "עמוד הבית של התוסף"
|
353 |
|
354 |
-
#: wp/transposh_admin.php:
|
355 |
#@ transposh
|
356 |
msgid "Frequently asked questions"
|
357 |
msgstr "שאלות נפוצות"
|
358 |
|
359 |
-
#: wp/transposh_admin.php:
|
360 |
#@ transposh
|
361 |
msgid "Transposh control center"
|
362 |
msgstr "מרכז השליטה של טרנספוש"
|
363 |
|
364 |
-
#: wp/transposh_admin.php:
|
365 |
#@ transposh
|
366 |
msgid "Enable url translation"
|
367 |
msgstr "אפשר תרגום כתובות אינטרנט"
|
368 |
|
369 |
-
#: wp/transposh_admin.php:
|
370 |
-
#: wp/transposh_admin.php:
|
371 |
#@ transposh
|
372 |
msgid "experimental"
|
373 |
msgstr "נסיוני"
|
374 |
|
375 |
-
#: wp/transposh_admin.php:
|
376 |
#@ transposh
|
377 |
msgid "Rewrite URLs to be search engine friendly, e.g. (http://transposh.org/<strong>en</strong>). Requires that permalinks will be enabled."
|
378 |
msgstr "שכתוב כתובות אינטרנט כדי שיהיו ידידותיות למנועי חיפוש, למשל (http://transposh.org/<strong>en</strong>). יש חובה להפעיל קישורים קבועים."
|
379 |
|
380 |
-
#: wp/transposh_db.php:
|
381 |
#@ transposh
|
382 |
msgid "Database stats"
|
383 |
msgstr "סטטיסטיקות בסיס הנתונים"
|
384 |
|
385 |
-
#: wp/transposh_db.php:
|
386 |
#, php-format
|
387 |
#@ transposh
|
388 |
msgid "Total of <strong style=\"color:red\">%s</strong> translated phrases."
|
389 |
msgstr "סך הכל <strong style=\"color:red\">%s</strong> מקטעים מתורגמים."
|
390 |
|
391 |
-
#: wp/transposh_db.php:
|
392 |
#, php-format
|
393 |
#@ transposh
|
394 |
msgid "<strong>%1s</strong> has <strong style=\"color:red\">%2s</strong> human translated phrases."
|
395 |
msgstr "ב-<strong>%1s</strong> ישנם <strong style=\"color:red\">%2s</strong> מקטעים מתורגמים על ידי בן אדם."
|
396 |
|
397 |
-
#: wp/transposh_db.php:
|
398 |
#@ transposh
|
399 |
msgid "Recent activity"
|
400 |
msgstr "פעילות אחרונה"
|
401 |
|
402 |
-
#: wp/transposh_db.php:
|
403 |
#, php-format
|
404 |
#@ transposh
|
405 |
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>\""
|
@@ -445,7 +440,7 @@ msgstr "הלוגו של טרנספוש לא יופיע בישומון"
|
|
445 |
msgid "Remove transposh logo (see <a href=\"http://transposh.org/logoterms\">terms</a>)"
|
446 |
msgstr "הסרת הלוגו של טרנספוש (ראה <a href=\"http://transposh.org/logoterms\">תנאים</a>)"
|
447 |
|
448 |
-
#: wp/transposh_admin.php:
|
449 |
#@ transposh
|
450 |
msgid "Service Key:"
|
451 |
msgstr "מפתח שרות:"
|
@@ -487,32 +482,32 @@ msgstr "צוות טרנספוש"
|
|
487 |
msgid "%VERSION%"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: transposh.php:
|
491 |
#@ default
|
492 |
msgid "Settings"
|
493 |
msgstr ""
|
494 |
|
495 |
-
#: wp/transposh_admin.php:
|
496 |
#@ default
|
497 |
msgid "Save Changes"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: wp/transposh_admin.php:
|
501 |
#@ transposh
|
502 |
msgid "Enable gettext integration"
|
503 |
msgstr "אפשר אינטגרציית gettext"
|
504 |
|
505 |
-
#: wp/transposh_admin.php:
|
506 |
#@ transposh
|
507 |
msgid "Enable integration of Transposh with existing gettext interface (.po/.mo files)"
|
508 |
msgstr "אפשר אינטגרציה של טרנספוש עם ממשק gettext הקיים (קבצי .po/.mo)"
|
509 |
|
510 |
-
#: wp/transposh_admin.php:
|
511 |
#@ transposh
|
512 |
msgid "Language supported by apertium translate"
|
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 "נסה לתקן שגיאות שנגרמו על ידי גרסאות קודמות - אנא גבה קודם"
|
@@ -547,3 +542,60 @@ msgstr "תוסף תרגום גוגל ובינג לוורדפרס"
|
|
547 |
msgid "Edit interface (and progress bar) theme:"
|
548 |
msgstr "ערכת עיצוב ממשק עריכה (ובר התקדמות):"
|
549 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
"X-Textdomain-Support: yes"
|
21 |
|
22 |
+
#: wp/transposh_3rdparty.php:159
|
23 |
#, php-format
|
24 |
#@ buddypress
|
25 |
msgid "%s translated a phrase to %s with transposh:"
|
26 |
msgstr "%s תרגם פסקה ל-%s בעזרת טרנספוש:"
|
27 |
|
28 |
+
#: wp/transposh_admin.php:280
|
29 |
#@ transposh
|
30 |
msgid "Problems?"
|
31 |
msgstr "בעיות?"
|
40 |
msgid "Translation"
|
41 |
msgstr "תרגום"
|
42 |
|
43 |
+
#: wp/transposh_admin.php:196
|
44 |
#@ transposh
|
45 |
msgid "About this plugin"
|
46 |
msgstr "אודות תוסף זה"
|
47 |
|
48 |
+
#: wp/transposh_admin.php:197
|
49 |
#@ transposh
|
50 |
msgid "Widget settings"
|
51 |
msgstr "הגדרות ישומון"
|
52 |
|
53 |
+
#: wp/transposh_admin.php:198
|
54 |
#@ transposh
|
55 |
msgid "Plugin news"
|
56 |
msgstr "חדשות התוסף"
|
57 |
|
58 |
+
#: wp/transposh_admin.php:199
|
59 |
#@ transposh
|
60 |
msgid "Plugin stats"
|
61 |
msgstr "סטטיסטיקות התוסף"
|
62 |
|
63 |
+
#: wp/transposh_admin.php:200
|
64 |
#@ transposh
|
65 |
msgid "Translate all"
|
66 |
msgstr "תרגם הכל"
|
67 |
|
68 |
+
#: wp/transposh_admin.php:201
|
69 |
#@ transposh
|
70 |
msgid "Supported languages"
|
71 |
msgstr "שפות נתמכות"
|
72 |
|
73 |
+
#: wp/transposh_admin.php:202
|
74 |
#@ transposh
|
75 |
msgid "Translation settings"
|
76 |
msgstr "הגדרות תרגום"
|
77 |
|
78 |
+
#: wp/transposh_admin.php:203
|
79 |
#@ transposh
|
80 |
msgid "Automatic translation settings"
|
81 |
msgstr "הגדרות תרגום אוטומטי"
|
82 |
|
83 |
+
#: wp/transposh_admin.php:204
|
84 |
#@ transposh
|
85 |
msgid "Generic settings"
|
86 |
msgstr "הגדרות כלליות"
|
87 |
|
88 |
+
#: wp/transposh_admin.php:205
|
89 |
#@ transposh
|
90 |
msgid "Database maintenance"
|
91 |
msgstr "תחזוקת בסיס הנתונים"
|
92 |
|
93 |
+
#: wp/transposh_admin.php:220
|
94 |
#@ transposh
|
95 |
msgid "Transposh community features"
|
96 |
msgstr "תכונות קהילתיות בטרנספוש"
|
97 |
|
98 |
+
#: wp/transposh_admin.php:157
|
99 |
+
#: wp/transposh_admin.php:226
|
100 |
#: wp/transposh_postpublish.php:49
|
101 |
#: wp/transposh_postpublish.php:50
|
102 |
#: wp/transposh_widget.php:88
|
106 |
msgid "Transposh"
|
107 |
msgstr "טרנספוש"
|
108 |
|
109 |
+
#: wp/transposh_admin.php:321
|
110 |
#@ transposh
|
111 |
msgid "Translate by clicking the button below"
|
112 |
msgstr "תרגם על ידי לחיצה על הכפתור למטה"
|
113 |
|
114 |
+
#: wp/transposh_admin.php:322
|
115 |
#@ transposh
|
116 |
msgid "Translate All Now"
|
117 |
msgstr "תרגם הכל עכשיו"
|
118 |
|
119 |
+
#: wp/transposh_admin.php:297
|
120 |
#@ transposh
|
121 |
msgid "Plugin Homepage"
|
122 |
msgstr "עמוד הבית של התוסף"
|
123 |
|
124 |
+
#: wp/transposh_admin.php:298
|
125 |
#@ transposh
|
126 |
msgid "Suggest a Feature"
|
127 |
msgstr "הצע תכונה"
|
128 |
|
129 |
+
#: wp/transposh_admin.php:300
|
130 |
#@ transposh
|
131 |
msgid "Report a Bug"
|
132 |
msgstr "דווח על באג"
|
133 |
|
134 |
+
#: wp/transposh_admin.php:377
|
135 |
#@ transposh
|
136 |
msgid "Default Language (drag another language here to make it default)"
|
137 |
msgstr "שפת ברירת המחדל (גרור שפה אחרת לכאן על מנת להפכה לברירת מחדל)"
|
138 |
|
139 |
+
#: wp/transposh_admin.php:384
|
140 |
#@ transposh
|
141 |
msgid "Available Languages (Click to toggle language state - Drag to sort in the widget)"
|
142 |
msgstr "שפות זמינות (הקלק כדי לשנות את סטטוס השפה - גרור כדי למיין בישומון)"
|
143 |
|
144 |
+
#: wp/transposh_admin.php:394
|
145 |
#@ transposh
|
146 |
msgid "Language supported by google translate"
|
147 |
msgstr "שפה נתמכת ע\"י המתרגם של גוגל"
|
148 |
|
149 |
+
#: wp/transposh_admin.php:396
|
150 |
#@ transposh
|
151 |
msgid "Language supported by bing translate"
|
152 |
msgstr "שפה נתמכת ע\"י המתרגם של בינג"
|
153 |
|
154 |
+
#: wp/transposh_admin.php:400
|
155 |
#@ transposh
|
156 |
msgid "Language is written from right to left"
|
157 |
msgstr "שפה הנכתבת מימין לשמאל"
|
158 |
|
159 |
+
#: wp/transposh_admin.php:405
|
160 |
#@ transposh
|
161 |
msgid "Display options:"
|
162 |
msgstr "הגדרות תצוגה:"
|
163 |
|
164 |
+
#: wp/transposh_admin.php:406
|
165 |
#@ transposh
|
166 |
msgid "Toggle names of languages between English and Original"
|
167 |
msgstr "שנה את הצגת שפות השפות בין אנגלית למקןר"
|
168 |
|
169 |
+
#: wp/transposh_admin.php:407
|
170 |
#@ transposh
|
171 |
msgid "Make all languages active"
|
172 |
msgstr "הפוך את כל השפות לפעילות"
|
173 |
|
174 |
+
#: wp/transposh_admin.php:408
|
175 |
#@ transposh
|
176 |
msgid "Sort by language name"
|
177 |
msgstr "מיין לפי שם השפה"
|
178 |
|
179 |
+
#: wp/transposh_admin.php:409
|
180 |
#@ transposh
|
181 |
msgid "Sort by lSO code"
|
182 |
msgstr "מיין לפי קוד ה-ISO"
|
183 |
|
184 |
+
#: wp/transposh_admin.php:410
|
185 |
#@ transposh
|
186 |
msgid "Legend:"
|
187 |
msgstr "מקרא:"
|
188 |
|
189 |
+
#: wp/transposh_admin.php:410
|
190 |
#@ transposh
|
191 |
msgid "Green - active"
|
192 |
msgstr "ירוק - פעיל"
|
193 |
|
194 |
+
#: wp/transposh_admin.php:410
|
195 |
#@ transposh
|
196 |
msgid "Yellow - translateable (only translators will see this language)"
|
197 |
msgstr "צהוב - ניתן לתרגום (רק מתרגמים יראו את השפה)"
|
198 |
|
199 |
+
#: wp/transposh_admin.php:410
|
200 |
#@ transposh
|
201 |
msgid "blank - inactive"
|
202 |
msgstr "ללא צבע - לא פעיל"
|
203 |
|
204 |
+
#: wp/transposh_admin.php:427
|
205 |
#@ transposh
|
206 |
msgid "Who can translate ?"
|
207 |
msgstr "מי יכול לתרגם?"
|
208 |
|
209 |
+
#: wp/transposh_admin.php:434
|
210 |
#@ transposh
|
211 |
msgid "Anonymous"
|
212 |
msgstr "אנונימי"
|
213 |
|
214 |
+
#: wp/transposh_admin.php:440
|
215 |
#@ transposh
|
216 |
msgid "Enable default language translation"
|
217 |
msgstr "אפשר תרגום של שפת ברירת המחדל"
|
218 |
|
219 |
+
#: wp/transposh_admin.php:442
|
220 |
#@ transposh
|
221 |
msgid "Allow translation of default language - useful for sites with more than one major language"
|
222 |
msgstr "אפשר תרגום שפת ברירת המחדל - שימושי באתרים עם יותר משפה עיקרית אחת"
|
223 |
|
224 |
+
#: wp/transposh_admin.php:449
|
225 |
#@ transposh
|
226 |
msgid "Enable search in translated languages"
|
227 |
msgstr "אפשר חיפוש בשפות המתורגמות"
|
228 |
|
229 |
+
#: wp/transposh_admin.php:460
|
|
|
|
|
|
|
|
|
|
|
230 |
#@ transposh
|
231 |
msgid "Allow translation of permalinks and urls"
|
232 |
msgstr "אפשר תרגום של קישורים קבועים וכתובות אינטרנט"
|
233 |
|
234 |
+
#: wp/transposh_admin.php:487
|
235 |
#@ transposh
|
236 |
msgid "Enable automatic translation"
|
237 |
msgstr "אפשר תרגום אוטומטי"
|
238 |
|
239 |
+
#: wp/transposh_admin.php:489
|
240 |
#@ transposh
|
241 |
msgid "Allow automatic translation of pages"
|
242 |
msgstr "אפשר תרגום אוטומטי של דפים"
|
243 |
|
244 |
+
#: wp/transposh_admin.php:495
|
245 |
#@ transposh
|
246 |
msgid "Enable automatic translation after posting"
|
247 |
msgstr "אפשר תרגום אוטומטי לאחר יצירת פוסט"
|
248 |
|
249 |
+
#: wp/transposh_admin.php:497
|
250 |
#@ transposh
|
251 |
msgid "Do automatic translation immediately after a post has been published"
|
252 |
msgstr "בצע תרגום אוטומטי מייד לאחר שפוסט מפורסם"
|
253 |
|
254 |
+
#: wp/transposh_admin.php:502
|
255 |
#@ transposh
|
256 |
msgid "Select preferred auto translation engine"
|
257 |
msgstr "בחר את מנוע התרגום האוטומטי המועדף"
|
258 |
|
259 |
+
#: wp/transposh_admin.php:503
|
260 |
#@ transposh
|
261 |
msgid "Translation engine:"
|
262 |
msgstr "מנוע תרגום:"
|
263 |
|
264 |
+
#: wp/transposh_admin.php:505
|
265 |
#@ transposh
|
266 |
msgid "Google"
|
267 |
msgstr "גוגל"
|
268 |
|
269 |
+
#: wp/transposh_admin.php:506
|
270 |
#@ transposh
|
271 |
msgid "Bing"
|
272 |
msgstr "בינג"
|
273 |
|
274 |
+
#: wp/transposh_admin.php:516
|
275 |
#@ transposh
|
276 |
msgid "Rewrite URLs"
|
277 |
msgstr "שיכתוב כתובות אינטרנט"
|
278 |
|
279 |
+
#: wp/transposh_admin.php:527
|
280 |
#@ transposh
|
281 |
msgid "Add scripts to footer"
|
282 |
msgstr "הוסף סקריפטים לתחתית הדף"
|
283 |
|
284 |
+
#: wp/transposh_admin.php:530
|
285 |
#@ transposh
|
286 |
msgid "Push transposh scripts to footer of page instead of header, makes pages load faster. Requires that your theme should have proper footer support."
|
287 |
msgstr "הכנס את הסקריפטים של טרנספוש לתחתית העמוד במקום לחלקו העליון, העמוד יטען מהר יותר. ערכת העיצוב חייבת להכיל תמיכה בחלק תחתון."
|
288 |
|
289 |
+
#: wp/transposh_admin.php:536
|
290 |
#@ transposh
|
291 |
msgid "Auto detect language for users"
|
292 |
msgstr "זהה שפה עבור המשתמשים באופן אוטומטי"
|
293 |
|
294 |
+
#: wp/transposh_admin.php:539
|
295 |
#@ transposh
|
296 |
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."
|
297 |
msgstr "תכונה זו מאפשרת זיהוי אוטומטי של השפה בה משתמשים המשתמשים כפי שמוגדרת ב-ACCEPT_LANGUAGES אותו הם שולחים. תכונה זו תשלח את הדף הראשון אל דף זהה בשפה שזוהתה."
|
298 |
|
299 |
+
#: wp/transposh_admin.php:556
|
300 |
#@ transposh
|
301 |
msgid "Delete all automated translations"
|
302 |
msgstr "מחק את כל התרגומים האוטומטיים"
|
303 |
|
304 |
+
#: wp/transposh_admin.php:557
|
305 |
#@ transposh
|
306 |
msgid "Delete automated translations older than 14 days"
|
307 |
msgstr "מחק תרגומים אוטומטיים בני יותר מ-14 ימים"
|
308 |
|
309 |
+
#: wp/transposh_admin.php:562
|
310 |
#@ transposh
|
311 |
msgid "Backup service for human translation"
|
312 |
msgstr "שרות גיבוי לתרגום אנושי"
|
313 |
|
314 |
+
#: wp/transposh_admin.php:563
|
315 |
#@ transposh
|
316 |
msgid "Enable daily backup"
|
317 |
msgstr "אפשר גיבוי יומי"
|
318 |
|
319 |
+
#: wp/transposh_admin.php:564
|
320 |
#@ transposh
|
321 |
msgid "Enable live backup"
|
322 |
msgstr "אפשר גיבוי חי"
|
323 |
|
324 |
+
#: wp/transposh_admin.php:565
|
325 |
#@ transposh
|
326 |
msgid "Disable backup (Can be run manually by clicking the button below)"
|
327 |
msgstr "בטל גיבוי (ניתן להריץ ידנית על ידי לחיצה על הכפתור למטה)"
|
328 |
|
329 |
+
#: wp/transposh_admin.php:566
|
330 |
#@ transposh
|
331 |
msgid "How to restore?"
|
332 |
msgstr "איך לשחזר?"
|
333 |
|
334 |
+
#: wp/transposh_admin.php:568
|
335 |
#@ transposh
|
336 |
msgid "Do Backup Now"
|
337 |
msgstr "גבה עכשיו"
|
338 |
|
339 |
+
#: wp/transposh_admin.php:147
|
340 |
#@ transposh
|
341 |
msgid "Transposh makes your blog translatable"
|
342 |
msgstr "טרנספוש הופך את הבלוג שלך לניתן לתרגום"
|
343 |
|
344 |
+
#: wp/transposh_admin.php:148
|
345 |
#@ transposh
|
346 |
msgid "Plugin homepage"
|
347 |
msgstr "עמוד הבית של התוסף"
|
348 |
|
349 |
+
#: wp/transposh_admin.php:149
|
350 |
#@ transposh
|
351 |
msgid "Frequently asked questions"
|
352 |
msgstr "שאלות נפוצות"
|
353 |
|
354 |
+
#: wp/transposh_admin.php:157
|
355 |
#@ transposh
|
356 |
msgid "Transposh control center"
|
357 |
msgstr "מרכז השליטה של טרנספוש"
|
358 |
|
359 |
+
#: wp/transposh_admin.php:458
|
360 |
#@ transposh
|
361 |
msgid "Enable url translation"
|
362 |
msgstr "אפשר תרגום כתובות אינטרנט"
|
363 |
|
364 |
+
#: wp/transposh_admin.php:458
|
365 |
+
#: wp/transposh_admin.php:467
|
366 |
#@ transposh
|
367 |
msgid "experimental"
|
368 |
msgstr "נסיוני"
|
369 |
|
370 |
+
#: wp/transposh_admin.php:520
|
371 |
#@ transposh
|
372 |
msgid "Rewrite URLs to be search engine friendly, e.g. (http://transposh.org/<strong>en</strong>). Requires that permalinks will be enabled."
|
373 |
msgstr "שכתוב כתובות אינטרנט כדי שיהיו ידידותיות למנועי חיפוש, למשל (http://transposh.org/<strong>en</strong>). יש חובה להפעיל קישורים קבועים."
|
374 |
|
375 |
+
#: wp/transposh_db.php:640
|
376 |
#@ transposh
|
377 |
msgid "Database stats"
|
378 |
msgstr "סטטיסטיקות בסיס הנתונים"
|
379 |
|
380 |
+
#: wp/transposh_db.php:645
|
381 |
#, php-format
|
382 |
#@ transposh
|
383 |
msgid "Total of <strong style=\"color:red\">%s</strong> translated phrases."
|
384 |
msgstr "סך הכל <strong style=\"color:red\">%s</strong> מקטעים מתורגמים."
|
385 |
|
386 |
+
#: wp/transposh_db.php:652
|
387 |
#, php-format
|
388 |
#@ transposh
|
389 |
msgid "<strong>%1s</strong> has <strong style=\"color:red\">%2s</strong> human translated phrases."
|
390 |
msgstr "ב-<strong>%1s</strong> ישנם <strong style=\"color:red\">%2s</strong> מקטעים מתורגמים על ידי בן אדם."
|
391 |
|
392 |
+
#: wp/transposh_db.php:655
|
393 |
#@ transposh
|
394 |
msgid "Recent activity"
|
395 |
msgstr "פעילות אחרונה"
|
396 |
|
397 |
+
#: wp/transposh_db.php:660
|
398 |
#, php-format
|
399 |
#@ transposh
|
400 |
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>\""
|
440 |
msgid "Remove transposh logo (see <a href=\"http://transposh.org/logoterms\">terms</a>)"
|
441 |
msgstr "הסרת הלוגו של טרנספוש (ראה <a href=\"http://transposh.org/logoterms\">תנאים</a>)"
|
442 |
|
443 |
+
#: wp/transposh_admin.php:566
|
444 |
#@ transposh
|
445 |
msgid "Service Key:"
|
446 |
msgstr "מפתח שרות:"
|
482 |
msgid "%VERSION%"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: transposh.php:855
|
486 |
#@ default
|
487 |
msgid "Settings"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: wp/transposh_admin.php:256
|
491 |
#@ default
|
492 |
msgid "Save Changes"
|
493 |
msgstr ""
|
494 |
|
495 |
+
#: wp/transposh_admin.php:467
|
496 |
#@ transposh
|
497 |
msgid "Enable gettext integration"
|
498 |
msgstr "אפשר אינטגרציית gettext"
|
499 |
|
500 |
+
#: wp/transposh_admin.php:469
|
501 |
#@ transposh
|
502 |
msgid "Enable integration of Transposh with existing gettext interface (.po/.mo files)"
|
503 |
msgstr "אפשר אינטגרציה של טרנספוש עם ממשק gettext הקיים (קבצי .po/.mo)"
|
504 |
|
505 |
+
#: wp/transposh_admin.php:398
|
506 |
#@ transposh
|
507 |
msgid "Language supported by apertium translate"
|
508 |
msgstr "שפה נתמכת ע\"י המתרגם של אפרטיום"
|
509 |
|
510 |
+
#: wp/transposh_admin.php:558
|
511 |
#@ transposh
|
512 |
msgid "Attempt to fix errors caused by previous versions - please backup first"
|
513 |
msgstr "נסה לתקן שגיאות שנגרמו על ידי גרסאות קודמות - אנא גבה קודם"
|
542 |
msgid "Edit interface (and progress bar) theme:"
|
543 |
msgstr "ערכת עיצוב ממשק עריכה (ובר התקדמות):"
|
544 |
|
545 |
+
#: wp/transposh_admin.php:451
|
546 |
+
#@ transposh
|
547 |
+
msgid "Allow search of translated languages (and the original language)"
|
548 |
+
msgstr "אפשר חיפוש בשפות המתורגמות (בנוסף לשפת המקור)"
|
549 |
+
|
550 |
+
#: wp/transposh_admin.php:476
|
551 |
+
#@ transposh
|
552 |
+
msgid "Enable override for default locale"
|
553 |
+
msgstr "אפשר עקיפת משתנה סביבת השפה של בררת במחדל"
|
554 |
+
|
555 |
+
#: wp/transposh_admin.php:478
|
556 |
+
#@ transposh
|
557 |
+
msgid "Enable overriding the default locale that is set in WP_LANG on default languages pages (such as untranslated pages and admin pages)"
|
558 |
+
msgstr "אפשר את עקיפת משתנה השפב של בררת המחדל המוגדר ב-WP_LANG עבור עמודים בשפת בררת המחדל (כמו עמודים שאינם מתורגמים ועמודי ניהול)"
|
559 |
+
|
560 |
+
#: wp/transposh_admin.php:231
|
561 |
+
#, php-format
|
562 |
+
#@ transposh
|
563 |
+
msgid "Your current PHP memory limit of %s is quite low, if you experience blank pages please consider increasing it."
|
564 |
+
msgstr "הגבלת הזכרון ב-PHP שלך של %s נמוכה, אם תחווה בעיות של דפים ריקים מומלץ לשקול להגדיל את המגבלה."
|
565 |
+
|
566 |
+
#: wp/transposh_admin.php:235
|
567 |
+
#@ transposh
|
568 |
+
msgid "We were not able to find a supported in-memory caching engine, installing one can improve performance."
|
569 |
+
msgstr "לא הצלחנו לאתר מנגנון זכרון מטמון נתמך, התקנה של אחד יכולה לשפר את הביצועים."
|
570 |
+
|
571 |
+
#: wp/transposh_postpublish.php:51
|
572 |
+
#@ transposh
|
573 |
+
msgid "Set post language"
|
574 |
+
msgstr "הגדר את שפת הפוסט"
|
575 |
+
|
576 |
+
#: wp/transposh_postpublish.php:52
|
577 |
+
#@ transposh
|
578 |
+
msgid "Set page language"
|
579 |
+
msgstr "הגדר את שפת העמוד"
|
580 |
+
|
581 |
+
#: wp/transposh_postpublish.php:183
|
582 |
+
#@ default
|
583 |
+
msgid "Default"
|
584 |
+
msgstr ""
|
585 |
+
|
586 |
+
#: wp/transposh_admin.php:231
|
587 |
+
#: wp/transposh_admin.php:235
|
588 |
+
#@ transposh
|
589 |
+
msgid "Check Transposh FAQs"
|
590 |
+
msgstr "בדוק את השאלות הנפוצות של טרנספוש"
|
591 |
+
|
592 |
+
#: wp/transposh_admin.php:544
|
593 |
+
#@ transposh
|
594 |
+
msgid "Allow collecting usage statistics"
|
595 |
+
msgstr "אפשר איסוף סטטיסטיקות שימוש"
|
596 |
+
|
597 |
+
#: wp/transposh_admin.php:546
|
598 |
+
#@ transposh
|
599 |
+
msgid "This option enables collection of statistics by transposh that will be used to improve the product. "
|
600 |
+
msgstr "אפשרות זו מאפשרת איסוף סטטיסטיקות על ידי טרנספוש שישמשו לשיפור המוצר."
|
601 |
+
|
@@ -1,408 +1,596 @@
|
|
1 |
-
# Copyright (C)
|
2 |
# This file is distributed under the same license as the package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version:
|
6 |
-
"Report-Msgid-Bugs-To:
|
7 |
-
"
|
8 |
-
"POT-Creation-Date: 2011-01-16 21:56:35+00:00\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
|
13 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
14 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
|
|
|
|
|
|
|
|
|
|
15 |
|
16 |
-
#: wp/
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
#: wp/transposh_db.php:643
|
21 |
-
msgid "Total of <strong style=\"color:red\">%s</strong> translated phrases."
|
22 |
-
msgstr ""
|
23 |
-
|
24 |
-
#: wp/transposh_db.php:650
|
25 |
-
msgid ""
|
26 |
-
"<strong>%1s</strong> has <strong style=\"color:red\">%2s</strong> human "
|
27 |
-
"translated phrases."
|
28 |
-
msgstr ""
|
29 |
-
|
30 |
-
#: wp/transposh_db.php:653
|
31 |
-
msgid "Recent activity"
|
32 |
-
msgstr ""
|
33 |
-
|
34 |
-
#: wp/transposh_db.php:658
|
35 |
-
msgid ""
|
36 |
-
"On <strong>%1s</strong><br/>user <strong>%2s</strong> translated<br/>"
|
37 |
-
"\"<strong>%3s</strong>\"<br/>to <strong style=\"color:red\">%4s</strong><br/>"
|
38 |
-
"\"<strong>%5s</strong>\""
|
39 |
-
msgstr ""
|
40 |
-
|
41 |
-
#: wp/transposh_3rdparty.php:147
|
42 |
msgid "%s translated a phrase to %s with transposh:"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#: wp/
|
46 |
-
|
47 |
-
|
48 |
-
#: wp/transposh_widget.php:252
|
49 |
-
msgid "Transposh"
|
50 |
-
msgstr ""
|
51 |
-
|
52 |
-
#: wp/transposh_admin.php:140
|
53 |
-
msgid "Transposh makes your blog translatable"
|
54 |
-
msgstr ""
|
55 |
-
|
56 |
-
#: wp/transposh_admin.php:141
|
57 |
-
msgid "Plugin homepage"
|
58 |
msgstr ""
|
59 |
|
60 |
-
#: wp/
|
61 |
-
|
|
|
62 |
msgstr ""
|
63 |
|
64 |
-
#: wp/
|
65 |
-
|
|
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: wp/transposh_admin.php:
|
|
|
69 |
msgid "About this plugin"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#: wp/transposh_admin.php:
|
|
|
73 |
msgid "Widget settings"
|
74 |
msgstr ""
|
75 |
|
76 |
-
#: wp/transposh_admin.php:
|
|
|
77 |
msgid "Plugin news"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: wp/transposh_admin.php:
|
|
|
81 |
msgid "Plugin stats"
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: wp/transposh_admin.php:
|
|
|
85 |
msgid "Translate all"
|
86 |
msgstr ""
|
87 |
|
88 |
-
#: wp/transposh_admin.php:
|
|
|
89 |
msgid "Supported languages"
|
90 |
msgstr ""
|
91 |
|
92 |
-
#: wp/transposh_admin.php:
|
|
|
93 |
msgid "Translation settings"
|
94 |
msgstr ""
|
95 |
|
96 |
-
#: wp/transposh_admin.php:
|
|
|
97 |
msgid "Automatic translation settings"
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: wp/transposh_admin.php:
|
|
|
101 |
msgid "Generic settings"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: wp/transposh_admin.php:
|
|
|
105 |
msgid "Database maintenance"
|
106 |
msgstr ""
|
107 |
|
108 |
-
#: wp/transposh_admin.php:
|
|
|
109 |
msgid "Transposh community features"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: wp/transposh_admin.php:
|
113 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: wp/transposh_admin.php:
|
117 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: wp/transposh_admin.php:
|
|
|
121 |
msgid "Plugin Homepage"
|
122 |
msgstr ""
|
123 |
|
124 |
-
#: wp/transposh_admin.php:
|
|
|
125 |
msgid "Suggest a Feature"
|
126 |
msgstr ""
|
127 |
|
128 |
-
#: wp/transposh_admin.php:
|
|
|
129 |
msgid "Report a Bug"
|
130 |
msgstr ""
|
131 |
|
132 |
-
#: wp/transposh_admin.php:
|
133 |
-
|
134 |
-
msgstr ""
|
135 |
-
|
136 |
-
#: wp/transposh_admin.php:303
|
137 |
-
msgid "Translate All Now"
|
138 |
-
msgstr ""
|
139 |
-
|
140 |
-
#: wp/transposh_admin.php:360
|
141 |
msgid "Default Language (drag another language here to make it default)"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#: wp/transposh_admin.php:
|
145 |
-
|
146 |
-
"Available Languages (Click to toggle language state - Drag to sort in the "
|
147 |
-
"widget)"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: wp/transposh_admin.php:
|
|
|
151 |
msgid "Language supported by google translate"
|
152 |
msgstr ""
|
153 |
|
154 |
-
#: wp/transposh_admin.php:
|
|
|
155 |
msgid "Language supported by bing translate"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: wp/transposh_admin.php:
|
159 |
-
|
160 |
-
msgstr ""
|
161 |
-
|
162 |
-
#: wp/transposh_admin.php:383
|
163 |
msgid "Language is written from right to left"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: wp/transposh_admin.php:
|
|
|
167 |
msgid "Display options:"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: wp/transposh_admin.php:
|
|
|
171 |
msgid "Toggle names of languages between English and Original"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#: wp/transposh_admin.php:
|
|
|
175 |
msgid "Make all languages active"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: wp/transposh_admin.php:
|
|
|
179 |
msgid "Sort by language name"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: wp/transposh_admin.php:
|
|
|
183 |
msgid "Sort by lSO code"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: wp/transposh_admin.php:
|
|
|
187 |
msgid "Legend:"
|
188 |
msgstr ""
|
189 |
|
190 |
-
#: wp/transposh_admin.php:
|
|
|
191 |
msgid "Green - active"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: wp/transposh_admin.php:
|
|
|
195 |
msgid "Yellow - translateable (only translators will see this language)"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: wp/transposh_admin.php:
|
|
|
199 |
msgid "blank - inactive"
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: wp/transposh_admin.php:
|
|
|
203 |
msgid "Who can translate ?"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: wp/transposh_admin.php:
|
|
|
207 |
msgid "Anonymous"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: wp/transposh_admin.php:
|
|
|
211 |
msgid "Enable default language translation"
|
212 |
msgstr ""
|
213 |
|
214 |
-
#: wp/transposh_admin.php:
|
215 |
-
|
216 |
-
"Allow translation of default language - useful for sites with more than one "
|
217 |
-
"major language"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: wp/transposh_admin.php:
|
|
|
221 |
msgid "Enable search in translated languages"
|
222 |
msgstr ""
|
223 |
|
224 |
-
#: wp/transposh_admin.php:
|
225 |
-
|
226 |
-
"Allow search of translated languages, in those languages (and the original "
|
227 |
-
"language)"
|
228 |
-
msgstr ""
|
229 |
-
|
230 |
-
#: wp/transposh_admin.php:441
|
231 |
-
msgid "Enable url translation"
|
232 |
-
msgstr ""
|
233 |
-
|
234 |
-
#: wp/transposh_admin.php:441 wp/transposh_admin.php:450
|
235 |
-
msgid "experimental"
|
236 |
-
msgstr ""
|
237 |
-
|
238 |
-
#: wp/transposh_admin.php:443
|
239 |
msgid "Allow translation of permalinks and urls"
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: wp/transposh_admin.php:
|
243 |
-
|
244 |
-
msgstr ""
|
245 |
-
|
246 |
-
#: wp/transposh_admin.php:452
|
247 |
-
msgid ""
|
248 |
-
"Enable integration of Transposh with existing gettext interface (.po/.mo "
|
249 |
-
"files)"
|
250 |
-
msgstr ""
|
251 |
-
|
252 |
-
#: wp/transposh_admin.php:461
|
253 |
msgid "Enable automatic translation"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: wp/transposh_admin.php:
|
|
|
257 |
msgid "Allow automatic translation of pages"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: wp/transposh_admin.php:
|
|
|
261 |
msgid "Enable automatic translation after posting"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: wp/transposh_admin.php:
|
|
|
265 |
msgid "Do automatic translation immediately after a post has been published"
|
266 |
msgstr ""
|
267 |
|
268 |
-
#: wp/transposh_admin.php:
|
|
|
269 |
msgid "Select preferred auto translation engine"
|
270 |
msgstr ""
|
271 |
|
272 |
-
#: wp/transposh_admin.php:
|
|
|
273 |
msgid "Translation engine:"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: wp/transposh_admin.php:
|
|
|
277 |
msgid "Google"
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: wp/transposh_admin.php:
|
|
|
281 |
msgid "Bing"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: wp/transposh_admin.php:
|
|
|
285 |
msgid "Rewrite URLs"
|
286 |
msgstr ""
|
287 |
|
288 |
-
#: wp/transposh_admin.php:
|
|
|
289 |
msgid "Add scripts to footer"
|
290 |
msgstr ""
|
291 |
|
292 |
-
#: wp/transposh_admin.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
293 |
msgid "Auto detect language for users"
|
294 |
msgstr ""
|
295 |
|
296 |
-
#: wp/transposh_admin.php:
|
297 |
-
|
|
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: wp/transposh_admin.php:
|
301 |
-
|
|
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: wp/transposh_admin.php:
|
305 |
-
|
|
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: wp/transposh_admin.php:
|
|
|
309 |
msgid "Backup service for human translation"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: wp/transposh_admin.php:
|
|
|
313 |
msgid "Enable daily backup"
|
314 |
msgstr ""
|
315 |
|
316 |
-
#: wp/transposh_admin.php:
|
|
|
317 |
msgid "Enable live backup"
|
318 |
msgstr ""
|
319 |
|
320 |
-
#: wp/transposh_admin.php:
|
|
|
321 |
msgid "Disable backup (Can be run manually by clicking the button below)"
|
322 |
msgstr ""
|
323 |
|
324 |
-
#: wp/transposh_admin.php:
|
325 |
-
|
326 |
-
msgstr ""
|
327 |
-
|
328 |
-
#: wp/transposh_admin.php:533
|
329 |
msgid "How to restore?"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: wp/transposh_admin.php:
|
|
|
333 |
msgid "Do Backup Now"
|
334 |
msgstr ""
|
335 |
|
336 |
-
#: wp/
|
337 |
-
|
|
|
338 |
msgstr ""
|
339 |
|
340 |
-
#: wp/
|
341 |
-
|
|
|
342 |
msgstr ""
|
343 |
|
344 |
-
#: wp/
|
345 |
-
|
|
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: wp/
|
349 |
-
|
|
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: wp/
|
353 |
-
|
|
|
354 |
msgstr ""
|
355 |
|
356 |
-
#: wp/
|
357 |
-
|
|
|
|
|
358 |
msgstr ""
|
359 |
|
360 |
-
#: wp/
|
361 |
-
|
|
|
362 |
msgstr ""
|
363 |
|
364 |
-
#: wp/
|
365 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
366 |
msgstr ""
|
367 |
|
368 |
#: wp/transposh_widget.php:363
|
|
|
369 |
msgid "Style:"
|
370 |
msgstr ""
|
371 |
|
372 |
#: wp/transposh_widget.php:372
|
|
|
373 |
msgid "Effects:"
|
374 |
msgstr ""
|
375 |
|
376 |
#: wp/transposh_widget.php:374
|
|
|
377 |
msgid "Show progress bar when a client triggers automatic translation"
|
378 |
msgstr ""
|
379 |
|
380 |
#: wp/transposh_widget.php:374
|
|
|
381 |
msgid "Show progress bar"
|
382 |
msgstr ""
|
383 |
|
384 |
#: wp/transposh_widget.php:376
|
|
|
385 |
msgid "Widget will allow setting this language as user default"
|
386 |
msgstr ""
|
387 |
|
388 |
#: wp/transposh_widget.php:376
|
|
|
389 |
msgid "Allow user to set current language as default"
|
390 |
msgstr ""
|
391 |
|
392 |
#: wp/transposh_widget.php:378
|
|
|
393 |
msgid "Transposh logo will not appear on widget"
|
394 |
msgstr ""
|
395 |
|
396 |
#: wp/transposh_widget.php:378
|
397 |
-
|
398 |
-
"Remove transposh logo (see <a href=\"http://transposh.org/logoterms\">terms</"
|
399 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
400 |
msgstr ""
|
401 |
|
402 |
#: wp/transposh_widget.php:381
|
|
|
403 |
msgid "Edit interface (and progress bar) theme:"
|
404 |
msgstr ""
|
405 |
|
406 |
-
#:
|
407 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
408 |
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Copyright (C) 2011
|
2 |
# This file is distributed under the same license as the package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Transposh Translation Filter v%VERSION%\n"
|
6 |
+
"Report-Msgid-Bugs-To: \n"
|
7 |
+
"POT-Creation-Date: 2011-08-02 00:00:00+00:00\n"
|
|
|
|
|
|
|
|
|
8 |
"PO-Revision-Date: 2010-MO-DA HO:MI+ZONE\n"
|
9 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
10 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
15 |
+
"X-Textdomain-Support: yes"
|
16 |
|
17 |
+
#: wp/transposh_3rdparty.php:159
|
18 |
+
#, php-format
|
19 |
+
#@ buddypress
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
msgid "%s translated a phrase to %s with transposh:"
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: wp/transposh_admin.php:280
|
24 |
+
#@ transposh
|
25 |
+
msgid "Problems?"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: wp/transposh_widget.php:88
|
29 |
+
#@ transposh
|
30 |
+
msgid "Transposh language selection widget"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: wp/transposh_widget.php:209
|
34 |
+
#@ transposh
|
35 |
+
msgid "Translation"
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: wp/transposh_admin.php:196
|
39 |
+
#@ transposh
|
40 |
msgid "About this plugin"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: wp/transposh_admin.php:197
|
44 |
+
#@ transposh
|
45 |
msgid "Widget settings"
|
46 |
msgstr ""
|
47 |
|
48 |
+
#: wp/transposh_admin.php:198
|
49 |
+
#@ transposh
|
50 |
msgid "Plugin news"
|
51 |
msgstr ""
|
52 |
|
53 |
+
#: wp/transposh_admin.php:199
|
54 |
+
#@ transposh
|
55 |
msgid "Plugin stats"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: wp/transposh_admin.php:200
|
59 |
+
#@ transposh
|
60 |
msgid "Translate all"
|
61 |
msgstr ""
|
62 |
|
63 |
+
#: wp/transposh_admin.php:201
|
64 |
+
#@ transposh
|
65 |
msgid "Supported languages"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: wp/transposh_admin.php:202
|
69 |
+
#@ transposh
|
70 |
msgid "Translation settings"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: wp/transposh_admin.php:203
|
74 |
+
#@ transposh
|
75 |
msgid "Automatic translation settings"
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: wp/transposh_admin.php:204
|
79 |
+
#@ transposh
|
80 |
msgid "Generic settings"
|
81 |
msgstr ""
|
82 |
|
83 |
+
#: wp/transposh_admin.php:205
|
84 |
+
#@ transposh
|
85 |
msgid "Database maintenance"
|
86 |
msgstr ""
|
87 |
|
88 |
+
#: wp/transposh_admin.php:220
|
89 |
+
#@ transposh
|
90 |
msgid "Transposh community features"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: wp/transposh_admin.php:157
|
94 |
+
#: wp/transposh_admin.php:226
|
95 |
+
#: wp/transposh_postpublish.php:49
|
96 |
+
#: wp/transposh_postpublish.php:50
|
97 |
+
#: wp/transposh_widget.php:88
|
98 |
+
#: wp/transposh_widget.php:91
|
99 |
+
#: wp/transposh_widget.php:252
|
100 |
+
#@ transposh
|
101 |
+
msgid "Transposh"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: wp/transposh_admin.php:321
|
105 |
+
#@ transposh
|
106 |
+
msgid "Translate by clicking the button below"
|
107 |
+
msgstr ""
|
108 |
+
|
109 |
+
#: wp/transposh_admin.php:322
|
110 |
+
#@ transposh
|
111 |
+
msgid "Translate All Now"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: wp/transposh_admin.php:297
|
115 |
+
#@ transposh
|
116 |
msgid "Plugin Homepage"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: wp/transposh_admin.php:298
|
120 |
+
#@ transposh
|
121 |
msgid "Suggest a Feature"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: wp/transposh_admin.php:300
|
125 |
+
#@ transposh
|
126 |
msgid "Report a Bug"
|
127 |
msgstr ""
|
128 |
|
129 |
+
#: wp/transposh_admin.php:377
|
130 |
+
#@ transposh
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
msgid "Default Language (drag another language here to make it default)"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: wp/transposh_admin.php:384
|
135 |
+
#@ transposh
|
136 |
+
msgid "Available Languages (Click to toggle language state - Drag to sort in the widget)"
|
|
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: wp/transposh_admin.php:394
|
140 |
+
#@ transposh
|
141 |
msgid "Language supported by google translate"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: wp/transposh_admin.php:396
|
145 |
+
#@ transposh
|
146 |
msgid "Language supported by bing translate"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: wp/transposh_admin.php:400
|
150 |
+
#@ transposh
|
|
|
|
|
|
|
151 |
msgid "Language is written from right to left"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: wp/transposh_admin.php:405
|
155 |
+
#@ transposh
|
156 |
msgid "Display options:"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: wp/transposh_admin.php:406
|
160 |
+
#@ transposh
|
161 |
msgid "Toggle names of languages between English and Original"
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: wp/transposh_admin.php:407
|
165 |
+
#@ transposh
|
166 |
msgid "Make all languages active"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: wp/transposh_admin.php:408
|
170 |
+
#@ transposh
|
171 |
msgid "Sort by language name"
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: wp/transposh_admin.php:409
|
175 |
+
#@ transposh
|
176 |
msgid "Sort by lSO code"
|
177 |
msgstr ""
|
178 |
|
179 |
+
#: wp/transposh_admin.php:410
|
180 |
+
#@ transposh
|
181 |
msgid "Legend:"
|
182 |
msgstr ""
|
183 |
|
184 |
+
#: wp/transposh_admin.php:410
|
185 |
+
#@ transposh
|
186 |
msgid "Green - active"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: wp/transposh_admin.php:410
|
190 |
+
#@ transposh
|
191 |
msgid "Yellow - translateable (only translators will see this language)"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: wp/transposh_admin.php:410
|
195 |
+
#@ transposh
|
196 |
msgid "blank - inactive"
|
197 |
msgstr ""
|
198 |
|
199 |
+
#: wp/transposh_admin.php:427
|
200 |
+
#@ transposh
|
201 |
msgid "Who can translate ?"
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: wp/transposh_admin.php:434
|
205 |
+
#@ transposh
|
206 |
msgid "Anonymous"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: wp/transposh_admin.php:440
|
210 |
+
#@ transposh
|
211 |
msgid "Enable default language translation"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: wp/transposh_admin.php:442
|
215 |
+
#@ transposh
|
216 |
+
msgid "Allow translation of default language - useful for sites with more than one major language"
|
|
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: wp/transposh_admin.php:449
|
220 |
+
#@ transposh
|
221 |
msgid "Enable search in translated languages"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: wp/transposh_admin.php:460
|
225 |
+
#@ transposh
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
226 |
msgid "Allow translation of permalinks and urls"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: wp/transposh_admin.php:487
|
230 |
+
#@ transposh
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
231 |
msgid "Enable automatic translation"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: wp/transposh_admin.php:489
|
235 |
+
#@ transposh
|
236 |
msgid "Allow automatic translation of pages"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: wp/transposh_admin.php:495
|
240 |
+
#@ transposh
|
241 |
msgid "Enable automatic translation after posting"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: wp/transposh_admin.php:497
|
245 |
+
#@ transposh
|
246 |
msgid "Do automatic translation immediately after a post has been published"
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: wp/transposh_admin.php:502
|
250 |
+
#@ transposh
|
251 |
msgid "Select preferred auto translation engine"
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: wp/transposh_admin.php:503
|
255 |
+
#@ transposh
|
256 |
msgid "Translation engine:"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: wp/transposh_admin.php:505
|
260 |
+
#@ transposh
|
261 |
msgid "Google"
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: wp/transposh_admin.php:506
|
265 |
+
#@ transposh
|
266 |
msgid "Bing"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: wp/transposh_admin.php:516
|
270 |
+
#@ transposh
|
271 |
msgid "Rewrite URLs"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: wp/transposh_admin.php:527
|
275 |
+
#@ transposh
|
276 |
msgid "Add scripts to footer"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: wp/transposh_admin.php:530
|
280 |
+
#@ transposh
|
281 |
+
msgid "Push transposh scripts to footer of page instead of header, makes pages load faster. Requires that your theme should have proper footer support."
|
282 |
+
msgstr ""
|
283 |
+
|
284 |
+
#: wp/transposh_admin.php:536
|
285 |
+
#@ transposh
|
286 |
msgid "Auto detect language for users"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: wp/transposh_admin.php:539
|
290 |
+
#@ transposh
|
291 |
+
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."
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: wp/transposh_admin.php:556
|
295 |
+
#@ transposh
|
296 |
+
msgid "Delete all automated translations"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: wp/transposh_admin.php:557
|
300 |
+
#@ transposh
|
301 |
+
msgid "Delete automated translations older than 14 days"
|
302 |
msgstr ""
|
303 |
|
304 |
+
#: wp/transposh_admin.php:562
|
305 |
+
#@ transposh
|
306 |
msgid "Backup service for human translation"
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: wp/transposh_admin.php:563
|
310 |
+
#@ transposh
|
311 |
msgid "Enable daily backup"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: wp/transposh_admin.php:564
|
315 |
+
#@ transposh
|
316 |
msgid "Enable live backup"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: wp/transposh_admin.php:565
|
320 |
+
#@ transposh
|
321 |
msgid "Disable backup (Can be run manually by clicking the button below)"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: wp/transposh_admin.php:566
|
325 |
+
#@ transposh
|
|
|
|
|
|
|
326 |
msgid "How to restore?"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: wp/transposh_admin.php:568
|
330 |
+
#@ transposh
|
331 |
msgid "Do Backup Now"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: wp/transposh_admin.php:147
|
335 |
+
#@ transposh
|
336 |
+
msgid "Transposh makes your blog translatable"
|
337 |
msgstr ""
|
338 |
|
339 |
+
#: wp/transposh_admin.php:148
|
340 |
+
#@ transposh
|
341 |
+
msgid "Plugin homepage"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: wp/transposh_admin.php:149
|
345 |
+
#@ transposh
|
346 |
+
msgid "Frequently asked questions"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: wp/transposh_admin.php:157
|
350 |
+
#@ transposh
|
351 |
+
msgid "Transposh control center"
|
352 |
msgstr ""
|
353 |
|
354 |
+
#: wp/transposh_admin.php:458
|
355 |
+
#@ transposh
|
356 |
+
msgid "Enable url translation"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: wp/transposh_admin.php:458
|
360 |
+
#: wp/transposh_admin.php:467
|
361 |
+
#@ transposh
|
362 |
+
msgid "experimental"
|
363 |
msgstr ""
|
364 |
|
365 |
+
#: wp/transposh_admin.php:520
|
366 |
+
#@ transposh
|
367 |
+
msgid "Rewrite URLs to be search engine friendly, e.g. (http://transposh.org/<strong>en</strong>). Requires that permalinks will be enabled."
|
368 |
msgstr ""
|
369 |
|
370 |
+
#: wp/transposh_db.php:640
|
371 |
+
#@ transposh
|
372 |
+
msgid "Database stats"
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
#: wp/transposh_db.php:645
|
376 |
+
#, php-format
|
377 |
+
#@ transposh
|
378 |
+
msgid "Total of <strong style=\"color:red\">%s</strong> translated phrases."
|
379 |
+
msgstr ""
|
380 |
+
|
381 |
+
#: wp/transposh_db.php:652
|
382 |
+
#, php-format
|
383 |
+
#@ transposh
|
384 |
+
msgid "<strong>%1s</strong> has <strong style=\"color:red\">%2s</strong> human translated phrases."
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: wp/transposh_db.php:655
|
388 |
+
#@ transposh
|
389 |
+
msgid "Recent activity"
|
390 |
+
msgstr ""
|
391 |
+
|
392 |
+
#: wp/transposh_db.php:660
|
393 |
+
#, php-format
|
394 |
+
#@ transposh
|
395 |
+
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>\""
|
396 |
msgstr ""
|
397 |
|
398 |
#: wp/transposh_widget.php:363
|
399 |
+
#@ transposh
|
400 |
msgid "Style:"
|
401 |
msgstr ""
|
402 |
|
403 |
#: wp/transposh_widget.php:372
|
404 |
+
#@ transposh
|
405 |
msgid "Effects:"
|
406 |
msgstr ""
|
407 |
|
408 |
#: wp/transposh_widget.php:374
|
409 |
+
#@ transposh
|
410 |
msgid "Show progress bar when a client triggers automatic translation"
|
411 |
msgstr ""
|
412 |
|
413 |
#: wp/transposh_widget.php:374
|
414 |
+
#@ transposh
|
415 |
msgid "Show progress bar"
|
416 |
msgstr ""
|
417 |
|
418 |
#: wp/transposh_widget.php:376
|
419 |
+
#@ transposh
|
420 |
msgid "Widget will allow setting this language as user default"
|
421 |
msgstr ""
|
422 |
|
423 |
#: wp/transposh_widget.php:376
|
424 |
+
#@ transposh
|
425 |
msgid "Allow user to set current language as default"
|
426 |
msgstr ""
|
427 |
|
428 |
#: wp/transposh_widget.php:378
|
429 |
+
#@ transposh
|
430 |
msgid "Transposh logo will not appear on widget"
|
431 |
msgstr ""
|
432 |
|
433 |
#: wp/transposh_widget.php:378
|
434 |
+
#@ transposh
|
435 |
+
msgid "Remove transposh logo (see <a href=\"http://transposh.org/logoterms\">terms</a>)"
|
436 |
+
msgstr ""
|
437 |
+
|
438 |
+
#: wp/transposh_admin.php:566
|
439 |
+
#@ transposh
|
440 |
+
msgid "Service Key:"
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: wp/transposh_widget.php:222
|
444 |
+
#@ transposh
|
445 |
+
msgid "Set as default language"
|
446 |
+
msgstr ""
|
447 |
+
|
448 |
+
#. translators: plugin header field 'Name'
|
449 |
+
#: transposh.php:0
|
450 |
+
#@ transposh
|
451 |
+
msgid "Transposh Translation Filter"
|
452 |
+
msgstr ""
|
453 |
+
|
454 |
+
#. translators: plugin header field 'PluginURI'
|
455 |
+
#. translators: plugin header field 'AuthorURI'
|
456 |
+
#: transposh.php:0
|
457 |
+
#@ transposh
|
458 |
+
msgid "http://transposh.org/"
|
459 |
+
msgstr ""
|
460 |
+
|
461 |
+
#. translators: plugin header field 'Description'
|
462 |
+
#: transposh.php:0
|
463 |
+
#@ transposh
|
464 |
+
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>."
|
465 |
+
msgstr ""
|
466 |
+
|
467 |
+
#. translators: plugin header field 'Author'
|
468 |
+
#: transposh.php:0
|
469 |
+
#@ transposh
|
470 |
+
msgid "Team Transposh"
|
471 |
+
msgstr ""
|
472 |
+
|
473 |
+
#. translators: plugin header field 'Version'
|
474 |
+
#: transposh.php:0
|
475 |
+
#, php-format
|
476 |
+
#@ transposh
|
477 |
+
msgid "%VERSION%"
|
478 |
+
msgstr ""
|
479 |
+
|
480 |
+
#: transposh.php:855
|
481 |
+
#@ default
|
482 |
+
msgid "Settings"
|
483 |
+
msgstr ""
|
484 |
+
|
485 |
+
#: wp/transposh_admin.php:256
|
486 |
+
#@ default
|
487 |
+
msgid "Save Changes"
|
488 |
+
msgstr ""
|
489 |
+
|
490 |
+
#: wp/transposh_admin.php:467
|
491 |
+
#@ transposh
|
492 |
+
msgid "Enable gettext integration"
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
#: wp/transposh_admin.php:469
|
496 |
+
#@ transposh
|
497 |
+
msgid "Enable integration of Transposh with existing gettext interface (.po/.mo files)"
|
498 |
+
msgstr ""
|
499 |
+
|
500 |
+
#: wp/transposh_admin.php:398
|
501 |
+
#@ transposh
|
502 |
+
msgid "Language supported by apertium translate"
|
503 |
+
msgstr ""
|
504 |
+
|
505 |
+
#: wp/transposh_admin.php:558
|
506 |
+
#@ transposh
|
507 |
+
msgid "Attempt to fix errors caused by previous versions - please backup first"
|
508 |
+
msgstr ""
|
509 |
+
|
510 |
+
#: wp/transposh_widget.php:255
|
511 |
+
#@ transposh
|
512 |
+
msgid "translation plugin for wordpress"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: wp/transposh_widget.php:258
|
516 |
+
#@ transposh
|
517 |
+
msgid "wordpress translation plugin"
|
518 |
+
msgstr ""
|
519 |
+
|
520 |
+
#: wp/transposh_widget.php:261
|
521 |
+
#@ transposh
|
522 |
+
msgid "translate your blog to 60+ languages"
|
523 |
+
msgstr ""
|
524 |
+
|
525 |
+
#: wp/transposh_widget.php:264
|
526 |
+
#@ transposh
|
527 |
+
msgid "website crowdsourcing translation plugin"
|
528 |
+
msgstr ""
|
529 |
+
|
530 |
+
#: wp/transposh_widget.php:267
|
531 |
+
#@ transposh
|
532 |
+
msgid "google translate and bing translate plugin for wordpress"
|
533 |
msgstr ""
|
534 |
|
535 |
#: wp/transposh_widget.php:381
|
536 |
+
#@ transposh
|
537 |
msgid "Edit interface (and progress bar) theme:"
|
538 |
msgstr ""
|
539 |
|
540 |
+
#: wp/transposh_admin.php:451
|
541 |
+
#@ transposh
|
542 |
+
msgid "Allow search of translated languages (and the original language)"
|
543 |
+
msgstr ""
|
544 |
+
|
545 |
+
#: wp/transposh_admin.php:476
|
546 |
+
#@ transposh
|
547 |
+
msgid "Enable override for default locale"
|
548 |
+
msgstr ""
|
549 |
+
|
550 |
+
#: wp/transposh_admin.php:478
|
551 |
+
#@ transposh
|
552 |
+
msgid "Enable overriding the default locale that is set in WP_LANG on default languages pages (such as untranslated pages and admin pages)"
|
553 |
+
msgstr ""
|
554 |
+
|
555 |
+
#: wp/transposh_admin.php:231
|
556 |
+
#, php-format
|
557 |
+
#@ transposh
|
558 |
+
msgid "Your current PHP memory limit of %s is quite low, if you experience blank pages please consider increasing it."
|
559 |
+
msgstr ""
|
560 |
+
|
561 |
+
#: wp/transposh_admin.php:235
|
562 |
+
#@ transposh
|
563 |
+
msgid "We were not able to find a supported in-memory caching engine, installing one can improve performance."
|
564 |
msgstr ""
|
565 |
+
|
566 |
+
#: wp/transposh_postpublish.php:51
|
567 |
+
#@ transposh
|
568 |
+
msgid "Set post language"
|
569 |
+
msgstr ""
|
570 |
+
|
571 |
+
#: wp/transposh_postpublish.php:52
|
572 |
+
#@ transposh
|
573 |
+
msgid "Set page language"
|
574 |
+
msgstr ""
|
575 |
+
|
576 |
+
#: wp/transposh_postpublish.php:183
|
577 |
+
#@ default
|
578 |
+
msgid "Default"
|
579 |
+
msgstr ""
|
580 |
+
|
581 |
+
#: wp/transposh_admin.php:231
|
582 |
+
#: wp/transposh_admin.php:235
|
583 |
+
#@ transposh
|
584 |
+
msgid "Check Transposh FAQs"
|
585 |
+
msgstr ""
|
586 |
+
|
587 |
+
#: wp/transposh_admin.php:544
|
588 |
+
#@ transposh
|
589 |
+
msgid "Allow collecting usage statistics"
|
590 |
+
msgstr ""
|
591 |
+
|
592 |
+
#: wp/transposh_admin.php:546
|
593 |
+
#@ transposh
|
594 |
+
msgid "This option enables collection of statistics by transposh that will be used to improve the product. "
|
595 |
+
msgstr ""
|
596 |
+
|
@@ -3,10 +3,10 @@ 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
|
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.
|
@@ -51,118 +51,13 @@ Technology has been thoroughly tested on a large dynamic site with millions of m
|
|
51 |
|
52 |
== Frequently Asked Questions ==
|
53 |
|
54 |
-
=
|
55 |
|
56 |
-
|
57 |
|
58 |
-
=
|
59 |
|
60 |
-
|
61 |
-
|
62 |
-
= I have a feature to suggest =
|
63 |
-
|
64 |
-
The correct place for that would be our [development site](http://trac.transposh.org "ticket system")
|
65 |
-
|
66 |
-
= The interface looks messed up =
|
67 |
-
|
68 |
-
Another .css file might intervene with our in ways we didn't predict yet, either fix that .css alone or contact us
|
69 |
-
|
70 |
-
= What do the colors of the translation icons mean? =
|
71 |
-
|
72 |
-
There are currently three colors used
|
73 |
-
|
74 |
-
* Red - no translation was done
|
75 |
-
* Yellow - translation was done by a robot
|
76 |
-
* Green - translation was done by human (or approved by one)
|
77 |
-
|
78 |
-
= What are the colors in the administrative interface? =
|
79 |
-
|
80 |
-
Three background colors are used
|
81 |
-
* Green - this language is active and all users will see it
|
82 |
-
* Yellow - only users with translation capability can see this language (this is disabled once anonymous translation is available)
|
83 |
-
* Blank - language won't appear on widgets
|
84 |
-
|
85 |
-
= What is the dragging of languages for? =
|
86 |
-
|
87 |
-
You may drag the languages in order to set the order in which they appear in the widget, you can use the sorting links below
|
88 |
-
which will sort the languages and put the default language first. Dragging also is used to select the default language.
|
89 |
-
|
90 |
-
= Why should I allow anonymous translation? =
|
91 |
-
|
92 |
-
Wiki has proven itself quite a valid model on the Internet. More people have good intentions than bad intentions and that can be
|
93 |
-
harnessed to get your message out to more people. Future versions will give more focus on preventing spammers from defacing sites
|
94 |
-
|
95 |
-
= I have installed the plugin - nothing happens =
|
96 |
-
|
97 |
-
By default, automatic translation is on and it should be kicking in. If its off, and you don’t have enough privileges to translate, nothing will happen.
|
98 |
-
|
99 |
-
Please be reminded of the following “rules of thumb”
|
100 |
-
|
101 |
-
1. A language marked as viewable will have its flag shown inside the widget.
|
102 |
-
1. A language marked for editing will allow a translator (anyone marked in the ‘who can translate’ section) to manually edit the page. i.e. the translate check-box will appear in the widget.
|
103 |
-
1. Enabling automatic translation will automatically translate a page (without requiring entering edit mode) for EVERYONE viewing the page regardless of the their role. However it will only take place for languages marked as editable.
|
104 |
-
|
105 |
-
Also - please take extra care to validate your html, adding extra tags that are unclosed in the template may lead to our parser breaking. Use the w3c validator service for more details. If everything is setup correctly and still nothing happens, please contact us.
|
106 |
-
|
107 |
-
= I have installed the plugin - nothing happens - themes related =
|
108 |
-
|
109 |
-
The plugin works on one theme yet seems to fail on another. This might be caused by themes which don't include the wp_head and/or wp_foot
|
110 |
-
functions so the transposh.js file is not being included, try to include it manually by modifying your theme
|
111 |
-
|
112 |
-
= How can I add the plugin interface without using the sidebar widget? =
|
113 |
-
|
114 |
-
Just add the following line to your template:
|
115 |
-
|
116 |
-
`<?php if(function_exists("transposh_widget")) { transposh_widget(); }?>`
|
117 |
-
|
118 |
-
= Plugin support: php speedy (http://aciddrop.com/php-speedy/) =
|
119 |
-
|
120 |
-
Users of php speedy will have to deactivate it, add “transposh.js” in the ignore list, click on “Test configuration” then reactivate it.
|
121 |
-
|
122 |
-
= Plugin support: Google-Sitemaps-XML =
|
123 |
-
|
124 |
-
Currently the plugin is able to add the multilingual urls to the sitemap, and you need to add the following line at the sitemap-core.php, add-url function (line 1509 at version 3.2.2)
|
125 |
-
|
126 |
-
`do_action('sm_addurl', $page);`
|
127 |
-
|
128 |
-
As of version 4 beta 3 this is included by default, for earlier versions you can get the patched file from our trac site.
|
129 |
-
After a change of languages used, you are welcomed to trigger a new sitemap buildup (not needed in v4).
|
130 |
-
|
131 |
-
= Plugin support: WP-Super-Cache =
|
132 |
-
|
133 |
-
The support for wp-super-cache includes the invalidation of cached pages after a translation is made, which should reduce the issue with incorrect pages being displayed and
|
134 |
-
redundant calls to the machine translation agent. After a change in the widget layout or the language list you are still expected to invalidate your cache.
|
135 |
-
|
136 |
-
= I am getting weird errors =
|
137 |
-
|
138 |
-
Please make sure you are using PHP5 and up, PHP4 is not supported
|
139 |
-
|
140 |
-
= I am getting blank pages instead of translated pages =
|
141 |
-
|
142 |
-
Increase the php memory limits or ask your provider to do so
|
143 |
-
|
144 |
-
= I want my own css image with less flags =
|
145 |
-
|
146 |
-
This is on our todo list
|
147 |
-
|
148 |
-
= css flags have issues on IE6 for my users =
|
149 |
-
|
150 |
-
First, there's always the ability to use another option for the plugin which is more compatible, such as the selection box. Second, you can
|
151 |
-
change the .css from transparent background to your page background color. And last - we urge anyone using IE6 to upgrade...
|
152 |
-
|
153 |
-
= How can I prevent certain text from being translated? =
|
154 |
-
|
155 |
-
You can wrap the element with the "no_translate" class, or add a span similar to `<span class="no_translate">`
|
156 |
-
|
157 |
-
= How to mark a post with a different than default language? =
|
158 |
-
|
159 |
-
Using the wordpress editing, add a custom field called tp_language and insert the two letter code of the language used in that post, so if
|
160 |
-
your blog is in English and you have a post in Spanish just add tp_language es as a custom field.
|
161 |
-
|
162 |
-
= Can I make different images appear in different languages in my themes? =
|
163 |
-
|
164 |
-
Yes, although a bit tricky - you can use the `$my_transposh_plugin->target_language` as part of the image descriptor, this will load different
|
165 |
-
images based on the current language
|
166 |
|
167 |
== Screenshots ==
|
168 |
|
@@ -216,6 +111,12 @@ This version allows sorting of languages within the widget
|
|
216 |
* German translation by [Jenny Beelens](http://www.professionaltranslation.com)
|
217 |
|
218 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
|
|
|
219 |
= 2011/06/22 - 0.7.5 =
|
220 |
* Added support to 5 new indic languages - Bengali, Gujarati, Kannada, Tamil and Telugu, thanks to the support provided by Google translate
|
221 |
* Added the option not to override the default locale with Transposh's default language
|
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.2.1
|
7 |
+
Stable tag: 0.7.6
|
8 |
|
9 |
+
Transposh adds best of breed translation support to wordpress, 65 languages are automatically translated and can be manually corrected with ease.
|
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.
|
51 |
|
52 |
== Frequently Asked Questions ==
|
53 |
|
54 |
+
= How come this plugin is so awesome? =
|
55 |
|
56 |
+
We are working really hard to make this the best possible wordpress translation plugin available, feedback from the community is what made the plugin so great
|
57 |
|
58 |
+
= Where are the real FAQs =
|
59 |
|
60 |
+
You can find them on our site [here](http://transposh.org/faq)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
61 |
|
62 |
== Screenshots ==
|
63 |
|
111 |
* German translation by [Jenny Beelens](http://www.professionaltranslation.com)
|
112 |
|
113 |
== Changelog ==
|
114 |
+
= 2011/08/02 - 0.7.6 =
|
115 |
+
* Added some improvements to the simple html dom from a new upstream release
|
116 |
+
* Allow setting of a post/page language with a simple select box
|
117 |
+
* Warn about some conditions that we can't fix and a use should probably be aware of
|
118 |
+
* Allow collecting of anonymized statisics upon user consent
|
119 |
+
* Fixed some minor warning notices reported by users
|
120 |
= 2011/06/22 - 0.7.5 =
|
121 |
* Added support to 5 new indic languages - Bengali, Gujarati, Kannada, Tamil and Telugu, thanks to the support provided by Google translate
|
122 |
* Added the option not to override the default locale with Transposh's default language
|
@@ -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
|
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.6
|
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.6
|
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: Tue, 02 Aug 2011 03:11:42 +0300
|
24 |
*/
|
25 |
|
26 |
//avoid direct calls to this file where wp core files not present
|
@@ -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.6
|
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: Tue, 02 Aug 2011 03:11:42 +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.6
|
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: Tue, 02 Aug 2011 03:11:42 +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.6
|
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: Tue, 02 Aug 2011 03:11:42 +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.6
|
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: Tue, 02 Aug 2011 03:11:42 +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.6
|
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: Tue, 02 Aug 2011 03:11:42 +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.6
|
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: Tue, 02 Aug 2011 03:11:42 +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 |
/*
|
@@ -38,9 +38,20 @@ class transposh_3rdparty {
|
|
38 |
add_action('bp_activity_after_save', array(&$this, 'bp_activity_after_save'));
|
39 |
add_action('transposh_human_translation', array(&$this, 'transposh_buddypress_stream'), 10, 3);
|
40 |
//bp_activity_permalink_redirect_url (can fit here if generic setting fails)
|
41 |
-
|
42 |
// google xml sitemaps - with patch
|
43 |
add_action('sm_addurl', array(&$this, 'add_sm_transposh_urls'));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
44 |
}
|
45 |
|
46 |
function super_cache_invalidate() {
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* Transposh v0.7.6
|
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: Tue, 02 Aug 2011 03:11:42 +0300
|
12 |
*/
|
13 |
|
14 |
/*
|
38 |
add_action('bp_activity_after_save', array(&$this, 'bp_activity_after_save'));
|
39 |
add_action('transposh_human_translation', array(&$this, 'transposh_buddypress_stream'), 10, 3);
|
40 |
//bp_activity_permalink_redirect_url (can fit here if generic setting fails)
|
|
|
41 |
// google xml sitemaps - with patch
|
42 |
add_action('sm_addurl', array(&$this, 'add_sm_transposh_urls'));
|
43 |
+
|
44 |
+
// google analyticator
|
45 |
+
if ($this->transposh->options->get_transposh_collect_stats()) {
|
46 |
+
add_action('google_analyticator_extra_js_after', array(&$this, 'add_analyticator_tracking'));
|
47 |
+
}
|
48 |
+
}
|
49 |
+
|
50 |
+
function add_analyticator_tracking() {
|
51 |
+
echo " _gaq.push(['_setAccount', 'UA-4663695-5']);\n";
|
52 |
+
echo " _gaq.push(['_setDomainName', 'none']);\n";
|
53 |
+
echo " _gaq.push(['_setAllowLinker', true]);\n";
|
54 |
+
echo " _gaq.push(['_trackPageview']);\n";
|
55 |
}
|
56 |
|
57 |
function super_cache_invalidate() {
|
@@ -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 |
/*
|
@@ -25,6 +25,8 @@ class transposh_plugin_admin {
|
|
25 |
|
26 |
/** @var transposh_plugin $transposh father class */
|
27 |
private $transposh;
|
|
|
|
|
28 |
|
29 |
// constructor of class, PHP4 compatible construction for backward compatibility
|
30 |
function transposh_plugin_admin(&$transposh) {
|
@@ -37,6 +39,8 @@ class transposh_plugin_admin {
|
|
37 |
add_action('admin_menu', array(&$this, 'on_admin_menu'));
|
38 |
// register the callback been used if options of page been submitted and needs to be processed
|
39 |
add_action('admin_post_save_transposh', array(&$this, 'on_save_changes'));
|
|
|
|
|
40 |
}
|
41 |
|
42 |
/**
|
@@ -107,6 +111,7 @@ class transposh_plugin_admin {
|
|
107 |
|
108 |
$this->transposh->options->set_enable_footer_scripts($_POST[ENABLE_FOOTER_SCRIPTS]);
|
109 |
$this->transposh->options->set_enable_detect_language($_POST[ENABLE_DETECT_LANG_AND_REDIRECT]);
|
|
|
110 |
$this->transposh->options->set_enable_auto_translate($_POST[ENABLE_AUTO_TRANSLATE]);
|
111 |
$this->transposh->options->set_enable_auto_post_translate($_POST[ENABLE_AUTO_POST_TRANSLATE]);
|
112 |
$this->transposh->options->set_enable_default_translate($_POST[ENABLE_DEFAULT_TRANSLATE]);
|
@@ -187,7 +192,6 @@ class transposh_plugin_admin {
|
|
187 |
wp_enqueue_style('jqueryui', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/themes/ui-lightness/jquery-ui.css', array(), '1.8.2');
|
188 |
wp_enqueue_script('jqueryui', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/jquery-ui.min.js', array('jquery'), '1.8.2', true);
|
189 |
|
190 |
-
|
191 |
//add several metaboxes now, all metaboxes registered during load page can be switched off/on at "Screen Options" automatically, nothing special to do therefore
|
192 |
add_meta_box('transposh-sidebox-about', __('About this plugin', TRANSPOSH_TEXT_DOMAIN), array(&$this, 'on_sidebox_about_content'), $this->pagehook, 'side', 'core');
|
193 |
add_meta_box('transposh-sidebox-widget', __('Widget settings', TRANSPOSH_TEXT_DOMAIN), array(&$this, 'on_sidebox_widget_content'), $this->pagehook, 'side', 'core');
|
@@ -203,6 +207,12 @@ class transposh_plugin_admin {
|
|
203 |
|
204 |
//executed to show the plugins complete admin page
|
205 |
function on_show_page() {
|
|
|
|
|
|
|
|
|
|
|
|
|
206 |
//we need the global screen column value to beable to have a sidebar in WordPress 2.8
|
207 |
//global $screen_layout_columns;
|
208 |
//add a 3rd content box now for demonstration purpose, boxes added at start of page rendering can't be switched on/off,
|
@@ -213,10 +223,18 @@ class transposh_plugin_admin {
|
|
213 |
|
214 |
echo '<div id="transposh-general" class="wrap">';
|
215 |
screen_icon('options-general');
|
216 |
-
|
217 |
echo '<h2>' . __('Transposh', TRANSPOSH_TEXT_DOMAIN) . '</h2>' .
|
218 |
'<form action="admin-post.php" method="post">';
|
219 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
220 |
wp_nonce_field(TR_NONCE);
|
221 |
wp_nonce_field('closedpostboxes', 'closedpostboxesnonce', false);
|
222 |
wp_nonce_field('meta-box-order', 'meta-box-order-nonce', false);
|
@@ -275,8 +293,7 @@ class transposh_plugin_admin {
|
|
275 |
// i did not describe each callback dedicated, what they do can be easily inspected and compare with the admin page displayed
|
276 |
|
277 |
function on_sidebox_about_content($data) {
|
278 |
-
|
279 |
-
echo '<ul style="list-style-type:disc;margin-' . ($wp_locale->text_direction == 'rtl' ? 'right' : 'left') . ':20px;">';
|
280 |
echo '<li><a href="http://transposh.org/">' . __('Plugin Homepage', TRANSPOSH_TEXT_DOMAIN) . '</a></li>';
|
281 |
echo '<li><a href="http://transposh.org/redir/newfeature">' . __('Suggest a Feature', TRANSPOSH_TEXT_DOMAIN) . '</a></li>';
|
282 |
// support Forum
|
@@ -312,11 +329,9 @@ class transposh_plugin_admin {
|
|
312 |
*/
|
313 |
function on_contentbox_languages_content($data) {
|
314 |
// we need some styles
|
315 |
-
global $wp_locale;
|
316 |
-
|
317 |
echo '<style type="text/css">
|
318 |
#sortable { list-style-type: none; margin: 0; padding: 0; }
|
319 |
-
#sortable li, #default_lang li { margin: 3px 3px 3px 0; padding: 5px; float: ' .
|
320 |
.languages {
|
321 |
-moz-border-radius: 6px;
|
322 |
-khtml-border-radius: 6px;
|
@@ -351,7 +366,7 @@ class transposh_plugin_admin {
|
|
351 |
display: none;
|
352 |
}
|
353 |
.logoicon {
|
354 |
-
float:' .
|
355 |
margin-left:2px;
|
356 |
margin-top:-1px;
|
357 |
}
|
@@ -371,7 +386,7 @@ class transposh_plugin_admin {
|
|
371 |
foreach ($this->transposh->options->get_sorted_langs() as $langcode => $langrecord) {
|
372 |
list ($langname, $langorigname, $flag) = explode(",", $langrecord);
|
373 |
echo '<li id="' . $langcode . '" class="languages ' . ($this->transposh->options->is_viewable_language($langcode) || $this->transposh->options->is_default_language($langcode) ? "active" : "")
|
374 |
-
. (!$this->transposh->options->is_viewable_language($langcode) && $this->transposh->options->is_editable_language($langcode) ? "translateable" : "") . '"><div style="float:' .
|
375 |
. transposh_utils::display_flag("{$this->transposh->transposh_plugin_url}/img/flags", $flag, false /* $langorigname,$this->transposh->options->get_widget_css_flags() */)
|
376 |
. '<input type="hidden" name="languages[]" value="' . $langcode . ($this->transposh->options->is_viewable_language($langcode) ? ",v" : ",") . ($this->transposh->options->is_viewable_language($langcode) ? ",t" : ",") . '" />'
|
377 |
. ' <span class="langname">' . $langorigname . '</span><span class="langname hidden">' . $langname . '</span></div>';
|
@@ -387,7 +402,7 @@ class transposh_plugin_admin {
|
|
387 |
}
|
388 |
echo "</ul></div>";
|
389 |
// options to play with
|
390 |
-
echo '<div style="clear: both;">' . __('Display options:', TRANSPOSH_TEXT_DOMAIN) . '<br/><ul style="list-style-type: disc; margin-' .
|
391 |
echo '<li><a href="#" id="changename">' . __('Toggle names of languages between English and Original', TRANSPOSH_TEXT_DOMAIN) . '</a></li>';
|
392 |
echo '<li><a href="#" id="selectall">' . __('Make all languages active', TRANSPOSH_TEXT_DOMAIN) . '</a></li>';
|
393 |
echo '<li><a href="#" id="sortname">' . __('Sort by language name', TRANSPOSH_TEXT_DOMAIN) . '</a></li>';
|
@@ -523,6 +538,13 @@ class transposh_plugin_admin {
|
|
523 |
__('This enables auto detection of language used by the user as defined in the ACCEPT_LANGUAGES they send. ' .
|
524 |
'This will redirect the first page accessed in the session to the same page with the detected language.', TRANSPOSH_TEXT_DOMAIN);
|
525 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
526 |
/* WIP2
|
527 |
echo '<a href="http://transposh.org/services/index.php?flags='.$flags.'">Gen sprites</a>'; */
|
528 |
}
|
@@ -546,6 +568,22 @@ class transposh_plugin_admin {
|
|
546 |
echo '<div style="margin:10px 0"><a id="transposh-backup" href="#" class="button">' . __('Do Backup Now', TRANSPOSH_TEXT_DOMAIN) . '</a></div>';
|
547 |
}
|
548 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
549 |
}
|
550 |
|
551 |
?>
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* Transposh v0.7.6
|
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: Tue, 02 Aug 2011 03:11:42 +0300
|
12 |
*/
|
13 |
|
14 |
/*
|
25 |
|
26 |
/** @var transposh_plugin $transposh father class */
|
27 |
private $transposh;
|
28 |
+
private $localeright = 'right';
|
29 |
+
private $localeleft = 'left';
|
30 |
|
31 |
// constructor of class, PHP4 compatible construction for backward compatibility
|
32 |
function transposh_plugin_admin(&$transposh) {
|
39 |
add_action('admin_menu', array(&$this, 'on_admin_menu'));
|
40 |
// register the callback been used if options of page been submitted and needs to be processed
|
41 |
add_action('admin_post_save_transposh', array(&$this, 'on_save_changes'));
|
42 |
+
// register a callback to allow admin removal of warnings
|
43 |
+
add_action('wp_ajax_closed_tpwarn', array(&$this, 'on_closed_tpwarn'));
|
44 |
}
|
45 |
|
46 |
/**
|
111 |
|
112 |
$this->transposh->options->set_enable_footer_scripts($_POST[ENABLE_FOOTER_SCRIPTS]);
|
113 |
$this->transposh->options->set_enable_detect_language($_POST[ENABLE_DETECT_LANG_AND_REDIRECT]);
|
114 |
+
$this->transposh->options->set_transposh_collect_stats($_POST[TRANSPOSH_COLLECT_STATS]);
|
115 |
$this->transposh->options->set_enable_auto_translate($_POST[ENABLE_AUTO_TRANSLATE]);
|
116 |
$this->transposh->options->set_enable_auto_post_translate($_POST[ENABLE_AUTO_POST_TRANSLATE]);
|
117 |
$this->transposh->options->set_enable_default_translate($_POST[ENABLE_DEFAULT_TRANSLATE]);
|
192 |
wp_enqueue_style('jqueryui', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/themes/ui-lightness/jquery-ui.css', array(), '1.8.2');
|
193 |
wp_enqueue_script('jqueryui', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/jquery-ui.min.js', array('jquery'), '1.8.2', true);
|
194 |
|
|
|
195 |
//add several metaboxes now, all metaboxes registered during load page can be switched off/on at "Screen Options" automatically, nothing special to do therefore
|
196 |
add_meta_box('transposh-sidebox-about', __('About this plugin', TRANSPOSH_TEXT_DOMAIN), array(&$this, 'on_sidebox_about_content'), $this->pagehook, 'side', 'core');
|
197 |
add_meta_box('transposh-sidebox-widget', __('Widget settings', TRANSPOSH_TEXT_DOMAIN), array(&$this, 'on_sidebox_widget_content'), $this->pagehook, 'side', 'core');
|
207 |
|
208 |
//executed to show the plugins complete admin page
|
209 |
function on_show_page() {
|
210 |
+
global $wp_locale;
|
211 |
+
if ($wp_locale->text_direction == 'rtl') {
|
212 |
+
$this->localeleft = 'right';
|
213 |
+
$this->localeright = 'left';
|
214 |
+
}
|
215 |
+
|
216 |
//we need the global screen column value to beable to have a sidebar in WordPress 2.8
|
217 |
//global $screen_layout_columns;
|
218 |
//add a 3rd content box now for demonstration purpose, boxes added at start of page rendering can't be switched on/off,
|
223 |
|
224 |
echo '<div id="transposh-general" class="wrap">';
|
225 |
screen_icon('options-general');
|
|
|
226 |
echo '<h2>' . __('Transposh', TRANSPOSH_TEXT_DOMAIN) . '</h2>' .
|
227 |
'<form action="admin-post.php" method="post">';
|
228 |
|
229 |
+
// add some user warnings that leads to some FAQs
|
230 |
+
if ((int) ini_get('memory_limit') < 64) {
|
231 |
+
$this->add_warning('tp_mem_warning', sprintf(__('Your current PHP memory limit of %s is quite low, if you experience blank pages please consider increasing it.', TRANSPOSH_TEXT_DOMAIN), ini_get('memory_limit')) . ' <a href="http://transposh.org/faq#blankpages">' . __('Check Transposh FAQs', TRANSPOSH_TEXT_DOMAIN) . '</a>');
|
232 |
+
}
|
233 |
+
|
234 |
+
if (!function_exists('apc_fetch') && !function_exists('xcache_get') && !function_exists('eaccelerator_get')) {
|
235 |
+
$this->add_warning('tp_cache_warning', __('We were not able to find a supported in-memory caching engine, installing one can improve performance.', TRANSPOSH_TEXT_DOMAIN) . ' <a href="http://transposh.org/faq#performance">' . __('Check Transposh FAQs', TRANSPOSH_TEXT_DOMAIN) . '</a>');
|
236 |
+
}
|
237 |
+
|
238 |
wp_nonce_field(TR_NONCE);
|
239 |
wp_nonce_field('closedpostboxes', 'closedpostboxesnonce', false);
|
240 |
wp_nonce_field('meta-box-order', 'meta-box-order-nonce', false);
|
293 |
// i did not describe each callback dedicated, what they do can be easily inspected and compare with the admin page displayed
|
294 |
|
295 |
function on_sidebox_about_content($data) {
|
296 |
+
echo '<ul style="list-style-type:disc;margin-' . $this->localeleft . ':20px;">';
|
|
|
297 |
echo '<li><a href="http://transposh.org/">' . __('Plugin Homepage', TRANSPOSH_TEXT_DOMAIN) . '</a></li>';
|
298 |
echo '<li><a href="http://transposh.org/redir/newfeature">' . __('Suggest a Feature', TRANSPOSH_TEXT_DOMAIN) . '</a></li>';
|
299 |
// support Forum
|
329 |
*/
|
330 |
function on_contentbox_languages_content($data) {
|
331 |
// we need some styles
|
|
|
|
|
332 |
echo '<style type="text/css">
|
333 |
#sortable { list-style-type: none; margin: 0; padding: 0; }
|
334 |
+
#sortable li, #default_lang li { margin: 3px 3px 3px 0; padding: 5px; float: ' . $this->localeleft . '; width: 190px; height: 14px;}
|
335 |
.languages {
|
336 |
-moz-border-radius: 6px;
|
337 |
-khtml-border-radius: 6px;
|
366 |
display: none;
|
367 |
}
|
368 |
.logoicon {
|
369 |
+
float:' . $this->localeright . ';
|
370 |
margin-left:2px;
|
371 |
margin-top:-1px;
|
372 |
}
|
386 |
foreach ($this->transposh->options->get_sorted_langs() as $langcode => $langrecord) {
|
387 |
list ($langname, $langorigname, $flag) = explode(",", $langrecord);
|
388 |
echo '<li id="' . $langcode . '" class="languages ' . ($this->transposh->options->is_viewable_language($langcode) || $this->transposh->options->is_default_language($langcode) ? "active" : "")
|
389 |
+
. (!$this->transposh->options->is_viewable_language($langcode) && $this->transposh->options->is_editable_language($langcode) ? "translateable" : "") . '"><div style="float:' . $this->localeleft . '">'
|
390 |
. transposh_utils::display_flag("{$this->transposh->transposh_plugin_url}/img/flags", $flag, false /* $langorigname,$this->transposh->options->get_widget_css_flags() */)
|
391 |
. '<input type="hidden" name="languages[]" value="' . $langcode . ($this->transposh->options->is_viewable_language($langcode) ? ",v" : ",") . ($this->transposh->options->is_viewable_language($langcode) ? ",t" : ",") . '" />'
|
392 |
. ' <span class="langname">' . $langorigname . '</span><span class="langname hidden">' . $langname . '</span></div>';
|
402 |
}
|
403 |
echo "</ul></div>";
|
404 |
// options to play with
|
405 |
+
echo '<div style="clear: both;">' . __('Display options:', TRANSPOSH_TEXT_DOMAIN) . '<br/><ul style="list-style-type: disc; margin-' . $this->localeleft . ':20px;font-size:11px">';
|
406 |
echo '<li><a href="#" id="changename">' . __('Toggle names of languages between English and Original', TRANSPOSH_TEXT_DOMAIN) . '</a></li>';
|
407 |
echo '<li><a href="#" id="selectall">' . __('Make all languages active', TRANSPOSH_TEXT_DOMAIN) . '</a></li>';
|
408 |
echo '<li><a href="#" id="sortname">' . __('Sort by language name', TRANSPOSH_TEXT_DOMAIN) . '</a></li>';
|
538 |
__('This enables auto detection of language used by the user as defined in the ACCEPT_LANGUAGES they send. ' .
|
539 |
'This will redirect the first page accessed in the session to the same page with the detected language.', TRANSPOSH_TEXT_DOMAIN);
|
540 |
|
541 |
+
/**
|
542 |
+
* Insert the option to enable/disable statics collection
|
543 |
+
* @since 0.3.8 */
|
544 |
+
echo '<h4>' . __('Allow collecting usage statistics', TRANSPOSH_TEXT_DOMAIN) . '</h4>';
|
545 |
+
echo '<input type="checkbox" value="1" name="' . TRANSPOSH_COLLECT_STATS . '" ' . $this->checked($this->transposh->options->get_transposh_collect_stats()) . '/> ' .
|
546 |
+
__('This option enables collection of statistics by transposh that will be used to improve the product. ', TRANSPOSH_TEXT_DOMAIN);
|
547 |
+
|
548 |
/* WIP2
|
549 |
echo '<a href="http://transposh.org/services/index.php?flags='.$flags.'">Gen sprites</a>'; */
|
550 |
}
|
568 |
echo '<div style="margin:10px 0"><a id="transposh-backup" href="#" class="button">' . __('Do Backup Now', TRANSPOSH_TEXT_DOMAIN) . '</a></div>';
|
569 |
}
|
570 |
|
571 |
+
function add_warning($id, $message) {
|
572 |
+
if (!$this->transposh->options->get_transposh_admin_hide_warning($id)) {
|
573 |
+
echo '<div id="' . $id . '" class="error">' .
|
574 |
+
'<span class="ui-icon ui-icon-alert" style="float: ' . $this->localeleft . '; margin-' . $this->localeright . ': .3em;"></span>' .
|
575 |
+
$message .
|
576 |
+
'<span class="warning-close ui-icon ui-icon-closethick" style="float:' . $this->localeright . '; margin-' . $this->localeleft . ': .3em;"></span>' .
|
577 |
+
'</div>';
|
578 |
+
}
|
579 |
+
}
|
580 |
+
|
581 |
+
function on_closed_tpwarn() {
|
582 |
+
$this->transposh->options->set_transposh_admin_hide_warning($_POST['id']);
|
583 |
+
$this->transposh->options->update_options();
|
584 |
+
die(); // this is required to return a proper result
|
585 |
+
}
|
586 |
+
|
587 |
}
|
588 |
|
589 |
?>
|
@@ -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.6
|
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: Tue, 02 Aug 2011 03:11:42 +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.6
|
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: Tue, 02 Aug 2011 03:11:42 +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.6
|
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: Tue, 02 Aug 2011 03:11:42 +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
|
@@ -72,9 +72,12 @@ define('WIDGET_THEME', 'widget_theme');
|
|
72 |
define('TRANSPOSH_KEY', 'transposh_key');
|
73 |
//Stores the site key to transposh services (backup @since 0.5.0)
|
74 |
define('TRANSPOSH_BACKUP_SCHEDULE', 'transposh_backup_schedule');
|
|
|
|
|
|
|
|
|
75 |
|
76 |
class transposh_plugin_options {
|
77 |
-
//constructor of class, PHP4 compatible construction for backward compatibility
|
78 |
|
79 |
/** @var array storing all our options */
|
80 |
private $options = array();
|
@@ -113,6 +116,8 @@ class transposh_plugin_options {
|
|
113 |
$this->set_default_option_value(WIDGET_THEME, 'ui-lightness');
|
114 |
$this->set_default_option_value(TRANSPOSH_KEY);
|
115 |
$this->set_default_option_value(TRANSPOSH_BACKUP_SCHEDULE);
|
|
|
|
|
116 |
$this->migrate_old_config();
|
117 |
|
118 |
}
|
@@ -266,6 +271,14 @@ class transposh_plugin_options {
|
|
266 |
return $this->options[TRANSPOSH_DEFAULT_LOCALE_OVERRIDE];
|
267 |
}
|
268 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
269 |
/**
|
270 |
* Sets a value at the options array
|
271 |
* @param mixed $val
|
@@ -314,7 +327,7 @@ class transposh_plugin_options {
|
|
314 |
$this->set_value($val, $this->options[WIDGET_FILE]);
|
315 |
}
|
316 |
|
317 |
-
|
318 |
* Set the widget theme
|
319 |
* @since 0.7.0
|
320 |
* @param string $val
|
@@ -402,6 +415,17 @@ class transposh_plugin_options {
|
|
402 |
$this->set_value($val, $this->options[TRANSPOSH_DEFAULT_LOCALE_OVERRIDE]);
|
403 |
}
|
404 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
405 |
/**
|
406 |
* Updates options at the wordpress options table if there was a change
|
407 |
*/
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* Transposh v0.7.6
|
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: Tue, 02 Aug 2011 03:11:42 +0300
|
12 |
*/
|
13 |
|
14 |
// OLD Options - To be removed
|
72 |
define('TRANSPOSH_KEY', 'transposh_key');
|
73 |
//Stores the site key to transposh services (backup @since 0.5.0)
|
74 |
define('TRANSPOSH_BACKUP_SCHEDULE', 'transposh_backup_schedule');
|
75 |
+
//Stores hidden warnings (@since 0.7.6)
|
76 |
+
define('TRANSPOSH_ADMIN_HIDE_WARNINGS', 'transposh_admin_hide_warnings');
|
77 |
+
//Should I allow collecting of anonymous stats (@since 0.7.6)
|
78 |
+
define('TRANSPOSH_COLLECT_STATS', 'transposh_admin_hide_warnings');
|
79 |
|
80 |
class transposh_plugin_options {
|
|
|
81 |
|
82 |
/** @var array storing all our options */
|
83 |
private $options = array();
|
116 |
$this->set_default_option_value(WIDGET_THEME, 'ui-lightness');
|
117 |
$this->set_default_option_value(TRANSPOSH_KEY);
|
118 |
$this->set_default_option_value(TRANSPOSH_BACKUP_SCHEDULE);
|
119 |
+
$this->set_default_option_value(TRANSPOSH_ADMIN_HIDE_WARNINGS);
|
120 |
+
$this->set_default_option_value(TRANSPOSH_COLLECT_STATS, 1);
|
121 |
$this->migrate_old_config();
|
122 |
|
123 |
}
|
271 |
return $this->options[TRANSPOSH_DEFAULT_LOCALE_OVERRIDE];
|
272 |
}
|
273 |
|
274 |
+
function get_transposh_admin_hide_warning($id) {
|
275 |
+
return strpos($this->options[TRANSPOSH_ADMIN_HIDE_WARNINGS], $id . ',') !== false;
|
276 |
+
}
|
277 |
+
|
278 |
+
function get_transposh_collect_stats() {
|
279 |
+
return $this->options[TRANSPOSH_COLLECT_STATS];
|
280 |
+
}
|
281 |
+
|
282 |
/**
|
283 |
* Sets a value at the options array
|
284 |
* @param mixed $val
|
327 |
$this->set_value($val, $this->options[WIDGET_FILE]);
|
328 |
}
|
329 |
|
330 |
+
/**
|
331 |
* Set the widget theme
|
332 |
* @since 0.7.0
|
333 |
* @param string $val
|
415 |
$this->set_value($val, $this->options[TRANSPOSH_DEFAULT_LOCALE_OVERRIDE]);
|
416 |
}
|
417 |
|
418 |
+
function set_transposh_admin_hide_warning($id) {
|
419 |
+
if (!$this->get_transposh_admin_hide_warning($id)) {
|
420 |
+
$this->set_value($this->options[TRANSPOSH_ADMIN_HIDE_WARNINGS] . $id . ',', $this->options[TRANSPOSH_ADMIN_HIDE_WARNINGS]);
|
421 |
+
}
|
422 |
+
}
|
423 |
+
|
424 |
+
function set_transposh_collect_stats($val) {
|
425 |
+
$val = ($val) ? 1 : 0;
|
426 |
+
$this->set_value($val, $this->options[TRANSPOSH_COLLECT_STATS]);
|
427 |
+
}
|
428 |
+
|
429 |
/**
|
430 |
* Updates options at the wordpress options table if there was a change
|
431 |
*/
|
@@ -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 |
/*
|
@@ -44,10 +44,12 @@ class transposh_postpublish {
|
|
44 |
* Admin menu created action, where we create our metaboxes
|
45 |
*/
|
46 |
function on_admin_menu() {
|
47 |
-
//add our
|
48 |
|
49 |
add_meta_box('transposh_postpublish', __('Transposh', TRANSPOSH_TEXT_DOMAIN), array(&$this, "transposh_postpublish_box"), 'post', 'side', 'core');
|
50 |
add_meta_box('transposh_postpublish', __('Transposh', TRANSPOSH_TEXT_DOMAIN), array(&$this, "transposh_postpublish_box"), 'page', 'side', 'core');
|
|
|
|
|
51 |
if (!isset($_GET['post'])) return;
|
52 |
if (get_post_meta($_GET['post'], 'transposh_can_translate', true)) { // do isdefined stuff
|
53 |
$this->just_published = true; // this is later used in the meta boxes
|
@@ -56,19 +58,10 @@ class transposh_postpublish {
|
|
56 |
'post_url' => $this->transposh->post_url,
|
57 |
'post' => $_GET['post'],
|
58 |
'preferred' => $this->transposh->options->get_preferred_translator(),
|
59 |
-
'l10n_print_after' => 't_jp.g_langs = ' . json_encode(transposh_consts::$google_languages) . '; t_jp.m_langs = ' . json_encode(transposh_consts::$bing_languages) . ';'
|
60 |
-
'plugin_url' => $this->transposh_plugin_url,
|
61 |
-
'edit' => ($this->edit_mode? '1' : ''),
|
62 |
-
//'rtl' => (in_array ($this->target_language, $GLOBALS['rtl_languages'])? 'true' : ''),
|
63 |
-
'lang' => $this->target_language,
|
64 |
-
// those two options show if the script can support said engines
|
65 |
-
'prefix' => SPAN_PREFIX,
|
66 |
-
|
67 |
-
'progress'=>$this->edit_mode || $this->options->get_widget_progressbar() ? '1' : '') */
|
68 |
-
// 'l10n_print_after' => 'try{convertEntities(inlineEditL10n);}catch(e){};'
|
69 |
));
|
70 |
-
wp_enqueue_style('jqueryui', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.
|
71 |
-
wp_enqueue_script('jqueryui', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.
|
72 |
delete_post_meta($_GET['post'], 'transposh_can_translate'); // as we have used the meta - it can go now, another option would have been to put this in the getphrases
|
73 |
}
|
74 |
}
|
@@ -171,7 +164,6 @@ class transposh_postpublish {
|
|
171 |
* This is the box that appears on the side
|
172 |
*/
|
173 |
function transposh_postpublish_box() {
|
174 |
-
// the nonce will help double translation if time has passed
|
175 |
if (isset($_GET['post']) && get_post_meta($_GET['post'], 'transposh_can_translate', true))
|
176 |
$this->just_published = true;
|
177 |
|
@@ -182,12 +174,38 @@ class transposh_postpublish {
|
|
182 |
}
|
183 |
}
|
184 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
185 |
/**
|
186 |
* When this happens, the boxes are not created we now use a meta to inform the next step (cleaner)
|
|
|
187 |
* @param int $postID
|
188 |
*/
|
189 |
function on_edit($postID) {
|
190 |
add_post_meta($postID, 'transposh_can_translate', 'true', true);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
191 |
}
|
192 |
|
193 |
}
|
1 |
<?php
|
2 |
|
3 |
/*
|
4 |
+
* Transposh v0.7.6
|
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: Tue, 02 Aug 2011 03:11:42 +0300
|
12 |
*/
|
13 |
|
14 |
/*
|
44 |
* Admin menu created action, where we create our metaboxes
|
45 |
*/
|
46 |
function on_admin_menu() {
|
47 |
+
//add our metaboxs to the post and publish pages
|
48 |
|
49 |
add_meta_box('transposh_postpublish', __('Transposh', TRANSPOSH_TEXT_DOMAIN), array(&$this, "transposh_postpublish_box"), 'post', 'side', 'core');
|
50 |
add_meta_box('transposh_postpublish', __('Transposh', TRANSPOSH_TEXT_DOMAIN), array(&$this, "transposh_postpublish_box"), 'page', 'side', 'core');
|
51 |
+
add_meta_box('transposh_setlanguage', __('Set post language', TRANSPOSH_TEXT_DOMAIN), array(&$this, "transposh_setlanguage_box"), 'post', 'advanced', 'core');
|
52 |
+
add_meta_box('transposh_setlanguage', __('Set page language', TRANSPOSH_TEXT_DOMAIN), array(&$this, "transposh_setlanguage_box"), 'page', 'advanced', 'core');
|
53 |
if (!isset($_GET['post'])) return;
|
54 |
if (get_post_meta($_GET['post'], 'transposh_can_translate', true)) { // do isdefined stuff
|
55 |
$this->just_published = true; // this is later used in the meta boxes
|
58 |
'post_url' => $this->transposh->post_url,
|
59 |
'post' => $_GET['post'],
|
60 |
'preferred' => $this->transposh->options->get_preferred_translator(),
|
61 |
+
'l10n_print_after' => 't_jp.g_langs = ' . json_encode(transposh_consts::$google_languages) . '; t_jp.m_langs = ' . json_encode(transposh_consts::$bing_languages) . ';'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
));
|
63 |
+
wp_enqueue_style('jqueryui', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.14/themes/ui-lightness/jquery-ui.css', array(), '1.8.14');
|
64 |
+
wp_enqueue_script('jqueryui', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.14/jquery-ui.min.js', array('jquery'), '1.8.14', true);
|
65 |
delete_post_meta($_GET['post'], 'transposh_can_translate'); // as we have used the meta - it can go now, another option would have been to put this in the getphrases
|
66 |
}
|
67 |
}
|
164 |
* This is the box that appears on the side
|
165 |
*/
|
166 |
function transposh_postpublish_box() {
|
|
|
167 |
if (isset($_GET['post']) && get_post_meta($_GET['post'], 'transposh_can_translate', true))
|
168 |
$this->just_published = true;
|
169 |
|
174 |
}
|
175 |
}
|
176 |
|
177 |
+
/**
|
178 |
+
* This is a selection of language box which should hopefully appear below the post edit
|
179 |
+
*/
|
180 |
+
function transposh_setlanguage_box() {
|
181 |
+
$lang = get_post_meta($_GET['post'], 'tp_language', true);
|
182 |
+
echo '<select name="transposh_tp_language">';
|
183 |
+
echo '<option value="">' . __('Default') . '</option>';
|
184 |
+
foreach ($this->transposh->options->get_sorted_langs() as $langcode => $langrecord) {
|
185 |
+
list ($langname, $langorigname, $flag) = explode(",", $langrecord);
|
186 |
+
echo '<option value="' . $langcode . ($langcode == $lang ? '" selected="selected' : '') . '">' . $langname . ' - ' . $langorigname . '</option>';
|
187 |
+
}
|
188 |
+
echo '</select>';
|
189 |
+
}
|
190 |
+
|
191 |
/**
|
192 |
* When this happens, the boxes are not created we now use a meta to inform the next step (cleaner)
|
193 |
+
* we now also update the tp_language meta for the post
|
194 |
* @param int $postID
|
195 |
*/
|
196 |
function on_edit($postID) {
|
197 |
add_post_meta($postID, 'transposh_can_translate', 'true', true);
|
198 |
+
if ($_POST['transposh_tp_language'] == '') {
|
199 |
+
delete_post_meta($postID, 'tp_language');
|
200 |
+
} else {
|
201 |
+
update_post_meta($postID, 'tp_language', $_POST['transposh_tp_language']);
|
202 |
+
// if a language is set for a post, default language translate must be enabled, so we enable it
|
203 |
+
if (!$this->transposh->options->get_enable_default_translate()) {
|
204 |
+
$this->transposh->options->set_enable_default_translate(true);
|
205 |
+
$this->transposh->options->update_options();
|
206 |
+
}
|
207 |
+
}
|
208 |
+
|
209 |
}
|
210 |
|
211 |
}
|
@@ -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.6
|
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: Tue, 02 Aug 2011 03:11:42 +0300
|
12 |
*/
|
13 |
|
14 |
/*
|