Version Description
- FIXED:
- Gutenberg: Correctly define language of the current post for REST API requests.
- ADDED:
- Notice about builders in Beta stage.
Download this release
Release Info
Developer | tivnet |
Plugin | WPGlobus – Multilingual Everything! |
Version | 1.9.22 |
Comparing to | |
See all releases |
Code changes from version 1.9.21 to 1.9.22
- includes/builders/class-wpglobus-builders.php +11 -6
- includes/builders/class-wpglobus-config-builder.php +15 -0
- includes/options/class-wpglobus-options.php +8 -0
- includes/options/templates/compatibility-beta.php +28 -0
- includes/options/templates/compatibility.php +13 -0
- languages/wpglobus-ar.po +21 -5
- languages/wpglobus-be.po +21 -5
- languages/wpglobus-bg_BG.po +21 -5
- languages/wpglobus-de_CH.po +21 -5
- languages/wpglobus-de_DE.po +21 -5
- languages/wpglobus-el.po +21 -5
- languages/wpglobus-en_AU.po +21 -5
- languages/wpglobus-en_CA.po +21 -5
- languages/wpglobus-en_GB.po +21 -5
- languages/wpglobus-en_NZ.po +21 -5
- languages/wpglobus-en_US.po +21 -5
- languages/wpglobus-en_ZA.po +21 -5
- languages/wpglobus-es_AR.po +21 -5
- languages/wpglobus-es_CL.po +21 -5
- languages/wpglobus-es_CO.po +21 -5
- languages/wpglobus-es_CR.po +21 -5
- languages/wpglobus-es_ES.po +21 -5
- languages/wpglobus-es_GT.po +21 -5
- languages/wpglobus-es_MX.po +21 -5
- languages/wpglobus-es_PE.po +21 -5
- languages/wpglobus-es_PR.po +21 -5
- languages/wpglobus-es_VE.po +21 -5
- languages/wpglobus-et.po +21 -5
- languages/wpglobus-fr_BE.po +21 -5
- languages/wpglobus-fr_CA.po +21 -5
- languages/wpglobus-fr_FR.po +21 -5
- languages/wpglobus-id_ID.po +21 -5
- languages/wpglobus-ko_KR.po +21 -5
- languages/wpglobus-pl_PL.po +21 -5
- languages/wpglobus-pt_BR.po +21 -5
- languages/wpglobus-pt_PT.po +21 -5
- languages/wpglobus-ro_RO.po +21 -5
- languages/wpglobus-ru_RU.mo +0 -0
- languages/wpglobus-ru_RU.po +21 -5
- languages/wpglobus-sv_SE.po +21 -5
- languages/wpglobus-tr_TR.po +21 -5
- languages/wpglobus-uk.po +21 -5
- languages/wpglobus.pot +24 -8
- readme.txt +7 -0
- wpglobus.php +2 -2
includes/builders/class-wpglobus-builders.php
CHANGED
@@ -40,6 +40,7 @@ if ( ! class_exists( 'WPGlobus_Builders' ) ) :
|
|
40 |
'plugin_name' => 'Gutenberg',
|
41 |
'plugin_uri' => 'https://github.com/WordPress/gutenberg',
|
42 |
'path' => 'gutenberg/gutenberg.php',
|
|
|
43 |
);
|
44 |
|
45 |
self::$add_on['js_composer'] = array(
|
@@ -49,6 +50,7 @@ if ( ! class_exists( 'WPGlobus_Builders' ) ) :
|
|
49 |
'plugin_name' => 'WPBakery Page Builder',
|
50 |
'plugin_uri' => 'https://wpbakery.com/',
|
51 |
'path' => 'js_composer/js_composer.php',
|
|
|
52 |
);
|
53 |
|
54 |
self::$add_on['elementor'] = array(
|
@@ -58,6 +60,7 @@ if ( ! class_exists( 'WPGlobus_Builders' ) ) :
|
|
58 |
'plugin_name' => 'Elementor',
|
59 |
'plugin_uri' => 'https://wordpress.org/plugins/elementor/',
|
60 |
'path' => 'elementor/elementor.php',
|
|
|
61 |
);
|
62 |
|
63 |
self::$add_on['yoast_seo'] = array(
|
@@ -67,6 +70,7 @@ if ( ! class_exists( 'WPGlobus_Builders' ) ) :
|
|
67 |
'plugin_name' => 'Yoast SEO',
|
68 |
'plugin_uri' => 'https://wordpress.org/plugins/wordpress-seo/',
|
69 |
'path' => 'wordpress-seo/wp-seo.php',
|
|
|
70 |
);
|
71 |
|
72 |
/**
|
@@ -168,7 +172,8 @@ if ( ! class_exists( 'WPGlobus_Builders' ) ) :
|
|
168 |
return $builder;
|
169 |
}
|
170 |
} else {
|
171 |
-
|
|
|
172 |
WPGlobus_Elementor_Front::init();
|
173 |
}
|
174 |
}
|
@@ -808,14 +813,14 @@ if ( ! class_exists( 'WPGlobus_Builders' ) ) :
|
|
808 |
} else {
|
809 |
$_attrs = array_merge( $_attrs, self::$admin_attrs );
|
810 |
}
|
811 |
-
|
812 |
if ( empty( $_attrs['post_id'] ) ) {
|
813 |
-
if ( isset( $_GET['post'] ) ) {
|
814 |
$_attrs['post_id'] = sanitize_text_field( $_GET['post'] );
|
815 |
-
} elseif ( isset( $_REQUEST['post_ID'] ) ) {
|
816 |
$_attrs['post_id'] = sanitize_text_field( $_REQUEST['post_ID'] );
|
817 |
-
|
818 |
-
// @todo
|
819 |
}
|
820 |
}
|
821 |
|
40 |
'plugin_name' => 'Gutenberg',
|
41 |
'plugin_uri' => 'https://github.com/WordPress/gutenberg',
|
42 |
'path' => 'gutenberg/gutenberg.php',
|
43 |
+
'stage' => 'production',
|
44 |
);
|
45 |
|
46 |
self::$add_on['js_composer'] = array(
|
50 |
'plugin_name' => 'WPBakery Page Builder',
|
51 |
'plugin_uri' => 'https://wpbakery.com/',
|
52 |
'path' => 'js_composer/js_composer.php',
|
53 |
+
'stage' => 'production',
|
54 |
);
|
55 |
|
56 |
self::$add_on['elementor'] = array(
|
60 |
'plugin_name' => 'Elementor',
|
61 |
'plugin_uri' => 'https://wordpress.org/plugins/elementor/',
|
62 |
'path' => 'elementor/elementor.php',
|
63 |
+
'stage' => 'beta',
|
64 |
);
|
65 |
|
66 |
self::$add_on['yoast_seo'] = array(
|
70 |
'plugin_name' => 'Yoast SEO',
|
71 |
'plugin_uri' => 'https://wordpress.org/plugins/wordpress-seo/',
|
72 |
'path' => 'wordpress-seo/wp-seo.php',
|
73 |
+
'stage' => 'production',
|
74 |
);
|
75 |
|
76 |
/**
|
172 |
return $builder;
|
173 |
}
|
174 |
} else {
|
175 |
+
/** @noinspection PhpIncludeInspection */
|
176 |
+
include_once WPGlobus::$PLUGIN_DIR_PATH . 'includes/builders/elementor/class-wpglobus-elementor-front.php';
|
177 |
WPGlobus_Elementor_Front::init();
|
178 |
}
|
179 |
}
|
813 |
} else {
|
814 |
$_attrs = array_merge( $_attrs, self::$admin_attrs );
|
815 |
}
|
816 |
+
|
817 |
if ( empty( $_attrs['post_id'] ) ) {
|
818 |
+
if ( isset( $_GET['post'] ) ) { // phpcs:ignore WordPress.CSRF.NonceVerification
|
819 |
$_attrs['post_id'] = sanitize_text_field( $_GET['post'] );
|
820 |
+
} elseif ( isset( $_REQUEST['post_ID'] ) ) { // phpcs:ignore WordPress.CSRF.NonceVerification
|
821 |
$_attrs['post_id'] = sanitize_text_field( $_REQUEST['post_ID'] );
|
822 |
+
// } else {
|
823 |
+
// @todo Check additional ways to get post ID.
|
824 |
}
|
825 |
}
|
826 |
|
includes/builders/class-wpglobus-config-builder.php
CHANGED
@@ -266,6 +266,21 @@ if ( ! class_exists( 'WPGlobus_Config_Builder' ) ) :
|
|
266 |
*/
|
267 |
$language = get_post_meta( $_REQUEST['id'], $this->get_language_meta_key(), true ); // phpcs:ignore WordPress.CSRF.NonceVerification
|
268 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
269 |
}
|
270 |
}
|
271 |
|
266 |
*/
|
267 |
$language = get_post_meta( $_REQUEST['id'], $this->get_language_meta_key(), true ); // phpcs:ignore WordPress.CSRF.NonceVerification
|
268 |
|
269 |
+
} elseif ( isset( $_SERVER['REQUEST_URI'] ) ) {
|
270 |
+
|
271 |
+
if ( false !== strpos( $_SERVER['REQUEST_URI'], '/wp-json/wp/v2/posts/' ) ) {
|
272 |
+
/**
|
273 |
+
* Case when post status was changed ( draft->publish or publish->draft ) in Gutenberg.
|
274 |
+
* @see also is_gutenberg() function in includes\builders\class-wpglobus-builders.php
|
275 |
+
*/
|
276 |
+
$_request_uri = explode( '/', $_SERVER['REQUEST_URI'] );
|
277 |
+
|
278 |
+
$post_id = end( $_request_uri );
|
279 |
+
if ( 0 !== (int) $post_id ) {
|
280 |
+
$language = get_post_meta( $post_id, $this->get_language_meta_key(), true ); // phpcs:ignore WordPress.CSRF.NonceVerification
|
281 |
+
}
|
282 |
+
}
|
283 |
+
|
284 |
}
|
285 |
}
|
286 |
|
includes/options/class-wpglobus-options.php
CHANGED
@@ -1416,6 +1416,14 @@ class WPGlobus_Options {
|
|
1416 |
'class' => 'normal',
|
1417 |
);
|
1418 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1419 |
return array(
|
1420 |
'wpglobus_id' => 'wpglobus_compatibility',
|
1421 |
'title' => __( 'Сompatibility', 'wpglobus' ),
|
1416 |
'class' => 'normal',
|
1417 |
);
|
1418 |
|
1419 |
+
$fields[] =
|
1420 |
+
array(
|
1421 |
+
'id' => 'builder_beta_stage',
|
1422 |
+
'type' => 'wpglobus_info',
|
1423 |
+
'html' => include dirname( __FILE__ ) . '/templates/compatibility-beta.php',
|
1424 |
+
'class' => 'normal',
|
1425 |
+
);
|
1426 |
+
|
1427 |
return array(
|
1428 |
'wpglobus_id' => 'wpglobus_compatibility',
|
1429 |
'title' => __( 'Сompatibility', 'wpglobus' ),
|
includes/options/templates/compatibility-beta.php
ADDED
@@ -0,0 +1,28 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* File: compatibility-beta.php
|
4 |
+
*
|
5 |
+
* @package WPGlobus/Options
|
6 |
+
*/
|
7 |
+
|
8 |
+
// Exit if accessed directly
|
9 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
10 |
+
exit;
|
11 |
+
}
|
12 |
+
|
13 |
+
$compatibility_beta = '*) ';
|
14 |
+
|
15 |
+
$compatibility_beta .= esc_html__( 'Multilingual support of this add-on is currently in Beta stage.', 'wpglobus' );
|
16 |
+
$compatibility_beta .= ' ';
|
17 |
+
$compatibility_beta .= esc_html__( 'We do not recommend using it on production sites.', 'wpglobus' );
|
18 |
+
$compatibility_beta .= '<br />';
|
19 |
+
|
20 |
+
$_link = add_query_arg( array( 'page' => 'wpglobus-helpdesk' ), admin_url( 'admin.php' ) );
|
21 |
+
$_support_link_1 = '<a href="' . $_link . '">';
|
22 |
+
$_support_link_2 = '</a>';
|
23 |
+
$_support_message = esc_html__( 'Please report all problems to %1$sWPGlobus Technical Support%2$s.', 'wpglobus' );
|
24 |
+
$_support_link = sprintf( $_support_message, $_support_link_1, $_support_link_2 );
|
25 |
+
|
26 |
+
$compatibility_beta .= $_support_link;
|
27 |
+
|
28 |
+
return $compatibility_beta;
|
includes/options/templates/compatibility.php
CHANGED
@@ -27,6 +27,7 @@ $compatibility .= '<tr>';
|
|
27 |
$compatibility .= '<th>' . esc_html__( 'Add-on', 'wpglobus' ) . '</th>';
|
28 |
$compatibility .= '<th>' . esc_html__( 'Current version', 'wpglobus' ) . '</th>';
|
29 |
$compatibility .= '<th>' . esc_html__( 'Supported minimum version', 'wpglobus' ) . '</th>';
|
|
|
30 |
$compatibility .= '<th>' . esc_html__( 'Status', 'wpglobus' ) . '</th>';
|
31 |
$compatibility .= '</tr>';
|
32 |
$compatibility .= '</thead>';
|
@@ -51,10 +52,22 @@ foreach ( $add_ons as $add_on ) {
|
|
51 |
$_status = esc_html__( 'Not installed', 'wpglobus' );
|
52 |
}
|
53 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
$compatibility .= '<tr>';
|
55 |
$compatibility .= '<td>' . $add_on['plugin_name'] . '</td>';
|
56 |
$compatibility .= '<td>' . $_version . '</td>';
|
57 |
$compatibility .= '<td>' . $add_on['supported_min_version'] . '</td>';
|
|
|
58 |
$compatibility .= '<td>' . $_status . '</td>';
|
59 |
$compatibility .= '</tr>';
|
60 |
|
27 |
$compatibility .= '<th>' . esc_html__( 'Add-on', 'wpglobus' ) . '</th>';
|
28 |
$compatibility .= '<th>' . esc_html__( 'Current version', 'wpglobus' ) . '</th>';
|
29 |
$compatibility .= '<th>' . esc_html__( 'Supported minimum version', 'wpglobus' ) . '</th>';
|
30 |
+
$compatibility .= '<th>' . esc_html__( 'Stage', 'wpglobus' ) . '</th>';
|
31 |
$compatibility .= '<th>' . esc_html__( 'Status', 'wpglobus' ) . '</th>';
|
32 |
$compatibility .= '</tr>';
|
33 |
$compatibility .= '</thead>';
|
52 |
$_status = esc_html__( 'Not installed', 'wpglobus' );
|
53 |
}
|
54 |
|
55 |
+
$_stage = '';
|
56 |
+
if ( empty( $add_on['stage'] ) ) {
|
57 |
+
$_stage = 'production';
|
58 |
+
} else {
|
59 |
+
if ( 'beta' === $add_on['stage'] ) {
|
60 |
+
$_stage = $add_on['stage'] . ' *)';
|
61 |
+
} else {
|
62 |
+
$_stage = $add_on['stage'];
|
63 |
+
}
|
64 |
+
}
|
65 |
+
|
66 |
$compatibility .= '<tr>';
|
67 |
$compatibility .= '<td>' . $add_on['plugin_name'] . '</td>';
|
68 |
$compatibility .= '<td>' . $_version . '</td>';
|
69 |
$compatibility .= '<td>' . $add_on['supported_min_version'] . '</td>';
|
70 |
+
$compatibility .= '<td>' . $_stage . '</td>';
|
71 |
$compatibility .= '<td>' . $_status . '</td>';
|
72 |
$compatibility .= '</tr>';
|
73 |
|
languages/wpglobus-ar.po
CHANGED
@@ -1179,11 +1179,11 @@ msgstr ""
|
|
1179 |
msgid "Builders support"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
-
#: includes/options/class-wpglobus-options.php:
|
1183 |
msgid "Сompatibility"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: includes/options/class-wpglobus-options.php:
|
1187 |
msgid "Translate strings"
|
1188 |
msgstr ""
|
1189 |
|
@@ -1239,6 +1239,18 @@ msgstr "اختر عنصر"
|
|
1239 |
msgid "No items of this type were found."
|
1240 |
msgstr "لم يتم العثور على عناصر من هذا النوع."
|
1241 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1242 |
#: includes/options/templates/compatibility.php:22
|
1243 |
msgid "List of supported add-ons"
|
1244 |
msgstr ""
|
@@ -1256,18 +1268,22 @@ msgid "Supported minimum version"
|
|
1256 |
msgstr ""
|
1257 |
|
1258 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1259 |
msgid "Status"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: includes/options/templates/compatibility.php:
|
1263 |
msgid "Active"
|
1264 |
msgstr ""
|
1265 |
|
1266 |
-
#: includes/options/templates/compatibility.php:
|
1267 |
msgid "Installed, inactive"
|
1268 |
msgstr ""
|
1269 |
|
1270 |
-
#: includes/options/templates/compatibility.php:
|
1271 |
msgid "Not installed"
|
1272 |
msgstr ""
|
1273 |
|
1179 |
msgid "Builders support"
|
1180 |
msgstr ""
|
1181 |
|
1182 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1183 |
msgid "Сompatibility"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1187 |
msgid "Translate strings"
|
1188 |
msgstr ""
|
1189 |
|
1239 |
msgid "No items of this type were found."
|
1240 |
msgstr "لم يتم العثور على عناصر من هذا النوع."
|
1241 |
|
1242 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1243 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1244 |
+
msgstr ""
|
1245 |
+
|
1246 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1247 |
+
msgid "We do not recommend using it on production sites."
|
1248 |
+
msgstr ""
|
1249 |
+
|
1250 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1251 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1252 |
+
msgstr ""
|
1253 |
+
|
1254 |
#: includes/options/templates/compatibility.php:22
|
1255 |
msgid "List of supported add-ons"
|
1256 |
msgstr ""
|
1268 |
msgstr ""
|
1269 |
|
1270 |
#: includes/options/templates/compatibility.php:30
|
1271 |
+
msgid "Stage"
|
1272 |
+
msgstr ""
|
1273 |
+
|
1274 |
+
#: includes/options/templates/compatibility.php:31
|
1275 |
msgid "Status"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
+
#: includes/options/templates/compatibility.php:47
|
1279 |
msgid "Active"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: includes/options/templates/compatibility.php:49
|
1283 |
msgid "Installed, inactive"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: includes/options/templates/compatibility.php:52
|
1287 |
msgid "Not installed"
|
1288 |
msgstr ""
|
1289 |
|
languages/wpglobus-be.po
CHANGED
@@ -1239,11 +1239,11 @@ msgstr ""
|
|
1239 |
msgid "Builders support"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: includes/options/class-wpglobus-options.php:
|
1243 |
msgid "Сompatibility"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: includes/options/class-wpglobus-options.php:
|
1247 |
msgid "Translate strings"
|
1248 |
msgstr ""
|
1249 |
|
@@ -1299,6 +1299,18 @@ msgstr ""
|
|
1299 |
msgid "No items of this type were found."
|
1300 |
msgstr "Нічога не знойдзена."
|
1301 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1302 |
#: includes/options/templates/compatibility.php:22
|
1303 |
msgid "List of supported add-ons"
|
1304 |
msgstr ""
|
@@ -1316,18 +1328,22 @@ msgid "Supported minimum version"
|
|
1316 |
msgstr ""
|
1317 |
|
1318 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1319 |
msgid "Status"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: includes/options/templates/compatibility.php:
|
1323 |
msgid "Active"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: includes/options/templates/compatibility.php:
|
1327 |
msgid "Installed, inactive"
|
1328 |
msgstr ""
|
1329 |
|
1330 |
-
#: includes/options/templates/compatibility.php:
|
1331 |
msgid "Not installed"
|
1332 |
msgstr ""
|
1333 |
|
1239 |
msgid "Builders support"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1243 |
msgid "Сompatibility"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1247 |
msgid "Translate strings"
|
1248 |
msgstr ""
|
1249 |
|
1299 |
msgid "No items of this type were found."
|
1300 |
msgstr "Нічога не знойдзена."
|
1301 |
|
1302 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1303 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1304 |
+
msgstr ""
|
1305 |
+
|
1306 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1307 |
+
msgid "We do not recommend using it on production sites."
|
1308 |
+
msgstr ""
|
1309 |
+
|
1310 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1311 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1312 |
+
msgstr ""
|
1313 |
+
|
1314 |
#: includes/options/templates/compatibility.php:22
|
1315 |
msgid "List of supported add-ons"
|
1316 |
msgstr ""
|
1328 |
msgstr ""
|
1329 |
|
1330 |
#: includes/options/templates/compatibility.php:30
|
1331 |
+
msgid "Stage"
|
1332 |
+
msgstr ""
|
1333 |
+
|
1334 |
+
#: includes/options/templates/compatibility.php:31
|
1335 |
msgid "Status"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: includes/options/templates/compatibility.php:47
|
1339 |
msgid "Active"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: includes/options/templates/compatibility.php:49
|
1343 |
msgid "Installed, inactive"
|
1344 |
msgstr ""
|
1345 |
|
1346 |
+
#: includes/options/templates/compatibility.php:52
|
1347 |
msgid "Not installed"
|
1348 |
msgstr ""
|
1349 |
|
languages/wpglobus-bg_BG.po
CHANGED
@@ -1155,11 +1155,11 @@ msgstr ""
|
|
1155 |
msgid "Builders support"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: includes/options/class-wpglobus-options.php:
|
1159 |
msgid "Сompatibility"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: includes/options/class-wpglobus-options.php:
|
1163 |
msgid "Translate strings"
|
1164 |
msgstr ""
|
1165 |
|
@@ -1215,6 +1215,18 @@ msgstr ""
|
|
1215 |
msgid "No items of this type were found."
|
1216 |
msgstr ""
|
1217 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1218 |
#: includes/options/templates/compatibility.php:22
|
1219 |
msgid "List of supported add-ons"
|
1220 |
msgstr ""
|
@@ -1232,18 +1244,22 @@ msgid "Supported minimum version"
|
|
1232 |
msgstr ""
|
1233 |
|
1234 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1235 |
msgid "Status"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: includes/options/templates/compatibility.php:
|
1239 |
msgid "Active"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: includes/options/templates/compatibility.php:
|
1243 |
msgid "Installed, inactive"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: includes/options/templates/compatibility.php:
|
1247 |
msgid "Not installed"
|
1248 |
msgstr ""
|
1249 |
|
1155 |
msgid "Builders support"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1159 |
msgid "Сompatibility"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1163 |
msgid "Translate strings"
|
1164 |
msgstr ""
|
1165 |
|
1215 |
msgid "No items of this type were found."
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1219 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1220 |
+
msgstr ""
|
1221 |
+
|
1222 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1223 |
+
msgid "We do not recommend using it on production sites."
|
1224 |
+
msgstr ""
|
1225 |
+
|
1226 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1227 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1228 |
+
msgstr ""
|
1229 |
+
|
1230 |
#: includes/options/templates/compatibility.php:22
|
1231 |
msgid "List of supported add-ons"
|
1232 |
msgstr ""
|
1244 |
msgstr ""
|
1245 |
|
1246 |
#: includes/options/templates/compatibility.php:30
|
1247 |
+
msgid "Stage"
|
1248 |
+
msgstr ""
|
1249 |
+
|
1250 |
+
#: includes/options/templates/compatibility.php:31
|
1251 |
msgid "Status"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: includes/options/templates/compatibility.php:47
|
1255 |
msgid "Active"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: includes/options/templates/compatibility.php:49
|
1259 |
msgid "Installed, inactive"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: includes/options/templates/compatibility.php:52
|
1263 |
msgid "Not installed"
|
1264 |
msgstr ""
|
1265 |
|
languages/wpglobus-de_CH.po
CHANGED
@@ -1196,11 +1196,11 @@ msgstr ""
|
|
1196 |
msgid "Builders support"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: includes/options/class-wpglobus-options.php:
|
1200 |
msgid "Сompatibility"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: includes/options/class-wpglobus-options.php:
|
1204 |
msgid "Translate strings"
|
1205 |
msgstr ""
|
1206 |
|
@@ -1256,6 +1256,18 @@ msgstr ""
|
|
1256 |
msgid "No items of this type were found."
|
1257 |
msgstr ""
|
1258 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1259 |
#: includes/options/templates/compatibility.php:22
|
1260 |
msgid "List of supported add-ons"
|
1261 |
msgstr ""
|
@@ -1273,18 +1285,22 @@ msgid "Supported minimum version"
|
|
1273 |
msgstr ""
|
1274 |
|
1275 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1276 |
msgid "Status"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: includes/options/templates/compatibility.php:
|
1280 |
msgid "Active"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: includes/options/templates/compatibility.php:
|
1284 |
msgid "Installed, inactive"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#: includes/options/templates/compatibility.php:
|
1288 |
msgid "Not installed"
|
1289 |
msgstr ""
|
1290 |
|
1196 |
msgid "Builders support"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1200 |
msgid "Сompatibility"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1204 |
msgid "Translate strings"
|
1205 |
msgstr ""
|
1206 |
|
1256 |
msgid "No items of this type were found."
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1260 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1261 |
+
msgstr ""
|
1262 |
+
|
1263 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1264 |
+
msgid "We do not recommend using it on production sites."
|
1265 |
+
msgstr ""
|
1266 |
+
|
1267 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1268 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1269 |
+
msgstr ""
|
1270 |
+
|
1271 |
#: includes/options/templates/compatibility.php:22
|
1272 |
msgid "List of supported add-ons"
|
1273 |
msgstr ""
|
1285 |
msgstr ""
|
1286 |
|
1287 |
#: includes/options/templates/compatibility.php:30
|
1288 |
+
msgid "Stage"
|
1289 |
+
msgstr ""
|
1290 |
+
|
1291 |
+
#: includes/options/templates/compatibility.php:31
|
1292 |
msgid "Status"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: includes/options/templates/compatibility.php:47
|
1296 |
msgid "Active"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: includes/options/templates/compatibility.php:49
|
1300 |
msgid "Installed, inactive"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: includes/options/templates/compatibility.php:52
|
1304 |
msgid "Not installed"
|
1305 |
msgstr ""
|
1306 |
|
languages/wpglobus-de_DE.po
CHANGED
@@ -1195,11 +1195,11 @@ msgstr ""
|
|
1195 |
msgid "Builders support"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: includes/options/class-wpglobus-options.php:
|
1199 |
msgid "Сompatibility"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
-
#: includes/options/class-wpglobus-options.php:
|
1203 |
msgid "Translate strings"
|
1204 |
msgstr ""
|
1205 |
|
@@ -1255,6 +1255,18 @@ msgstr "Wählen Sie ein Element"
|
|
1255 |
msgid "No items of this type were found."
|
1256 |
msgstr "Es wurden keine Elemente dieses Typs gefunden."
|
1257 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1258 |
#: includes/options/templates/compatibility.php:22
|
1259 |
msgid "List of supported add-ons"
|
1260 |
msgstr ""
|
@@ -1272,18 +1284,22 @@ msgid "Supported minimum version"
|
|
1272 |
msgstr ""
|
1273 |
|
1274 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1275 |
msgid "Status"
|
1276 |
msgstr ""
|
1277 |
|
1278 |
-
#: includes/options/templates/compatibility.php:
|
1279 |
msgid "Active"
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: includes/options/templates/compatibility.php:
|
1283 |
msgid "Installed, inactive"
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: includes/options/templates/compatibility.php:
|
1287 |
msgid "Not installed"
|
1288 |
msgstr ""
|
1289 |
|
1195 |
msgid "Builders support"
|
1196 |
msgstr ""
|
1197 |
|
1198 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1199 |
msgid "Сompatibility"
|
1200 |
msgstr ""
|
1201 |
|
1202 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1203 |
msgid "Translate strings"
|
1204 |
msgstr ""
|
1205 |
|
1255 |
msgid "No items of this type were found."
|
1256 |
msgstr "Es wurden keine Elemente dieses Typs gefunden."
|
1257 |
|
1258 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1259 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1260 |
+
msgstr ""
|
1261 |
+
|
1262 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1263 |
+
msgid "We do not recommend using it on production sites."
|
1264 |
+
msgstr ""
|
1265 |
+
|
1266 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1267 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1268 |
+
msgstr ""
|
1269 |
+
|
1270 |
#: includes/options/templates/compatibility.php:22
|
1271 |
msgid "List of supported add-ons"
|
1272 |
msgstr ""
|
1284 |
msgstr ""
|
1285 |
|
1286 |
#: includes/options/templates/compatibility.php:30
|
1287 |
+
msgid "Stage"
|
1288 |
+
msgstr ""
|
1289 |
+
|
1290 |
+
#: includes/options/templates/compatibility.php:31
|
1291 |
msgid "Status"
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: includes/options/templates/compatibility.php:47
|
1295 |
msgid "Active"
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: includes/options/templates/compatibility.php:49
|
1299 |
msgid "Installed, inactive"
|
1300 |
msgstr ""
|
1301 |
|
1302 |
+
#: includes/options/templates/compatibility.php:52
|
1303 |
msgid "Not installed"
|
1304 |
msgstr ""
|
1305 |
|
languages/wpglobus-el.po
CHANGED
@@ -1156,11 +1156,11 @@ msgstr ""
|
|
1156 |
msgid "Builders support"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: includes/options/class-wpglobus-options.php:
|
1160 |
msgid "Сompatibility"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: includes/options/class-wpglobus-options.php:
|
1164 |
msgid "Translate strings"
|
1165 |
msgstr ""
|
1166 |
|
@@ -1216,6 +1216,18 @@ msgstr "Επιλέξτε ένα στοιχείο"
|
|
1216 |
msgid "No items of this type were found."
|
1217 |
msgstr "Βρέθηκε.χωρίς στοιχεία αυτού του τύπου."
|
1218 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1219 |
#: includes/options/templates/compatibility.php:22
|
1220 |
msgid "List of supported add-ons"
|
1221 |
msgstr ""
|
@@ -1233,18 +1245,22 @@ msgid "Supported minimum version"
|
|
1233 |
msgstr ""
|
1234 |
|
1235 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1236 |
msgid "Status"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: includes/options/templates/compatibility.php:
|
1240 |
msgid "Active"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: includes/options/templates/compatibility.php:
|
1244 |
msgid "Installed, inactive"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: includes/options/templates/compatibility.php:
|
1248 |
msgid "Not installed"
|
1249 |
msgstr ""
|
1250 |
|
1156 |
msgid "Builders support"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1160 |
msgid "Сompatibility"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1164 |
msgid "Translate strings"
|
1165 |
msgstr ""
|
1166 |
|
1216 |
msgid "No items of this type were found."
|
1217 |
msgstr "Βρέθηκε.χωρίς στοιχεία αυτού του τύπου."
|
1218 |
|
1219 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1220 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1221 |
+
msgstr ""
|
1222 |
+
|
1223 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1224 |
+
msgid "We do not recommend using it on production sites."
|
1225 |
+
msgstr ""
|
1226 |
+
|
1227 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1228 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1229 |
+
msgstr ""
|
1230 |
+
|
1231 |
#: includes/options/templates/compatibility.php:22
|
1232 |
msgid "List of supported add-ons"
|
1233 |
msgstr ""
|
1245 |
msgstr ""
|
1246 |
|
1247 |
#: includes/options/templates/compatibility.php:30
|
1248 |
+
msgid "Stage"
|
1249 |
+
msgstr ""
|
1250 |
+
|
1251 |
+
#: includes/options/templates/compatibility.php:31
|
1252 |
msgid "Status"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: includes/options/templates/compatibility.php:47
|
1256 |
msgid "Active"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: includes/options/templates/compatibility.php:49
|
1260 |
msgid "Installed, inactive"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: includes/options/templates/compatibility.php:52
|
1264 |
msgid "Not installed"
|
1265 |
msgstr ""
|
1266 |
|
languages/wpglobus-en_AU.po
CHANGED
@@ -1235,11 +1235,11 @@ msgstr ""
|
|
1235 |
msgid "Builders support"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: includes/options/class-wpglobus-options.php:
|
1239 |
msgid "Сompatibility"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: includes/options/class-wpglobus-options.php:
|
1243 |
msgid "Translate strings"
|
1244 |
msgstr ""
|
1245 |
|
@@ -1295,6 +1295,18 @@ msgstr "Select an item"
|
|
1295 |
msgid "No items of this type were found."
|
1296 |
msgstr "No items of this type were found."
|
1297 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1298 |
#: includes/options/templates/compatibility.php:22
|
1299 |
msgid "List of supported add-ons"
|
1300 |
msgstr ""
|
@@ -1312,18 +1324,22 @@ msgid "Supported minimum version"
|
|
1312 |
msgstr ""
|
1313 |
|
1314 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1315 |
msgid "Status"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#: includes/options/templates/compatibility.php:
|
1319 |
msgid "Active"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: includes/options/templates/compatibility.php:
|
1323 |
msgid "Installed, inactive"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: includes/options/templates/compatibility.php:
|
1327 |
msgid "Not installed"
|
1328 |
msgstr ""
|
1329 |
|
1235 |
msgid "Builders support"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1239 |
msgid "Сompatibility"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1243 |
msgid "Translate strings"
|
1244 |
msgstr ""
|
1245 |
|
1295 |
msgid "No items of this type were found."
|
1296 |
msgstr "No items of this type were found."
|
1297 |
|
1298 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1299 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1300 |
+
msgstr ""
|
1301 |
+
|
1302 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1303 |
+
msgid "We do not recommend using it on production sites."
|
1304 |
+
msgstr ""
|
1305 |
+
|
1306 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1307 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1308 |
+
msgstr ""
|
1309 |
+
|
1310 |
#: includes/options/templates/compatibility.php:22
|
1311 |
msgid "List of supported add-ons"
|
1312 |
msgstr ""
|
1324 |
msgstr ""
|
1325 |
|
1326 |
#: includes/options/templates/compatibility.php:30
|
1327 |
+
msgid "Stage"
|
1328 |
+
msgstr ""
|
1329 |
+
|
1330 |
+
#: includes/options/templates/compatibility.php:31
|
1331 |
msgid "Status"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: includes/options/templates/compatibility.php:47
|
1335 |
msgid "Active"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: includes/options/templates/compatibility.php:49
|
1339 |
msgid "Installed, inactive"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: includes/options/templates/compatibility.php:52
|
1343 |
msgid "Not installed"
|
1344 |
msgstr ""
|
1345 |
|
languages/wpglobus-en_CA.po
CHANGED
@@ -1234,11 +1234,11 @@ msgstr ""
|
|
1234 |
msgid "Builders support"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: includes/options/class-wpglobus-options.php:
|
1238 |
msgid "Сompatibility"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: includes/options/class-wpglobus-options.php:
|
1242 |
msgid "Translate strings"
|
1243 |
msgstr ""
|
1244 |
|
@@ -1294,6 +1294,18 @@ msgstr ""
|
|
1294 |
msgid "No items of this type were found."
|
1295 |
msgstr ""
|
1296 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1297 |
#: includes/options/templates/compatibility.php:22
|
1298 |
msgid "List of supported add-ons"
|
1299 |
msgstr ""
|
@@ -1311,18 +1323,22 @@ msgid "Supported minimum version"
|
|
1311 |
msgstr ""
|
1312 |
|
1313 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1314 |
msgid "Status"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: includes/options/templates/compatibility.php:
|
1318 |
msgid "Active"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: includes/options/templates/compatibility.php:
|
1322 |
msgid "Installed, inactive"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
-
#: includes/options/templates/compatibility.php:
|
1326 |
msgid "Not installed"
|
1327 |
msgstr ""
|
1328 |
|
1234 |
msgid "Builders support"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1238 |
msgid "Сompatibility"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1242 |
msgid "Translate strings"
|
1243 |
msgstr ""
|
1244 |
|
1294 |
msgid "No items of this type were found."
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1298 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1299 |
+
msgstr ""
|
1300 |
+
|
1301 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1302 |
+
msgid "We do not recommend using it on production sites."
|
1303 |
+
msgstr ""
|
1304 |
+
|
1305 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1306 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1307 |
+
msgstr ""
|
1308 |
+
|
1309 |
#: includes/options/templates/compatibility.php:22
|
1310 |
msgid "List of supported add-ons"
|
1311 |
msgstr ""
|
1323 |
msgstr ""
|
1324 |
|
1325 |
#: includes/options/templates/compatibility.php:30
|
1326 |
+
msgid "Stage"
|
1327 |
+
msgstr ""
|
1328 |
+
|
1329 |
+
#: includes/options/templates/compatibility.php:31
|
1330 |
msgid "Status"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
+
#: includes/options/templates/compatibility.php:47
|
1334 |
msgid "Active"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: includes/options/templates/compatibility.php:49
|
1338 |
msgid "Installed, inactive"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: includes/options/templates/compatibility.php:52
|
1342 |
msgid "Not installed"
|
1343 |
msgstr ""
|
1344 |
|
languages/wpglobus-en_GB.po
CHANGED
@@ -1235,11 +1235,11 @@ msgstr ""
|
|
1235 |
msgid "Builders support"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: includes/options/class-wpglobus-options.php:
|
1239 |
msgid "Сompatibility"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: includes/options/class-wpglobus-options.php:
|
1243 |
msgid "Translate strings"
|
1244 |
msgstr ""
|
1245 |
|
@@ -1295,6 +1295,18 @@ msgstr "Select an item"
|
|
1295 |
msgid "No items of this type were found."
|
1296 |
msgstr "No items of this type were found."
|
1297 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1298 |
#: includes/options/templates/compatibility.php:22
|
1299 |
msgid "List of supported add-ons"
|
1300 |
msgstr ""
|
@@ -1312,18 +1324,22 @@ msgid "Supported minimum version"
|
|
1312 |
msgstr ""
|
1313 |
|
1314 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1315 |
msgid "Status"
|
1316 |
msgstr ""
|
1317 |
|
1318 |
-
#: includes/options/templates/compatibility.php:
|
1319 |
msgid "Active"
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: includes/options/templates/compatibility.php:
|
1323 |
msgid "Installed, inactive"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: includes/options/templates/compatibility.php:
|
1327 |
msgid "Not installed"
|
1328 |
msgstr ""
|
1329 |
|
1235 |
msgid "Builders support"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1239 |
msgid "Сompatibility"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1243 |
msgid "Translate strings"
|
1244 |
msgstr ""
|
1245 |
|
1295 |
msgid "No items of this type were found."
|
1296 |
msgstr "No items of this type were found."
|
1297 |
|
1298 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1299 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1300 |
+
msgstr ""
|
1301 |
+
|
1302 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1303 |
+
msgid "We do not recommend using it on production sites."
|
1304 |
+
msgstr ""
|
1305 |
+
|
1306 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1307 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1308 |
+
msgstr ""
|
1309 |
+
|
1310 |
#: includes/options/templates/compatibility.php:22
|
1311 |
msgid "List of supported add-ons"
|
1312 |
msgstr ""
|
1324 |
msgstr ""
|
1325 |
|
1326 |
#: includes/options/templates/compatibility.php:30
|
1327 |
+
msgid "Stage"
|
1328 |
+
msgstr ""
|
1329 |
+
|
1330 |
+
#: includes/options/templates/compatibility.php:31
|
1331 |
msgid "Status"
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: includes/options/templates/compatibility.php:47
|
1335 |
msgid "Active"
|
1336 |
msgstr ""
|
1337 |
|
1338 |
+
#: includes/options/templates/compatibility.php:49
|
1339 |
msgid "Installed, inactive"
|
1340 |
msgstr ""
|
1341 |
|
1342 |
+
#: includes/options/templates/compatibility.php:52
|
1343 |
msgid "Not installed"
|
1344 |
msgstr ""
|
1345 |
|
languages/wpglobus-en_NZ.po
CHANGED
@@ -1234,11 +1234,11 @@ msgstr ""
|
|
1234 |
msgid "Builders support"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: includes/options/class-wpglobus-options.php:
|
1238 |
msgid "Сompatibility"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: includes/options/class-wpglobus-options.php:
|
1242 |
msgid "Translate strings"
|
1243 |
msgstr ""
|
1244 |
|
@@ -1294,6 +1294,18 @@ msgstr ""
|
|
1294 |
msgid "No items of this type were found."
|
1295 |
msgstr ""
|
1296 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1297 |
#: includes/options/templates/compatibility.php:22
|
1298 |
msgid "List of supported add-ons"
|
1299 |
msgstr ""
|
@@ -1311,18 +1323,22 @@ msgid "Supported minimum version"
|
|
1311 |
msgstr ""
|
1312 |
|
1313 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1314 |
msgid "Status"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: includes/options/templates/compatibility.php:
|
1318 |
msgid "Active"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: includes/options/templates/compatibility.php:
|
1322 |
msgid "Installed, inactive"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
-
#: includes/options/templates/compatibility.php:
|
1326 |
msgid "Not installed"
|
1327 |
msgstr ""
|
1328 |
|
1234 |
msgid "Builders support"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1238 |
msgid "Сompatibility"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1242 |
msgid "Translate strings"
|
1243 |
msgstr ""
|
1244 |
|
1294 |
msgid "No items of this type were found."
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1298 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1299 |
+
msgstr ""
|
1300 |
+
|
1301 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1302 |
+
msgid "We do not recommend using it on production sites."
|
1303 |
+
msgstr ""
|
1304 |
+
|
1305 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1306 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1307 |
+
msgstr ""
|
1308 |
+
|
1309 |
#: includes/options/templates/compatibility.php:22
|
1310 |
msgid "List of supported add-ons"
|
1311 |
msgstr ""
|
1323 |
msgstr ""
|
1324 |
|
1325 |
#: includes/options/templates/compatibility.php:30
|
1326 |
+
msgid "Stage"
|
1327 |
+
msgstr ""
|
1328 |
+
|
1329 |
+
#: includes/options/templates/compatibility.php:31
|
1330 |
msgid "Status"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
+
#: includes/options/templates/compatibility.php:47
|
1334 |
msgid "Active"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: includes/options/templates/compatibility.php:49
|
1338 |
msgid "Installed, inactive"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: includes/options/templates/compatibility.php:52
|
1342 |
msgid "Not installed"
|
1343 |
msgstr ""
|
1344 |
|
languages/wpglobus-en_US.po
CHANGED
@@ -1273,11 +1273,11 @@ msgstr ""
|
|
1273 |
msgid "Builders support"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: includes/options/class-wpglobus-options.php:
|
1277 |
msgid "Сompatibility"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: includes/options/class-wpglobus-options.php:
|
1281 |
msgid "Translate strings"
|
1282 |
msgstr "Translate strings"
|
1283 |
|
@@ -1333,6 +1333,18 @@ msgstr "Select an item"
|
|
1333 |
msgid "No items of this type were found."
|
1334 |
msgstr "No items of this type were found."
|
1335 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1336 |
#: includes/options/templates/compatibility.php:22
|
1337 |
msgid "List of supported add-ons"
|
1338 |
msgstr ""
|
@@ -1350,18 +1362,22 @@ msgid "Supported minimum version"
|
|
1350 |
msgstr ""
|
1351 |
|
1352 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1353 |
msgid "Status"
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#: includes/options/templates/compatibility.php:
|
1357 |
msgid "Active"
|
1358 |
msgstr ""
|
1359 |
|
1360 |
-
#: includes/options/templates/compatibility.php:
|
1361 |
msgid "Installed, inactive"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: includes/options/templates/compatibility.php:
|
1365 |
msgid "Not installed"
|
1366 |
msgstr ""
|
1367 |
|
1273 |
msgid "Builders support"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1277 |
msgid "Сompatibility"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1281 |
msgid "Translate strings"
|
1282 |
msgstr "Translate strings"
|
1283 |
|
1333 |
msgid "No items of this type were found."
|
1334 |
msgstr "No items of this type were found."
|
1335 |
|
1336 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1337 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1338 |
+
msgstr ""
|
1339 |
+
|
1340 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1341 |
+
msgid "We do not recommend using it on production sites."
|
1342 |
+
msgstr ""
|
1343 |
+
|
1344 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1345 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1346 |
+
msgstr ""
|
1347 |
+
|
1348 |
#: includes/options/templates/compatibility.php:22
|
1349 |
msgid "List of supported add-ons"
|
1350 |
msgstr ""
|
1362 |
msgstr ""
|
1363 |
|
1364 |
#: includes/options/templates/compatibility.php:30
|
1365 |
+
msgid "Stage"
|
1366 |
+
msgstr ""
|
1367 |
+
|
1368 |
+
#: includes/options/templates/compatibility.php:31
|
1369 |
msgid "Status"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: includes/options/templates/compatibility.php:47
|
1373 |
msgid "Active"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: includes/options/templates/compatibility.php:49
|
1377 |
msgid "Installed, inactive"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: includes/options/templates/compatibility.php:52
|
1381 |
msgid "Not installed"
|
1382 |
msgstr ""
|
1383 |
|
languages/wpglobus-en_ZA.po
CHANGED
@@ -1234,11 +1234,11 @@ msgstr ""
|
|
1234 |
msgid "Builders support"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
-
#: includes/options/class-wpglobus-options.php:
|
1238 |
msgid "Сompatibility"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#: includes/options/class-wpglobus-options.php:
|
1242 |
msgid "Translate strings"
|
1243 |
msgstr ""
|
1244 |
|
@@ -1294,6 +1294,18 @@ msgstr ""
|
|
1294 |
msgid "No items of this type were found."
|
1295 |
msgstr ""
|
1296 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1297 |
#: includes/options/templates/compatibility.php:22
|
1298 |
msgid "List of supported add-ons"
|
1299 |
msgstr ""
|
@@ -1311,18 +1323,22 @@ msgid "Supported minimum version"
|
|
1311 |
msgstr ""
|
1312 |
|
1313 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1314 |
msgid "Status"
|
1315 |
msgstr ""
|
1316 |
|
1317 |
-
#: includes/options/templates/compatibility.php:
|
1318 |
msgid "Active"
|
1319 |
msgstr ""
|
1320 |
|
1321 |
-
#: includes/options/templates/compatibility.php:
|
1322 |
msgid "Installed, inactive"
|
1323 |
msgstr ""
|
1324 |
|
1325 |
-
#: includes/options/templates/compatibility.php:
|
1326 |
msgid "Not installed"
|
1327 |
msgstr ""
|
1328 |
|
1234 |
msgid "Builders support"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1238 |
msgid "Сompatibility"
|
1239 |
msgstr ""
|
1240 |
|
1241 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1242 |
msgid "Translate strings"
|
1243 |
msgstr ""
|
1244 |
|
1294 |
msgid "No items of this type were found."
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1298 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1299 |
+
msgstr ""
|
1300 |
+
|
1301 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1302 |
+
msgid "We do not recommend using it on production sites."
|
1303 |
+
msgstr ""
|
1304 |
+
|
1305 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1306 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1307 |
+
msgstr ""
|
1308 |
+
|
1309 |
#: includes/options/templates/compatibility.php:22
|
1310 |
msgid "List of supported add-ons"
|
1311 |
msgstr ""
|
1323 |
msgstr ""
|
1324 |
|
1325 |
#: includes/options/templates/compatibility.php:30
|
1326 |
+
msgid "Stage"
|
1327 |
+
msgstr ""
|
1328 |
+
|
1329 |
+
#: includes/options/templates/compatibility.php:31
|
1330 |
msgid "Status"
|
1331 |
msgstr ""
|
1332 |
|
1333 |
+
#: includes/options/templates/compatibility.php:47
|
1334 |
msgid "Active"
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: includes/options/templates/compatibility.php:49
|
1338 |
msgid "Installed, inactive"
|
1339 |
msgstr ""
|
1340 |
|
1341 |
+
#: includes/options/templates/compatibility.php:52
|
1342 |
msgid "Not installed"
|
1343 |
msgstr ""
|
1344 |
|
languages/wpglobus-es_AR.po
CHANGED
@@ -1193,11 +1193,11 @@ msgstr ""
|
|
1193 |
msgid "Builders support"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: includes/options/class-wpglobus-options.php:
|
1197 |
msgid "Сompatibility"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: includes/options/class-wpglobus-options.php:
|
1201 |
msgid "Translate strings"
|
1202 |
msgstr ""
|
1203 |
|
@@ -1253,6 +1253,18 @@ msgstr ""
|
|
1253 |
msgid "No items of this type were found."
|
1254 |
msgstr ""
|
1255 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1256 |
#: includes/options/templates/compatibility.php:22
|
1257 |
msgid "List of supported add-ons"
|
1258 |
msgstr ""
|
@@ -1270,18 +1282,22 @@ msgid "Supported minimum version"
|
|
1270 |
msgstr ""
|
1271 |
|
1272 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1273 |
msgid "Status"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: includes/options/templates/compatibility.php:
|
1277 |
msgid "Active"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: includes/options/templates/compatibility.php:
|
1281 |
msgid "Installed, inactive"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: includes/options/templates/compatibility.php:
|
1285 |
msgid "Not installed"
|
1286 |
msgstr ""
|
1287 |
|
1193 |
msgid "Builders support"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1197 |
msgid "Сompatibility"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1201 |
msgid "Translate strings"
|
1202 |
msgstr ""
|
1203 |
|
1253 |
msgid "No items of this type were found."
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1257 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1258 |
+
msgstr ""
|
1259 |
+
|
1260 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1261 |
+
msgid "We do not recommend using it on production sites."
|
1262 |
+
msgstr ""
|
1263 |
+
|
1264 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1265 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1266 |
+
msgstr ""
|
1267 |
+
|
1268 |
#: includes/options/templates/compatibility.php:22
|
1269 |
msgid "List of supported add-ons"
|
1270 |
msgstr ""
|
1282 |
msgstr ""
|
1283 |
|
1284 |
#: includes/options/templates/compatibility.php:30
|
1285 |
+
msgid "Stage"
|
1286 |
+
msgstr ""
|
1287 |
+
|
1288 |
+
#: includes/options/templates/compatibility.php:31
|
1289 |
msgid "Status"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: includes/options/templates/compatibility.php:47
|
1293 |
msgid "Active"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: includes/options/templates/compatibility.php:49
|
1297 |
msgid "Installed, inactive"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: includes/options/templates/compatibility.php:52
|
1301 |
msgid "Not installed"
|
1302 |
msgstr ""
|
1303 |
|
languages/wpglobus-es_CL.po
CHANGED
@@ -1193,11 +1193,11 @@ msgstr ""
|
|
1193 |
msgid "Builders support"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: includes/options/class-wpglobus-options.php:
|
1197 |
msgid "Сompatibility"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: includes/options/class-wpglobus-options.php:
|
1201 |
msgid "Translate strings"
|
1202 |
msgstr ""
|
1203 |
|
@@ -1253,6 +1253,18 @@ msgstr ""
|
|
1253 |
msgid "No items of this type were found."
|
1254 |
msgstr ""
|
1255 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1256 |
#: includes/options/templates/compatibility.php:22
|
1257 |
msgid "List of supported add-ons"
|
1258 |
msgstr ""
|
@@ -1270,18 +1282,22 @@ msgid "Supported minimum version"
|
|
1270 |
msgstr ""
|
1271 |
|
1272 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1273 |
msgid "Status"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: includes/options/templates/compatibility.php:
|
1277 |
msgid "Active"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: includes/options/templates/compatibility.php:
|
1281 |
msgid "Installed, inactive"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: includes/options/templates/compatibility.php:
|
1285 |
msgid "Not installed"
|
1286 |
msgstr ""
|
1287 |
|
1193 |
msgid "Builders support"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1197 |
msgid "Сompatibility"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1201 |
msgid "Translate strings"
|
1202 |
msgstr ""
|
1203 |
|
1253 |
msgid "No items of this type were found."
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1257 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1258 |
+
msgstr ""
|
1259 |
+
|
1260 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1261 |
+
msgid "We do not recommend using it on production sites."
|
1262 |
+
msgstr ""
|
1263 |
+
|
1264 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1265 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1266 |
+
msgstr ""
|
1267 |
+
|
1268 |
#: includes/options/templates/compatibility.php:22
|
1269 |
msgid "List of supported add-ons"
|
1270 |
msgstr ""
|
1282 |
msgstr ""
|
1283 |
|
1284 |
#: includes/options/templates/compatibility.php:30
|
1285 |
+
msgid "Stage"
|
1286 |
+
msgstr ""
|
1287 |
+
|
1288 |
+
#: includes/options/templates/compatibility.php:31
|
1289 |
msgid "Status"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: includes/options/templates/compatibility.php:47
|
1293 |
msgid "Active"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: includes/options/templates/compatibility.php:49
|
1297 |
msgid "Installed, inactive"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: includes/options/templates/compatibility.php:52
|
1301 |
msgid "Not installed"
|
1302 |
msgstr ""
|
1303 |
|
languages/wpglobus-es_CO.po
CHANGED
@@ -1193,11 +1193,11 @@ msgstr ""
|
|
1193 |
msgid "Builders support"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: includes/options/class-wpglobus-options.php:
|
1197 |
msgid "Сompatibility"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: includes/options/class-wpglobus-options.php:
|
1201 |
msgid "Translate strings"
|
1202 |
msgstr ""
|
1203 |
|
@@ -1253,6 +1253,18 @@ msgstr ""
|
|
1253 |
msgid "No items of this type were found."
|
1254 |
msgstr ""
|
1255 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1256 |
#: includes/options/templates/compatibility.php:22
|
1257 |
msgid "List of supported add-ons"
|
1258 |
msgstr ""
|
@@ -1270,18 +1282,22 @@ msgid "Supported minimum version"
|
|
1270 |
msgstr ""
|
1271 |
|
1272 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1273 |
msgid "Status"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: includes/options/templates/compatibility.php:
|
1277 |
msgid "Active"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: includes/options/templates/compatibility.php:
|
1281 |
msgid "Installed, inactive"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: includes/options/templates/compatibility.php:
|
1285 |
msgid "Not installed"
|
1286 |
msgstr ""
|
1287 |
|
1193 |
msgid "Builders support"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1197 |
msgid "Сompatibility"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1201 |
msgid "Translate strings"
|
1202 |
msgstr ""
|
1203 |
|
1253 |
msgid "No items of this type were found."
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1257 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1258 |
+
msgstr ""
|
1259 |
+
|
1260 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1261 |
+
msgid "We do not recommend using it on production sites."
|
1262 |
+
msgstr ""
|
1263 |
+
|
1264 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1265 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1266 |
+
msgstr ""
|
1267 |
+
|
1268 |
#: includes/options/templates/compatibility.php:22
|
1269 |
msgid "List of supported add-ons"
|
1270 |
msgstr ""
|
1282 |
msgstr ""
|
1283 |
|
1284 |
#: includes/options/templates/compatibility.php:30
|
1285 |
+
msgid "Stage"
|
1286 |
+
msgstr ""
|
1287 |
+
|
1288 |
+
#: includes/options/templates/compatibility.php:31
|
1289 |
msgid "Status"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: includes/options/templates/compatibility.php:47
|
1293 |
msgid "Active"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: includes/options/templates/compatibility.php:49
|
1297 |
msgid "Installed, inactive"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: includes/options/templates/compatibility.php:52
|
1301 |
msgid "Not installed"
|
1302 |
msgstr ""
|
1303 |
|
languages/wpglobus-es_CR.po
CHANGED
@@ -1193,11 +1193,11 @@ msgstr ""
|
|
1193 |
msgid "Builders support"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: includes/options/class-wpglobus-options.php:
|
1197 |
msgid "Сompatibility"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: includes/options/class-wpglobus-options.php:
|
1201 |
msgid "Translate strings"
|
1202 |
msgstr ""
|
1203 |
|
@@ -1253,6 +1253,18 @@ msgstr ""
|
|
1253 |
msgid "No items of this type were found."
|
1254 |
msgstr ""
|
1255 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1256 |
#: includes/options/templates/compatibility.php:22
|
1257 |
msgid "List of supported add-ons"
|
1258 |
msgstr ""
|
@@ -1270,18 +1282,22 @@ msgid "Supported minimum version"
|
|
1270 |
msgstr ""
|
1271 |
|
1272 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1273 |
msgid "Status"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: includes/options/templates/compatibility.php:
|
1277 |
msgid "Active"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: includes/options/templates/compatibility.php:
|
1281 |
msgid "Installed, inactive"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: includes/options/templates/compatibility.php:
|
1285 |
msgid "Not installed"
|
1286 |
msgstr ""
|
1287 |
|
1193 |
msgid "Builders support"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1197 |
msgid "Сompatibility"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1201 |
msgid "Translate strings"
|
1202 |
msgstr ""
|
1203 |
|
1253 |
msgid "No items of this type were found."
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1257 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1258 |
+
msgstr ""
|
1259 |
+
|
1260 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1261 |
+
msgid "We do not recommend using it on production sites."
|
1262 |
+
msgstr ""
|
1263 |
+
|
1264 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1265 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1266 |
+
msgstr ""
|
1267 |
+
|
1268 |
#: includes/options/templates/compatibility.php:22
|
1269 |
msgid "List of supported add-ons"
|
1270 |
msgstr ""
|
1282 |
msgstr ""
|
1283 |
|
1284 |
#: includes/options/templates/compatibility.php:30
|
1285 |
+
msgid "Stage"
|
1286 |
+
msgstr ""
|
1287 |
+
|
1288 |
+
#: includes/options/templates/compatibility.php:31
|
1289 |
msgid "Status"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: includes/options/templates/compatibility.php:47
|
1293 |
msgid "Active"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: includes/options/templates/compatibility.php:49
|
1297 |
msgid "Installed, inactive"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: includes/options/templates/compatibility.php:52
|
1301 |
msgid "Not installed"
|
1302 |
msgstr ""
|
1303 |
|
languages/wpglobus-es_ES.po
CHANGED
@@ -1193,11 +1193,11 @@ msgstr ""
|
|
1193 |
msgid "Builders support"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: includes/options/class-wpglobus-options.php:
|
1197 |
msgid "Сompatibility"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: includes/options/class-wpglobus-options.php:
|
1201 |
msgid "Translate strings"
|
1202 |
msgstr ""
|
1203 |
|
@@ -1253,6 +1253,18 @@ msgstr "Selecciona un artículo"
|
|
1253 |
msgid "No items of this type were found."
|
1254 |
msgstr "No se encontraron artículos de este tipo."
|
1255 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1256 |
#: includes/options/templates/compatibility.php:22
|
1257 |
msgid "List of supported add-ons"
|
1258 |
msgstr ""
|
@@ -1270,18 +1282,22 @@ msgid "Supported minimum version"
|
|
1270 |
msgstr ""
|
1271 |
|
1272 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1273 |
msgid "Status"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: includes/options/templates/compatibility.php:
|
1277 |
msgid "Active"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: includes/options/templates/compatibility.php:
|
1281 |
msgid "Installed, inactive"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: includes/options/templates/compatibility.php:
|
1285 |
msgid "Not installed"
|
1286 |
msgstr ""
|
1287 |
|
1193 |
msgid "Builders support"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1197 |
msgid "Сompatibility"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1201 |
msgid "Translate strings"
|
1202 |
msgstr ""
|
1203 |
|
1253 |
msgid "No items of this type were found."
|
1254 |
msgstr "No se encontraron artículos de este tipo."
|
1255 |
|
1256 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1257 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1258 |
+
msgstr ""
|
1259 |
+
|
1260 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1261 |
+
msgid "We do not recommend using it on production sites."
|
1262 |
+
msgstr ""
|
1263 |
+
|
1264 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1265 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1266 |
+
msgstr ""
|
1267 |
+
|
1268 |
#: includes/options/templates/compatibility.php:22
|
1269 |
msgid "List of supported add-ons"
|
1270 |
msgstr ""
|
1282 |
msgstr ""
|
1283 |
|
1284 |
#: includes/options/templates/compatibility.php:30
|
1285 |
+
msgid "Stage"
|
1286 |
+
msgstr ""
|
1287 |
+
|
1288 |
+
#: includes/options/templates/compatibility.php:31
|
1289 |
msgid "Status"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: includes/options/templates/compatibility.php:47
|
1293 |
msgid "Active"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: includes/options/templates/compatibility.php:49
|
1297 |
msgid "Installed, inactive"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: includes/options/templates/compatibility.php:52
|
1301 |
msgid "Not installed"
|
1302 |
msgstr ""
|
1303 |
|
languages/wpglobus-es_GT.po
CHANGED
@@ -1193,11 +1193,11 @@ msgstr ""
|
|
1193 |
msgid "Builders support"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: includes/options/class-wpglobus-options.php:
|
1197 |
msgid "Сompatibility"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: includes/options/class-wpglobus-options.php:
|
1201 |
msgid "Translate strings"
|
1202 |
msgstr ""
|
1203 |
|
@@ -1253,6 +1253,18 @@ msgstr ""
|
|
1253 |
msgid "No items of this type were found."
|
1254 |
msgstr ""
|
1255 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1256 |
#: includes/options/templates/compatibility.php:22
|
1257 |
msgid "List of supported add-ons"
|
1258 |
msgstr ""
|
@@ -1270,18 +1282,22 @@ msgid "Supported minimum version"
|
|
1270 |
msgstr ""
|
1271 |
|
1272 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1273 |
msgid "Status"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: includes/options/templates/compatibility.php:
|
1277 |
msgid "Active"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: includes/options/templates/compatibility.php:
|
1281 |
msgid "Installed, inactive"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: includes/options/templates/compatibility.php:
|
1285 |
msgid "Not installed"
|
1286 |
msgstr ""
|
1287 |
|
1193 |
msgid "Builders support"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1197 |
msgid "Сompatibility"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1201 |
msgid "Translate strings"
|
1202 |
msgstr ""
|
1203 |
|
1253 |
msgid "No items of this type were found."
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1257 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1258 |
+
msgstr ""
|
1259 |
+
|
1260 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1261 |
+
msgid "We do not recommend using it on production sites."
|
1262 |
+
msgstr ""
|
1263 |
+
|
1264 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1265 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1266 |
+
msgstr ""
|
1267 |
+
|
1268 |
#: includes/options/templates/compatibility.php:22
|
1269 |
msgid "List of supported add-ons"
|
1270 |
msgstr ""
|
1282 |
msgstr ""
|
1283 |
|
1284 |
#: includes/options/templates/compatibility.php:30
|
1285 |
+
msgid "Stage"
|
1286 |
+
msgstr ""
|
1287 |
+
|
1288 |
+
#: includes/options/templates/compatibility.php:31
|
1289 |
msgid "Status"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: includes/options/templates/compatibility.php:47
|
1293 |
msgid "Active"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: includes/options/templates/compatibility.php:49
|
1297 |
msgid "Installed, inactive"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: includes/options/templates/compatibility.php:52
|
1301 |
msgid "Not installed"
|
1302 |
msgstr ""
|
1303 |
|
languages/wpglobus-es_MX.po
CHANGED
@@ -1193,11 +1193,11 @@ msgstr ""
|
|
1193 |
msgid "Builders support"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: includes/options/class-wpglobus-options.php:
|
1197 |
msgid "Сompatibility"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: includes/options/class-wpglobus-options.php:
|
1201 |
msgid "Translate strings"
|
1202 |
msgstr ""
|
1203 |
|
@@ -1253,6 +1253,18 @@ msgstr ""
|
|
1253 |
msgid "No items of this type were found."
|
1254 |
msgstr ""
|
1255 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1256 |
#: includes/options/templates/compatibility.php:22
|
1257 |
msgid "List of supported add-ons"
|
1258 |
msgstr ""
|
@@ -1270,18 +1282,22 @@ msgid "Supported minimum version"
|
|
1270 |
msgstr ""
|
1271 |
|
1272 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1273 |
msgid "Status"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: includes/options/templates/compatibility.php:
|
1277 |
msgid "Active"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: includes/options/templates/compatibility.php:
|
1281 |
msgid "Installed, inactive"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: includes/options/templates/compatibility.php:
|
1285 |
msgid "Not installed"
|
1286 |
msgstr ""
|
1287 |
|
1193 |
msgid "Builders support"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1197 |
msgid "Сompatibility"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1201 |
msgid "Translate strings"
|
1202 |
msgstr ""
|
1203 |
|
1253 |
msgid "No items of this type were found."
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1257 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1258 |
+
msgstr ""
|
1259 |
+
|
1260 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1261 |
+
msgid "We do not recommend using it on production sites."
|
1262 |
+
msgstr ""
|
1263 |
+
|
1264 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1265 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1266 |
+
msgstr ""
|
1267 |
+
|
1268 |
#: includes/options/templates/compatibility.php:22
|
1269 |
msgid "List of supported add-ons"
|
1270 |
msgstr ""
|
1282 |
msgstr ""
|
1283 |
|
1284 |
#: includes/options/templates/compatibility.php:30
|
1285 |
+
msgid "Stage"
|
1286 |
+
msgstr ""
|
1287 |
+
|
1288 |
+
#: includes/options/templates/compatibility.php:31
|
1289 |
msgid "Status"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: includes/options/templates/compatibility.php:47
|
1293 |
msgid "Active"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: includes/options/templates/compatibility.php:49
|
1297 |
msgid "Installed, inactive"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: includes/options/templates/compatibility.php:52
|
1301 |
msgid "Not installed"
|
1302 |
msgstr ""
|
1303 |
|
languages/wpglobus-es_PE.po
CHANGED
@@ -1193,11 +1193,11 @@ msgstr ""
|
|
1193 |
msgid "Builders support"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: includes/options/class-wpglobus-options.php:
|
1197 |
msgid "Сompatibility"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: includes/options/class-wpglobus-options.php:
|
1201 |
msgid "Translate strings"
|
1202 |
msgstr ""
|
1203 |
|
@@ -1253,6 +1253,18 @@ msgstr ""
|
|
1253 |
msgid "No items of this type were found."
|
1254 |
msgstr ""
|
1255 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1256 |
#: includes/options/templates/compatibility.php:22
|
1257 |
msgid "List of supported add-ons"
|
1258 |
msgstr ""
|
@@ -1270,18 +1282,22 @@ msgid "Supported minimum version"
|
|
1270 |
msgstr ""
|
1271 |
|
1272 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1273 |
msgid "Status"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: includes/options/templates/compatibility.php:
|
1277 |
msgid "Active"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: includes/options/templates/compatibility.php:
|
1281 |
msgid "Installed, inactive"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: includes/options/templates/compatibility.php:
|
1285 |
msgid "Not installed"
|
1286 |
msgstr ""
|
1287 |
|
1193 |
msgid "Builders support"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1197 |
msgid "Сompatibility"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1201 |
msgid "Translate strings"
|
1202 |
msgstr ""
|
1203 |
|
1253 |
msgid "No items of this type were found."
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1257 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1258 |
+
msgstr ""
|
1259 |
+
|
1260 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1261 |
+
msgid "We do not recommend using it on production sites."
|
1262 |
+
msgstr ""
|
1263 |
+
|
1264 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1265 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1266 |
+
msgstr ""
|
1267 |
+
|
1268 |
#: includes/options/templates/compatibility.php:22
|
1269 |
msgid "List of supported add-ons"
|
1270 |
msgstr ""
|
1282 |
msgstr ""
|
1283 |
|
1284 |
#: includes/options/templates/compatibility.php:30
|
1285 |
+
msgid "Stage"
|
1286 |
+
msgstr ""
|
1287 |
+
|
1288 |
+
#: includes/options/templates/compatibility.php:31
|
1289 |
msgid "Status"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: includes/options/templates/compatibility.php:47
|
1293 |
msgid "Active"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: includes/options/templates/compatibility.php:49
|
1297 |
msgid "Installed, inactive"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: includes/options/templates/compatibility.php:52
|
1301 |
msgid "Not installed"
|
1302 |
msgstr ""
|
1303 |
|
languages/wpglobus-es_PR.po
CHANGED
@@ -1193,11 +1193,11 @@ msgstr ""
|
|
1193 |
msgid "Builders support"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: includes/options/class-wpglobus-options.php:
|
1197 |
msgid "Сompatibility"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: includes/options/class-wpglobus-options.php:
|
1201 |
msgid "Translate strings"
|
1202 |
msgstr ""
|
1203 |
|
@@ -1253,6 +1253,18 @@ msgstr ""
|
|
1253 |
msgid "No items of this type were found."
|
1254 |
msgstr ""
|
1255 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1256 |
#: includes/options/templates/compatibility.php:22
|
1257 |
msgid "List of supported add-ons"
|
1258 |
msgstr ""
|
@@ -1270,18 +1282,22 @@ msgid "Supported minimum version"
|
|
1270 |
msgstr ""
|
1271 |
|
1272 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1273 |
msgid "Status"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: includes/options/templates/compatibility.php:
|
1277 |
msgid "Active"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: includes/options/templates/compatibility.php:
|
1281 |
msgid "Installed, inactive"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: includes/options/templates/compatibility.php:
|
1285 |
msgid "Not installed"
|
1286 |
msgstr ""
|
1287 |
|
1193 |
msgid "Builders support"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1197 |
msgid "Сompatibility"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1201 |
msgid "Translate strings"
|
1202 |
msgstr ""
|
1203 |
|
1253 |
msgid "No items of this type were found."
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1257 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1258 |
+
msgstr ""
|
1259 |
+
|
1260 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1261 |
+
msgid "We do not recommend using it on production sites."
|
1262 |
+
msgstr ""
|
1263 |
+
|
1264 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1265 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1266 |
+
msgstr ""
|
1267 |
+
|
1268 |
#: includes/options/templates/compatibility.php:22
|
1269 |
msgid "List of supported add-ons"
|
1270 |
msgstr ""
|
1282 |
msgstr ""
|
1283 |
|
1284 |
#: includes/options/templates/compatibility.php:30
|
1285 |
+
msgid "Stage"
|
1286 |
+
msgstr ""
|
1287 |
+
|
1288 |
+
#: includes/options/templates/compatibility.php:31
|
1289 |
msgid "Status"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: includes/options/templates/compatibility.php:47
|
1293 |
msgid "Active"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: includes/options/templates/compatibility.php:49
|
1297 |
msgid "Installed, inactive"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: includes/options/templates/compatibility.php:52
|
1301 |
msgid "Not installed"
|
1302 |
msgstr ""
|
1303 |
|
languages/wpglobus-es_VE.po
CHANGED
@@ -1193,11 +1193,11 @@ msgstr ""
|
|
1193 |
msgid "Builders support"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
-
#: includes/options/class-wpglobus-options.php:
|
1197 |
msgid "Сompatibility"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: includes/options/class-wpglobus-options.php:
|
1201 |
msgid "Translate strings"
|
1202 |
msgstr ""
|
1203 |
|
@@ -1253,6 +1253,18 @@ msgstr ""
|
|
1253 |
msgid "No items of this type were found."
|
1254 |
msgstr ""
|
1255 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1256 |
#: includes/options/templates/compatibility.php:22
|
1257 |
msgid "List of supported add-ons"
|
1258 |
msgstr ""
|
@@ -1270,18 +1282,22 @@ msgid "Supported minimum version"
|
|
1270 |
msgstr ""
|
1271 |
|
1272 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1273 |
msgid "Status"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: includes/options/templates/compatibility.php:
|
1277 |
msgid "Active"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: includes/options/templates/compatibility.php:
|
1281 |
msgid "Installed, inactive"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: includes/options/templates/compatibility.php:
|
1285 |
msgid "Not installed"
|
1286 |
msgstr ""
|
1287 |
|
1193 |
msgid "Builders support"
|
1194 |
msgstr ""
|
1195 |
|
1196 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1197 |
msgid "Сompatibility"
|
1198 |
msgstr ""
|
1199 |
|
1200 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1201 |
msgid "Translate strings"
|
1202 |
msgstr ""
|
1203 |
|
1253 |
msgid "No items of this type were found."
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1257 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1258 |
+
msgstr ""
|
1259 |
+
|
1260 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1261 |
+
msgid "We do not recommend using it on production sites."
|
1262 |
+
msgstr ""
|
1263 |
+
|
1264 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1265 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1266 |
+
msgstr ""
|
1267 |
+
|
1268 |
#: includes/options/templates/compatibility.php:22
|
1269 |
msgid "List of supported add-ons"
|
1270 |
msgstr ""
|
1282 |
msgstr ""
|
1283 |
|
1284 |
#: includes/options/templates/compatibility.php:30
|
1285 |
+
msgid "Stage"
|
1286 |
+
msgstr ""
|
1287 |
+
|
1288 |
+
#: includes/options/templates/compatibility.php:31
|
1289 |
msgid "Status"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: includes/options/templates/compatibility.php:47
|
1293 |
msgid "Active"
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: includes/options/templates/compatibility.php:49
|
1297 |
msgid "Installed, inactive"
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: includes/options/templates/compatibility.php:52
|
1301 |
msgid "Not installed"
|
1302 |
msgstr ""
|
1303 |
|
languages/wpglobus-et.po
CHANGED
@@ -1156,11 +1156,11 @@ msgstr ""
|
|
1156 |
msgid "Builders support"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: includes/options/class-wpglobus-options.php:
|
1160 |
msgid "Сompatibility"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
-
#: includes/options/class-wpglobus-options.php:
|
1164 |
msgid "Translate strings"
|
1165 |
msgstr ""
|
1166 |
|
@@ -1216,6 +1216,18 @@ msgstr "Vali kirje"
|
|
1216 |
msgid "No items of this type were found."
|
1217 |
msgstr "Ühtegi seda liiki kirjet ei leitud."
|
1218 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1219 |
#: includes/options/templates/compatibility.php:22
|
1220 |
msgid "List of supported add-ons"
|
1221 |
msgstr ""
|
@@ -1233,18 +1245,22 @@ msgid "Supported minimum version"
|
|
1233 |
msgstr ""
|
1234 |
|
1235 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1236 |
msgid "Status"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: includes/options/templates/compatibility.php:
|
1240 |
msgid "Active"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: includes/options/templates/compatibility.php:
|
1244 |
msgid "Installed, inactive"
|
1245 |
msgstr ""
|
1246 |
|
1247 |
-
#: includes/options/templates/compatibility.php:
|
1248 |
msgid "Not installed"
|
1249 |
msgstr ""
|
1250 |
|
1156 |
msgid "Builders support"
|
1157 |
msgstr ""
|
1158 |
|
1159 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1160 |
msgid "Сompatibility"
|
1161 |
msgstr ""
|
1162 |
|
1163 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1164 |
msgid "Translate strings"
|
1165 |
msgstr ""
|
1166 |
|
1216 |
msgid "No items of this type were found."
|
1217 |
msgstr "Ühtegi seda liiki kirjet ei leitud."
|
1218 |
|
1219 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1220 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1221 |
+
msgstr ""
|
1222 |
+
|
1223 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1224 |
+
msgid "We do not recommend using it on production sites."
|
1225 |
+
msgstr ""
|
1226 |
+
|
1227 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1228 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1229 |
+
msgstr ""
|
1230 |
+
|
1231 |
#: includes/options/templates/compatibility.php:22
|
1232 |
msgid "List of supported add-ons"
|
1233 |
msgstr ""
|
1245 |
msgstr ""
|
1246 |
|
1247 |
#: includes/options/templates/compatibility.php:30
|
1248 |
+
msgid "Stage"
|
1249 |
+
msgstr ""
|
1250 |
+
|
1251 |
+
#: includes/options/templates/compatibility.php:31
|
1252 |
msgid "Status"
|
1253 |
msgstr ""
|
1254 |
|
1255 |
+
#: includes/options/templates/compatibility.php:47
|
1256 |
msgid "Active"
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: includes/options/templates/compatibility.php:49
|
1260 |
msgid "Installed, inactive"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: includes/options/templates/compatibility.php:52
|
1264 |
msgid "Not installed"
|
1265 |
msgstr ""
|
1266 |
|
languages/wpglobus-fr_BE.po
CHANGED
@@ -1262,11 +1262,11 @@ msgstr ""
|
|
1262 |
msgid "Builders support"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: includes/options/class-wpglobus-options.php:
|
1266 |
msgid "Сompatibility"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: includes/options/class-wpglobus-options.php:
|
1270 |
msgid "Translate strings"
|
1271 |
msgstr ""
|
1272 |
|
@@ -1322,6 +1322,18 @@ msgstr ""
|
|
1322 |
msgid "No items of this type were found."
|
1323 |
msgstr ""
|
1324 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1325 |
#: includes/options/templates/compatibility.php:22
|
1326 |
msgid "List of supported add-ons"
|
1327 |
msgstr ""
|
@@ -1339,18 +1351,22 @@ msgid "Supported minimum version"
|
|
1339 |
msgstr ""
|
1340 |
|
1341 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1342 |
msgid "Status"
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#: includes/options/templates/compatibility.php:
|
1346 |
msgid "Active"
|
1347 |
msgstr ""
|
1348 |
|
1349 |
-
#: includes/options/templates/compatibility.php:
|
1350 |
msgid "Installed, inactive"
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: includes/options/templates/compatibility.php:
|
1354 |
msgid "Not installed"
|
1355 |
msgstr ""
|
1356 |
|
1262 |
msgid "Builders support"
|
1263 |
msgstr ""
|
1264 |
|
1265 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1266 |
msgid "Сompatibility"
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1270 |
msgid "Translate strings"
|
1271 |
msgstr ""
|
1272 |
|
1322 |
msgid "No items of this type were found."
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1326 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1327 |
+
msgstr ""
|
1328 |
+
|
1329 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1330 |
+
msgid "We do not recommend using it on production sites."
|
1331 |
+
msgstr ""
|
1332 |
+
|
1333 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1334 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1335 |
+
msgstr ""
|
1336 |
+
|
1337 |
#: includes/options/templates/compatibility.php:22
|
1338 |
msgid "List of supported add-ons"
|
1339 |
msgstr ""
|
1351 |
msgstr ""
|
1352 |
|
1353 |
#: includes/options/templates/compatibility.php:30
|
1354 |
+
msgid "Stage"
|
1355 |
+
msgstr ""
|
1356 |
+
|
1357 |
+
#: includes/options/templates/compatibility.php:31
|
1358 |
msgid "Status"
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: includes/options/templates/compatibility.php:47
|
1362 |
msgid "Active"
|
1363 |
msgstr ""
|
1364 |
|
1365 |
+
#: includes/options/templates/compatibility.php:49
|
1366 |
msgid "Installed, inactive"
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: includes/options/templates/compatibility.php:52
|
1370 |
msgid "Not installed"
|
1371 |
msgstr ""
|
1372 |
|
languages/wpglobus-fr_CA.po
CHANGED
@@ -1264,11 +1264,11 @@ msgstr ""
|
|
1264 |
msgid "Builders support"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: includes/options/class-wpglobus-options.php:
|
1268 |
msgid "Сompatibility"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: includes/options/class-wpglobus-options.php:
|
1272 |
msgid "Translate strings"
|
1273 |
msgstr ""
|
1274 |
|
@@ -1324,6 +1324,18 @@ msgstr ""
|
|
1324 |
msgid "No items of this type were found."
|
1325 |
msgstr ""
|
1326 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1327 |
#: includes/options/templates/compatibility.php:22
|
1328 |
msgid "List of supported add-ons"
|
1329 |
msgstr ""
|
@@ -1341,18 +1353,22 @@ msgid "Supported minimum version"
|
|
1341 |
msgstr ""
|
1342 |
|
1343 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1344 |
msgid "Status"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: includes/options/templates/compatibility.php:
|
1348 |
msgid "Active"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: includes/options/templates/compatibility.php:
|
1352 |
msgid "Installed, inactive"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: includes/options/templates/compatibility.php:
|
1356 |
msgid "Not installed"
|
1357 |
msgstr ""
|
1358 |
|
1264 |
msgid "Builders support"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1268 |
msgid "Сompatibility"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1272 |
msgid "Translate strings"
|
1273 |
msgstr ""
|
1274 |
|
1324 |
msgid "No items of this type were found."
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1328 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1329 |
+
msgstr ""
|
1330 |
+
|
1331 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1332 |
+
msgid "We do not recommend using it on production sites."
|
1333 |
+
msgstr ""
|
1334 |
+
|
1335 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1336 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1337 |
+
msgstr ""
|
1338 |
+
|
1339 |
#: includes/options/templates/compatibility.php:22
|
1340 |
msgid "List of supported add-ons"
|
1341 |
msgstr ""
|
1353 |
msgstr ""
|
1354 |
|
1355 |
#: includes/options/templates/compatibility.php:30
|
1356 |
+
msgid "Stage"
|
1357 |
+
msgstr ""
|
1358 |
+
|
1359 |
+
#: includes/options/templates/compatibility.php:31
|
1360 |
msgid "Status"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: includes/options/templates/compatibility.php:47
|
1364 |
msgid "Active"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: includes/options/templates/compatibility.php:49
|
1368 |
msgid "Installed, inactive"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: includes/options/templates/compatibility.php:52
|
1372 |
msgid "Not installed"
|
1373 |
msgstr ""
|
1374 |
|
languages/wpglobus-fr_FR.po
CHANGED
@@ -1264,11 +1264,11 @@ msgstr ""
|
|
1264 |
msgid "Builders support"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: includes/options/class-wpglobus-options.php:
|
1268 |
msgid "Сompatibility"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: includes/options/class-wpglobus-options.php:
|
1272 |
msgid "Translate strings"
|
1273 |
msgstr ""
|
1274 |
|
@@ -1324,6 +1324,18 @@ msgstr "Sélectionnez un élément"
|
|
1324 |
msgid "No items of this type were found."
|
1325 |
msgstr "Aucun élément de ce type n'a été trouvé."
|
1326 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1327 |
#: includes/options/templates/compatibility.php:22
|
1328 |
msgid "List of supported add-ons"
|
1329 |
msgstr ""
|
@@ -1341,18 +1353,22 @@ msgid "Supported minimum version"
|
|
1341 |
msgstr ""
|
1342 |
|
1343 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1344 |
msgid "Status"
|
1345 |
msgstr ""
|
1346 |
|
1347 |
-
#: includes/options/templates/compatibility.php:
|
1348 |
msgid "Active"
|
1349 |
msgstr ""
|
1350 |
|
1351 |
-
#: includes/options/templates/compatibility.php:
|
1352 |
msgid "Installed, inactive"
|
1353 |
msgstr ""
|
1354 |
|
1355 |
-
#: includes/options/templates/compatibility.php:
|
1356 |
msgid "Not installed"
|
1357 |
msgstr ""
|
1358 |
|
1264 |
msgid "Builders support"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1268 |
msgid "Сompatibility"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1272 |
msgid "Translate strings"
|
1273 |
msgstr ""
|
1274 |
|
1324 |
msgid "No items of this type were found."
|
1325 |
msgstr "Aucun élément de ce type n'a été trouvé."
|
1326 |
|
1327 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1328 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1329 |
+
msgstr ""
|
1330 |
+
|
1331 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1332 |
+
msgid "We do not recommend using it on production sites."
|
1333 |
+
msgstr ""
|
1334 |
+
|
1335 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1336 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1337 |
+
msgstr ""
|
1338 |
+
|
1339 |
#: includes/options/templates/compatibility.php:22
|
1340 |
msgid "List of supported add-ons"
|
1341 |
msgstr ""
|
1353 |
msgstr ""
|
1354 |
|
1355 |
#: includes/options/templates/compatibility.php:30
|
1356 |
+
msgid "Stage"
|
1357 |
+
msgstr ""
|
1358 |
+
|
1359 |
+
#: includes/options/templates/compatibility.php:31
|
1360 |
msgid "Status"
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: includes/options/templates/compatibility.php:47
|
1364 |
msgid "Active"
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: includes/options/templates/compatibility.php:49
|
1368 |
msgid "Installed, inactive"
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: includes/options/templates/compatibility.php:52
|
1372 |
msgid "Not installed"
|
1373 |
msgstr ""
|
1374 |
|
languages/wpglobus-id_ID.po
CHANGED
@@ -1236,11 +1236,11 @@ msgstr ""
|
|
1236 |
msgid "Builders support"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: includes/options/class-wpglobus-options.php:
|
1240 |
msgid "Сompatibility"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
-
#: includes/options/class-wpglobus-options.php:
|
1244 |
msgid "Translate strings"
|
1245 |
msgstr ""
|
1246 |
|
@@ -1296,6 +1296,18 @@ msgstr ""
|
|
1296 |
msgid "No items of this type were found."
|
1297 |
msgstr ""
|
1298 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1299 |
#: includes/options/templates/compatibility.php:22
|
1300 |
msgid "List of supported add-ons"
|
1301 |
msgstr ""
|
@@ -1313,18 +1325,22 @@ msgid "Supported minimum version"
|
|
1313 |
msgstr ""
|
1314 |
|
1315 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1316 |
msgid "Status"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
-
#: includes/options/templates/compatibility.php:
|
1320 |
msgid "Active"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
-
#: includes/options/templates/compatibility.php:
|
1324 |
msgid "Installed, inactive"
|
1325 |
msgstr ""
|
1326 |
|
1327 |
-
#: includes/options/templates/compatibility.php:
|
1328 |
msgid "Not installed"
|
1329 |
msgstr ""
|
1330 |
|
1236 |
msgid "Builders support"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1240 |
msgid "Сompatibility"
|
1241 |
msgstr ""
|
1242 |
|
1243 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1244 |
msgid "Translate strings"
|
1245 |
msgstr ""
|
1246 |
|
1296 |
msgid "No items of this type were found."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1300 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1301 |
+
msgstr ""
|
1302 |
+
|
1303 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1304 |
+
msgid "We do not recommend using it on production sites."
|
1305 |
+
msgstr ""
|
1306 |
+
|
1307 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1308 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1309 |
+
msgstr ""
|
1310 |
+
|
1311 |
#: includes/options/templates/compatibility.php:22
|
1312 |
msgid "List of supported add-ons"
|
1313 |
msgstr ""
|
1325 |
msgstr ""
|
1326 |
|
1327 |
#: includes/options/templates/compatibility.php:30
|
1328 |
+
msgid "Stage"
|
1329 |
+
msgstr ""
|
1330 |
+
|
1331 |
+
#: includes/options/templates/compatibility.php:31
|
1332 |
msgid "Status"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: includes/options/templates/compatibility.php:47
|
1336 |
msgid "Active"
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: includes/options/templates/compatibility.php:49
|
1340 |
msgid "Installed, inactive"
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: includes/options/templates/compatibility.php:52
|
1344 |
msgid "Not installed"
|
1345 |
msgstr ""
|
1346 |
|
languages/wpglobus-ko_KR.po
CHANGED
@@ -1155,11 +1155,11 @@ msgstr ""
|
|
1155 |
msgid "Builders support"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: includes/options/class-wpglobus-options.php:
|
1159 |
msgid "Сompatibility"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: includes/options/class-wpglobus-options.php:
|
1163 |
msgid "Translate strings"
|
1164 |
msgstr ""
|
1165 |
|
@@ -1215,6 +1215,18 @@ msgstr ""
|
|
1215 |
msgid "No items of this type were found."
|
1216 |
msgstr ""
|
1217 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1218 |
#: includes/options/templates/compatibility.php:22
|
1219 |
msgid "List of supported add-ons"
|
1220 |
msgstr ""
|
@@ -1232,18 +1244,22 @@ msgid "Supported minimum version"
|
|
1232 |
msgstr ""
|
1233 |
|
1234 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1235 |
msgid "Status"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: includes/options/templates/compatibility.php:
|
1239 |
msgid "Active"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: includes/options/templates/compatibility.php:
|
1243 |
msgid "Installed, inactive"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: includes/options/templates/compatibility.php:
|
1247 |
msgid "Not installed"
|
1248 |
msgstr ""
|
1249 |
|
1155 |
msgid "Builders support"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1159 |
msgid "Сompatibility"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1163 |
msgid "Translate strings"
|
1164 |
msgstr ""
|
1165 |
|
1215 |
msgid "No items of this type were found."
|
1216 |
msgstr ""
|
1217 |
|
1218 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1219 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1220 |
+
msgstr ""
|
1221 |
+
|
1222 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1223 |
+
msgid "We do not recommend using it on production sites."
|
1224 |
+
msgstr ""
|
1225 |
+
|
1226 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1227 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1228 |
+
msgstr ""
|
1229 |
+
|
1230 |
#: includes/options/templates/compatibility.php:22
|
1231 |
msgid "List of supported add-ons"
|
1232 |
msgstr ""
|
1244 |
msgstr ""
|
1245 |
|
1246 |
#: includes/options/templates/compatibility.php:30
|
1247 |
+
msgid "Stage"
|
1248 |
+
msgstr ""
|
1249 |
+
|
1250 |
+
#: includes/options/templates/compatibility.php:31
|
1251 |
msgid "Status"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: includes/options/templates/compatibility.php:47
|
1255 |
msgid "Active"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: includes/options/templates/compatibility.php:49
|
1259 |
msgid "Installed, inactive"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: includes/options/templates/compatibility.php:52
|
1263 |
msgid "Not installed"
|
1264 |
msgstr ""
|
1265 |
|
languages/wpglobus-pl_PL.po
CHANGED
@@ -1185,11 +1185,11 @@ msgstr ""
|
|
1185 |
msgid "Builders support"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
-
#: includes/options/class-wpglobus-options.php:
|
1189 |
msgid "Сompatibility"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
-
#: includes/options/class-wpglobus-options.php:
|
1193 |
msgid "Translate strings"
|
1194 |
msgstr ""
|
1195 |
|
@@ -1245,6 +1245,18 @@ msgstr "Wybierz element"
|
|
1245 |
msgid "No items of this type were found."
|
1246 |
msgstr ""
|
1247 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1248 |
#: includes/options/templates/compatibility.php:22
|
1249 |
msgid "List of supported add-ons"
|
1250 |
msgstr ""
|
@@ -1262,18 +1274,22 @@ msgid "Supported minimum version"
|
|
1262 |
msgstr ""
|
1263 |
|
1264 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1265 |
msgid "Status"
|
1266 |
msgstr ""
|
1267 |
|
1268 |
-
#: includes/options/templates/compatibility.php:
|
1269 |
msgid "Active"
|
1270 |
msgstr ""
|
1271 |
|
1272 |
-
#: includes/options/templates/compatibility.php:
|
1273 |
msgid "Installed, inactive"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: includes/options/templates/compatibility.php:
|
1277 |
msgid "Not installed"
|
1278 |
msgstr ""
|
1279 |
|
1185 |
msgid "Builders support"
|
1186 |
msgstr ""
|
1187 |
|
1188 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1189 |
msgid "Сompatibility"
|
1190 |
msgstr ""
|
1191 |
|
1192 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1193 |
msgid "Translate strings"
|
1194 |
msgstr ""
|
1195 |
|
1245 |
msgid "No items of this type were found."
|
1246 |
msgstr ""
|
1247 |
|
1248 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1249 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1250 |
+
msgstr ""
|
1251 |
+
|
1252 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1253 |
+
msgid "We do not recommend using it on production sites."
|
1254 |
+
msgstr ""
|
1255 |
+
|
1256 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1257 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1258 |
+
msgstr ""
|
1259 |
+
|
1260 |
#: includes/options/templates/compatibility.php:22
|
1261 |
msgid "List of supported add-ons"
|
1262 |
msgstr ""
|
1274 |
msgstr ""
|
1275 |
|
1276 |
#: includes/options/templates/compatibility.php:30
|
1277 |
+
msgid "Stage"
|
1278 |
+
msgstr ""
|
1279 |
+
|
1280 |
+
#: includes/options/templates/compatibility.php:31
|
1281 |
msgid "Status"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: includes/options/templates/compatibility.php:47
|
1285 |
msgid "Active"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: includes/options/templates/compatibility.php:49
|
1289 |
msgid "Installed, inactive"
|
1290 |
msgstr ""
|
1291 |
|
1292 |
+
#: includes/options/templates/compatibility.php:52
|
1293 |
msgid "Not installed"
|
1294 |
msgstr ""
|
1295 |
|
languages/wpglobus-pt_BR.po
CHANGED
@@ -1155,11 +1155,11 @@ msgstr ""
|
|
1155 |
msgid "Builders support"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: includes/options/class-wpglobus-options.php:
|
1159 |
msgid "Сompatibility"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: includes/options/class-wpglobus-options.php:
|
1163 |
msgid "Translate strings"
|
1164 |
msgstr ""
|
1165 |
|
@@ -1215,6 +1215,18 @@ msgstr "Selecionar um item"
|
|
1215 |
msgid "No items of this type were found."
|
1216 |
msgstr "Não foram encontrados itens desse tipo."
|
1217 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1218 |
#: includes/options/templates/compatibility.php:22
|
1219 |
msgid "List of supported add-ons"
|
1220 |
msgstr ""
|
@@ -1232,18 +1244,22 @@ msgid "Supported minimum version"
|
|
1232 |
msgstr ""
|
1233 |
|
1234 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1235 |
msgid "Status"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: includes/options/templates/compatibility.php:
|
1239 |
msgid "Active"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: includes/options/templates/compatibility.php:
|
1243 |
msgid "Installed, inactive"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: includes/options/templates/compatibility.php:
|
1247 |
msgid "Not installed"
|
1248 |
msgstr ""
|
1249 |
|
1155 |
msgid "Builders support"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1159 |
msgid "Сompatibility"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1163 |
msgid "Translate strings"
|
1164 |
msgstr ""
|
1165 |
|
1215 |
msgid "No items of this type were found."
|
1216 |
msgstr "Não foram encontrados itens desse tipo."
|
1217 |
|
1218 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1219 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1220 |
+
msgstr ""
|
1221 |
+
|
1222 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1223 |
+
msgid "We do not recommend using it on production sites."
|
1224 |
+
msgstr ""
|
1225 |
+
|
1226 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1227 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1228 |
+
msgstr ""
|
1229 |
+
|
1230 |
#: includes/options/templates/compatibility.php:22
|
1231 |
msgid "List of supported add-ons"
|
1232 |
msgstr ""
|
1244 |
msgstr ""
|
1245 |
|
1246 |
#: includes/options/templates/compatibility.php:30
|
1247 |
+
msgid "Stage"
|
1248 |
+
msgstr ""
|
1249 |
+
|
1250 |
+
#: includes/options/templates/compatibility.php:31
|
1251 |
msgid "Status"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: includes/options/templates/compatibility.php:47
|
1255 |
msgid "Active"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: includes/options/templates/compatibility.php:49
|
1259 |
msgid "Installed, inactive"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: includes/options/templates/compatibility.php:52
|
1263 |
msgid "Not installed"
|
1264 |
msgstr ""
|
1265 |
|
languages/wpglobus-pt_PT.po
CHANGED
@@ -1155,11 +1155,11 @@ msgstr ""
|
|
1155 |
msgid "Builders support"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
-
#: includes/options/class-wpglobus-options.php:
|
1159 |
msgid "Сompatibility"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
-
#: includes/options/class-wpglobus-options.php:
|
1163 |
msgid "Translate strings"
|
1164 |
msgstr ""
|
1165 |
|
@@ -1215,6 +1215,18 @@ msgstr ""
|
|
1215 |
msgid "No items of this type were found."
|
1216 |
msgstr "Nenhum item deste tipo foi encontrado."
|
1217 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1218 |
#: includes/options/templates/compatibility.php:22
|
1219 |
msgid "List of supported add-ons"
|
1220 |
msgstr ""
|
@@ -1232,18 +1244,22 @@ msgid "Supported minimum version"
|
|
1232 |
msgstr ""
|
1233 |
|
1234 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1235 |
msgid "Status"
|
1236 |
msgstr ""
|
1237 |
|
1238 |
-
#: includes/options/templates/compatibility.php:
|
1239 |
msgid "Active"
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: includes/options/templates/compatibility.php:
|
1243 |
msgid "Installed, inactive"
|
1244 |
msgstr ""
|
1245 |
|
1246 |
-
#: includes/options/templates/compatibility.php:
|
1247 |
msgid "Not installed"
|
1248 |
msgstr ""
|
1249 |
|
1155 |
msgid "Builders support"
|
1156 |
msgstr ""
|
1157 |
|
1158 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1159 |
msgid "Сompatibility"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1163 |
msgid "Translate strings"
|
1164 |
msgstr ""
|
1165 |
|
1215 |
msgid "No items of this type were found."
|
1216 |
msgstr "Nenhum item deste tipo foi encontrado."
|
1217 |
|
1218 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1219 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1220 |
+
msgstr ""
|
1221 |
+
|
1222 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1223 |
+
msgid "We do not recommend using it on production sites."
|
1224 |
+
msgstr ""
|
1225 |
+
|
1226 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1227 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1228 |
+
msgstr ""
|
1229 |
+
|
1230 |
#: includes/options/templates/compatibility.php:22
|
1231 |
msgid "List of supported add-ons"
|
1232 |
msgstr ""
|
1244 |
msgstr ""
|
1245 |
|
1246 |
#: includes/options/templates/compatibility.php:30
|
1247 |
+
msgid "Stage"
|
1248 |
+
msgstr ""
|
1249 |
+
|
1250 |
+
#: includes/options/templates/compatibility.php:31
|
1251 |
msgid "Status"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: includes/options/templates/compatibility.php:47
|
1255 |
msgid "Active"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: includes/options/templates/compatibility.php:49
|
1259 |
msgid "Installed, inactive"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: includes/options/templates/compatibility.php:52
|
1263 |
msgid "Not installed"
|
1264 |
msgstr ""
|
1265 |
|
languages/wpglobus-ro_RO.po
CHANGED
@@ -1188,11 +1188,11 @@ msgstr ""
|
|
1188 |
msgid "Builders support"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: includes/options/class-wpglobus-options.php:
|
1192 |
msgid "Сompatibility"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: includes/options/class-wpglobus-options.php:
|
1196 |
msgid "Translate strings"
|
1197 |
msgstr ""
|
1198 |
|
@@ -1248,6 +1248,18 @@ msgstr "Selecteaza un item"
|
|
1248 |
msgid "No items of this type were found."
|
1249 |
msgstr "Nu s-a găsit niciun articol de acest tip."
|
1250 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1251 |
#: includes/options/templates/compatibility.php:22
|
1252 |
msgid "List of supported add-ons"
|
1253 |
msgstr ""
|
@@ -1265,18 +1277,22 @@ msgid "Supported minimum version"
|
|
1265 |
msgstr ""
|
1266 |
|
1267 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1268 |
msgid "Status"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: includes/options/templates/compatibility.php:
|
1272 |
msgid "Active"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: includes/options/templates/compatibility.php:
|
1276 |
msgid "Installed, inactive"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: includes/options/templates/compatibility.php:
|
1280 |
msgid "Not installed"
|
1281 |
msgstr ""
|
1282 |
|
1188 |
msgid "Builders support"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1192 |
msgid "Сompatibility"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1196 |
msgid "Translate strings"
|
1197 |
msgstr ""
|
1198 |
|
1248 |
msgid "No items of this type were found."
|
1249 |
msgstr "Nu s-a găsit niciun articol de acest tip."
|
1250 |
|
1251 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1252 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1253 |
+
msgstr ""
|
1254 |
+
|
1255 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1256 |
+
msgid "We do not recommend using it on production sites."
|
1257 |
+
msgstr ""
|
1258 |
+
|
1259 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1260 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1261 |
+
msgstr ""
|
1262 |
+
|
1263 |
#: includes/options/templates/compatibility.php:22
|
1264 |
msgid "List of supported add-ons"
|
1265 |
msgstr ""
|
1277 |
msgstr ""
|
1278 |
|
1279 |
#: includes/options/templates/compatibility.php:30
|
1280 |
+
msgid "Stage"
|
1281 |
+
msgstr ""
|
1282 |
+
|
1283 |
+
#: includes/options/templates/compatibility.php:31
|
1284 |
msgid "Status"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: includes/options/templates/compatibility.php:47
|
1288 |
msgid "Active"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: includes/options/templates/compatibility.php:49
|
1292 |
msgid "Installed, inactive"
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: includes/options/templates/compatibility.php:52
|
1296 |
msgid "Not installed"
|
1297 |
msgstr ""
|
1298 |
|
languages/wpglobus-ru_RU.mo
CHANGED
Binary file
|
languages/wpglobus-ru_RU.po
CHANGED
@@ -1275,11 +1275,11 @@ msgstr "Разрешена"
|
|
1275 |
msgid "Builders support"
|
1276 |
msgstr "Поддержка конструкторов страниц"
|
1277 |
|
1278 |
-
#: includes/options/class-wpglobus-options.php:
|
1279 |
msgid "Сompatibility"
|
1280 |
msgstr "Совместимость"
|
1281 |
|
1282 |
-
#: includes/options/class-wpglobus-options.php:
|
1283 |
msgid "Translate strings"
|
1284 |
msgstr "Переводы строк"
|
1285 |
|
@@ -1335,6 +1335,18 @@ msgstr "Выберите из списка"
|
|
1335 |
msgid "No items of this type were found."
|
1336 |
msgstr "Список пуст."
|
1337 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1338 |
#: includes/options/templates/compatibility.php:22
|
1339 |
msgid "List of supported add-ons"
|
1340 |
msgstr "Список поддерживаемых расширений"
|
@@ -1352,18 +1364,22 @@ msgid "Supported minimum version"
|
|
1352 |
msgstr "Минимальная поддерживаемая версия"
|
1353 |
|
1354 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1355 |
msgid "Status"
|
1356 |
msgstr "Статус"
|
1357 |
|
1358 |
-
#: includes/options/templates/compatibility.php:
|
1359 |
msgid "Active"
|
1360 |
msgstr "Активно"
|
1361 |
|
1362 |
-
#: includes/options/templates/compatibility.php:
|
1363 |
msgid "Installed, inactive"
|
1364 |
msgstr "Установлено, не активно"
|
1365 |
|
1366 |
-
#: includes/options/templates/compatibility.php:
|
1367 |
msgid "Not installed"
|
1368 |
msgstr "Не установлено"
|
1369 |
|
1275 |
msgid "Builders support"
|
1276 |
msgstr "Поддержка конструкторов страниц"
|
1277 |
|
1278 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1279 |
msgid "Сompatibility"
|
1280 |
msgstr "Совместимость"
|
1281 |
|
1282 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1283 |
msgid "Translate strings"
|
1284 |
msgstr "Переводы строк"
|
1285 |
|
1335 |
msgid "No items of this type were found."
|
1336 |
msgstr "Список пуст."
|
1337 |
|
1338 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1339 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1340 |
+
msgstr "Предоставляется с целью тестирования и выявления возможных ошибок."
|
1341 |
+
|
1342 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1343 |
+
msgid "We do not recommend using it on production sites."
|
1344 |
+
msgstr "Не рекомендуется использовать на рабочих сайтах."
|
1345 |
+
|
1346 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1347 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1348 |
+
msgstr "О возникших проблемах сообщайте в %1$sслужбу поддержки%2$s."
|
1349 |
+
|
1350 |
#: includes/options/templates/compatibility.php:22
|
1351 |
msgid "List of supported add-ons"
|
1352 |
msgstr "Список поддерживаемых расширений"
|
1364 |
msgstr "Минимальная поддерживаемая версия"
|
1365 |
|
1366 |
#: includes/options/templates/compatibility.php:30
|
1367 |
+
msgid "Stage"
|
1368 |
+
msgstr "Готовность"
|
1369 |
+
|
1370 |
+
#: includes/options/templates/compatibility.php:31
|
1371 |
msgid "Status"
|
1372 |
msgstr "Статус"
|
1373 |
|
1374 |
+
#: includes/options/templates/compatibility.php:47
|
1375 |
msgid "Active"
|
1376 |
msgstr "Активно"
|
1377 |
|
1378 |
+
#: includes/options/templates/compatibility.php:49
|
1379 |
msgid "Installed, inactive"
|
1380 |
msgstr "Установлено, не активно"
|
1381 |
|
1382 |
+
#: includes/options/templates/compatibility.php:52
|
1383 |
msgid "Not installed"
|
1384 |
msgstr "Не установлено"
|
1385 |
|
languages/wpglobus-sv_SE.po
CHANGED
@@ -1180,11 +1180,11 @@ msgstr ""
|
|
1180 |
msgid "Builders support"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#: includes/options/class-wpglobus-options.php:
|
1184 |
msgid "Сompatibility"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: includes/options/class-wpglobus-options.php:
|
1188 |
msgid "Translate strings"
|
1189 |
msgstr ""
|
1190 |
|
@@ -1240,6 +1240,18 @@ msgstr "Välj ett objekt"
|
|
1240 |
msgid "No items of this type were found."
|
1241 |
msgstr "Inga objekt av den här typen hittade."
|
1242 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1243 |
#: includes/options/templates/compatibility.php:22
|
1244 |
msgid "List of supported add-ons"
|
1245 |
msgstr ""
|
@@ -1257,18 +1269,22 @@ msgid "Supported minimum version"
|
|
1257 |
msgstr ""
|
1258 |
|
1259 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1260 |
msgid "Status"
|
1261 |
msgstr ""
|
1262 |
|
1263 |
-
#: includes/options/templates/compatibility.php:
|
1264 |
msgid "Active"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: includes/options/templates/compatibility.php:
|
1268 |
msgid "Installed, inactive"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: includes/options/templates/compatibility.php:
|
1272 |
msgid "Not installed"
|
1273 |
msgstr ""
|
1274 |
|
1180 |
msgid "Builders support"
|
1181 |
msgstr ""
|
1182 |
|
1183 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1184 |
msgid "Сompatibility"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1188 |
msgid "Translate strings"
|
1189 |
msgstr ""
|
1190 |
|
1240 |
msgid "No items of this type were found."
|
1241 |
msgstr "Inga objekt av den här typen hittade."
|
1242 |
|
1243 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1244 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1245 |
+
msgstr ""
|
1246 |
+
|
1247 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1248 |
+
msgid "We do not recommend using it on production sites."
|
1249 |
+
msgstr ""
|
1250 |
+
|
1251 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1252 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1253 |
+
msgstr ""
|
1254 |
+
|
1255 |
#: includes/options/templates/compatibility.php:22
|
1256 |
msgid "List of supported add-ons"
|
1257 |
msgstr ""
|
1269 |
msgstr ""
|
1270 |
|
1271 |
#: includes/options/templates/compatibility.php:30
|
1272 |
+
msgid "Stage"
|
1273 |
+
msgstr ""
|
1274 |
+
|
1275 |
+
#: includes/options/templates/compatibility.php:31
|
1276 |
msgid "Status"
|
1277 |
msgstr ""
|
1278 |
|
1279 |
+
#: includes/options/templates/compatibility.php:47
|
1280 |
msgid "Active"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: includes/options/templates/compatibility.php:49
|
1284 |
msgid "Installed, inactive"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: includes/options/templates/compatibility.php:52
|
1288 |
msgid "Not installed"
|
1289 |
msgstr ""
|
1290 |
|
languages/wpglobus-tr_TR.po
CHANGED
@@ -1184,11 +1184,11 @@ msgstr ""
|
|
1184 |
msgid "Builders support"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#: includes/options/class-wpglobus-options.php:
|
1188 |
msgid "Сompatibility"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: includes/options/class-wpglobus-options.php:
|
1192 |
msgid "Translate strings"
|
1193 |
msgstr ""
|
1194 |
|
@@ -1244,6 +1244,18 @@ msgstr "Bir öğe seçin"
|
|
1244 |
msgid "No items of this type were found."
|
1245 |
msgstr "Bu tipte bir öğe bulunamadı."
|
1246 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1247 |
#: includes/options/templates/compatibility.php:22
|
1248 |
msgid "List of supported add-ons"
|
1249 |
msgstr ""
|
@@ -1261,18 +1273,22 @@ msgid "Supported minimum version"
|
|
1261 |
msgstr ""
|
1262 |
|
1263 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1264 |
msgid "Status"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: includes/options/templates/compatibility.php:
|
1268 |
msgid "Active"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: includes/options/templates/compatibility.php:
|
1272 |
msgid "Installed, inactive"
|
1273 |
msgstr ""
|
1274 |
|
1275 |
-
#: includes/options/templates/compatibility.php:
|
1276 |
msgid "Not installed"
|
1277 |
msgstr ""
|
1278 |
|
1184 |
msgid "Builders support"
|
1185 |
msgstr ""
|
1186 |
|
1187 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1188 |
msgid "Сompatibility"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1192 |
msgid "Translate strings"
|
1193 |
msgstr ""
|
1194 |
|
1244 |
msgid "No items of this type were found."
|
1245 |
msgstr "Bu tipte bir öğe bulunamadı."
|
1246 |
|
1247 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1248 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1249 |
+
msgstr ""
|
1250 |
+
|
1251 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1252 |
+
msgid "We do not recommend using it on production sites."
|
1253 |
+
msgstr ""
|
1254 |
+
|
1255 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1256 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1257 |
+
msgstr ""
|
1258 |
+
|
1259 |
#: includes/options/templates/compatibility.php:22
|
1260 |
msgid "List of supported add-ons"
|
1261 |
msgstr ""
|
1273 |
msgstr ""
|
1274 |
|
1275 |
#: includes/options/templates/compatibility.php:30
|
1276 |
+
msgid "Stage"
|
1277 |
+
msgstr ""
|
1278 |
+
|
1279 |
+
#: includes/options/templates/compatibility.php:31
|
1280 |
msgid "Status"
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: includes/options/templates/compatibility.php:47
|
1284 |
msgid "Active"
|
1285 |
msgstr ""
|
1286 |
|
1287 |
+
#: includes/options/templates/compatibility.php:49
|
1288 |
msgid "Installed, inactive"
|
1289 |
msgstr ""
|
1290 |
|
1291 |
+
#: includes/options/templates/compatibility.php:52
|
1292 |
msgid "Not installed"
|
1293 |
msgstr ""
|
1294 |
|
languages/wpglobus-uk.po
CHANGED
@@ -1216,11 +1216,11 @@ msgstr ""
|
|
1216 |
msgid "Builders support"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: includes/options/class-wpglobus-options.php:
|
1220 |
msgid "Сompatibility"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
-
#: includes/options/class-wpglobus-options.php:
|
1224 |
msgid "Translate strings"
|
1225 |
msgstr ""
|
1226 |
|
@@ -1276,6 +1276,18 @@ msgstr "Вибрати"
|
|
1276 |
msgid "No items of this type were found."
|
1277 |
msgstr "Нічого цього типу не знайдено."
|
1278 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1279 |
#: includes/options/templates/compatibility.php:22
|
1280 |
msgid "List of supported add-ons"
|
1281 |
msgstr ""
|
@@ -1293,18 +1305,22 @@ msgid "Supported minimum version"
|
|
1293 |
msgstr ""
|
1294 |
|
1295 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1296 |
msgid "Status"
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: includes/options/templates/compatibility.php:
|
1300 |
msgid "Active"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#: includes/options/templates/compatibility.php:
|
1304 |
msgid "Installed, inactive"
|
1305 |
msgstr ""
|
1306 |
|
1307 |
-
#: includes/options/templates/compatibility.php:
|
1308 |
msgid "Not installed"
|
1309 |
msgstr ""
|
1310 |
|
1216 |
msgid "Builders support"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: includes/options/class-wpglobus-options.php:1429
|
1220 |
msgid "Сompatibility"
|
1221 |
msgstr ""
|
1222 |
|
1223 |
+
#: includes/options/class-wpglobus-options.php:1742
|
1224 |
msgid "Translate strings"
|
1225 |
msgstr ""
|
1226 |
|
1276 |
msgid "No items of this type were found."
|
1277 |
msgstr "Нічого цього типу не знайдено."
|
1278 |
|
1279 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1280 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1281 |
+
msgstr ""
|
1282 |
+
|
1283 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1284 |
+
msgid "We do not recommend using it on production sites."
|
1285 |
+
msgstr ""
|
1286 |
+
|
1287 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1288 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1289 |
+
msgstr ""
|
1290 |
+
|
1291 |
#: includes/options/templates/compatibility.php:22
|
1292 |
msgid "List of supported add-ons"
|
1293 |
msgstr ""
|
1305 |
msgstr ""
|
1306 |
|
1307 |
#: includes/options/templates/compatibility.php:30
|
1308 |
+
msgid "Stage"
|
1309 |
+
msgstr ""
|
1310 |
+
|
1311 |
+
#: includes/options/templates/compatibility.php:31
|
1312 |
msgid "Status"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: includes/options/templates/compatibility.php:47
|
1316 |
msgid "Active"
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: includes/options/templates/compatibility.php:49
|
1320 |
msgid "Installed, inactive"
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: includes/options/templates/compatibility.php:52
|
1324 |
msgid "Not installed"
|
1325 |
msgstr ""
|
1326 |
|
languages/wpglobus.pot
CHANGED
@@ -1,8 +1,8 @@
|
|
1 |
-
# Copyright (C) 2018 WPGlobus 1.9.
|
2 |
-
# This file is distributed under the same license as the WPGlobus 1.9.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: WPGlobus 1.9.
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -962,11 +962,11 @@ msgstr ""
|
|
962 |
msgid "Builders support"
|
963 |
msgstr ""
|
964 |
|
965 |
-
#: includes/options/class-wpglobus-options.php:
|
966 |
msgid "Сompatibility"
|
967 |
msgstr ""
|
968 |
|
969 |
-
#: includes/options/class-wpglobus-options.php:
|
970 |
msgid "Translate strings"
|
971 |
msgstr ""
|
972 |
|
@@ -1022,6 +1022,18 @@ msgstr ""
|
|
1022 |
msgid "No items of this type were found."
|
1023 |
msgstr ""
|
1024 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1025 |
#: includes/options/templates/compatibility.php:22
|
1026 |
msgid "List of supported add-ons"
|
1027 |
msgstr ""
|
@@ -1039,18 +1051,22 @@ msgid "Supported minimum version"
|
|
1039 |
msgstr ""
|
1040 |
|
1041 |
#: includes/options/templates/compatibility.php:30
|
|
|
|
|
|
|
|
|
1042 |
msgid "Status"
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#: includes/options/templates/compatibility.php:
|
1046 |
msgid "Active"
|
1047 |
msgstr ""
|
1048 |
|
1049 |
-
#: includes/options/templates/compatibility.php:
|
1050 |
msgid "Installed, inactive"
|
1051 |
msgstr ""
|
1052 |
|
1053 |
-
#: includes/options/templates/compatibility.php:
|
1054 |
msgid "Not installed"
|
1055 |
msgstr ""
|
1056 |
|
1 |
+
# Copyright (C) 2018 WPGlobus 1.9.22
|
2 |
+
# This file is distributed under the same license as the WPGlobus 1.9.22 package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: WPGlobus 1.9.22\n"
|
6 |
"MIME-Version: 1.0\n"
|
7 |
"Content-Type: text/plain; charset=UTF-8\n"
|
8 |
"Content-Transfer-Encoding: 8bit\n"
|
962 |
msgid "Builders support"
|
963 |
msgstr ""
|
964 |
|
965 |
+
#: includes/options/class-wpglobus-options.php:1429
|
966 |
msgid "Сompatibility"
|
967 |
msgstr ""
|
968 |
|
969 |
+
#: includes/options/class-wpglobus-options.php:1742
|
970 |
msgid "Translate strings"
|
971 |
msgstr ""
|
972 |
|
1022 |
msgid "No items of this type were found."
|
1023 |
msgstr ""
|
1024 |
|
1025 |
+
#: includes/options/templates/compatibility-beta.php:15
|
1026 |
+
msgid "Multilingual support of this add-on is currently in Beta stage."
|
1027 |
+
msgstr ""
|
1028 |
+
|
1029 |
+
#: includes/options/templates/compatibility-beta.php:17
|
1030 |
+
msgid "We do not recommend using it on production sites."
|
1031 |
+
msgstr ""
|
1032 |
+
|
1033 |
+
#: includes/options/templates/compatibility-beta.php:23
|
1034 |
+
msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
|
1035 |
+
msgstr ""
|
1036 |
+
|
1037 |
#: includes/options/templates/compatibility.php:22
|
1038 |
msgid "List of supported add-ons"
|
1039 |
msgstr ""
|
1051 |
msgstr ""
|
1052 |
|
1053 |
#: includes/options/templates/compatibility.php:30
|
1054 |
+
msgid "Stage"
|
1055 |
+
msgstr ""
|
1056 |
+
|
1057 |
+
#: includes/options/templates/compatibility.php:31
|
1058 |
msgid "Status"
|
1059 |
msgstr ""
|
1060 |
|
1061 |
+
#: includes/options/templates/compatibility.php:47
|
1062 |
msgid "Active"
|
1063 |
msgstr ""
|
1064 |
|
1065 |
+
#: includes/options/templates/compatibility.php:49
|
1066 |
msgid "Installed, inactive"
|
1067 |
msgstr ""
|
1068 |
|
1069 |
+
#: includes/options/templates/compatibility.php:52
|
1070 |
msgid "Not installed"
|
1071 |
msgstr ""
|
1072 |
|
readme.txt
CHANGED
@@ -218,6 +218,13 @@ This maintenance release introduces Gutenberg support in beta-stage.
|
|
218 |
|
219 |
== Changelog ==
|
220 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
= 1.9.21 =
|
222 |
|
223 |
* FIXED:
|
218 |
|
219 |
== Changelog ==
|
220 |
|
221 |
+
= 1.9.22 =
|
222 |
+
|
223 |
+
* FIXED:
|
224 |
+
* Gutenberg: Correctly define language of the current post for REST API requests.
|
225 |
+
* ADDED:
|
226 |
+
* Notice about builders in Beta stage.
|
227 |
+
|
228 |
= 1.9.21 =
|
229 |
|
230 |
* FIXED:
|
wpglobus.php
CHANGED
@@ -15,7 +15,7 @@
|
|
15 |
* Description: A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, widgets and even custom fields - in multiple languages!
|
16 |
* Text Domain: wpglobus
|
17 |
* Domain Path: /languages/
|
18 |
-
* Version: 1.9.
|
19 |
* Author: WPGlobus
|
20 |
* Author URI: https://wpglobus.com/
|
21 |
* Network: false
|
@@ -42,7 +42,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
42 |
exit;
|
43 |
}
|
44 |
|
45 |
-
define( 'WPGLOBUS_VERSION', '1.9.
|
46 |
define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
47 |
|
48 |
/**
|
15 |
* Description: A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, widgets and even custom fields - in multiple languages!
|
16 |
* Text Domain: wpglobus
|
17 |
* Domain Path: /languages/
|
18 |
+
* Version: 1.9.22
|
19 |
* Author: WPGlobus
|
20 |
* Author URI: https://wpglobus.com/
|
21 |
* Network: false
|
42 |
exit;
|
43 |
}
|
44 |
|
45 |
+
define( 'WPGLOBUS_VERSION', '1.9.22' );
|
46 |
define( 'WPGLOBUS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
47 |
|
48 |
/**
|