Version Description
- Added Argentina and Colombia alternative flags
- Fixed bug in Nice looking dropdown look related to clicking the last dropdown element
- Fixed Quebec flag issue
- Fixed caching incompatability issue in nice looking dropdown look with GoDaddy cache, W3 Total Cache and WP Fastest Cache
Download this release
Release Info
| Developer | edo888 |
| Plugin | |
| Version | 2.8.14 |
| Comparing to | |
| See all releases | |
Code changes from version 2.8.13 to 2.8.14
- flags/16/es-ar.png +0 -0
- flags/16/es-co.png +0 -0
- flags/24/es-ar.png +0 -0
- flags/24/es-co.png +0 -0
- flags/32/es-ar.png +0 -0
- flags/32/es-co.png +0 -0
- flags/48/es-ar.png +0 -0
- flags/48/es-co.png +0 -0
- gtranslate.php +44 -13
- readme.txt +11 -3
flags/16/es-ar.png
ADDED
|
Binary file
|
flags/16/es-co.png
ADDED
|
Binary file
|
flags/24/es-ar.png
ADDED
|
Binary file
|
flags/24/es-co.png
ADDED
|
Binary file
|
flags/32/es-ar.png
ADDED
|
Binary file
|
flags/32/es-co.png
ADDED
|
Binary file
|
flags/48/es-ar.png
ADDED
|
Binary file
|
flags/48/es-co.png
ADDED
|
Binary file
|
gtranslate.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
Plugin Name: GTranslate
|
| 4 |
Plugin URI: https://gtranslate.io/?xyz=998
|
| 5 |
Description: Makes your website <strong>multilingual</strong> and available to the world using Google Translate. For support visit <a href="https://wordpress.org/support/plugin/gtranslate">GTranslate Support</a>.
|
| 6 |
-
Version: 2.8.
|
| 7 |
Author: Edvard Ananyan
|
| 8 |
Author URI: https://gtranslate.io
|
| 9 |
Text Domain: gtranslate
|
|
@@ -112,10 +112,15 @@ class GTranslate extends WP_Widget {
|
|
| 112 |
else
|
| 113 |
echo $data['widget_code'];
|
| 114 |
|
| 115 |
-
|
| 116 |
-
|
|
|
|
| 117 |
}
|
| 118 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 119 |
echo $args['after_widget'];
|
| 120 |
}
|
| 121 |
|
|
@@ -130,10 +135,15 @@ class GTranslate extends WP_Widget {
|
|
| 130 |
else
|
| 131 |
echo $data['widget_code'];
|
| 132 |
|
| 133 |
-
|
| 134 |
-
|
|
|
|
| 135 |
}
|
| 136 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 137 |
echo $args['after_widget'];
|
| 138 |
}
|
| 139 |
|
|
@@ -144,10 +154,17 @@ class GTranslate extends WP_Widget {
|
|
| 144 |
if(empty($data['widget_code']))
|
| 145 |
return __('<b>Notice:</b> Please configure GTranslate from WP-Admin -> Settings -> GTranslate to see it in action.', 'gtranslate');
|
| 146 |
else {
|
| 147 |
-
|
| 148 |
-
|
| 149 |
-
|
| 150 |
-
return $data['widget_code'];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 151 |
}
|
| 152 |
}
|
| 153 |
|
|
@@ -315,6 +332,10 @@ function RefreshDoWidgetCode() {
|
|
| 315 |
widget_preview += '<img src="{$wp_plugin_url}/flags/'+flag_size+'/pt-br.png" height="'+flag_size+'" width="'+flag_size+'" alt="'+lang_name+'" />';
|
| 316 |
else if(lang == 'es' && jQuery('#alt_mx:checked').length)
|
| 317 |
widget_preview += '<img src="{$wp_plugin_url}/flags/'+flag_size+'/es-mx.png" height="'+flag_size+'" width="'+flag_size+'" alt="'+lang_name+'" />';
|
|
|
|
|
|
|
|
|
|
|
|
|
| 318 |
else if(lang == 'fr' && jQuery('#alt_qc:checked').length)
|
| 319 |
widget_preview += '<img src="{$wp_plugin_url}/flags/'+flag_size+'/fr-qc.png" height="'+flag_size+'" width="'+flag_size+'" alt="'+lang_name+'" />';
|
| 320 |
else
|
|
@@ -485,8 +506,12 @@ function hideGSatelites($) {
|
|
| 485 |
widget_preview += '<img src="{$wp_plugin_url}/flags/16/pt-br.png" height="16" width="16" alt="pt" /> '+gt_lang_array[default_language]+'</a>'+new_line;
|
| 486 |
else if(default_language == 'es' && jQuery('#alt_mx:checked').length)
|
| 487 |
widget_preview += '<img src="{$wp_plugin_url}/flags/16/es-mx.png" height="16" width="16" alt="es" /> '+gt_lang_array[default_language]+'</a>'+new_line;
|
|
|
|
|
|
|
|
|
|
|
|
|
| 488 |
else if(default_language == 'fr' && jQuery('#alt_qc:checked').length)
|
| 489 |
-
widget_preview += '<img src="{$wp_plugin_url}/flags/16/
|
| 490 |
else
|
| 491 |
widget_preview += '<img src="{$wp_plugin_url}/flags/16/'+default_language+'.png" height="16" width="16" alt="'+default_language+'" /> '+gt_lang_array[default_language]+'</a>'+new_line;
|
| 492 |
|
|
@@ -528,8 +553,12 @@ function hideGSatelites($) {
|
|
| 528 |
widget_preview += '<img src="{$wp_plugin_url}/flags/16/pt-br.png" height="16" width="16" alt="pt" /> '+lang_name+'</a>';
|
| 529 |
else if(lang == 'es' && jQuery('#alt_mx:checked').length)
|
| 530 |
widget_preview += '<img src="{$wp_plugin_url}/flags/16/es-mx.png" height="16" width="16" alt="es" /> '+lang_name+'</a>';
|
|
|
|
|
|
|
|
|
|
|
|
|
| 531 |
else if(lang == 'fr' && jQuery('#alt_qc:checked').length)
|
| 532 |
-
widget_preview += '<img src="{$wp_plugin_url}/flags/16/
|
| 533 |
else
|
| 534 |
widget_preview += '<img src="{$wp_plugin_url}/flags/16/'+lang+'.png" height="16" width="16" alt="'+lang+'" /> '+lang_name+'</a>';
|
| 535 |
|
|
@@ -551,9 +580,9 @@ function hideGSatelites($) {
|
|
| 551 |
|
| 552 |
// Adding slider javascript
|
| 553 |
widget_preview += '<script type="text/javascript">'+new_line;
|
| 554 |
-
widget_preview += "jQuery('.switcher .selected').click(function() {if(!(jQuery('.switcher .option').is(':visible'))) {jQuery('.switcher .option').stop(true,true).delay(
|
| 555 |
widget_preview += "jQuery('.switcher .option').bind('mousewheel', function(e) {var options = jQuery('.switcher .option');if(options.is(':visible'))options.scrollTop(options.scrollTop() - e.originalEvent.wheelDelta);return false;});"+new_line;
|
| 556 |
-
widget_preview += "jQuery('body').not('.switcher').mousedown(function(e) {if(jQuery('.switcher .option').is(':visible') && e.target != jQuery('.switcher .option').get(0)) {jQuery('.switcher .option').stop(true,true).delay(
|
| 557 |
widget_preview += '<\/script>'+new_line;
|
| 558 |
|
| 559 |
// Adding slider css
|
|
@@ -955,6 +984,8 @@ foreach($alt_flags as $flag)
|
|
| 955 |
<input type="checkbox" onclick="RefreshDoWidgetCode()" onchange="RefreshDoWidgetCode()" id="alt_ca" name="alt_flags[]" value="ca"><label for="alt_ca"><?php _e('Canada flag', 'gtranslate'); ?> (<?php _e('English', 'gtranslate'); ?>)</label><br />
|
| 956 |
<input type="checkbox" onclick="RefreshDoWidgetCode()" onchange="RefreshDoWidgetCode()" id="alt_br" name="alt_flags[]" value="br"><label for="alt_br"><?php _e('Brazil flag', 'gtranslate'); ?> (<?php _e('Portuguese', 'gtranslate'); ?>)</label><br />
|
| 957 |
<input type="checkbox" onclick="RefreshDoWidgetCode()" onchange="RefreshDoWidgetCode()" id="alt_mx" name="alt_flags[]" value="mx"><label for="alt_mx"><?php _e('Mexico flag', 'gtranslate'); ?> (<?php _e('Spanish', 'gtranslate'); ?>)</label><br />
|
|
|
|
|
|
|
| 958 |
<input type="checkbox" onclick="RefreshDoWidgetCode()" onchange="RefreshDoWidgetCode()" id="alt_qc" name="alt_flags[]" value="qc"><label for="alt_qc"><?php _e('Quebec flag', 'gtranslate'); ?> (<?php _e('French', 'gtranslate'); ?>)</label><br />
|
| 959 |
</td>
|
| 960 |
</tr>
|
| 3 |
Plugin Name: GTranslate
|
| 4 |
Plugin URI: https://gtranslate.io/?xyz=998
|
| 5 |
Description: Makes your website <strong>multilingual</strong> and available to the world using Google Translate. For support visit <a href="https://wordpress.org/support/plugin/gtranslate">GTranslate Support</a>.
|
| 6 |
+
Version: 2.8.14
|
| 7 |
Author: Edvard Ananyan
|
| 8 |
Author URI: https://gtranslate.io
|
| 9 |
Text Domain: gtranslate
|
| 112 |
else
|
| 113 |
echo $data['widget_code'];
|
| 114 |
|
| 115 |
+
// avoid caching issues
|
| 116 |
+
if($data['widget_look'] == 'dropdown_with_flags' and ($data['pro_version'] or $data['enterprise_version'])) {
|
| 117 |
+
echo '<script>jQuery(document).ready(function() {jQuery(\'.switcher div.selected a\').html(jQuery(".switcher div.option a[onclick*=\'|"+jQuery(\'html\').attr(\'lang\')+"\']").html())});</script>';
|
| 118 |
}
|
| 119 |
|
| 120 |
+
//if(isset($_SERVER['HTTP_X_GT_LANG']) and in_array($_SERVER['HTTP_X_GT_LANG'], array('en','ar','bg','zh-CN','zh-TW','zh-cn','zh-tw','hr','cs','da','nl','fi','fr','de','el','hi','it','ja','ko','no','pl','pt','ro','ru','es','sv','ca','tl','iw','id','lv','lt','sr','sk','sl','uk','vi','sq','et','gl','hu','mt','th','tr','fa','af','ms','sw','ga','cy','be','is','mk','yi','hy','az','eu','ka','ht','ur','bn','bs','ceb','eo','gu','ha','hmn','ig','jw','kn','km','lo','la','mi','mr','mn','ne','pa','so','ta','te','yo','zu','my','ny','kk','mg','ml','si','st','su','tg','uz','am','co','haw','ku','ky','lb','ps','sm','gd','sn','sd','fy','xh'))) {
|
| 121 |
+
// echo '<script>jQuery(document).ready(function() {jQuery(\'.switcher div.selected a\').html(jQuery(".switcher div.option a[onclick*=\'|'.esc_js($_SERVER['HTTP_X_GT_LANG']).'\']").html())});</script>';
|
| 122 |
+
//}
|
| 123 |
+
|
| 124 |
echo $args['after_widget'];
|
| 125 |
}
|
| 126 |
|
| 135 |
else
|
| 136 |
echo $data['widget_code'];
|
| 137 |
|
| 138 |
+
// avoid caching issues
|
| 139 |
+
if($data['widget_look'] == 'dropdown_with_flags' and ($data['pro_version'] or $data['enterprise_version'])) {
|
| 140 |
+
echo '<script>jQuery(document).ready(function() {jQuery(\'.switcher div.selected a\').html(jQuery(".switcher div.option a[onclick*=\'|"+jQuery(\'html\').attr(\'lang\')+"\']").html())});</script>';
|
| 141 |
}
|
| 142 |
|
| 143 |
+
//if(isset($_SERVER['HTTP_X_GT_LANG']) and in_array($_SERVER['HTTP_X_GT_LANG'], array('en','ar','bg','zh-CN','zh-TW','zh-cn','zh-tw','hr','cs','da','nl','fi','fr','de','el','hi','it','ja','ko','no','pl','pt','ro','ru','es','sv','ca','tl','iw','id','lv','lt','sr','sk','sl','uk','vi','sq','et','gl','hu','mt','th','tr','fa','af','ms','sw','ga','cy','be','is','mk','yi','hy','az','eu','ka','ht','ur','bn','bs','ceb','eo','gu','ha','hmn','ig','jw','kn','km','lo','la','mi','mr','mn','ne','pa','so','ta','te','yo','zu','my','ny','kk','mg','ml','si','st','su','tg','uz','am','co','haw','ku','ky','lb','ps','sm','gd','sn','sd','fy','xh'))) {
|
| 144 |
+
// echo '<script>jQuery(document).ready(function() {jQuery(\'.switcher div.selected a\').html(jQuery(".switcher div.option a[onclick*=\'|'.esc_js($_SERVER['HTTP_X_GT_LANG']).'\']").html())});</script>';
|
| 145 |
+
//}
|
| 146 |
+
|
| 147 |
echo $args['after_widget'];
|
| 148 |
}
|
| 149 |
|
| 154 |
if(empty($data['widget_code']))
|
| 155 |
return __('<b>Notice:</b> Please configure GTranslate from WP-Admin -> Settings -> GTranslate to see it in action.', 'gtranslate');
|
| 156 |
else {
|
| 157 |
+
|
| 158 |
+
// avoid caching issues
|
| 159 |
+
if($data['widget_look'] == 'dropdown_with_flags' and ($data['pro_version'] or $data['enterprise_version'])) {
|
| 160 |
+
return $data['widget_code'] . '<script>jQuery(document).ready(function() {jQuery(\'.switcher div.selected a\').html(jQuery(".switcher div.option a[onclick*=\'|"+jQuery(\'html\').attr(\'lang\')+"\']").html())});</script>';
|
| 161 |
+
}
|
| 162 |
+
|
| 163 |
+
//if(isset($_SERVER['HTTP_X_GT_LANG']) and in_array($_SERVER['HTTP_X_GT_LANG'], array('en','ar','bg','zh-CN','zh-TW','zh-cn','zh-tw','hr','cs','da','nl','fi','fr','de','el','hi','it','ja','ko','no','pl','pt','ro','ru','es','sv','ca','tl','iw','id','lv','lt','sr','sk','sl','uk','vi','sq','et','gl','hu','mt','th','tr','fa','af','ms','sw','ga','cy','be','is','mk','yi','hy','az','eu','ka','ht','ur','bn','bs','ceb','eo','gu','ha','hmn','ig','jw','kn','km','lo','la','mi','mr','mn','ne','pa','so','ta','te','yo','zu','my','ny','kk','mg','ml','si','st','su','tg','uz','am','co','haw','ku','ky','lb','ps','sm','gd','sn','sd','fy','xh'))) {
|
| 164 |
+
// return $data['widget_code'] . '<script>jQuery(document).ready(function() {jQuery(\'.switcher div.selected a\').html(jQuery(".switcher div.option a[onclick*=\'|'.esc_js($_SERVER['HTTP_X_GT_LANG']).'\']").html())});</script>';
|
| 165 |
+
//}
|
| 166 |
+
|
| 167 |
+
return $data['widget_code'];
|
| 168 |
}
|
| 169 |
}
|
| 170 |
|
| 332 |
widget_preview += '<img src="{$wp_plugin_url}/flags/'+flag_size+'/pt-br.png" height="'+flag_size+'" width="'+flag_size+'" alt="'+lang_name+'" />';
|
| 333 |
else if(lang == 'es' && jQuery('#alt_mx:checked').length)
|
| 334 |
widget_preview += '<img src="{$wp_plugin_url}/flags/'+flag_size+'/es-mx.png" height="'+flag_size+'" width="'+flag_size+'" alt="'+lang_name+'" />';
|
| 335 |
+
else if(lang == 'es' && jQuery('#alt_ar:checked').length)
|
| 336 |
+
widget_preview += '<img src="{$wp_plugin_url}/flags/'+flag_size+'/es-ar.png" height="'+flag_size+'" width="'+flag_size+'" alt="'+lang_name+'" />';
|
| 337 |
+
else if(lang == 'es' && jQuery('#alt_co:checked').length)
|
| 338 |
+
widget_preview += '<img src="{$wp_plugin_url}/flags/'+flag_size+'/es-co.png" height="'+flag_size+'" width="'+flag_size+'" alt="'+lang_name+'" />';
|
| 339 |
else if(lang == 'fr' && jQuery('#alt_qc:checked').length)
|
| 340 |
widget_preview += '<img src="{$wp_plugin_url}/flags/'+flag_size+'/fr-qc.png" height="'+flag_size+'" width="'+flag_size+'" alt="'+lang_name+'" />';
|
| 341 |
else
|
| 506 |
widget_preview += '<img src="{$wp_plugin_url}/flags/16/pt-br.png" height="16" width="16" alt="pt" /> '+gt_lang_array[default_language]+'</a>'+new_line;
|
| 507 |
else if(default_language == 'es' && jQuery('#alt_mx:checked').length)
|
| 508 |
widget_preview += '<img src="{$wp_plugin_url}/flags/16/es-mx.png" height="16" width="16" alt="es" /> '+gt_lang_array[default_language]+'</a>'+new_line;
|
| 509 |
+
else if(default_language == 'es' && jQuery('#alt_ar:checked').length)
|
| 510 |
+
widget_preview += '<img src="{$wp_plugin_url}/flags/16/es-ar.png" height="16" width="16" alt="es" /> '+gt_lang_array[default_language]+'</a>'+new_line;
|
| 511 |
+
else if(default_language == 'es' && jQuery('#alt_co:checked').length)
|
| 512 |
+
widget_preview += '<img src="{$wp_plugin_url}/flags/16/es-co.png" height="16" width="16" alt="es" /> '+gt_lang_array[default_language]+'</a>'+new_line;
|
| 513 |
else if(default_language == 'fr' && jQuery('#alt_qc:checked').length)
|
| 514 |
+
widget_preview += '<img src="{$wp_plugin_url}/flags/16/fr-qc.png" height="16" width="16" alt="fr" /> '+gt_lang_array[default_language]+'</a>'+new_line;
|
| 515 |
else
|
| 516 |
widget_preview += '<img src="{$wp_plugin_url}/flags/16/'+default_language+'.png" height="16" width="16" alt="'+default_language+'" /> '+gt_lang_array[default_language]+'</a>'+new_line;
|
| 517 |
|
| 553 |
widget_preview += '<img src="{$wp_plugin_url}/flags/16/pt-br.png" height="16" width="16" alt="pt" /> '+lang_name+'</a>';
|
| 554 |
else if(lang == 'es' && jQuery('#alt_mx:checked').length)
|
| 555 |
widget_preview += '<img src="{$wp_plugin_url}/flags/16/es-mx.png" height="16" width="16" alt="es" /> '+lang_name+'</a>';
|
| 556 |
+
else if(lang == 'es' && jQuery('#alt_ar:checked').length)
|
| 557 |
+
widget_preview += '<img src="{$wp_plugin_url}/flags/16/es-ar.png" height="16" width="16" alt="es" /> '+lang_name+'</a>';
|
| 558 |
+
else if(lang == 'es' && jQuery('#alt_co:checked').length)
|
| 559 |
+
widget_preview += '<img src="{$wp_plugin_url}/flags/16/es-co.png" height="16" width="16" alt="es" /> '+lang_name+'</a>';
|
| 560 |
else if(lang == 'fr' && jQuery('#alt_qc:checked').length)
|
| 561 |
+
widget_preview += '<img src="{$wp_plugin_url}/flags/16/fr-qc.png" height="16" width="16" alt="fr" /> '+lang_name+'</a>';
|
| 562 |
else
|
| 563 |
widget_preview += '<img src="{$wp_plugin_url}/flags/16/'+lang+'.png" height="16" width="16" alt="'+lang+'" /> '+lang_name+'</a>';
|
| 564 |
|
| 580 |
|
| 581 |
// Adding slider javascript
|
| 582 |
widget_preview += '<script type="text/javascript">'+new_line;
|
| 583 |
+
widget_preview += "jQuery('.switcher .selected').click(function() {if(!(jQuery('.switcher .option').is(':visible'))) {jQuery('.switcher .option').stop(true,true).delay(100).slideDown(500);jQuery('.switcher .selected a').toggleClass('open')}});"+new_line;
|
| 584 |
widget_preview += "jQuery('.switcher .option').bind('mousewheel', function(e) {var options = jQuery('.switcher .option');if(options.is(':visible'))options.scrollTop(options.scrollTop() - e.originalEvent.wheelDelta);return false;});"+new_line;
|
| 585 |
+
widget_preview += "jQuery('body').not('.switcher').mousedown(function(e) {if(jQuery('.switcher .option').is(':visible') && e.target != jQuery('.switcher .option').get(0)) {jQuery('.switcher .option').stop(true,true).delay(100).slideUp(500);jQuery('.switcher .selected a').toggleClass('open')}});"+new_line;
|
| 586 |
widget_preview += '<\/script>'+new_line;
|
| 587 |
|
| 588 |
// Adding slider css
|
| 984 |
<input type="checkbox" onclick="RefreshDoWidgetCode()" onchange="RefreshDoWidgetCode()" id="alt_ca" name="alt_flags[]" value="ca"><label for="alt_ca"><?php _e('Canada flag', 'gtranslate'); ?> (<?php _e('English', 'gtranslate'); ?>)</label><br />
|
| 985 |
<input type="checkbox" onclick="RefreshDoWidgetCode()" onchange="RefreshDoWidgetCode()" id="alt_br" name="alt_flags[]" value="br"><label for="alt_br"><?php _e('Brazil flag', 'gtranslate'); ?> (<?php _e('Portuguese', 'gtranslate'); ?>)</label><br />
|
| 986 |
<input type="checkbox" onclick="RefreshDoWidgetCode()" onchange="RefreshDoWidgetCode()" id="alt_mx" name="alt_flags[]" value="mx"><label for="alt_mx"><?php _e('Mexico flag', 'gtranslate'); ?> (<?php _e('Spanish', 'gtranslate'); ?>)</label><br />
|
| 987 |
+
<input type="checkbox" onclick="RefreshDoWidgetCode()" onchange="RefreshDoWidgetCode()" id="alt_ar" name="alt_flags[]" value="ar"><label for="alt_ar"><?php _e('Argentina flag', 'gtranslate'); ?> (<?php _e('Spanish', 'gtranslate'); ?>)</label><br />
|
| 988 |
+
<input type="checkbox" onclick="RefreshDoWidgetCode()" onchange="RefreshDoWidgetCode()" id="alt_co" name="alt_flags[]" value="co"><label for="alt_co"><?php _e('Colombia flag', 'gtranslate'); ?> (<?php _e('Spanish', 'gtranslate'); ?>)</label><br />
|
| 989 |
<input type="checkbox" onclick="RefreshDoWidgetCode()" onchange="RefreshDoWidgetCode()" id="alt_qc" name="alt_flags[]" value="qc"><label for="alt_qc"><?php _e('Quebec flag', 'gtranslate'); ?> (<?php _e('French', 'gtranslate'); ?>)</label><br />
|
| 990 |
</td>
|
| 991 |
</tr>
|
readme.txt
CHANGED
|
@@ -4,16 +4,16 @@ Author: Edvard Ananyan
|
|
| 4 |
Tags: bilingual, multilingual, translate, translation, language, localization, translation proxy, i18n, l10n, localisation, multilanguage, google translate
|
| 5 |
Requires at least: 2.8
|
| 6 |
Tested up to: 4.7
|
| 7 |
-
Stable tag: 2.8.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
Donate link: https://gtranslate.io/?xyz=998#pricing
|
| 11 |
|
| 12 |
-
Translate WordPress with Google Translate multilanguage plugin to make your website multilingual.
|
| 13 |
|
| 14 |
== Description ==
|
| 15 |
|
| 16 |
-
GTranslate plugin uses Google Translate automatic translation service to **translate wordpress** site with Google power and make it **multilingual**. With 103 available languages your site will be available to more than 99% of internet users. Our paid versions are **fully SEO compatible** which will **increase your international traffic and sales**.
|
| 17 |
|
| 18 |
GTranslate is a leading website translation services provider since 2008 and powers more than 500.000 multilingual websites worldwide.
|
| 19 |
|
|
@@ -95,6 +95,8 @@ You can edit your template files and use `<?php echo do_shortcode('[gtranslate]'
|
|
| 95 |
**4. Use GTranslate Widget**
|
| 96 |
You can use Appearence → Widgets screen to publish GTranslate widget inside a sidebar of your template.
|
| 97 |
|
|
|
|
|
|
|
| 98 |
If you have any issues, please do not hesitate to use our [Support Forum](https://wordpress.org/support/plugin/gtranslate) or [Live Chat](https://gtranslate.io/?xyz=998#contact)
|
| 99 |
|
| 100 |
== Frequently Asked Questions ==
|
|
@@ -203,6 +205,12 @@ You need to go to the language you want to edit, for instance, French: http://do
|
|
| 203 |
|
| 204 |
== Changelog ==
|
| 205 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 206 |
= 2.8.13 =
|
| 207 |
* Fixed bug with Globe widget look
|
| 208 |
* Disables conflicting similar translation plugins
|
| 4 |
Tags: bilingual, multilingual, translate, translation, language, localization, translation proxy, i18n, l10n, localisation, multilanguage, google translate
|
| 5 |
Requires at least: 2.8
|
| 6 |
Tested up to: 4.7
|
| 7 |
+
Stable tag: 2.8.14
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
Donate link: https://gtranslate.io/?xyz=998#pricing
|
| 11 |
|
| 12 |
+
Translate WordPress with Google Translate multilanguage plugin to make your website multilingual. Complete multilingual solution for WordPress.
|
| 13 |
|
| 14 |
== Description ==
|
| 15 |
|
| 16 |
+
GTranslate plugin uses Google Translate automatic translation service to **translate wordpress** site with Google power and make it **multilingual**. With 103 available languages your site will be available to more than 99% of internet users. Our paid versions are **fully SEO compatible** which will **increase your international traffic and sales**. GTranslate is a budget multilingual WordPress solution which combines automatic and human translations to save money and is easy to implement.
|
| 17 |
|
| 18 |
GTranslate is a leading website translation services provider since 2008 and powers more than 500.000 multilingual websites worldwide.
|
| 19 |
|
| 95 |
**4. Use GTranslate Widget**
|
| 96 |
You can use Appearence → Widgets screen to publish GTranslate widget inside a sidebar of your template.
|
| 97 |
|
| 98 |
+
If you are using any cache plugin, do not forget to clear your cache.
|
| 99 |
+
|
| 100 |
If you have any issues, please do not hesitate to use our [Support Forum](https://wordpress.org/support/plugin/gtranslate) or [Live Chat](https://gtranslate.io/?xyz=998#contact)
|
| 101 |
|
| 102 |
== Frequently Asked Questions ==
|
| 205 |
|
| 206 |
== Changelog ==
|
| 207 |
|
| 208 |
+
= 2.8.14 =
|
| 209 |
+
* Added Argentina and Colombia alternative flags
|
| 210 |
+
* Fixed bug in Nice looking dropdown look related to clicking the last dropdown element
|
| 211 |
+
* Fixed Quebec flag issue
|
| 212 |
+
* Fixed caching incompatability issue in nice looking dropdown look with GoDaddy cache, W3 Total Cache and WP Fastest Cache
|
| 213 |
+
|
| 214 |
= 2.8.13 =
|
| 215 |
* Fixed bug with Globe widget look
|
| 216 |
* Disables conflicting similar translation plugins
|
