Translate WordPress with GTranslate - Version 2.8.30

Version Description

  • Fixed issue with double gzip compression when zlib.output_compression is on
Download this release

Release Info

Developer edo888
Plugin Icon 128x128 Translate WordPress with GTranslate
Version 2.8.30
Comparing to
See all releases

Code changes from version 2.8.29 to 2.8.30

Files changed (3) hide show
  1. gtranslate.php +2 -2
  2. readme.txt +8 -3
  3. url_addon/gtranslate.php +1 -1
gtranslate.php CHANGED
@@ -3,8 +3,8 @@
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.29
7
- Author: Edvard Ananyan
8
  Author URI: https://gtranslate.io
9
  Text Domain: gtranslate
10
 
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.30
7
+ Author: Translate AI Multilingual Solutions
8
  Author URI: https://gtranslate.io
9
  Text Domain: gtranslate
10
 
readme.txt CHANGED
@@ -1,10 +1,10 @@
1
  === Translate Wordpress with GTranslate ===
2
  Contributors: edo888
3
- Author: Edvard Ananyan
4
  Tags: translate wordpress, multilingual, translate, translation, language, bilingual, localization, translation proxy, i18n, l10n, localisation, multilanguage, google translate
5
  Requires at least: 2.8.1
6
  Tested up to: 4.8
7
- Stable tag: 2.8.29
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
@@ -13,7 +13,7 @@ Translate WordPress with Google Translate multilanguage plugin to make your webs
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
 
@@ -41,7 +41,9 @@ Please check our [FAQ](https://gtranslate.io/?xyz=998#faq) to get quick answers.
41
  * WooCommerce shop translation
42
  * Multilanguage
43
  * Multilingual language names in native alphabet
 
44
  * Alternative flags for Quebec, Canada, USA, Brazil, Mexico, Argentina, Colombia
 
45
 
46
  **Paid Features**
47
 
@@ -218,6 +220,9 @@ You need to go to the language you want to edit, for instance, French: http://do
218
 
219
  == Changelog ==
220
 
 
 
 
221
  = 2.8.29 =
222
  * Lazy image loading added for popup and nice dropdown look
223
  * Fixed languages list hiding issue on narrow screens
1
  === Translate Wordpress with GTranslate ===
2
  Contributors: edo888
3
+ Author: Translate AI Multilingual Solutions
4
  Tags: translate wordpress, multilingual, translate, translation, language, bilingual, localization, translation proxy, i18n, l10n, localisation, multilanguage, google translate
5
  Requires at least: 2.8.1
6
  Tested up to: 4.8
7
+ Stable tag: 2.8.30
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
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**. This translate plugin 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
 
41
  * WooCommerce shop translation
42
  * Multilanguage
43
  * Multilingual language names in native alphabet
44
+ * Multilingual interface
45
  * Alternative flags for Quebec, Canada, USA, Brazil, Mexico, Argentina, Colombia
46
+ * Lazy loading for language flags to boost performance
47
 
48
  **Paid Features**
49
 
220
 
221
  == Changelog ==
222
 
223
+ = 2.8.30 =
224
+ * Fixed issue with double gzip compression when zlib.output_compression is on
225
+
226
  = 2.8.29 =
227
  * Lazy image loading added for popup and nice dropdown look
228
  * Fixed languages list hiding issue on narrow screens
url_addon/gtranslate.php CHANGED
@@ -201,7 +201,7 @@ if(isset($_GET['language_edit'])) {
201
  $html = str_replace('/tdn-bin/', $protocol . '://' . $_SERVER['HTTP_HOST'] . '/' . $glang . '/tdn-bin/', $html);
202
  }
203
 
204
- if(function_exists('gzencode') and isset($return_gz) and $return_gz)
205
  echo gzencode($html);
206
  else
207
  echo $html;
201
  $html = str_replace('/tdn-bin/', $protocol . '://' . $_SERVER['HTTP_HOST'] . '/' . $glang . '/tdn-bin/', $html);
202
  }
203
 
204
+ if(function_exists('gzencode') and isset($return_gz) and $return_gz and zlib_get_coding_type() == false)
205
  echo gzencode($html);
206
  else
207
  echo $html;