WPGlobus – Multilingual Everything! - Version 2.5.19

Version Description

  • (Options/Languages table) Added Georgian language and flag image.
  • (Vendor/Yoast) Added multilingual support for the fields in the Social tab.
Download this release

Release Info

Developer tivnet
Plugin Icon 128x128 WPGlobus – Multilingual Everything!
Version 2.5.19
Comparing to
See all releases

Code changes from version 2.5.18 to 2.5.19

configs/yoast-seo.json CHANGED
@@ -5,7 +5,18 @@
5
  "_yoast_wpseo_focuskw": {},
6
  "_yoast_wpseo_focuskw_text_input": null,
7
  "_yoast_wpseo_keywordsynonyms": {},
8
- "_yoast_wpseo_focuskeywords": {}
 
 
 
 
 
 
 
 
 
 
 
9
  },
10
  "wp_options": {
11
  "blogname": {},
5
  "_yoast_wpseo_focuskw": {},
6
  "_yoast_wpseo_focuskw_text_input": null,
7
  "_yoast_wpseo_keywordsynonyms": {},
8
+ "_yoast_wpseo_focuskeywords": {},
9
+ "_yoast_wpseo_opengraph-title": {},
10
+ "_yoast_wpseo_opengraph-description": {},
11
+ "_yoast_wpseo_opengraph-image": {},
12
+ "_yoast_wpseo_opengraph-image-id": {},
13
+ "_yoast_wpseo_twitter-title": {},
14
+ "_yoast_wpseo_twitter-description": {},
15
+ "_yoast_wpseo_twitter-image": {},
16
+ "_yoast_wpseo_twitter-image-id": {}
17
+ },
18
+ "post_ml_fields": {
19
+ "focus-keyword-input-metabox": {}
20
  },
21
  "wp_options": {
22
  "blogname": {},
flags/big/ka.png ADDED
Binary file
flags/ka.png ADDED
Binary file
includes/class-wpglobus-config.php CHANGED
@@ -410,7 +410,6 @@ class WPGlobus_Config {
410
 
411
  }
412
 
413
-
414
  /**
415
  * Check plugin version and update versioning option
416
  *
@@ -593,7 +592,8 @@ class WPGlobus_Config {
593
  'uk' => array( 'Ukrainian', 'Українська', 'uk', 'ua.png' ),
594
  'vi' => array( 'Vietnamese', 'Tiếng Việt', 'vi', 'vn.png' ),
595
  'cy' => array( 'Welsh', 'Cymraeg', 'cy', 'cy.png' ),
596
- );
 
597
 
598
  foreach ( $language_table as $language => $data ) {
599
  list(
410
 
411
  }
412
 
 
413
  /**
414
  * Check plugin version and update versioning option
415
  *
592
  'uk' => array( 'Ukrainian', 'Українська', 'uk', 'ua.png' ),
593
  'vi' => array( 'Vietnamese', 'Tiếng Việt', 'vi', 'vn.png' ),
594
  'cy' => array( 'Welsh', 'Cymraeg', 'cy', 'cy.png' ),
595
+ 'ka' => array( 'Georgian', 'ქართული', 'ka_GE', 'ka.png' ),
596
+ );
597
 
598
  foreach ( $language_table as $language => $data ) {
599
  list(
includes/js/wpglobus-yoastseo-140.js CHANGED
@@ -4,6 +4,7 @@
4
  *
5
  * @since 2.4
6
  * @since 2.5.16 Removed unneeded code. Small tweaks.
 
7
  *
8
  * @package WPGlobus
9
  */
@@ -48,8 +49,15 @@ jQuery(document).ready( function ($) {
48
  isBuilderPage: function(){
49
  return api.parseBool(WPGlobusYoastSeo.builder_page);
50
  },
51
- getSuggest: function(type){
52
- var suggest = '';
 
 
 
 
 
 
 
53
  if ( 'undefined' === typeof type ) {
54
  return suggest;
55
  }
@@ -74,8 +82,15 @@ jQuery(document).ready( function ($) {
74
  suggest = WPGlobusVendor.i18n.yoastseo_plus_social_access;
75
  }
76
  }
77
- suggest = '<div class="wpglobus-suggest" style="font-weight:bold;border:1px solid rgb(221, 221, 221);padding:20px 10px;">'+suggest+'</div>';
78
- return suggest;
 
 
 
 
 
 
 
79
  },
80
  init: function() {
81
  if ( api.isBuilderPage() ) {
@@ -90,7 +105,8 @@ jQuery(document).ready( function ($) {
90
  api.setKeywordFieldSuggest();
91
  api.setSeoAnalysisSuggest();
92
  api.setReadabilitySuggest();
93
- // api.setSocialSuggest(); @since 2.5.16 @W.I.P
 
94
  }
95
  }
96
  },
@@ -98,19 +114,70 @@ jQuery(document).ready( function ($) {
98
  setTimeout( function(){
99
  var $box = $('#wpseo-section-social');
100
  if ( $box.length == 1 ) {
101
- $box.empty().append( api.getSuggest('social') );
102
  }
103
  }, 500);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
104
  },
105
  setKeywordFieldSuggest: function() {
106
- setTimeout( function(){
107
- var box = $('#focus-keyword-input-metabox').parent('div');
108
- if ( box.length == 1 ) {
109
- box.empty().append( api.getSuggest('keyword') );
110
- }
111
- }, 2000);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
112
  },
113
  setReadabilitySuggest: function() {
 
114
  var selector = $('.yoast-aria-tabs li').eq(1);
115
  $(document).on('click', selector, function(ev) {
116
  if ( ! api.initReadability ) {
@@ -128,6 +195,7 @@ jQuery(document).ready( function ($) {
128
  });
129
  },
130
  setSeoAnalysisSuggest: function() {
 
131
  var container;
132
  setTimeout( function(){
133
  var containers = $('#yoast-seo-analysis-collapsible-metabox').parents('div');
@@ -155,6 +223,32 @@ jQuery(document).ready( function ($) {
155
  }, 300);
156
  });
157
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
158
  setMetaBoxTitle: function() {
159
  var box = $('#wpseo_meta .hndle'); // post.php
160
  if ( box.length == 1 ) {
4
  *
5
  * @since 2.4
6
  * @since 2.5.16 Removed unneeded code. Small tweaks.
7
+ * @since 2.5.19 Added support multilingual fields for social tab.
8
  *
9
  * @package WPGlobus
10
  */
49
  isBuilderPage: function(){
50
  return api.parseBool(WPGlobusYoastSeo.builder_page);
51
  },
52
+ isBlockEditor: function(){
53
+ if ( api.isBuilderPage() && 'gutenberg' === WPGlobusYoastSeo.builder_id ) {
54
+ return true;
55
+ }
56
+ return false;
57
+ },
58
+ getSuggest: function(type, attrs){
59
+ var suggest = '', className = 'wpglobus-suggest';
60
+ attrs = attrs || {};
61
  if ( 'undefined' === typeof type ) {
62
  return suggest;
63
  }
82
  suggest = WPGlobusVendor.i18n.yoastseo_plus_social_access;
83
  }
84
  }
85
+ className += ' '+'wpglobus-suggest-'+type;
86
+ var id = '';
87
+ if ( 'undefined' !== typeof attrs.id ) {
88
+ if ( $('#'+attrs.id).length > 0 ) {
89
+ return false;
90
+ }
91
+ id = 'id="'+attrs.id+'"';
92
+ }
93
+ return '<div '+id+' class="'+className+'" style="font-weight:bold;border:1px solid rgb(221, 221, 221);padding:20px 10px;">'+suggest+'</div>';
94
  },
95
  init: function() {
96
  if ( api.isBuilderPage() ) {
105
  api.setKeywordFieldSuggest();
106
  api.setSeoAnalysisSuggest();
107
  api.setReadabilitySuggest();
108
+ api.setSocialSuggest();
109
+ api.attachListeners();
110
  }
111
  }
112
  },
114
  setTimeout( function(){
115
  var $box = $('#wpseo-section-social');
116
  if ( $box.length == 1 ) {
117
+ $box.empty().append( api.getSuggest('social',{id:'wpglobus-suggest-social-metabox'}) );
118
  }
119
  }, 500);
120
+
121
+ if ( api.isBlockEditor() ) {
122
+ // Click by header in sidebar in Block editor mode.
123
+ var modalObserver = new MutationObserver( function( mutations ) {
124
+ mutations.forEach( function( mutation ) {
125
+ var $addedNodes = $(mutation.addedNodes);
126
+ var selector = 'div.yoast-modal-content';
127
+ var $filteredElems = $addedNodes.find(selector);
128
+ if ( $filteredElems.length == 1 ) {
129
+
130
+ if ( $filteredElems.find('#yoast-snippet-preview-container').length > 0 ) {
131
+ return true;
132
+ }
133
+
134
+ var $elems = $filteredElems.find('div');
135
+ $elems.each(function(){
136
+ var $this = $(this);
137
+ var className = $this.attr('class') || '';
138
+ if ( -1 !== className.indexOf('SocialMetadataPreviewForm__') ) {
139
+ var suggest = api.getSuggest('social',{id:'wpglobus-suggest-social-modal'});
140
+ if ( suggest ) {
141
+ $this.after(suggest);
142
+ }
143
+ $this.empty();
144
+ }
145
+ if ( -1 !== className.indexOf('shared__FormSection') ) {
146
+ $this.empty();
147
+ }
148
+ });
149
+ }
150
+ } );
151
+ } );
152
+ modalObserver.observe($('body.block-editor-page')[0],{childList:true, subtree:true});
153
+ }
154
  },
155
  setKeywordFieldSuggest: function() {
156
+ if ( api.isBlockEditor() ) {
157
+ setTimeout( function(){
158
+ // Sidebar in Block editor mode.
159
+ var box = $('#focus-keyword-input-sidebar').parent('div');
160
+ if ( box.length == 1 ) {
161
+ box.empty().append( api.getSuggest('keyword') );
162
+ }
163
+ // Metabox in Block editor mode.
164
+ box = $('#focus-keyword-input-metabox').parent('div');
165
+ if ( box.length == 1 ) {
166
+ box.empty().append( api.getSuggest('keyword') );
167
+ }
168
+ }, 2000);
169
+ } else {
170
+ // Metabox in Standard/Classic mode.
171
+ setTimeout( function(){
172
+ var box = $('#focus-keyword-input-metabox').parent('div');
173
+ if ( box.length == 1 ) {
174
+ box.empty().append( api.getSuggest('keyword') );
175
+ }
176
+ }, 2000);
177
+ }
178
  },
179
  setReadabilitySuggest: function() {
180
+ // Standard/Classic mode.
181
  var selector = $('.yoast-aria-tabs li').eq(1);
182
  $(document).on('click', selector, function(ev) {
183
  if ( ! api.initReadability ) {
195
  });
196
  },
197
  setSeoAnalysisSuggest: function() {
198
+ // Standard/Classic mode.
199
  var container;
200
  setTimeout( function(){
201
  var containers = $('#yoast-seo-analysis-collapsible-metabox').parents('div');
223
  }, 300);
224
  });
225
  },
226
+ attachListeners: function() {
227
+ if ( api.isBlockEditor() ) {
228
+ // Seo Analysis & Readability Analysis in sidebar.
229
+ $(document).on('click', '.yoast.components-panel__body', function(ev){
230
+ setTimeout( function(){
231
+ $('div').each(function(i,e){
232
+ var elmClass = $(e).attr('class');
233
+ if ( 'undefined' != typeof elmClass && -1 != elmClass.indexOf('ContentAnalysis__ContentAnalysisContainer') ) {
234
+ $(e).empty().append( api.getSuggest('analysis') );
235
+ }
236
+ });
237
+ }, 200);
238
+ });
239
+ // KeywordField in sidebar in Block editor mode.
240
+ var yoastPinnedButton = document.querySelector('[aria-label="Yoast SEO"]');
241
+ $(document).on('click', yoastPinnedButton, function(ev){
242
+ setTimeout( function(){
243
+ // @see setKeywordFieldSuggest function.
244
+ var box = $('#focus-keyword-input-sidebar').parent('div');
245
+ if ( box.length == 1 ) {
246
+ box.empty().append( api.getSuggest('keyword') );
247
+ }
248
+ }, 100);
249
+ });
250
+ }
251
+ },
252
  setMetaBoxTitle: function() {
253
  var box = $('#wpseo_meta .hndle'); // post.php
254
  if ( box.length == 1 ) {
includes/js/wpglobus-yoastseo-140.min.js CHANGED
@@ -1 +1 @@
1
- jQuery(document).ready(function(i){"use strict";var o;"undefined"!=typeof WPGlobusCoreData&&"undefined"!=typeof WPGlobusVendor&&(o={initSeoAnalysis:!1,initReadability:!1,accessExtra:!1,parseBool:function(e){return!/^(false|0)$/i.test(e)&&!!e},moduleState:function(){return!!o.accessExtra||("string"==typeof WPGlobusYoastSeo.plus_module&&""!=WPGlobusYoastSeo.plus_module?WPGlobusYoastSeo.plus_module:o.parseBool(WPGlobusYoastSeo.plus_access))},isPremium:function(){return WPGlobusVendor.vendor.WPSEO_PREMIUM},isDefaultLanguage:function(){return o.parseBool(WPGlobusYoastSeo.is_default_language)},isBuilderPage:function(){return o.parseBool(WPGlobusYoastSeo.builder_page)},getSuggest:function(e){var t="";return void 0===e?t:("inactive"===o.moduleState()?"keyword"==e?t=WPGlobusVendor.i18n.yoastseo_plus_meta_keywords_inactive:"analysis"==e?t=WPGlobusVendor.i18n.yoastseo_plus_page_analysis_inactive:"readability"==e?t=WPGlobusVendor.i18n.yoastseo_plus_readability_inactive:"social"==e&&(t=WPGlobusVendor.i18n.yoastseo_plus_social_inactive):"boolean"!=typeof o.moduleState()||o.moduleState()||("keyword"==e?t=WPGlobusVendor.i18n.yoastseo_plus_meta_keywords_access:"analysis"==e?t=WPGlobusVendor.i18n.yoastseo_plus_page_analysis_access:"readability"==e?t=WPGlobusVendor.i18n.yoastseo_plus_readability_access:"social"==e&&(t=WPGlobusVendor.i18n.yoastseo_plus_social_access)),t='<div class="wpglobus-suggest" style="font-weight:bold;border:1px solid rgb(221, 221, 221);padding:20px 10px;">'+t+"</div>")},init:function(){o.isBuilderPage()&&o.start()},start:function(){o.accessExtra=o.parseBool(WPGlobusYoastSeo.access_extra),o.setMetaBoxTitle(),o.isDefaultLanguage()||"inactive"!=o.moduleState()&&o.moduleState()||(o.setKeywordFieldSuggest(),o.setSeoAnalysisSuggest(),o.setReadabilitySuggest())},setSocialSuggest:function(){setTimeout(function(){var e=i("#wpseo-section-social");1==e.length&&e.empty().append(o.getSuggest("social"))},500)},setKeywordFieldSuggest:function(){setTimeout(function(){var e=i("#focus-keyword-input-metabox").parent("div");1==e.length&&e.empty().append(o.getSuggest("keyword"))},2e3)},setReadabilitySuggest:function(){var e=i(".yoast-aria-tabs li").eq(1);i(document).on("click",e,function(e){o.initReadability||setTimeout(function(){i("#wpseo-meta-section-readability div").each(function(e,t){var s=i(t);if(-1!==s.attr("class").indexOf("ContentAnalysis__ContentAnalysisContainer"))return s.empty().append(o.getSuggest("readability")),!1}),o.initReadability=!0},100)})},setSeoAnalysisSuggest:function(){var t;setTimeout(function(){var e=i("#yoast-seo-analysis-collapsible-metabox").parents("div");void 0!==e[0]&&(t=e[0])},500),i(document).on("click",t,function(e){setTimeout(function(){var a=!1;i("#wpseo-metabox-root span").each(function(e,t){var s=i(t).attr("class");if(void 0===s)return!0;if(-1!==s.indexOf("SeoAnalysis__")){var o=s.split(" ")[0];return a=i("."+o).next(),!1}}),a&&a.empty().append(o.getSuggest("analysis"))},300)})},setMetaBoxTitle:function(){var e,t=i("#wpseo_meta .hndle");1!=t.length&&1!=(t=i("#wpseo_meta > h2 > span")).length||(e=t.text(),t.text(e+" ("+WPGlobusCoreData.en_language_name[WPGlobusYoastSeo.language]+")"))}},WPGlobusYoastSeo=i.extend({},WPGlobusYoastSeo,o),WPGlobusYoastSeo.init())});
1
+ jQuery(document).ready(function(i){"use strict";var n;"undefined"!=typeof WPGlobusCoreData&&"undefined"!=typeof WPGlobusVendor&&(n={initSeoAnalysis:!1,initReadability:!1,accessExtra:!1,parseBool:function(e){return!/^(false|0)$/i.test(e)&&!!e},moduleState:function(){return!!n.accessExtra||("string"==typeof WPGlobusYoastSeo.plus_module&&""!=WPGlobusYoastSeo.plus_module?WPGlobusYoastSeo.plus_module:n.parseBool(WPGlobusYoastSeo.plus_access))},isPremium:function(){return WPGlobusVendor.vendor.WPSEO_PREMIUM},isDefaultLanguage:function(){return n.parseBool(WPGlobusYoastSeo.is_default_language)},isBuilderPage:function(){return n.parseBool(WPGlobusYoastSeo.builder_page)},isBlockEditor:function(){return!(!n.isBuilderPage()||"gutenberg"!==WPGlobusYoastSeo.builder_id)},getSuggest:function(e,t){var o="",s="wpglobus-suggest";if(t=t||{},void 0===e)return o;"inactive"===n.moduleState()?"keyword"==e?o=WPGlobusVendor.i18n.yoastseo_plus_meta_keywords_inactive:"analysis"==e?o=WPGlobusVendor.i18n.yoastseo_plus_page_analysis_inactive:"readability"==e?o=WPGlobusVendor.i18n.yoastseo_plus_readability_inactive:"social"==e&&(o=WPGlobusVendor.i18n.yoastseo_plus_social_inactive):"boolean"!=typeof n.moduleState()||n.moduleState()||("keyword"==e?o=WPGlobusVendor.i18n.yoastseo_plus_meta_keywords_access:"analysis"==e?o=WPGlobusVendor.i18n.yoastseo_plus_page_analysis_access:"readability"==e?o=WPGlobusVendor.i18n.yoastseo_plus_readability_access:"social"==e&&(o=WPGlobusVendor.i18n.yoastseo_plus_social_access)),s+=" wpglobus-suggest-"+e;var a="";if(void 0!==t.id){if(0<i("#"+t.id).length)return!1;a='id="'+t.id+'"'}return"<div "+a+' class="'+s+'" style="font-weight:bold;border:1px solid rgb(221, 221, 221);padding:20px 10px;">'+o+"</div>"},init:function(){n.isBuilderPage()&&n.start()},start:function(){n.accessExtra=n.parseBool(WPGlobusYoastSeo.access_extra),n.setMetaBoxTitle(),n.isDefaultLanguage()||"inactive"!=n.moduleState()&&n.moduleState()||(n.setKeywordFieldSuggest(),n.setSeoAnalysisSuggest(),n.setReadabilitySuggest(),n.setSocialSuggest(),n.attachListeners())},setSocialSuggest:function(){setTimeout(function(){var e=i("#wpseo-section-social");1==e.length&&e.empty().append(n.getSuggest("social",{id:"wpglobus-suggest-social-metabox"}))},500),n.isBlockEditor()&&new MutationObserver(function(e){e.forEach(function(e){var t=i(e.addedNodes).find("div.yoast-modal-content");if(1==t.length){if(0<t.find("#yoast-snippet-preview-container").length)return!0;t.find("div").each(function(){var e,t=i(this),o=t.attr("class")||"";-1!==o.indexOf("SocialMetadataPreviewForm__")&&((e=n.getSuggest("social",{id:"wpglobus-suggest-social-modal"}))&&t.after(e),t.empty()),-1!==o.indexOf("shared__FormSection")&&t.empty()})}})}).observe(i("body.block-editor-page")[0],{childList:!0,subtree:!0})},setKeywordFieldSuggest:function(){n.isBlockEditor()?setTimeout(function(){var e=i("#focus-keyword-input-sidebar").parent("div");1==e.length&&e.empty().append(n.getSuggest("keyword")),1==(e=i("#focus-keyword-input-metabox").parent("div")).length&&e.empty().append(n.getSuggest("keyword"))},2e3):setTimeout(function(){var e=i("#focus-keyword-input-metabox").parent("div");1==e.length&&e.empty().append(n.getSuggest("keyword"))},2e3)},setReadabilitySuggest:function(){var e=i(".yoast-aria-tabs li").eq(1);i(document).on("click",e,function(e){n.initReadability||setTimeout(function(){i("#wpseo-meta-section-readability div").each(function(e,t){var o=i(t);if(-1!==o.attr("class").indexOf("ContentAnalysis__ContentAnalysisContainer"))return o.empty().append(n.getSuggest("readability")),!1}),n.initReadability=!0},100)})},setSeoAnalysisSuggest:function(){var t;setTimeout(function(){var e=i("#yoast-seo-analysis-collapsible-metabox").parents("div");void 0!==e[0]&&(t=e[0])},500),i(document).on("click",t,function(e){setTimeout(function(){var a=!1;i("#wpseo-metabox-root span").each(function(e,t){var o=i(t).attr("class");if(void 0===o)return!0;if(-1!==o.indexOf("SeoAnalysis__")){var s=o.split(" ")[0];return a=i("."+s).next(),!1}}),a&&a.empty().append(n.getSuggest("analysis"))},300)})},attachListeners:function(){var e;n.isBlockEditor()&&(i(document).on("click",".yoast.components-panel__body",function(e){setTimeout(function(){i("div").each(function(e,t){var o=i(t).attr("class");void 0!==o&&-1!=o.indexOf("ContentAnalysis__ContentAnalysisContainer")&&i(t).empty().append(n.getSuggest("analysis"))})},200)}),e=document.querySelector('[aria-label="Yoast SEO"]'),i(document).on("click",e,function(e){setTimeout(function(){var e=i("#focus-keyword-input-sidebar").parent("div");1==e.length&&e.empty().append(n.getSuggest("keyword"))},100)}))},setMetaBoxTitle:function(){var e,t=i("#wpseo_meta .hndle");1!=t.length&&1!=(t=i("#wpseo_meta > h2 > span")).length||(e=t.text(),t.text(e+" ("+WPGlobusCoreData.en_language_name[WPGlobusYoastSeo.language]+")"))}},WPGlobusYoastSeo=i.extend({},WPGlobusYoastSeo,n),WPGlobusYoastSeo.init())});
includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php CHANGED
@@ -1,9 +1,12 @@
1
  <?php
2
  /**
 
 
3
  * Support of Yoast SEO 14.0
4
  *
5
  * @package WPGlobus\Vendor\YoastSEO
6
  * @since 2.4
 
7
  */
8
 
9
  /**
@@ -136,25 +139,38 @@ class WPGlobus_YoastSEO {
136
  * AJAX is probably not required (waiting for a case).
137
  */
138
  add_filter( 'wpseo_title', array( __CLASS__, 'filter__title' ), PHP_INT_MAX );
139
- /**
140
- * Filter opengraph title.
141
- * @since 2.4
142
- */
143
- add_filter( 'wpseo_opengraph_title', array( __CLASS__, 'filter_front__title' ), 5, 2 );
144
 
145
  /**
146
  * Filter meta description.
147
  * @since 2.4
148
  */
149
  add_filter( 'wpseo_metadesc', array( __CLASS__, 'filter_front__description' ), 5, 2 );
150
- add_filter( 'wpseo_opengraph_desc', array( __CLASS__, 'filter_front__description' ), 5, 2 );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
151
 
152
  /**
153
  * Filter canonical URL and open graph URL.
154
  * @since 2.4
155
  */
156
  add_filter( 'wpseo_canonical', array( __CLASS__, 'filter_front__localize_url' ), 5, 2 );
157
- add_filter( 'wpseo_opengraph_url', array( __CLASS__, 'filter_front__localize_url' ), 5, 2 );
158
 
159
  /**
160
  * Filter of the rel prev and next URL put out by Yoast SEO.
@@ -256,24 +272,237 @@ class WPGlobus_YoastSEO {
256
  }
257
 
258
  /**
259
- * Filter wpseo title.
 
 
 
 
260
  *
261
- * @see wordpress-seo\src\presenters\open-graph\title-presenter.php
262
  * @scope front
263
- * @since 2.4
264
- * @since 2.4.6 Removed checking for default language.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
265
  *
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
266
  * @param string $title The title.
267
  * @param Indexable_Presentation $presentation The presentation of an indexable.
268
  *
269
  * @return string
270
  */
271
- public static function filter_front__title( $title, $presentation ) {
272
 
273
  if ( empty( $title ) ) {
274
  return $title;
275
  }
276
- return self::filter__title( $title );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
277
  }
278
 
279
  /**
@@ -327,7 +556,6 @@ class WPGlobus_YoastSEO {
327
  $_done = true;
328
 
329
  return $check;
330
-
331
  }
332
 
333
  /**
1
  <?php
2
  /**
3
+ * File: class-wpglobus-yoastseo140.php
4
+ *
5
  * Support of Yoast SEO 14.0
6
  *
7
  * @package WPGlobus\Vendor\YoastSEO
8
  * @since 2.4
9
+ * @since 2.5.19 Added support multilingual fields for social tab.
10
  */
11
 
12
  /**
139
  * AJAX is probably not required (waiting for a case).
140
  */
141
  add_filter( 'wpseo_title', array( __CLASS__, 'filter__title' ), PHP_INT_MAX );
 
 
 
 
 
142
 
143
  /**
144
  * Filter meta description.
145
  * @since 2.4
146
  */
147
  add_filter( 'wpseo_metadesc', array( __CLASS__, 'filter_front__description' ), 5, 2 );
148
+
149
+ /**
150
+ * Open Graph.
151
+ * @since 2.4 Open Graph title.
152
+ * @since 2.4 Open Graph description.
153
+ * @since 2.4 Open Graph URL.
154
+ * @since 2.5.19 Open Graph image.
155
+ */
156
+ add_filter( 'wpseo_opengraph_title', array( __CLASS__, 'filter_front__opengraph_title' ), 5, 2 );
157
+ add_filter( 'wpseo_opengraph_desc', array( __CLASS__, 'filter_front__opengraph_description' ), 5, 2 );
158
+ add_filter( 'wpseo_opengraph_image', array( __CLASS__, 'filter_front__opengraph_image' ), 5, 2 );
159
+ add_filter( 'wpseo_opengraph_url', array( __CLASS__, 'filter_front__localize_url' ), 5, 2 );
160
+
161
+ /**
162
+ * Twitter.
163
+ * @since 2.5.19
164
+ */
165
+ add_filter( 'wpseo_twitter_title', array( __CLASS__, 'filter_front__twitter_title' ), 5, 2 );
166
+ add_filter( 'wpseo_twitter_description', array( __CLASS__, 'filter_front__twitter_description' ), 5, 2 );
167
+ add_filter( 'wpseo_twitter_image', array( __CLASS__, 'filter_front__twitter_image' ), 5, 2 );
168
 
169
  /**
170
  * Filter canonical URL and open graph URL.
171
  * @since 2.4
172
  */
173
  add_filter( 'wpseo_canonical', array( __CLASS__, 'filter_front__localize_url' ), 5, 2 );
 
174
 
175
  /**
176
  * Filter of the rel prev and next URL put out by Yoast SEO.
272
  }
273
 
274
  /**
275
+ * Filter for changing the Yoast SEO generated Open Graph description.
276
+ *
277
+ * @see wordpress-seo\src\presenters\open-graph\description-presenter.php
278
+ *
279
+ * @since 2.5.19
280
  *
 
281
  * @scope front
282
+ * @param string $description The description.
283
+ * @param Indexable_Presentation $presentation The presentation of an indexable.
284
+ *
285
+ * @return string
286
+ */
287
+ public static function filter_front__opengraph_description( $description, $presentation ) {
288
+
289
+ if ( empty( $description ) ) {
290
+ return $description;
291
+ }
292
+
293
+ if ( 'post' == $presentation->model->object_type ) {
294
+
295
+ $meta_cache = wp_cache_get( $presentation->model->object_id, 'post_meta' );
296
+
297
+ if ( ! empty( $meta_cache['_yoast_wpseo_opengraph-description'][0] ) ) {
298
+
299
+ $description = WPGlobus_Core::text_filter( $meta_cache['_yoast_wpseo_opengraph-description'][0], WPGlobus::Config()->language );
300
+
301
+ if ( $presentation->source instanceof WP_Post ) {
302
+ /**
303
+ * @see wordpress-seo\inc\wpseo-functions.php
304
+ */
305
+ $description = wpseo_replace_vars( $description, $presentation->source );
306
+ }
307
+ }
308
+ }
309
+
310
+ return $description;
311
+ }
312
+
313
+ /**
314
+ * Filter for changing the Open Graph image.
315
+ *
316
+ * @see wordpress-seo\src\presenters\open-graph\image-presenter.php
317
+ *
318
+ * @since 2.5.19
319
+ *
320
+ * @scope front
321
+ * @param string $image_url The URL of the Open Graph image.
322
+ * @param Indexable_Presentation $presentation The presentation of an indexable.
323
+ *
324
+ * @return string
325
+ */
326
+ public static function filter_front__opengraph_image( $image_url, $presentation ) {
327
+
328
+ if ( empty( $image_url) ) {
329
+ return $image_url;
330
+ }
331
+
332
+ if ( 'post' == $presentation->model->object_type ) {
333
+
334
+ $meta_cache = wp_cache_get( $presentation->model->object_id, 'post_meta' );
335
+
336
+ if ( ! empty( $meta_cache['_yoast_wpseo_opengraph-image'][0] ) ) {
337
+
338
+ $image_url = WPGlobus_Core::text_filter( $meta_cache['_yoast_wpseo_opengraph-image'][0], WPGlobus::Config()->language );
339
+
340
+ if ( $presentation->source instanceof WP_Post ) {
341
+ /**
342
+ * @see wordpress-seo\inc\wpseo-functions.php
343
+ */
344
+ $image_url = wpseo_replace_vars( $image_url, $presentation->source );
345
+ }
346
+ }
347
+ }
348
+
349
+ return $image_url;
350
+ }
351
+
352
+ /**
353
+ * Filter for changing the Twitter title.
354
+ *
355
+ * @see wordpress-seo\src\presenters\twitter\title-presenter.php
356
+ *
357
+ * @since 2.5.19
358
+ *
359
+ * @scope front
360
+ * @param string $title The Twitter title.
361
+ * @param Indexable_Presentation $presentation The presentation of an indexable.
362
+ *
363
+ * @return string
364
+ */
365
+ public static function filter_front__twitter_title( $title, $presentation ) {
366
+
367
+ if ( empty( $title ) ) {
368
+ return $title;
369
+ }
370
+
371
+ if ( 'post' == $presentation->model->object_type ) {
372
+
373
+ $meta_cache = wp_cache_get( $presentation->model->object_id, 'post_meta' );
374
+
375
+ if ( ! empty( $meta_cache['_yoast_wpseo_twitter-title'][0] ) ) {
376
+
377
+ $title = WPGlobus_Core::text_filter( $meta_cache['_yoast_wpseo_twitter-title'][0], WPGlobus::Config()->language );
378
+
379
+ if ( $presentation->source instanceof WP_Post ) {
380
+ /**
381
+ * @see wordpress-seo\inc\wpseo-functions.php
382
+ */
383
+ $title = wpseo_replace_vars( $title, $presentation->source );
384
+ }
385
+ }
386
+ }
387
+
388
+ return $title;
389
+ }
390
+
391
+ /**
392
+ * Filter for changing the Twitter description as output in the Twitter card by Yoast SEO.
393
+ *
394
+ * @see wordpress-seo\src\presenters\twitter\description-presenter.php
395
+ *
396
+ * @since 2.5.19
397
+ *
398
+ * @scope front
399
+ * @param string $description The description string.
400
+ * @param Indexable_Presentation $presentation The presentation of an indexable.
401
+ *
402
+ * @return string
403
+ */
404
+ public static function filter_front__twitter_description( $description, $presentation ) {
405
+
406
+ if ( empty( $description ) ) {
407
+ return $description;
408
+ }
409
+
410
+ if ( 'post' == $presentation->model->object_type ) {
411
+
412
+ $meta_cache = wp_cache_get( $presentation->model->object_id, 'post_meta' );
413
+
414
+ if ( ! empty( $meta_cache['_yoast_wpseo_twitter-description'][0] ) ) {
415
+
416
+ $description = WPGlobus_Core::text_filter( $meta_cache['_yoast_wpseo_twitter-description'][0], WPGlobus::Config()->language );
417
+
418
+ if ( $presentation->source instanceof WP_Post ) {
419
+ /**
420
+ * @see wordpress-seo\inc\wpseo-functions.php
421
+ */
422
+ $description = wpseo_replace_vars( $description, $presentation->source );
423
+ }
424
+ }
425
+ }
426
+
427
+ return $description;
428
+ }
429
+
430
+ /**
431
+ * Filter for changing the Twitter Card image.
432
  *
433
+ * @see wordpress-seo\src\presenters\twitter\image-presenter.php
434
+ *
435
+ * @since 2.5.19
436
+ *
437
+ * @scope front
438
+ * @param string $image Image URL string.
439
+ * @param Indexable_Presentation $presentation The presentation of an indexable.
440
+ *
441
+ * @return string
442
+ */
443
+ public static function filter_front__twitter_image( $image, $presentation ) {
444
+
445
+ if ( empty( $image ) ) {
446
+ return $image;
447
+ }
448
+
449
+ if ( 'post' == $presentation->model->object_type ) {
450
+
451
+ $meta_cache = wp_cache_get( $presentation->model->object_id, 'post_meta' );
452
+
453
+ if ( ! empty( $meta_cache['_yoast_wpseo_twitter-image'][0] ) ) {
454
+
455
+ $image = WPGlobus_Core::text_filter( $meta_cache['_yoast_wpseo_twitter-image'][0], WPGlobus::Config()->language );
456
+
457
+ if ( $presentation->source instanceof WP_Post ) {
458
+ /**
459
+ * @see wordpress-seo\inc\wpseo-functions.php
460
+ */
461
+ $image = wpseo_replace_vars( $image, $presentation->source );
462
+ }
463
+ }
464
+ }
465
+
466
+ return $image;
467
+ }
468
+
469
+ /**
470
+ * Filter for changing the Yoast SEO generated title.
471
+ *
472
+ * @see wordpress-seo\src\presenters\open-graph\title-presenter.php
473
+ *
474
+ * @since 2.5.19
475
+ *
476
+ * @scope front
477
  * @param string $title The title.
478
  * @param Indexable_Presentation $presentation The presentation of an indexable.
479
  *
480
  * @return string
481
  */
482
+ public static function filter_front__opengraph_title( $title, $presentation ) {
483
 
484
  if ( empty( $title ) ) {
485
  return $title;
486
  }
487
+
488
+ if ( 'post' == $presentation->model->object_type ) {
489
+
490
+ $meta_cache = wp_cache_get( $presentation->model->object_id, 'post_meta' );
491
+
492
+ if ( ! empty( $meta_cache['_yoast_wpseo_opengraph-title'][0] ) ) {
493
+
494
+ $title = WPGlobus_Core::text_filter( $meta_cache['_yoast_wpseo_opengraph-title'][0], WPGlobus::Config()->language );
495
+
496
+ if ( $presentation->source instanceof WP_Post ) {
497
+ /**
498
+ * @see wordpress-seo\inc\wpseo-functions.php
499
+ */
500
+ $title = wpseo_replace_vars( $title, $presentation->source );
501
+ }
502
+ }
503
+ }
504
+
505
+ return $title;
506
  }
507
 
508
  /**
556
  $_done = true;
557
 
558
  return $check;
 
559
  }
560
 
561
  /**
languages/wpglobus-ar.po CHANGED
@@ -18,44 +18,25 @@ msgstr ""
18
  "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
19
  "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
20
 
21
- #: includes/admin/central/class-wpglobus-admin-central.php:122,
22
- #: includes/admin/class-wpglobus-about.php:42,
23
- #: includes/admin/class-wpglobus-about.php:117,
24
- #: includes/admin/class-wpglobus-clean.php:600,
25
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
26
  msgid "Guide"
27
  msgstr "الدليل"
28
 
29
- #: includes/admin/central/class-wpglobus-admin-central.php:142,
30
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
31
  msgid "WPGlobus Help Desk"
32
  msgstr "WPGlobus دائرة المساعدة"
33
 
34
- #: includes/admin/central/class-wpglobus-admin-central.php:157,
35
- #: includes/admin/class-wpglobus-about.php:36,
36
- #: includes/admin/class-wpglobus-admin-menu.php:22,
37
- #: includes/admin/class-wpglobus-clean.php:606,
38
- #: includes/admin/class-wpglobus-customize-options.php:1293,
39
- #: includes/admin/class-wpglobus-customize-options.php:1261,
40
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
41
  msgid "Add-ons"
42
  msgstr "الإضافات"
43
 
44
- #: includes/admin/class-wpglobus-about.php:26
45
  msgid "Quick Start"
46
  msgstr "بداية سريعة"
47
 
48
- #: includes/admin/class-wpglobus-about.php:48,
49
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
50
  msgid "FAQ"
51
  msgstr "أسئلة متداولة"
52
 
53
- #: includes/admin/class-wpglobus-about.php:59
54
  msgid ""
55
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
56
  msgstr "إنتباه: سلسلة البايت المتعدد إضافة PHP (mbstring) غير مُحمل!"
57
 
58
- #: includes/admin/class-wpglobus-about.php:60
59
  msgid ""
60
  "The mbstring extension is required for the full UTF-8 compatibility and "
61
  "better performance. Without it, some parts of WordPress and WPGlobus may "
@@ -66,19 +47,15 @@ msgstr ""
66
  "بعض الأجزاء من WordPress و WPGlobus ربما لن تعمل جيداً. من فضلك إتصل بشركة "
67
  "الإستضافة الخاصة بك أو مدير النظام."
68
 
69
- #: includes/admin/class-wpglobus-about.php:87
70
  msgid "Go to WPGlobus Settings"
71
  msgstr "إذهب إلي إعدادت WPGlobus "
72
 
73
- #: includes/admin/class-wpglobus-about.php:98
74
  msgid "Easy as 1-2-3:"
75
  msgstr "سهل مثل 1-2-3:"
76
 
77
- #: includes/admin/class-wpglobus-about.php:101
78
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
79
  msgstr "إذهب إلي قائمة المدير الخاصة بـWPGlobus وإختر البلاد/اللغة;"
80
 
81
- #: includes/admin/class-wpglobus-about.php:102
82
  msgid ""
83
  "Enter the translations to the posts, pages, categories, tags and menus using "
84
  "a clean and simple interface."
@@ -86,34 +63,27 @@ msgstr ""
86
  "أدخل الترجمة إلي المنشورات، الصفح، الأقسام، الإشارات و القوائم مستخدماً واجهة "
87
  "بسيطة ونظيفة."
88
 
89
- #: includes/admin/class-wpglobus-about.php:103
90
  msgid ""
91
  "Switch languages at the front-end using a drop-down menu with language names "
92
  "and country flags."
93
  msgstr ""
94
  "غير اللغة في الواجهة بإستخدام القائمة المنسدلة مع أسماء اللغات و أعلام الدول."
95
 
96
- #: includes/admin/class-wpglobus-about.php:111
97
  msgid "Links:"
98
  msgstr "الراوبط:"
99
 
100
- #: includes/admin/class-wpglobus-about.php:119
101
  msgid "FAQs"
102
  msgstr "الأسئلة المتكررة"
103
 
104
- #: includes/admin/class-wpglobus-about.php:121
105
  msgid "Contact Us"
106
  msgstr "إتصل بنا"
107
 
108
- #: includes/admin/class-wpglobus-about.php:123
109
  msgid "Please give us 5 stars!"
110
  msgstr "من فضلك أعطنا 5 نجوم!"
111
 
112
- #: includes/admin/class-wpglobus-about.php:133
113
  msgid "WPGlobus does not translate texts automatically!"
114
  msgstr "WPGlobus لا يُترجم النصوص تلقائياً!"
115
 
116
- #: includes/admin/class-wpglobus-about.php:136
117
  msgid ""
118
  "There are many translation companies and individual translators who can help "
119
  "you write and proofread the texts."
@@ -121,7 +91,6 @@ msgstr ""
121
  "هناك شركات ترجمة كثيرة و مترجمين مستقلين يمكنهم مساعدتك في ترجمة وتصحيح "
122
  "الأخطاء في نصوصك."
123
 
124
- #: includes/admin/class-wpglobus-about.php:137
125
  msgid ""
126
  "When you choose a translator, please look at their native language, country "
127
  "of residence, specialization and knowledge of WordPress."
@@ -130,7 +99,6 @@ msgstr ""
130
  "بـ WordPress."
131
 
132
  #. translators: %s are used to insert HTML link. Keep them in place.
133
- #: includes/admin/class-wpglobus-about.php:143
134
  msgid ""
135
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
136
  "website. This is not an endorsement, just a courtesy. Please contact them "
@@ -139,11 +107,9 @@ msgstr ""
139
  "نحن نخطط لإبقاء %sقائمة بالمترجمين %s في موقع WPGlobus. هذا ليس إقرار، هي "
140
  "فقط مجاملة. من فضلك تواصل معهم وأعلمنا ماذا حدث معك!"
141
 
142
- #: includes/admin/class-wpglobus-about.php:154
143
  msgid "Important notes:"
144
  msgstr "ملاحظات هامة:"
145
 
146
- #: includes/admin/class-wpglobus-about.php:159
147
  msgid ""
148
  "WPGlobus only supports the localization URLs in the form of <code>example."
149
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
@@ -153,18 +119,15 @@ msgstr ""
153
  "نحن لا ننوي دعم النطاقات الفرعية<code>xx.example.com</code> وعلامات اللغة "
154
  "<code>example.com?lang=xx</code>."
155
 
156
- #: includes/admin/class-wpglobus-about.php:162
157
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
158
  msgstr "بعض الثيمات و الإضافات هي<strong>ليس لديها لغات متنوعة</strong>."
159
 
160
- #: includes/admin/class-wpglobus-about.php:163
161
  msgid ""
162
  "They might display some texts with no translation, or with all languages "
163
  "mixed together."
164
  msgstr "هذا ربما يظهر بعض الكتابات بدون ترجمة، أو مع كل اللغات مختلطة."
165
 
166
  #. translators: %s are used to insert HTML link. Keep them in place.
167
- #: includes/admin/class-wpglobus-about.php:167
168
  msgid ""
169
  "Please contact the theme / plugin author. If they are unable to assist, "
170
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
@@ -172,21 +135,15 @@ msgstr ""
172
  "من فضلك تواصل مع مالك الإضافة أو الثيم. إذا كانوا لا يستطيعوا المساعدة، فكر "
173
  "في %s تأجير فريق WPGlobus%s لكي يكتب كود مخصص لك."
174
 
175
- #: includes/admin/class-wpglobus-admin-bar-menu.php:124
176
  msgid "Language was set on your profile page"
177
  msgstr ""
178
 
179
- #: includes/admin/class-wpglobus-admin-bar-menu.php:194
180
  msgid "Add"
181
  msgstr "إضافة"
182
 
183
- #: includes/admin/class-wpglobus-admin-page.php:32,
184
- #: includes/admin/class-wpglobus-clean.php:585
185
  msgid "Multilingual Everything!"
186
  msgstr "عدد لغات كل شئ!"
187
 
188
- #: includes/admin/class-wpglobus-admin-page.php:34,
189
- #: includes/admin/class-wpglobus-clean.php:588
190
  msgid ""
191
  "WPGlobus is a family of WordPress plugins assisting you in making "
192
  "multilingual WordPress blogs and sites."
@@ -194,19 +151,15 @@ msgstr ""
194
  "WPGlobus هي عائلة من إضافات ووردبريس يساعد في جعل المواقع و المدونات متعددة "
195
  "اللغة."
196
 
197
- #: includes/admin/class-wpglobus-clean.php:232
198
  msgid "Remove the WPGlobus settings (not recommended)"
199
  msgstr "إمسح إعدادات WPGlobus (غير مُفضل)"
200
 
201
- #: includes/admin/class-wpglobus-clean.php:595
202
  msgid "Clean-up Tool"
203
  msgstr "أداة التنظيف"
204
 
205
- #: includes/admin/class-wpglobus-clean.php:609
206
  msgid "Support"
207
  msgstr "الدعم الفني"
208
 
209
- #: includes/admin/class-wpglobus-clean.php:614
210
  msgid ""
211
  "WARNING: this operation is non-reversible. It is strongly recommended that "
212
  "you backup your database before proceeding."
@@ -214,7 +167,6 @@ msgstr ""
214
  "تحذير: العملية لا يمكن الرجوع عنها. يُفضل بشدة أن تعمل نسخة إحتياطية لقاعدة "
215
  "البيانات قبل المتابعة."
216
 
217
- #: includes/admin/class-wpglobus-clean.php:619
218
  msgid ""
219
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
220
  "By running it, you will remove ALL translations you have entered to your "
@@ -224,7 +176,6 @@ msgid ""
224
  "so on."
225
  msgstr ""
226
 
227
- #: includes/admin/class-wpglobus-clean.php:622
228
  msgid ""
229
  "Make sure that your active theme does not have any code related to WPGlobus. "
230
  "Such code could be added by you or by a 3rd party developer. If that code "
@@ -233,42 +184,34 @@ msgid ""
233
  msgstr ""
234
 
235
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
236
- #: includes/admin/class-wpglobus-clean.php:630
237
  msgid ""
238
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
239
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
240
  msgstr ""
241
 
242
- #: includes/admin/class-wpglobus-clean.php:641
243
  msgid "You are about to clean the content of the following database tables:"
244
  msgstr ""
245
 
246
- #: includes/admin/class-wpglobus-clean.php:649
247
  msgid "The operations log"
248
  msgstr ""
249
 
250
- #: includes/admin/class-wpglobus-clean.php:652
251
  msgid ""
252
  "We are going to write a detailed log of all the database changes performed. "
253
  "It should help in the case you need to restore something important. The log "
254
  "will be written to the file:"
255
  msgstr ""
256
 
257
- #: includes/admin/class-wpglobus-clean.php:662
258
  msgid ""
259
  "Uncheck if you do not want to write the operations log (we recommend to keep "
260
  "it checked)"
261
  msgstr ""
262
 
263
- #: includes/admin/class-wpglobus-clean.php:667
264
  msgid "You have been warned..."
265
  msgstr "لقد تم تحذيرك..."
266
 
267
- #: includes/admin/class-wpglobus-clean.php:669
268
  msgid "Please confirm by checking the box below:"
269
  msgstr ""
270
 
271
- #: includes/admin/class-wpglobus-clean.php:671
272
  msgid ""
273
  "I have read and understood everything written on this page. I am aware that "
274
  "by using this tool I may loose some content of my website. I have made a "
@@ -276,284 +219,189 @@ msgid ""
276
  "responsible for the results."
277
  msgstr ""
278
 
279
- #: includes/admin/class-wpglobus-clean.php:674
280
  msgid "YES, I CONFIRM"
281
  msgstr "أجل، أنا أؤكد"
282
 
283
- #: includes/admin/class-wpglobus-clean.php:678
284
  msgid "Process with the Clean-up"
285
  msgstr ""
286
 
287
- #: includes/admin/class-wpglobus-customize-options.php:73,
288
- #: includes/admin/class-wpglobus-customize-options.php:100,
289
- #: includes/admin/class-wpglobus-customize-options.php:145,
290
- #: includes/admin/class-wpglobus-customize-options.php:183
291
  msgid "Default"
292
  msgstr "الأفتراضي"
293
 
294
- #: includes/admin/class-wpglobus-customize-options.php:264
295
  msgid "Section"
296
  msgstr "قسم"
297
 
298
- #: includes/admin/class-wpglobus-customize-options.php:277
299
  msgid "Show all sections"
300
  msgstr ""
301
 
302
- #: includes/admin/class-wpglobus-customize-options.php:279
303
  msgid "Save &amp; Reload"
304
  msgstr ""
305
 
306
- #: includes/admin/class-wpglobus-customize-options.php:553,
307
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:585,
308
- #: includes/class-wpglobus.php:1284, wpglobus.php:12, wpglobus.php:18
309
  msgid "WPGlobus"
310
  msgstr "WPGlobus"
311
 
312
- #: includes/admin/class-wpglobus-customize-options.php:604
313
  msgid ""
314
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
315
  msgstr ""
316
 
317
- #: includes/admin/class-wpglobus-customize-options.php:610
318
  msgid "Fields Settings"
319
  msgstr ""
320
 
321
- #: includes/admin/class-wpglobus-customize-options.php:655
322
  msgid "WPGlobus Settings"
323
  msgstr "إعدادات WPGlobus "
324
 
325
- #: includes/admin/class-wpglobus-customize-options.php:723
326
  msgid "Help"
327
  msgstr "مساعدة"
328
 
329
- #: includes/admin/class-wpglobus-customize-options.php:745,
330
- #: includes/options/class-wpglobus-options.php:1176
331
  msgid "Languages"
332
  msgstr "اللغات"
333
 
334
- #: includes/admin/class-wpglobus-customize-options.php:765,
335
- #: includes/options/class-wpglobus-options.php:1189
336
  msgid "Enabled Languages"
337
  msgstr "اللغات المفعلة"
338
 
339
- #: includes/admin/class-wpglobus-customize-options.php:767,
340
- #: includes/options/class-wpglobus-options.php:1190
341
  msgid "These languages are currently enabled on your site."
342
  msgstr "هذه اللغات هي حالياً مفغلة علي موقعك."
343
 
344
- #: includes/admin/class-wpglobus-customize-options.php:795,
345
- #: includes/options/class-wpglobus-options.php:1148
346
  msgid "Choose a language you would like to enable."
347
  msgstr "إختر اللغة التي تريد أن تُفعلها."
348
 
349
- #: includes/admin/class-wpglobus-customize-options.php:797
350
  msgid "Press the [Save & Publish] button to confirm."
351
  msgstr "إضغط زر [إحفظ & أنشر] لكي تؤكد."
352
 
353
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
354
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
355
- #: includes/admin/class-wpglobus-customize-options.php:801,
356
- #: includes/options/class-wpglobus-options.php:1154
357
  msgid "or Add new Language %1$s here %2$s"
358
  msgstr "أو أضف لغة جديدة %1$s هنا %2$s"
359
 
360
- #: includes/admin/class-wpglobus-customize-options.php:813,
361
- #: includes/options/class-wpglobus-options.php:1203
362
  msgid "Add Languages"
363
  msgstr "أضف لغة"
364
 
365
- #: includes/admin/class-wpglobus-customize-options.php:833,
366
- #: includes/options/class-wpglobus-options.php:1211
367
  msgid "Language Selector Mode"
368
  msgstr "وضع محدد اللغة"
369
 
370
- #: includes/admin/class-wpglobus-customize-options.php:838,
371
- #: includes/options/class-wpglobus-options.php:1214
372
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
373
  msgstr ""
374
 
375
- #: includes/admin/class-wpglobus-customize-options.php:839,
376
- #: includes/options/class-wpglobus-options.php:1215
377
  msgid "Full Name (English, Russian, Italian, etc.)"
378
  msgstr ""
379
 
380
- #: includes/admin/class-wpglobus-customize-options.php:841,
381
- #: includes/options/class-wpglobus-options.php:1216
382
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
383
  msgstr ""
384
 
385
- #: includes/admin/class-wpglobus-customize-options.php:842,
386
- #: includes/options/class-wpglobus-options.php:1217
387
  msgid "Flags only"
388
  msgstr "أعلام فقط"
389
 
390
- #: includes/admin/class-wpglobus-customize-options.php:844,
391
- #: includes/options/class-wpglobus-options.php:1212
392
  msgid ""
393
  "Choose the way language name and country flag are shown in the drop-down menu"
394
  msgstr "إختر الطريقة بحيث كيفية ظهور أسم اللغة والعلم في القائمة المنسدلة"
395
 
396
- #: includes/admin/class-wpglobus-customize-options.php:879
397
  msgid "select navigation menu"
398
  msgstr ""
399
 
400
- #: includes/admin/class-wpglobus-customize-options.php:915,
401
- #: includes/admin/class-wpglobus-customize-options.php:888,
402
- #: includes/options/class-wpglobus-options.php:1230
403
  msgid "Language Selector Menu"
404
  msgstr "قائمة إختيار اللغة"
405
 
406
- #: includes/admin/class-wpglobus-customize-options.php:920,
407
- #: includes/admin/class-wpglobus-customize-options.php:899,
408
- #: includes/options/class-wpglobus-options.php:1231
409
  msgid "Choose the navigation menu where the language selector will be shown"
410
  msgstr ""
411
 
412
- #: includes/admin/class-wpglobus-customize-options.php:898
413
  msgid "No menus have been created yet. Create some."
414
  msgstr "لا قوائم قد أونشئت بعد، أنشئ البعض."
415
 
416
- #: includes/admin/class-wpglobus-customize-options.php:940,
417
- #: includes/options/class-wpglobus-options.php:1241
418
  msgid "\"All Pages\" menus Language selector"
419
  msgstr ""
420
 
421
- #: includes/admin/class-wpglobus-customize-options.php:943,
422
- #: includes/options/class-wpglobus-options.php:1243
423
  msgid ""
424
  "Adds language selector to the menus that automatically list all existing "
425
  "pages (using `wp_list_pages`)"
426
  msgstr ""
427
 
428
- #: includes/admin/class-wpglobus-customize-options.php:960,
429
- #: includes/options/class-wpglobus-options.php:1356
430
  msgid "Custom CSS"
431
  msgstr "نمط مخصص"
432
 
433
- #: includes/admin/class-wpglobus-customize-options.php:964
434
  msgid ""
435
  "Here you can enter the CSS rules to adjust the language selector menu for "
436
  "your theme. Look at the examples in the `style-samples.css` file."
437
  msgstr ""
438
 
439
- #: includes/admin/class-wpglobus-customize-options.php:983
440
  msgid "Post types"
441
  msgstr "نوع المنشورات"
442
 
443
- #: includes/admin/class-wpglobus-customize-options.php:1091
444
  msgid "Uncheck to disable WPGlobus"
445
  msgstr ""
446
 
447
- #: includes/admin/class-wpglobus-customize-options.php:1125,
448
- #: includes/options/class-wpglobus-options.php:1424
449
  msgid "Redirect"
450
  msgstr "إعادة توجية"
451
 
452
- #: includes/admin/class-wpglobus-customize-options.php:1150,
453
- #: includes/options/class-wpglobus-options.php:1419
454
  msgid "Choose the language automatically, based on:"
455
  msgstr ""
456
 
457
- #: includes/admin/class-wpglobus-customize-options.php:1152,
458
- #: includes/options/class-wpglobus-options.php:1409
459
  msgid "Preferred language set in the browser"
460
  msgstr ""
461
 
462
- #: includes/admin/class-wpglobus-customize-options.php:1153,
463
- #: includes/options/class-wpglobus-options.php:1396
464
  msgid ""
465
  "When a user comes to the site for the first time, try to find the best "
466
  "matching language version of the page."
467
  msgstr ""
468
 
469
- #: includes/admin/class-wpglobus-customize-options.php:1214,
470
- #: includes/admin/class-wpglobus-customize-options.php:1234,
471
- #: includes/admin/class-wpglobus-customize-options.php:1192,
472
- #: includes/options/class-wpglobus-options.php:1368
473
  msgid "Custom JS Code"
474
  msgstr "نمط مخصص"
475
 
476
- #: includes/admin/class-wpglobus-customize-options.php:1232,
477
- #: includes/admin/class-wpglobus-customize-options.php:1276
478
  msgid "Title"
479
  msgstr "المسمى الوظيفي"
480
 
481
- #: includes/admin/class-wpglobus-customize-options.php:1235
482
  msgid "(Paste your JS code here.)"
483
  msgstr ""
484
 
485
- #: includes/admin/class-wpglobus-customize-options.php:1184
486
  msgid ""
487
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
488
  "version 4.9 or later."
489
  msgstr ""
490
 
491
- #: includes/admin/class-wpglobus-customize-options.php:1186
492
  msgid "With your version of WordPress, please use the"
493
  msgstr ""
494
 
495
- #: includes/admin/class-wpglobus-customize-options.php:1188
496
  msgid "WPGlobus Settings page"
497
  msgstr "إعدادات WPGlobus"
498
 
499
- #: includes/admin/class-wpglobus-customize-options.php:1277
500
  msgid "Label"
501
  msgstr "عنوان"
502
 
503
- #: includes/admin/class-wpglobus-customize-options.php:1281
504
  msgid "Description"
505
  msgstr " الوصف"
506
 
507
- #: includes/admin/class-wpglobus-customize-options.php:1345
508
  msgid ""
509
  "Here you can specify which fields should be considered multilingual by "
510
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
511
  msgstr ""
512
 
513
- #: includes/admin/class-wpglobus-customize-options.php:1351,
514
- #: includes/options/class-wpglobus-options.php:608
515
  msgid "Thank you for installing WPGlobus!"
516
  msgstr "شكراً لك لتثبيت WPGlobus !"
517
 
518
- #: includes/admin/class-wpglobus-customize-options.php:1355,
519
- #: includes/options/class-wpglobus-options.php:612
520
  msgid "Read About WPGlobus"
521
  msgstr "إقرأ عن WPGlobus "
522
 
523
- #: includes/admin/class-wpglobus-customize-options.php:1358
524
  msgid ""
525
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
526
  msgstr ""
527
 
528
- #: includes/admin/class-wpglobus-customize-options.php:1363,
529
- #: includes/options/class-wpglobus-options.php:648
530
  msgid ""
531
  "Should you have any questions or comments, please do not hesitate to contact "
532
  "us."
533
  msgstr ""
534
 
535
- #: includes/admin/class-wpglobus-customize-options.php:1367,
536
- #: includes/options/class-wpglobus-options.php:652
537
  msgid "Sincerely Yours,"
538
  msgstr ""
539
 
540
- #: includes/admin/class-wpglobus-customize-options.php:1369,
541
- #: includes/options/class-wpglobus-options.php:654,
542
- #: includes/options/wpglobus-options-header.php:34
543
  msgid "The WPGlobus Team"
544
  msgstr ""
545
 
546
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
547
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
548
- #: includes/admin/class-wpglobus-customize-options.php:1388,
549
- #: includes/options/class-wpglobus-options.php:689
550
  msgid ""
551
  "We would hate to see you go. If something goes wrong, do not uninstall "
552
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
553
  msgstr ""
554
 
555
- #: includes/admin/class-wpglobus-customize-options.php:1395,
556
- #: includes/options/class-wpglobus-options.php:696
557
  msgid ""
558
  "Please note that if you deactivate WPGlobus, your site will show all the "
559
  "languages together, mixed up. You will need to remove all translations, "
@@ -562,8 +410,6 @@ msgstr ""
562
 
563
  #. translators: %s: link to the Clean-up Tool
564
  #. translators: %s: link to the Clean-up Tool.
565
- #: includes/admin/class-wpglobus-customize-options.php:1400,
566
- #: includes/options/class-wpglobus-options.php:700
567
  msgid ""
568
  "If there are just a few places, you should edit them manually. To "
569
  "automatically remove all translations at once, you can use the %s. WARNING: "
@@ -573,595 +419,447 @@ msgstr ""
573
 
574
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
575
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
576
- #: includes/admin/class-wpglobus-customize-options.php:1403,
577
- #: includes/options/class-wpglobus-options.php:677
578
  msgid "%1$sClean-up Tool%2$s"
579
  msgstr ""
580
 
581
  #. translators: %s: name of current theme
582
- #: includes/admin/class-wpglobus-customize-options.php:1415
583
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
584
  msgstr ""
585
 
586
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
587
- #: includes/admin/class-wpglobus-customize-options.php:1421
588
  msgid "Please use %1$sWPGlobus options page%2$s instead."
589
  msgstr ""
590
 
591
- #: includes/admin/class-wpglobus-customize-options.php:1485
592
  msgid "Expand/Shrink"
593
  msgstr ""
594
 
595
- #: includes/admin/class-wpglobus-dashboard-news.php:43,
596
- #: includes/admin/class-wpglobus-dashboard-news.php:59
597
  msgid "WPGlobus News"
598
  msgstr "أخبار WPGlobus "
599
 
600
- #: includes/admin/class-wpglobus-language-edit.php:197,
601
- #: includes/admin/class-wpglobus-language-edit.php:192
602
  msgid "Options updated"
603
  msgstr "الإعدادات حُدثت"
604
 
605
- #: includes/admin/class-wpglobus-language-edit.php:272
606
  msgid "Please enter a language code!"
607
  msgstr "من فضلك أدخل كود لغة!"
608
 
609
- #: includes/admin/class-wpglobus-language-edit.php:276
610
  msgid "Language code already exists!"
611
  msgstr "كود اللغة موجود مسبقاً!"
612
 
613
- #: includes/admin/class-wpglobus-language-edit.php:280
614
  msgid "Please specify the language flag!"
615
  msgstr "من فضلك حدد علم اللغة!"
616
 
617
- #: includes/admin/class-wpglobus-language-edit.php:284
618
  msgid "Please enter the language name!"
619
  msgstr "من فضلك أدخل أسم اللغة!"
620
 
621
- #: includes/admin/class-wpglobus-language-edit.php:288
622
  msgid "Please enter the language name in English!"
623
  msgstr "من فضلك أدخل اللغة في الإنجليزية!"
624
 
625
- #: includes/admin/class-wpglobus-language-edit.php:292
626
  msgid "Please enter the locale!"
627
  msgstr "من فضلك أدخل اللفة!"
628
 
629
- #: includes/admin/class-wpglobus-language-edit.php:354
630
  msgid "Add Language"
631
  msgstr "اضافة لغة"
632
 
633
- #: includes/admin/class-wpglobus-language-edit.php:351,
634
- #: includes/admin/class-wpglobus-language-edit.php:462,
635
- #: includes/admin/class-wpglobus-language-edit.php:455
636
  msgid "Delete Language"
637
  msgstr "مسح اللغة"
638
 
639
- #: includes/admin/class-wpglobus-language-edit.php:349
640
  msgid "Edit Language"
641
  msgstr "تعديل اللغة"
642
 
643
- #: includes/admin/class-wpglobus-language-edit.php:384
644
  msgid "Language Code"
645
  msgstr "كود اللغة"
646
 
647
- #: includes/admin/class-wpglobus-language-edit.php:391
648
  msgid ""
649
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
650
  msgstr ""
651
 
652
- #: includes/admin/class-wpglobus-language-edit.php:396
653
  msgid "Language flag"
654
  msgstr "علم اللغة"
655
 
656
- #: includes/admin/class-wpglobus-language-edit.php:412
657
  msgid "Name"
658
  msgstr "الأسم"
659
 
660
- #: includes/admin/class-wpglobus-language-edit.php:417
661
  msgid ""
662
  "The name of the language in its native alphabet. (Examples: English, Русский)"
663
  msgstr "أسم اللغة في اللغة الأم.(أمثلة: العربية، English)"
664
 
665
- #: includes/admin/class-wpglobus-language-edit.php:422
666
  msgid "Name in English"
667
  msgstr "الأسم في الإنجليزية"
668
 
669
- #: includes/admin/class-wpglobus-language-edit.php:427
670
  msgid "The name of the language in English"
671
  msgstr "أسم اللغة في الإنجليزية"
672
 
673
- #: includes/admin/class-wpglobus-language-edit.php:432,
674
- #: includes/options/fields/table/class-wpglobus-languages-table.php:115
675
  msgid "Locale"
676
  msgstr "منطقة اللغة"
677
 
678
- #: includes/admin/class-wpglobus-language-edit.php:437
679
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
680
  msgstr ""
681
 
682
- #: includes/admin/class-wpglobus-language-edit.php:460
683
  msgid "Are you sure you want to delete?"
684
  msgstr "هل أنت متأكد من المسح؟"
685
 
686
- #: includes/admin/class-wpglobus-language-edit.php:447
687
  msgid "Save Changes"
688
  msgstr "حفظ التغييرات"
689
 
690
- #: includes/admin/class-wpglobus-language-edit.php:470
691
  msgid "Back to the WPGlobus Settings"
692
  msgstr ""
693
 
694
- #: includes/admin/class-wpglobus-plugin-install.php:308
695
  msgid "Current Version"
696
  msgstr "النسخة الحالية"
697
 
698
- #: includes/admin/class-wpglobus-plugin-install.php:309
699
  msgid "Get it now!"
700
  msgstr "إحصل عليها الأن!"
701
 
702
- #: includes/admin/class-wpglobus-plugin-install.php:310
703
  msgid "Premium add-on"
704
  msgstr ""
705
 
706
- #: includes/admin/class-wpglobus-plugin-install.php:311,
707
- #: includes/options/fields/table/class-wpglobus-languages-table.php:472
708
  msgid "Installed"
709
  msgstr "مُثبت"
710
 
711
  #. translators: placeholders are for the HTML tags.
712
- #: includes/admin/class-wpglobus-plugin-install.php:319
713
  msgid ""
714
  "If you have already purchased a WPGlobus premium extension, please read "
715
  "%1$sthe installation instructions here%2$s"
716
  msgstr ""
717
 
718
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
719
- #: includes/options/class-wpglobus-options.php:726
720
  msgid "Help Desk"
721
  msgstr "طاولة المساعدة"
722
 
723
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:185
724
  msgid "Email not sent. Please fill in the entire form."
725
  msgstr ""
726
 
727
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:195
728
  msgid ""
729
  "Email not sent. Please verify that your name and email are entered correctly."
730
  msgstr ""
731
 
732
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:216
733
  msgid "Email sent."
734
  msgstr ""
735
 
736
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
737
  msgid "Thank you for using WPGlobus!"
738
  msgstr "شكراً لك لإستعمال WPGlobus!"
739
 
740
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
741
  msgid "Our Support Team is here to answer your questions or concerns."
742
  msgstr ""
743
 
744
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
745
  msgid "To help us serve you better:"
746
  msgstr ""
747
 
748
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
749
  msgid ""
750
  "Please check if the problem persists if you switch to a standard WordPress "
751
  "theme."
752
  msgstr ""
753
 
754
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
755
  msgid ""
756
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
757
  msgstr ""
758
 
759
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
760
  msgid "Please fill in and submit the contact form:"
761
  msgstr ""
762
 
763
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
764
  msgid "Please make sure the email address is correct."
765
  msgstr ""
766
 
767
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
768
  msgid "Subject"
769
  msgstr "العنوان"
770
 
771
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
772
  msgid "Short description of the problem"
773
  msgstr ""
774
 
775
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
776
  msgid "Detailed description"
777
  msgstr ""
778
 
779
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
780
  msgid "Technical Information"
781
  msgstr "المعلومات التقنية"
782
 
783
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
784
  msgid "This information helps us to find the problem source"
785
  msgstr ""
786
 
787
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:161
788
  msgid ""
789
  "Alternatively, please email %s. Do not forget to copy and paste the "
790
  "technical information to your email message."
791
  msgstr ""
792
 
793
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:89
794
  msgid "WPGlobus Recommends:"
795
  msgstr ""
796
 
797
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:98,
798
- #: includes/options/class-wpglobus-options.php:933
799
  msgid "WPGlobus for WooCommerce"
800
  msgstr ""
801
 
802
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:102
803
  msgid ""
804
  "Translate product titles and descriptions, product categories, tags and "
805
  "attributes."
806
  msgstr ""
807
 
808
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:107
809
  msgid "Get it now:"
810
  msgstr ""
811
 
812
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:117
813
  msgid "WooCommerce Multi-Currency"
814
  msgstr ""
815
 
816
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:121
817
  msgid "Accept multiple currencies in your online store!"
818
  msgstr ""
819
 
820
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:126,
821
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:185
822
  msgid "Check it out:"
823
  msgstr ""
824
 
825
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:195
826
  msgid "To translate permalinks, please activate the module Slug."
827
  msgstr ""
828
 
829
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:183
830
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
831
  msgstr ""
832
 
833
- #: includes/builders/class-wpglobus-builder.php:278,
834
- #: includes/class-wpglobus.php:3577
835
  msgid "Save draft before using extra language."
836
  msgstr ""
837
 
838
- #: includes/builders/class-wpglobus-builder.php:371
839
  msgid "Builder"
840
  msgstr "البانى"
841
 
842
- #: includes/builders/class-wpglobus-builder.php:395
843
  msgid "Сompatibility Settings"
844
  msgstr ""
845
 
846
  #. translators: ON/OFF status of WPGlobus on the edit pages.
847
  #. translators: ON/OFF status of WPGlobus on the edit pages.
848
- #: includes/builders/elementor/class-wpglobus-elementor.php:255,
849
- #: includes/class-wpglobus.php:1263
850
  msgid "ON"
851
  msgstr ""
852
 
853
- #: includes/builders/elementor/class-wpglobus-elementor.php:256,
854
- #: includes/class-wpglobus.php:1264
855
  msgid "Turn off"
856
  msgstr ""
857
 
858
- #: includes/builders/elementor/class-wpglobus-elementor.php:250,
859
- #: includes/class-wpglobus.php:1258
860
  msgid "OFF"
861
  msgstr ""
862
 
863
- #: includes/builders/elementor/class-wpglobus-elementor.php:251,
864
- #: includes/class-wpglobus.php:1259
865
  msgid "Turn on"
866
  msgstr ""
867
 
868
- #: includes/builders/elementor/class-wpglobus-elementor.php:281
869
  msgid "Elementor"
870
  msgstr ""
871
 
872
- #: includes/builders/elementor/class-wpglobus-elementor.php:508
873
  msgid "WPGlobus languages"
874
  msgstr ""
875
 
876
- #: includes/builders/elementor/class-wpglobus-elementor.php:514
877
  msgid "current"
878
  msgstr ""
879
 
880
- #: includes/builders/elementor/class-wpglobus-elementor.php:675
881
  msgid ""
882
  "WPGlobus provides multilingual support for Elementor only when the option "
883
  "%1$s%2$s%3$s is set to %4$s."
884
  msgstr ""
885
 
886
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:228
887
  msgid "Before switching the language, please save draft or publish."
888
  msgstr ""
889
 
890
  #. translators: Metabox title FOR language.
891
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:318
892
  msgctxt "filter__seo_meta_box_title"
893
  msgid "for"
894
  msgstr ""
895
 
896
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:392
897
  msgid "Page is being reloaded. Please wait..."
898
  msgstr ""
899
 
900
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:393
901
  msgid ""
902
  "Before switching the language, please save draft or publish, then reload "
903
  "page."
904
  msgstr ""
905
 
906
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
907
  msgid ""
908
  "WPGlobus provides multilingual support for Elementor only when the option "
909
  "`CSS Print Method` is set to `External File`."
910
  msgstr ""
911
 
912
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
913
  msgid "Open Elementor Settings page"
914
  msgstr ""
915
 
916
- #: includes/class-wpglobus-widget.php:27
917
  msgid "WPGlobus widget"
918
  msgstr ""
919
 
920
- #: includes/class-wpglobus-widget.php:29
921
  msgid "Add language switcher"
922
  msgstr "أضف مبدل اللغة"
923
 
924
- #: includes/class-wpglobus-widget.php:32
925
  msgid "Flags"
926
  msgstr "أعلام"
927
 
928
- #: includes/class-wpglobus-widget.php:33
929
  msgid "List"
930
  msgstr "قائمة"
931
 
932
- #: includes/class-wpglobus-widget.php:34
933
  msgid "List with flags"
934
  msgstr "قائمة بالأعلام"
935
 
936
- #: includes/class-wpglobus-widget.php:35
937
  msgid "Select"
938
  msgstr "تحديد"
939
 
940
- #: includes/class-wpglobus-widget.php:36
941
  msgid "Select with language code"
942
  msgstr "حدد كود اللغة"
943
 
944
- #: includes/class-wpglobus-widget.php:37
945
  msgid "Dropdown"
946
  msgstr "القوائم المنسدلة"
947
 
948
- #: includes/class-wpglobus-widget.php:38
949
  msgid "Dropdown with flags"
950
  msgstr ""
951
 
952
- #: includes/class-wpglobus-widget.php:264
953
  msgid "Selector type"
954
  msgstr ""
955
 
956
- #: includes/class-wpglobus.php:1447
957
  msgid "You cannot disable the main language."
958
  msgstr ""
959
 
960
- #: includes/class-wpglobus.php:1672
961
  msgid "Need a multilingual slug?"
962
  msgstr ""
963
 
964
- #: includes/class-wpglobus.php:1655
965
  msgid "*) Available after the menu is saved."
966
  msgstr ""
967
 
968
- #: includes/class-wpglobus.php:4025
969
  msgid "You must enable Pretty Permalinks to use WPGlobus."
970
  msgstr ""
971
 
972
- #: includes/class-wpglobus.php:4027
973
  msgid ""
974
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
975
  "default option."
976
  msgstr ""
977
 
978
- #: includes/options/class-wpglobus-options.php:281
979
  msgid "Language Selector Menu Style"
980
  msgstr ""
981
 
982
- #: includes/options/class-wpglobus-options.php:282,
983
- #: includes/options/class-wpglobus-options.php:802,
984
- #: includes/options/class-wpglobus-options.php:871
985
  msgid "WPGlobus Plus"
986
  msgstr ""
987
 
988
- #: includes/options/class-wpglobus-options.php:283
989
  msgid "Drop-down languages menu or Flat (in one line)"
990
  msgstr ""
991
 
992
- #: includes/options/class-wpglobus-options.php:286
993
  msgid "Do not change"
994
  msgstr ""
995
 
996
- #: includes/options/class-wpglobus-options.php:287
997
  msgid "Drop-down (vertical)"
998
  msgstr ""
999
 
1000
- #: includes/options/class-wpglobus-options.php:288
1001
  msgid "Flat (horizontal)"
1002
  msgstr ""
1003
 
1004
- #: includes/options/class-wpglobus-options.php:343
1005
  msgid ""
1006
  "If you see this message then your browser may not display the WPGlobus "
1007
  "Settings panel properly. Please try another browser."
1008
  msgstr ""
1009
 
1010
- #: includes/options/class-wpglobus-options.php:599,
1011
- #: includes/options/class-wpglobus-options.php:1577
1012
  msgid "Сompatibility"
1013
  msgstr ""
1014
 
1015
  #. translators: placeholders for "strong" tags.
1016
- #: includes/options/class-wpglobus-options.php:616
1017
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
1018
  msgstr ""
1019
 
1020
  #. translators: placeholders for "strong" tags.
1021
- #: includes/options/class-wpglobus-options.php:619
1022
  msgid ""
1023
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
1024
  "the language attributes: name, code, flag icon, etc."
1025
  msgstr ""
1026
 
1027
- #: includes/options/class-wpglobus-options.php:622
1028
  msgid "Important notes"
1029
  msgstr ""
1030
 
1031
  #. translators: placeholders for "strong" tags.
1032
- #: includes/options/class-wpglobus-options.php:624
1033
  msgid "Version %1$s1.9.17%2$s "
1034
  msgstr ""
1035
 
1036
  #. translators: placeholders for "strong" tags.
1037
- #: includes/options/class-wpglobus-options.php:627
1038
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
1039
  msgstr ""
1040
 
1041
  #. translators: placeholders for "strong" tags; compatibility tab link.
1042
- #: includes/options/class-wpglobus-options.php:630
1043
  msgid ""
1044
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
1045
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
1046
  msgstr ""
1047
 
1048
  #. translators: placeholders for "strong" tags; compatibility tab link.
1049
- #: includes/options/class-wpglobus-options.php:633
1050
  msgid ""
1051
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
1052
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
1053
  msgstr ""
1054
 
1055
  #. translators: placeholders for "strong" tags.
1056
- #: includes/options/class-wpglobus-options.php:637
1057
  msgid "Version %1$s2.2.11%2$s "
1058
  msgstr ""
1059
 
1060
- #: includes/options/class-wpglobus-options.php:639
1061
  msgid "Starting from this version"
1062
  msgstr ""
1063
 
1064
  #. translators: placeholders for "strong" tags.
1065
- #: includes/options/class-wpglobus-options.php:642
1066
  msgid ""
1067
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
1068
  "(CPT)."
1069
  msgstr ""
1070
 
1071
  #. translators: placeholders for "strong" tags.
1072
- #: includes/options/class-wpglobus-options.php:645
1073
  msgid ""
1074
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
1075
  "the %1$s[%3$s]%2$s tab."
1076
  msgstr ""
1077
 
1078
- #: includes/options/class-wpglobus-options.php:662
1079
  msgid "Welcome!"
1080
  msgstr "مرحباً!"
1081
 
1082
- #: includes/options/class-wpglobus-options.php:685
1083
  msgid "Deactivating / Uninstalling"
1084
  msgstr ""
1085
 
1086
- #: includes/options/class-wpglobus-options.php:711
1087
  msgid "Uninstall"
1088
  msgstr ""
1089
 
1090
- #: includes/options/class-wpglobus-options.php:741
1091
  msgid "All add-ons"
1092
  msgstr ""
1093
 
1094
- #: includes/options/class-wpglobus-options.php:756
1095
  msgid "Mobile Menu"
1096
  msgstr ""
1097
 
1098
- #: includes/options/class-wpglobus-options.php:771
1099
  msgid "Language Widgets"
1100
  msgstr ""
1101
 
1102
- #: includes/options/class-wpglobus-options.php:841
1103
  msgid "We Recommend..."
1104
  msgstr ""
1105
 
1106
- #: includes/options/class-wpglobus-options.php:873
1107
  msgid ""
1108
  "Our premium add-on, WPGlobus Plus, will add several features to your "
1109
  "website, such as:"
1110
  msgstr ""
1111
 
1112
- #: includes/options/class-wpglobus-options.php:876
1113
  msgid ""
1114
  "- Ability to write a post in one language and immediately publish it, not "
1115
  "waiting for the translation to other languages;"
1116
  msgstr ""
1117
 
1118
- #: includes/options/class-wpglobus-options.php:879
1119
  msgid "- Set different URLs for each translation;"
1120
  msgstr ""
1121
 
1122
- #: includes/options/class-wpglobus-options.php:882
1123
  msgid ""
1124
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
1125
  "for each translation;"
1126
  msgstr ""
1127
 
1128
- #: includes/options/class-wpglobus-options.php:885
1129
  msgid "- and more..."
1130
  msgstr ""
1131
 
1132
- #: includes/options/class-wpglobus-options.php:888,
1133
- #: includes/options/class-wpglobus-options.php:945,
1134
- #: includes/options/class-wpglobus-options.php:1003
1135
  msgid "Click here to download"
1136
  msgstr ""
1137
 
1138
- #: includes/options/class-wpglobus-options.php:936
1139
  msgid ""
1140
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
1141
  "translate your blog posts and pages to many languages."
1142
  msgstr ""
1143
 
1144
- #: includes/options/class-wpglobus-options.php:939
1145
  msgid "The next step is to translate your WooCommerce-based store!"
1146
  msgstr ""
1147
 
1148
- #: includes/options/class-wpglobus-options.php:942
1149
  msgid ""
1150
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
1151
  "translate product titles and descriptions, categories, tags and attributes."
1152
  msgstr ""
1153
 
1154
- #: includes/options/class-wpglobus-options.php:989
1155
  msgid "Multi-currency"
1156
  msgstr ""
1157
 
1158
- #: includes/options/class-wpglobus-options.php:992
1159
  msgid ""
1160
  "Your WooCommerce-powered store is set to show prices and accept payments in "
1161
  "a single currency only."
1162
  msgstr ""
1163
 
1164
- #: includes/options/class-wpglobus-options.php:996
1165
  msgid ""
1166
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
1167
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
@@ -1169,493 +867,374 @@ msgid ""
1169
  "positioning for global growth!"
1170
  msgstr ""
1171
 
1172
- #: includes/options/class-wpglobus-options.php:1000
1173
  msgid ""
1174
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
1175
  "re-calculating prices on-the-fly."
1176
  msgstr ""
1177
 
1178
- #: includes/options/class-wpglobus-options.php:1037
1179
  msgid "WPGlobus Premium Add-ons"
1180
  msgstr ""
1181
 
1182
- #: includes/options/class-wpglobus-options.php:1039
1183
  msgid ""
1184
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
1185
  "you will be able to:"
1186
  msgstr ""
1187
 
1188
- #: includes/options/class-wpglobus-options.php:1044
1189
  msgid ""
1190
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
1191
  "моя-страница and so on);"
1192
  msgstr ""
1193
 
1194
- #: includes/options/class-wpglobus-options.php:1047
1195
  msgid ""
1196
  "Postpone translation to some languages and <strong>publish only the "
1197
  "translated texts</strong>;"
1198
  msgstr ""
1199
 
1200
- #: includes/options/class-wpglobus-options.php:1050
1201
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
1202
  msgstr ""
1203
 
1204
- #: includes/options/class-wpglobus-options.php:1053
1205
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
1206
  msgstr ""
1207
 
1208
- #: includes/options/class-wpglobus-options.php:1056
1209
  msgid ""
1210
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
1211
  "strong>;"
1212
  msgstr ""
1213
 
1214
- #: includes/options/class-wpglobus-options.php:1060
1215
  msgid "...and more."
1216
  msgstr ""
1217
 
1218
- #: includes/options/class-wpglobus-options.php:1063
1219
  msgid "Click here to visit the WPGlobus Store"
1220
  msgstr ""
1221
 
1222
- #: includes/options/class-wpglobus-options.php:1104
1223
  msgid "Select a language"
1224
  msgstr "حدد لغة"
1225
 
1226
  #. translators: %3$s placeholder for the icon (actual picture).
1227
- #: includes/options/class-wpglobus-options.php:1133
1228
  msgid ""
1229
  "Place the %1$smain language%2$s of your site at the top of the list by "
1230
  "dragging the %3$s icons."
1231
  msgstr ""
1232
 
1233
  #. translators: placeholders for the "strong" HTML tags.
1234
- #: includes/options/class-wpglobus-options.php:1136
1235
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
1236
  msgstr ""
1237
 
1238
  #. translators: placeholders for the "strong" HTML tags.
1239
- #: includes/options/class-wpglobus-options.php:1139
1240
  msgid "%1$sAdd%2$s more languages using the section below."
1241
  msgstr ""
1242
 
1243
- #: includes/options/class-wpglobus-options.php:1140
1244
  msgid "When done, click the [Save Changes] button."
1245
  msgstr ""
1246
 
1247
  #. translators: %s - placeholder for the "Save Changes" button text.
1248
- #: includes/options/class-wpglobus-options.php:1151
1249
  msgid "Press the %s button to confirm."
1250
  msgstr ""
1251
 
1252
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
1253
- #: includes/options/class-wpglobus-options.php:1168
1254
  msgid "-- none --"
1255
  msgstr ""
1256
 
1257
- #: includes/options/class-wpglobus-options.php:1169
1258
  msgid "All menus"
1259
  msgstr ""
1260
 
1261
- #: includes/options/class-wpglobus-options.php:1182
1262
  msgid "Instructions:"
1263
  msgstr "تعليمات:"
1264
 
1265
- #: includes/options/class-wpglobus-options.php:1242
1266
  msgid "(Found in some themes)"
1267
  msgstr ""
1268
 
1269
- #: includes/options/class-wpglobus-options.php:1244
1270
  msgid "Enable"
1271
  msgstr "مُفعّل"
1272
 
1273
- #: includes/options/class-wpglobus-options.php:1259
1274
  msgid "Languages table"
1275
  msgstr "لائحة اللغات"
1276
 
1277
- #: includes/options/class-wpglobus-options.php:1265
1278
  msgid "Use this table to add, edit or delete languages."
1279
  msgstr "إستخدم هذه اللأئحة لكي تضيف،تعدل أو تزيل اللغات."
1280
 
1281
- #: includes/options/class-wpglobus-options.php:1266
1282
  msgid "NOTE: you cannot remove the main language."
1283
  msgstr "ملحوظة: لا يمكنك مسح اللغة الرئيسية."
1284
 
1285
- #: includes/options/class-wpglobus-options.php:1314
1286
  msgid "WPGlobus is enabled on these Post Types"
1287
  msgstr ""
1288
 
1289
- #: includes/options/class-wpglobus-options.php:1315
1290
  msgid "Uncheck to disable"
1291
  msgstr ""
1292
 
1293
- #: includes/options/class-wpglobus-options.php:1316
1294
  msgid ""
1295
  "Please note that there are post types, which status is managed by other "
1296
  "plugins and cannot be changed here."
1297
  msgstr ""
1298
 
1299
- #: includes/options/class-wpglobus-options.php:1321
1300
  msgid "Post Types"
1301
  msgstr ""
1302
 
1303
- #: includes/options/class-wpglobus-options.php:1337
1304
  msgid ""
1305
  "You should put here only the code provided by WPGlobus Support. Do not write "
1306
  "anything else in the sections below as it might break the functionality of "
1307
  "your website!"
1308
  msgstr ""
1309
 
1310
- #: includes/options/class-wpglobus-options.php:1378
1311
  msgid "Custom Code"
1312
  msgstr ""
1313
 
1314
- #: includes/options/class-wpglobus-options.php:1486,
1315
- #: includes/options/class-wpglobus-options.php:1618,
1316
- #: includes/options/class-wpglobus-options.php:1729
1317
  msgid "Enabled"
1318
  msgstr "مفعل"
1319
 
1320
- #: includes/options/class-wpglobus-options.php:1499
1321
  msgid "Builders support"
1322
  msgstr ""
1323
 
1324
- #: includes/options/class-wpglobus-options.php:1551
1325
  msgid "Builder mode is enabled on these Post Types"
1326
  msgstr ""
1327
 
1328
- #: includes/options/class-wpglobus-options.php:1617
1329
  msgid "Old fashioned language switcher"
1330
  msgstr ""
1331
 
1332
- #: includes/options/class-wpglobus-options.php:1623
1333
  msgid "Block Editor"
1334
  msgstr ""
1335
 
1336
- #: includes/options/class-wpglobus-options.php:1624
1337
  msgid "Block Editor Options"
1338
  msgstr ""
1339
 
1340
- #: includes/options/class-wpglobus-options.php:1653
1341
  msgid ""
1342
  "With the current settings, you will see the following lines in the section "
1343
  "HEAD of your site pages"
1344
  msgstr ""
1345
 
1346
- #: includes/options/class-wpglobus-options.php:1655
1347
  msgid "(example for two languages)"
1348
  msgstr ""
1349
 
1350
- #: includes/options/class-wpglobus-options.php:1702
1351
  msgid ""
1352
  "Tell search engines about localized versions of your pages using the "
1353
  "hreflang tag"
1354
  msgstr ""
1355
 
1356
- #: includes/options/class-wpglobus-options.php:1711
1357
  msgid "Output the hreflang tag as"
1358
  msgstr ""
1359
 
1360
- #: includes/options/class-wpglobus-options.php:1714
1361
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1362
  msgstr ""
1363
 
1364
- #: includes/options/class-wpglobus-options.php:1715
1365
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1366
  msgstr ""
1367
 
1368
- #: includes/options/class-wpglobus-options.php:1716
1369
  msgid "Language code only (en, ru, etc.)"
1370
  msgstr ""
1371
 
1372
- #: includes/options/class-wpglobus-options.php:1728
1373
  msgid "Use the code `x-default` for the main language"
1374
  msgstr ""
1375
 
1376
- #: includes/options/class-wpglobus-options.php:1734
1377
  msgid "Multilingual SEO"
1378
  msgstr ""
1379
 
1380
- #: includes/options/class-wpglobus-options.php:1735
1381
  msgid "Multilingual SEO Options"
1382
  msgstr ""
1383
 
1384
- #: includes/options/class-wpglobus-options.php:1772
1385
  msgid ""
1386
  "With WPGlobus, you can get translations for posts and pages using REST API."
1387
  msgstr ""
1388
 
1389
- #: includes/options/class-wpglobus-options.php:1800,
1390
- #: includes/options/class-wpglobus-options.php:1808,
1391
- #: includes/options/class-wpglobus-options.php:1780,
1392
- #: includes/options/class-wpglobus-options.php:1789
1393
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1394
  msgstr ""
1395
 
1396
- #: includes/options/class-wpglobus-options.php:1777
1397
  msgid ""
1398
  "For demonstration, you can try the first post that WordPress creates at the "
1399
  "initial installation."
1400
  msgstr ""
1401
 
1402
- #: includes/options/class-wpglobus-options.php:1819
1403
  msgid ""
1404
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1405
  "information."
1406
  msgstr ""
1407
 
1408
- #: includes/options/class-wpglobus-options.php:1826
1409
  msgid ""
1410
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1411
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1412
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1413
  msgstr ""
1414
 
1415
- #: includes/options/class-wpglobus-options.php:1839
1416
  msgid "Description:"
1417
  msgstr ""
1418
 
1419
- #: includes/options/class-wpglobus-options.php:1846,
1420
- #: includes/options/class-wpglobus-options.php:1847
1421
  msgid "REST API"
1422
  msgstr ""
1423
 
1424
- #: includes/options/class-wpglobus-options.php:2180
1425
  msgid "Translate strings"
1426
  msgstr ""
1427
 
1428
- #: includes/options/fields/table/class-wpglobus-languages-table.php:66
1429
  msgid "item"
1430
  msgstr "عنصر"
1431
 
1432
- #: includes/options/fields/table/class-wpglobus-languages-table.php:68
1433
  msgid "items"
1434
  msgstr "عناصر"
1435
 
1436
- #: includes/options/fields/table/class-wpglobus-languages-table.php:88
1437
  msgid "Code"
1438
  msgstr "رمز"
1439
 
1440
- #: includes/options/fields/table/class-wpglobus-languages-table.php:94
1441
  msgid "Edit"
1442
  msgstr "تعديل"
1443
 
1444
- #: includes/options/fields/table/class-wpglobus-languages-table.php:99
1445
  msgid "Delete"
1446
  msgstr "محو"
1447
 
1448
- #: includes/options/fields/table/class-wpglobus-languages-table.php:105
1449
  msgid "File"
1450
  msgstr "ملف"
1451
 
1452
- #: includes/options/fields/table/class-wpglobus-languages-table.php:110
1453
  msgid "Flag"
1454
  msgstr "اشارة بعلم"
1455
 
1456
- #: includes/options/fields/table/class-wpglobus-languages-table.php:120
1457
  msgid "Language name"
1458
  msgstr "أسم اللغة"
1459
 
1460
- #: includes/options/fields/table/class-wpglobus-languages-table.php:125
1461
  msgid "English language name"
1462
  msgstr "أسم اللغة بالإنجليزية"
1463
 
1464
- #: includes/options/fields/table/class-wpglobus-languages-table.php:151
1465
  msgid "No items found"
1466
  msgstr "لم يتم العثور على شيء"
1467
 
1468
- #: includes/options/fields/table/class-wpglobus-languages-table.php:164
1469
  msgid "Add new Language"
1470
  msgstr "أضف لغة جديدة"
1471
 
1472
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:164
1473
  msgid "No items of this type were found."
1474
  msgstr "لم يتم العثور على عناصر من هذا النوع."
1475
 
1476
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:107
1477
  msgid "Select an item"
1478
  msgstr "اختر عنصر"
1479
 
1480
- #: includes/options/templates/compatibility-beta.php:15
1481
  msgid "Multilingual support of this add-on is currently in Beta stage."
1482
  msgstr ""
1483
 
1484
- #: includes/options/templates/compatibility-beta.php:17
1485
  msgid "We do not recommend using it on production sites."
1486
  msgstr ""
1487
 
1488
- #: includes/options/templates/compatibility-beta.php:23
1489
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1490
  msgstr ""
1491
 
1492
- #: includes/options/templates/compatibility.php:69
1493
  msgid "WordPress version"
1494
  msgstr ""
1495
 
1496
- #: includes/options/templates/compatibility.php:44
1497
  msgid "In the WordPress core"
1498
  msgstr ""
1499
 
1500
- #: includes/options/templates/compatibility.php:46
1501
  msgid "Core"
1502
  msgstr ""
1503
 
1504
- #: includes/options/templates/compatibility.php:52,
1505
- #: includes/options/templates/compatibility.php:79
1506
  msgid "Current version"
1507
  msgstr ""
1508
 
1509
- #: includes/options/templates/compatibility.php:53,
1510
- #: includes/options/templates/compatibility.php:81
1511
  msgid "Stage"
1512
  msgstr ""
1513
 
1514
- #: includes/options/templates/compatibility.php:54,
1515
- #: includes/options/templates/compatibility.php:82
1516
  msgid "Status"
1517
  msgstr "الحالة"
1518
 
1519
- #: includes/options/templates/compatibility.php:60
1520
  msgid "Block editor"
1521
  msgstr ""
1522
 
1523
- #: includes/options/templates/compatibility.php:62
1524
  msgid "production"
1525
  msgstr ""
1526
 
1527
- #: includes/options/templates/compatibility.php:73
1528
  msgid "List of supported add-ons"
1529
  msgstr ""
1530
 
1531
- #: includes/options/templates/compatibility.php:78
1532
  msgid "Add-on"
1533
  msgstr ""
1534
 
1535
- #: includes/options/templates/compatibility.php:80
1536
  msgid "Supported minimum version"
1537
  msgstr ""
1538
 
1539
- #: includes/options/templates/compatibility.php:105
1540
  msgid "Not installed"
1541
  msgstr ""
1542
 
1543
- #: includes/options/templates/compatibility.php:102
1544
  msgid "Installed, inactive"
1545
  msgstr ""
1546
 
1547
- #: includes/options/templates/compatibility.php:100
1548
  msgid "Active"
1549
  msgstr "فعال"
1550
 
1551
- #: includes/options/templates/customize-intro.php:35
1552
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1553
  msgstr ""
1554
 
1555
- #: includes/options/templates/customize-intro.php:39
1556
  msgid "However, some themes do not follow all WordPress standards strictly."
1557
  msgstr ""
1558
 
1559
- #: includes/options/templates/customize-intro.php:41
1560
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1561
  msgstr ""
1562
 
1563
- #: includes/options/templates/customize-intro.php:45
1564
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1565
  msgstr ""
1566
 
1567
- #: includes/options/templates/customize-intro.php:53
1568
  msgid ""
1569
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1570
  "With those themes, WPGlobus Customizer is switched off by default"
1571
  msgstr ""
1572
 
1573
- #: includes/options/templates/customize-intro.php:60
1574
  msgid "The currently active theme is"
1575
  msgstr ""
1576
 
1577
- #: includes/options/templates/customize-intro.php:66
1578
  msgid "In the current version, WPGlobus Customizer does not support"
1579
  msgstr ""
1580
 
1581
- #: includes/options/templates/customize-intro.php:70
1582
  msgid "translation of the navigation menus"
1583
  msgstr ""
1584
 
1585
- #: includes/options/templates/customize-intro.php:72
1586
  msgid "to translate, please go to"
1587
  msgstr ""
1588
 
1589
- #: includes/options/templates/customize-intro.php:81
1590
  msgid "Go to Customizer"
1591
  msgstr ""
1592
 
1593
- #: includes/options/templates/customize-intro.php:88
1594
  msgid "is undefined"
1595
  msgstr ""
1596
 
1597
- #: includes/options/templates/customize-intro.php:85
1598
  msgid "is set to"
1599
  msgstr ""
1600
 
1601
- #: includes/options/templates/customize-intro.php:94
1602
  msgid "by adding to the file wp-config.php"
1603
  msgstr ""
1604
 
1605
- #: includes/options/templates/customize-intro.php:96
1606
  msgid "now"
1607
  msgstr ""
1608
 
1609
- #: includes/options/wpglobus-options-header.php:25
1610
  msgid "We rely on your support!"
1611
  msgstr "نحن نعتمد علي دعمك لنا!"
1612
 
1613
- #: includes/options/wpglobus-options-header.php:28
1614
  msgid "Please consider a small donation to support the future development."
1615
  msgstr "من فضلك فكر في تبرع بنسبة بسيطة لدعم التطوير في المستقبل."
1616
 
1617
- #: includes/options/wpglobus-options-header.php:32
1618
  msgid "Thank you!"
1619
  msgstr "شكراً لك!"
1620
 
1621
- #: includes/options/wpglobus-options-header.php:55
1622
  msgid "WPGlobus Plus!"
1623
  msgstr ""
1624
 
1625
- #: includes/options/wpglobus-options-header.php:58
1626
  msgid ""
1627
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1628
  "separate publishing and more! "
1629
  msgstr ""
1630
 
1631
- #: includes/options/wpglobus-options-header.php:64
1632
  msgid "Get WPGlobus Plus now!"
1633
  msgstr "أحصل علي WPGlobus الأضافي الأن!"
1634
 
1635
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1636
  msgid ""
1637
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1638
  "the current version."
1639
  msgstr ""
1640
 
1641
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1642
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1643
  msgstr ""
1644
 
1645
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1646
  msgid "WPGlobus warning: "
1647
  msgstr ""
1648
 
1649
- #: wpglobus.php:13
1650
  msgid "https://github.com/WPGlobus/WPGlobus"
1651
  msgstr "https://github.com/WPGlobus/WPGlobus"
1652
 
1653
- #: wpglobus.php:14
1654
  msgid ""
1655
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1656
  "widgets and even custom fields - in multiple languages!"
1657
  msgstr ""
1658
 
1659
- #: wpglobus.php:19
1660
  msgid "https://wpglobus.com/"
1661
  msgstr "https://wpglobus.com/"
18
  "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
19
  "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
20
 
 
 
 
 
 
21
  msgid "Guide"
22
  msgstr "الدليل"
23
 
 
 
24
  msgid "WPGlobus Help Desk"
25
  msgstr "WPGlobus دائرة المساعدة"
26
 
 
 
 
 
 
 
 
27
  msgid "Add-ons"
28
  msgstr "الإضافات"
29
 
 
30
  msgid "Quick Start"
31
  msgstr "بداية سريعة"
32
 
 
 
33
  msgid "FAQ"
34
  msgstr "أسئلة متداولة"
35
 
 
36
  msgid ""
37
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
38
  msgstr "إنتباه: سلسلة البايت المتعدد إضافة PHP (mbstring) غير مُحمل!"
39
 
 
40
  msgid ""
41
  "The mbstring extension is required for the full UTF-8 compatibility and "
42
  "better performance. Without it, some parts of WordPress and WPGlobus may "
47
  "بعض الأجزاء من WordPress و WPGlobus ربما لن تعمل جيداً. من فضلك إتصل بشركة "
48
  "الإستضافة الخاصة بك أو مدير النظام."
49
 
 
50
  msgid "Go to WPGlobus Settings"
51
  msgstr "إذهب إلي إعدادت WPGlobus "
52
 
 
53
  msgid "Easy as 1-2-3:"
54
  msgstr "سهل مثل 1-2-3:"
55
 
 
56
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
57
  msgstr "إذهب إلي قائمة المدير الخاصة بـWPGlobus وإختر البلاد/اللغة;"
58
 
 
59
  msgid ""
60
  "Enter the translations to the posts, pages, categories, tags and menus using "
61
  "a clean and simple interface."
63
  "أدخل الترجمة إلي المنشورات، الصفح، الأقسام، الإشارات و القوائم مستخدماً واجهة "
64
  "بسيطة ونظيفة."
65
 
 
66
  msgid ""
67
  "Switch languages at the front-end using a drop-down menu with language names "
68
  "and country flags."
69
  msgstr ""
70
  "غير اللغة في الواجهة بإستخدام القائمة المنسدلة مع أسماء اللغات و أعلام الدول."
71
 
 
72
  msgid "Links:"
73
  msgstr "الراوبط:"
74
 
 
75
  msgid "FAQs"
76
  msgstr "الأسئلة المتكررة"
77
 
 
78
  msgid "Contact Us"
79
  msgstr "إتصل بنا"
80
 
 
81
  msgid "Please give us 5 stars!"
82
  msgstr "من فضلك أعطنا 5 نجوم!"
83
 
 
84
  msgid "WPGlobus does not translate texts automatically!"
85
  msgstr "WPGlobus لا يُترجم النصوص تلقائياً!"
86
 
 
87
  msgid ""
88
  "There are many translation companies and individual translators who can help "
89
  "you write and proofread the texts."
91
  "هناك شركات ترجمة كثيرة و مترجمين مستقلين يمكنهم مساعدتك في ترجمة وتصحيح "
92
  "الأخطاء في نصوصك."
93
 
 
94
  msgid ""
95
  "When you choose a translator, please look at their native language, country "
96
  "of residence, specialization and knowledge of WordPress."
99
  "بـ WordPress."
100
 
101
  #. translators: %s are used to insert HTML link. Keep them in place.
 
102
  msgid ""
103
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
104
  "website. This is not an endorsement, just a courtesy. Please contact them "
107
  "نحن نخطط لإبقاء %sقائمة بالمترجمين %s في موقع WPGlobus. هذا ليس إقرار، هي "
108
  "فقط مجاملة. من فضلك تواصل معهم وأعلمنا ماذا حدث معك!"
109
 
 
110
  msgid "Important notes:"
111
  msgstr "ملاحظات هامة:"
112
 
 
113
  msgid ""
114
  "WPGlobus only supports the localization URLs in the form of <code>example."
115
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
119
  "نحن لا ننوي دعم النطاقات الفرعية<code>xx.example.com</code> وعلامات اللغة "
120
  "<code>example.com?lang=xx</code>."
121
 
 
122
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
123
  msgstr "بعض الثيمات و الإضافات هي<strong>ليس لديها لغات متنوعة</strong>."
124
 
 
125
  msgid ""
126
  "They might display some texts with no translation, or with all languages "
127
  "mixed together."
128
  msgstr "هذا ربما يظهر بعض الكتابات بدون ترجمة، أو مع كل اللغات مختلطة."
129
 
130
  #. translators: %s are used to insert HTML link. Keep them in place.
 
131
  msgid ""
132
  "Please contact the theme / plugin author. If they are unable to assist, "
133
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
135
  "من فضلك تواصل مع مالك الإضافة أو الثيم. إذا كانوا لا يستطيعوا المساعدة، فكر "
136
  "في %s تأجير فريق WPGlobus%s لكي يكتب كود مخصص لك."
137
 
 
138
  msgid "Language was set on your profile page"
139
  msgstr ""
140
 
 
141
  msgid "Add"
142
  msgstr "إضافة"
143
 
 
 
144
  msgid "Multilingual Everything!"
145
  msgstr "عدد لغات كل شئ!"
146
 
 
 
147
  msgid ""
148
  "WPGlobus is a family of WordPress plugins assisting you in making "
149
  "multilingual WordPress blogs and sites."
151
  "WPGlobus هي عائلة من إضافات ووردبريس يساعد في جعل المواقع و المدونات متعددة "
152
  "اللغة."
153
 
 
154
  msgid "Remove the WPGlobus settings (not recommended)"
155
  msgstr "إمسح إعدادات WPGlobus (غير مُفضل)"
156
 
 
157
  msgid "Clean-up Tool"
158
  msgstr "أداة التنظيف"
159
 
 
160
  msgid "Support"
161
  msgstr "الدعم الفني"
162
 
 
163
  msgid ""
164
  "WARNING: this operation is non-reversible. It is strongly recommended that "
165
  "you backup your database before proceeding."
167
  "تحذير: العملية لا يمكن الرجوع عنها. يُفضل بشدة أن تعمل نسخة إحتياطية لقاعدة "
168
  "البيانات قبل المتابعة."
169
 
 
170
  msgid ""
171
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
172
  "By running it, you will remove ALL translations you have entered to your "
176
  "so on."
177
  msgstr ""
178
 
 
179
  msgid ""
180
  "Make sure that your active theme does not have any code related to WPGlobus. "
181
  "Such code could be added by you or by a 3rd party developer. If that code "
184
  msgstr ""
185
 
186
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
 
187
  msgid ""
188
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
189
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
190
  msgstr ""
191
 
 
192
  msgid "You are about to clean the content of the following database tables:"
193
  msgstr ""
194
 
 
195
  msgid "The operations log"
196
  msgstr ""
197
 
 
198
  msgid ""
199
  "We are going to write a detailed log of all the database changes performed. "
200
  "It should help in the case you need to restore something important. The log "
201
  "will be written to the file:"
202
  msgstr ""
203
 
 
204
  msgid ""
205
  "Uncheck if you do not want to write the operations log (we recommend to keep "
206
  "it checked)"
207
  msgstr ""
208
 
 
209
  msgid "You have been warned..."
210
  msgstr "لقد تم تحذيرك..."
211
 
 
212
  msgid "Please confirm by checking the box below:"
213
  msgstr ""
214
 
 
215
  msgid ""
216
  "I have read and understood everything written on this page. I am aware that "
217
  "by using this tool I may loose some content of my website. I have made a "
219
  "responsible for the results."
220
  msgstr ""
221
 
 
222
  msgid "YES, I CONFIRM"
223
  msgstr "أجل، أنا أؤكد"
224
 
 
225
  msgid "Process with the Clean-up"
226
  msgstr ""
227
 
 
 
 
 
228
  msgid "Default"
229
  msgstr "الأفتراضي"
230
 
 
231
  msgid "Section"
232
  msgstr "قسم"
233
 
 
234
  msgid "Show all sections"
235
  msgstr ""
236
 
 
237
  msgid "Save &amp; Reload"
238
  msgstr ""
239
 
 
 
 
240
  msgid "WPGlobus"
241
  msgstr "WPGlobus"
242
 
 
243
  msgid ""
244
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
245
  msgstr ""
246
 
 
247
  msgid "Fields Settings"
248
  msgstr ""
249
 
 
250
  msgid "WPGlobus Settings"
251
  msgstr "إعدادات WPGlobus "
252
 
 
253
  msgid "Help"
254
  msgstr "مساعدة"
255
 
 
 
256
  msgid "Languages"
257
  msgstr "اللغات"
258
 
 
 
259
  msgid "Enabled Languages"
260
  msgstr "اللغات المفعلة"
261
 
 
 
262
  msgid "These languages are currently enabled on your site."
263
  msgstr "هذه اللغات هي حالياً مفغلة علي موقعك."
264
 
 
 
265
  msgid "Choose a language you would like to enable."
266
  msgstr "إختر اللغة التي تريد أن تُفعلها."
267
 
 
268
  msgid "Press the [Save & Publish] button to confirm."
269
  msgstr "إضغط زر [إحفظ & أنشر] لكي تؤكد."
270
 
271
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
272
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
 
 
273
  msgid "or Add new Language %1$s here %2$s"
274
  msgstr "أو أضف لغة جديدة %1$s هنا %2$s"
275
 
 
 
276
  msgid "Add Languages"
277
  msgstr "أضف لغة"
278
 
 
 
279
  msgid "Language Selector Mode"
280
  msgstr "وضع محدد اللغة"
281
 
 
 
282
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
283
  msgstr ""
284
 
 
 
285
  msgid "Full Name (English, Russian, Italian, etc.)"
286
  msgstr ""
287
 
 
 
288
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
289
  msgstr ""
290
 
 
 
291
  msgid "Flags only"
292
  msgstr "أعلام فقط"
293
 
 
 
294
  msgid ""
295
  "Choose the way language name and country flag are shown in the drop-down menu"
296
  msgstr "إختر الطريقة بحيث كيفية ظهور أسم اللغة والعلم في القائمة المنسدلة"
297
 
 
298
  msgid "select navigation menu"
299
  msgstr ""
300
 
 
 
 
301
  msgid "Language Selector Menu"
302
  msgstr "قائمة إختيار اللغة"
303
 
 
 
 
304
  msgid "Choose the navigation menu where the language selector will be shown"
305
  msgstr ""
306
 
 
307
  msgid "No menus have been created yet. Create some."
308
  msgstr "لا قوائم قد أونشئت بعد، أنشئ البعض."
309
 
 
 
310
  msgid "\"All Pages\" menus Language selector"
311
  msgstr ""
312
 
 
 
313
  msgid ""
314
  "Adds language selector to the menus that automatically list all existing "
315
  "pages (using `wp_list_pages`)"
316
  msgstr ""
317
 
 
 
318
  msgid "Custom CSS"
319
  msgstr "نمط مخصص"
320
 
 
321
  msgid ""
322
  "Here you can enter the CSS rules to adjust the language selector menu for "
323
  "your theme. Look at the examples in the `style-samples.css` file."
324
  msgstr ""
325
 
 
326
  msgid "Post types"
327
  msgstr "نوع المنشورات"
328
 
 
329
  msgid "Uncheck to disable WPGlobus"
330
  msgstr ""
331
 
 
 
332
  msgid "Redirect"
333
  msgstr "إعادة توجية"
334
 
 
 
335
  msgid "Choose the language automatically, based on:"
336
  msgstr ""
337
 
 
 
338
  msgid "Preferred language set in the browser"
339
  msgstr ""
340
 
 
 
341
  msgid ""
342
  "When a user comes to the site for the first time, try to find the best "
343
  "matching language version of the page."
344
  msgstr ""
345
 
 
 
 
 
346
  msgid "Custom JS Code"
347
  msgstr "نمط مخصص"
348
 
 
 
349
  msgid "Title"
350
  msgstr "المسمى الوظيفي"
351
 
 
352
  msgid "(Paste your JS code here.)"
353
  msgstr ""
354
 
 
355
  msgid ""
356
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
357
  "version 4.9 or later."
358
  msgstr ""
359
 
 
360
  msgid "With your version of WordPress, please use the"
361
  msgstr ""
362
 
 
363
  msgid "WPGlobus Settings page"
364
  msgstr "إعدادات WPGlobus"
365
 
 
366
  msgid "Label"
367
  msgstr "عنوان"
368
 
 
369
  msgid "Description"
370
  msgstr " الوصف"
371
 
 
372
  msgid ""
373
  "Here you can specify which fields should be considered multilingual by "
374
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
375
  msgstr ""
376
 
 
 
377
  msgid "Thank you for installing WPGlobus!"
378
  msgstr "شكراً لك لتثبيت WPGlobus !"
379
 
 
 
380
  msgid "Read About WPGlobus"
381
  msgstr "إقرأ عن WPGlobus "
382
 
 
383
  msgid ""
384
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
385
  msgstr ""
386
 
 
 
387
  msgid ""
388
  "Should you have any questions or comments, please do not hesitate to contact "
389
  "us."
390
  msgstr ""
391
 
 
 
392
  msgid "Sincerely Yours,"
393
  msgstr ""
394
 
 
 
 
395
  msgid "The WPGlobus Team"
396
  msgstr ""
397
 
398
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
399
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
400
  msgid ""
401
  "We would hate to see you go. If something goes wrong, do not uninstall "
402
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
403
  msgstr ""
404
 
 
 
405
  msgid ""
406
  "Please note that if you deactivate WPGlobus, your site will show all the "
407
  "languages together, mixed up. You will need to remove all translations, "
410
 
411
  #. translators: %s: link to the Clean-up Tool
412
  #. translators: %s: link to the Clean-up Tool.
 
 
413
  msgid ""
414
  "If there are just a few places, you should edit them manually. To "
415
  "automatically remove all translations at once, you can use the %s. WARNING: "
419
 
420
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
421
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
422
  msgid "%1$sClean-up Tool%2$s"
423
  msgstr ""
424
 
425
  #. translators: %s: name of current theme
 
426
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
427
  msgstr ""
428
 
429
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
430
  msgid "Please use %1$sWPGlobus options page%2$s instead."
431
  msgstr ""
432
 
 
433
  msgid "Expand/Shrink"
434
  msgstr ""
435
 
 
 
436
  msgid "WPGlobus News"
437
  msgstr "أخبار WPGlobus "
438
 
 
 
439
  msgid "Options updated"
440
  msgstr "الإعدادات حُدثت"
441
 
 
442
  msgid "Please enter a language code!"
443
  msgstr "من فضلك أدخل كود لغة!"
444
 
 
445
  msgid "Language code already exists!"
446
  msgstr "كود اللغة موجود مسبقاً!"
447
 
 
448
  msgid "Please specify the language flag!"
449
  msgstr "من فضلك حدد علم اللغة!"
450
 
 
451
  msgid "Please enter the language name!"
452
  msgstr "من فضلك أدخل أسم اللغة!"
453
 
 
454
  msgid "Please enter the language name in English!"
455
  msgstr "من فضلك أدخل اللغة في الإنجليزية!"
456
 
 
457
  msgid "Please enter the locale!"
458
  msgstr "من فضلك أدخل اللفة!"
459
 
 
460
  msgid "Add Language"
461
  msgstr "اضافة لغة"
462
 
 
 
 
463
  msgid "Delete Language"
464
  msgstr "مسح اللغة"
465
 
 
466
  msgid "Edit Language"
467
  msgstr "تعديل اللغة"
468
 
 
469
  msgid "Language Code"
470
  msgstr "كود اللغة"
471
 
 
472
  msgid ""
473
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
474
  msgstr ""
475
 
 
476
  msgid "Language flag"
477
  msgstr "علم اللغة"
478
 
 
479
  msgid "Name"
480
  msgstr "الأسم"
481
 
 
482
  msgid ""
483
  "The name of the language in its native alphabet. (Examples: English, Русский)"
484
  msgstr "أسم اللغة في اللغة الأم.(أمثلة: العربية، English)"
485
 
 
486
  msgid "Name in English"
487
  msgstr "الأسم في الإنجليزية"
488
 
 
489
  msgid "The name of the language in English"
490
  msgstr "أسم اللغة في الإنجليزية"
491
 
 
 
492
  msgid "Locale"
493
  msgstr "منطقة اللغة"
494
 
 
495
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
496
  msgstr ""
497
 
 
498
  msgid "Are you sure you want to delete?"
499
  msgstr "هل أنت متأكد من المسح؟"
500
 
 
501
  msgid "Save Changes"
502
  msgstr "حفظ التغييرات"
503
 
 
504
  msgid "Back to the WPGlobus Settings"
505
  msgstr ""
506
 
 
507
  msgid "Current Version"
508
  msgstr "النسخة الحالية"
509
 
 
510
  msgid "Get it now!"
511
  msgstr "إحصل عليها الأن!"
512
 
 
513
  msgid "Premium add-on"
514
  msgstr ""
515
 
 
 
516
  msgid "Installed"
517
  msgstr "مُثبت"
518
 
519
  #. translators: placeholders are for the HTML tags.
 
520
  msgid ""
521
  "If you have already purchased a WPGlobus premium extension, please read "
522
  "%1$sthe installation instructions here%2$s"
523
  msgstr ""
524
 
 
 
525
  msgid "Help Desk"
526
  msgstr "طاولة المساعدة"
527
 
 
528
  msgid "Email not sent. Please fill in the entire form."
529
  msgstr ""
530
 
 
531
  msgid ""
532
  "Email not sent. Please verify that your name and email are entered correctly."
533
  msgstr ""
534
 
 
535
  msgid "Email sent."
536
  msgstr ""
537
 
 
538
  msgid "Thank you for using WPGlobus!"
539
  msgstr "شكراً لك لإستعمال WPGlobus!"
540
 
 
541
  msgid "Our Support Team is here to answer your questions or concerns."
542
  msgstr ""
543
 
 
544
  msgid "To help us serve you better:"
545
  msgstr ""
546
 
 
547
  msgid ""
548
  "Please check if the problem persists if you switch to a standard WordPress "
549
  "theme."
550
  msgstr ""
551
 
 
552
  msgid ""
553
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
554
  msgstr ""
555
 
 
556
  msgid "Please fill in and submit the contact form:"
557
  msgstr ""
558
 
 
559
  msgid "Please make sure the email address is correct."
560
  msgstr ""
561
 
 
562
  msgid "Subject"
563
  msgstr "العنوان"
564
 
 
565
  msgid "Short description of the problem"
566
  msgstr ""
567
 
 
568
  msgid "Detailed description"
569
  msgstr ""
570
 
 
571
  msgid "Technical Information"
572
  msgstr "المعلومات التقنية"
573
 
 
574
  msgid "This information helps us to find the problem source"
575
  msgstr ""
576
 
 
577
  msgid ""
578
  "Alternatively, please email %s. Do not forget to copy and paste the "
579
  "technical information to your email message."
580
  msgstr ""
581
 
 
582
  msgid "WPGlobus Recommends:"
583
  msgstr ""
584
 
 
 
585
  msgid "WPGlobus for WooCommerce"
586
  msgstr ""
587
 
 
588
  msgid ""
589
  "Translate product titles and descriptions, product categories, tags and "
590
  "attributes."
591
  msgstr ""
592
 
 
593
  msgid "Get it now:"
594
  msgstr ""
595
 
 
596
  msgid "WooCommerce Multi-Currency"
597
  msgstr ""
598
 
 
599
  msgid "Accept multiple currencies in your online store!"
600
  msgstr ""
601
 
 
 
602
  msgid "Check it out:"
603
  msgstr ""
604
 
 
605
  msgid "To translate permalinks, please activate the module Slug."
606
  msgstr ""
607
 
 
608
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
609
  msgstr ""
610
 
 
 
611
  msgid "Save draft before using extra language."
612
  msgstr ""
613
 
 
614
  msgid "Builder"
615
  msgstr "البانى"
616
 
 
617
  msgid "Сompatibility Settings"
618
  msgstr ""
619
 
620
  #. translators: ON/OFF status of WPGlobus on the edit pages.
621
  #. translators: ON/OFF status of WPGlobus on the edit pages.
 
 
622
  msgid "ON"
623
  msgstr ""
624
 
 
 
625
  msgid "Turn off"
626
  msgstr ""
627
 
 
 
628
  msgid "OFF"
629
  msgstr ""
630
 
 
 
631
  msgid "Turn on"
632
  msgstr ""
633
 
 
634
  msgid "Elementor"
635
  msgstr ""
636
 
 
637
  msgid "WPGlobus languages"
638
  msgstr ""
639
 
 
640
  msgid "current"
641
  msgstr ""
642
 
 
643
  msgid ""
644
  "WPGlobus provides multilingual support for Elementor only when the option "
645
  "%1$s%2$s%3$s is set to %4$s."
646
  msgstr ""
647
 
 
648
  msgid "Before switching the language, please save draft or publish."
649
  msgstr ""
650
 
651
  #. translators: Metabox title FOR language.
 
652
  msgctxt "filter__seo_meta_box_title"
653
  msgid "for"
654
  msgstr ""
655
 
 
656
  msgid "Page is being reloaded. Please wait..."
657
  msgstr ""
658
 
 
659
  msgid ""
660
  "Before switching the language, please save draft or publish, then reload "
661
  "page."
662
  msgstr ""
663
 
 
664
  msgid ""
665
  "WPGlobus provides multilingual support for Elementor only when the option "
666
  "`CSS Print Method` is set to `External File`."
667
  msgstr ""
668
 
 
669
  msgid "Open Elementor Settings page"
670
  msgstr ""
671
 
 
672
  msgid "WPGlobus widget"
673
  msgstr ""
674
 
 
675
  msgid "Add language switcher"
676
  msgstr "أضف مبدل اللغة"
677
 
 
678
  msgid "Flags"
679
  msgstr "أعلام"
680
 
 
681
  msgid "List"
682
  msgstr "قائمة"
683
 
 
684
  msgid "List with flags"
685
  msgstr "قائمة بالأعلام"
686
 
 
687
  msgid "Select"
688
  msgstr "تحديد"
689
 
 
690
  msgid "Select with language code"
691
  msgstr "حدد كود اللغة"
692
 
 
693
  msgid "Dropdown"
694
  msgstr "القوائم المنسدلة"
695
 
 
696
  msgid "Dropdown with flags"
697
  msgstr ""
698
 
 
699
  msgid "Selector type"
700
  msgstr ""
701
 
 
702
  msgid "You cannot disable the main language."
703
  msgstr ""
704
 
 
705
  msgid "Need a multilingual slug?"
706
  msgstr ""
707
 
 
708
  msgid "*) Available after the menu is saved."
709
  msgstr ""
710
 
 
711
  msgid "You must enable Pretty Permalinks to use WPGlobus."
712
  msgstr ""
713
 
 
714
  msgid ""
715
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
716
  "default option."
717
  msgstr ""
718
 
 
719
  msgid "Language Selector Menu Style"
720
  msgstr ""
721
 
 
 
 
722
  msgid "WPGlobus Plus"
723
  msgstr ""
724
 
 
725
  msgid "Drop-down languages menu or Flat (in one line)"
726
  msgstr ""
727
 
 
728
  msgid "Do not change"
729
  msgstr ""
730
 
 
731
  msgid "Drop-down (vertical)"
732
  msgstr ""
733
 
 
734
  msgid "Flat (horizontal)"
735
  msgstr ""
736
 
 
737
  msgid ""
738
  "If you see this message then your browser may not display the WPGlobus "
739
  "Settings panel properly. Please try another browser."
740
  msgstr ""
741
 
 
 
742
  msgid "Сompatibility"
743
  msgstr ""
744
 
745
  #. translators: placeholders for "strong" tags.
 
746
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
747
  msgstr ""
748
 
749
  #. translators: placeholders for "strong" tags.
 
750
  msgid ""
751
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
752
  "the language attributes: name, code, flag icon, etc."
753
  msgstr ""
754
 
 
755
  msgid "Important notes"
756
  msgstr ""
757
 
758
  #. translators: placeholders for "strong" tags.
 
759
  msgid "Version %1$s1.9.17%2$s "
760
  msgstr ""
761
 
762
  #. translators: placeholders for "strong" tags.
 
763
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
764
  msgstr ""
765
 
766
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
767
  msgid ""
768
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
769
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
770
  msgstr ""
771
 
772
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
773
  msgid ""
774
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
775
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
776
  msgstr ""
777
 
778
  #. translators: placeholders for "strong" tags.
 
779
  msgid "Version %1$s2.2.11%2$s "
780
  msgstr ""
781
 
 
782
  msgid "Starting from this version"
783
  msgstr ""
784
 
785
  #. translators: placeholders for "strong" tags.
 
786
  msgid ""
787
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
788
  "(CPT)."
789
  msgstr ""
790
 
791
  #. translators: placeholders for "strong" tags.
 
792
  msgid ""
793
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
794
  "the %1$s[%3$s]%2$s tab."
795
  msgstr ""
796
 
 
797
  msgid "Welcome!"
798
  msgstr "مرحباً!"
799
 
 
800
  msgid "Deactivating / Uninstalling"
801
  msgstr ""
802
 
 
803
  msgid "Uninstall"
804
  msgstr ""
805
 
 
806
  msgid "All add-ons"
807
  msgstr ""
808
 
 
809
  msgid "Mobile Menu"
810
  msgstr ""
811
 
 
812
  msgid "Language Widgets"
813
  msgstr ""
814
 
 
815
  msgid "We Recommend..."
816
  msgstr ""
817
 
 
818
  msgid ""
819
  "Our premium add-on, WPGlobus Plus, will add several features to your "
820
  "website, such as:"
821
  msgstr ""
822
 
 
823
  msgid ""
824
  "- Ability to write a post in one language and immediately publish it, not "
825
  "waiting for the translation to other languages;"
826
  msgstr ""
827
 
 
828
  msgid "- Set different URLs for each translation;"
829
  msgstr ""
830
 
 
831
  msgid ""
832
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
833
  "for each translation;"
834
  msgstr ""
835
 
 
836
  msgid "- and more..."
837
  msgstr ""
838
 
 
 
 
839
  msgid "Click here to download"
840
  msgstr ""
841
 
 
842
  msgid ""
843
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
844
  "translate your blog posts and pages to many languages."
845
  msgstr ""
846
 
 
847
  msgid "The next step is to translate your WooCommerce-based store!"
848
  msgstr ""
849
 
 
850
  msgid ""
851
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
852
  "translate product titles and descriptions, categories, tags and attributes."
853
  msgstr ""
854
 
 
855
  msgid "Multi-currency"
856
  msgstr ""
857
 
 
858
  msgid ""
859
  "Your WooCommerce-powered store is set to show prices and accept payments in "
860
  "a single currency only."
861
  msgstr ""
862
 
 
863
  msgid ""
864
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
865
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
867
  "positioning for global growth!"
868
  msgstr ""
869
 
 
870
  msgid ""
871
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
872
  "re-calculating prices on-the-fly."
873
  msgstr ""
874
 
 
875
  msgid "WPGlobus Premium Add-ons"
876
  msgstr ""
877
 
 
878
  msgid ""
879
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
880
  "you will be able to:"
881
  msgstr ""
882
 
 
883
  msgid ""
884
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
885
  "моя-страница and so on);"
886
  msgstr ""
887
 
 
888
  msgid ""
889
  "Postpone translation to some languages and <strong>publish only the "
890
  "translated texts</strong>;"
891
  msgstr ""
892
 
 
893
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
894
  msgstr ""
895
 
 
896
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
897
  msgstr ""
898
 
 
899
  msgid ""
900
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
901
  "strong>;"
902
  msgstr ""
903
 
 
904
  msgid "...and more."
905
  msgstr ""
906
 
 
907
  msgid "Click here to visit the WPGlobus Store"
908
  msgstr ""
909
 
 
910
  msgid "Select a language"
911
  msgstr "حدد لغة"
912
 
913
  #. translators: %3$s placeholder for the icon (actual picture).
 
914
  msgid ""
915
  "Place the %1$smain language%2$s of your site at the top of the list by "
916
  "dragging the %3$s icons."
917
  msgstr ""
918
 
919
  #. translators: placeholders for the "strong" HTML tags.
 
920
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
921
  msgstr ""
922
 
923
  #. translators: placeholders for the "strong" HTML tags.
 
924
  msgid "%1$sAdd%2$s more languages using the section below."
925
  msgstr ""
926
 
 
927
  msgid "When done, click the [Save Changes] button."
928
  msgstr ""
929
 
930
  #. translators: %s - placeholder for the "Save Changes" button text.
 
931
  msgid "Press the %s button to confirm."
932
  msgstr ""
933
 
934
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
 
935
  msgid "-- none --"
936
  msgstr ""
937
 
 
938
  msgid "All menus"
939
  msgstr ""
940
 
 
941
  msgid "Instructions:"
942
  msgstr "تعليمات:"
943
 
 
944
  msgid "(Found in some themes)"
945
  msgstr ""
946
 
 
947
  msgid "Enable"
948
  msgstr "مُفعّل"
949
 
 
950
  msgid "Languages table"
951
  msgstr "لائحة اللغات"
952
 
 
953
  msgid "Use this table to add, edit or delete languages."
954
  msgstr "إستخدم هذه اللأئحة لكي تضيف،تعدل أو تزيل اللغات."
955
 
 
956
  msgid "NOTE: you cannot remove the main language."
957
  msgstr "ملحوظة: لا يمكنك مسح اللغة الرئيسية."
958
 
 
959
  msgid "WPGlobus is enabled on these Post Types"
960
  msgstr ""
961
 
 
962
  msgid "Uncheck to disable"
963
  msgstr ""
964
 
 
965
  msgid ""
966
  "Please note that there are post types, which status is managed by other "
967
  "plugins and cannot be changed here."
968
  msgstr ""
969
 
 
970
  msgid "Post Types"
971
  msgstr ""
972
 
 
973
  msgid ""
974
  "You should put here only the code provided by WPGlobus Support. Do not write "
975
  "anything else in the sections below as it might break the functionality of "
976
  "your website!"
977
  msgstr ""
978
 
 
979
  msgid "Custom Code"
980
  msgstr ""
981
 
 
 
 
982
  msgid "Enabled"
983
  msgstr "مفعل"
984
 
 
985
  msgid "Builders support"
986
  msgstr ""
987
 
 
988
  msgid "Builder mode is enabled on these Post Types"
989
  msgstr ""
990
 
 
991
  msgid "Old fashioned language switcher"
992
  msgstr ""
993
 
 
994
  msgid "Block Editor"
995
  msgstr ""
996
 
 
997
  msgid "Block Editor Options"
998
  msgstr ""
999
 
 
1000
  msgid ""
1001
  "With the current settings, you will see the following lines in the section "
1002
  "HEAD of your site pages"
1003
  msgstr ""
1004
 
 
1005
  msgid "(example for two languages)"
1006
  msgstr ""
1007
 
 
1008
  msgid ""
1009
  "Tell search engines about localized versions of your pages using the "
1010
  "hreflang tag"
1011
  msgstr ""
1012
 
 
1013
  msgid "Output the hreflang tag as"
1014
  msgstr ""
1015
 
 
1016
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1017
  msgstr ""
1018
 
 
1019
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1020
  msgstr ""
1021
 
 
1022
  msgid "Language code only (en, ru, etc.)"
1023
  msgstr ""
1024
 
 
1025
  msgid "Use the code `x-default` for the main language"
1026
  msgstr ""
1027
 
 
1028
  msgid "Multilingual SEO"
1029
  msgstr ""
1030
 
 
1031
  msgid "Multilingual SEO Options"
1032
  msgstr ""
1033
 
 
1034
  msgid ""
1035
  "With WPGlobus, you can get translations for posts and pages using REST API."
1036
  msgstr ""
1037
 
 
 
 
 
1038
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1039
  msgstr ""
1040
 
 
1041
  msgid ""
1042
  "For demonstration, you can try the first post that WordPress creates at the "
1043
  "initial installation."
1044
  msgstr ""
1045
 
 
1046
  msgid ""
1047
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1048
  "information."
1049
  msgstr ""
1050
 
 
1051
  msgid ""
1052
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1053
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1054
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1055
  msgstr ""
1056
 
 
1057
  msgid "Description:"
1058
  msgstr ""
1059
 
 
 
1060
  msgid "REST API"
1061
  msgstr ""
1062
 
 
1063
  msgid "Translate strings"
1064
  msgstr ""
1065
 
 
1066
  msgid "item"
1067
  msgstr "عنصر"
1068
 
 
1069
  msgid "items"
1070
  msgstr "عناصر"
1071
 
 
1072
  msgid "Code"
1073
  msgstr "رمز"
1074
 
 
1075
  msgid "Edit"
1076
  msgstr "تعديل"
1077
 
 
1078
  msgid "Delete"
1079
  msgstr "محو"
1080
 
 
1081
  msgid "File"
1082
  msgstr "ملف"
1083
 
 
1084
  msgid "Flag"
1085
  msgstr "اشارة بعلم"
1086
 
 
1087
  msgid "Language name"
1088
  msgstr "أسم اللغة"
1089
 
 
1090
  msgid "English language name"
1091
  msgstr "أسم اللغة بالإنجليزية"
1092
 
 
1093
  msgid "No items found"
1094
  msgstr "لم يتم العثور على شيء"
1095
 
 
1096
  msgid "Add new Language"
1097
  msgstr "أضف لغة جديدة"
1098
 
 
1099
  msgid "No items of this type were found."
1100
  msgstr "لم يتم العثور على عناصر من هذا النوع."
1101
 
 
1102
  msgid "Select an item"
1103
  msgstr "اختر عنصر"
1104
 
 
1105
  msgid "Multilingual support of this add-on is currently in Beta stage."
1106
  msgstr ""
1107
 
 
1108
  msgid "We do not recommend using it on production sites."
1109
  msgstr ""
1110
 
 
1111
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1112
  msgstr ""
1113
 
 
1114
  msgid "WordPress version"
1115
  msgstr ""
1116
 
 
1117
  msgid "In the WordPress core"
1118
  msgstr ""
1119
 
 
1120
  msgid "Core"
1121
  msgstr ""
1122
 
 
 
1123
  msgid "Current version"
1124
  msgstr ""
1125
 
 
 
1126
  msgid "Stage"
1127
  msgstr ""
1128
 
 
 
1129
  msgid "Status"
1130
  msgstr "الحالة"
1131
 
 
1132
  msgid "Block editor"
1133
  msgstr ""
1134
 
 
1135
  msgid "production"
1136
  msgstr ""
1137
 
 
1138
  msgid "List of supported add-ons"
1139
  msgstr ""
1140
 
 
1141
  msgid "Add-on"
1142
  msgstr ""
1143
 
 
1144
  msgid "Supported minimum version"
1145
  msgstr ""
1146
 
 
1147
  msgid "Not installed"
1148
  msgstr ""
1149
 
 
1150
  msgid "Installed, inactive"
1151
  msgstr ""
1152
 
 
1153
  msgid "Active"
1154
  msgstr "فعال"
1155
 
 
1156
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1157
  msgstr ""
1158
 
 
1159
  msgid "However, some themes do not follow all WordPress standards strictly."
1160
  msgstr ""
1161
 
 
1162
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1163
  msgstr ""
1164
 
 
1165
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1166
  msgstr ""
1167
 
 
1168
  msgid ""
1169
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1170
  "With those themes, WPGlobus Customizer is switched off by default"
1171
  msgstr ""
1172
 
 
1173
  msgid "The currently active theme is"
1174
  msgstr ""
1175
 
 
1176
  msgid "In the current version, WPGlobus Customizer does not support"
1177
  msgstr ""
1178
 
 
1179
  msgid "translation of the navigation menus"
1180
  msgstr ""
1181
 
 
1182
  msgid "to translate, please go to"
1183
  msgstr ""
1184
 
 
1185
  msgid "Go to Customizer"
1186
  msgstr ""
1187
 
 
1188
  msgid "is undefined"
1189
  msgstr ""
1190
 
 
1191
  msgid "is set to"
1192
  msgstr ""
1193
 
 
1194
  msgid "by adding to the file wp-config.php"
1195
  msgstr ""
1196
 
 
1197
  msgid "now"
1198
  msgstr ""
1199
 
 
1200
  msgid "We rely on your support!"
1201
  msgstr "نحن نعتمد علي دعمك لنا!"
1202
 
 
1203
  msgid "Please consider a small donation to support the future development."
1204
  msgstr "من فضلك فكر في تبرع بنسبة بسيطة لدعم التطوير في المستقبل."
1205
 
 
1206
  msgid "Thank you!"
1207
  msgstr "شكراً لك!"
1208
 
 
1209
  msgid "WPGlobus Plus!"
1210
  msgstr ""
1211
 
 
1212
  msgid ""
1213
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1214
  "separate publishing and more! "
1215
  msgstr ""
1216
 
 
1217
  msgid "Get WPGlobus Plus now!"
1218
  msgstr "أحصل علي WPGlobus الأضافي الأن!"
1219
 
 
1220
  msgid ""
1221
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1222
  "the current version."
1223
  msgstr ""
1224
 
 
1225
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1226
  msgstr ""
1227
 
 
1228
  msgid "WPGlobus warning: "
1229
  msgstr ""
1230
 
 
1231
  msgid "https://github.com/WPGlobus/WPGlobus"
1232
  msgstr "https://github.com/WPGlobus/WPGlobus"
1233
 
 
1234
  msgid ""
1235
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1236
  "widgets and even custom fields - in multiple languages!"
1237
  msgstr ""
1238
 
 
1239
  msgid "https://wpglobus.com/"
1240
  msgstr "https://wpglobus.com/"
languages/wpglobus-be.po CHANGED
@@ -18,44 +18,25 @@ msgstr ""
18
  "%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
19
  "%100>=11 && n%100<=14)? 2 : 3);\n"
20
 
21
- #: includes/admin/central/class-wpglobus-admin-central.php:122,
22
- #: includes/admin/class-wpglobus-about.php:42,
23
- #: includes/admin/class-wpglobus-about.php:117,
24
- #: includes/admin/class-wpglobus-clean.php:600,
25
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
26
  msgid "Guide"
27
  msgstr "Инструкция"
28
 
29
- #: includes/admin/central/class-wpglobus-admin-central.php:142,
30
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
31
  msgid "WPGlobus Help Desk"
32
  msgstr "Поддержка"
33
 
34
- #: includes/admin/central/class-wpglobus-admin-central.php:157,
35
- #: includes/admin/class-wpglobus-about.php:36,
36
- #: includes/admin/class-wpglobus-admin-menu.php:22,
37
- #: includes/admin/class-wpglobus-clean.php:606,
38
- #: includes/admin/class-wpglobus-customize-options.php:1293,
39
- #: includes/admin/class-wpglobus-customize-options.php:1261,
40
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
41
  msgid "Add-ons"
42
  msgstr "Расширения"
43
 
44
- #: includes/admin/class-wpglobus-about.php:26
45
  msgid "Quick Start"
46
  msgstr "Быстрый Старт"
47
 
48
- #: includes/admin/class-wpglobus-about.php:48,
49
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
50
  msgid "FAQ"
51
  msgstr "ЧаВо"
52
 
53
- #: includes/admin/class-wpglobus-about.php:59
54
  msgid ""
55
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
56
  msgstr "Внимание: расширение PHP Multibyte String (`mbstring`) не загружено!"
57
 
58
- #: includes/admin/class-wpglobus-about.php:60
59
  msgid ""
60
  "The mbstring extension is required for the full UTF-8 compatibility and "
61
  "better performance. Without it, some parts of WordPress and WPGlobus may "
@@ -67,19 +48,15 @@ msgstr ""
67
  "WPGlobus могут функционировать некорректно. Пожалуйста, сообщите вашему "
68
  "провайдеру или системному администратору (вебмастеру)."
69
 
70
- #: includes/admin/class-wpglobus-about.php:87
71
  msgid "Go to WPGlobus Settings"
72
  msgstr "Перейдите в настройки WPGlobus"
73
 
74
- #: includes/admin/class-wpglobus-about.php:98
75
  msgid "Easy as 1-2-3:"
76
  msgstr "Просто, как 1-2-3:"
77
 
78
- #: includes/admin/class-wpglobus-about.php:101
79
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
80
  msgstr "Войдите в меню администратора WPGlobus и выберите страны и языки;"
81
 
82
- #: includes/admin/class-wpglobus-about.php:102
83
  msgid ""
84
  "Enter the translations to the posts, pages, categories, tags and menus using "
85
  "a clean and simple interface."
@@ -87,7 +64,6 @@ msgstr ""
87
  "Введите переводы записей, страниц, категорий, меток и меню, используя "
88
  "простой и удобный интерфейс."
89
 
90
- #: includes/admin/class-wpglobus-about.php:103
91
  msgid ""
92
  "Switch languages at the front-end using a drop-down menu with language names "
93
  "and country flags."
@@ -95,33 +71,26 @@ msgstr ""
95
  "Переключайте языки, используя раскрывающееся меню с их названиями и флагами "
96
  "стран."
97
 
98
- #: includes/admin/class-wpglobus-about.php:111
99
  msgid "Links:"
100
  msgstr "Ссылки:"
101
 
102
- #: includes/admin/class-wpglobus-about.php:119
103
  msgid "FAQs"
104
  msgstr "Вопросы и ответы"
105
 
106
- #: includes/admin/class-wpglobus-about.php:121
107
  msgid "Contact Us"
108
  msgstr "Обратная связь"
109
 
110
- #: includes/admin/class-wpglobus-about.php:123
111
  msgid "Please give us 5 stars!"
112
  msgstr "Пожалуйста, поставьте нам 5 звездочек!"
113
 
114
- #: includes/admin/class-wpglobus-about.php:133
115
  msgid "WPGlobus does not translate texts automatically!"
116
  msgstr "WPGlobus не делает автоматические переводы текста!"
117
 
118
- #: includes/admin/class-wpglobus-about.php:136
119
  msgid ""
120
  "There are many translation companies and individual translators who can help "
121
  "you write and proofread the texts."
122
  msgstr "Вы можете воспользоваться услугами профессиональных переводчиков."
123
 
124
- #: includes/admin/class-wpglobus-about.php:137
125
  msgid ""
126
  "When you choose a translator, please look at their native language, country "
127
  "of residence, specialization and knowledge of WordPress."
@@ -130,7 +99,6 @@ msgstr ""
130
  "специализацию и знание ВордПресс."
131
 
132
  #. translators: %s are used to insert HTML link. Keep them in place.
133
- #: includes/admin/class-wpglobus-about.php:143
134
  msgid ""
135
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
136
  "website. This is not an endorsement, just a courtesy. Please contact them "
@@ -140,11 +108,9 @@ msgstr ""
140
  "воспринимайте это как конкретную рекомендацию! Свяжитесь с переводчиками "
141
  "напрямую и потом расскажите нам, довольны ли Вы результатом."
142
 
143
- #: includes/admin/class-wpglobus-about.php:154
144
  msgid "Important notes:"
145
  msgstr "Важная информация:"
146
 
147
- #: includes/admin/class-wpglobus-about.php:159
148
  msgid ""
149
  "WPGlobus only supports the localization URLs in the form of <code>example."
150
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
@@ -155,13 +121,11 @@ msgstr ""
155
  "example.com</code> и языковые параметры в УРЛах <code>example.com?lang=xx</"
156
  "code>."
157
 
158
- #: includes/admin/class-wpglobus-about.php:162
159
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
160
  msgstr ""
161
  "Некоторые темы и плагины <strong>не полностью поддерживают многоязычный "
162
  "режим</strong>."
163
 
164
- #: includes/admin/class-wpglobus-about.php:163
165
  msgid ""
166
  "They might display some texts with no translation, or with all languages "
167
  "mixed together."
@@ -170,7 +134,6 @@ msgstr ""
170
  "разные языки."
171
 
172
  #. translators: %s are used to insert HTML link. Keep them in place.
173
- #: includes/admin/class-wpglobus-about.php:167
174
  msgid ""
175
  "Please contact the theme / plugin author. If they are unable to assist, "
176
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
@@ -179,40 +142,30 @@ msgstr ""
179
  "рассмотрите возможность %s дать заказ команде разработчиков WPGlobus %s на "
180
  "написание кода специально для Вас."
181
 
182
- #: includes/admin/class-wpglobus-admin-bar-menu.php:124
183
  msgid "Language was set on your profile page"
184
  msgstr ""
185
 
186
- #: includes/admin/class-wpglobus-admin-bar-menu.php:194
187
  msgid "Add"
188
  msgstr "Добавить"
189
 
190
- #: includes/admin/class-wpglobus-admin-page.php:32,
191
- #: includes/admin/class-wpglobus-clean.php:585
192
  msgid "Multilingual Everything!"
193
  msgstr "Всё - на всех языках!"
194
 
195
- #: includes/admin/class-wpglobus-admin-page.php:34,
196
- #: includes/admin/class-wpglobus-clean.php:588
197
  msgid ""
198
  "WPGlobus is a family of WordPress plugins assisting you in making "
199
  "multilingual WordPress blogs and sites."
200
  msgstr ""
201
  "WPGlobus - это коллекция плагинов ВордПресс для создания многоязычных сайтов."
202
 
203
- #: includes/admin/class-wpglobus-clean.php:232
204
  msgid "Remove the WPGlobus settings (not recommended)"
205
  msgstr "Удалить настройки WPGlobus (не рекомендуется)"
206
 
207
- #: includes/admin/class-wpglobus-clean.php:595
208
  msgid "Clean-up Tool"
209
  msgstr "Программа очистки"
210
 
211
- #: includes/admin/class-wpglobus-clean.php:609
212
  msgid "Support"
213
  msgstr "Поддержка"
214
 
215
- #: includes/admin/class-wpglobus-clean.php:614
216
  msgid ""
217
  "WARNING: this operation is non-reversible. It is strongly recommended that "
218
  "you backup your database before proceeding."
@@ -220,7 +173,6 @@ msgstr ""
220
  "Предупреждение: эта операция является необратимой. Настоятельно рекомендуем "
221
  "сделать резервную копию базы данных перед продолжением."
222
 
223
- #: includes/admin/class-wpglobus-clean.php:619
224
  msgid ""
225
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
226
  "By running it, you will remove ALL translations you have entered to your "
@@ -236,7 +188,6 @@ msgstr ""
236
  "обнаружите пустые заголовки, отсутствие контента страниц, пустые комментарии "
237
  "и тому подобное."
238
 
239
- #: includes/admin/class-wpglobus-clean.php:622
240
  msgid ""
241
  "Make sure that your active theme does not have any code related to WPGlobus. "
242
  "Such code could be added by you or by a 3rd party developer. If that code "
@@ -245,21 +196,17 @@ msgid ""
245
  msgstr ""
246
 
247
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
248
- #: includes/admin/class-wpglobus-clean.php:630
249
  msgid ""
250
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
251
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
252
  msgstr ""
253
 
254
- #: includes/admin/class-wpglobus-clean.php:641
255
  msgid "You are about to clean the content of the following database tables:"
256
  msgstr "Программа выполнит очистку следующих таблиц базы данных:"
257
 
258
- #: includes/admin/class-wpglobus-clean.php:649
259
  msgid "The operations log"
260
  msgstr "Журнал операций"
261
 
262
- #: includes/admin/class-wpglobus-clean.php:652
263
  msgid ""
264
  "We are going to write a detailed log of all the database changes performed. "
265
  "It should help in the case you need to restore something important. The log "
@@ -269,7 +216,6 @@ msgstr ""
269
  "в случае, если Вам потребуется восстановить что-то важное. Журнал будет "
270
  "записываться в файл:"
271
 
272
- #: includes/admin/class-wpglobus-clean.php:662
273
  msgid ""
274
  "Uncheck if you do not want to write the operations log (we recommend to keep "
275
  "it checked)"
@@ -277,15 +223,12 @@ msgstr ""
277
  "Снимите флажок, если Вы не хотите записывать операции в журнал (мы "
278
  "рекомендуем оставить запись включённой)"
279
 
280
- #: includes/admin/class-wpglobus-clean.php:667
281
  msgid "You have been warned..."
282
  msgstr "Вы уверены, что готовы продолжить?"
283
 
284
- #: includes/admin/class-wpglobus-clean.php:669
285
  msgid "Please confirm by checking the box below:"
286
  msgstr "Пожалуйста, подтвердите, установив флажок ниже:"
287
 
288
- #: includes/admin/class-wpglobus-clean.php:671
289
  msgid ""
290
  "I have read and understood everything written on this page. I am aware that "
291
  "by using this tool I may loose some content of my website. I have made a "
@@ -298,151 +241,98 @@ msgstr ""
298
  "восстановить её в случае необходимости. Я полностью несу ответственность за "
299
  "результат."
300
 
301
- #: includes/admin/class-wpglobus-clean.php:674
302
  msgid "YES, I CONFIRM"
303
  msgstr "ДА, Я ПОДТВЕРЖДАЮ"
304
 
305
- #: includes/admin/class-wpglobus-clean.php:678
306
  msgid "Process with the Clean-up"
307
  msgstr "Запустить программу очистки"
308
 
309
- #: includes/admin/class-wpglobus-customize-options.php:73,
310
- #: includes/admin/class-wpglobus-customize-options.php:100,
311
- #: includes/admin/class-wpglobus-customize-options.php:145,
312
- #: includes/admin/class-wpglobus-customize-options.php:183
313
  msgid "Default"
314
  msgstr "По умолчанию"
315
 
316
- #: includes/admin/class-wpglobus-customize-options.php:264
317
  msgid "Section"
318
  msgstr "Раздел"
319
 
320
- #: includes/admin/class-wpglobus-customize-options.php:277
321
  msgid "Show all sections"
322
  msgstr "Показать все разделы"
323
 
324
- #: includes/admin/class-wpglobus-customize-options.php:279
325
  msgid "Save &amp; Reload"
326
  msgstr "Сохранить и перезагрузить"
327
 
328
- #: includes/admin/class-wpglobus-customize-options.php:553,
329
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:585,
330
- #: includes/class-wpglobus.php:1284, wpglobus.php:12, wpglobus.php:18
331
  msgid "WPGlobus"
332
  msgstr "WPGlobus"
333
 
334
- #: includes/admin/class-wpglobus-customize-options.php:604
335
  msgid ""
336
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
337
  msgstr "Этот раздел доступен в WordPress версии 4.5 и выше."
338
 
339
- #: includes/admin/class-wpglobus-customize-options.php:610
340
  msgid "Fields Settings"
341
  msgstr "Настройки полей"
342
 
343
- #: includes/admin/class-wpglobus-customize-options.php:655
344
  msgid "WPGlobus Settings"
345
  msgstr "Настройки WPGlobus"
346
 
347
- #: includes/admin/class-wpglobus-customize-options.php:723
348
  msgid "Help"
349
  msgstr "Дапамога"
350
 
351
- #: includes/admin/class-wpglobus-customize-options.php:745,
352
- #: includes/options/class-wpglobus-options.php:1176
353
  msgid "Languages"
354
  msgstr "Языки"
355
 
356
- #: includes/admin/class-wpglobus-customize-options.php:765,
357
- #: includes/options/class-wpglobus-options.php:1189
358
  msgid "Enabled Languages"
359
  msgstr "Установленные языки"
360
 
361
- #: includes/admin/class-wpglobus-customize-options.php:767,
362
- #: includes/options/class-wpglobus-options.php:1190
363
  msgid "These languages are currently enabled on your site."
364
  msgstr "Эти языки включены в настоящее время на вашем сайте."
365
 
366
- #: includes/admin/class-wpglobus-customize-options.php:795,
367
- #: includes/options/class-wpglobus-options.php:1148
368
  msgid "Choose a language you would like to enable."
369
  msgstr ""
370
 
371
- #: includes/admin/class-wpglobus-customize-options.php:797
372
  msgid "Press the [Save & Publish] button to confirm."
373
  msgstr ""
374
 
375
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
376
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
377
- #: includes/admin/class-wpglobus-customize-options.php:801,
378
- #: includes/options/class-wpglobus-options.php:1154
379
  msgid "or Add new Language %1$s here %2$s"
380
  msgstr "или добавьте новый язык %1$s здесь %2$s"
381
 
382
- #: includes/admin/class-wpglobus-customize-options.php:813,
383
- #: includes/options/class-wpglobus-options.php:1203
384
  msgid "Add Languages"
385
  msgstr "Добавить языки"
386
 
387
- #: includes/admin/class-wpglobus-customize-options.php:833,
388
- #: includes/options/class-wpglobus-options.php:1211
389
  msgid "Language Selector Mode"
390
  msgstr "Способ показа переключателей "
391
 
392
- #: includes/admin/class-wpglobus-customize-options.php:838,
393
- #: includes/options/class-wpglobus-options.php:1214
394
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
395
  msgstr "Двухбуквенный код (en, ru, it, и т.п.) и флаг"
396
 
397
- #: includes/admin/class-wpglobus-customize-options.php:839,
398
- #: includes/options/class-wpglobus-options.php:1215
399
  msgid "Full Name (English, Russian, Italian, etc.)"
400
  msgstr "Полное название (English, Russian, Italian, и т.п.)"
401
 
402
- #: includes/admin/class-wpglobus-customize-options.php:841,
403
- #: includes/options/class-wpglobus-options.php:1216
404
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
405
  msgstr "Полное название (English, Russian, Italian, и т.п.) и флаг"
406
 
407
- #: includes/admin/class-wpglobus-customize-options.php:842,
408
- #: includes/options/class-wpglobus-options.php:1217
409
  msgid "Flags only"
410
  msgstr "Только флаги"
411
 
412
- #: includes/admin/class-wpglobus-customize-options.php:844,
413
- #: includes/options/class-wpglobus-options.php:1212
414
  msgid ""
415
  "Choose the way language name and country flag are shown in the drop-down menu"
416
  msgstr "Выберите способ показа названий языков и флагов в навигационном меню"
417
 
418
- #: includes/admin/class-wpglobus-customize-options.php:879
419
  msgid "select navigation menu"
420
  msgstr ""
421
 
422
- #: includes/admin/class-wpglobus-customize-options.php:915,
423
- #: includes/admin/class-wpglobus-customize-options.php:888,
424
- #: includes/options/class-wpglobus-options.php:1230
425
  msgid "Language Selector Menu"
426
  msgstr "Навигационное меню"
427
 
428
- #: includes/admin/class-wpglobus-customize-options.php:920,
429
- #: includes/admin/class-wpglobus-customize-options.php:899,
430
- #: includes/options/class-wpglobus-options.php:1231
431
  msgid "Choose the navigation menu where the language selector will be shown"
432
  msgstr ""
433
  "Выберите навигационное меню, в котором будет показан переключатель языков"
434
 
435
- #: includes/admin/class-wpglobus-customize-options.php:898
436
  msgid "No menus have been created yet. Create some."
437
  msgstr "Ни одного меню ещё не создано. Создайте."
438
 
439
- #: includes/admin/class-wpglobus-customize-options.php:940,
440
- #: includes/options/class-wpglobus-options.php:1241
441
  msgid "\"All Pages\" menus Language selector"
442
  msgstr "Переключатель языка в меню «Все страницы»"
443
 
444
- #: includes/admin/class-wpglobus-customize-options.php:943,
445
- #: includes/options/class-wpglobus-options.php:1243
446
  msgid ""
447
  "Adds language selector to the menus that automatically list all existing "
448
  "pages (using `wp_list_pages`)"
@@ -450,12 +340,9 @@ msgstr ""
450
  "Добавить переключатель языка в меню, которые автоматически показывают список "
451
  "всех страниц (с использованием `wp_list_pages`)"
452
 
453
- #: includes/admin/class-wpglobus-customize-options.php:960,
454
- #: includes/options/class-wpglobus-options.php:1356
455
  msgid "Custom CSS"
456
  msgstr "Пользовательский CSS"
457
 
458
- #: includes/admin/class-wpglobus-customize-options.php:964
459
  msgid ""
460
  "Here you can enter the CSS rules to adjust the language selector menu for "
461
  "your theme. Look at the examples in the `style-samples.css` file."
@@ -463,31 +350,21 @@ msgstr ""
463
  "Сюда Вы можете поместить набор правил CSS для тонкой настройки меню выбора "
464
  "языков. Примеры для стандартных тем можно найти в файле `style-samples.css`."
465
 
466
- #: includes/admin/class-wpglobus-customize-options.php:983
467
  msgid "Post types"
468
  msgstr "Типы записей"
469
 
470
- #: includes/admin/class-wpglobus-customize-options.php:1091
471
  msgid "Uncheck to disable WPGlobus"
472
  msgstr "Снимите флажок, чтобы отключить WPGlobus"
473
 
474
- #: includes/admin/class-wpglobus-customize-options.php:1125,
475
- #: includes/options/class-wpglobus-options.php:1424
476
  msgid "Redirect"
477
  msgstr "Перенаправление"
478
 
479
- #: includes/admin/class-wpglobus-customize-options.php:1150,
480
- #: includes/options/class-wpglobus-options.php:1419
481
  msgid "Choose the language automatically, based on:"
482
  msgstr "Выбрать язык автоматически, учитывая:"
483
 
484
- #: includes/admin/class-wpglobus-customize-options.php:1152,
485
- #: includes/options/class-wpglobus-options.php:1409
486
  msgid "Preferred language set in the browser"
487
  msgstr "Язык, указанный как предпочтительный в настройках браузера"
488
 
489
- #: includes/admin/class-wpglobus-customize-options.php:1153,
490
- #: includes/options/class-wpglobus-options.php:1396
491
  msgid ""
492
  "When a user comes to the site for the first time, try to find the best "
493
  "matching language version of the page."
@@ -495,45 +372,32 @@ msgstr ""
495
  "Когда посетитель попадает на сайт в первый раз, попытаться выбрать язык "
496
  "страницы автоматически."
497
 
498
- #: includes/admin/class-wpglobus-customize-options.php:1214,
499
- #: includes/admin/class-wpglobus-customize-options.php:1234,
500
- #: includes/admin/class-wpglobus-customize-options.php:1192,
501
- #: includes/options/class-wpglobus-options.php:1368
502
  msgid "Custom JS Code"
503
  msgstr "Пользовательский JS"
504
 
505
- #: includes/admin/class-wpglobus-customize-options.php:1232,
506
- #: includes/admin/class-wpglobus-customize-options.php:1276
507
  msgid "Title"
508
  msgstr "Заголовок"
509
 
510
- #: includes/admin/class-wpglobus-customize-options.php:1235
511
  msgid "(Paste your JS code here.)"
512
  msgstr "(Поместите сюда JS код.)"
513
 
514
- #: includes/admin/class-wpglobus-customize-options.php:1184
515
  msgid ""
516
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
517
  "version 4.9 or later."
518
  msgstr ""
519
 
520
- #: includes/admin/class-wpglobus-customize-options.php:1186
521
  msgid "With your version of WordPress, please use the"
522
  msgstr ""
523
 
524
- #: includes/admin/class-wpglobus-customize-options.php:1188
525
  msgid "WPGlobus Settings page"
526
  msgstr ""
527
 
528
- #: includes/admin/class-wpglobus-customize-options.php:1277
529
  msgid "Label"
530
  msgstr "Метка"
531
 
532
- #: includes/admin/class-wpglobus-customize-options.php:1281
533
  msgid "Description"
534
  msgstr "Описание"
535
 
536
- #: includes/admin/class-wpglobus-customize-options.php:1345
537
  msgid ""
538
  "Here you can specify which fields should be considered multilingual by "
539
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
@@ -542,23 +406,16 @@ msgstr ""
542
  "обрабатываться WPGlobus. Чтобы исключить поле, снимите отметку и нажмите "
543
  "кнопку сохранения внизу."
544
 
545
- #: includes/admin/class-wpglobus-customize-options.php:1351,
546
- #: includes/options/class-wpglobus-options.php:608
547
  msgid "Thank you for installing WPGlobus!"
548
  msgstr "Спасибо за то, что Вы установили плагин WPGlobus!"
549
 
550
- #: includes/admin/class-wpglobus-customize-options.php:1355,
551
- #: includes/options/class-wpglobus-options.php:612
552
  msgid "Read About WPGlobus"
553
  msgstr "Подробно о WPGlobus"
554
 
555
- #: includes/admin/class-wpglobus-customize-options.php:1358
556
  msgid ""
557
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
558
  msgstr "Настройки плагина находятся в разделе <strong>[Языки]</strong>."
559
 
560
- #: includes/admin/class-wpglobus-customize-options.php:1363,
561
- #: includes/options/class-wpglobus-options.php:648
562
  msgid ""
563
  "Should you have any questions or comments, please do not hesitate to contact "
564
  "us."
@@ -566,21 +423,14 @@ msgstr ""
566
  "Если у Вас есть вопросы или замечания, пожалуйста, обращайтесь к нам за "
567
  "поддержкой."
568
 
569
- #: includes/admin/class-wpglobus-customize-options.php:1367,
570
- #: includes/options/class-wpglobus-options.php:652
571
  msgid "Sincerely Yours,"
572
  msgstr "С Уважением,"
573
 
574
- #: includes/admin/class-wpglobus-customize-options.php:1369,
575
- #: includes/options/class-wpglobus-options.php:654,
576
- #: includes/options/wpglobus-options-header.php:34
577
  msgid "The WPGlobus Team"
578
  msgstr "Команда WPGlobus"
579
 
580
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
581
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
582
- #: includes/admin/class-wpglobus-customize-options.php:1388,
583
- #: includes/options/class-wpglobus-options.php:689
584
  msgid ""
585
  "We would hate to see you go. If something goes wrong, do not uninstall "
586
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
@@ -588,8 +438,6 @@ msgstr ""
588
  "Обнаружили проблему в WPGlobus? Не торопитесь удалять плагин. Пожалуйста "
589
  "%1$sобратитесь к нам%2$s и позвольте Вам помочь!"
590
 
591
- #: includes/admin/class-wpglobus-customize-options.php:1395,
592
- #: includes/options/class-wpglobus-options.php:696
593
  msgid ""
594
  "Please note that if you deactivate WPGlobus, your site will show all the "
595
  "languages together, mixed up. You will need to remove all translations, "
@@ -601,8 +449,6 @@ msgstr ""
601
 
602
  #. translators: %s: link to the Clean-up Tool
603
  #. translators: %s: link to the Clean-up Tool.
604
- #: includes/admin/class-wpglobus-customize-options.php:1400,
605
- #: includes/options/class-wpglobus-options.php:700
606
  msgid ""
607
  "If there are just a few places, you should edit them manually. To "
608
  "automatically remove all translations at once, you can use the %s. WARNING: "
@@ -616,180 +462,132 @@ msgstr ""
616
 
617
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
618
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
619
- #: includes/admin/class-wpglobus-customize-options.php:1403,
620
- #: includes/options/class-wpglobus-options.php:677
621
  msgid "%1$sClean-up Tool%2$s"
622
  msgstr "%1$sПрограмму очистки%2$s"
623
 
624
  #. translators: %s: name of current theme
625
- #: includes/admin/class-wpglobus-customize-options.php:1415
626
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
627
  msgstr "Извините, тема %s не поддерживается WPGlobus."
628
 
629
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
630
- #: includes/admin/class-wpglobus-customize-options.php:1421
631
  msgid "Please use %1$sWPGlobus options page%2$s instead."
632
  msgstr "Пожалуйста, используйте %1$sпанель настроек WPGlobus%2$s."
633
 
634
- #: includes/admin/class-wpglobus-customize-options.php:1485
635
  msgid "Expand/Shrink"
636
  msgstr ""
637
 
638
- #: includes/admin/class-wpglobus-dashboard-news.php:43,
639
- #: includes/admin/class-wpglobus-dashboard-news.php:59
640
  msgid "WPGlobus News"
641
  msgstr "Новости WPGlobus"
642
 
643
- #: includes/admin/class-wpglobus-language-edit.php:197,
644
- #: includes/admin/class-wpglobus-language-edit.php:192
645
  msgid "Options updated"
646
  msgstr "Настройки сохранены"
647
 
648
- #: includes/admin/class-wpglobus-language-edit.php:272
649
  msgid "Please enter a language code!"
650
  msgstr "Пожалуйста, введите код языка!"
651
 
652
- #: includes/admin/class-wpglobus-language-edit.php:276
653
  msgid "Language code already exists!"
654
  msgstr "Такой код языка уже существует!"
655
 
656
- #: includes/admin/class-wpglobus-language-edit.php:280
657
  msgid "Please specify the language flag!"
658
  msgstr "Пожалуйста, укажите флаг для языка!"
659
 
660
- #: includes/admin/class-wpglobus-language-edit.php:284
661
  msgid "Please enter the language name!"
662
  msgstr "Пожалуйста, введите название языка!"
663
 
664
- #: includes/admin/class-wpglobus-language-edit.php:288
665
  msgid "Please enter the language name in English!"
666
  msgstr "Пожалуйста, введите название языка по-английски!"
667
 
668
- #: includes/admin/class-wpglobus-language-edit.php:292
669
  msgid "Please enter the locale!"
670
  msgstr "Пожалуйста, введите локаль!"
671
 
672
- #: includes/admin/class-wpglobus-language-edit.php:354
673
  msgid "Add Language"
674
  msgstr "Добавить язык"
675
 
676
- #: includes/admin/class-wpglobus-language-edit.php:351,
677
- #: includes/admin/class-wpglobus-language-edit.php:462,
678
- #: includes/admin/class-wpglobus-language-edit.php:455
679
  msgid "Delete Language"
680
  msgstr "Удалить язык"
681
 
682
- #: includes/admin/class-wpglobus-language-edit.php:349
683
  msgid "Edit Language"
684
  msgstr "Изменить язык"
685
 
686
- #: includes/admin/class-wpglobus-language-edit.php:384
687
  msgid "Language Code"
688
  msgstr "Код языка"
689
 
690
- #: includes/admin/class-wpglobus-language-edit.php:391
691
  msgid ""
692
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
693
  msgstr ""
694
  "Двухбуквенная ISO-кодировка языка, который Вы хотите добавить (Пример: en)"
695
 
696
- #: includes/admin/class-wpglobus-language-edit.php:396
697
  msgid "Language flag"
698
  msgstr "Флаг"
699
 
700
- #: includes/admin/class-wpglobus-language-edit.php:412
701
  msgid "Name"
702
  msgstr "Название"
703
 
704
- #: includes/admin/class-wpglobus-language-edit.php:417
705
  msgid ""
706
  "The name of the language in its native alphabet. (Examples: English, Русский)"
707
  msgstr "Название на языке оригинала. (Пример: English, Русский)"
708
 
709
- #: includes/admin/class-wpglobus-language-edit.php:422
710
  msgid "Name in English"
711
  msgstr "Название по-английски"
712
 
713
- #: includes/admin/class-wpglobus-language-edit.php:427
714
  msgid "The name of the language in English"
715
  msgstr "Название языка по-английски"
716
 
717
- #: includes/admin/class-wpglobus-language-edit.php:432,
718
- #: includes/options/fields/table/class-wpglobus-languages-table.php:115
719
  msgid "Locale"
720
  msgstr "Локаль"
721
 
722
- #: includes/admin/class-wpglobus-language-edit.php:437
723
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
724
  msgstr "PHP/WordPress локаль языка. (Пример: en_US, ru_RU)"
725
 
726
- #: includes/admin/class-wpglobus-language-edit.php:460
727
  msgid "Are you sure you want to delete?"
728
  msgstr "Удалить? Вы уверены?"
729
 
730
- #: includes/admin/class-wpglobus-language-edit.php:447
731
  msgid "Save Changes"
732
  msgstr "Сохранить изменения"
733
 
734
- #: includes/admin/class-wpglobus-language-edit.php:470
735
  msgid "Back to the WPGlobus Settings"
736
  msgstr "Вернуться к настройкам WPGlobus"
737
 
738
- #: includes/admin/class-wpglobus-plugin-install.php:308
739
  msgid "Current Version"
740
  msgstr "Текущая версия"
741
 
742
- #: includes/admin/class-wpglobus-plugin-install.php:309
743
  msgid "Get it now!"
744
  msgstr "Установить!"
745
 
746
- #: includes/admin/class-wpglobus-plugin-install.php:310
747
  msgid "Premium add-on"
748
  msgstr "Платное расширение"
749
 
750
- #: includes/admin/class-wpglobus-plugin-install.php:311,
751
- #: includes/options/fields/table/class-wpglobus-languages-table.php:472
752
  msgid "Installed"
753
  msgstr "Установлен"
754
 
755
  #. translators: placeholders are for the HTML tags.
756
- #: includes/admin/class-wpglobus-plugin-install.php:319
757
  msgid ""
758
  "If you have already purchased a WPGlobus premium extension, please read "
759
  "%1$sthe installation instructions here%2$s"
760
  msgstr ""
761
 
762
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
763
- #: includes/options/class-wpglobus-options.php:726
764
  msgid "Help Desk"
765
  msgstr "Поддержка"
766
 
767
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:185
768
  msgid "Email not sent. Please fill in the entire form."
769
  msgstr ""
770
 
771
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:195
772
  msgid ""
773
  "Email not sent. Please verify that your name and email are entered correctly."
774
  msgstr ""
775
 
776
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:216
777
  msgid "Email sent."
778
  msgstr ""
779
 
780
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
781
  msgid "Thank you for using WPGlobus!"
782
  msgstr "Спасибо за то, что Вы выбрали WPGlobus!"
783
 
784
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
785
  msgid "Our Support Team is here to answer your questions or concerns."
786
  msgstr "Наша Служба Поддержки постарается ответить на любой из Ваших вопросов."
787
 
788
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
789
  msgid "To help us serve you better:"
790
  msgstr "Чтобы ускорить поиск решения Вашей проблемы:"
791
 
792
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
793
  msgid ""
794
  "Please check if the problem persists if you switch to a standard WordPress "
795
  "theme."
@@ -797,229 +595,172 @@ msgstr ""
797
  "Пожалуйста, убедитесь, что проблема сохраняется, если Вы переключитесь на "
798
  "стандартную тему ВордПресс."
799
 
800
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
801
  msgid ""
802
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
803
  msgstr ""
804
  "Попробуйте деактивировать плагины, чтобы убедиться, не конфликтует ли какой-"
805
  "то из них с WPGlobus."
806
 
807
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
808
  msgid "Please fill in and submit the contact form:"
809
  msgstr ""
810
 
811
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
812
  msgid "Please make sure the email address is correct."
813
  msgstr ""
814
 
815
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
816
  msgid "Subject"
817
  msgstr ""
818
 
819
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
820
  msgid "Short description of the problem"
821
  msgstr ""
822
 
823
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
824
  msgid "Detailed description"
825
  msgstr ""
826
 
827
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
828
  msgid "Technical Information"
829
  msgstr "Техническая информация"
830
 
831
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
832
  msgid "This information helps us to find the problem source"
833
  msgstr ""
834
 
835
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:161
836
  msgid ""
837
  "Alternatively, please email %s. Do not forget to copy and paste the "
838
  "technical information to your email message."
839
  msgstr ""
840
 
841
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:89
842
  msgid "WPGlobus Recommends:"
843
  msgstr "WPGlobus рекомендует:"
844
 
845
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:98,
846
- #: includes/options/class-wpglobus-options.php:933
847
  msgid "WPGlobus for WooCommerce"
848
  msgstr "WPGlobus для WooCommerce"
849
 
850
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:102
851
  msgid ""
852
  "Translate product titles and descriptions, product categories, tags and "
853
  "attributes."
854
  msgstr "Переведите названия и описания товаров, категорий, свойств и меток."
855
 
856
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:107
857
  msgid "Get it now:"
858
  msgstr "Установите прямо сейчас:"
859
 
860
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:117
861
  msgid "WooCommerce Multi-Currency"
862
  msgstr ""
863
 
864
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:121
865
  msgid "Accept multiple currencies in your online store!"
866
  msgstr "Принимайте оплату в нескольких валютах!"
867
 
868
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:126,
869
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:185
870
  msgid "Check it out:"
871
  msgstr "Информация - здесь:"
872
 
873
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:195
874
  msgid "To translate permalinks, please activate the module Slug."
875
  msgstr ""
876
 
877
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:183
878
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
879
  msgstr ""
880
 
881
- #: includes/builders/class-wpglobus-builder.php:278,
882
- #: includes/class-wpglobus.php:3577
883
  msgid "Save draft before using extra language."
884
  msgstr ""
885
 
886
- #: includes/builders/class-wpglobus-builder.php:371
887
  msgid "Builder"
888
  msgstr ""
889
 
890
- #: includes/builders/class-wpglobus-builder.php:395
891
  msgid "Сompatibility Settings"
892
  msgstr ""
893
 
894
  #. translators: ON/OFF status of WPGlobus on the edit pages.
895
  #. translators: ON/OFF status of WPGlobus on the edit pages.
896
- #: includes/builders/elementor/class-wpglobus-elementor.php:255,
897
- #: includes/class-wpglobus.php:1263
898
  msgid "ON"
899
  msgstr ""
900
 
901
- #: includes/builders/elementor/class-wpglobus-elementor.php:256,
902
- #: includes/class-wpglobus.php:1264
903
  msgid "Turn off"
904
  msgstr ""
905
 
906
- #: includes/builders/elementor/class-wpglobus-elementor.php:250,
907
- #: includes/class-wpglobus.php:1258
908
  msgid "OFF"
909
  msgstr ""
910
 
911
- #: includes/builders/elementor/class-wpglobus-elementor.php:251,
912
- #: includes/class-wpglobus.php:1259
913
  msgid "Turn on"
914
  msgstr ""
915
 
916
- #: includes/builders/elementor/class-wpglobus-elementor.php:281
917
  msgid "Elementor"
918
  msgstr ""
919
 
920
- #: includes/builders/elementor/class-wpglobus-elementor.php:508
921
  msgid "WPGlobus languages"
922
  msgstr ""
923
 
924
- #: includes/builders/elementor/class-wpglobus-elementor.php:514
925
  msgid "current"
926
  msgstr ""
927
 
928
- #: includes/builders/elementor/class-wpglobus-elementor.php:675
929
  msgid ""
930
  "WPGlobus provides multilingual support for Elementor only when the option "
931
  "%1$s%2$s%3$s is set to %4$s."
932
  msgstr ""
933
 
934
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:228
935
  msgid "Before switching the language, please save draft or publish."
936
  msgstr ""
937
 
938
  #. translators: Metabox title FOR language.
939
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:318
940
  msgctxt "filter__seo_meta_box_title"
941
  msgid "for"
942
  msgstr ""
943
 
944
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:392
945
  msgid "Page is being reloaded. Please wait..."
946
  msgstr ""
947
 
948
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:393
949
  msgid ""
950
  "Before switching the language, please save draft or publish, then reload "
951
  "page."
952
  msgstr ""
953
 
954
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
955
  msgid ""
956
  "WPGlobus provides multilingual support for Elementor only when the option "
957
  "`CSS Print Method` is set to `External File`."
958
  msgstr ""
959
 
960
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
961
  msgid "Open Elementor Settings page"
962
  msgstr ""
963
 
964
- #: includes/class-wpglobus-widget.php:27
965
  msgid "WPGlobus widget"
966
  msgstr "WPGlobus виджет"
967
 
968
- #: includes/class-wpglobus-widget.php:29
969
  msgid "Add language switcher"
970
  msgstr "Добавить переключатель языка"
971
 
972
- #: includes/class-wpglobus-widget.php:32
973
  msgid "Flags"
974
  msgstr "Флаги"
975
 
976
- #: includes/class-wpglobus-widget.php:33
977
  msgid "List"
978
  msgstr "Список"
979
 
980
- #: includes/class-wpglobus-widget.php:34
981
  msgid "List with flags"
982
  msgstr "Список с флажками"
983
 
984
- #: includes/class-wpglobus-widget.php:35
985
  msgid "Select"
986
  msgstr "Select"
987
 
988
- #: includes/class-wpglobus-widget.php:36
989
  msgid "Select with language code"
990
  msgstr "Select с кодом языка"
991
 
992
- #: includes/class-wpglobus-widget.php:37
993
  msgid "Dropdown"
994
  msgstr "Выпадающее меню"
995
 
996
- #: includes/class-wpglobus-widget.php:38
997
  msgid "Dropdown with flags"
998
  msgstr "Выпадающее меню с флагами"
999
 
1000
- #: includes/class-wpglobus-widget.php:264
1001
  msgid "Selector type"
1002
  msgstr "Способ выбора языка"
1003
 
1004
- #: includes/class-wpglobus.php:1447
1005
  msgid "You cannot disable the main language."
1006
  msgstr "Нельзя отключить основной язык."
1007
 
1008
- #: includes/class-wpglobus.php:1672
1009
  msgid "Need a multilingual slug?"
1010
  msgstr "Нужен мультиязычный ярлык?"
1011
 
1012
- #: includes/class-wpglobus.php:1655
1013
  msgid "*) Available after the menu is saved."
1014
  msgstr "*) Доступно после сохранения меню."
1015
 
1016
- #: includes/class-wpglobus.php:4025
1017
  msgid "You must enable Pretty Permalinks to use WPGlobus."
1018
  msgstr ""
1019
  "Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
1020
  "ссылки."
1021
 
1022
- #: includes/class-wpglobus.php:4027
1023
  msgid ""
1024
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1025
  "default option."
@@ -1027,193 +768,150 @@ msgstr ""
1027
  "Пожалуйста, перейдите в меню Настройки > Постоянные ссылки и поменяйте "
1028
  "структуру ссылок в разделе \"Общие настройки\"."
1029
 
1030
- #: includes/options/class-wpglobus-options.php:281
1031
  msgid "Language Selector Menu Style"
1032
  msgstr ""
1033
 
1034
- #: includes/options/class-wpglobus-options.php:282,
1035
- #: includes/options/class-wpglobus-options.php:802,
1036
- #: includes/options/class-wpglobus-options.php:871
1037
  msgid "WPGlobus Plus"
1038
  msgstr ""
1039
 
1040
- #: includes/options/class-wpglobus-options.php:283
1041
  msgid "Drop-down languages menu or Flat (in one line)"
1042
  msgstr ""
1043
 
1044
- #: includes/options/class-wpglobus-options.php:286
1045
  msgid "Do not change"
1046
  msgstr ""
1047
 
1048
- #: includes/options/class-wpglobus-options.php:287
1049
  msgid "Drop-down (vertical)"
1050
  msgstr ""
1051
 
1052
- #: includes/options/class-wpglobus-options.php:288
1053
  msgid "Flat (horizontal)"
1054
  msgstr ""
1055
 
1056
- #: includes/options/class-wpglobus-options.php:343
1057
  msgid ""
1058
  "If you see this message then your browser may not display the WPGlobus "
1059
  "Settings panel properly. Please try another browser."
1060
  msgstr ""
1061
 
1062
- #: includes/options/class-wpglobus-options.php:599,
1063
- #: includes/options/class-wpglobus-options.php:1577
1064
  msgid "Сompatibility"
1065
  msgstr ""
1066
 
1067
  #. translators: placeholders for "strong" tags.
1068
- #: includes/options/class-wpglobus-options.php:616
1069
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
1070
  msgstr ""
1071
 
1072
  #. translators: placeholders for "strong" tags.
1073
- #: includes/options/class-wpglobus-options.php:619
1074
  msgid ""
1075
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
1076
  "the language attributes: name, code, flag icon, etc."
1077
  msgstr ""
1078
 
1079
- #: includes/options/class-wpglobus-options.php:622
1080
  msgid "Important notes"
1081
  msgstr ""
1082
 
1083
  #. translators: placeholders for "strong" tags.
1084
- #: includes/options/class-wpglobus-options.php:624
1085
  msgid "Version %1$s1.9.17%2$s "
1086
  msgstr ""
1087
 
1088
  #. translators: placeholders for "strong" tags.
1089
- #: includes/options/class-wpglobus-options.php:627
1090
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
1091
  msgstr ""
1092
 
1093
  #. translators: placeholders for "strong" tags; compatibility tab link.
1094
- #: includes/options/class-wpglobus-options.php:630
1095
  msgid ""
1096
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
1097
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
1098
  msgstr ""
1099
 
1100
  #. translators: placeholders for "strong" tags; compatibility tab link.
1101
- #: includes/options/class-wpglobus-options.php:633
1102
  msgid ""
1103
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
1104
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
1105
  msgstr ""
1106
 
1107
  #. translators: placeholders for "strong" tags.
1108
- #: includes/options/class-wpglobus-options.php:637
1109
  msgid "Version %1$s2.2.11%2$s "
1110
  msgstr ""
1111
 
1112
- #: includes/options/class-wpglobus-options.php:639
1113
  msgid "Starting from this version"
1114
  msgstr ""
1115
 
1116
  #. translators: placeholders for "strong" tags.
1117
- #: includes/options/class-wpglobus-options.php:642
1118
  msgid ""
1119
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
1120
  "(CPT)."
1121
  msgstr ""
1122
 
1123
  #. translators: placeholders for "strong" tags.
1124
- #: includes/options/class-wpglobus-options.php:645
1125
  msgid ""
1126
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
1127
  "the %1$s[%3$s]%2$s tab."
1128
  msgstr ""
1129
 
1130
- #: includes/options/class-wpglobus-options.php:662
1131
  msgid "Welcome!"
1132
  msgstr "Добро пожаловать!"
1133
 
1134
- #: includes/options/class-wpglobus-options.php:685
1135
  msgid "Deactivating / Uninstalling"
1136
  msgstr "Деактивация / Деинсталляция"
1137
 
1138
- #: includes/options/class-wpglobus-options.php:711
1139
  msgid "Uninstall"
1140
  msgstr ""
1141
 
1142
- #: includes/options/class-wpglobus-options.php:741
1143
  msgid "All add-ons"
1144
  msgstr ""
1145
 
1146
- #: includes/options/class-wpglobus-options.php:756
1147
  msgid "Mobile Menu"
1148
  msgstr ""
1149
 
1150
- #: includes/options/class-wpglobus-options.php:771
1151
  msgid "Language Widgets"
1152
  msgstr ""
1153
 
1154
- #: includes/options/class-wpglobus-options.php:841
1155
  msgid "We Recommend..."
1156
  msgstr ""
1157
 
1158
- #: includes/options/class-wpglobus-options.php:873
1159
  msgid ""
1160
  "Our premium add-on, WPGlobus Plus, will add several features to your "
1161
  "website, such as:"
1162
  msgstr ""
1163
 
1164
- #: includes/options/class-wpglobus-options.php:876
1165
  msgid ""
1166
  "- Ability to write a post in one language and immediately publish it, not "
1167
  "waiting for the translation to other languages;"
1168
  msgstr ""
1169
 
1170
- #: includes/options/class-wpglobus-options.php:879
1171
  msgid "- Set different URLs for each translation;"
1172
  msgstr ""
1173
 
1174
- #: includes/options/class-wpglobus-options.php:882
1175
  msgid ""
1176
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
1177
  "for each translation;"
1178
  msgstr ""
1179
 
1180
- #: includes/options/class-wpglobus-options.php:885
1181
  msgid "- and more..."
1182
  msgstr ""
1183
 
1184
- #: includes/options/class-wpglobus-options.php:888,
1185
- #: includes/options/class-wpglobus-options.php:945,
1186
- #: includes/options/class-wpglobus-options.php:1003
1187
  msgid "Click here to download"
1188
  msgstr ""
1189
 
1190
- #: includes/options/class-wpglobus-options.php:936
1191
  msgid ""
1192
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
1193
  "translate your blog posts and pages to many languages."
1194
  msgstr ""
1195
 
1196
- #: includes/options/class-wpglobus-options.php:939
1197
  msgid "The next step is to translate your WooCommerce-based store!"
1198
  msgstr ""
1199
 
1200
- #: includes/options/class-wpglobus-options.php:942
1201
  msgid ""
1202
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
1203
  "translate product titles and descriptions, categories, tags and attributes."
1204
  msgstr ""
1205
 
1206
- #: includes/options/class-wpglobus-options.php:989
1207
  msgid "Multi-currency"
1208
  msgstr ""
1209
 
1210
- #: includes/options/class-wpglobus-options.php:992
1211
  msgid ""
1212
  "Your WooCommerce-powered store is set to show prices and accept payments in "
1213
  "a single currency only."
1214
  msgstr ""
1215
 
1216
- #: includes/options/class-wpglobus-options.php:996
1217
  msgid ""
1218
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
1219
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
@@ -1221,463 +919,351 @@ msgid ""
1221
  "positioning for global growth!"
1222
  msgstr ""
1223
 
1224
- #: includes/options/class-wpglobus-options.php:1000
1225
  msgid ""
1226
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
1227
  "re-calculating prices on-the-fly."
1228
  msgstr ""
1229
 
1230
- #: includes/options/class-wpglobus-options.php:1037
1231
  msgid "WPGlobus Premium Add-ons"
1232
  msgstr ""
1233
 
1234
- #: includes/options/class-wpglobus-options.php:1039
1235
  msgid ""
1236
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
1237
  "you will be able to:"
1238
  msgstr ""
1239
 
1240
- #: includes/options/class-wpglobus-options.php:1044
1241
  msgid ""
1242
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
1243
  "моя-страница and so on);"
1244
  msgstr ""
1245
 
1246
- #: includes/options/class-wpglobus-options.php:1047
1247
  msgid ""
1248
  "Postpone translation to some languages and <strong>publish only the "
1249
  "translated texts</strong>;"
1250
  msgstr ""
1251
 
1252
- #: includes/options/class-wpglobus-options.php:1050
1253
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
1254
  msgstr ""
1255
 
1256
- #: includes/options/class-wpglobus-options.php:1053
1257
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
1258
  msgstr ""
1259
 
1260
- #: includes/options/class-wpglobus-options.php:1056
1261
  msgid ""
1262
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
1263
  "strong>;"
1264
  msgstr ""
1265
 
1266
- #: includes/options/class-wpglobus-options.php:1060
1267
  msgid "...and more."
1268
  msgstr ""
1269
 
1270
- #: includes/options/class-wpglobus-options.php:1063
1271
  msgid "Click here to visit the WPGlobus Store"
1272
  msgstr ""
1273
 
1274
- #: includes/options/class-wpglobus-options.php:1104
1275
  msgid "Select a language"
1276
  msgstr "Выберите язык"
1277
 
1278
  #. translators: %3$s placeholder for the icon (actual picture).
1279
- #: includes/options/class-wpglobus-options.php:1133
1280
  msgid ""
1281
  "Place the %1$smain language%2$s of your site at the top of the list by "
1282
  "dragging the %3$s icons."
1283
  msgstr ""
1284
 
1285
  #. translators: placeholders for the "strong" HTML tags.
1286
- #: includes/options/class-wpglobus-options.php:1136
1287
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
1288
  msgstr ""
1289
 
1290
  #. translators: placeholders for the "strong" HTML tags.
1291
- #: includes/options/class-wpglobus-options.php:1139
1292
  msgid "%1$sAdd%2$s more languages using the section below."
1293
  msgstr ""
1294
 
1295
- #: includes/options/class-wpglobus-options.php:1140
1296
  msgid "When done, click the [Save Changes] button."
1297
  msgstr "Когда закончите, нажмите кнопку [Сохранить изменения]."
1298
 
1299
  #. translators: %s - placeholder for the "Save Changes" button text.
1300
- #: includes/options/class-wpglobus-options.php:1151
1301
  msgid "Press the %s button to confirm."
1302
  msgstr ""
1303
 
1304
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
1305
- #: includes/options/class-wpglobus-options.php:1168
1306
  msgid "-- none --"
1307
  msgstr ""
1308
 
1309
- #: includes/options/class-wpglobus-options.php:1169
1310
  msgid "All menus"
1311
  msgstr ""
1312
 
1313
- #: includes/options/class-wpglobus-options.php:1182
1314
  msgid "Instructions:"
1315
  msgstr "Инструкции:"
1316
 
1317
- #: includes/options/class-wpglobus-options.php:1242
1318
  msgid "(Found in some themes)"
1319
  msgstr "(Используется в некоторых темах)"
1320
 
1321
- #: includes/options/class-wpglobus-options.php:1244
1322
  msgid "Enable"
1323
  msgstr "Включить"
1324
 
1325
- #: includes/options/class-wpglobus-options.php:1259
1326
  msgid "Languages table"
1327
  msgstr "Таблица языков"
1328
 
1329
- #: includes/options/class-wpglobus-options.php:1265
1330
  msgid "Use this table to add, edit or delete languages."
1331
  msgstr ""
1332
  "Используйте эту таблицу, чтобы добавлять, удалять или редактировать языки."
1333
 
1334
- #: includes/options/class-wpglobus-options.php:1266
1335
  msgid "NOTE: you cannot remove the main language."
1336
  msgstr "ВНИМАНИЕ: язык по умолчанию не может быть удален."
1337
 
1338
- #: includes/options/class-wpglobus-options.php:1314
1339
  msgid "WPGlobus is enabled on these Post Types"
1340
  msgstr ""
1341
 
1342
- #: includes/options/class-wpglobus-options.php:1315
1343
  msgid "Uncheck to disable"
1344
  msgstr ""
1345
 
1346
- #: includes/options/class-wpglobus-options.php:1316
1347
  msgid ""
1348
  "Please note that there are post types, which status is managed by other "
1349
  "plugins and cannot be changed here."
1350
  msgstr ""
1351
 
1352
- #: includes/options/class-wpglobus-options.php:1321
1353
  msgid "Post Types"
1354
  msgstr ""
1355
 
1356
- #: includes/options/class-wpglobus-options.php:1337
1357
  msgid ""
1358
  "You should put here only the code provided by WPGlobus Support. Do not write "
1359
  "anything else in the sections below as it might break the functionality of "
1360
  "your website!"
1361
  msgstr ""
1362
 
1363
- #: includes/options/class-wpglobus-options.php:1378
1364
  msgid "Custom Code"
1365
  msgstr ""
1366
 
1367
- #: includes/options/class-wpglobus-options.php:1486,
1368
- #: includes/options/class-wpglobus-options.php:1618,
1369
- #: includes/options/class-wpglobus-options.php:1729
1370
  msgid "Enabled"
1371
  msgstr ""
1372
 
1373
- #: includes/options/class-wpglobus-options.php:1499
1374
  msgid "Builders support"
1375
  msgstr ""
1376
 
1377
- #: includes/options/class-wpglobus-options.php:1551
1378
  msgid "Builder mode is enabled on these Post Types"
1379
  msgstr ""
1380
 
1381
- #: includes/options/class-wpglobus-options.php:1617
1382
  msgid "Old fashioned language switcher"
1383
  msgstr ""
1384
 
1385
- #: includes/options/class-wpglobus-options.php:1623
1386
  msgid "Block Editor"
1387
  msgstr ""
1388
 
1389
- #: includes/options/class-wpglobus-options.php:1624
1390
  msgid "Block Editor Options"
1391
  msgstr ""
1392
 
1393
- #: includes/options/class-wpglobus-options.php:1653
1394
  msgid ""
1395
  "With the current settings, you will see the following lines in the section "
1396
  "HEAD of your site pages"
1397
  msgstr ""
1398
 
1399
- #: includes/options/class-wpglobus-options.php:1655
1400
  msgid "(example for two languages)"
1401
  msgstr ""
1402
 
1403
- #: includes/options/class-wpglobus-options.php:1702
1404
  msgid ""
1405
  "Tell search engines about localized versions of your pages using the "
1406
  "hreflang tag"
1407
  msgstr ""
1408
 
1409
- #: includes/options/class-wpglobus-options.php:1711
1410
  msgid "Output the hreflang tag as"
1411
  msgstr ""
1412
 
1413
- #: includes/options/class-wpglobus-options.php:1714
1414
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1415
  msgstr ""
1416
 
1417
- #: includes/options/class-wpglobus-options.php:1715
1418
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1419
  msgstr ""
1420
 
1421
- #: includes/options/class-wpglobus-options.php:1716
1422
  msgid "Language code only (en, ru, etc.)"
1423
  msgstr ""
1424
 
1425
- #: includes/options/class-wpglobus-options.php:1728
1426
  msgid "Use the code `x-default` for the main language"
1427
  msgstr ""
1428
 
1429
- #: includes/options/class-wpglobus-options.php:1734
1430
  msgid "Multilingual SEO"
1431
  msgstr ""
1432
 
1433
- #: includes/options/class-wpglobus-options.php:1735
1434
  msgid "Multilingual SEO Options"
1435
  msgstr ""
1436
 
1437
- #: includes/options/class-wpglobus-options.php:1772
1438
  msgid ""
1439
  "With WPGlobus, you can get translations for posts and pages using REST API."
1440
  msgstr ""
1441
 
1442
- #: includes/options/class-wpglobus-options.php:1800,
1443
- #: includes/options/class-wpglobus-options.php:1808,
1444
- #: includes/options/class-wpglobus-options.php:1780,
1445
- #: includes/options/class-wpglobus-options.php:1789
1446
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1447
  msgstr ""
1448
 
1449
- #: includes/options/class-wpglobus-options.php:1777
1450
  msgid ""
1451
  "For demonstration, you can try the first post that WordPress creates at the "
1452
  "initial installation."
1453
  msgstr ""
1454
 
1455
- #: includes/options/class-wpglobus-options.php:1819
1456
  msgid ""
1457
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1458
  "information."
1459
  msgstr ""
1460
 
1461
- #: includes/options/class-wpglobus-options.php:1826
1462
  msgid ""
1463
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1464
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1465
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1466
  msgstr ""
1467
 
1468
- #: includes/options/class-wpglobus-options.php:1839
1469
  msgid "Description:"
1470
  msgstr ""
1471
 
1472
- #: includes/options/class-wpglobus-options.php:1846,
1473
- #: includes/options/class-wpglobus-options.php:1847
1474
  msgid "REST API"
1475
  msgstr ""
1476
 
1477
- #: includes/options/class-wpglobus-options.php:2180
1478
  msgid "Translate strings"
1479
  msgstr ""
1480
 
1481
- #: includes/options/fields/table/class-wpglobus-languages-table.php:66
1482
  msgid "item"
1483
  msgstr "запись"
1484
 
1485
- #: includes/options/fields/table/class-wpglobus-languages-table.php:68
1486
  msgid "items"
1487
  msgstr "записей"
1488
 
1489
- #: includes/options/fields/table/class-wpglobus-languages-table.php:88
1490
  msgid "Code"
1491
  msgstr "Код"
1492
 
1493
- #: includes/options/fields/table/class-wpglobus-languages-table.php:94
1494
  msgid "Edit"
1495
  msgstr "Изменить"
1496
 
1497
- #: includes/options/fields/table/class-wpglobus-languages-table.php:99
1498
  msgid "Delete"
1499
  msgstr "Удалить"
1500
 
1501
- #: includes/options/fields/table/class-wpglobus-languages-table.php:105
1502
  msgid "File"
1503
  msgstr "Файл"
1504
 
1505
- #: includes/options/fields/table/class-wpglobus-languages-table.php:110
1506
  msgid "Flag"
1507
  msgstr "Флаг"
1508
 
1509
- #: includes/options/fields/table/class-wpglobus-languages-table.php:120
1510
  msgid "Language name"
1511
  msgstr "Название языка"
1512
 
1513
- #: includes/options/fields/table/class-wpglobus-languages-table.php:125
1514
  msgid "English language name"
1515
  msgstr "Название языка по-английски"
1516
 
1517
- #: includes/options/fields/table/class-wpglobus-languages-table.php:151
1518
  msgid "No items found"
1519
  msgstr "Нет записей"
1520
 
1521
- #: includes/options/fields/table/class-wpglobus-languages-table.php:164
1522
  msgid "Add new Language"
1523
  msgstr "Добавить новый язык"
1524
 
1525
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:164
1526
  msgid "No items of this type were found."
1527
  msgstr "Нічога не знойдзена."
1528
 
1529
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:107
1530
  msgid "Select an item"
1531
  msgstr ""
1532
 
1533
- #: includes/options/templates/compatibility-beta.php:15
1534
  msgid "Multilingual support of this add-on is currently in Beta stage."
1535
  msgstr ""
1536
 
1537
- #: includes/options/templates/compatibility-beta.php:17
1538
  msgid "We do not recommend using it on production sites."
1539
  msgstr ""
1540
 
1541
- #: includes/options/templates/compatibility-beta.php:23
1542
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1543
  msgstr ""
1544
 
1545
- #: includes/options/templates/compatibility.php:69
1546
  msgid "WordPress version"
1547
  msgstr ""
1548
 
1549
- #: includes/options/templates/compatibility.php:44
1550
  msgid "In the WordPress core"
1551
  msgstr ""
1552
 
1553
- #: includes/options/templates/compatibility.php:46
1554
  msgid "Core"
1555
  msgstr ""
1556
 
1557
- #: includes/options/templates/compatibility.php:52,
1558
- #: includes/options/templates/compatibility.php:79
1559
  msgid "Current version"
1560
  msgstr ""
1561
 
1562
- #: includes/options/templates/compatibility.php:53,
1563
- #: includes/options/templates/compatibility.php:81
1564
  msgid "Stage"
1565
  msgstr ""
1566
 
1567
- #: includes/options/templates/compatibility.php:54,
1568
- #: includes/options/templates/compatibility.php:82
1569
  msgid "Status"
1570
  msgstr "Статус"
1571
 
1572
- #: includes/options/templates/compatibility.php:60
1573
  msgid "Block editor"
1574
  msgstr ""
1575
 
1576
- #: includes/options/templates/compatibility.php:62
1577
  msgid "production"
1578
  msgstr ""
1579
 
1580
- #: includes/options/templates/compatibility.php:73
1581
  msgid "List of supported add-ons"
1582
  msgstr ""
1583
 
1584
- #: includes/options/templates/compatibility.php:78
1585
  msgid "Add-on"
1586
  msgstr ""
1587
 
1588
- #: includes/options/templates/compatibility.php:80
1589
  msgid "Supported minimum version"
1590
  msgstr ""
1591
 
1592
- #: includes/options/templates/compatibility.php:105
1593
  msgid "Not installed"
1594
  msgstr ""
1595
 
1596
- #: includes/options/templates/compatibility.php:102
1597
  msgid "Installed, inactive"
1598
  msgstr ""
1599
 
1600
- #: includes/options/templates/compatibility.php:100
1601
  msgid "Active"
1602
  msgstr "Активировано"
1603
 
1604
- #: includes/options/templates/customize-intro.php:35
1605
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1606
  msgstr ""
1607
 
1608
- #: includes/options/templates/customize-intro.php:39
1609
  msgid "However, some themes do not follow all WordPress standards strictly."
1610
  msgstr ""
1611
 
1612
- #: includes/options/templates/customize-intro.php:41
1613
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1614
  msgstr ""
1615
 
1616
- #: includes/options/templates/customize-intro.php:45
1617
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1618
  msgstr ""
1619
 
1620
- #: includes/options/templates/customize-intro.php:53
1621
  msgid ""
1622
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1623
  "With those themes, WPGlobus Customizer is switched off by default"
1624
  msgstr ""
1625
 
1626
- #: includes/options/templates/customize-intro.php:60
1627
  msgid "The currently active theme is"
1628
  msgstr ""
1629
 
1630
- #: includes/options/templates/customize-intro.php:66
1631
  msgid "In the current version, WPGlobus Customizer does not support"
1632
  msgstr ""
1633
 
1634
- #: includes/options/templates/customize-intro.php:70
1635
  msgid "translation of the navigation menus"
1636
  msgstr ""
1637
 
1638
- #: includes/options/templates/customize-intro.php:72
1639
  msgid "to translate, please go to"
1640
  msgstr ""
1641
 
1642
- #: includes/options/templates/customize-intro.php:81
1643
  msgid "Go to Customizer"
1644
  msgstr ""
1645
 
1646
- #: includes/options/templates/customize-intro.php:88
1647
  msgid "is undefined"
1648
  msgstr ""
1649
 
1650
- #: includes/options/templates/customize-intro.php:85
1651
  msgid "is set to"
1652
  msgstr ""
1653
 
1654
- #: includes/options/templates/customize-intro.php:94
1655
  msgid "by adding to the file wp-config.php"
1656
  msgstr ""
1657
 
1658
- #: includes/options/templates/customize-intro.php:96
1659
  msgid "now"
1660
  msgstr ""
1661
 
1662
- #: includes/options/wpglobus-options-header.php:25
1663
  msgid "We rely on your support!"
1664
  msgstr "Спасибо за поддержку!"
1665
 
1666
- #: includes/options/wpglobus-options-header.php:28
1667
  msgid "Please consider a small donation to support the future development."
1668
  msgstr ""
1669
  "Ваше пожертвование будет использовано для дальшейшего развития и улучшения "
1670
  "плагина."
1671
 
1672
- #: includes/options/wpglobus-options-header.php:32
1673
  msgid "Thank you!"
1674
  msgstr "С благодарностью!"
1675
 
1676
- #: includes/options/wpglobus-options-header.php:55
1677
  msgid "WPGlobus Plus!"
1678
  msgstr "WPGlobus Плюс!"
1679
 
1680
- #: includes/options/wpglobus-options-header.php:58
1681
  msgid ""
1682
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1683
  "separate publishing and more! "
@@ -1685,29 +1271,23 @@ msgstr ""
1685
  "Расширенные функции и настройки: переводы УРЛов, многоязычный SEO анализ, "
1686
  "раздельная публикация и многое другое! "
1687
 
1688
- #: includes/options/wpglobus-options-header.php:64
1689
  msgid "Get WPGlobus Plus now!"
1690
  msgstr "Установите WPGlobus Плюс прямо сейчас!"
1691
 
1692
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1693
  msgid ""
1694
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1695
  "the current version."
1696
  msgstr ""
1697
 
1698
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1699
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1700
  msgstr ""
1701
 
1702
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1703
  msgid "WPGlobus warning: "
1704
  msgstr ""
1705
 
1706
- #: wpglobus.php:13
1707
  msgid "https://github.com/WPGlobus/WPGlobus"
1708
  msgstr "https://github.com/WPGlobus/WPGlobus"
1709
 
1710
- #: wpglobus.php:14
1711
  msgid ""
1712
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1713
  "widgets and even custom fields - in multiple languages!"
@@ -1715,7 +1295,6 @@ msgstr ""
1715
  "Многоязычные сайты на ВордПресс. Редактируйте тексты записей, страниц, меню, "
1716
  "виджетов, и т.п. - на нескольких языках сразу!"
1717
 
1718
- #: wpglobus.php:19
1719
  msgid "https://wpglobus.com/"
1720
  msgstr "https://wpglobus.com/ru/"
1721
 
18
  "%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n"
19
  "%100>=11 && n%100<=14)? 2 : 3);\n"
20
 
 
 
 
 
 
21
  msgid "Guide"
22
  msgstr "Инструкция"
23
 
 
 
24
  msgid "WPGlobus Help Desk"
25
  msgstr "Поддержка"
26
 
 
 
 
 
 
 
 
27
  msgid "Add-ons"
28
  msgstr "Расширения"
29
 
 
30
  msgid "Quick Start"
31
  msgstr "Быстрый Старт"
32
 
 
 
33
  msgid "FAQ"
34
  msgstr "ЧаВо"
35
 
 
36
  msgid ""
37
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
38
  msgstr "Внимание: расширение PHP Multibyte String (`mbstring`) не загружено!"
39
 
 
40
  msgid ""
41
  "The mbstring extension is required for the full UTF-8 compatibility and "
42
  "better performance. Without it, some parts of WordPress and WPGlobus may "
48
  "WPGlobus могут функционировать некорректно. Пожалуйста, сообщите вашему "
49
  "провайдеру или системному администратору (вебмастеру)."
50
 
 
51
  msgid "Go to WPGlobus Settings"
52
  msgstr "Перейдите в настройки WPGlobus"
53
 
 
54
  msgid "Easy as 1-2-3:"
55
  msgstr "Просто, как 1-2-3:"
56
 
 
57
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
58
  msgstr "Войдите в меню администратора WPGlobus и выберите страны и языки;"
59
 
 
60
  msgid ""
61
  "Enter the translations to the posts, pages, categories, tags and menus using "
62
  "a clean and simple interface."
64
  "Введите переводы записей, страниц, категорий, меток и меню, используя "
65
  "простой и удобный интерфейс."
66
 
 
67
  msgid ""
68
  "Switch languages at the front-end using a drop-down menu with language names "
69
  "and country flags."
71
  "Переключайте языки, используя раскрывающееся меню с их названиями и флагами "
72
  "стран."
73
 
 
74
  msgid "Links:"
75
  msgstr "Ссылки:"
76
 
 
77
  msgid "FAQs"
78
  msgstr "Вопросы и ответы"
79
 
 
80
  msgid "Contact Us"
81
  msgstr "Обратная связь"
82
 
 
83
  msgid "Please give us 5 stars!"
84
  msgstr "Пожалуйста, поставьте нам 5 звездочек!"
85
 
 
86
  msgid "WPGlobus does not translate texts automatically!"
87
  msgstr "WPGlobus не делает автоматические переводы текста!"
88
 
 
89
  msgid ""
90
  "There are many translation companies and individual translators who can help "
91
  "you write and proofread the texts."
92
  msgstr "Вы можете воспользоваться услугами профессиональных переводчиков."
93
 
 
94
  msgid ""
95
  "When you choose a translator, please look at their native language, country "
96
  "of residence, specialization and knowledge of WordPress."
99
  "специализацию и знание ВордПресс."
100
 
101
  #. translators: %s are used to insert HTML link. Keep them in place.
 
102
  msgid ""
103
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
104
  "website. This is not an endorsement, just a courtesy. Please contact them "
108
  "воспринимайте это как конкретную рекомендацию! Свяжитесь с переводчиками "
109
  "напрямую и потом расскажите нам, довольны ли Вы результатом."
110
 
 
111
  msgid "Important notes:"
112
  msgstr "Важная информация:"
113
 
 
114
  msgid ""
115
  "WPGlobus only supports the localization URLs in the form of <code>example."
116
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
121
  "example.com</code> и языковые параметры в УРЛах <code>example.com?lang=xx</"
122
  "code>."
123
 
 
124
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
125
  msgstr ""
126
  "Некоторые темы и плагины <strong>не полностью поддерживают многоязычный "
127
  "режим</strong>."
128
 
 
129
  msgid ""
130
  "They might display some texts with no translation, or with all languages "
131
  "mixed together."
134
  "разные языки."
135
 
136
  #. translators: %s are used to insert HTML link. Keep them in place.
 
137
  msgid ""
138
  "Please contact the theme / plugin author. If they are unable to assist, "
139
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
142
  "рассмотрите возможность %s дать заказ команде разработчиков WPGlobus %s на "
143
  "написание кода специально для Вас."
144
 
 
145
  msgid "Language was set on your profile page"
146
  msgstr ""
147
 
 
148
  msgid "Add"
149
  msgstr "Добавить"
150
 
 
 
151
  msgid "Multilingual Everything!"
152
  msgstr "Всё - на всех языках!"
153
 
 
 
154
  msgid ""
155
  "WPGlobus is a family of WordPress plugins assisting you in making "
156
  "multilingual WordPress blogs and sites."
157
  msgstr ""
158
  "WPGlobus - это коллекция плагинов ВордПресс для создания многоязычных сайтов."
159
 
 
160
  msgid "Remove the WPGlobus settings (not recommended)"
161
  msgstr "Удалить настройки WPGlobus (не рекомендуется)"
162
 
 
163
  msgid "Clean-up Tool"
164
  msgstr "Программа очистки"
165
 
 
166
  msgid "Support"
167
  msgstr "Поддержка"
168
 
 
169
  msgid ""
170
  "WARNING: this operation is non-reversible. It is strongly recommended that "
171
  "you backup your database before proceeding."
173
  "Предупреждение: эта операция является необратимой. Настоятельно рекомендуем "
174
  "сделать резервную копию базы данных перед продолжением."
175
 
 
176
  msgid ""
177
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
178
  "By running it, you will remove ALL translations you have entered to your "
188
  "обнаружите пустые заголовки, отсутствие контента страниц, пустые комментарии "
189
  "и тому подобное."
190
 
 
191
  msgid ""
192
  "Make sure that your active theme does not have any code related to WPGlobus. "
193
  "Such code could be added by you or by a 3rd party developer. If that code "
196
  msgstr ""
197
 
198
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
 
199
  msgid ""
200
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
201
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
202
  msgstr ""
203
 
 
204
  msgid "You are about to clean the content of the following database tables:"
205
  msgstr "Программа выполнит очистку следующих таблиц базы данных:"
206
 
 
207
  msgid "The operations log"
208
  msgstr "Журнал операций"
209
 
 
210
  msgid ""
211
  "We are going to write a detailed log of all the database changes performed. "
212
  "It should help in the case you need to restore something important. The log "
216
  "в случае, если Вам потребуется восстановить что-то важное. Журнал будет "
217
  "записываться в файл:"
218
 
 
219
  msgid ""
220
  "Uncheck if you do not want to write the operations log (we recommend to keep "
221
  "it checked)"
223
  "Снимите флажок, если Вы не хотите записывать операции в журнал (мы "
224
  "рекомендуем оставить запись включённой)"
225
 
 
226
  msgid "You have been warned..."
227
  msgstr "Вы уверены, что готовы продолжить?"
228
 
 
229
  msgid "Please confirm by checking the box below:"
230
  msgstr "Пожалуйста, подтвердите, установив флажок ниже:"
231
 
 
232
  msgid ""
233
  "I have read and understood everything written on this page. I am aware that "
234
  "by using this tool I may loose some content of my website. I have made a "
241
  "восстановить её в случае необходимости. Я полностью несу ответственность за "
242
  "результат."
243
 
 
244
  msgid "YES, I CONFIRM"
245
  msgstr "ДА, Я ПОДТВЕРЖДАЮ"
246
 
 
247
  msgid "Process with the Clean-up"
248
  msgstr "Запустить программу очистки"
249
 
 
 
 
 
250
  msgid "Default"
251
  msgstr "По умолчанию"
252
 
 
253
  msgid "Section"
254
  msgstr "Раздел"
255
 
 
256
  msgid "Show all sections"
257
  msgstr "Показать все разделы"
258
 
 
259
  msgid "Save &amp; Reload"
260
  msgstr "Сохранить и перезагрузить"
261
 
 
 
 
262
  msgid "WPGlobus"
263
  msgstr "WPGlobus"
264
 
 
265
  msgid ""
266
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
267
  msgstr "Этот раздел доступен в WordPress версии 4.5 и выше."
268
 
 
269
  msgid "Fields Settings"
270
  msgstr "Настройки полей"
271
 
 
272
  msgid "WPGlobus Settings"
273
  msgstr "Настройки WPGlobus"
274
 
 
275
  msgid "Help"
276
  msgstr "Дапамога"
277
 
 
 
278
  msgid "Languages"
279
  msgstr "Языки"
280
 
 
 
281
  msgid "Enabled Languages"
282
  msgstr "Установленные языки"
283
 
 
 
284
  msgid "These languages are currently enabled on your site."
285
  msgstr "Эти языки включены в настоящее время на вашем сайте."
286
 
 
 
287
  msgid "Choose a language you would like to enable."
288
  msgstr ""
289
 
 
290
  msgid "Press the [Save & Publish] button to confirm."
291
  msgstr ""
292
 
293
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
294
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
 
 
295
  msgid "or Add new Language %1$s here %2$s"
296
  msgstr "или добавьте новый язык %1$s здесь %2$s"
297
 
 
 
298
  msgid "Add Languages"
299
  msgstr "Добавить языки"
300
 
 
 
301
  msgid "Language Selector Mode"
302
  msgstr "Способ показа переключателей "
303
 
 
 
304
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
305
  msgstr "Двухбуквенный код (en, ru, it, и т.п.) и флаг"
306
 
 
 
307
  msgid "Full Name (English, Russian, Italian, etc.)"
308
  msgstr "Полное название (English, Russian, Italian, и т.п.)"
309
 
 
 
310
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
311
  msgstr "Полное название (English, Russian, Italian, и т.п.) и флаг"
312
 
 
 
313
  msgid "Flags only"
314
  msgstr "Только флаги"
315
 
 
 
316
  msgid ""
317
  "Choose the way language name and country flag are shown in the drop-down menu"
318
  msgstr "Выберите способ показа названий языков и флагов в навигационном меню"
319
 
 
320
  msgid "select navigation menu"
321
  msgstr ""
322
 
 
 
 
323
  msgid "Language Selector Menu"
324
  msgstr "Навигационное меню"
325
 
 
 
 
326
  msgid "Choose the navigation menu where the language selector will be shown"
327
  msgstr ""
328
  "Выберите навигационное меню, в котором будет показан переключатель языков"
329
 
 
330
  msgid "No menus have been created yet. Create some."
331
  msgstr "Ни одного меню ещё не создано. Создайте."
332
 
 
 
333
  msgid "\"All Pages\" menus Language selector"
334
  msgstr "Переключатель языка в меню «Все страницы»"
335
 
 
 
336
  msgid ""
337
  "Adds language selector to the menus that automatically list all existing "
338
  "pages (using `wp_list_pages`)"
340
  "Добавить переключатель языка в меню, которые автоматически показывают список "
341
  "всех страниц (с использованием `wp_list_pages`)"
342
 
 
 
343
  msgid "Custom CSS"
344
  msgstr "Пользовательский CSS"
345
 
 
346
  msgid ""
347
  "Here you can enter the CSS rules to adjust the language selector menu for "
348
  "your theme. Look at the examples in the `style-samples.css` file."
350
  "Сюда Вы можете поместить набор правил CSS для тонкой настройки меню выбора "
351
  "языков. Примеры для стандартных тем можно найти в файле `style-samples.css`."
352
 
 
353
  msgid "Post types"
354
  msgstr "Типы записей"
355
 
 
356
  msgid "Uncheck to disable WPGlobus"
357
  msgstr "Снимите флажок, чтобы отключить WPGlobus"
358
 
 
 
359
  msgid "Redirect"
360
  msgstr "Перенаправление"
361
 
 
 
362
  msgid "Choose the language automatically, based on:"
363
  msgstr "Выбрать язык автоматически, учитывая:"
364
 
 
 
365
  msgid "Preferred language set in the browser"
366
  msgstr "Язык, указанный как предпочтительный в настройках браузера"
367
 
 
 
368
  msgid ""
369
  "When a user comes to the site for the first time, try to find the best "
370
  "matching language version of the page."
372
  "Когда посетитель попадает на сайт в первый раз, попытаться выбрать язык "
373
  "страницы автоматически."
374
 
 
 
 
 
375
  msgid "Custom JS Code"
376
  msgstr "Пользовательский JS"
377
 
 
 
378
  msgid "Title"
379
  msgstr "Заголовок"
380
 
 
381
  msgid "(Paste your JS code here.)"
382
  msgstr "(Поместите сюда JS код.)"
383
 
 
384
  msgid ""
385
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
386
  "version 4.9 or later."
387
  msgstr ""
388
 
 
389
  msgid "With your version of WordPress, please use the"
390
  msgstr ""
391
 
 
392
  msgid "WPGlobus Settings page"
393
  msgstr ""
394
 
 
395
  msgid "Label"
396
  msgstr "Метка"
397
 
 
398
  msgid "Description"
399
  msgstr "Описание"
400
 
 
401
  msgid ""
402
  "Here you can specify which fields should be considered multilingual by "
403
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
406
  "обрабатываться WPGlobus. Чтобы исключить поле, снимите отметку и нажмите "
407
  "кнопку сохранения внизу."
408
 
 
 
409
  msgid "Thank you for installing WPGlobus!"
410
  msgstr "Спасибо за то, что Вы установили плагин WPGlobus!"
411
 
 
 
412
  msgid "Read About WPGlobus"
413
  msgstr "Подробно о WPGlobus"
414
 
 
415
  msgid ""
416
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
417
  msgstr "Настройки плагина находятся в разделе <strong>[Языки]</strong>."
418
 
 
 
419
  msgid ""
420
  "Should you have any questions or comments, please do not hesitate to contact "
421
  "us."
423
  "Если у Вас есть вопросы или замечания, пожалуйста, обращайтесь к нам за "
424
  "поддержкой."
425
 
 
 
426
  msgid "Sincerely Yours,"
427
  msgstr "С Уважением,"
428
 
 
 
 
429
  msgid "The WPGlobus Team"
430
  msgstr "Команда WPGlobus"
431
 
432
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
433
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
434
  msgid ""
435
  "We would hate to see you go. If something goes wrong, do not uninstall "
436
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
438
  "Обнаружили проблему в WPGlobus? Не торопитесь удалять плагин. Пожалуйста "
439
  "%1$sобратитесь к нам%2$s и позвольте Вам помочь!"
440
 
 
 
441
  msgid ""
442
  "Please note that if you deactivate WPGlobus, your site will show all the "
443
  "languages together, mixed up. You will need to remove all translations, "
449
 
450
  #. translators: %s: link to the Clean-up Tool
451
  #. translators: %s: link to the Clean-up Tool.
 
 
452
  msgid ""
453
  "If there are just a few places, you should edit them manually. To "
454
  "automatically remove all translations at once, you can use the %s. WARNING: "
462
 
463
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
464
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
465
  msgid "%1$sClean-up Tool%2$s"
466
  msgstr "%1$sПрограмму очистки%2$s"
467
 
468
  #. translators: %s: name of current theme
 
469
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
470
  msgstr "Извините, тема %s не поддерживается WPGlobus."
471
 
472
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
473
  msgid "Please use %1$sWPGlobus options page%2$s instead."
474
  msgstr "Пожалуйста, используйте %1$sпанель настроек WPGlobus%2$s."
475
 
 
476
  msgid "Expand/Shrink"
477
  msgstr ""
478
 
 
 
479
  msgid "WPGlobus News"
480
  msgstr "Новости WPGlobus"
481
 
 
 
482
  msgid "Options updated"
483
  msgstr "Настройки сохранены"
484
 
 
485
  msgid "Please enter a language code!"
486
  msgstr "Пожалуйста, введите код языка!"
487
 
 
488
  msgid "Language code already exists!"
489
  msgstr "Такой код языка уже существует!"
490
 
 
491
  msgid "Please specify the language flag!"
492
  msgstr "Пожалуйста, укажите флаг для языка!"
493
 
 
494
  msgid "Please enter the language name!"
495
  msgstr "Пожалуйста, введите название языка!"
496
 
 
497
  msgid "Please enter the language name in English!"
498
  msgstr "Пожалуйста, введите название языка по-английски!"
499
 
 
500
  msgid "Please enter the locale!"
501
  msgstr "Пожалуйста, введите локаль!"
502
 
 
503
  msgid "Add Language"
504
  msgstr "Добавить язык"
505
 
 
 
 
506
  msgid "Delete Language"
507
  msgstr "Удалить язык"
508
 
 
509
  msgid "Edit Language"
510
  msgstr "Изменить язык"
511
 
 
512
  msgid "Language Code"
513
  msgstr "Код языка"
514
 
 
515
  msgid ""
516
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
517
  msgstr ""
518
  "Двухбуквенная ISO-кодировка языка, который Вы хотите добавить (Пример: en)"
519
 
 
520
  msgid "Language flag"
521
  msgstr "Флаг"
522
 
 
523
  msgid "Name"
524
  msgstr "Название"
525
 
 
526
  msgid ""
527
  "The name of the language in its native alphabet. (Examples: English, Русский)"
528
  msgstr "Название на языке оригинала. (Пример: English, Русский)"
529
 
 
530
  msgid "Name in English"
531
  msgstr "Название по-английски"
532
 
 
533
  msgid "The name of the language in English"
534
  msgstr "Название языка по-английски"
535
 
 
 
536
  msgid "Locale"
537
  msgstr "Локаль"
538
 
 
539
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
540
  msgstr "PHP/WordPress локаль языка. (Пример: en_US, ru_RU)"
541
 
 
542
  msgid "Are you sure you want to delete?"
543
  msgstr "Удалить? Вы уверены?"
544
 
 
545
  msgid "Save Changes"
546
  msgstr "Сохранить изменения"
547
 
 
548
  msgid "Back to the WPGlobus Settings"
549
  msgstr "Вернуться к настройкам WPGlobus"
550
 
 
551
  msgid "Current Version"
552
  msgstr "Текущая версия"
553
 
 
554
  msgid "Get it now!"
555
  msgstr "Установить!"
556
 
 
557
  msgid "Premium add-on"
558
  msgstr "Платное расширение"
559
 
 
 
560
  msgid "Installed"
561
  msgstr "Установлен"
562
 
563
  #. translators: placeholders are for the HTML tags.
 
564
  msgid ""
565
  "If you have already purchased a WPGlobus premium extension, please read "
566
  "%1$sthe installation instructions here%2$s"
567
  msgstr ""
568
 
 
 
569
  msgid "Help Desk"
570
  msgstr "Поддержка"
571
 
 
572
  msgid "Email not sent. Please fill in the entire form."
573
  msgstr ""
574
 
 
575
  msgid ""
576
  "Email not sent. Please verify that your name and email are entered correctly."
577
  msgstr ""
578
 
 
579
  msgid "Email sent."
580
  msgstr ""
581
 
 
582
  msgid "Thank you for using WPGlobus!"
583
  msgstr "Спасибо за то, что Вы выбрали WPGlobus!"
584
 
 
585
  msgid "Our Support Team is here to answer your questions or concerns."
586
  msgstr "Наша Служба Поддержки постарается ответить на любой из Ваших вопросов."
587
 
 
588
  msgid "To help us serve you better:"
589
  msgstr "Чтобы ускорить поиск решения Вашей проблемы:"
590
 
 
591
  msgid ""
592
  "Please check if the problem persists if you switch to a standard WordPress "
593
  "theme."
595
  "Пожалуйста, убедитесь, что проблема сохраняется, если Вы переключитесь на "
596
  "стандартную тему ВордПресс."
597
 
 
598
  msgid ""
599
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
600
  msgstr ""
601
  "Попробуйте деактивировать плагины, чтобы убедиться, не конфликтует ли какой-"
602
  "то из них с WPGlobus."
603
 
 
604
  msgid "Please fill in and submit the contact form:"
605
  msgstr ""
606
 
 
607
  msgid "Please make sure the email address is correct."
608
  msgstr ""
609
 
 
610
  msgid "Subject"
611
  msgstr ""
612
 
 
613
  msgid "Short description of the problem"
614
  msgstr ""
615
 
 
616
  msgid "Detailed description"
617
  msgstr ""
618
 
 
619
  msgid "Technical Information"
620
  msgstr "Техническая информация"
621
 
 
622
  msgid "This information helps us to find the problem source"
623
  msgstr ""
624
 
 
625
  msgid ""
626
  "Alternatively, please email %s. Do not forget to copy and paste the "
627
  "technical information to your email message."
628
  msgstr ""
629
 
 
630
  msgid "WPGlobus Recommends:"
631
  msgstr "WPGlobus рекомендует:"
632
 
 
 
633
  msgid "WPGlobus for WooCommerce"
634
  msgstr "WPGlobus для WooCommerce"
635
 
 
636
  msgid ""
637
  "Translate product titles and descriptions, product categories, tags and "
638
  "attributes."
639
  msgstr "Переведите названия и описания товаров, категорий, свойств и меток."
640
 
 
641
  msgid "Get it now:"
642
  msgstr "Установите прямо сейчас:"
643
 
 
644
  msgid "WooCommerce Multi-Currency"
645
  msgstr ""
646
 
 
647
  msgid "Accept multiple currencies in your online store!"
648
  msgstr "Принимайте оплату в нескольких валютах!"
649
 
 
 
650
  msgid "Check it out:"
651
  msgstr "Информация - здесь:"
652
 
 
653
  msgid "To translate permalinks, please activate the module Slug."
654
  msgstr ""
655
 
 
656
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
657
  msgstr ""
658
 
 
 
659
  msgid "Save draft before using extra language."
660
  msgstr ""
661
 
 
662
  msgid "Builder"
663
  msgstr ""
664
 
 
665
  msgid "Сompatibility Settings"
666
  msgstr ""
667
 
668
  #. translators: ON/OFF status of WPGlobus on the edit pages.
669
  #. translators: ON/OFF status of WPGlobus on the edit pages.
 
 
670
  msgid "ON"
671
  msgstr ""
672
 
 
 
673
  msgid "Turn off"
674
  msgstr ""
675
 
 
 
676
  msgid "OFF"
677
  msgstr ""
678
 
 
 
679
  msgid "Turn on"
680
  msgstr ""
681
 
 
682
  msgid "Elementor"
683
  msgstr ""
684
 
 
685
  msgid "WPGlobus languages"
686
  msgstr ""
687
 
 
688
  msgid "current"
689
  msgstr ""
690
 
 
691
  msgid ""
692
  "WPGlobus provides multilingual support for Elementor only when the option "
693
  "%1$s%2$s%3$s is set to %4$s."
694
  msgstr ""
695
 
 
696
  msgid "Before switching the language, please save draft or publish."
697
  msgstr ""
698
 
699
  #. translators: Metabox title FOR language.
 
700
  msgctxt "filter__seo_meta_box_title"
701
  msgid "for"
702
  msgstr ""
703
 
 
704
  msgid "Page is being reloaded. Please wait..."
705
  msgstr ""
706
 
 
707
  msgid ""
708
  "Before switching the language, please save draft or publish, then reload "
709
  "page."
710
  msgstr ""
711
 
 
712
  msgid ""
713
  "WPGlobus provides multilingual support for Elementor only when the option "
714
  "`CSS Print Method` is set to `External File`."
715
  msgstr ""
716
 
 
717
  msgid "Open Elementor Settings page"
718
  msgstr ""
719
 
 
720
  msgid "WPGlobus widget"
721
  msgstr "WPGlobus виджет"
722
 
 
723
  msgid "Add language switcher"
724
  msgstr "Добавить переключатель языка"
725
 
 
726
  msgid "Flags"
727
  msgstr "Флаги"
728
 
 
729
  msgid "List"
730
  msgstr "Список"
731
 
 
732
  msgid "List with flags"
733
  msgstr "Список с флажками"
734
 
 
735
  msgid "Select"
736
  msgstr "Select"
737
 
 
738
  msgid "Select with language code"
739
  msgstr "Select с кодом языка"
740
 
 
741
  msgid "Dropdown"
742
  msgstr "Выпадающее меню"
743
 
 
744
  msgid "Dropdown with flags"
745
  msgstr "Выпадающее меню с флагами"
746
 
 
747
  msgid "Selector type"
748
  msgstr "Способ выбора языка"
749
 
 
750
  msgid "You cannot disable the main language."
751
  msgstr "Нельзя отключить основной язык."
752
 
 
753
  msgid "Need a multilingual slug?"
754
  msgstr "Нужен мультиязычный ярлык?"
755
 
 
756
  msgid "*) Available after the menu is saved."
757
  msgstr "*) Доступно после сохранения меню."
758
 
 
759
  msgid "You must enable Pretty Permalinks to use WPGlobus."
760
  msgstr ""
761
  "Чтобы использовать плагин WPGlobus, необходимо включить ЧПУ - постоянные "
762
  "ссылки."
763
 
 
764
  msgid ""
765
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
766
  "default option."
768
  "Пожалуйста, перейдите в меню Настройки > Постоянные ссылки и поменяйте "
769
  "структуру ссылок в разделе \"Общие настройки\"."
770
 
 
771
  msgid "Language Selector Menu Style"
772
  msgstr ""
773
 
 
 
 
774
  msgid "WPGlobus Plus"
775
  msgstr ""
776
 
 
777
  msgid "Drop-down languages menu or Flat (in one line)"
778
  msgstr ""
779
 
 
780
  msgid "Do not change"
781
  msgstr ""
782
 
 
783
  msgid "Drop-down (vertical)"
784
  msgstr ""
785
 
 
786
  msgid "Flat (horizontal)"
787
  msgstr ""
788
 
 
789
  msgid ""
790
  "If you see this message then your browser may not display the WPGlobus "
791
  "Settings panel properly. Please try another browser."
792
  msgstr ""
793
 
 
 
794
  msgid "Сompatibility"
795
  msgstr ""
796
 
797
  #. translators: placeholders for "strong" tags.
 
798
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
799
  msgstr ""
800
 
801
  #. translators: placeholders for "strong" tags.
 
802
  msgid ""
803
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
804
  "the language attributes: name, code, flag icon, etc."
805
  msgstr ""
806
 
 
807
  msgid "Important notes"
808
  msgstr ""
809
 
810
  #. translators: placeholders for "strong" tags.
 
811
  msgid "Version %1$s1.9.17%2$s "
812
  msgstr ""
813
 
814
  #. translators: placeholders for "strong" tags.
 
815
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
816
  msgstr ""
817
 
818
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
819
  msgid ""
820
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
821
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
822
  msgstr ""
823
 
824
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
825
  msgid ""
826
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
827
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
828
  msgstr ""
829
 
830
  #. translators: placeholders for "strong" tags.
 
831
  msgid "Version %1$s2.2.11%2$s "
832
  msgstr ""
833
 
 
834
  msgid "Starting from this version"
835
  msgstr ""
836
 
837
  #. translators: placeholders for "strong" tags.
 
838
  msgid ""
839
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
840
  "(CPT)."
841
  msgstr ""
842
 
843
  #. translators: placeholders for "strong" tags.
 
844
  msgid ""
845
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
846
  "the %1$s[%3$s]%2$s tab."
847
  msgstr ""
848
 
 
849
  msgid "Welcome!"
850
  msgstr "Добро пожаловать!"
851
 
 
852
  msgid "Deactivating / Uninstalling"
853
  msgstr "Деактивация / Деинсталляция"
854
 
 
855
  msgid "Uninstall"
856
  msgstr ""
857
 
 
858
  msgid "All add-ons"
859
  msgstr ""
860
 
 
861
  msgid "Mobile Menu"
862
  msgstr ""
863
 
 
864
  msgid "Language Widgets"
865
  msgstr ""
866
 
 
867
  msgid "We Recommend..."
868
  msgstr ""
869
 
 
870
  msgid ""
871
  "Our premium add-on, WPGlobus Plus, will add several features to your "
872
  "website, such as:"
873
  msgstr ""
874
 
 
875
  msgid ""
876
  "- Ability to write a post in one language and immediately publish it, not "
877
  "waiting for the translation to other languages;"
878
  msgstr ""
879
 
 
880
  msgid "- Set different URLs for each translation;"
881
  msgstr ""
882
 
 
883
  msgid ""
884
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
885
  "for each translation;"
886
  msgstr ""
887
 
 
888
  msgid "- and more..."
889
  msgstr ""
890
 
 
 
 
891
  msgid "Click here to download"
892
  msgstr ""
893
 
 
894
  msgid ""
895
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
896
  "translate your blog posts and pages to many languages."
897
  msgstr ""
898
 
 
899
  msgid "The next step is to translate your WooCommerce-based store!"
900
  msgstr ""
901
 
 
902
  msgid ""
903
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
904
  "translate product titles and descriptions, categories, tags and attributes."
905
  msgstr ""
906
 
 
907
  msgid "Multi-currency"
908
  msgstr ""
909
 
 
910
  msgid ""
911
  "Your WooCommerce-powered store is set to show prices and accept payments in "
912
  "a single currency only."
913
  msgstr ""
914
 
 
915
  msgid ""
916
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
917
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
919
  "positioning for global growth!"
920
  msgstr ""
921
 
 
922
  msgid ""
923
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
924
  "re-calculating prices on-the-fly."
925
  msgstr ""
926
 
 
927
  msgid "WPGlobus Premium Add-ons"
928
  msgstr ""
929
 
 
930
  msgid ""
931
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
932
  "you will be able to:"
933
  msgstr ""
934
 
 
935
  msgid ""
936
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
937
  "моя-страница and so on);"
938
  msgstr ""
939
 
 
940
  msgid ""
941
  "Postpone translation to some languages and <strong>publish only the "
942
  "translated texts</strong>;"
943
  msgstr ""
944
 
 
945
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
946
  msgstr ""
947
 
 
948
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
949
  msgstr ""
950
 
 
951
  msgid ""
952
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
953
  "strong>;"
954
  msgstr ""
955
 
 
956
  msgid "...and more."
957
  msgstr ""
958
 
 
959
  msgid "Click here to visit the WPGlobus Store"
960
  msgstr ""
961
 
 
962
  msgid "Select a language"
963
  msgstr "Выберите язык"
964
 
965
  #. translators: %3$s placeholder for the icon (actual picture).
 
966
  msgid ""
967
  "Place the %1$smain language%2$s of your site at the top of the list by "
968
  "dragging the %3$s icons."
969
  msgstr ""
970
 
971
  #. translators: placeholders for the "strong" HTML tags.
 
972
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
973
  msgstr ""
974
 
975
  #. translators: placeholders for the "strong" HTML tags.
 
976
  msgid "%1$sAdd%2$s more languages using the section below."
977
  msgstr ""
978
 
 
979
  msgid "When done, click the [Save Changes] button."
980
  msgstr "Когда закончите, нажмите кнопку [Сохранить изменения]."
981
 
982
  #. translators: %s - placeholder for the "Save Changes" button text.
 
983
  msgid "Press the %s button to confirm."
984
  msgstr ""
985
 
986
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
 
987
  msgid "-- none --"
988
  msgstr ""
989
 
 
990
  msgid "All menus"
991
  msgstr ""
992
 
 
993
  msgid "Instructions:"
994
  msgstr "Инструкции:"
995
 
 
996
  msgid "(Found in some themes)"
997
  msgstr "(Используется в некоторых темах)"
998
 
 
999
  msgid "Enable"
1000
  msgstr "Включить"
1001
 
 
1002
  msgid "Languages table"
1003
  msgstr "Таблица языков"
1004
 
 
1005
  msgid "Use this table to add, edit or delete languages."
1006
  msgstr ""
1007
  "Используйте эту таблицу, чтобы добавлять, удалять или редактировать языки."
1008
 
 
1009
  msgid "NOTE: you cannot remove the main language."
1010
  msgstr "ВНИМАНИЕ: язык по умолчанию не может быть удален."
1011
 
 
1012
  msgid "WPGlobus is enabled on these Post Types"
1013
  msgstr ""
1014
 
 
1015
  msgid "Uncheck to disable"
1016
  msgstr ""
1017
 
 
1018
  msgid ""
1019
  "Please note that there are post types, which status is managed by other "
1020
  "plugins and cannot be changed here."
1021
  msgstr ""
1022
 
 
1023
  msgid "Post Types"
1024
  msgstr ""
1025
 
 
1026
  msgid ""
1027
  "You should put here only the code provided by WPGlobus Support. Do not write "
1028
  "anything else in the sections below as it might break the functionality of "
1029
  "your website!"
1030
  msgstr ""
1031
 
 
1032
  msgid "Custom Code"
1033
  msgstr ""
1034
 
 
 
 
1035
  msgid "Enabled"
1036
  msgstr ""
1037
 
 
1038
  msgid "Builders support"
1039
  msgstr ""
1040
 
 
1041
  msgid "Builder mode is enabled on these Post Types"
1042
  msgstr ""
1043
 
 
1044
  msgid "Old fashioned language switcher"
1045
  msgstr ""
1046
 
 
1047
  msgid "Block Editor"
1048
  msgstr ""
1049
 
 
1050
  msgid "Block Editor Options"
1051
  msgstr ""
1052
 
 
1053
  msgid ""
1054
  "With the current settings, you will see the following lines in the section "
1055
  "HEAD of your site pages"
1056
  msgstr ""
1057
 
 
1058
  msgid "(example for two languages)"
1059
  msgstr ""
1060
 
 
1061
  msgid ""
1062
  "Tell search engines about localized versions of your pages using the "
1063
  "hreflang tag"
1064
  msgstr ""
1065
 
 
1066
  msgid "Output the hreflang tag as"
1067
  msgstr ""
1068
 
 
1069
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1070
  msgstr ""
1071
 
 
1072
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1073
  msgstr ""
1074
 
 
1075
  msgid "Language code only (en, ru, etc.)"
1076
  msgstr ""
1077
 
 
1078
  msgid "Use the code `x-default` for the main language"
1079
  msgstr ""
1080
 
 
1081
  msgid "Multilingual SEO"
1082
  msgstr ""
1083
 
 
1084
  msgid "Multilingual SEO Options"
1085
  msgstr ""
1086
 
 
1087
  msgid ""
1088
  "With WPGlobus, you can get translations for posts and pages using REST API."
1089
  msgstr ""
1090
 
 
 
 
 
1091
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1092
  msgstr ""
1093
 
 
1094
  msgid ""
1095
  "For demonstration, you can try the first post that WordPress creates at the "
1096
  "initial installation."
1097
  msgstr ""
1098
 
 
1099
  msgid ""
1100
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1101
  "information."
1102
  msgstr ""
1103
 
 
1104
  msgid ""
1105
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1106
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1107
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1108
  msgstr ""
1109
 
 
1110
  msgid "Description:"
1111
  msgstr ""
1112
 
 
 
1113
  msgid "REST API"
1114
  msgstr ""
1115
 
 
1116
  msgid "Translate strings"
1117
  msgstr ""
1118
 
 
1119
  msgid "item"
1120
  msgstr "запись"
1121
 
 
1122
  msgid "items"
1123
  msgstr "записей"
1124
 
 
1125
  msgid "Code"
1126
  msgstr "Код"
1127
 
 
1128
  msgid "Edit"
1129
  msgstr "Изменить"
1130
 
 
1131
  msgid "Delete"
1132
  msgstr "Удалить"
1133
 
 
1134
  msgid "File"
1135
  msgstr "Файл"
1136
 
 
1137
  msgid "Flag"
1138
  msgstr "Флаг"
1139
 
 
1140
  msgid "Language name"
1141
  msgstr "Название языка"
1142
 
 
1143
  msgid "English language name"
1144
  msgstr "Название языка по-английски"
1145
 
 
1146
  msgid "No items found"
1147
  msgstr "Нет записей"
1148
 
 
1149
  msgid "Add new Language"
1150
  msgstr "Добавить новый язык"
1151
 
 
1152
  msgid "No items of this type were found."
1153
  msgstr "Нічога не знойдзена."
1154
 
 
1155
  msgid "Select an item"
1156
  msgstr ""
1157
 
 
1158
  msgid "Multilingual support of this add-on is currently in Beta stage."
1159
  msgstr ""
1160
 
 
1161
  msgid "We do not recommend using it on production sites."
1162
  msgstr ""
1163
 
 
1164
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1165
  msgstr ""
1166
 
 
1167
  msgid "WordPress version"
1168
  msgstr ""
1169
 
 
1170
  msgid "In the WordPress core"
1171
  msgstr ""
1172
 
 
1173
  msgid "Core"
1174
  msgstr ""
1175
 
 
 
1176
  msgid "Current version"
1177
  msgstr ""
1178
 
 
 
1179
  msgid "Stage"
1180
  msgstr ""
1181
 
 
 
1182
  msgid "Status"
1183
  msgstr "Статус"
1184
 
 
1185
  msgid "Block editor"
1186
  msgstr ""
1187
 
 
1188
  msgid "production"
1189
  msgstr ""
1190
 
 
1191
  msgid "List of supported add-ons"
1192
  msgstr ""
1193
 
 
1194
  msgid "Add-on"
1195
  msgstr ""
1196
 
 
1197
  msgid "Supported minimum version"
1198
  msgstr ""
1199
 
 
1200
  msgid "Not installed"
1201
  msgstr ""
1202
 
 
1203
  msgid "Installed, inactive"
1204
  msgstr ""
1205
 
 
1206
  msgid "Active"
1207
  msgstr "Активировано"
1208
 
 
1209
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1210
  msgstr ""
1211
 
 
1212
  msgid "However, some themes do not follow all WordPress standards strictly."
1213
  msgstr ""
1214
 
 
1215
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1216
  msgstr ""
1217
 
 
1218
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1219
  msgstr ""
1220
 
 
1221
  msgid ""
1222
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1223
  "With those themes, WPGlobus Customizer is switched off by default"
1224
  msgstr ""
1225
 
 
1226
  msgid "The currently active theme is"
1227
  msgstr ""
1228
 
 
1229
  msgid "In the current version, WPGlobus Customizer does not support"
1230
  msgstr ""
1231
 
 
1232
  msgid "translation of the navigation menus"
1233
  msgstr ""
1234
 
 
1235
  msgid "to translate, please go to"
1236
  msgstr ""
1237
 
 
1238
  msgid "Go to Customizer"
1239
  msgstr ""
1240
 
 
1241
  msgid "is undefined"
1242
  msgstr ""
1243
 
 
1244
  msgid "is set to"
1245
  msgstr ""
1246
 
 
1247
  msgid "by adding to the file wp-config.php"
1248
  msgstr ""
1249
 
 
1250
  msgid "now"
1251
  msgstr ""
1252
 
 
1253
  msgid "We rely on your support!"
1254
  msgstr "Спасибо за поддержку!"
1255
 
 
1256
  msgid "Please consider a small donation to support the future development."
1257
  msgstr ""
1258
  "Ваше пожертвование будет использовано для дальшейшего развития и улучшения "
1259
  "плагина."
1260
 
 
1261
  msgid "Thank you!"
1262
  msgstr "С благодарностью!"
1263
 
 
1264
  msgid "WPGlobus Plus!"
1265
  msgstr "WPGlobus Плюс!"
1266
 
 
1267
  msgid ""
1268
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1269
  "separate publishing and more! "
1271
  "Расширенные функции и настройки: переводы УРЛов, многоязычный SEO анализ, "
1272
  "раздельная публикация и многое другое! "
1273
 
 
1274
  msgid "Get WPGlobus Plus now!"
1275
  msgstr "Установите WPGlobus Плюс прямо сейчас!"
1276
 
 
1277
  msgid ""
1278
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1279
  "the current version."
1280
  msgstr ""
1281
 
 
1282
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1283
  msgstr ""
1284
 
 
1285
  msgid "WPGlobus warning: "
1286
  msgstr ""
1287
 
 
1288
  msgid "https://github.com/WPGlobus/WPGlobus"
1289
  msgstr "https://github.com/WPGlobus/WPGlobus"
1290
 
 
1291
  msgid ""
1292
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1293
  "widgets and even custom fields - in multiple languages!"
1295
  "Многоязычные сайты на ВордПресс. Редактируйте тексты записей, страниц, меню, "
1296
  "виджетов, и т.п. - на нескольких языках сразу!"
1297
 
 
1298
  msgid "https://wpglobus.com/"
1299
  msgstr "https://wpglobus.com/ru/"
1300
 
languages/wpglobus-bg_BG.po CHANGED
@@ -15,44 +15,25 @@ msgstr ""
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
 
18
- #: includes/admin/central/class-wpglobus-admin-central.php:122,
19
- #: includes/admin/class-wpglobus-about.php:42,
20
- #: includes/admin/class-wpglobus-about.php:117,
21
- #: includes/admin/class-wpglobus-clean.php:600,
22
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
23
  msgid "Guide"
24
  msgstr ""
25
 
26
- #: includes/admin/central/class-wpglobus-admin-central.php:142,
27
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
28
  msgid "WPGlobus Help Desk"
29
  msgstr ""
30
 
31
- #: includes/admin/central/class-wpglobus-admin-central.php:157,
32
- #: includes/admin/class-wpglobus-about.php:36,
33
- #: includes/admin/class-wpglobus-admin-menu.php:22,
34
- #: includes/admin/class-wpglobus-clean.php:606,
35
- #: includes/admin/class-wpglobus-customize-options.php:1293,
36
- #: includes/admin/class-wpglobus-customize-options.php:1261,
37
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
38
  msgid "Add-ons"
39
  msgstr ""
40
 
41
- #: includes/admin/class-wpglobus-about.php:26
42
  msgid "Quick Start"
43
  msgstr ""
44
 
45
- #: includes/admin/class-wpglobus-about.php:48,
46
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
47
  msgid "FAQ"
48
  msgstr ""
49
 
50
- #: includes/admin/class-wpglobus-about.php:59
51
  msgid ""
52
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
53
  msgstr ""
54
 
55
- #: includes/admin/class-wpglobus-about.php:60
56
  msgid ""
57
  "The mbstring extension is required for the full UTF-8 compatibility and "
58
  "better performance. Without it, some parts of WordPress and WPGlobus may "
@@ -60,137 +41,108 @@ msgid ""
60
  "administrator."
61
  msgstr ""
62
 
63
- #: includes/admin/class-wpglobus-about.php:87
64
  msgid "Go to WPGlobus Settings"
65
  msgstr ""
66
 
67
- #: includes/admin/class-wpglobus-about.php:98
68
  msgid "Easy as 1-2-3:"
69
  msgstr ""
70
 
71
- #: includes/admin/class-wpglobus-about.php:101
72
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
73
  msgstr ""
74
 
75
- #: includes/admin/class-wpglobus-about.php:102
76
  msgid ""
77
  "Enter the translations to the posts, pages, categories, tags and menus using "
78
  "a clean and simple interface."
79
  msgstr ""
80
 
81
- #: includes/admin/class-wpglobus-about.php:103
82
  msgid ""
83
  "Switch languages at the front-end using a drop-down menu with language names "
84
  "and country flags."
85
  msgstr ""
86
 
87
- #: includes/admin/class-wpglobus-about.php:111
88
  msgid "Links:"
89
  msgstr ""
90
 
91
- #: includes/admin/class-wpglobus-about.php:119
92
  msgid "FAQs"
93
  msgstr ""
94
 
95
- #: includes/admin/class-wpglobus-about.php:121
96
  msgid "Contact Us"
97
  msgstr ""
98
 
99
- #: includes/admin/class-wpglobus-about.php:123
100
  msgid "Please give us 5 stars!"
101
  msgstr ""
102
 
103
- #: includes/admin/class-wpglobus-about.php:133
104
  msgid "WPGlobus does not translate texts automatically!"
105
  msgstr ""
106
 
107
- #: includes/admin/class-wpglobus-about.php:136
108
  msgid ""
109
  "There are many translation companies and individual translators who can help "
110
  "you write and proofread the texts."
111
  msgstr ""
112
 
113
- #: includes/admin/class-wpglobus-about.php:137
114
  msgid ""
115
  "When you choose a translator, please look at their native language, country "
116
  "of residence, specialization and knowledge of WordPress."
117
  msgstr ""
118
 
119
  #. translators: %s are used to insert HTML link. Keep them in place.
120
- #: includes/admin/class-wpglobus-about.php:143
121
  msgid ""
122
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
123
  "website. This is not an endorsement, just a courtesy. Please contact them "
124
  "directly and let us know how did it work for you!"
125
  msgstr ""
126
 
127
- #: includes/admin/class-wpglobus-about.php:154
128
  msgid "Important notes:"
129
  msgstr ""
130
 
131
- #: includes/admin/class-wpglobus-about.php:159
132
  msgid ""
133
  "WPGlobus only supports the localization URLs in the form of <code>example."
134
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
135
  "com</code> and language queries <code>example.com?lang=xx</code>."
136
  msgstr ""
137
 
138
- #: includes/admin/class-wpglobus-about.php:162
139
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
140
  msgstr ""
141
 
142
- #: includes/admin/class-wpglobus-about.php:163
143
  msgid ""
144
  "They might display some texts with no translation, or with all languages "
145
  "mixed together."
146
  msgstr ""
147
 
148
  #. translators: %s are used to insert HTML link. Keep them in place.
149
- #: includes/admin/class-wpglobus-about.php:167
150
  msgid ""
151
  "Please contact the theme / plugin author. If they are unable to assist, "
152
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
153
  msgstr ""
154
 
155
- #: includes/admin/class-wpglobus-admin-bar-menu.php:124
156
  msgid "Language was set on your profile page"
157
  msgstr ""
158
 
159
- #: includes/admin/class-wpglobus-admin-bar-menu.php:194
160
  msgid "Add"
161
  msgstr ""
162
 
163
- #: includes/admin/class-wpglobus-admin-page.php:32,
164
- #: includes/admin/class-wpglobus-clean.php:585
165
  msgid "Multilingual Everything!"
166
  msgstr ""
167
 
168
- #: includes/admin/class-wpglobus-admin-page.php:34,
169
- #: includes/admin/class-wpglobus-clean.php:588
170
  msgid ""
171
  "WPGlobus is a family of WordPress plugins assisting you in making "
172
  "multilingual WordPress blogs and sites."
173
  msgstr ""
174
 
175
- #: includes/admin/class-wpglobus-clean.php:232
176
  msgid "Remove the WPGlobus settings (not recommended)"
177
  msgstr ""
178
 
179
- #: includes/admin/class-wpglobus-clean.php:595
180
  msgid "Clean-up Tool"
181
  msgstr ""
182
 
183
- #: includes/admin/class-wpglobus-clean.php:609
184
  msgid "Support"
185
  msgstr "Поддръжка"
186
 
187
- #: includes/admin/class-wpglobus-clean.php:614
188
  msgid ""
189
  "WARNING: this operation is non-reversible. It is strongly recommended that "
190
  "you backup your database before proceeding."
191
  msgstr ""
192
 
193
- #: includes/admin/class-wpglobus-clean.php:619
194
  msgid ""
195
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
196
  "By running it, you will remove ALL translations you have entered to your "
@@ -200,7 +152,6 @@ msgid ""
200
  "so on."
201
  msgstr ""
202
 
203
- #: includes/admin/class-wpglobus-clean.php:622
204
  msgid ""
205
  "Make sure that your active theme does not have any code related to WPGlobus. "
206
  "Such code could be added by you or by a 3rd party developer. If that code "
@@ -209,42 +160,34 @@ msgid ""
209
  msgstr ""
210
 
211
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
212
- #: includes/admin/class-wpglobus-clean.php:630
213
  msgid ""
214
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
215
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
216
  msgstr ""
217
 
218
- #: includes/admin/class-wpglobus-clean.php:641
219
  msgid "You are about to clean the content of the following database tables:"
220
  msgstr ""
221
 
222
- #: includes/admin/class-wpglobus-clean.php:649
223
  msgid "The operations log"
224
  msgstr ""
225
 
226
- #: includes/admin/class-wpglobus-clean.php:652
227
  msgid ""
228
  "We are going to write a detailed log of all the database changes performed. "
229
  "It should help in the case you need to restore something important. The log "
230
  "will be written to the file:"
231
  msgstr ""
232
 
233
- #: includes/admin/class-wpglobus-clean.php:662
234
  msgid ""
235
  "Uncheck if you do not want to write the operations log (we recommend to keep "
236
  "it checked)"
237
  msgstr ""
238
 
239
- #: includes/admin/class-wpglobus-clean.php:667
240
  msgid "You have been warned..."
241
  msgstr ""
242
 
243
- #: includes/admin/class-wpglobus-clean.php:669
244
  msgid "Please confirm by checking the box below:"
245
  msgstr ""
246
 
247
- #: includes/admin/class-wpglobus-clean.php:671
248
  msgid ""
249
  "I have read and understood everything written on this page. I am aware that "
250
  "by using this tool I may loose some content of my website. I have made a "
@@ -252,284 +195,189 @@ msgid ""
252
  "responsible for the results."
253
  msgstr ""
254
 
255
- #: includes/admin/class-wpglobus-clean.php:674
256
  msgid "YES, I CONFIRM"
257
  msgstr ""
258
 
259
- #: includes/admin/class-wpglobus-clean.php:678
260
  msgid "Process with the Clean-up"
261
  msgstr ""
262
 
263
- #: includes/admin/class-wpglobus-customize-options.php:73,
264
- #: includes/admin/class-wpglobus-customize-options.php:100,
265
- #: includes/admin/class-wpglobus-customize-options.php:145,
266
- #: includes/admin/class-wpglobus-customize-options.php:183
267
  msgid "Default"
268
  msgstr "По подразбиране"
269
 
270
- #: includes/admin/class-wpglobus-customize-options.php:264
271
  msgid "Section"
272
  msgstr ""
273
 
274
- #: includes/admin/class-wpglobus-customize-options.php:277
275
  msgid "Show all sections"
276
  msgstr ""
277
 
278
- #: includes/admin/class-wpglobus-customize-options.php:279
279
  msgid "Save &amp; Reload"
280
  msgstr ""
281
 
282
- #: includes/admin/class-wpglobus-customize-options.php:553,
283
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:585,
284
- #: includes/class-wpglobus.php:1284, wpglobus.php:12, wpglobus.php:18
285
  msgid "WPGlobus"
286
  msgstr ""
287
 
288
- #: includes/admin/class-wpglobus-customize-options.php:604
289
  msgid ""
290
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
291
  msgstr ""
292
 
293
- #: includes/admin/class-wpglobus-customize-options.php:610
294
  msgid "Fields Settings"
295
  msgstr ""
296
 
297
- #: includes/admin/class-wpglobus-customize-options.php:655
298
  msgid "WPGlobus Settings"
299
  msgstr ""
300
 
301
- #: includes/admin/class-wpglobus-customize-options.php:723
302
  msgid "Help"
303
  msgstr ""
304
 
305
- #: includes/admin/class-wpglobus-customize-options.php:745,
306
- #: includes/options/class-wpglobus-options.php:1176
307
  msgid "Languages"
308
  msgstr ""
309
 
310
- #: includes/admin/class-wpglobus-customize-options.php:765,
311
- #: includes/options/class-wpglobus-options.php:1189
312
  msgid "Enabled Languages"
313
  msgstr ""
314
 
315
- #: includes/admin/class-wpglobus-customize-options.php:767,
316
- #: includes/options/class-wpglobus-options.php:1190
317
  msgid "These languages are currently enabled on your site."
318
  msgstr ""
319
 
320
- #: includes/admin/class-wpglobus-customize-options.php:795,
321
- #: includes/options/class-wpglobus-options.php:1148
322
  msgid "Choose a language you would like to enable."
323
  msgstr ""
324
 
325
- #: includes/admin/class-wpglobus-customize-options.php:797
326
  msgid "Press the [Save & Publish] button to confirm."
327
  msgstr ""
328
 
329
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
330
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
331
- #: includes/admin/class-wpglobus-customize-options.php:801,
332
- #: includes/options/class-wpglobus-options.php:1154
333
  msgid "or Add new Language %1$s here %2$s"
334
  msgstr ""
335
 
336
- #: includes/admin/class-wpglobus-customize-options.php:813,
337
- #: includes/options/class-wpglobus-options.php:1203
338
  msgid "Add Languages"
339
  msgstr ""
340
 
341
- #: includes/admin/class-wpglobus-customize-options.php:833,
342
- #: includes/options/class-wpglobus-options.php:1211
343
  msgid "Language Selector Mode"
344
  msgstr ""
345
 
346
- #: includes/admin/class-wpglobus-customize-options.php:838,
347
- #: includes/options/class-wpglobus-options.php:1214
348
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
349
  msgstr ""
350
 
351
- #: includes/admin/class-wpglobus-customize-options.php:839,
352
- #: includes/options/class-wpglobus-options.php:1215
353
  msgid "Full Name (English, Russian, Italian, etc.)"
354
  msgstr ""
355
 
356
- #: includes/admin/class-wpglobus-customize-options.php:841,
357
- #: includes/options/class-wpglobus-options.php:1216
358
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
359
  msgstr ""
360
 
361
- #: includes/admin/class-wpglobus-customize-options.php:842,
362
- #: includes/options/class-wpglobus-options.php:1217
363
  msgid "Flags only"
364
  msgstr ""
365
 
366
- #: includes/admin/class-wpglobus-customize-options.php:844,
367
- #: includes/options/class-wpglobus-options.php:1212
368
  msgid ""
369
  "Choose the way language name and country flag are shown in the drop-down menu"
370
  msgstr ""
371
 
372
- #: includes/admin/class-wpglobus-customize-options.php:879
373
  msgid "select navigation menu"
374
  msgstr ""
375
 
376
- #: includes/admin/class-wpglobus-customize-options.php:915,
377
- #: includes/admin/class-wpglobus-customize-options.php:888,
378
- #: includes/options/class-wpglobus-options.php:1230
379
  msgid "Language Selector Menu"
380
  msgstr ""
381
 
382
- #: includes/admin/class-wpglobus-customize-options.php:920,
383
- #: includes/admin/class-wpglobus-customize-options.php:899,
384
- #: includes/options/class-wpglobus-options.php:1231
385
  msgid "Choose the navigation menu where the language selector will be shown"
386
  msgstr ""
387
 
388
- #: includes/admin/class-wpglobus-customize-options.php:898
389
  msgid "No menus have been created yet. Create some."
390
  msgstr ""
391
 
392
- #: includes/admin/class-wpglobus-customize-options.php:940,
393
- #: includes/options/class-wpglobus-options.php:1241
394
  msgid "\"All Pages\" menus Language selector"
395
  msgstr ""
396
 
397
- #: includes/admin/class-wpglobus-customize-options.php:943,
398
- #: includes/options/class-wpglobus-options.php:1243
399
  msgid ""
400
  "Adds language selector to the menus that automatically list all existing "
401
  "pages (using `wp_list_pages`)"
402
  msgstr ""
403
 
404
- #: includes/admin/class-wpglobus-customize-options.php:960,
405
- #: includes/options/class-wpglobus-options.php:1356
406
  msgid "Custom CSS"
407
  msgstr ""
408
 
409
- #: includes/admin/class-wpglobus-customize-options.php:964
410
  msgid ""
411
  "Here you can enter the CSS rules to adjust the language selector menu for "
412
  "your theme. Look at the examples in the `style-samples.css` file."
413
  msgstr ""
414
 
415
- #: includes/admin/class-wpglobus-customize-options.php:983
416
  msgid "Post types"
417
  msgstr ""
418
 
419
- #: includes/admin/class-wpglobus-customize-options.php:1091
420
  msgid "Uncheck to disable WPGlobus"
421
  msgstr ""
422
 
423
- #: includes/admin/class-wpglobus-customize-options.php:1125,
424
- #: includes/options/class-wpglobus-options.php:1424
425
  msgid "Redirect"
426
  msgstr ""
427
 
428
- #: includes/admin/class-wpglobus-customize-options.php:1150,
429
- #: includes/options/class-wpglobus-options.php:1419
430
  msgid "Choose the language automatically, based on:"
431
  msgstr ""
432
 
433
- #: includes/admin/class-wpglobus-customize-options.php:1152,
434
- #: includes/options/class-wpglobus-options.php:1409
435
  msgid "Preferred language set in the browser"
436
  msgstr ""
437
 
438
- #: includes/admin/class-wpglobus-customize-options.php:1153,
439
- #: includes/options/class-wpglobus-options.php:1396
440
  msgid ""
441
  "When a user comes to the site for the first time, try to find the best "
442
  "matching language version of the page."
443
  msgstr ""
444
 
445
- #: includes/admin/class-wpglobus-customize-options.php:1214,
446
- #: includes/admin/class-wpglobus-customize-options.php:1234,
447
- #: includes/admin/class-wpglobus-customize-options.php:1192,
448
- #: includes/options/class-wpglobus-options.php:1368
449
  msgid "Custom JS Code"
450
  msgstr ""
451
 
452
- #: includes/admin/class-wpglobus-customize-options.php:1232,
453
- #: includes/admin/class-wpglobus-customize-options.php:1276
454
  msgid "Title"
455
  msgstr ""
456
 
457
- #: includes/admin/class-wpglobus-customize-options.php:1235
458
  msgid "(Paste your JS code here.)"
459
  msgstr ""
460
 
461
- #: includes/admin/class-wpglobus-customize-options.php:1184
462
  msgid ""
463
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
464
  "version 4.9 or later."
465
  msgstr ""
466
 
467
- #: includes/admin/class-wpglobus-customize-options.php:1186
468
  msgid "With your version of WordPress, please use the"
469
  msgstr ""
470
 
471
- #: includes/admin/class-wpglobus-customize-options.php:1188
472
  msgid "WPGlobus Settings page"
473
  msgstr ""
474
 
475
- #: includes/admin/class-wpglobus-customize-options.php:1277
476
  msgid "Label"
477
  msgstr ""
478
 
479
- #: includes/admin/class-wpglobus-customize-options.php:1281
480
  msgid "Description"
481
  msgstr "Описание"
482
 
483
- #: includes/admin/class-wpglobus-customize-options.php:1345
484
  msgid ""
485
  "Here you can specify which fields should be considered multilingual by "
486
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
487
  msgstr ""
488
 
489
- #: includes/admin/class-wpglobus-customize-options.php:1351,
490
- #: includes/options/class-wpglobus-options.php:608
491
  msgid "Thank you for installing WPGlobus!"
492
  msgstr ""
493
 
494
- #: includes/admin/class-wpglobus-customize-options.php:1355,
495
- #: includes/options/class-wpglobus-options.php:612
496
  msgid "Read About WPGlobus"
497
  msgstr ""
498
 
499
- #: includes/admin/class-wpglobus-customize-options.php:1358
500
  msgid ""
501
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
502
  msgstr ""
503
 
504
- #: includes/admin/class-wpglobus-customize-options.php:1363,
505
- #: includes/options/class-wpglobus-options.php:648
506
  msgid ""
507
  "Should you have any questions or comments, please do not hesitate to contact "
508
  "us."
509
  msgstr ""
510
 
511
- #: includes/admin/class-wpglobus-customize-options.php:1367,
512
- #: includes/options/class-wpglobus-options.php:652
513
  msgid "Sincerely Yours,"
514
  msgstr ""
515
 
516
- #: includes/admin/class-wpglobus-customize-options.php:1369,
517
- #: includes/options/class-wpglobus-options.php:654,
518
- #: includes/options/wpglobus-options-header.php:34
519
  msgid "The WPGlobus Team"
520
  msgstr ""
521
 
522
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
523
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
524
- #: includes/admin/class-wpglobus-customize-options.php:1388,
525
- #: includes/options/class-wpglobus-options.php:689
526
  msgid ""
527
  "We would hate to see you go. If something goes wrong, do not uninstall "
528
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
529
  msgstr ""
530
 
531
- #: includes/admin/class-wpglobus-customize-options.php:1395,
532
- #: includes/options/class-wpglobus-options.php:696
533
  msgid ""
534
  "Please note that if you deactivate WPGlobus, your site will show all the "
535
  "languages together, mixed up. You will need to remove all translations, "
@@ -538,8 +386,6 @@ msgstr ""
538
 
539
  #. translators: %s: link to the Clean-up Tool
540
  #. translators: %s: link to the Clean-up Tool.
541
- #: includes/admin/class-wpglobus-customize-options.php:1400,
542
- #: includes/options/class-wpglobus-options.php:700
543
  msgid ""
544
  "If there are just a few places, you should edit them manually. To "
545
  "automatically remove all translations at once, you can use the %s. WARNING: "
@@ -549,595 +395,447 @@ msgstr ""
549
 
550
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
551
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
552
- #: includes/admin/class-wpglobus-customize-options.php:1403,
553
- #: includes/options/class-wpglobus-options.php:677
554
  msgid "%1$sClean-up Tool%2$s"
555
  msgstr ""
556
 
557
  #. translators: %s: name of current theme
558
- #: includes/admin/class-wpglobus-customize-options.php:1415
559
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
560
  msgstr ""
561
 
562
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
563
- #: includes/admin/class-wpglobus-customize-options.php:1421
564
  msgid "Please use %1$sWPGlobus options page%2$s instead."
565
  msgstr ""
566
 
567
- #: includes/admin/class-wpglobus-customize-options.php:1485
568
  msgid "Expand/Shrink"
569
  msgstr ""
570
 
571
- #: includes/admin/class-wpglobus-dashboard-news.php:43,
572
- #: includes/admin/class-wpglobus-dashboard-news.php:59
573
  msgid "WPGlobus News"
574
  msgstr ""
575
 
576
- #: includes/admin/class-wpglobus-language-edit.php:197,
577
- #: includes/admin/class-wpglobus-language-edit.php:192
578
  msgid "Options updated"
579
  msgstr ""
580
 
581
- #: includes/admin/class-wpglobus-language-edit.php:272
582
  msgid "Please enter a language code!"
583
  msgstr ""
584
 
585
- #: includes/admin/class-wpglobus-language-edit.php:276
586
  msgid "Language code already exists!"
587
  msgstr ""
588
 
589
- #: includes/admin/class-wpglobus-language-edit.php:280
590
  msgid "Please specify the language flag!"
591
  msgstr ""
592
 
593
- #: includes/admin/class-wpglobus-language-edit.php:284
594
  msgid "Please enter the language name!"
595
  msgstr ""
596
 
597
- #: includes/admin/class-wpglobus-language-edit.php:288
598
  msgid "Please enter the language name in English!"
599
  msgstr ""
600
 
601
- #: includes/admin/class-wpglobus-language-edit.php:292
602
  msgid "Please enter the locale!"
603
  msgstr ""
604
 
605
- #: includes/admin/class-wpglobus-language-edit.php:354
606
  msgid "Add Language"
607
  msgstr ""
608
 
609
- #: includes/admin/class-wpglobus-language-edit.php:351,
610
- #: includes/admin/class-wpglobus-language-edit.php:462,
611
- #: includes/admin/class-wpglobus-language-edit.php:455
612
  msgid "Delete Language"
613
  msgstr ""
614
 
615
- #: includes/admin/class-wpglobus-language-edit.php:349
616
  msgid "Edit Language"
617
  msgstr ""
618
 
619
- #: includes/admin/class-wpglobus-language-edit.php:384
620
  msgid "Language Code"
621
  msgstr ""
622
 
623
- #: includes/admin/class-wpglobus-language-edit.php:391
624
  msgid ""
625
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
626
  msgstr ""
627
 
628
- #: includes/admin/class-wpglobus-language-edit.php:396
629
  msgid "Language flag"
630
  msgstr ""
631
 
632
- #: includes/admin/class-wpglobus-language-edit.php:412
633
  msgid "Name"
634
  msgstr "Име"
635
 
636
- #: includes/admin/class-wpglobus-language-edit.php:417
637
  msgid ""
638
  "The name of the language in its native alphabet. (Examples: English, Русский)"
639
  msgstr ""
640
 
641
- #: includes/admin/class-wpglobus-language-edit.php:422
642
  msgid "Name in English"
643
  msgstr ""
644
 
645
- #: includes/admin/class-wpglobus-language-edit.php:427
646
  msgid "The name of the language in English"
647
  msgstr ""
648
 
649
- #: includes/admin/class-wpglobus-language-edit.php:432,
650
- #: includes/options/fields/table/class-wpglobus-languages-table.php:115
651
  msgid "Locale"
652
  msgstr ""
653
 
654
- #: includes/admin/class-wpglobus-language-edit.php:437
655
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
656
  msgstr ""
657
 
658
- #: includes/admin/class-wpglobus-language-edit.php:460
659
  msgid "Are you sure you want to delete?"
660
  msgstr ""
661
 
662
- #: includes/admin/class-wpglobus-language-edit.php:447
663
  msgid "Save Changes"
664
  msgstr ""
665
 
666
- #: includes/admin/class-wpglobus-language-edit.php:470
667
  msgid "Back to the WPGlobus Settings"
668
  msgstr ""
669
 
670
- #: includes/admin/class-wpglobus-plugin-install.php:308
671
  msgid "Current Version"
672
  msgstr ""
673
 
674
- #: includes/admin/class-wpglobus-plugin-install.php:309
675
  msgid "Get it now!"
676
  msgstr ""
677
 
678
- #: includes/admin/class-wpglobus-plugin-install.php:310
679
  msgid "Premium add-on"
680
  msgstr ""
681
 
682
- #: includes/admin/class-wpglobus-plugin-install.php:311,
683
- #: includes/options/fields/table/class-wpglobus-languages-table.php:472
684
  msgid "Installed"
685
  msgstr ""
686
 
687
  #. translators: placeholders are for the HTML tags.
688
- #: includes/admin/class-wpglobus-plugin-install.php:319
689
  msgid ""
690
  "If you have already purchased a WPGlobus premium extension, please read "
691
  "%1$sthe installation instructions here%2$s"
692
  msgstr ""
693
 
694
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
695
- #: includes/options/class-wpglobus-options.php:726
696
  msgid "Help Desk"
697
  msgstr ""
698
 
699
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:185
700
  msgid "Email not sent. Please fill in the entire form."
701
  msgstr ""
702
 
703
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:195
704
  msgid ""
705
  "Email not sent. Please verify that your name and email are entered correctly."
706
  msgstr ""
707
 
708
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:216
709
  msgid "Email sent."
710
  msgstr ""
711
 
712
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
713
  msgid "Thank you for using WPGlobus!"
714
  msgstr ""
715
 
716
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
717
  msgid "Our Support Team is here to answer your questions or concerns."
718
  msgstr ""
719
 
720
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
721
  msgid "To help us serve you better:"
722
  msgstr ""
723
 
724
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
725
  msgid ""
726
  "Please check if the problem persists if you switch to a standard WordPress "
727
  "theme."
728
  msgstr ""
729
 
730
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
731
  msgid ""
732
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
733
  msgstr ""
734
 
735
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
736
  msgid "Please fill in and submit the contact form:"
737
  msgstr ""
738
 
739
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
740
  msgid "Please make sure the email address is correct."
741
  msgstr ""
742
 
743
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
744
  msgid "Subject"
745
  msgstr "Тема"
746
 
747
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
748
  msgid "Short description of the problem"
749
  msgstr ""
750
 
751
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
752
  msgid "Detailed description"
753
  msgstr ""
754
 
755
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
756
  msgid "Technical Information"
757
  msgstr ""
758
 
759
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
760
  msgid "This information helps us to find the problem source"
761
  msgstr ""
762
 
763
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:161
764
  msgid ""
765
  "Alternatively, please email %s. Do not forget to copy and paste the "
766
  "technical information to your email message."
767
  msgstr ""
768
 
769
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:89
770
  msgid "WPGlobus Recommends:"
771
  msgstr ""
772
 
773
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:98,
774
- #: includes/options/class-wpglobus-options.php:933
775
  msgid "WPGlobus for WooCommerce"
776
  msgstr ""
777
 
778
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:102
779
  msgid ""
780
  "Translate product titles and descriptions, product categories, tags and "
781
  "attributes."
782
  msgstr ""
783
 
784
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:107
785
  msgid "Get it now:"
786
  msgstr ""
787
 
788
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:117
789
  msgid "WooCommerce Multi-Currency"
790
  msgstr ""
791
 
792
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:121
793
  msgid "Accept multiple currencies in your online store!"
794
  msgstr ""
795
 
796
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:126,
797
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:185
798
  msgid "Check it out:"
799
  msgstr ""
800
 
801
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:195
802
  msgid "To translate permalinks, please activate the module Slug."
803
  msgstr ""
804
 
805
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:183
806
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
807
  msgstr ""
808
 
809
- #: includes/builders/class-wpglobus-builder.php:278,
810
- #: includes/class-wpglobus.php:3577
811
  msgid "Save draft before using extra language."
812
  msgstr ""
813
 
814
- #: includes/builders/class-wpglobus-builder.php:371
815
  msgid "Builder"
816
  msgstr ""
817
 
818
- #: includes/builders/class-wpglobus-builder.php:395
819
  msgid "Сompatibility Settings"
820
  msgstr ""
821
 
822
  #. translators: ON/OFF status of WPGlobus on the edit pages.
823
  #. translators: ON/OFF status of WPGlobus on the edit pages.
824
- #: includes/builders/elementor/class-wpglobus-elementor.php:255,
825
- #: includes/class-wpglobus.php:1263
826
  msgid "ON"
827
  msgstr ""
828
 
829
- #: includes/builders/elementor/class-wpglobus-elementor.php:256,
830
- #: includes/class-wpglobus.php:1264
831
  msgid "Turn off"
832
  msgstr ""
833
 
834
- #: includes/builders/elementor/class-wpglobus-elementor.php:250,
835
- #: includes/class-wpglobus.php:1258
836
  msgid "OFF"
837
  msgstr ""
838
 
839
- #: includes/builders/elementor/class-wpglobus-elementor.php:251,
840
- #: includes/class-wpglobus.php:1259
841
  msgid "Turn on"
842
  msgstr ""
843
 
844
- #: includes/builders/elementor/class-wpglobus-elementor.php:281
845
  msgid "Elementor"
846
  msgstr ""
847
 
848
- #: includes/builders/elementor/class-wpglobus-elementor.php:508
849
  msgid "WPGlobus languages"
850
  msgstr ""
851
 
852
- #: includes/builders/elementor/class-wpglobus-elementor.php:514
853
  msgid "current"
854
  msgstr ""
855
 
856
- #: includes/builders/elementor/class-wpglobus-elementor.php:675
857
  msgid ""
858
  "WPGlobus provides multilingual support for Elementor only when the option "
859
  "%1$s%2$s%3$s is set to %4$s."
860
  msgstr ""
861
 
862
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:228
863
  msgid "Before switching the language, please save draft or publish."
864
  msgstr ""
865
 
866
  #. translators: Metabox title FOR language.
867
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:318
868
  msgctxt "filter__seo_meta_box_title"
869
  msgid "for"
870
  msgstr ""
871
 
872
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:392
873
  msgid "Page is being reloaded. Please wait..."
874
  msgstr ""
875
 
876
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:393
877
  msgid ""
878
  "Before switching the language, please save draft or publish, then reload "
879
  "page."
880
  msgstr ""
881
 
882
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
883
  msgid ""
884
  "WPGlobus provides multilingual support for Elementor only when the option "
885
  "`CSS Print Method` is set to `External File`."
886
  msgstr ""
887
 
888
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
889
  msgid "Open Elementor Settings page"
890
  msgstr ""
891
 
892
- #: includes/class-wpglobus-widget.php:27
893
  msgid "WPGlobus widget"
894
  msgstr ""
895
 
896
- #: includes/class-wpglobus-widget.php:29
897
  msgid "Add language switcher"
898
  msgstr ""
899
 
900
- #: includes/class-wpglobus-widget.php:32
901
  msgid "Flags"
902
  msgstr ""
903
 
904
- #: includes/class-wpglobus-widget.php:33
905
  msgid "List"
906
  msgstr "Списък"
907
 
908
- #: includes/class-wpglobus-widget.php:34
909
  msgid "List with flags"
910
  msgstr ""
911
 
912
- #: includes/class-wpglobus-widget.php:35
913
  msgid "Select"
914
  msgstr ""
915
 
916
- #: includes/class-wpglobus-widget.php:36
917
  msgid "Select with language code"
918
  msgstr ""
919
 
920
- #: includes/class-wpglobus-widget.php:37
921
  msgid "Dropdown"
922
  msgstr ""
923
 
924
- #: includes/class-wpglobus-widget.php:38
925
  msgid "Dropdown with flags"
926
  msgstr ""
927
 
928
- #: includes/class-wpglobus-widget.php:264
929
  msgid "Selector type"
930
  msgstr ""
931
 
932
- #: includes/class-wpglobus.php:1447
933
  msgid "You cannot disable the main language."
934
  msgstr ""
935
 
936
- #: includes/class-wpglobus.php:1672
937
  msgid "Need a multilingual slug?"
938
  msgstr ""
939
 
940
- #: includes/class-wpglobus.php:1655
941
  msgid "*) Available after the menu is saved."
942
  msgstr ""
943
 
944
- #: includes/class-wpglobus.php:4025
945
  msgid "You must enable Pretty Permalinks to use WPGlobus."
946
  msgstr ""
947
 
948
- #: includes/class-wpglobus.php:4027
949
  msgid ""
950
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
951
  "default option."
952
  msgstr ""
953
 
954
- #: includes/options/class-wpglobus-options.php:281
955
  msgid "Language Selector Menu Style"
956
  msgstr ""
957
 
958
- #: includes/options/class-wpglobus-options.php:282,
959
- #: includes/options/class-wpglobus-options.php:802,
960
- #: includes/options/class-wpglobus-options.php:871
961
  msgid "WPGlobus Plus"
962
  msgstr ""
963
 
964
- #: includes/options/class-wpglobus-options.php:283
965
  msgid "Drop-down languages menu or Flat (in one line)"
966
  msgstr ""
967
 
968
- #: includes/options/class-wpglobus-options.php:286
969
  msgid "Do not change"
970
  msgstr ""
971
 
972
- #: includes/options/class-wpglobus-options.php:287
973
  msgid "Drop-down (vertical)"
974
  msgstr ""
975
 
976
- #: includes/options/class-wpglobus-options.php:288
977
  msgid "Flat (horizontal)"
978
  msgstr ""
979
 
980
- #: includes/options/class-wpglobus-options.php:343
981
  msgid ""
982
  "If you see this message then your browser may not display the WPGlobus "
983
  "Settings panel properly. Please try another browser."
984
  msgstr ""
985
 
986
- #: includes/options/class-wpglobus-options.php:599,
987
- #: includes/options/class-wpglobus-options.php:1577
988
  msgid "Сompatibility"
989
  msgstr ""
990
 
991
  #. translators: placeholders for "strong" tags.
992
- #: includes/options/class-wpglobus-options.php:616
993
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
994
  msgstr ""
995
 
996
  #. translators: placeholders for "strong" tags.
997
- #: includes/options/class-wpglobus-options.php:619
998
  msgid ""
999
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
1000
  "the language attributes: name, code, flag icon, etc."
1001
  msgstr ""
1002
 
1003
- #: includes/options/class-wpglobus-options.php:622
1004
  msgid "Important notes"
1005
  msgstr "Важни забележки"
1006
 
1007
  #. translators: placeholders for "strong" tags.
1008
- #: includes/options/class-wpglobus-options.php:624
1009
  msgid "Version %1$s1.9.17%2$s "
1010
  msgstr ""
1011
 
1012
  #. translators: placeholders for "strong" tags.
1013
- #: includes/options/class-wpglobus-options.php:627
1014
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
1015
  msgstr ""
1016
 
1017
  #. translators: placeholders for "strong" tags; compatibility tab link.
1018
- #: includes/options/class-wpglobus-options.php:630
1019
  msgid ""
1020
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
1021
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
1022
  msgstr ""
1023
 
1024
  #. translators: placeholders for "strong" tags; compatibility tab link.
1025
- #: includes/options/class-wpglobus-options.php:633
1026
  msgid ""
1027
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
1028
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
1029
  msgstr ""
1030
 
1031
  #. translators: placeholders for "strong" tags.
1032
- #: includes/options/class-wpglobus-options.php:637
1033
  msgid "Version %1$s2.2.11%2$s "
1034
  msgstr ""
1035
 
1036
- #: includes/options/class-wpglobus-options.php:639
1037
  msgid "Starting from this version"
1038
  msgstr ""
1039
 
1040
  #. translators: placeholders for "strong" tags.
1041
- #: includes/options/class-wpglobus-options.php:642
1042
  msgid ""
1043
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
1044
  "(CPT)."
1045
  msgstr ""
1046
 
1047
  #. translators: placeholders for "strong" tags.
1048
- #: includes/options/class-wpglobus-options.php:645
1049
  msgid ""
1050
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
1051
  "the %1$s[%3$s]%2$s tab."
1052
  msgstr ""
1053
 
1054
- #: includes/options/class-wpglobus-options.php:662
1055
  msgid "Welcome!"
1056
  msgstr ""
1057
 
1058
- #: includes/options/class-wpglobus-options.php:685
1059
  msgid "Deactivating / Uninstalling"
1060
  msgstr ""
1061
 
1062
- #: includes/options/class-wpglobus-options.php:711
1063
  msgid "Uninstall"
1064
  msgstr ""
1065
 
1066
- #: includes/options/class-wpglobus-options.php:741
1067
  msgid "All add-ons"
1068
  msgstr ""
1069
 
1070
- #: includes/options/class-wpglobus-options.php:756
1071
  msgid "Mobile Menu"
1072
  msgstr ""
1073
 
1074
- #: includes/options/class-wpglobus-options.php:771
1075
  msgid "Language Widgets"
1076
  msgstr ""
1077
 
1078
- #: includes/options/class-wpglobus-options.php:841
1079
  msgid "We Recommend..."
1080
  msgstr ""
1081
 
1082
- #: includes/options/class-wpglobus-options.php:873
1083
  msgid ""
1084
  "Our premium add-on, WPGlobus Plus, will add several features to your "
1085
  "website, such as:"
1086
  msgstr ""
1087
 
1088
- #: includes/options/class-wpglobus-options.php:876
1089
  msgid ""
1090
  "- Ability to write a post in one language and immediately publish it, not "
1091
  "waiting for the translation to other languages;"
1092
  msgstr ""
1093
 
1094
- #: includes/options/class-wpglobus-options.php:879
1095
  msgid "- Set different URLs for each translation;"
1096
  msgstr ""
1097
 
1098
- #: includes/options/class-wpglobus-options.php:882
1099
  msgid ""
1100
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
1101
  "for each translation;"
1102
  msgstr ""
1103
 
1104
- #: includes/options/class-wpglobus-options.php:885
1105
  msgid "- and more..."
1106
  msgstr ""
1107
 
1108
- #: includes/options/class-wpglobus-options.php:888,
1109
- #: includes/options/class-wpglobus-options.php:945,
1110
- #: includes/options/class-wpglobus-options.php:1003
1111
  msgid "Click here to download"
1112
  msgstr ""
1113
 
1114
- #: includes/options/class-wpglobus-options.php:936
1115
  msgid ""
1116
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
1117
  "translate your blog posts and pages to many languages."
1118
  msgstr ""
1119
 
1120
- #: includes/options/class-wpglobus-options.php:939
1121
  msgid "The next step is to translate your WooCommerce-based store!"
1122
  msgstr ""
1123
 
1124
- #: includes/options/class-wpglobus-options.php:942
1125
  msgid ""
1126
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
1127
  "translate product titles and descriptions, categories, tags and attributes."
1128
  msgstr ""
1129
 
1130
- #: includes/options/class-wpglobus-options.php:989
1131
  msgid "Multi-currency"
1132
  msgstr ""
1133
 
1134
- #: includes/options/class-wpglobus-options.php:992
1135
  msgid ""
1136
  "Your WooCommerce-powered store is set to show prices and accept payments in "
1137
  "a single currency only."
1138
  msgstr ""
1139
 
1140
- #: includes/options/class-wpglobus-options.php:996
1141
  msgid ""
1142
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
1143
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
@@ -1145,493 +843,374 @@ msgid ""
1145
  "positioning for global growth!"
1146
  msgstr ""
1147
 
1148
- #: includes/options/class-wpglobus-options.php:1000
1149
  msgid ""
1150
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
1151
  "re-calculating prices on-the-fly."
1152
  msgstr ""
1153
 
1154
- #: includes/options/class-wpglobus-options.php:1037
1155
  msgid "WPGlobus Premium Add-ons"
1156
  msgstr ""
1157
 
1158
- #: includes/options/class-wpglobus-options.php:1039
1159
  msgid ""
1160
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
1161
  "you will be able to:"
1162
  msgstr ""
1163
 
1164
- #: includes/options/class-wpglobus-options.php:1044
1165
  msgid ""
1166
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
1167
  "моя-страница and so on);"
1168
  msgstr ""
1169
 
1170
- #: includes/options/class-wpglobus-options.php:1047
1171
  msgid ""
1172
  "Postpone translation to some languages and <strong>publish only the "
1173
  "translated texts</strong>;"
1174
  msgstr ""
1175
 
1176
- #: includes/options/class-wpglobus-options.php:1050
1177
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
1178
  msgstr ""
1179
 
1180
- #: includes/options/class-wpglobus-options.php:1053
1181
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
1182
  msgstr ""
1183
 
1184
- #: includes/options/class-wpglobus-options.php:1056
1185
  msgid ""
1186
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
1187
  "strong>;"
1188
  msgstr ""
1189
 
1190
- #: includes/options/class-wpglobus-options.php:1060
1191
  msgid "...and more."
1192
  msgstr ""
1193
 
1194
- #: includes/options/class-wpglobus-options.php:1063
1195
  msgid "Click here to visit the WPGlobus Store"
1196
  msgstr ""
1197
 
1198
- #: includes/options/class-wpglobus-options.php:1104
1199
  msgid "Select a language"
1200
  msgstr ""
1201
 
1202
  #. translators: %3$s placeholder for the icon (actual picture).
1203
- #: includes/options/class-wpglobus-options.php:1133
1204
  msgid ""
1205
  "Place the %1$smain language%2$s of your site at the top of the list by "
1206
  "dragging the %3$s icons."
1207
  msgstr ""
1208
 
1209
  #. translators: placeholders for the "strong" HTML tags.
1210
- #: includes/options/class-wpglobus-options.php:1136
1211
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
1212
  msgstr ""
1213
 
1214
  #. translators: placeholders for the "strong" HTML tags.
1215
- #: includes/options/class-wpglobus-options.php:1139
1216
  msgid "%1$sAdd%2$s more languages using the section below."
1217
  msgstr ""
1218
 
1219
- #: includes/options/class-wpglobus-options.php:1140
1220
  msgid "When done, click the [Save Changes] button."
1221
  msgstr ""
1222
 
1223
  #. translators: %s - placeholder for the "Save Changes" button text.
1224
- #: includes/options/class-wpglobus-options.php:1151
1225
  msgid "Press the %s button to confirm."
1226
  msgstr ""
1227
 
1228
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
1229
- #: includes/options/class-wpglobus-options.php:1168
1230
  msgid "-- none --"
1231
  msgstr ""
1232
 
1233
- #: includes/options/class-wpglobus-options.php:1169
1234
  msgid "All menus"
1235
  msgstr ""
1236
 
1237
- #: includes/options/class-wpglobus-options.php:1182
1238
  msgid "Instructions:"
1239
  msgstr ""
1240
 
1241
- #: includes/options/class-wpglobus-options.php:1242
1242
  msgid "(Found in some themes)"
1243
  msgstr ""
1244
 
1245
- #: includes/options/class-wpglobus-options.php:1244
1246
  msgid "Enable"
1247
  msgstr "Позволи"
1248
 
1249
- #: includes/options/class-wpglobus-options.php:1259
1250
  msgid "Languages table"
1251
  msgstr ""
1252
 
1253
- #: includes/options/class-wpglobus-options.php:1265
1254
  msgid "Use this table to add, edit or delete languages."
1255
  msgstr ""
1256
 
1257
- #: includes/options/class-wpglobus-options.php:1266
1258
  msgid "NOTE: you cannot remove the main language."
1259
  msgstr ""
1260
 
1261
- #: includes/options/class-wpglobus-options.php:1314
1262
  msgid "WPGlobus is enabled on these Post Types"
1263
  msgstr ""
1264
 
1265
- #: includes/options/class-wpglobus-options.php:1315
1266
  msgid "Uncheck to disable"
1267
  msgstr ""
1268
 
1269
- #: includes/options/class-wpglobus-options.php:1316
1270
  msgid ""
1271
  "Please note that there are post types, which status is managed by other "
1272
  "plugins and cannot be changed here."
1273
  msgstr ""
1274
 
1275
- #: includes/options/class-wpglobus-options.php:1321
1276
  msgid "Post Types"
1277
  msgstr ""
1278
 
1279
- #: includes/options/class-wpglobus-options.php:1337
1280
  msgid ""
1281
  "You should put here only the code provided by WPGlobus Support. Do not write "
1282
  "anything else in the sections below as it might break the functionality of "
1283
  "your website!"
1284
  msgstr ""
1285
 
1286
- #: includes/options/class-wpglobus-options.php:1378
1287
  msgid "Custom Code"
1288
  msgstr ""
1289
 
1290
- #: includes/options/class-wpglobus-options.php:1486,
1291
- #: includes/options/class-wpglobus-options.php:1618,
1292
- #: includes/options/class-wpglobus-options.php:1729
1293
  msgid "Enabled"
1294
  msgstr "Включен"
1295
 
1296
- #: includes/options/class-wpglobus-options.php:1499
1297
  msgid "Builders support"
1298
  msgstr ""
1299
 
1300
- #: includes/options/class-wpglobus-options.php:1551
1301
  msgid "Builder mode is enabled on these Post Types"
1302
  msgstr ""
1303
 
1304
- #: includes/options/class-wpglobus-options.php:1617
1305
  msgid "Old fashioned language switcher"
1306
  msgstr ""
1307
 
1308
- #: includes/options/class-wpglobus-options.php:1623
1309
  msgid "Block Editor"
1310
  msgstr ""
1311
 
1312
- #: includes/options/class-wpglobus-options.php:1624
1313
  msgid "Block Editor Options"
1314
  msgstr ""
1315
 
1316
- #: includes/options/class-wpglobus-options.php:1653
1317
  msgid ""
1318
  "With the current settings, you will see the following lines in the section "
1319
  "HEAD of your site pages"
1320
  msgstr ""
1321
 
1322
- #: includes/options/class-wpglobus-options.php:1655
1323
  msgid "(example for two languages)"
1324
  msgstr ""
1325
 
1326
- #: includes/options/class-wpglobus-options.php:1702
1327
  msgid ""
1328
  "Tell search engines about localized versions of your pages using the "
1329
  "hreflang tag"
1330
  msgstr ""
1331
 
1332
- #: includes/options/class-wpglobus-options.php:1711
1333
  msgid "Output the hreflang tag as"
1334
  msgstr ""
1335
 
1336
- #: includes/options/class-wpglobus-options.php:1714
1337
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1338
  msgstr ""
1339
 
1340
- #: includes/options/class-wpglobus-options.php:1715
1341
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1342
  msgstr ""
1343
 
1344
- #: includes/options/class-wpglobus-options.php:1716
1345
  msgid "Language code only (en, ru, etc.)"
1346
  msgstr ""
1347
 
1348
- #: includes/options/class-wpglobus-options.php:1728
1349
  msgid "Use the code `x-default` for the main language"
1350
  msgstr ""
1351
 
1352
- #: includes/options/class-wpglobus-options.php:1734
1353
  msgid "Multilingual SEO"
1354
  msgstr ""
1355
 
1356
- #: includes/options/class-wpglobus-options.php:1735
1357
  msgid "Multilingual SEO Options"
1358
  msgstr ""
1359
 
1360
- #: includes/options/class-wpglobus-options.php:1772
1361
  msgid ""
1362
  "With WPGlobus, you can get translations for posts and pages using REST API."
1363
  msgstr ""
1364
 
1365
- #: includes/options/class-wpglobus-options.php:1800,
1366
- #: includes/options/class-wpglobus-options.php:1808,
1367
- #: includes/options/class-wpglobus-options.php:1780,
1368
- #: includes/options/class-wpglobus-options.php:1789
1369
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1370
  msgstr ""
1371
 
1372
- #: includes/options/class-wpglobus-options.php:1777
1373
  msgid ""
1374
  "For demonstration, you can try the first post that WordPress creates at the "
1375
  "initial installation."
1376
  msgstr ""
1377
 
1378
- #: includes/options/class-wpglobus-options.php:1819
1379
  msgid ""
1380
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1381
  "information."
1382
  msgstr ""
1383
 
1384
- #: includes/options/class-wpglobus-options.php:1826
1385
  msgid ""
1386
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1387
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1388
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1389
  msgstr ""
1390
 
1391
- #: includes/options/class-wpglobus-options.php:1839
1392
  msgid "Description:"
1393
  msgstr ""
1394
 
1395
- #: includes/options/class-wpglobus-options.php:1846,
1396
- #: includes/options/class-wpglobus-options.php:1847
1397
  msgid "REST API"
1398
  msgstr ""
1399
 
1400
- #: includes/options/class-wpglobus-options.php:2180
1401
  msgid "Translate strings"
1402
  msgstr ""
1403
 
1404
- #: includes/options/fields/table/class-wpglobus-languages-table.php:66
1405
  msgid "item"
1406
  msgstr ""
1407
 
1408
- #: includes/options/fields/table/class-wpglobus-languages-table.php:68
1409
  msgid "items"
1410
  msgstr "артикула"
1411
 
1412
- #: includes/options/fields/table/class-wpglobus-languages-table.php:88
1413
  msgid "Code"
1414
  msgstr ""
1415
 
1416
- #: includes/options/fields/table/class-wpglobus-languages-table.php:94
1417
  msgid "Edit"
1418
  msgstr ""
1419
 
1420
- #: includes/options/fields/table/class-wpglobus-languages-table.php:99
1421
  msgid "Delete"
1422
  msgstr "Изтрий"
1423
 
1424
- #: includes/options/fields/table/class-wpglobus-languages-table.php:105
1425
  msgid "File"
1426
  msgstr ""
1427
 
1428
- #: includes/options/fields/table/class-wpglobus-languages-table.php:110
1429
  msgid "Flag"
1430
  msgstr ""
1431
 
1432
- #: includes/options/fields/table/class-wpglobus-languages-table.php:120
1433
  msgid "Language name"
1434
  msgstr ""
1435
 
1436
- #: includes/options/fields/table/class-wpglobus-languages-table.php:125
1437
  msgid "English language name"
1438
  msgstr ""
1439
 
1440
- #: includes/options/fields/table/class-wpglobus-languages-table.php:151
1441
  msgid "No items found"
1442
  msgstr ""
1443
 
1444
- #: includes/options/fields/table/class-wpglobus-languages-table.php:164
1445
  msgid "Add new Language"
1446
  msgstr ""
1447
 
1448
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:164
1449
  msgid "No items of this type were found."
1450
  msgstr ""
1451
 
1452
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:107
1453
  msgid "Select an item"
1454
  msgstr ""
1455
 
1456
- #: includes/options/templates/compatibility-beta.php:15
1457
  msgid "Multilingual support of this add-on is currently in Beta stage."
1458
  msgstr ""
1459
 
1460
- #: includes/options/templates/compatibility-beta.php:17
1461
  msgid "We do not recommend using it on production sites."
1462
  msgstr ""
1463
 
1464
- #: includes/options/templates/compatibility-beta.php:23
1465
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1466
  msgstr ""
1467
 
1468
- #: includes/options/templates/compatibility.php:69
1469
  msgid "WordPress version"
1470
  msgstr ""
1471
 
1472
- #: includes/options/templates/compatibility.php:44
1473
  msgid "In the WordPress core"
1474
  msgstr ""
1475
 
1476
- #: includes/options/templates/compatibility.php:46
1477
  msgid "Core"
1478
  msgstr ""
1479
 
1480
- #: includes/options/templates/compatibility.php:52,
1481
- #: includes/options/templates/compatibility.php:79
1482
  msgid "Current version"
1483
  msgstr ""
1484
 
1485
- #: includes/options/templates/compatibility.php:53,
1486
- #: includes/options/templates/compatibility.php:81
1487
  msgid "Stage"
1488
  msgstr ""
1489
 
1490
- #: includes/options/templates/compatibility.php:54,
1491
- #: includes/options/templates/compatibility.php:82
1492
  msgid "Status"
1493
  msgstr "Статус"
1494
 
1495
- #: includes/options/templates/compatibility.php:60
1496
  msgid "Block editor"
1497
  msgstr ""
1498
 
1499
- #: includes/options/templates/compatibility.php:62
1500
  msgid "production"
1501
  msgstr ""
1502
 
1503
- #: includes/options/templates/compatibility.php:73
1504
  msgid "List of supported add-ons"
1505
  msgstr ""
1506
 
1507
- #: includes/options/templates/compatibility.php:78
1508
  msgid "Add-on"
1509
  msgstr ""
1510
 
1511
- #: includes/options/templates/compatibility.php:80
1512
  msgid "Supported minimum version"
1513
  msgstr ""
1514
 
1515
- #: includes/options/templates/compatibility.php:105
1516
  msgid "Not installed"
1517
  msgstr ""
1518
 
1519
- #: includes/options/templates/compatibility.php:102
1520
  msgid "Installed, inactive"
1521
  msgstr ""
1522
 
1523
- #: includes/options/templates/compatibility.php:100
1524
  msgid "Active"
1525
  msgstr "Активиране"
1526
 
1527
- #: includes/options/templates/customize-intro.php:35
1528
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1529
  msgstr ""
1530
 
1531
- #: includes/options/templates/customize-intro.php:39
1532
  msgid "However, some themes do not follow all WordPress standards strictly."
1533
  msgstr ""
1534
 
1535
- #: includes/options/templates/customize-intro.php:41
1536
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1537
  msgstr ""
1538
 
1539
- #: includes/options/templates/customize-intro.php:45
1540
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1541
  msgstr ""
1542
 
1543
- #: includes/options/templates/customize-intro.php:53
1544
  msgid ""
1545
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1546
  "With those themes, WPGlobus Customizer is switched off by default"
1547
  msgstr ""
1548
 
1549
- #: includes/options/templates/customize-intro.php:60
1550
  msgid "The currently active theme is"
1551
  msgstr ""
1552
 
1553
- #: includes/options/templates/customize-intro.php:66
1554
  msgid "In the current version, WPGlobus Customizer does not support"
1555
  msgstr ""
1556
 
1557
- #: includes/options/templates/customize-intro.php:70
1558
  msgid "translation of the navigation menus"
1559
  msgstr ""
1560
 
1561
- #: includes/options/templates/customize-intro.php:72
1562
  msgid "to translate, please go to"
1563
  msgstr ""
1564
 
1565
- #: includes/options/templates/customize-intro.php:81
1566
  msgid "Go to Customizer"
1567
  msgstr ""
1568
 
1569
- #: includes/options/templates/customize-intro.php:88
1570
  msgid "is undefined"
1571
  msgstr ""
1572
 
1573
- #: includes/options/templates/customize-intro.php:85
1574
  msgid "is set to"
1575
  msgstr ""
1576
 
1577
- #: includes/options/templates/customize-intro.php:94
1578
  msgid "by adding to the file wp-config.php"
1579
  msgstr ""
1580
 
1581
- #: includes/options/templates/customize-intro.php:96
1582
  msgid "now"
1583
  msgstr ""
1584
 
1585
- #: includes/options/wpglobus-options-header.php:25
1586
  msgid "We rely on your support!"
1587
  msgstr ""
1588
 
1589
- #: includes/options/wpglobus-options-header.php:28
1590
  msgid "Please consider a small donation to support the future development."
1591
  msgstr ""
1592
 
1593
- #: includes/options/wpglobus-options-header.php:32
1594
  msgid "Thank you!"
1595
  msgstr ""
1596
 
1597
- #: includes/options/wpglobus-options-header.php:55
1598
  msgid "WPGlobus Plus!"
1599
  msgstr ""
1600
 
1601
- #: includes/options/wpglobus-options-header.php:58
1602
  msgid ""
1603
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1604
  "separate publishing and more! "
1605
  msgstr ""
1606
 
1607
- #: includes/options/wpglobus-options-header.php:64
1608
  msgid "Get WPGlobus Plus now!"
1609
  msgstr ""
1610
 
1611
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1612
  msgid ""
1613
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1614
  "the current version."
1615
  msgstr ""
1616
 
1617
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1618
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1619
  msgstr ""
1620
 
1621
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1622
  msgid "WPGlobus warning: "
1623
  msgstr ""
1624
 
1625
- #: wpglobus.php:13
1626
  msgid "https://github.com/WPGlobus/WPGlobus"
1627
  msgstr ""
1628
 
1629
- #: wpglobus.php:14
1630
  msgid ""
1631
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1632
  "widgets and even custom fields - in multiple languages!"
1633
  msgstr ""
1634
 
1635
- #: wpglobus.php:19
1636
  msgid "https://wpglobus.com/"
1637
  msgstr ""
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
 
 
 
 
 
 
18
  msgid "Guide"
19
  msgstr ""
20
 
 
 
21
  msgid "WPGlobus Help Desk"
22
  msgstr ""
23
 
 
 
 
 
 
 
 
24
  msgid "Add-ons"
25
  msgstr ""
26
 
 
27
  msgid "Quick Start"
28
  msgstr ""
29
 
 
 
30
  msgid "FAQ"
31
  msgstr ""
32
 
 
33
  msgid ""
34
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
35
  msgstr ""
36
 
 
37
  msgid ""
38
  "The mbstring extension is required for the full UTF-8 compatibility and "
39
  "better performance. Without it, some parts of WordPress and WPGlobus may "
41
  "administrator."
42
  msgstr ""
43
 
 
44
  msgid "Go to WPGlobus Settings"
45
  msgstr ""
46
 
 
47
  msgid "Easy as 1-2-3:"
48
  msgstr ""
49
 
 
50
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
51
  msgstr ""
52
 
 
53
  msgid ""
54
  "Enter the translations to the posts, pages, categories, tags and menus using "
55
  "a clean and simple interface."
56
  msgstr ""
57
 
 
58
  msgid ""
59
  "Switch languages at the front-end using a drop-down menu with language names "
60
  "and country flags."
61
  msgstr ""
62
 
 
63
  msgid "Links:"
64
  msgstr ""
65
 
 
66
  msgid "FAQs"
67
  msgstr ""
68
 
 
69
  msgid "Contact Us"
70
  msgstr ""
71
 
 
72
  msgid "Please give us 5 stars!"
73
  msgstr ""
74
 
 
75
  msgid "WPGlobus does not translate texts automatically!"
76
  msgstr ""
77
 
 
78
  msgid ""
79
  "There are many translation companies and individual translators who can help "
80
  "you write and proofread the texts."
81
  msgstr ""
82
 
 
83
  msgid ""
84
  "When you choose a translator, please look at their native language, country "
85
  "of residence, specialization and knowledge of WordPress."
86
  msgstr ""
87
 
88
  #. translators: %s are used to insert HTML link. Keep them in place.
 
89
  msgid ""
90
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
91
  "website. This is not an endorsement, just a courtesy. Please contact them "
92
  "directly and let us know how did it work for you!"
93
  msgstr ""
94
 
 
95
  msgid "Important notes:"
96
  msgstr ""
97
 
 
98
  msgid ""
99
  "WPGlobus only supports the localization URLs in the form of <code>example."
100
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
101
  "com</code> and language queries <code>example.com?lang=xx</code>."
102
  msgstr ""
103
 
 
104
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
105
  msgstr ""
106
 
 
107
  msgid ""
108
  "They might display some texts with no translation, or with all languages "
109
  "mixed together."
110
  msgstr ""
111
 
112
  #. translators: %s are used to insert HTML link. Keep them in place.
 
113
  msgid ""
114
  "Please contact the theme / plugin author. If they are unable to assist, "
115
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
116
  msgstr ""
117
 
 
118
  msgid "Language was set on your profile page"
119
  msgstr ""
120
 
 
121
  msgid "Add"
122
  msgstr ""
123
 
 
 
124
  msgid "Multilingual Everything!"
125
  msgstr ""
126
 
 
 
127
  msgid ""
128
  "WPGlobus is a family of WordPress plugins assisting you in making "
129
  "multilingual WordPress blogs and sites."
130
  msgstr ""
131
 
 
132
  msgid "Remove the WPGlobus settings (not recommended)"
133
  msgstr ""
134
 
 
135
  msgid "Clean-up Tool"
136
  msgstr ""
137
 
 
138
  msgid "Support"
139
  msgstr "Поддръжка"
140
 
 
141
  msgid ""
142
  "WARNING: this operation is non-reversible. It is strongly recommended that "
143
  "you backup your database before proceeding."
144
  msgstr ""
145
 
 
146
  msgid ""
147
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
148
  "By running it, you will remove ALL translations you have entered to your "
152
  "so on."
153
  msgstr ""
154
 
 
155
  msgid ""
156
  "Make sure that your active theme does not have any code related to WPGlobus. "
157
  "Such code could be added by you or by a 3rd party developer. If that code "
160
  msgstr ""
161
 
162
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
 
163
  msgid ""
164
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
165
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
166
  msgstr ""
167
 
 
168
  msgid "You are about to clean the content of the following database tables:"
169
  msgstr ""
170
 
 
171
  msgid "The operations log"
172
  msgstr ""
173
 
 
174
  msgid ""
175
  "We are going to write a detailed log of all the database changes performed. "
176
  "It should help in the case you need to restore something important. The log "
177
  "will be written to the file:"
178
  msgstr ""
179
 
 
180
  msgid ""
181
  "Uncheck if you do not want to write the operations log (we recommend to keep "
182
  "it checked)"
183
  msgstr ""
184
 
 
185
  msgid "You have been warned..."
186
  msgstr ""
187
 
 
188
  msgid "Please confirm by checking the box below:"
189
  msgstr ""
190
 
 
191
  msgid ""
192
  "I have read and understood everything written on this page. I am aware that "
193
  "by using this tool I may loose some content of my website. I have made a "
195
  "responsible for the results."
196
  msgstr ""
197
 
 
198
  msgid "YES, I CONFIRM"
199
  msgstr ""
200
 
 
201
  msgid "Process with the Clean-up"
202
  msgstr ""
203
 
 
 
 
 
204
  msgid "Default"
205
  msgstr "По подразбиране"
206
 
 
207
  msgid "Section"
208
  msgstr ""
209
 
 
210
  msgid "Show all sections"
211
  msgstr ""
212
 
 
213
  msgid "Save &amp; Reload"
214
  msgstr ""
215
 
 
 
 
216
  msgid "WPGlobus"
217
  msgstr ""
218
 
 
219
  msgid ""
220
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
221
  msgstr ""
222
 
 
223
  msgid "Fields Settings"
224
  msgstr ""
225
 
 
226
  msgid "WPGlobus Settings"
227
  msgstr ""
228
 
 
229
  msgid "Help"
230
  msgstr ""
231
 
 
 
232
  msgid "Languages"
233
  msgstr ""
234
 
 
 
235
  msgid "Enabled Languages"
236
  msgstr ""
237
 
 
 
238
  msgid "These languages are currently enabled on your site."
239
  msgstr ""
240
 
 
 
241
  msgid "Choose a language you would like to enable."
242
  msgstr ""
243
 
 
244
  msgid "Press the [Save & Publish] button to confirm."
245
  msgstr ""
246
 
247
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
248
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
 
 
249
  msgid "or Add new Language %1$s here %2$s"
250
  msgstr ""
251
 
 
 
252
  msgid "Add Languages"
253
  msgstr ""
254
 
 
 
255
  msgid "Language Selector Mode"
256
  msgstr ""
257
 
 
 
258
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
259
  msgstr ""
260
 
 
 
261
  msgid "Full Name (English, Russian, Italian, etc.)"
262
  msgstr ""
263
 
 
 
264
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
265
  msgstr ""
266
 
 
 
267
  msgid "Flags only"
268
  msgstr ""
269
 
 
 
270
  msgid ""
271
  "Choose the way language name and country flag are shown in the drop-down menu"
272
  msgstr ""
273
 
 
274
  msgid "select navigation menu"
275
  msgstr ""
276
 
 
 
 
277
  msgid "Language Selector Menu"
278
  msgstr ""
279
 
 
 
 
280
  msgid "Choose the navigation menu where the language selector will be shown"
281
  msgstr ""
282
 
 
283
  msgid "No menus have been created yet. Create some."
284
  msgstr ""
285
 
 
 
286
  msgid "\"All Pages\" menus Language selector"
287
  msgstr ""
288
 
 
 
289
  msgid ""
290
  "Adds language selector to the menus that automatically list all existing "
291
  "pages (using `wp_list_pages`)"
292
  msgstr ""
293
 
 
 
294
  msgid "Custom CSS"
295
  msgstr ""
296
 
 
297
  msgid ""
298
  "Here you can enter the CSS rules to adjust the language selector menu for "
299
  "your theme. Look at the examples in the `style-samples.css` file."
300
  msgstr ""
301
 
 
302
  msgid "Post types"
303
  msgstr ""
304
 
 
305
  msgid "Uncheck to disable WPGlobus"
306
  msgstr ""
307
 
 
 
308
  msgid "Redirect"
309
  msgstr ""
310
 
 
 
311
  msgid "Choose the language automatically, based on:"
312
  msgstr ""
313
 
 
 
314
  msgid "Preferred language set in the browser"
315
  msgstr ""
316
 
 
 
317
  msgid ""
318
  "When a user comes to the site for the first time, try to find the best "
319
  "matching language version of the page."
320
  msgstr ""
321
 
 
 
 
 
322
  msgid "Custom JS Code"
323
  msgstr ""
324
 
 
 
325
  msgid "Title"
326
  msgstr ""
327
 
 
328
  msgid "(Paste your JS code here.)"
329
  msgstr ""
330
 
 
331
  msgid ""
332
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
333
  "version 4.9 or later."
334
  msgstr ""
335
 
 
336
  msgid "With your version of WordPress, please use the"
337
  msgstr ""
338
 
 
339
  msgid "WPGlobus Settings page"
340
  msgstr ""
341
 
 
342
  msgid "Label"
343
  msgstr ""
344
 
 
345
  msgid "Description"
346
  msgstr "Описание"
347
 
 
348
  msgid ""
349
  "Here you can specify which fields should be considered multilingual by "
350
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
351
  msgstr ""
352
 
 
 
353
  msgid "Thank you for installing WPGlobus!"
354
  msgstr ""
355
 
 
 
356
  msgid "Read About WPGlobus"
357
  msgstr ""
358
 
 
359
  msgid ""
360
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
361
  msgstr ""
362
 
 
 
363
  msgid ""
364
  "Should you have any questions or comments, please do not hesitate to contact "
365
  "us."
366
  msgstr ""
367
 
 
 
368
  msgid "Sincerely Yours,"
369
  msgstr ""
370
 
 
 
 
371
  msgid "The WPGlobus Team"
372
  msgstr ""
373
 
374
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
375
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
376
  msgid ""
377
  "We would hate to see you go. If something goes wrong, do not uninstall "
378
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
379
  msgstr ""
380
 
 
 
381
  msgid ""
382
  "Please note that if you deactivate WPGlobus, your site will show all the "
383
  "languages together, mixed up. You will need to remove all translations, "
386
 
387
  #. translators: %s: link to the Clean-up Tool
388
  #. translators: %s: link to the Clean-up Tool.
 
 
389
  msgid ""
390
  "If there are just a few places, you should edit them manually. To "
391
  "automatically remove all translations at once, you can use the %s. WARNING: "
395
 
396
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
397
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
398
  msgid "%1$sClean-up Tool%2$s"
399
  msgstr ""
400
 
401
  #. translators: %s: name of current theme
 
402
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
403
  msgstr ""
404
 
405
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
406
  msgid "Please use %1$sWPGlobus options page%2$s instead."
407
  msgstr ""
408
 
 
409
  msgid "Expand/Shrink"
410
  msgstr ""
411
 
 
 
412
  msgid "WPGlobus News"
413
  msgstr ""
414
 
 
 
415
  msgid "Options updated"
416
  msgstr ""
417
 
 
418
  msgid "Please enter a language code!"
419
  msgstr ""
420
 
 
421
  msgid "Language code already exists!"
422
  msgstr ""
423
 
 
424
  msgid "Please specify the language flag!"
425
  msgstr ""
426
 
 
427
  msgid "Please enter the language name!"
428
  msgstr ""
429
 
 
430
  msgid "Please enter the language name in English!"
431
  msgstr ""
432
 
 
433
  msgid "Please enter the locale!"
434
  msgstr ""
435
 
 
436
  msgid "Add Language"
437
  msgstr ""
438
 
 
 
 
439
  msgid "Delete Language"
440
  msgstr ""
441
 
 
442
  msgid "Edit Language"
443
  msgstr ""
444
 
 
445
  msgid "Language Code"
446
  msgstr ""
447
 
 
448
  msgid ""
449
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
450
  msgstr ""
451
 
 
452
  msgid "Language flag"
453
  msgstr ""
454
 
 
455
  msgid "Name"
456
  msgstr "Име"
457
 
 
458
  msgid ""
459
  "The name of the language in its native alphabet. (Examples: English, Русский)"
460
  msgstr ""
461
 
 
462
  msgid "Name in English"
463
  msgstr ""
464
 
 
465
  msgid "The name of the language in English"
466
  msgstr ""
467
 
 
 
468
  msgid "Locale"
469
  msgstr ""
470
 
 
471
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
472
  msgstr ""
473
 
 
474
  msgid "Are you sure you want to delete?"
475
  msgstr ""
476
 
 
477
  msgid "Save Changes"
478
  msgstr ""
479
 
 
480
  msgid "Back to the WPGlobus Settings"
481
  msgstr ""
482
 
 
483
  msgid "Current Version"
484
  msgstr ""
485
 
 
486
  msgid "Get it now!"
487
  msgstr ""
488
 
 
489
  msgid "Premium add-on"
490
  msgstr ""
491
 
 
 
492
  msgid "Installed"
493
  msgstr ""
494
 
495
  #. translators: placeholders are for the HTML tags.
 
496
  msgid ""
497
  "If you have already purchased a WPGlobus premium extension, please read "
498
  "%1$sthe installation instructions here%2$s"
499
  msgstr ""
500
 
 
 
501
  msgid "Help Desk"
502
  msgstr ""
503
 
 
504
  msgid "Email not sent. Please fill in the entire form."
505
  msgstr ""
506
 
 
507
  msgid ""
508
  "Email not sent. Please verify that your name and email are entered correctly."
509
  msgstr ""
510
 
 
511
  msgid "Email sent."
512
  msgstr ""
513
 
 
514
  msgid "Thank you for using WPGlobus!"
515
  msgstr ""
516
 
 
517
  msgid "Our Support Team is here to answer your questions or concerns."
518
  msgstr ""
519
 
 
520
  msgid "To help us serve you better:"
521
  msgstr ""
522
 
 
523
  msgid ""
524
  "Please check if the problem persists if you switch to a standard WordPress "
525
  "theme."
526
  msgstr ""
527
 
 
528
  msgid ""
529
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
530
  msgstr ""
531
 
 
532
  msgid "Please fill in and submit the contact form:"
533
  msgstr ""
534
 
 
535
  msgid "Please make sure the email address is correct."
536
  msgstr ""
537
 
 
538
  msgid "Subject"
539
  msgstr "Тема"
540
 
 
541
  msgid "Short description of the problem"
542
  msgstr ""
543
 
 
544
  msgid "Detailed description"
545
  msgstr ""
546
 
 
547
  msgid "Technical Information"
548
  msgstr ""
549
 
 
550
  msgid "This information helps us to find the problem source"
551
  msgstr ""
552
 
 
553
  msgid ""
554
  "Alternatively, please email %s. Do not forget to copy and paste the "
555
  "technical information to your email message."
556
  msgstr ""
557
 
 
558
  msgid "WPGlobus Recommends:"
559
  msgstr ""
560
 
 
 
561
  msgid "WPGlobus for WooCommerce"
562
  msgstr ""
563
 
 
564
  msgid ""
565
  "Translate product titles and descriptions, product categories, tags and "
566
  "attributes."
567
  msgstr ""
568
 
 
569
  msgid "Get it now:"
570
  msgstr ""
571
 
 
572
  msgid "WooCommerce Multi-Currency"
573
  msgstr ""
574
 
 
575
  msgid "Accept multiple currencies in your online store!"
576
  msgstr ""
577
 
 
 
578
  msgid "Check it out:"
579
  msgstr ""
580
 
 
581
  msgid "To translate permalinks, please activate the module Slug."
582
  msgstr ""
583
 
 
584
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
585
  msgstr ""
586
 
 
 
587
  msgid "Save draft before using extra language."
588
  msgstr ""
589
 
 
590
  msgid "Builder"
591
  msgstr ""
592
 
 
593
  msgid "Сompatibility Settings"
594
  msgstr ""
595
 
596
  #. translators: ON/OFF status of WPGlobus on the edit pages.
597
  #. translators: ON/OFF status of WPGlobus on the edit pages.
 
 
598
  msgid "ON"
599
  msgstr ""
600
 
 
 
601
  msgid "Turn off"
602
  msgstr ""
603
 
 
 
604
  msgid "OFF"
605
  msgstr ""
606
 
 
 
607
  msgid "Turn on"
608
  msgstr ""
609
 
 
610
  msgid "Elementor"
611
  msgstr ""
612
 
 
613
  msgid "WPGlobus languages"
614
  msgstr ""
615
 
 
616
  msgid "current"
617
  msgstr ""
618
 
 
619
  msgid ""
620
  "WPGlobus provides multilingual support for Elementor only when the option "
621
  "%1$s%2$s%3$s is set to %4$s."
622
  msgstr ""
623
 
 
624
  msgid "Before switching the language, please save draft or publish."
625
  msgstr ""
626
 
627
  #. translators: Metabox title FOR language.
 
628
  msgctxt "filter__seo_meta_box_title"
629
  msgid "for"
630
  msgstr ""
631
 
 
632
  msgid "Page is being reloaded. Please wait..."
633
  msgstr ""
634
 
 
635
  msgid ""
636
  "Before switching the language, please save draft or publish, then reload "
637
  "page."
638
  msgstr ""
639
 
 
640
  msgid ""
641
  "WPGlobus provides multilingual support for Elementor only when the option "
642
  "`CSS Print Method` is set to `External File`."
643
  msgstr ""
644
 
 
645
  msgid "Open Elementor Settings page"
646
  msgstr ""
647
 
 
648
  msgid "WPGlobus widget"
649
  msgstr ""
650
 
 
651
  msgid "Add language switcher"
652
  msgstr ""
653
 
 
654
  msgid "Flags"
655
  msgstr ""
656
 
 
657
  msgid "List"
658
  msgstr "Списък"
659
 
 
660
  msgid "List with flags"
661
  msgstr ""
662
 
 
663
  msgid "Select"
664
  msgstr ""
665
 
 
666
  msgid "Select with language code"
667
  msgstr ""
668
 
 
669
  msgid "Dropdown"
670
  msgstr ""
671
 
 
672
  msgid "Dropdown with flags"
673
  msgstr ""
674
 
 
675
  msgid "Selector type"
676
  msgstr ""
677
 
 
678
  msgid "You cannot disable the main language."
679
  msgstr ""
680
 
 
681
  msgid "Need a multilingual slug?"
682
  msgstr ""
683
 
 
684
  msgid "*) Available after the menu is saved."
685
  msgstr ""
686
 
 
687
  msgid "You must enable Pretty Permalinks to use WPGlobus."
688
  msgstr ""
689
 
 
690
  msgid ""
691
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
692
  "default option."
693
  msgstr ""
694
 
 
695
  msgid "Language Selector Menu Style"
696
  msgstr ""
697
 
 
 
 
698
  msgid "WPGlobus Plus"
699
  msgstr ""
700
 
 
701
  msgid "Drop-down languages menu or Flat (in one line)"
702
  msgstr ""
703
 
 
704
  msgid "Do not change"
705
  msgstr ""
706
 
 
707
  msgid "Drop-down (vertical)"
708
  msgstr ""
709
 
 
710
  msgid "Flat (horizontal)"
711
  msgstr ""
712
 
 
713
  msgid ""
714
  "If you see this message then your browser may not display the WPGlobus "
715
  "Settings panel properly. Please try another browser."
716
  msgstr ""
717
 
 
 
718
  msgid "Сompatibility"
719
  msgstr ""
720
 
721
  #. translators: placeholders for "strong" tags.
 
722
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
723
  msgstr ""
724
 
725
  #. translators: placeholders for "strong" tags.
 
726
  msgid ""
727
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
728
  "the language attributes: name, code, flag icon, etc."
729
  msgstr ""
730
 
 
731
  msgid "Important notes"
732
  msgstr "Важни забележки"
733
 
734
  #. translators: placeholders for "strong" tags.
 
735
  msgid "Version %1$s1.9.17%2$s "
736
  msgstr ""
737
 
738
  #. translators: placeholders for "strong" tags.
 
739
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
740
  msgstr ""
741
 
742
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
743
  msgid ""
744
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
745
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
746
  msgstr ""
747
 
748
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
749
  msgid ""
750
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
751
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
752
  msgstr ""
753
 
754
  #. translators: placeholders for "strong" tags.
 
755
  msgid "Version %1$s2.2.11%2$s "
756
  msgstr ""
757
 
 
758
  msgid "Starting from this version"
759
  msgstr ""
760
 
761
  #. translators: placeholders for "strong" tags.
 
762
  msgid ""
763
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
764
  "(CPT)."
765
  msgstr ""
766
 
767
  #. translators: placeholders for "strong" tags.
 
768
  msgid ""
769
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
770
  "the %1$s[%3$s]%2$s tab."
771
  msgstr ""
772
 
 
773
  msgid "Welcome!"
774
  msgstr ""
775
 
 
776
  msgid "Deactivating / Uninstalling"
777
  msgstr ""
778
 
 
779
  msgid "Uninstall"
780
  msgstr ""
781
 
 
782
  msgid "All add-ons"
783
  msgstr ""
784
 
 
785
  msgid "Mobile Menu"
786
  msgstr ""
787
 
 
788
  msgid "Language Widgets"
789
  msgstr ""
790
 
 
791
  msgid "We Recommend..."
792
  msgstr ""
793
 
 
794
  msgid ""
795
  "Our premium add-on, WPGlobus Plus, will add several features to your "
796
  "website, such as:"
797
  msgstr ""
798
 
 
799
  msgid ""
800
  "- Ability to write a post in one language and immediately publish it, not "
801
  "waiting for the translation to other languages;"
802
  msgstr ""
803
 
 
804
  msgid "- Set different URLs for each translation;"
805
  msgstr ""
806
 
 
807
  msgid ""
808
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
809
  "for each translation;"
810
  msgstr ""
811
 
 
812
  msgid "- and more..."
813
  msgstr ""
814
 
 
 
 
815
  msgid "Click here to download"
816
  msgstr ""
817
 
 
818
  msgid ""
819
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
820
  "translate your blog posts and pages to many languages."
821
  msgstr ""
822
 
 
823
  msgid "The next step is to translate your WooCommerce-based store!"
824
  msgstr ""
825
 
 
826
  msgid ""
827
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
828
  "translate product titles and descriptions, categories, tags and attributes."
829
  msgstr ""
830
 
 
831
  msgid "Multi-currency"
832
  msgstr ""
833
 
 
834
  msgid ""
835
  "Your WooCommerce-powered store is set to show prices and accept payments in "
836
  "a single currency only."
837
  msgstr ""
838
 
 
839
  msgid ""
840
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
841
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
843
  "positioning for global growth!"
844
  msgstr ""
845
 
 
846
  msgid ""
847
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
848
  "re-calculating prices on-the-fly."
849
  msgstr ""
850
 
 
851
  msgid "WPGlobus Premium Add-ons"
852
  msgstr ""
853
 
 
854
  msgid ""
855
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
856
  "you will be able to:"
857
  msgstr ""
858
 
 
859
  msgid ""
860
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
861
  "моя-страница and so on);"
862
  msgstr ""
863
 
 
864
  msgid ""
865
  "Postpone translation to some languages and <strong>publish only the "
866
  "translated texts</strong>;"
867
  msgstr ""
868
 
 
869
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
870
  msgstr ""
871
 
 
872
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
873
  msgstr ""
874
 
 
875
  msgid ""
876
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
877
  "strong>;"
878
  msgstr ""
879
 
 
880
  msgid "...and more."
881
  msgstr ""
882
 
 
883
  msgid "Click here to visit the WPGlobus Store"
884
  msgstr ""
885
 
 
886
  msgid "Select a language"
887
  msgstr ""
888
 
889
  #. translators: %3$s placeholder for the icon (actual picture).
 
890
  msgid ""
891
  "Place the %1$smain language%2$s of your site at the top of the list by "
892
  "dragging the %3$s icons."
893
  msgstr ""
894
 
895
  #. translators: placeholders for the "strong" HTML tags.
 
896
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
897
  msgstr ""
898
 
899
  #. translators: placeholders for the "strong" HTML tags.
 
900
  msgid "%1$sAdd%2$s more languages using the section below."
901
  msgstr ""
902
 
 
903
  msgid "When done, click the [Save Changes] button."
904
  msgstr ""
905
 
906
  #. translators: %s - placeholder for the "Save Changes" button text.
 
907
  msgid "Press the %s button to confirm."
908
  msgstr ""
909
 
910
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
 
911
  msgid "-- none --"
912
  msgstr ""
913
 
 
914
  msgid "All menus"
915
  msgstr ""
916
 
 
917
  msgid "Instructions:"
918
  msgstr ""
919
 
 
920
  msgid "(Found in some themes)"
921
  msgstr ""
922
 
 
923
  msgid "Enable"
924
  msgstr "Позволи"
925
 
 
926
  msgid "Languages table"
927
  msgstr ""
928
 
 
929
  msgid "Use this table to add, edit or delete languages."
930
  msgstr ""
931
 
 
932
  msgid "NOTE: you cannot remove the main language."
933
  msgstr ""
934
 
 
935
  msgid "WPGlobus is enabled on these Post Types"
936
  msgstr ""
937
 
 
938
  msgid "Uncheck to disable"
939
  msgstr ""
940
 
 
941
  msgid ""
942
  "Please note that there are post types, which status is managed by other "
943
  "plugins and cannot be changed here."
944
  msgstr ""
945
 
 
946
  msgid "Post Types"
947
  msgstr ""
948
 
 
949
  msgid ""
950
  "You should put here only the code provided by WPGlobus Support. Do not write "
951
  "anything else in the sections below as it might break the functionality of "
952
  "your website!"
953
  msgstr ""
954
 
 
955
  msgid "Custom Code"
956
  msgstr ""
957
 
 
 
 
958
  msgid "Enabled"
959
  msgstr "Включен"
960
 
 
961
  msgid "Builders support"
962
  msgstr ""
963
 
 
964
  msgid "Builder mode is enabled on these Post Types"
965
  msgstr ""
966
 
 
967
  msgid "Old fashioned language switcher"
968
  msgstr ""
969
 
 
970
  msgid "Block Editor"
971
  msgstr ""
972
 
 
973
  msgid "Block Editor Options"
974
  msgstr ""
975
 
 
976
  msgid ""
977
  "With the current settings, you will see the following lines in the section "
978
  "HEAD of your site pages"
979
  msgstr ""
980
 
 
981
  msgid "(example for two languages)"
982
  msgstr ""
983
 
 
984
  msgid ""
985
  "Tell search engines about localized versions of your pages using the "
986
  "hreflang tag"
987
  msgstr ""
988
 
 
989
  msgid "Output the hreflang tag as"
990
  msgstr ""
991
 
 
992
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
993
  msgstr ""
994
 
 
995
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
996
  msgstr ""
997
 
 
998
  msgid "Language code only (en, ru, etc.)"
999
  msgstr ""
1000
 
 
1001
  msgid "Use the code `x-default` for the main language"
1002
  msgstr ""
1003
 
 
1004
  msgid "Multilingual SEO"
1005
  msgstr ""
1006
 
 
1007
  msgid "Multilingual SEO Options"
1008
  msgstr ""
1009
 
 
1010
  msgid ""
1011
  "With WPGlobus, you can get translations for posts and pages using REST API."
1012
  msgstr ""
1013
 
 
 
 
 
1014
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1015
  msgstr ""
1016
 
 
1017
  msgid ""
1018
  "For demonstration, you can try the first post that WordPress creates at the "
1019
  "initial installation."
1020
  msgstr ""
1021
 
 
1022
  msgid ""
1023
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1024
  "information."
1025
  msgstr ""
1026
 
 
1027
  msgid ""
1028
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1029
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1030
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1031
  msgstr ""
1032
 
 
1033
  msgid "Description:"
1034
  msgstr ""
1035
 
 
 
1036
  msgid "REST API"
1037
  msgstr ""
1038
 
 
1039
  msgid "Translate strings"
1040
  msgstr ""
1041
 
 
1042
  msgid "item"
1043
  msgstr ""
1044
 
 
1045
  msgid "items"
1046
  msgstr "артикула"
1047
 
 
1048
  msgid "Code"
1049
  msgstr ""
1050
 
 
1051
  msgid "Edit"
1052
  msgstr ""
1053
 
 
1054
  msgid "Delete"
1055
  msgstr "Изтрий"
1056
 
 
1057
  msgid "File"
1058
  msgstr ""
1059
 
 
1060
  msgid "Flag"
1061
  msgstr ""
1062
 
 
1063
  msgid "Language name"
1064
  msgstr ""
1065
 
 
1066
  msgid "English language name"
1067
  msgstr ""
1068
 
 
1069
  msgid "No items found"
1070
  msgstr ""
1071
 
 
1072
  msgid "Add new Language"
1073
  msgstr ""
1074
 
 
1075
  msgid "No items of this type were found."
1076
  msgstr ""
1077
 
 
1078
  msgid "Select an item"
1079
  msgstr ""
1080
 
 
1081
  msgid "Multilingual support of this add-on is currently in Beta stage."
1082
  msgstr ""
1083
 
 
1084
  msgid "We do not recommend using it on production sites."
1085
  msgstr ""
1086
 
 
1087
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1088
  msgstr ""
1089
 
 
1090
  msgid "WordPress version"
1091
  msgstr ""
1092
 
 
1093
  msgid "In the WordPress core"
1094
  msgstr ""
1095
 
 
1096
  msgid "Core"
1097
  msgstr ""
1098
 
 
 
1099
  msgid "Current version"
1100
  msgstr ""
1101
 
 
 
1102
  msgid "Stage"
1103
  msgstr ""
1104
 
 
 
1105
  msgid "Status"
1106
  msgstr "Статус"
1107
 
 
1108
  msgid "Block editor"
1109
  msgstr ""
1110
 
 
1111
  msgid "production"
1112
  msgstr ""
1113
 
 
1114
  msgid "List of supported add-ons"
1115
  msgstr ""
1116
 
 
1117
  msgid "Add-on"
1118
  msgstr ""
1119
 
 
1120
  msgid "Supported minimum version"
1121
  msgstr ""
1122
 
 
1123
  msgid "Not installed"
1124
  msgstr ""
1125
 
 
1126
  msgid "Installed, inactive"
1127
  msgstr ""
1128
 
 
1129
  msgid "Active"
1130
  msgstr "Активиране"
1131
 
 
1132
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1133
  msgstr ""
1134
 
 
1135
  msgid "However, some themes do not follow all WordPress standards strictly."
1136
  msgstr ""
1137
 
 
1138
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1139
  msgstr ""
1140
 
 
1141
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1142
  msgstr ""
1143
 
 
1144
  msgid ""
1145
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1146
  "With those themes, WPGlobus Customizer is switched off by default"
1147
  msgstr ""
1148
 
 
1149
  msgid "The currently active theme is"
1150
  msgstr ""
1151
 
 
1152
  msgid "In the current version, WPGlobus Customizer does not support"
1153
  msgstr ""
1154
 
 
1155
  msgid "translation of the navigation menus"
1156
  msgstr ""
1157
 
 
1158
  msgid "to translate, please go to"
1159
  msgstr ""
1160
 
 
1161
  msgid "Go to Customizer"
1162
  msgstr ""
1163
 
 
1164
  msgid "is undefined"
1165
  msgstr ""
1166
 
 
1167
  msgid "is set to"
1168
  msgstr ""
1169
 
 
1170
  msgid "by adding to the file wp-config.php"
1171
  msgstr ""
1172
 
 
1173
  msgid "now"
1174
  msgstr ""
1175
 
 
1176
  msgid "We rely on your support!"
1177
  msgstr ""
1178
 
 
1179
  msgid "Please consider a small donation to support the future development."
1180
  msgstr ""
1181
 
 
1182
  msgid "Thank you!"
1183
  msgstr ""
1184
 
 
1185
  msgid "WPGlobus Plus!"
1186
  msgstr ""
1187
 
 
1188
  msgid ""
1189
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1190
  "separate publishing and more! "
1191
  msgstr ""
1192
 
 
1193
  msgid "Get WPGlobus Plus now!"
1194
  msgstr ""
1195
 
 
1196
  msgid ""
1197
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1198
  "the current version."
1199
  msgstr ""
1200
 
 
1201
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1202
  msgstr ""
1203
 
 
1204
  msgid "WPGlobus warning: "
1205
  msgstr ""
1206
 
 
1207
  msgid "https://github.com/WPGlobus/WPGlobus"
1208
  msgstr ""
1209
 
 
1210
  msgid ""
1211
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1212
  "widgets and even custom fields - in multiple languages!"
1213
  msgstr ""
1214
 
 
1215
  msgid "https://wpglobus.com/"
1216
  msgstr ""
languages/wpglobus-de_CH.po CHANGED
@@ -18,44 +18,25 @@ msgstr ""
18
  "Content-Transfer-Encoding: 8bit\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
- #: includes/admin/central/class-wpglobus-admin-central.php:122,
22
- #: includes/admin/class-wpglobus-about.php:42,
23
- #: includes/admin/class-wpglobus-about.php:117,
24
- #: includes/admin/class-wpglobus-clean.php:600,
25
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
26
  msgid "Guide"
27
  msgstr "Anleitung"
28
 
29
- #: includes/admin/central/class-wpglobus-admin-central.php:142,
30
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
31
  msgid "WPGlobus Help Desk"
32
  msgstr ""
33
 
34
- #: includes/admin/central/class-wpglobus-admin-central.php:157,
35
- #: includes/admin/class-wpglobus-about.php:36,
36
- #: includes/admin/class-wpglobus-admin-menu.php:22,
37
- #: includes/admin/class-wpglobus-clean.php:606,
38
- #: includes/admin/class-wpglobus-customize-options.php:1293,
39
- #: includes/admin/class-wpglobus-customize-options.php:1261,
40
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
41
  msgid "Add-ons"
42
  msgstr "Add-ons"
43
 
44
- #: includes/admin/class-wpglobus-about.php:26
45
  msgid "Quick Start"
46
  msgstr "Schnell-Start"
47
 
48
- #: includes/admin/class-wpglobus-about.php:48,
49
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
50
  msgid "FAQ"
51
  msgstr "FAQ"
52
 
53
- #: includes/admin/class-wpglobus-about.php:59
54
  msgid ""
55
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
56
  msgstr ""
57
 
58
- #: includes/admin/class-wpglobus-about.php:60
59
  msgid ""
60
  "The mbstring extension is required for the full UTF-8 compatibility and "
61
  "better performance. Without it, some parts of WordPress and WPGlobus may "
@@ -63,20 +44,16 @@ msgid ""
63
  "administrator."
64
  msgstr ""
65
 
66
- #: includes/admin/class-wpglobus-about.php:87
67
  msgid "Go to WPGlobus Settings"
68
  msgstr "Zu den WPGlobus Einstellungen"
69
 
70
- #: includes/admin/class-wpglobus-about.php:98
71
  msgid "Easy as 1-2-3:"
72
  msgstr "Einfach wie 1-2-3:"
73
 
74
- #: includes/admin/class-wpglobus-about.php:101
75
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
76
  msgstr ""
77
  "Gehen Sie ins WPGlobus Admin-Menü und wählen Sie die Länder / Sprachen aus;"
78
 
79
- #: includes/admin/class-wpglobus-about.php:102
80
  msgid ""
81
  "Enter the translations to the posts, pages, categories, tags and menus using "
82
  "a clean and simple interface."
@@ -84,58 +61,47 @@ msgstr ""
84
  "Geben Sie Übersetzungen der Beiträge, Seiten, Kategorien, Tags und Menüs "
85
  "ein. Alles über eine saubere und einfache Oberfläche."
86
 
87
- #: includes/admin/class-wpglobus-about.php:103
88
  msgid ""
89
  "Switch languages at the front-end using a drop-down menu with language names "
90
  "and country flags."
91
  msgstr ""
92
  "Wechsel der Sprache im Front-End per Dropdown Menü mit Ländername und Flagge."
93
 
94
- #: includes/admin/class-wpglobus-about.php:111
95
  msgid "Links:"
96
  msgstr "Links:"
97
 
98
- #: includes/admin/class-wpglobus-about.php:119
99
  msgid "FAQs"
100
  msgstr "FAQs"
101
 
102
- #: includes/admin/class-wpglobus-about.php:121
103
  msgid "Contact Us"
104
  msgstr "Kontaktieren Sie uns"
105
 
106
- #: includes/admin/class-wpglobus-about.php:123
107
  msgid "Please give us 5 stars!"
108
  msgstr "Bitte geben Sie uns 5 Sterne!"
109
 
110
- #: includes/admin/class-wpglobus-about.php:133
111
  msgid "WPGlobus does not translate texts automatically!"
112
  msgstr ""
113
 
114
- #: includes/admin/class-wpglobus-about.php:136
115
  msgid ""
116
  "There are many translation companies and individual translators who can help "
117
  "you write and proofread the texts."
118
  msgstr ""
119
 
120
- #: includes/admin/class-wpglobus-about.php:137
121
  msgid ""
122
  "When you choose a translator, please look at their native language, country "
123
  "of residence, specialization and knowledge of WordPress."
124
  msgstr ""
125
 
126
  #. translators: %s are used to insert HTML link. Keep them in place.
127
- #: includes/admin/class-wpglobus-about.php:143
128
  msgid ""
129
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
130
  "website. This is not an endorsement, just a courtesy. Please contact them "
131
  "directly and let us know how did it work for you!"
132
  msgstr ""
133
 
134
- #: includes/admin/class-wpglobus-about.php:154
135
  msgid "Important notes:"
136
  msgstr "Wichtige Hinweise"
137
 
138
- #: includes/admin/class-wpglobus-about.php:159
139
  msgid ""
140
  "WPGlobus only supports the localization URLs in the form of <code>example."
141
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
@@ -146,13 +112,11 @@ msgstr ""
146
  "Übersetzungfunktionalität für Sub-Domains<code>xx.example.com</code> oder "
147
  "Parameter-Abfragen <code>example.com?lang=xx</code> in der URL geplant."
148
 
149
- #: includes/admin/class-wpglobus-about.php:162
150
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
151
  msgstr ""
152
  "Einige Themen und Plugins unterstützen <strong>keine mehrsprachigkeit</"
153
  "strong>."
154
 
155
- #: includes/admin/class-wpglobus-about.php:163
156
  msgid ""
157
  "They might display some texts with no translation, or with all languages "
158
  "mixed together."
@@ -161,7 +125,6 @@ msgstr ""
161
  "Sprachen miteinander vermischt."
162
 
163
  #. translators: %s are used to insert HTML link. Keep them in place.
164
- #: includes/admin/class-wpglobus-about.php:167
165
  msgid ""
166
  "Please contact the theme / plugin author. If they are unable to assist, "
167
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
@@ -170,21 +133,15 @@ msgstr ""
170
  "Installation oder Anpassung haben, können Sie %s das WPGlobus Team %s mit "
171
  "einer benutzerdefinierte Anpassung beauftragen."
172
 
173
- #: includes/admin/class-wpglobus-admin-bar-menu.php:124
174
  msgid "Language was set on your profile page"
175
  msgstr ""
176
 
177
- #: includes/admin/class-wpglobus-admin-bar-menu.php:194
178
  msgid "Add"
179
  msgstr "Hinzufügen"
180
 
181
- #: includes/admin/class-wpglobus-admin-page.php:32,
182
- #: includes/admin/class-wpglobus-clean.php:585
183
  msgid "Multilingual Everything!"
184
  msgstr "Übersetz' alles!"
185
 
186
- #: includes/admin/class-wpglobus-admin-page.php:34,
187
- #: includes/admin/class-wpglobus-clean.php:588
188
  msgid ""
189
  "WPGlobus is a family of WordPress plugins assisting you in making "
190
  "multilingual WordPress blogs and sites."
@@ -192,25 +149,20 @@ msgstr ""
192
  "WPGlobus ist ein Paket von mehreren WordPress-Plugins, die Möglichkeiten zur "
193
  "Übersetzung von Wordpress-Installationen bieten."
194
 
195
- #: includes/admin/class-wpglobus-clean.php:232
196
  msgid "Remove the WPGlobus settings (not recommended)"
197
  msgstr ""
198
 
199
- #: includes/admin/class-wpglobus-clean.php:595
200
  msgid "Clean-up Tool"
201
  msgstr ""
202
 
203
- #: includes/admin/class-wpglobus-clean.php:609
204
  msgid "Support"
205
  msgstr "Support"
206
 
207
- #: includes/admin/class-wpglobus-clean.php:614
208
  msgid ""
209
  "WARNING: this operation is non-reversible. It is strongly recommended that "
210
  "you backup your database before proceeding."
211
  msgstr ""
212
 
213
- #: includes/admin/class-wpglobus-clean.php:619
214
  msgid ""
215
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
216
  "By running it, you will remove ALL translations you have entered to your "
@@ -220,7 +172,6 @@ msgid ""
220
  "so on."
221
  msgstr ""
222
 
223
- #: includes/admin/class-wpglobus-clean.php:622
224
  msgid ""
225
  "Make sure that your active theme does not have any code related to WPGlobus. "
226
  "Such code could be added by you or by a 3rd party developer. If that code "
@@ -229,42 +180,34 @@ msgid ""
229
  msgstr ""
230
 
231
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
232
- #: includes/admin/class-wpglobus-clean.php:630
233
  msgid ""
234
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
235
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
236
  msgstr ""
237
 
238
- #: includes/admin/class-wpglobus-clean.php:641
239
  msgid "You are about to clean the content of the following database tables:"
240
  msgstr ""
241
 
242
- #: includes/admin/class-wpglobus-clean.php:649
243
  msgid "The operations log"
244
  msgstr ""
245
 
246
- #: includes/admin/class-wpglobus-clean.php:652
247
  msgid ""
248
  "We are going to write a detailed log of all the database changes performed. "
249
  "It should help in the case you need to restore something important. The log "
250
  "will be written to the file:"
251
  msgstr ""
252
 
253
- #: includes/admin/class-wpglobus-clean.php:662
254
  msgid ""
255
  "Uncheck if you do not want to write the operations log (we recommend to keep "
256
  "it checked)"
257
  msgstr ""
258
 
259
- #: includes/admin/class-wpglobus-clean.php:667
260
  msgid "You have been warned..."
261
  msgstr ""
262
 
263
- #: includes/admin/class-wpglobus-clean.php:669
264
  msgid "Please confirm by checking the box below:"
265
  msgstr ""
266
 
267
- #: includes/admin/class-wpglobus-clean.php:671
268
  msgid ""
269
  "I have read and understood everything written on this page. I am aware that "
270
  "by using this tool I may loose some content of my website. I have made a "
@@ -272,153 +215,100 @@ msgid ""
272
  "responsible for the results."
273
  msgstr ""
274
 
275
- #: includes/admin/class-wpglobus-clean.php:674
276
  msgid "YES, I CONFIRM"
277
  msgstr ""
278
 
279
- #: includes/admin/class-wpglobus-clean.php:678
280
  msgid "Process with the Clean-up"
281
  msgstr ""
282
 
283
- #: includes/admin/class-wpglobus-customize-options.php:73,
284
- #: includes/admin/class-wpglobus-customize-options.php:100,
285
- #: includes/admin/class-wpglobus-customize-options.php:145,
286
- #: includes/admin/class-wpglobus-customize-options.php:183
287
  msgid "Default"
288
  msgstr "Standard"
289
 
290
- #: includes/admin/class-wpglobus-customize-options.php:264
291
  msgid "Section"
292
  msgstr ""
293
 
294
- #: includes/admin/class-wpglobus-customize-options.php:277
295
  msgid "Show all sections"
296
  msgstr ""
297
 
298
- #: includes/admin/class-wpglobus-customize-options.php:279
299
  msgid "Save &amp; Reload"
300
  msgstr ""
301
 
302
- #: includes/admin/class-wpglobus-customize-options.php:553,
303
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:585,
304
- #: includes/class-wpglobus.php:1284, wpglobus.php:12, wpglobus.php:18
305
  msgid "WPGlobus"
306
  msgstr "WPGlobus"
307
 
308
- #: includes/admin/class-wpglobus-customize-options.php:604
309
  msgid ""
310
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
311
  msgstr ""
312
 
313
- #: includes/admin/class-wpglobus-customize-options.php:610
314
  msgid "Fields Settings"
315
  msgstr ""
316
 
317
- #: includes/admin/class-wpglobus-customize-options.php:655
318
  msgid "WPGlobus Settings"
319
  msgstr "WPGlobus Einstellungen"
320
 
321
- #: includes/admin/class-wpglobus-customize-options.php:723
322
  msgid "Help"
323
  msgstr "Hilfe"
324
 
325
- #: includes/admin/class-wpglobus-customize-options.php:745,
326
- #: includes/options/class-wpglobus-options.php:1176
327
  msgid "Languages"
328
  msgstr "Sprachen"
329
 
330
- #: includes/admin/class-wpglobus-customize-options.php:765,
331
- #: includes/options/class-wpglobus-options.php:1189
332
  msgid "Enabled Languages"
333
  msgstr "Aktivierte Sprachen"
334
 
335
- #: includes/admin/class-wpglobus-customize-options.php:767,
336
- #: includes/options/class-wpglobus-options.php:1190
337
  msgid "These languages are currently enabled on your site."
338
  msgstr "Diese Sprachen sind momentan auf Ihrer Website aktiviert."
339
 
340
- #: includes/admin/class-wpglobus-customize-options.php:795,
341
- #: includes/options/class-wpglobus-options.php:1148
342
  msgid "Choose a language you would like to enable."
343
  msgstr ""
344
 
345
- #: includes/admin/class-wpglobus-customize-options.php:797
346
  msgid "Press the [Save & Publish] button to confirm."
347
  msgstr ""
348
 
349
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
350
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
351
- #: includes/admin/class-wpglobus-customize-options.php:801,
352
- #: includes/options/class-wpglobus-options.php:1154
353
  msgid "or Add new Language %1$s here %2$s"
354
  msgstr ""
355
 
356
- #: includes/admin/class-wpglobus-customize-options.php:813,
357
- #: includes/options/class-wpglobus-options.php:1203
358
  msgid "Add Languages"
359
  msgstr "Sprachen hinzufügen"
360
 
361
- #: includes/admin/class-wpglobus-customize-options.php:833,
362
- #: includes/options/class-wpglobus-options.php:1211
363
  msgid "Language Selector Mode"
364
  msgstr "Sprach-Selektor Modus"
365
 
366
- #: includes/admin/class-wpglobus-customize-options.php:838,
367
- #: includes/options/class-wpglobus-options.php:1214
368
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
369
  msgstr "Zweistelliger Buchstaben-Code mit Flagge (de, ru, it, usw.)"
370
 
371
- #: includes/admin/class-wpglobus-customize-options.php:839,
372
- #: includes/options/class-wpglobus-options.php:1215
373
  msgid "Full Name (English, Russian, Italian, etc.)"
374
  msgstr "Vollständiger Name (English, Russian, Italian, etc.)"
375
 
376
- #: includes/admin/class-wpglobus-customize-options.php:841,
377
- #: includes/options/class-wpglobus-options.php:1216
378
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
379
  msgstr "Vollständiger Name mit Flagge (Englisch, Russisch, Italienisch, etc.)"
380
 
381
- #: includes/admin/class-wpglobus-customize-options.php:842,
382
- #: includes/options/class-wpglobus-options.php:1217
383
  msgid "Flags only"
384
  msgstr "nur Flaggen"
385
 
386
- #: includes/admin/class-wpglobus-customize-options.php:844,
387
- #: includes/options/class-wpglobus-options.php:1212
388
  msgid ""
389
  "Choose the way language name and country flag are shown in the drop-down menu"
390
  msgstr ""
391
  "Wählen Sie die Art der Display-Sprachnamen und die Flagge des Landes, im "
392
  "Dropdown-Menü"
393
 
394
- #: includes/admin/class-wpglobus-customize-options.php:879
395
  msgid "select navigation menu"
396
  msgstr ""
397
 
398
- #: includes/admin/class-wpglobus-customize-options.php:915,
399
- #: includes/admin/class-wpglobus-customize-options.php:888,
400
- #: includes/options/class-wpglobus-options.php:1230
401
  msgid "Language Selector Menu"
402
  msgstr "Language Selector Menu"
403
 
404
- #: includes/admin/class-wpglobus-customize-options.php:920,
405
- #: includes/admin/class-wpglobus-customize-options.php:899,
406
- #: includes/options/class-wpglobus-options.php:1231
407
  msgid "Choose the navigation menu where the language selector will be shown"
408
  msgstr ""
409
  "Wählen Sie das Navigationsmenü, wo die Sprachwahl angezeigt werden soll."
410
 
411
- #: includes/admin/class-wpglobus-customize-options.php:898
412
  msgid "No menus have been created yet. Create some."
413
  msgstr ""
414
 
415
- #: includes/admin/class-wpglobus-customize-options.php:940,
416
- #: includes/options/class-wpglobus-options.php:1241
417
  msgid "\"All Pages\" menus Language selector"
418
  msgstr "\"Alle Seiten\" Menü Sprachauswahl"
419
 
420
- #: includes/admin/class-wpglobus-customize-options.php:943,
421
- #: includes/options/class-wpglobus-options.php:1243
422
  msgid ""
423
  "Adds language selector to the menus that automatically list all existing "
424
  "pages (using `wp_list_pages`)"
@@ -426,12 +316,9 @@ msgstr ""
426
  "Fügt einen Sprach-Selektor zum Menü hinzu, welches automatisch alle Seiten "
427
  "auflistet ( `benutzt wp_list_pages`)"
428
 
429
- #: includes/admin/class-wpglobus-customize-options.php:960,
430
- #: includes/options/class-wpglobus-options.php:1356
431
  msgid "Custom CSS"
432
  msgstr "Benutzerdefiniertes CSS"
433
 
434
- #: includes/admin/class-wpglobus-customize-options.php:964
435
  msgid ""
436
  "Here you can enter the CSS rules to adjust the language selector menu for "
437
  "your theme. Look at the examples in the `style-samples.css` file."
@@ -440,99 +327,69 @@ msgstr ""
440
  "Theme anzeigen. Schauen Sie sich die Beispiele in der `style-samples.css` "
441
  "Datei an."
442
 
443
- #: includes/admin/class-wpglobus-customize-options.php:983
444
  msgid "Post types"
445
  msgstr "Post-Typen"
446
 
447
- #: includes/admin/class-wpglobus-customize-options.php:1091
448
  msgid "Uncheck to disable WPGlobus"
449
  msgstr "Deaktivieren Sie die Checkbox, um WPGlobus deaktivieren"
450
 
451
- #: includes/admin/class-wpglobus-customize-options.php:1125,
452
- #: includes/options/class-wpglobus-options.php:1424
453
  msgid "Redirect"
454
  msgstr "Weiterleiten"
455
 
456
- #: includes/admin/class-wpglobus-customize-options.php:1150,
457
- #: includes/options/class-wpglobus-options.php:1419
458
  msgid "Choose the language automatically, based on:"
459
  msgstr ""
460
 
461
- #: includes/admin/class-wpglobus-customize-options.php:1152,
462
- #: includes/options/class-wpglobus-options.php:1409
463
  msgid "Preferred language set in the browser"
464
  msgstr ""
465
 
466
- #: includes/admin/class-wpglobus-customize-options.php:1153,
467
- #: includes/options/class-wpglobus-options.php:1396
468
  msgid ""
469
  "When a user comes to the site for the first time, try to find the best "
470
  "matching language version of the page."
471
  msgstr ""
472
 
473
- #: includes/admin/class-wpglobus-customize-options.php:1214,
474
- #: includes/admin/class-wpglobus-customize-options.php:1234,
475
- #: includes/admin/class-wpglobus-customize-options.php:1192,
476
- #: includes/options/class-wpglobus-options.php:1368
477
  msgid "Custom JS Code"
478
  msgstr ""
479
 
480
- #: includes/admin/class-wpglobus-customize-options.php:1232,
481
- #: includes/admin/class-wpglobus-customize-options.php:1276
482
  msgid "Title"
483
  msgstr "Titel"
484
 
485
- #: includes/admin/class-wpglobus-customize-options.php:1235
486
  msgid "(Paste your JS code here.)"
487
  msgstr ""
488
 
489
- #: includes/admin/class-wpglobus-customize-options.php:1184
490
  msgid ""
491
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
492
  "version 4.9 or later."
493
  msgstr ""
494
 
495
- #: includes/admin/class-wpglobus-customize-options.php:1186
496
  msgid "With your version of WordPress, please use the"
497
  msgstr ""
498
 
499
- #: includes/admin/class-wpglobus-customize-options.php:1188
500
  msgid "WPGlobus Settings page"
501
  msgstr ""
502
 
503
- #: includes/admin/class-wpglobus-customize-options.php:1277
504
  msgid "Label"
505
  msgstr "Beschriftung"
506
 
507
- #: includes/admin/class-wpglobus-customize-options.php:1281
508
  msgid "Description"
509
  msgstr "Umschreibung"
510
 
511
- #: includes/admin/class-wpglobus-customize-options.php:1345
512
  msgid ""
513
  "Here you can specify which fields should be considered multilingual by "
514
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
515
  msgstr ""
516
 
517
- #: includes/admin/class-wpglobus-customize-options.php:1351,
518
- #: includes/options/class-wpglobus-options.php:608
519
  msgid "Thank you for installing WPGlobus!"
520
  msgstr "Danke, dass Sie WPGlobus installiert haben!"
521
 
522
- #: includes/admin/class-wpglobus-customize-options.php:1355,
523
- #: includes/options/class-wpglobus-options.php:612
524
  msgid "Read About WPGlobus"
525
  msgstr "Lesen Sie mehr über WPGlobus"
526
 
527
- #: includes/admin/class-wpglobus-customize-options.php:1358
528
  msgid ""
529
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
530
  msgstr ""
531
  "Klicken Sie auf <strong>[Sprachen]</strong>, auf der linken Seite um die "
532
  "Optionen einzurichten."
533
 
534
- #: includes/admin/class-wpglobus-customize-options.php:1363,
535
- #: includes/options/class-wpglobus-options.php:648
536
  msgid ""
537
  "Should you have any questions or comments, please do not hesitate to contact "
538
  "us."
@@ -540,28 +397,19 @@ msgstr ""
540
  "Sollten Sie Fragen oder Anmerkungen haben, kontaktieren Sie uns, wir freuen "
541
  "uns Ihnen zu helfen."
542
 
543
- #: includes/admin/class-wpglobus-customize-options.php:1367,
544
- #: includes/options/class-wpglobus-options.php:652
545
  msgid "Sincerely Yours,"
546
  msgstr "Mit freundlichen Grüßen,"
547
 
548
- #: includes/admin/class-wpglobus-customize-options.php:1369,
549
- #: includes/options/class-wpglobus-options.php:654,
550
- #: includes/options/wpglobus-options-header.php:34
551
  msgid "The WPGlobus Team"
552
  msgstr "Das WPGlobus-Team"
553
 
554
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
555
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
556
- #: includes/admin/class-wpglobus-customize-options.php:1388,
557
- #: includes/options/class-wpglobus-options.php:689
558
  msgid ""
559
  "We would hate to see you go. If something goes wrong, do not uninstall "
560
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
561
  msgstr ""
562
 
563
- #: includes/admin/class-wpglobus-customize-options.php:1395,
564
- #: includes/options/class-wpglobus-options.php:696
565
  msgid ""
566
  "Please note that if you deactivate WPGlobus, your site will show all the "
567
  "languages together, mixed up. You will need to remove all translations, "
@@ -570,8 +418,6 @@ msgstr ""
570
 
571
  #. translators: %s: link to the Clean-up Tool
572
  #. translators: %s: link to the Clean-up Tool.
573
- #: includes/admin/class-wpglobus-customize-options.php:1400,
574
- #: includes/options/class-wpglobus-options.php:700
575
  msgid ""
576
  "If there are just a few places, you should edit them manually. To "
577
  "automatically remove all translations at once, you can use the %s. WARNING: "
@@ -581,408 +427,303 @@ msgstr ""
581
 
582
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
583
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
584
- #: includes/admin/class-wpglobus-customize-options.php:1403,
585
- #: includes/options/class-wpglobus-options.php:677
586
  msgid "%1$sClean-up Tool%2$s"
587
  msgstr ""
588
 
589
  #. translators: %s: name of current theme
590
- #: includes/admin/class-wpglobus-customize-options.php:1415
591
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
592
  msgstr ""
593
 
594
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
595
- #: includes/admin/class-wpglobus-customize-options.php:1421
596
  msgid "Please use %1$sWPGlobus options page%2$s instead."
597
  msgstr ""
598
 
599
- #: includes/admin/class-wpglobus-customize-options.php:1485
600
  msgid "Expand/Shrink"
601
  msgstr ""
602
 
603
- #: includes/admin/class-wpglobus-dashboard-news.php:43,
604
- #: includes/admin/class-wpglobus-dashboard-news.php:59
605
  msgid "WPGlobus News"
606
  msgstr "WPGlobus-Nachrichten"
607
 
608
- #: includes/admin/class-wpglobus-language-edit.php:197,
609
- #: includes/admin/class-wpglobus-language-edit.php:192
610
  msgid "Options updated"
611
  msgstr "Optionen aktualisiert"
612
 
613
- #: includes/admin/class-wpglobus-language-edit.php:272
614
  msgid "Please enter a language code!"
615
  msgstr "Bitte geben Sie den Sprachcode ein!"
616
 
617
- #: includes/admin/class-wpglobus-language-edit.php:276
618
  msgid "Language code already exists!"
619
  msgstr "Sprachcode bereits vorhanden!"
620
 
621
- #: includes/admin/class-wpglobus-language-edit.php:280
622
  msgid "Please specify the language flag!"
623
  msgstr "Bitte geben Sie die Sprach-Flagge an!"
624
 
625
- #: includes/admin/class-wpglobus-language-edit.php:284
626
  msgid "Please enter the language name!"
627
  msgstr "Bitte geben Sie den Namen der Sprache an!"
628
 
629
- #: includes/admin/class-wpglobus-language-edit.php:288
630
  msgid "Please enter the language name in English!"
631
  msgstr "Bitte geben Sie die Sprache in Englischer Bezeichnung an!"
632
 
633
- #: includes/admin/class-wpglobus-language-edit.php:292
634
  msgid "Please enter the locale!"
635
  msgstr "Bitte geben Sie die sogenannte Locale an!"
636
 
637
- #: includes/admin/class-wpglobus-language-edit.php:354
638
  msgid "Add Language"
639
  msgstr "Sprache hinzufügen"
640
 
641
- #: includes/admin/class-wpglobus-language-edit.php:351,
642
- #: includes/admin/class-wpglobus-language-edit.php:462,
643
- #: includes/admin/class-wpglobus-language-edit.php:455
644
  msgid "Delete Language"
645
  msgstr "Sprache löschen"
646
 
647
- #: includes/admin/class-wpglobus-language-edit.php:349
648
  msgid "Edit Language"
649
  msgstr "Sprache ändern"
650
 
651
- #: includes/admin/class-wpglobus-language-edit.php:384
652
  msgid "Language Code"
653
  msgstr "Sprachcode"
654
 
655
- #: includes/admin/class-wpglobus-language-edit.php:391
656
  msgid ""
657
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
658
  msgstr ""
659
  "2-stelliger ISO-Sprachcode für die Sprache, welche Sie einfügen möchten. "
660
  "(Beispiel: en für Englisch)"
661
 
662
- #: includes/admin/class-wpglobus-language-edit.php:396
663
  msgid "Language flag"
664
  msgstr "Sprachflagge"
665
 
666
- #: includes/admin/class-wpglobus-language-edit.php:412
667
  msgid "Name"
668
  msgstr "Name"
669
 
670
- #: includes/admin/class-wpglobus-language-edit.php:417
671
  msgid ""
672
  "The name of the language in its native alphabet. (Examples: English, Русский)"
673
  msgstr ""
674
  "Der gesprochene Name der Sprache in seiner Muttersprache. (Beispiele: "
675
  "English, Deutsch)"
676
 
677
- #: includes/admin/class-wpglobus-language-edit.php:422
678
  msgid "Name in English"
679
  msgstr "Name in Englisch"
680
 
681
- #: includes/admin/class-wpglobus-language-edit.php:427
682
  msgid "The name of the language in English"
683
  msgstr "Der Name der Sprache auf Englisch"
684
 
685
- #: includes/admin/class-wpglobus-language-edit.php:432,
686
- #: includes/options/fields/table/class-wpglobus-languages-table.php:115
687
  msgid "Locale"
688
  msgstr "Lokale"
689
 
690
- #: includes/admin/class-wpglobus-language-edit.php:437
691
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
692
  msgstr "PHP/Wordpress Gebietsschema der Sprache. (Beispiele: en_US, de_DE)"
693
 
694
- #: includes/admin/class-wpglobus-language-edit.php:460
695
  msgid "Are you sure you want to delete?"
696
  msgstr "Sind Sie sicher, dass Sie die Lösch-Aktion durchführen möchten?"
697
 
698
- #: includes/admin/class-wpglobus-language-edit.php:447
699
  msgid "Save Changes"
700
  msgstr "Änderungen speichern"
701
 
702
- #: includes/admin/class-wpglobus-language-edit.php:470
703
  msgid "Back to the WPGlobus Settings"
704
  msgstr "Zurück zu den WPGlobus-Einstellungen"
705
 
706
- #: includes/admin/class-wpglobus-plugin-install.php:308
707
  msgid "Current Version"
708
  msgstr "Aktelle Version"
709
 
710
- #: includes/admin/class-wpglobus-plugin-install.php:309
711
  msgid "Get it now!"
712
  msgstr "Jetzt holen"
713
 
714
- #: includes/admin/class-wpglobus-plugin-install.php:310
715
  msgid "Premium add-on"
716
  msgstr ""
717
 
718
- #: includes/admin/class-wpglobus-plugin-install.php:311,
719
- #: includes/options/fields/table/class-wpglobus-languages-table.php:472
720
  msgid "Installed"
721
  msgstr "Instaliert"
722
 
723
  #. translators: placeholders are for the HTML tags.
724
- #: includes/admin/class-wpglobus-plugin-install.php:319
725
  msgid ""
726
  "If you have already purchased a WPGlobus premium extension, please read "
727
  "%1$sthe installation instructions here%2$s"
728
  msgstr ""
729
 
730
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
731
- #: includes/options/class-wpglobus-options.php:726
732
  msgid "Help Desk"
733
  msgstr ""
734
 
735
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:185
736
  msgid "Email not sent. Please fill in the entire form."
737
  msgstr ""
738
 
739
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:195
740
  msgid ""
741
  "Email not sent. Please verify that your name and email are entered correctly."
742
  msgstr ""
743
 
744
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:216
745
  msgid "Email sent."
746
  msgstr ""
747
 
748
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
749
  msgid "Thank you for using WPGlobus!"
750
  msgstr ""
751
 
752
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
753
  msgid "Our Support Team is here to answer your questions or concerns."
754
  msgstr ""
755
 
756
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
757
  msgid "To help us serve you better:"
758
  msgstr ""
759
 
760
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
761
  msgid ""
762
  "Please check if the problem persists if you switch to a standard WordPress "
763
  "theme."
764
  msgstr ""
765
 
766
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
767
  msgid ""
768
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
769
  msgstr ""
770
 
771
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
772
  msgid "Please fill in and submit the contact form:"
773
  msgstr ""
774
 
775
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
776
  msgid "Please make sure the email address is correct."
777
  msgstr ""
778
 
779
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
780
  msgid "Subject"
781
  msgstr "Thema"
782
 
783
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
784
  msgid "Short description of the problem"
785
  msgstr ""
786
 
787
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
788
  msgid "Detailed description"
789
  msgstr ""
790
 
791
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
792
  msgid "Technical Information"
793
  msgstr "Systeminformationen"
794
 
795
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
796
  msgid "This information helps us to find the problem source"
797
  msgstr ""
798
 
799
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:161
800
  msgid ""
801
  "Alternatively, please email %s. Do not forget to copy and paste the "
802
  "technical information to your email message."
803
  msgstr ""
804
 
805
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:89
806
  msgid "WPGlobus Recommends:"
807
  msgstr ""
808
 
809
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:98,
810
- #: includes/options/class-wpglobus-options.php:933
811
  msgid "WPGlobus for WooCommerce"
812
  msgstr ""
813
 
814
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:102
815
  msgid ""
816
  "Translate product titles and descriptions, product categories, tags and "
817
  "attributes."
818
  msgstr ""
819
 
820
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:107
821
  msgid "Get it now:"
822
  msgstr "Jetzt holen"
823
 
824
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:117
825
  msgid "WooCommerce Multi-Currency"
826
  msgstr ""
827
 
828
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:121
829
  msgid "Accept multiple currencies in your online store!"
830
  msgstr ""
831
 
832
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:126,
833
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:185
834
  msgid "Check it out:"
835
  msgstr ""
836
 
837
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:195
838
  msgid "To translate permalinks, please activate the module Slug."
839
  msgstr ""
840
 
841
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:183
842
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
843
  msgstr ""
844
 
845
- #: includes/builders/class-wpglobus-builder.php:278,
846
- #: includes/class-wpglobus.php:3577
847
  msgid "Save draft before using extra language."
848
  msgstr ""
849
 
850
- #: includes/builders/class-wpglobus-builder.php:371
851
  msgid "Builder"
852
  msgstr ""
853
 
854
- #: includes/builders/class-wpglobus-builder.php:395
855
  msgid "Сompatibility Settings"
856
  msgstr ""
857
 
858
  #. translators: ON/OFF status of WPGlobus on the edit pages.
859
  #. translators: ON/OFF status of WPGlobus on the edit pages.
860
- #: includes/builders/elementor/class-wpglobus-elementor.php:255,
861
- #: includes/class-wpglobus.php:1263
862
  msgid "ON"
863
  msgstr ""
864
 
865
- #: includes/builders/elementor/class-wpglobus-elementor.php:256,
866
- #: includes/class-wpglobus.php:1264
867
  msgid "Turn off"
868
  msgstr ""
869
 
870
- #: includes/builders/elementor/class-wpglobus-elementor.php:250,
871
- #: includes/class-wpglobus.php:1258
872
  msgid "OFF"
873
  msgstr ""
874
 
875
- #: includes/builders/elementor/class-wpglobus-elementor.php:251,
876
- #: includes/class-wpglobus.php:1259
877
  msgid "Turn on"
878
  msgstr ""
879
 
880
- #: includes/builders/elementor/class-wpglobus-elementor.php:281
881
  msgid "Elementor"
882
  msgstr ""
883
 
884
- #: includes/builders/elementor/class-wpglobus-elementor.php:508
885
  msgid "WPGlobus languages"
886
  msgstr ""
887
 
888
- #: includes/builders/elementor/class-wpglobus-elementor.php:514
889
  msgid "current"
890
  msgstr ""
891
 
892
- #: includes/builders/elementor/class-wpglobus-elementor.php:675
893
  msgid ""
894
  "WPGlobus provides multilingual support for Elementor only when the option "
895
  "%1$s%2$s%3$s is set to %4$s."
896
  msgstr ""
897
 
898
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:228
899
  msgid "Before switching the language, please save draft or publish."
900
  msgstr ""
901
 
902
  #. translators: Metabox title FOR language.
903
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:318
904
  msgctxt "filter__seo_meta_box_title"
905
  msgid "for"
906
  msgstr ""
907
 
908
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:392
909
  msgid "Page is being reloaded. Please wait..."
910
  msgstr ""
911
 
912
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:393
913
  msgid ""
914
  "Before switching the language, please save draft or publish, then reload "
915
  "page."
916
  msgstr ""
917
 
918
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
919
  msgid ""
920
  "WPGlobus provides multilingual support for Elementor only when the option "
921
  "`CSS Print Method` is set to `External File`."
922
  msgstr ""
923
 
924
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
925
  msgid "Open Elementor Settings page"
926
  msgstr ""
927
 
928
- #: includes/class-wpglobus-widget.php:27
929
  msgid "WPGlobus widget"
930
  msgstr "WPGlobus widget"
931
 
932
- #: includes/class-wpglobus-widget.php:29
933
  msgid "Add language switcher"
934
  msgstr "Sprachumschalter hinzufügen"
935
 
936
- #: includes/class-wpglobus-widget.php:32
937
  msgid "Flags"
938
  msgstr "Flaggen"
939
 
940
- #: includes/class-wpglobus-widget.php:33
941
  msgid "List"
942
  msgstr "Liste"
943
 
944
- #: includes/class-wpglobus-widget.php:34
945
  msgid "List with flags"
946
  msgstr "Liste der Flaggen"
947
 
948
- #: includes/class-wpglobus-widget.php:35
949
  msgid "Select"
950
  msgstr "Bitte wählen"
951
 
952
- #: includes/class-wpglobus-widget.php:36
953
  msgid "Select with language code"
954
  msgstr "Bitte Sprachcode wählen"
955
 
956
- #: includes/class-wpglobus-widget.php:37
957
  msgid "Dropdown"
958
  msgstr "Dropdown"
959
 
960
- #: includes/class-wpglobus-widget.php:38
961
  msgid "Dropdown with flags"
962
  msgstr "Dropdown mit Flaggen"
963
 
964
- #: includes/class-wpglobus-widget.php:264
965
  msgid "Selector type"
966
  msgstr "Selektor-Typ"
967
 
968
- #: includes/class-wpglobus.php:1447
969
  msgid "You cannot disable the main language."
970
  msgstr "Die Hauptsprache kann nicht deaktiviert werden."
971
 
972
- #: includes/class-wpglobus.php:1672
973
  msgid "Need a multilingual slug?"
974
  msgstr ""
975
 
976
- #: includes/class-wpglobus.php:1655
977
  msgid "*) Available after the menu is saved."
978
  msgstr "*) Verfügbar nachdem das Menü gespeichert wurde."
979
 
980
- #: includes/class-wpglobus.php:4025
981
  msgid "You must enable Pretty Permalinks to use WPGlobus."
982
  msgstr ""
983
  "Sie müssen schöne Permalinks aktivieren um WPGlobus verwenden zu können."
984
 
985
- #: includes/class-wpglobus.php:4027
986
  msgid ""
987
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
988
  "default option."
@@ -990,193 +731,150 @@ msgstr ""
990
  "Bitte gehen Sie zu Einstellungen > Permalinks > allgemeine Einstellungen, "
991
  "und wählen Sie die \"Beitragsname\" für schöne Permalinks."
992
 
993
- #: includes/options/class-wpglobus-options.php:281
994
  msgid "Language Selector Menu Style"
995
  msgstr ""
996
 
997
- #: includes/options/class-wpglobus-options.php:282,
998
- #: includes/options/class-wpglobus-options.php:802,
999
- #: includes/options/class-wpglobus-options.php:871
1000
  msgid "WPGlobus Plus"
1001
  msgstr ""
1002
 
1003
- #: includes/options/class-wpglobus-options.php:283
1004
  msgid "Drop-down languages menu or Flat (in one line)"
1005
  msgstr ""
1006
 
1007
- #: includes/options/class-wpglobus-options.php:286
1008
  msgid "Do not change"
1009
  msgstr ""
1010
 
1011
- #: includes/options/class-wpglobus-options.php:287
1012
  msgid "Drop-down (vertical)"
1013
  msgstr ""
1014
 
1015
- #: includes/options/class-wpglobus-options.php:288
1016
  msgid "Flat (horizontal)"
1017
  msgstr ""
1018
 
1019
- #: includes/options/class-wpglobus-options.php:343
1020
  msgid ""
1021
  "If you see this message then your browser may not display the WPGlobus "
1022
  "Settings panel properly. Please try another browser."
1023
  msgstr ""
1024
 
1025
- #: includes/options/class-wpglobus-options.php:599,
1026
- #: includes/options/class-wpglobus-options.php:1577
1027
  msgid "Сompatibility"
1028
  msgstr ""
1029
 
1030
  #. translators: placeholders for "strong" tags.
1031
- #: includes/options/class-wpglobus-options.php:616
1032
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
1033
  msgstr ""
1034
 
1035
  #. translators: placeholders for "strong" tags.
1036
- #: includes/options/class-wpglobus-options.php:619
1037
  msgid ""
1038
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
1039
  "the language attributes: name, code, flag icon, etc."
1040
  msgstr ""
1041
 
1042
- #: includes/options/class-wpglobus-options.php:622
1043
  msgid "Important notes"
1044
  msgstr ""
1045
 
1046
  #. translators: placeholders for "strong" tags.
1047
- #: includes/options/class-wpglobus-options.php:624
1048
  msgid "Version %1$s1.9.17%2$s "
1049
  msgstr ""
1050
 
1051
  #. translators: placeholders for "strong" tags.
1052
- #: includes/options/class-wpglobus-options.php:627
1053
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
1054
  msgstr ""
1055
 
1056
  #. translators: placeholders for "strong" tags; compatibility tab link.
1057
- #: includes/options/class-wpglobus-options.php:630
1058
  msgid ""
1059
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
1060
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
1061
  msgstr ""
1062
 
1063
  #. translators: placeholders for "strong" tags; compatibility tab link.
1064
- #: includes/options/class-wpglobus-options.php:633
1065
  msgid ""
1066
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
1067
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
1068
  msgstr ""
1069
 
1070
  #. translators: placeholders for "strong" tags.
1071
- #: includes/options/class-wpglobus-options.php:637
1072
  msgid "Version %1$s2.2.11%2$s "
1073
  msgstr ""
1074
 
1075
- #: includes/options/class-wpglobus-options.php:639
1076
  msgid "Starting from this version"
1077
  msgstr ""
1078
 
1079
  #. translators: placeholders for "strong" tags.
1080
- #: includes/options/class-wpglobus-options.php:642
1081
  msgid ""
1082
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
1083
  "(CPT)."
1084
  msgstr ""
1085
 
1086
  #. translators: placeholders for "strong" tags.
1087
- #: includes/options/class-wpglobus-options.php:645
1088
  msgid ""
1089
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
1090
  "the %1$s[%3$s]%2$s tab."
1091
  msgstr ""
1092
 
1093
- #: includes/options/class-wpglobus-options.php:662
1094
  msgid "Welcome!"
1095
  msgstr "Willkommen!"
1096
 
1097
- #: includes/options/class-wpglobus-options.php:685
1098
  msgid "Deactivating / Uninstalling"
1099
  msgstr ""
1100
 
1101
- #: includes/options/class-wpglobus-options.php:711
1102
  msgid "Uninstall"
1103
  msgstr ""
1104
 
1105
- #: includes/options/class-wpglobus-options.php:741
1106
  msgid "All add-ons"
1107
  msgstr ""
1108
 
1109
- #: includes/options/class-wpglobus-options.php:756
1110
  msgid "Mobile Menu"
1111
  msgstr ""
1112
 
1113
- #: includes/options/class-wpglobus-options.php:771
1114
  msgid "Language Widgets"
1115
  msgstr ""
1116
 
1117
- #: includes/options/class-wpglobus-options.php:841
1118
  msgid "We Recommend..."
1119
  msgstr ""
1120
 
1121
- #: includes/options/class-wpglobus-options.php:873
1122
  msgid ""
1123
  "Our premium add-on, WPGlobus Plus, will add several features to your "
1124
  "website, such as:"
1125
  msgstr ""
1126
 
1127
- #: includes/options/class-wpglobus-options.php:876
1128
  msgid ""
1129
  "- Ability to write a post in one language and immediately publish it, not "
1130
  "waiting for the translation to other languages;"
1131
  msgstr ""
1132
 
1133
- #: includes/options/class-wpglobus-options.php:879
1134
  msgid "- Set different URLs for each translation;"
1135
  msgstr ""
1136
 
1137
- #: includes/options/class-wpglobus-options.php:882
1138
  msgid ""
1139
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
1140
  "for each translation;"
1141
  msgstr ""
1142
 
1143
- #: includes/options/class-wpglobus-options.php:885
1144
  msgid "- and more..."
1145
  msgstr ""
1146
 
1147
- #: includes/options/class-wpglobus-options.php:888,
1148
- #: includes/options/class-wpglobus-options.php:945,
1149
- #: includes/options/class-wpglobus-options.php:1003
1150
  msgid "Click here to download"
1151
  msgstr ""
1152
 
1153
- #: includes/options/class-wpglobus-options.php:936
1154
  msgid ""
1155
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
1156
  "translate your blog posts and pages to many languages."
1157
  msgstr ""
1158
 
1159
- #: includes/options/class-wpglobus-options.php:939
1160
  msgid "The next step is to translate your WooCommerce-based store!"
1161
  msgstr ""
1162
 
1163
- #: includes/options/class-wpglobus-options.php:942
1164
  msgid ""
1165
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
1166
  "translate product titles and descriptions, categories, tags and attributes."
1167
  msgstr ""
1168
 
1169
- #: includes/options/class-wpglobus-options.php:989
1170
  msgid "Multi-currency"
1171
  msgstr ""
1172
 
1173
- #: includes/options/class-wpglobus-options.php:992
1174
  msgid ""
1175
  "Your WooCommerce-powered store is set to show prices and accept payments in "
1176
  "a single currency only."
1177
  msgstr ""
1178
 
1179
- #: includes/options/class-wpglobus-options.php:996
1180
  msgid ""
1181
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
1182
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
@@ -1184,464 +882,352 @@ msgid ""
1184
  "positioning for global growth!"
1185
  msgstr ""
1186
 
1187
- #: includes/options/class-wpglobus-options.php:1000
1188
  msgid ""
1189
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
1190
  "re-calculating prices on-the-fly."
1191
  msgstr ""
1192
 
1193
- #: includes/options/class-wpglobus-options.php:1037
1194
  msgid "WPGlobus Premium Add-ons"
1195
  msgstr ""
1196
 
1197
- #: includes/options/class-wpglobus-options.php:1039
1198
  msgid ""
1199
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
1200
  "you will be able to:"
1201
  msgstr ""
1202
 
1203
- #: includes/options/class-wpglobus-options.php:1044
1204
  msgid ""
1205
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
1206
  "моя-страница and so on);"
1207
  msgstr ""
1208
 
1209
- #: includes/options/class-wpglobus-options.php:1047
1210
  msgid ""
1211
  "Postpone translation to some languages and <strong>publish only the "
1212
  "translated texts</strong>;"
1213
  msgstr ""
1214
 
1215
- #: includes/options/class-wpglobus-options.php:1050
1216
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
1217
  msgstr ""
1218
 
1219
- #: includes/options/class-wpglobus-options.php:1053
1220
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
1221
  msgstr ""
1222
 
1223
- #: includes/options/class-wpglobus-options.php:1056
1224
  msgid ""
1225
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
1226
  "strong>;"
1227
  msgstr ""
1228
 
1229
- #: includes/options/class-wpglobus-options.php:1060
1230
  msgid "...and more."
1231
  msgstr ""
1232
 
1233
- #: includes/options/class-wpglobus-options.php:1063
1234
  msgid "Click here to visit the WPGlobus Store"
1235
  msgstr ""
1236
 
1237
- #: includes/options/class-wpglobus-options.php:1104
1238
  msgid "Select a language"
1239
  msgstr "Wählen Sie eine Sprache"
1240
 
1241
  #. translators: %3$s placeholder for the icon (actual picture).
1242
- #: includes/options/class-wpglobus-options.php:1133
1243
  msgid ""
1244
  "Place the %1$smain language%2$s of your site at the top of the list by "
1245
  "dragging the %3$s icons."
1246
  msgstr ""
1247
 
1248
  #. translators: placeholders for the "strong" HTML tags.
1249
- #: includes/options/class-wpglobus-options.php:1136
1250
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
1251
  msgstr ""
1252
 
1253
  #. translators: placeholders for the "strong" HTML tags.
1254
- #: includes/options/class-wpglobus-options.php:1139
1255
  msgid "%1$sAdd%2$s more languages using the section below."
1256
  msgstr ""
1257
 
1258
- #: includes/options/class-wpglobus-options.php:1140
1259
  msgid "When done, click the [Save Changes] button."
1260
  msgstr "Wenn Sie fertig sind, klicken Sie auf [Änderungen speichern]."
1261
 
1262
  #. translators: %s - placeholder for the "Save Changes" button text.
1263
- #: includes/options/class-wpglobus-options.php:1151
1264
  msgid "Press the %s button to confirm."
1265
  msgstr ""
1266
 
1267
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
1268
- #: includes/options/class-wpglobus-options.php:1168
1269
  msgid "-- none --"
1270
  msgstr ""
1271
 
1272
- #: includes/options/class-wpglobus-options.php:1169
1273
  msgid "All menus"
1274
  msgstr ""
1275
 
1276
- #: includes/options/class-wpglobus-options.php:1182
1277
  msgid "Instructions:"
1278
  msgstr "Anleitung:"
1279
 
1280
- #: includes/options/class-wpglobus-options.php:1242
1281
  msgid "(Found in some themes)"
1282
  msgstr "(In einigen Themes gefunden)"
1283
 
1284
- #: includes/options/class-wpglobus-options.php:1244
1285
  msgid "Enable"
1286
  msgstr "Aktivieren"
1287
 
1288
- #: includes/options/class-wpglobus-options.php:1259
1289
  msgid "Languages table"
1290
  msgstr "Sprachtabelle"
1291
 
1292
- #: includes/options/class-wpglobus-options.php:1265
1293
  msgid "Use this table to add, edit or delete languages."
1294
  msgstr ""
1295
  "Verwenden Sie diese Tabelle, um Sprachen hinzuzufügen, zu bearbeiten oder zu "
1296
  "löschen."
1297
 
1298
- #: includes/options/class-wpglobus-options.php:1266
1299
  msgid "NOTE: you cannot remove the main language."
1300
  msgstr "Hinweis: Sie können nicht die Hauptsprache entfernen."
1301
 
1302
- #: includes/options/class-wpglobus-options.php:1314
1303
  msgid "WPGlobus is enabled on these Post Types"
1304
  msgstr ""
1305
 
1306
- #: includes/options/class-wpglobus-options.php:1315
1307
  msgid "Uncheck to disable"
1308
  msgstr ""
1309
 
1310
- #: includes/options/class-wpglobus-options.php:1316
1311
  msgid ""
1312
  "Please note that there are post types, which status is managed by other "
1313
  "plugins and cannot be changed here."
1314
  msgstr ""
1315
 
1316
- #: includes/options/class-wpglobus-options.php:1321
1317
  msgid "Post Types"
1318
  msgstr ""
1319
 
1320
- #: includes/options/class-wpglobus-options.php:1337
1321
  msgid ""
1322
  "You should put here only the code provided by WPGlobus Support. Do not write "
1323
  "anything else in the sections below as it might break the functionality of "
1324
  "your website!"
1325
  msgstr ""
1326
 
1327
- #: includes/options/class-wpglobus-options.php:1378
1328
  msgid "Custom Code"
1329
  msgstr ""
1330
 
1331
- #: includes/options/class-wpglobus-options.php:1486,
1332
- #: includes/options/class-wpglobus-options.php:1618,
1333
- #: includes/options/class-wpglobus-options.php:1729
1334
  msgid "Enabled"
1335
  msgstr "aktiv"
1336
 
1337
- #: includes/options/class-wpglobus-options.php:1499
1338
  msgid "Builders support"
1339
  msgstr ""
1340
 
1341
- #: includes/options/class-wpglobus-options.php:1551
1342
  msgid "Builder mode is enabled on these Post Types"
1343
  msgstr ""
1344
 
1345
- #: includes/options/class-wpglobus-options.php:1617
1346
  msgid "Old fashioned language switcher"
1347
  msgstr ""
1348
 
1349
- #: includes/options/class-wpglobus-options.php:1623
1350
  msgid "Block Editor"
1351
  msgstr ""
1352
 
1353
- #: includes/options/class-wpglobus-options.php:1624
1354
  msgid "Block Editor Options"
1355
  msgstr ""
1356
 
1357
- #: includes/options/class-wpglobus-options.php:1653
1358
  msgid ""
1359
  "With the current settings, you will see the following lines in the section "
1360
  "HEAD of your site pages"
1361
  msgstr ""
1362
 
1363
- #: includes/options/class-wpglobus-options.php:1655
1364
  msgid "(example for two languages)"
1365
  msgstr ""
1366
 
1367
- #: includes/options/class-wpglobus-options.php:1702
1368
  msgid ""
1369
  "Tell search engines about localized versions of your pages using the "
1370
  "hreflang tag"
1371
  msgstr ""
1372
 
1373
- #: includes/options/class-wpglobus-options.php:1711
1374
  msgid "Output the hreflang tag as"
1375
  msgstr ""
1376
 
1377
- #: includes/options/class-wpglobus-options.php:1714
1378
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1379
  msgstr ""
1380
 
1381
- #: includes/options/class-wpglobus-options.php:1715
1382
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1383
  msgstr ""
1384
 
1385
- #: includes/options/class-wpglobus-options.php:1716
1386
  msgid "Language code only (en, ru, etc.)"
1387
  msgstr ""
1388
 
1389
- #: includes/options/class-wpglobus-options.php:1728
1390
  msgid "Use the code `x-default` for the main language"
1391
  msgstr ""
1392
 
1393
- #: includes/options/class-wpglobus-options.php:1734
1394
  msgid "Multilingual SEO"
1395
  msgstr ""
1396
 
1397
- #: includes/options/class-wpglobus-options.php:1735
1398
  msgid "Multilingual SEO Options"
1399
  msgstr ""
1400
 
1401
- #: includes/options/class-wpglobus-options.php:1772
1402
  msgid ""
1403
  "With WPGlobus, you can get translations for posts and pages using REST API."
1404
  msgstr ""
1405
 
1406
- #: includes/options/class-wpglobus-options.php:1800,
1407
- #: includes/options/class-wpglobus-options.php:1808,
1408
- #: includes/options/class-wpglobus-options.php:1780,
1409
- #: includes/options/class-wpglobus-options.php:1789
1410
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1411
  msgstr ""
1412
 
1413
- #: includes/options/class-wpglobus-options.php:1777
1414
  msgid ""
1415
  "For demonstration, you can try the first post that WordPress creates at the "
1416
  "initial installation."
1417
  msgstr ""
1418
 
1419
- #: includes/options/class-wpglobus-options.php:1819
1420
  msgid ""
1421
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1422
  "information."
1423
  msgstr ""
1424
 
1425
- #: includes/options/class-wpglobus-options.php:1826
1426
  msgid ""
1427
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1428
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1429
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1430
  msgstr ""
1431
 
1432
- #: includes/options/class-wpglobus-options.php:1839
1433
  msgid "Description:"
1434
  msgstr ""
1435
 
1436
- #: includes/options/class-wpglobus-options.php:1846,
1437
- #: includes/options/class-wpglobus-options.php:1847
1438
  msgid "REST API"
1439
  msgstr ""
1440
 
1441
- #: includes/options/class-wpglobus-options.php:2180
1442
  msgid "Translate strings"
1443
  msgstr ""
1444
 
1445
- #: includes/options/fields/table/class-wpglobus-languages-table.php:66
1446
  msgid "item"
1447
  msgstr "Artikel"
1448
 
1449
- #: includes/options/fields/table/class-wpglobus-languages-table.php:68
1450
  msgid "items"
1451
  msgstr "Elemente"
1452
 
1453
- #: includes/options/fields/table/class-wpglobus-languages-table.php:88
1454
  msgid "Code"
1455
  msgstr "Code"
1456
 
1457
- #: includes/options/fields/table/class-wpglobus-languages-table.php:94
1458
  msgid "Edit"
1459
  msgstr "Bearbeiten"
1460
 
1461
- #: includes/options/fields/table/class-wpglobus-languages-table.php:99
1462
  msgid "Delete"
1463
  msgstr "Löschen"
1464
 
1465
- #: includes/options/fields/table/class-wpglobus-languages-table.php:105
1466
  msgid "File"
1467
  msgstr "Datei"
1468
 
1469
- #: includes/options/fields/table/class-wpglobus-languages-table.php:110
1470
  msgid "Flag"
1471
  msgstr "Flagge"
1472
 
1473
- #: includes/options/fields/table/class-wpglobus-languages-table.php:120
1474
  msgid "Language name"
1475
  msgstr "Sprachname"
1476
 
1477
- #: includes/options/fields/table/class-wpglobus-languages-table.php:125
1478
  msgid "English language name"
1479
  msgstr "Name der Sprache in Englisch"
1480
 
1481
- #: includes/options/fields/table/class-wpglobus-languages-table.php:151
1482
  msgid "No items found"
1483
  msgstr "Keine Einträge gefunden"
1484
 
1485
- #: includes/options/fields/table/class-wpglobus-languages-table.php:164
1486
  msgid "Add new Language"
1487
  msgstr "Fügen Sie neue Sprache hinzu"
1488
 
1489
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:164
1490
  msgid "No items of this type were found."
1491
  msgstr ""
1492
 
1493
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:107
1494
  msgid "Select an item"
1495
  msgstr ""
1496
 
1497
- #: includes/options/templates/compatibility-beta.php:15
1498
  msgid "Multilingual support of this add-on is currently in Beta stage."
1499
  msgstr ""
1500
 
1501
- #: includes/options/templates/compatibility-beta.php:17
1502
  msgid "We do not recommend using it on production sites."
1503
  msgstr ""
1504
 
1505
- #: includes/options/templates/compatibility-beta.php:23
1506
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1507
  msgstr ""
1508
 
1509
- #: includes/options/templates/compatibility.php:69
1510
  msgid "WordPress version"
1511
  msgstr ""
1512
 
1513
- #: includes/options/templates/compatibility.php:44
1514
  msgid "In the WordPress core"
1515
  msgstr ""
1516
 
1517
- #: includes/options/templates/compatibility.php:46
1518
  msgid "Core"
1519
  msgstr ""
1520
 
1521
- #: includes/options/templates/compatibility.php:52,
1522
- #: includes/options/templates/compatibility.php:79
1523
  msgid "Current version"
1524
  msgstr ""
1525
 
1526
- #: includes/options/templates/compatibility.php:53,
1527
- #: includes/options/templates/compatibility.php:81
1528
  msgid "Stage"
1529
  msgstr ""
1530
 
1531
- #: includes/options/templates/compatibility.php:54,
1532
- #: includes/options/templates/compatibility.php:82
1533
  msgid "Status"
1534
  msgstr "Status"
1535
 
1536
- #: includes/options/templates/compatibility.php:60
1537
  msgid "Block editor"
1538
  msgstr ""
1539
 
1540
- #: includes/options/templates/compatibility.php:62
1541
  msgid "production"
1542
  msgstr ""
1543
 
1544
- #: includes/options/templates/compatibility.php:73
1545
  msgid "List of supported add-ons"
1546
  msgstr ""
1547
 
1548
- #: includes/options/templates/compatibility.php:78
1549
  msgid "Add-on"
1550
  msgstr ""
1551
 
1552
- #: includes/options/templates/compatibility.php:80
1553
  msgid "Supported minimum version"
1554
  msgstr ""
1555
 
1556
- #: includes/options/templates/compatibility.php:105
1557
  msgid "Not installed"
1558
  msgstr ""
1559
 
1560
- #: includes/options/templates/compatibility.php:102
1561
  msgid "Installed, inactive"
1562
  msgstr ""
1563
 
1564
- #: includes/options/templates/compatibility.php:100
1565
  msgid "Active"
1566
  msgstr "Aktiv"
1567
 
1568
- #: includes/options/templates/customize-intro.php:35
1569
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1570
  msgstr ""
1571
 
1572
- #: includes/options/templates/customize-intro.php:39
1573
  msgid "However, some themes do not follow all WordPress standards strictly."
1574
  msgstr ""
1575
 
1576
- #: includes/options/templates/customize-intro.php:41
1577
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1578
  msgstr ""
1579
 
1580
- #: includes/options/templates/customize-intro.php:45
1581
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1582
  msgstr ""
1583
 
1584
- #: includes/options/templates/customize-intro.php:53
1585
  msgid ""
1586
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1587
  "With those themes, WPGlobus Customizer is switched off by default"
1588
  msgstr ""
1589
 
1590
- #: includes/options/templates/customize-intro.php:60
1591
  msgid "The currently active theme is"
1592
  msgstr ""
1593
 
1594
- #: includes/options/templates/customize-intro.php:66
1595
  msgid "In the current version, WPGlobus Customizer does not support"
1596
  msgstr ""
1597
 
1598
- #: includes/options/templates/customize-intro.php:70
1599
  msgid "translation of the navigation menus"
1600
  msgstr ""
1601
 
1602
- #: includes/options/templates/customize-intro.php:72
1603
  msgid "to translate, please go to"
1604
  msgstr ""
1605
 
1606
- #: includes/options/templates/customize-intro.php:81
1607
  msgid "Go to Customizer"
1608
  msgstr ""
1609
 
1610
- #: includes/options/templates/customize-intro.php:88
1611
  msgid "is undefined"
1612
  msgstr ""
1613
 
1614
- #: includes/options/templates/customize-intro.php:85
1615
  msgid "is set to"
1616
  msgstr ""
1617
 
1618
- #: includes/options/templates/customize-intro.php:94
1619
  msgid "by adding to the file wp-config.php"
1620
  msgstr ""
1621
 
1622
- #: includes/options/templates/customize-intro.php:96
1623
  msgid "now"
1624
  msgstr ""
1625
 
1626
- #: includes/options/wpglobus-options-header.php:25
1627
  msgid "We rely on your support!"
1628
  msgstr "Wir setzen auf Ihre Unterstützung!"
1629
 
1630
- #: includes/options/wpglobus-options-header.php:28
1631
  msgid "Please consider a small donation to support the future development."
1632
  msgstr ""
1633
  "Bitte ziehen Sie eine kleine Spende zur Unterstützung der zukünftigen "
1634
  "Entwicklung des Plugins in Betracht."
1635
 
1636
- #: includes/options/wpglobus-options-header.php:32
1637
  msgid "Thank you!"
1638
  msgstr "Danke!"
1639
 
1640
- #: includes/options/wpglobus-options-header.php:55
1641
  msgid "WPGlobus Plus!"
1642
  msgstr "WPGlobus Plus!"
1643
 
1644
- #: includes/options/wpglobus-options-header.php:58
1645
  msgid ""
1646
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1647
  "separate publishing and more! "
@@ -1649,29 +1235,23 @@ msgstr ""
1649
  "Erweiterte Funktionen und Werkzeuge: URL-Übersetzung, mehrsprachige SEO-"
1650
  "Analyse, separate Veröffentlichung und mehr! "
1651
 
1652
- #: includes/options/wpglobus-options-header.php:64
1653
  msgid "Get WPGlobus Plus now!"
1654
  msgstr "Jetzt zu WPGlobus Plus wechseln!"
1655
 
1656
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1657
  msgid ""
1658
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1659
  "the current version."
1660
  msgstr ""
1661
 
1662
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1663
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1664
  msgstr ""
1665
 
1666
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1667
  msgid "WPGlobus warning: "
1668
  msgstr ""
1669
 
1670
- #: wpglobus.php:13
1671
  msgid "https://github.com/WPGlobus/WPGlobus"
1672
  msgstr "https://github.com/WPGlobus/WPGlobus"
1673
 
1674
- #: wpglobus.php:14
1675
  msgid ""
1676
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1677
  "widgets and even custom fields - in multiple languages!"
@@ -1680,6 +1260,5 @@ msgstr ""
1680
  "Menüs, Widgets und sogar benutzerdefinierte Felder - alles einfach und "
1681
  "übersichtlich in mehreren Sprachen!"
1682
 
1683
- #: wpglobus.php:19
1684
  msgid "https://wpglobus.com/"
1685
  msgstr "https://wpglobus.com/"
18
  "Content-Transfer-Encoding: 8bit\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
 
 
 
 
 
21
  msgid "Guide"
22
  msgstr "Anleitung"
23
 
 
 
24
  msgid "WPGlobus Help Desk"
25
  msgstr ""
26
 
 
 
 
 
 
 
 
27
  msgid "Add-ons"
28
  msgstr "Add-ons"
29
 
 
30
  msgid "Quick Start"
31
  msgstr "Schnell-Start"
32
 
 
 
33
  msgid "FAQ"
34
  msgstr "FAQ"
35
 
 
36
  msgid ""
37
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
38
  msgstr ""
39
 
 
40
  msgid ""
41
  "The mbstring extension is required for the full UTF-8 compatibility and "
42
  "better performance. Without it, some parts of WordPress and WPGlobus may "
44
  "administrator."
45
  msgstr ""
46
 
 
47
  msgid "Go to WPGlobus Settings"
48
  msgstr "Zu den WPGlobus Einstellungen"
49
 
 
50
  msgid "Easy as 1-2-3:"
51
  msgstr "Einfach wie 1-2-3:"
52
 
 
53
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
54
  msgstr ""
55
  "Gehen Sie ins WPGlobus Admin-Menü und wählen Sie die Länder / Sprachen aus;"
56
 
 
57
  msgid ""
58
  "Enter the translations to the posts, pages, categories, tags and menus using "
59
  "a clean and simple interface."
61
  "Geben Sie Übersetzungen der Beiträge, Seiten, Kategorien, Tags und Menüs "
62
  "ein. Alles über eine saubere und einfache Oberfläche."
63
 
 
64
  msgid ""
65
  "Switch languages at the front-end using a drop-down menu with language names "
66
  "and country flags."
67
  msgstr ""
68
  "Wechsel der Sprache im Front-End per Dropdown Menü mit Ländername und Flagge."
69
 
 
70
  msgid "Links:"
71
  msgstr "Links:"
72
 
 
73
  msgid "FAQs"
74
  msgstr "FAQs"
75
 
 
76
  msgid "Contact Us"
77
  msgstr "Kontaktieren Sie uns"
78
 
 
79
  msgid "Please give us 5 stars!"
80
  msgstr "Bitte geben Sie uns 5 Sterne!"
81
 
 
82
  msgid "WPGlobus does not translate texts automatically!"
83
  msgstr ""
84
 
 
85
  msgid ""
86
  "There are many translation companies and individual translators who can help "
87
  "you write and proofread the texts."
88
  msgstr ""
89
 
 
90
  msgid ""
91
  "When you choose a translator, please look at their native language, country "
92
  "of residence, specialization and knowledge of WordPress."
93
  msgstr ""
94
 
95
  #. translators: %s are used to insert HTML link. Keep them in place.
 
96
  msgid ""
97
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
98
  "website. This is not an endorsement, just a courtesy. Please contact them "
99
  "directly and let us know how did it work for you!"
100
  msgstr ""
101
 
 
102
  msgid "Important notes:"
103
  msgstr "Wichtige Hinweise"
104
 
 
105
  msgid ""
106
  "WPGlobus only supports the localization URLs in the form of <code>example."
107
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
112
  "Übersetzungfunktionalität für Sub-Domains<code>xx.example.com</code> oder "
113
  "Parameter-Abfragen <code>example.com?lang=xx</code> in der URL geplant."
114
 
 
115
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
116
  msgstr ""
117
  "Einige Themen und Plugins unterstützen <strong>keine mehrsprachigkeit</"
118
  "strong>."
119
 
 
120
  msgid ""
121
  "They might display some texts with no translation, or with all languages "
122
  "mixed together."
125
  "Sprachen miteinander vermischt."
126
 
127
  #. translators: %s are used to insert HTML link. Keep them in place.
 
128
  msgid ""
129
  "Please contact the theme / plugin author. If they are unable to assist, "
130
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
133
  "Installation oder Anpassung haben, können Sie %s das WPGlobus Team %s mit "
134
  "einer benutzerdefinierte Anpassung beauftragen."
135
 
 
136
  msgid "Language was set on your profile page"
137
  msgstr ""
138
 
 
139
  msgid "Add"
140
  msgstr "Hinzufügen"
141
 
 
 
142
  msgid "Multilingual Everything!"
143
  msgstr "Übersetz' alles!"
144
 
 
 
145
  msgid ""
146
  "WPGlobus is a family of WordPress plugins assisting you in making "
147
  "multilingual WordPress blogs and sites."
149
  "WPGlobus ist ein Paket von mehreren WordPress-Plugins, die Möglichkeiten zur "
150
  "Übersetzung von Wordpress-Installationen bieten."
151
 
 
152
  msgid "Remove the WPGlobus settings (not recommended)"
153
  msgstr ""
154
 
 
155
  msgid "Clean-up Tool"
156
  msgstr ""
157
 
 
158
  msgid "Support"
159
  msgstr "Support"
160
 
 
161
  msgid ""
162
  "WARNING: this operation is non-reversible. It is strongly recommended that "
163
  "you backup your database before proceeding."
164
  msgstr ""
165
 
 
166
  msgid ""
167
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
168
  "By running it, you will remove ALL translations you have entered to your "
172
  "so on."
173
  msgstr ""
174
 
 
175
  msgid ""
176
  "Make sure that your active theme does not have any code related to WPGlobus. "
177
  "Such code could be added by you or by a 3rd party developer. If that code "
180
  msgstr ""
181
 
182
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
 
183
  msgid ""
184
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
185
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
186
  msgstr ""
187
 
 
188
  msgid "You are about to clean the content of the following database tables:"
189
  msgstr ""
190
 
 
191
  msgid "The operations log"
192
  msgstr ""
193
 
 
194
  msgid ""
195
  "We are going to write a detailed log of all the database changes performed. "
196
  "It should help in the case you need to restore something important. The log "
197
  "will be written to the file:"
198
  msgstr ""
199
 
 
200
  msgid ""
201
  "Uncheck if you do not want to write the operations log (we recommend to keep "
202
  "it checked)"
203
  msgstr ""
204
 
 
205
  msgid "You have been warned..."
206
  msgstr ""
207
 
 
208
  msgid "Please confirm by checking the box below:"
209
  msgstr ""
210
 
 
211
  msgid ""
212
  "I have read and understood everything written on this page. I am aware that "
213
  "by using this tool I may loose some content of my website. I have made a "
215
  "responsible for the results."
216
  msgstr ""
217
 
 
218
  msgid "YES, I CONFIRM"
219
  msgstr ""
220
 
 
221
  msgid "Process with the Clean-up"
222
  msgstr ""
223
 
 
 
 
 
224
  msgid "Default"
225
  msgstr "Standard"
226
 
 
227
  msgid "Section"
228
  msgstr ""
229
 
 
230
  msgid "Show all sections"
231
  msgstr ""
232
 
 
233
  msgid "Save &amp; Reload"
234
  msgstr ""
235
 
 
 
 
236
  msgid "WPGlobus"
237
  msgstr "WPGlobus"
238
 
 
239
  msgid ""
240
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
241
  msgstr ""
242
 
 
243
  msgid "Fields Settings"
244
  msgstr ""
245
 
 
246
  msgid "WPGlobus Settings"
247
  msgstr "WPGlobus Einstellungen"
248
 
 
249
  msgid "Help"
250
  msgstr "Hilfe"
251
 
 
 
252
  msgid "Languages"
253
  msgstr "Sprachen"
254
 
 
 
255
  msgid "Enabled Languages"
256
  msgstr "Aktivierte Sprachen"
257
 
 
 
258
  msgid "These languages are currently enabled on your site."
259
  msgstr "Diese Sprachen sind momentan auf Ihrer Website aktiviert."
260
 
 
 
261
  msgid "Choose a language you would like to enable."
262
  msgstr ""
263
 
 
264
  msgid "Press the [Save & Publish] button to confirm."
265
  msgstr ""
266
 
267
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
268
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
 
 
269
  msgid "or Add new Language %1$s here %2$s"
270
  msgstr ""
271
 
 
 
272
  msgid "Add Languages"
273
  msgstr "Sprachen hinzufügen"
274
 
 
 
275
  msgid "Language Selector Mode"
276
  msgstr "Sprach-Selektor Modus"
277
 
 
 
278
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
279
  msgstr "Zweistelliger Buchstaben-Code mit Flagge (de, ru, it, usw.)"
280
 
 
 
281
  msgid "Full Name (English, Russian, Italian, etc.)"
282
  msgstr "Vollständiger Name (English, Russian, Italian, etc.)"
283
 
 
 
284
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
285
  msgstr "Vollständiger Name mit Flagge (Englisch, Russisch, Italienisch, etc.)"
286
 
 
 
287
  msgid "Flags only"
288
  msgstr "nur Flaggen"
289
 
 
 
290
  msgid ""
291
  "Choose the way language name and country flag are shown in the drop-down menu"
292
  msgstr ""
293
  "Wählen Sie die Art der Display-Sprachnamen und die Flagge des Landes, im "
294
  "Dropdown-Menü"
295
 
 
296
  msgid "select navigation menu"
297
  msgstr ""
298
 
 
 
 
299
  msgid "Language Selector Menu"
300
  msgstr "Language Selector Menu"
301
 
 
 
 
302
  msgid "Choose the navigation menu where the language selector will be shown"
303
  msgstr ""
304
  "Wählen Sie das Navigationsmenü, wo die Sprachwahl angezeigt werden soll."
305
 
 
306
  msgid "No menus have been created yet. Create some."
307
  msgstr ""
308
 
 
 
309
  msgid "\"All Pages\" menus Language selector"
310
  msgstr "\"Alle Seiten\" Menü Sprachauswahl"
311
 
 
 
312
  msgid ""
313
  "Adds language selector to the menus that automatically list all existing "
314
  "pages (using `wp_list_pages`)"
316
  "Fügt einen Sprach-Selektor zum Menü hinzu, welches automatisch alle Seiten "
317
  "auflistet ( `benutzt wp_list_pages`)"
318
 
 
 
319
  msgid "Custom CSS"
320
  msgstr "Benutzerdefiniertes CSS"
321
 
 
322
  msgid ""
323
  "Here you can enter the CSS rules to adjust the language selector menu for "
324
  "your theme. Look at the examples in the `style-samples.css` file."
327
  "Theme anzeigen. Schauen Sie sich die Beispiele in der `style-samples.css` "
328
  "Datei an."
329
 
 
330
  msgid "Post types"
331
  msgstr "Post-Typen"
332
 
 
333
  msgid "Uncheck to disable WPGlobus"
334
  msgstr "Deaktivieren Sie die Checkbox, um WPGlobus deaktivieren"
335
 
 
 
336
  msgid "Redirect"
337
  msgstr "Weiterleiten"
338
 
 
 
339
  msgid "Choose the language automatically, based on:"
340
  msgstr ""
341
 
 
 
342
  msgid "Preferred language set in the browser"
343
  msgstr ""
344
 
 
 
345
  msgid ""
346
  "When a user comes to the site for the first time, try to find the best "
347
  "matching language version of the page."
348
  msgstr ""
349
 
 
 
 
 
350
  msgid "Custom JS Code"
351
  msgstr ""
352
 
 
 
353
  msgid "Title"
354
  msgstr "Titel"
355
 
 
356
  msgid "(Paste your JS code here.)"
357
  msgstr ""
358
 
 
359
  msgid ""
360
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
361
  "version 4.9 or later."
362
  msgstr ""
363
 
 
364
  msgid "With your version of WordPress, please use the"
365
  msgstr ""
366
 
 
367
  msgid "WPGlobus Settings page"
368
  msgstr ""
369
 
 
370
  msgid "Label"
371
  msgstr "Beschriftung"
372
 
 
373
  msgid "Description"
374
  msgstr "Umschreibung"
375
 
 
376
  msgid ""
377
  "Here you can specify which fields should be considered multilingual by "
378
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
379
  msgstr ""
380
 
 
 
381
  msgid "Thank you for installing WPGlobus!"
382
  msgstr "Danke, dass Sie WPGlobus installiert haben!"
383
 
 
 
384
  msgid "Read About WPGlobus"
385
  msgstr "Lesen Sie mehr über WPGlobus"
386
 
 
387
  msgid ""
388
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
389
  msgstr ""
390
  "Klicken Sie auf <strong>[Sprachen]</strong>, auf der linken Seite um die "
391
  "Optionen einzurichten."
392
 
 
 
393
  msgid ""
394
  "Should you have any questions or comments, please do not hesitate to contact "
395
  "us."
397
  "Sollten Sie Fragen oder Anmerkungen haben, kontaktieren Sie uns, wir freuen "
398
  "uns Ihnen zu helfen."
399
 
 
 
400
  msgid "Sincerely Yours,"
401
  msgstr "Mit freundlichen Grüßen,"
402
 
 
 
 
403
  msgid "The WPGlobus Team"
404
  msgstr "Das WPGlobus-Team"
405
 
406
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
407
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
408
  msgid ""
409
  "We would hate to see you go. If something goes wrong, do not uninstall "
410
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
411
  msgstr ""
412
 
 
 
413
  msgid ""
414
  "Please note that if you deactivate WPGlobus, your site will show all the "
415
  "languages together, mixed up. You will need to remove all translations, "
418
 
419
  #. translators: %s: link to the Clean-up Tool
420
  #. translators: %s: link to the Clean-up Tool.
 
 
421
  msgid ""
422
  "If there are just a few places, you should edit them manually. To "
423
  "automatically remove all translations at once, you can use the %s. WARNING: "
427
 
428
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
429
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
430
  msgid "%1$sClean-up Tool%2$s"
431
  msgstr ""
432
 
433
  #. translators: %s: name of current theme
 
434
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
435
  msgstr ""
436
 
437
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
438
  msgid "Please use %1$sWPGlobus options page%2$s instead."
439
  msgstr ""
440
 
 
441
  msgid "Expand/Shrink"
442
  msgstr ""
443
 
 
 
444
  msgid "WPGlobus News"
445
  msgstr "WPGlobus-Nachrichten"
446
 
 
 
447
  msgid "Options updated"
448
  msgstr "Optionen aktualisiert"
449
 
 
450
  msgid "Please enter a language code!"
451
  msgstr "Bitte geben Sie den Sprachcode ein!"
452
 
 
453
  msgid "Language code already exists!"
454
  msgstr "Sprachcode bereits vorhanden!"
455
 
 
456
  msgid "Please specify the language flag!"
457
  msgstr "Bitte geben Sie die Sprach-Flagge an!"
458
 
 
459
  msgid "Please enter the language name!"
460
  msgstr "Bitte geben Sie den Namen der Sprache an!"
461
 
 
462
  msgid "Please enter the language name in English!"
463
  msgstr "Bitte geben Sie die Sprache in Englischer Bezeichnung an!"
464
 
 
465
  msgid "Please enter the locale!"
466
  msgstr "Bitte geben Sie die sogenannte Locale an!"
467
 
 
468
  msgid "Add Language"
469
  msgstr "Sprache hinzufügen"
470
 
 
 
 
471
  msgid "Delete Language"
472
  msgstr "Sprache löschen"
473
 
 
474
  msgid "Edit Language"
475
  msgstr "Sprache ändern"
476
 
 
477
  msgid "Language Code"
478
  msgstr "Sprachcode"
479
 
 
480
  msgid ""
481
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
482
  msgstr ""
483
  "2-stelliger ISO-Sprachcode für die Sprache, welche Sie einfügen möchten. "
484
  "(Beispiel: en für Englisch)"
485
 
 
486
  msgid "Language flag"
487
  msgstr "Sprachflagge"
488
 
 
489
  msgid "Name"
490
  msgstr "Name"
491
 
 
492
  msgid ""
493
  "The name of the language in its native alphabet. (Examples: English, Русский)"
494
  msgstr ""
495
  "Der gesprochene Name der Sprache in seiner Muttersprache. (Beispiele: "
496
  "English, Deutsch)"
497
 
 
498
  msgid "Name in English"
499
  msgstr "Name in Englisch"
500
 
 
501
  msgid "The name of the language in English"
502
  msgstr "Der Name der Sprache auf Englisch"
503
 
 
 
504
  msgid "Locale"
505
  msgstr "Lokale"
506
 
 
507
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
508
  msgstr "PHP/Wordpress Gebietsschema der Sprache. (Beispiele: en_US, de_DE)"
509
 
 
510
  msgid "Are you sure you want to delete?"
511
  msgstr "Sind Sie sicher, dass Sie die Lösch-Aktion durchführen möchten?"
512
 
 
513
  msgid "Save Changes"
514
  msgstr "Änderungen speichern"
515
 
 
516
  msgid "Back to the WPGlobus Settings"
517
  msgstr "Zurück zu den WPGlobus-Einstellungen"
518
 
 
519
  msgid "Current Version"
520
  msgstr "Aktelle Version"
521
 
 
522
  msgid "Get it now!"
523
  msgstr "Jetzt holen"
524
 
 
525
  msgid "Premium add-on"
526
  msgstr ""
527
 
 
 
528
  msgid "Installed"
529
  msgstr "Instaliert"
530
 
531
  #. translators: placeholders are for the HTML tags.
 
532
  msgid ""
533
  "If you have already purchased a WPGlobus premium extension, please read "
534
  "%1$sthe installation instructions here%2$s"
535
  msgstr ""
536
 
 
 
537
  msgid "Help Desk"
538
  msgstr ""
539
 
 
540
  msgid "Email not sent. Please fill in the entire form."
541
  msgstr ""
542
 
 
543
  msgid ""
544
  "Email not sent. Please verify that your name and email are entered correctly."
545
  msgstr ""
546
 
 
547
  msgid "Email sent."
548
  msgstr ""
549
 
 
550
  msgid "Thank you for using WPGlobus!"
551
  msgstr ""
552
 
 
553
  msgid "Our Support Team is here to answer your questions or concerns."
554
  msgstr ""
555
 
 
556
  msgid "To help us serve you better:"
557
  msgstr ""
558
 
 
559
  msgid ""
560
  "Please check if the problem persists if you switch to a standard WordPress "
561
  "theme."
562
  msgstr ""
563
 
 
564
  msgid ""
565
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
566
  msgstr ""
567
 
 
568
  msgid "Please fill in and submit the contact form:"
569
  msgstr ""
570
 
 
571
  msgid "Please make sure the email address is correct."
572
  msgstr ""
573
 
 
574
  msgid "Subject"
575
  msgstr "Thema"
576
 
 
577
  msgid "Short description of the problem"
578
  msgstr ""
579
 
 
580
  msgid "Detailed description"
581
  msgstr ""
582
 
 
583
  msgid "Technical Information"
584
  msgstr "Systeminformationen"
585
 
 
586
  msgid "This information helps us to find the problem source"
587
  msgstr ""
588
 
 
589
  msgid ""
590
  "Alternatively, please email %s. Do not forget to copy and paste the "
591
  "technical information to your email message."
592
  msgstr ""
593
 
 
594
  msgid "WPGlobus Recommends:"
595
  msgstr ""
596
 
 
 
597
  msgid "WPGlobus for WooCommerce"
598
  msgstr ""
599
 
 
600
  msgid ""
601
  "Translate product titles and descriptions, product categories, tags and "
602
  "attributes."
603
  msgstr ""
604
 
 
605
  msgid "Get it now:"
606
  msgstr "Jetzt holen"
607
 
 
608
  msgid "WooCommerce Multi-Currency"
609
  msgstr ""
610
 
 
611
  msgid "Accept multiple currencies in your online store!"
612
  msgstr ""
613
 
 
 
614
  msgid "Check it out:"
615
  msgstr ""
616
 
 
617
  msgid "To translate permalinks, please activate the module Slug."
618
  msgstr ""
619
 
 
620
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
621
  msgstr ""
622
 
 
 
623
  msgid "Save draft before using extra language."
624
  msgstr ""
625
 
 
626
  msgid "Builder"
627
  msgstr ""
628
 
 
629
  msgid "Сompatibility Settings"
630
  msgstr ""
631
 
632
  #. translators: ON/OFF status of WPGlobus on the edit pages.
633
  #. translators: ON/OFF status of WPGlobus on the edit pages.
 
 
634
  msgid "ON"
635
  msgstr ""
636
 
 
 
637
  msgid "Turn off"
638
  msgstr ""
639
 
 
 
640
  msgid "OFF"
641
  msgstr ""
642
 
 
 
643
  msgid "Turn on"
644
  msgstr ""
645
 
 
646
  msgid "Elementor"
647
  msgstr ""
648
 
 
649
  msgid "WPGlobus languages"
650
  msgstr ""
651
 
 
652
  msgid "current"
653
  msgstr ""
654
 
 
655
  msgid ""
656
  "WPGlobus provides multilingual support for Elementor only when the option "
657
  "%1$s%2$s%3$s is set to %4$s."
658
  msgstr ""
659
 
 
660
  msgid "Before switching the language, please save draft or publish."
661
  msgstr ""
662
 
663
  #. translators: Metabox title FOR language.
 
664
  msgctxt "filter__seo_meta_box_title"
665
  msgid "for"
666
  msgstr ""
667
 
 
668
  msgid "Page is being reloaded. Please wait..."
669
  msgstr ""
670
 
 
671
  msgid ""
672
  "Before switching the language, please save draft or publish, then reload "
673
  "page."
674
  msgstr ""
675
 
 
676
  msgid ""
677
  "WPGlobus provides multilingual support for Elementor only when the option "
678
  "`CSS Print Method` is set to `External File`."
679
  msgstr ""
680
 
 
681
  msgid "Open Elementor Settings page"
682
  msgstr ""
683
 
 
684
  msgid "WPGlobus widget"
685
  msgstr "WPGlobus widget"
686
 
 
687
  msgid "Add language switcher"
688
  msgstr "Sprachumschalter hinzufügen"
689
 
 
690
  msgid "Flags"
691
  msgstr "Flaggen"
692
 
 
693
  msgid "List"
694
  msgstr "Liste"
695
 
 
696
  msgid "List with flags"
697
  msgstr "Liste der Flaggen"
698
 
 
699
  msgid "Select"
700
  msgstr "Bitte wählen"
701
 
 
702
  msgid "Select with language code"
703
  msgstr "Bitte Sprachcode wählen"
704
 
 
705
  msgid "Dropdown"
706
  msgstr "Dropdown"
707
 
 
708
  msgid "Dropdown with flags"
709
  msgstr "Dropdown mit Flaggen"
710
 
 
711
  msgid "Selector type"
712
  msgstr "Selektor-Typ"
713
 
 
714
  msgid "You cannot disable the main language."
715
  msgstr "Die Hauptsprache kann nicht deaktiviert werden."
716
 
 
717
  msgid "Need a multilingual slug?"
718
  msgstr ""
719
 
 
720
  msgid "*) Available after the menu is saved."
721
  msgstr "*) Verfügbar nachdem das Menü gespeichert wurde."
722
 
 
723
  msgid "You must enable Pretty Permalinks to use WPGlobus."
724
  msgstr ""
725
  "Sie müssen schöne Permalinks aktivieren um WPGlobus verwenden zu können."
726
 
 
727
  msgid ""
728
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
729
  "default option."
731
  "Bitte gehen Sie zu Einstellungen > Permalinks > allgemeine Einstellungen, "
732
  "und wählen Sie die \"Beitragsname\" für schöne Permalinks."
733
 
 
734
  msgid "Language Selector Menu Style"
735
  msgstr ""
736
 
 
 
 
737
  msgid "WPGlobus Plus"
738
  msgstr ""
739
 
 
740
  msgid "Drop-down languages menu or Flat (in one line)"
741
  msgstr ""
742
 
 
743
  msgid "Do not change"
744
  msgstr ""
745
 
 
746
  msgid "Drop-down (vertical)"
747
  msgstr ""
748
 
 
749
  msgid "Flat (horizontal)"
750
  msgstr ""
751
 
 
752
  msgid ""
753
  "If you see this message then your browser may not display the WPGlobus "
754
  "Settings panel properly. Please try another browser."
755
  msgstr ""
756
 
 
 
757
  msgid "Сompatibility"
758
  msgstr ""
759
 
760
  #. translators: placeholders for "strong" tags.
 
761
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
762
  msgstr ""
763
 
764
  #. translators: placeholders for "strong" tags.
 
765
  msgid ""
766
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
767
  "the language attributes: name, code, flag icon, etc."
768
  msgstr ""
769
 
 
770
  msgid "Important notes"
771
  msgstr ""
772
 
773
  #. translators: placeholders for "strong" tags.
 
774
  msgid "Version %1$s1.9.17%2$s "
775
  msgstr ""
776
 
777
  #. translators: placeholders for "strong" tags.
 
778
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
779
  msgstr ""
780
 
781
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
782
  msgid ""
783
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
784
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
785
  msgstr ""
786
 
787
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
788
  msgid ""
789
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
790
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
791
  msgstr ""
792
 
793
  #. translators: placeholders for "strong" tags.
 
794
  msgid "Version %1$s2.2.11%2$s "
795
  msgstr ""
796
 
 
797
  msgid "Starting from this version"
798
  msgstr ""
799
 
800
  #. translators: placeholders for "strong" tags.
 
801
  msgid ""
802
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
803
  "(CPT)."
804
  msgstr ""
805
 
806
  #. translators: placeholders for "strong" tags.
 
807
  msgid ""
808
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
809
  "the %1$s[%3$s]%2$s tab."
810
  msgstr ""
811
 
 
812
  msgid "Welcome!"
813
  msgstr "Willkommen!"
814
 
 
815
  msgid "Deactivating / Uninstalling"
816
  msgstr ""
817
 
 
818
  msgid "Uninstall"
819
  msgstr ""
820
 
 
821
  msgid "All add-ons"
822
  msgstr ""
823
 
 
824
  msgid "Mobile Menu"
825
  msgstr ""
826
 
 
827
  msgid "Language Widgets"
828
  msgstr ""
829
 
 
830
  msgid "We Recommend..."
831
  msgstr ""
832
 
 
833
  msgid ""
834
  "Our premium add-on, WPGlobus Plus, will add several features to your "
835
  "website, such as:"
836
  msgstr ""
837
 
 
838
  msgid ""
839
  "- Ability to write a post in one language and immediately publish it, not "
840
  "waiting for the translation to other languages;"
841
  msgstr ""
842
 
 
843
  msgid "- Set different URLs for each translation;"
844
  msgstr ""
845
 
 
846
  msgid ""
847
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
848
  "for each translation;"
849
  msgstr ""
850
 
 
851
  msgid "- and more..."
852
  msgstr ""
853
 
 
 
 
854
  msgid "Click here to download"
855
  msgstr ""
856
 
 
857
  msgid ""
858
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
859
  "translate your blog posts and pages to many languages."
860
  msgstr ""
861
 
 
862
  msgid "The next step is to translate your WooCommerce-based store!"
863
  msgstr ""
864
 
 
865
  msgid ""
866
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
867
  "translate product titles and descriptions, categories, tags and attributes."
868
  msgstr ""
869
 
 
870
  msgid "Multi-currency"
871
  msgstr ""
872
 
 
873
  msgid ""
874
  "Your WooCommerce-powered store is set to show prices and accept payments in "
875
  "a single currency only."
876
  msgstr ""
877
 
 
878
  msgid ""
879
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
880
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
882
  "positioning for global growth!"
883
  msgstr ""
884
 
 
885
  msgid ""
886
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
887
  "re-calculating prices on-the-fly."
888
  msgstr ""
889
 
 
890
  msgid "WPGlobus Premium Add-ons"
891
  msgstr ""
892
 
 
893
  msgid ""
894
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
895
  "you will be able to:"
896
  msgstr ""
897
 
 
898
  msgid ""
899
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
900
  "моя-страница and so on);"
901
  msgstr ""
902
 
 
903
  msgid ""
904
  "Postpone translation to some languages and <strong>publish only the "
905
  "translated texts</strong>;"
906
  msgstr ""
907
 
 
908
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
909
  msgstr ""
910
 
 
911
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
912
  msgstr ""
913
 
 
914
  msgid ""
915
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
916
  "strong>;"
917
  msgstr ""
918
 
 
919
  msgid "...and more."
920
  msgstr ""
921
 
 
922
  msgid "Click here to visit the WPGlobus Store"
923
  msgstr ""
924
 
 
925
  msgid "Select a language"
926
  msgstr "Wählen Sie eine Sprache"
927
 
928
  #. translators: %3$s placeholder for the icon (actual picture).
 
929
  msgid ""
930
  "Place the %1$smain language%2$s of your site at the top of the list by "
931
  "dragging the %3$s icons."
932
  msgstr ""
933
 
934
  #. translators: placeholders for the "strong" HTML tags.
 
935
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
936
  msgstr ""
937
 
938
  #. translators: placeholders for the "strong" HTML tags.
 
939
  msgid "%1$sAdd%2$s more languages using the section below."
940
  msgstr ""
941
 
 
942
  msgid "When done, click the [Save Changes] button."
943
  msgstr "Wenn Sie fertig sind, klicken Sie auf [Änderungen speichern]."
944
 
945
  #. translators: %s - placeholder for the "Save Changes" button text.
 
946
  msgid "Press the %s button to confirm."
947
  msgstr ""
948
 
949
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
 
950
  msgid "-- none --"
951
  msgstr ""
952
 
 
953
  msgid "All menus"
954
  msgstr ""
955
 
 
956
  msgid "Instructions:"
957
  msgstr "Anleitung:"
958
 
 
959
  msgid "(Found in some themes)"
960
  msgstr "(In einigen Themes gefunden)"
961
 
 
962
  msgid "Enable"
963
  msgstr "Aktivieren"
964
 
 
965
  msgid "Languages table"
966
  msgstr "Sprachtabelle"
967
 
 
968
  msgid "Use this table to add, edit or delete languages."
969
  msgstr ""
970
  "Verwenden Sie diese Tabelle, um Sprachen hinzuzufügen, zu bearbeiten oder zu "
971
  "löschen."
972
 
 
973
  msgid "NOTE: you cannot remove the main language."
974
  msgstr "Hinweis: Sie können nicht die Hauptsprache entfernen."
975
 
 
976
  msgid "WPGlobus is enabled on these Post Types"
977
  msgstr ""
978
 
 
979
  msgid "Uncheck to disable"
980
  msgstr ""
981
 
 
982
  msgid ""
983
  "Please note that there are post types, which status is managed by other "
984
  "plugins and cannot be changed here."
985
  msgstr ""
986
 
 
987
  msgid "Post Types"
988
  msgstr ""
989
 
 
990
  msgid ""
991
  "You should put here only the code provided by WPGlobus Support. Do not write "
992
  "anything else in the sections below as it might break the functionality of "
993
  "your website!"
994
  msgstr ""
995
 
 
996
  msgid "Custom Code"
997
  msgstr ""
998
 
 
 
 
999
  msgid "Enabled"
1000
  msgstr "aktiv"
1001
 
 
1002
  msgid "Builders support"
1003
  msgstr ""
1004
 
 
1005
  msgid "Builder mode is enabled on these Post Types"
1006
  msgstr ""
1007
 
 
1008
  msgid "Old fashioned language switcher"
1009
  msgstr ""
1010
 
 
1011
  msgid "Block Editor"
1012
  msgstr ""
1013
 
 
1014
  msgid "Block Editor Options"
1015
  msgstr ""
1016
 
 
1017
  msgid ""
1018
  "With the current settings, you will see the following lines in the section "
1019
  "HEAD of your site pages"
1020
  msgstr ""
1021
 
 
1022
  msgid "(example for two languages)"
1023
  msgstr ""
1024
 
 
1025
  msgid ""
1026
  "Tell search engines about localized versions of your pages using the "
1027
  "hreflang tag"
1028
  msgstr ""
1029
 
 
1030
  msgid "Output the hreflang tag as"
1031
  msgstr ""
1032
 
 
1033
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1034
  msgstr ""
1035
 
 
1036
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1037
  msgstr ""
1038
 
 
1039
  msgid "Language code only (en, ru, etc.)"
1040
  msgstr ""
1041
 
 
1042
  msgid "Use the code `x-default` for the main language"
1043
  msgstr ""
1044
 
 
1045
  msgid "Multilingual SEO"
1046
  msgstr ""
1047
 
 
1048
  msgid "Multilingual SEO Options"
1049
  msgstr ""
1050
 
 
1051
  msgid ""
1052
  "With WPGlobus, you can get translations for posts and pages using REST API."
1053
  msgstr ""
1054
 
 
 
 
 
1055
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1056
  msgstr ""
1057
 
 
1058
  msgid ""
1059
  "For demonstration, you can try the first post that WordPress creates at the "
1060
  "initial installation."
1061
  msgstr ""
1062
 
 
1063
  msgid ""
1064
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1065
  "information."
1066
  msgstr ""
1067
 
 
1068
  msgid ""
1069
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1070
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1071
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1072
  msgstr ""
1073
 
 
1074
  msgid "Description:"
1075
  msgstr ""
1076
 
 
 
1077
  msgid "REST API"
1078
  msgstr ""
1079
 
 
1080
  msgid "Translate strings"
1081
  msgstr ""
1082
 
 
1083
  msgid "item"
1084
  msgstr "Artikel"
1085
 
 
1086
  msgid "items"
1087
  msgstr "Elemente"
1088
 
 
1089
  msgid "Code"
1090
  msgstr "Code"
1091
 
 
1092
  msgid "Edit"
1093
  msgstr "Bearbeiten"
1094
 
 
1095
  msgid "Delete"
1096
  msgstr "Löschen"
1097
 
 
1098
  msgid "File"
1099
  msgstr "Datei"
1100
 
 
1101
  msgid "Flag"
1102
  msgstr "Flagge"
1103
 
 
1104
  msgid "Language name"
1105
  msgstr "Sprachname"
1106
 
 
1107
  msgid "English language name"
1108
  msgstr "Name der Sprache in Englisch"
1109
 
 
1110
  msgid "No items found"
1111
  msgstr "Keine Einträge gefunden"
1112
 
 
1113
  msgid "Add new Language"
1114
  msgstr "Fügen Sie neue Sprache hinzu"
1115
 
 
1116
  msgid "No items of this type were found."
1117
  msgstr ""
1118
 
 
1119
  msgid "Select an item"
1120
  msgstr ""
1121
 
 
1122
  msgid "Multilingual support of this add-on is currently in Beta stage."
1123
  msgstr ""
1124
 
 
1125
  msgid "We do not recommend using it on production sites."
1126
  msgstr ""
1127
 
 
1128
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1129
  msgstr ""
1130
 
 
1131
  msgid "WordPress version"
1132
  msgstr ""
1133
 
 
1134
  msgid "In the WordPress core"
1135
  msgstr ""
1136
 
 
1137
  msgid "Core"
1138
  msgstr ""
1139
 
 
 
1140
  msgid "Current version"
1141
  msgstr ""
1142
 
 
 
1143
  msgid "Stage"
1144
  msgstr ""
1145
 
 
 
1146
  msgid "Status"
1147
  msgstr "Status"
1148
 
 
1149
  msgid "Block editor"
1150
  msgstr ""
1151
 
 
1152
  msgid "production"
1153
  msgstr ""
1154
 
 
1155
  msgid "List of supported add-ons"
1156
  msgstr ""
1157
 
 
1158
  msgid "Add-on"
1159
  msgstr ""
1160
 
 
1161
  msgid "Supported minimum version"
1162
  msgstr ""
1163
 
 
1164
  msgid "Not installed"
1165
  msgstr ""
1166
 
 
1167
  msgid "Installed, inactive"
1168
  msgstr ""
1169
 
 
1170
  msgid "Active"
1171
  msgstr "Aktiv"
1172
 
 
1173
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1174
  msgstr ""
1175
 
 
1176
  msgid "However, some themes do not follow all WordPress standards strictly."
1177
  msgstr ""
1178
 
 
1179
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1180
  msgstr ""
1181
 
 
1182
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1183
  msgstr ""
1184
 
 
1185
  msgid ""
1186
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1187
  "With those themes, WPGlobus Customizer is switched off by default"
1188
  msgstr ""
1189
 
 
1190
  msgid "The currently active theme is"
1191
  msgstr ""
1192
 
 
1193
  msgid "In the current version, WPGlobus Customizer does not support"
1194
  msgstr ""
1195
 
 
1196
  msgid "translation of the navigation menus"
1197
  msgstr ""
1198
 
 
1199
  msgid "to translate, please go to"
1200
  msgstr ""
1201
 
 
1202
  msgid "Go to Customizer"
1203
  msgstr ""
1204
 
 
1205
  msgid "is undefined"
1206
  msgstr ""
1207
 
 
1208
  msgid "is set to"
1209
  msgstr ""
1210
 
 
1211
  msgid "by adding to the file wp-config.php"
1212
  msgstr ""
1213
 
 
1214
  msgid "now"
1215
  msgstr ""
1216
 
 
1217
  msgid "We rely on your support!"
1218
  msgstr "Wir setzen auf Ihre Unterstützung!"
1219
 
 
1220
  msgid "Please consider a small donation to support the future development."
1221
  msgstr ""
1222
  "Bitte ziehen Sie eine kleine Spende zur Unterstützung der zukünftigen "
1223
  "Entwicklung des Plugins in Betracht."
1224
 
 
1225
  msgid "Thank you!"
1226
  msgstr "Danke!"
1227
 
 
1228
  msgid "WPGlobus Plus!"
1229
  msgstr "WPGlobus Plus!"
1230
 
 
1231
  msgid ""
1232
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1233
  "separate publishing and more! "
1235
  "Erweiterte Funktionen und Werkzeuge: URL-Übersetzung, mehrsprachige SEO-"
1236
  "Analyse, separate Veröffentlichung und mehr! "
1237
 
 
1238
  msgid "Get WPGlobus Plus now!"
1239
  msgstr "Jetzt zu WPGlobus Plus wechseln!"
1240
 
 
1241
  msgid ""
1242
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1243
  "the current version."
1244
  msgstr ""
1245
 
 
1246
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1247
  msgstr ""
1248
 
 
1249
  msgid "WPGlobus warning: "
1250
  msgstr ""
1251
 
 
1252
  msgid "https://github.com/WPGlobus/WPGlobus"
1253
  msgstr "https://github.com/WPGlobus/WPGlobus"
1254
 
 
1255
  msgid ""
1256
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1257
  "widgets and even custom fields - in multiple languages!"
1260
  "Menüs, Widgets und sogar benutzerdefinierte Felder - alles einfach und "
1261
  "übersichtlich in mehreren Sprachen!"
1262
 
 
1263
  msgid "https://wpglobus.com/"
1264
  msgstr "https://wpglobus.com/"
languages/wpglobus-de_DE.po CHANGED
@@ -18,44 +18,25 @@ msgstr ""
18
  "Content-Transfer-Encoding: 8bit\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
21
- #: includes/admin/central/class-wpglobus-admin-central.php:122,
22
- #: includes/admin/class-wpglobus-about.php:42,
23
- #: includes/admin/class-wpglobus-about.php:117,
24
- #: includes/admin/class-wpglobus-clean.php:600,
25
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
26
  msgid "Guide"
27
  msgstr "Anleitung"
28
 
29
- #: includes/admin/central/class-wpglobus-admin-central.php:142,
30
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
31
  msgid "WPGlobus Help Desk"
32
  msgstr ""
33
 
34
- #: includes/admin/central/class-wpglobus-admin-central.php:157,
35
- #: includes/admin/class-wpglobus-about.php:36,
36
- #: includes/admin/class-wpglobus-admin-menu.php:22,
37
- #: includes/admin/class-wpglobus-clean.php:606,
38
- #: includes/admin/class-wpglobus-customize-options.php:1293,
39
- #: includes/admin/class-wpglobus-customize-options.php:1261,
40
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
41
  msgid "Add-ons"
42
  msgstr "Add-ons"
43
 
44
- #: includes/admin/class-wpglobus-about.php:26
45
  msgid "Quick Start"
46
  msgstr "Schnell-Start"
47
 
48
- #: includes/admin/class-wpglobus-about.php:48,
49
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
50
  msgid "FAQ"
51
  msgstr "FAQ"
52
 
53
- #: includes/admin/class-wpglobus-about.php:59
54
  msgid ""
55
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
56
  msgstr ""
57
 
58
- #: includes/admin/class-wpglobus-about.php:60
59
  msgid ""
60
  "The mbstring extension is required for the full UTF-8 compatibility and "
61
  "better performance. Without it, some parts of WordPress and WPGlobus may "
@@ -63,20 +44,16 @@ msgid ""
63
  "administrator."
64
  msgstr ""
65
 
66
- #: includes/admin/class-wpglobus-about.php:87
67
  msgid "Go to WPGlobus Settings"
68
  msgstr "Zu den WPGlobus Einstellungen"
69
 
70
- #: includes/admin/class-wpglobus-about.php:98
71
  msgid "Easy as 1-2-3:"
72
  msgstr "Einfach wie 1-2-3:"
73
 
74
- #: includes/admin/class-wpglobus-about.php:101
75
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
76
  msgstr ""
77
  "Gehen Sie ins WPGlobus Admin-Menü und wählen Sie die Länder / Sprachen aus;"
78
 
79
- #: includes/admin/class-wpglobus-about.php:102
80
  msgid ""
81
  "Enter the translations to the posts, pages, categories, tags and menus using "
82
  "a clean and simple interface."
@@ -84,58 +61,47 @@ msgstr ""
84
  "Geben Sie Übersetzungen der Beiträge, Seiten, Kategorien, Tags und Menüs "
85
  "ein. Alles über eine saubere und einfache Oberfläche."
86
 
87
- #: includes/admin/class-wpglobus-about.php:103
88
  msgid ""
89
  "Switch languages at the front-end using a drop-down menu with language names "
90
  "and country flags."
91
  msgstr ""
92
  "Wechsel der Sprache im Front-End per Dropdown Menü mit Ländername und Flagge."
93
 
94
- #: includes/admin/class-wpglobus-about.php:111
95
  msgid "Links:"
96
  msgstr "Links:"
97
 
98
- #: includes/admin/class-wpglobus-about.php:119
99
  msgid "FAQs"
100
  msgstr "FAQs"
101
 
102
- #: includes/admin/class-wpglobus-about.php:121
103
  msgid "Contact Us"
104
  msgstr "Kontaktieren Sie uns"
105
 
106
- #: includes/admin/class-wpglobus-about.php:123
107
  msgid "Please give us 5 stars!"
108
  msgstr "Bitte geben Sie uns 5 Sterne!"
109
 
110
- #: includes/admin/class-wpglobus-about.php:133
111
  msgid "WPGlobus does not translate texts automatically!"
112
  msgstr ""
113
 
114
- #: includes/admin/class-wpglobus-about.php:136
115
  msgid ""
116
  "There are many translation companies and individual translators who can help "
117
  "you write and proofread the texts."
118
  msgstr ""
119
 
120
- #: includes/admin/class-wpglobus-about.php:137
121
  msgid ""
122
  "When you choose a translator, please look at their native language, country "
123
  "of residence, specialization and knowledge of WordPress."
124
  msgstr ""
125
 
126
  #. translators: %s are used to insert HTML link. Keep them in place.
127
- #: includes/admin/class-wpglobus-about.php:143
128
  msgid ""
129
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
130
  "website. This is not an endorsement, just a courtesy. Please contact them "
131
  "directly and let us know how did it work for you!"
132
  msgstr ""
133
 
134
- #: includes/admin/class-wpglobus-about.php:154
135
  msgid "Important notes:"
136
  msgstr "Wichtige Hinweise:"
137
 
138
- #: includes/admin/class-wpglobus-about.php:159
139
  msgid ""
140
  "WPGlobus only supports the localization URLs in the form of <code>example."
141
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
@@ -146,13 +112,11 @@ msgstr ""
146
  "Übersetzungfunktionalität für Sub-Domains<code>xx.example.com</code> oder "
147
  "Parameter-Abfragen <code>example.com?lang=xx</code> in der URL geplant."
148
 
149
- #: includes/admin/class-wpglobus-about.php:162
150
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
151
  msgstr ""
152
  "Einige Themen und Plugins unterstützen <strong>keine mehrsprachigkeit</"
153
  "strong>."
154
 
155
- #: includes/admin/class-wpglobus-about.php:163
156
  msgid ""
157
  "They might display some texts with no translation, or with all languages "
158
  "mixed together."
@@ -161,7 +125,6 @@ msgstr ""
161
  "Sprachen miteinander vermischt."
162
 
163
  #. translators: %s are used to insert HTML link. Keep them in place.
164
- #: includes/admin/class-wpglobus-about.php:167
165
  msgid ""
166
  "Please contact the theme / plugin author. If they are unable to assist, "
167
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
@@ -170,21 +133,15 @@ msgstr ""
170
  "Installation oder Anpassung haben, können Sie %s das WPGlobus Team %s mit "
171
  "einer benutzerdefinierte Anpassung beauftragen."
172
 
173
- #: includes/admin/class-wpglobus-admin-bar-menu.php:124
174
  msgid "Language was set on your profile page"
175
  msgstr ""
176
 
177
- #: includes/admin/class-wpglobus-admin-bar-menu.php:194
178
  msgid "Add"
179
  msgstr "Hinzufügen"
180
 
181
- #: includes/admin/class-wpglobus-admin-page.php:32,
182
- #: includes/admin/class-wpglobus-clean.php:585
183
  msgid "Multilingual Everything!"
184
  msgstr "Übersetz' alles!"
185
 
186
- #: includes/admin/class-wpglobus-admin-page.php:34,
187
- #: includes/admin/class-wpglobus-clean.php:588
188
  msgid ""
189
  "WPGlobus is a family of WordPress plugins assisting you in making "
190
  "multilingual WordPress blogs and sites."
@@ -192,25 +149,20 @@ msgstr ""
192
  "WPGlobus ist ein Paket von mehreren WordPress-Plugins, die Möglichkeiten zur "
193
  "Übersetzung von Wordpress-Installationen bieten."
194
 
195
- #: includes/admin/class-wpglobus-clean.php:232
196
  msgid "Remove the WPGlobus settings (not recommended)"
197
  msgstr ""
198
 
199
- #: includes/admin/class-wpglobus-clean.php:595
200
  msgid "Clean-up Tool"
201
  msgstr ""
202
 
203
- #: includes/admin/class-wpglobus-clean.php:609
204
  msgid "Support"
205
  msgstr "Support"
206
 
207
- #: includes/admin/class-wpglobus-clean.php:614
208
  msgid ""
209
  "WARNING: this operation is non-reversible. It is strongly recommended that "
210
  "you backup your database before proceeding."
211
  msgstr ""
212
 
213
- #: includes/admin/class-wpglobus-clean.php:619
214
  msgid ""
215
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
216
  "By running it, you will remove ALL translations you have entered to your "
@@ -220,7 +172,6 @@ msgid ""
220
  "so on."
221
  msgstr ""
222
 
223
- #: includes/admin/class-wpglobus-clean.php:622
224
  msgid ""
225
  "Make sure that your active theme does not have any code related to WPGlobus. "
226
  "Such code could be added by you or by a 3rd party developer. If that code "
@@ -229,42 +180,34 @@ msgid ""
229
  msgstr ""
230
 
231
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
232
- #: includes/admin/class-wpglobus-clean.php:630
233
  msgid ""
234
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
235
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
236
  msgstr ""
237
 
238
- #: includes/admin/class-wpglobus-clean.php:641
239
  msgid "You are about to clean the content of the following database tables:"
240
  msgstr ""
241
 
242
- #: includes/admin/class-wpglobus-clean.php:649
243
  msgid "The operations log"
244
  msgstr ""
245
 
246
- #: includes/admin/class-wpglobus-clean.php:652
247
  msgid ""
248
  "We are going to write a detailed log of all the database changes performed. "
249
  "It should help in the case you need to restore something important. The log "
250
  "will be written to the file:"
251
  msgstr ""
252
 
253
- #: includes/admin/class-wpglobus-clean.php:662
254
  msgid ""
255
  "Uncheck if you do not want to write the operations log (we recommend to keep "
256
  "it checked)"
257
  msgstr ""
258
 
259
- #: includes/admin/class-wpglobus-clean.php:667
260
  msgid "You have been warned..."
261
  msgstr ""
262
 
263
- #: includes/admin/class-wpglobus-clean.php:669
264
  msgid "Please confirm by checking the box below:"
265
  msgstr ""
266
 
267
- #: includes/admin/class-wpglobus-clean.php:671
268
  msgid ""
269
  "I have read and understood everything written on this page. I am aware that "
270
  "by using this tool I may loose some content of my website. I have made a "
@@ -272,153 +215,100 @@ msgid ""
272
  "responsible for the results."
273
  msgstr ""
274
 
275
- #: includes/admin/class-wpglobus-clean.php:674
276
  msgid "YES, I CONFIRM"
277
  msgstr "JA, ICH STIMME ZU"
278
 
279
- #: includes/admin/class-wpglobus-clean.php:678
280
  msgid "Process with the Clean-up"
281
  msgstr ""
282
 
283
- #: includes/admin/class-wpglobus-customize-options.php:73,
284
- #: includes/admin/class-wpglobus-customize-options.php:100,
285
- #: includes/admin/class-wpglobus-customize-options.php:145,
286
- #: includes/admin/class-wpglobus-customize-options.php:183
287
  msgid "Default"
288
  msgstr "Standard"
289
 
290
- #: includes/admin/class-wpglobus-customize-options.php:264
291
  msgid "Section"
292
  msgstr ""
293
 
294
- #: includes/admin/class-wpglobus-customize-options.php:277
295
  msgid "Show all sections"
296
  msgstr ""
297
 
298
- #: includes/admin/class-wpglobus-customize-options.php:279
299
  msgid "Save &amp; Reload"
300
  msgstr ""
301
 
302
- #: includes/admin/class-wpglobus-customize-options.php:553,
303
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:585,
304
- #: includes/class-wpglobus.php:1284, wpglobus.php:12, wpglobus.php:18
305
  msgid "WPGlobus"
306
  msgstr "WPGlobus"
307
 
308
- #: includes/admin/class-wpglobus-customize-options.php:604
309
  msgid ""
310
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
311
  msgstr ""
312
 
313
- #: includes/admin/class-wpglobus-customize-options.php:610
314
  msgid "Fields Settings"
315
  msgstr ""
316
 
317
- #: includes/admin/class-wpglobus-customize-options.php:655
318
  msgid "WPGlobus Settings"
319
  msgstr "WPGlobus Einstellungen"
320
 
321
- #: includes/admin/class-wpglobus-customize-options.php:723
322
  msgid "Help"
323
  msgstr "Hilfe"
324
 
325
- #: includes/admin/class-wpglobus-customize-options.php:745,
326
- #: includes/options/class-wpglobus-options.php:1176
327
  msgid "Languages"
328
  msgstr "Sprachen"
329
 
330
- #: includes/admin/class-wpglobus-customize-options.php:765,
331
- #: includes/options/class-wpglobus-options.php:1189
332
  msgid "Enabled Languages"
333
  msgstr "Aktivierte Sprachen"
334
 
335
- #: includes/admin/class-wpglobus-customize-options.php:767,
336
- #: includes/options/class-wpglobus-options.php:1190
337
  msgid "These languages are currently enabled on your site."
338
  msgstr "Diese Sprachen sind momentan auf Ihrer Website aktiviert."
339
 
340
- #: includes/admin/class-wpglobus-customize-options.php:795,
341
- #: includes/options/class-wpglobus-options.php:1148
342
  msgid "Choose a language you would like to enable."
343
  msgstr ""
344
 
345
- #: includes/admin/class-wpglobus-customize-options.php:797
346
  msgid "Press the [Save & Publish] button to confirm."
347
  msgstr ""
348
 
349
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
350
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
351
- #: includes/admin/class-wpglobus-customize-options.php:801,
352
- #: includes/options/class-wpglobus-options.php:1154
353
  msgid "or Add new Language %1$s here %2$s"
354
  msgstr ""
355
 
356
- #: includes/admin/class-wpglobus-customize-options.php:813,
357
- #: includes/options/class-wpglobus-options.php:1203
358
  msgid "Add Languages"
359
  msgstr "Sprachen hinzufügen"
360
 
361
- #: includes/admin/class-wpglobus-customize-options.php:833,
362
- #: includes/options/class-wpglobus-options.php:1211
363
  msgid "Language Selector Mode"
364
  msgstr "Sprach-Selektor Modus"
365
 
366
- #: includes/admin/class-wpglobus-customize-options.php:838,
367
- #: includes/options/class-wpglobus-options.php:1214
368
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
369
  msgstr "Zweistelliger Buchstaben-Code mit Flagge (de, ru, it, usw.)"
370
 
371
- #: includes/admin/class-wpglobus-customize-options.php:839,
372
- #: includes/options/class-wpglobus-options.php:1215
373
  msgid "Full Name (English, Russian, Italian, etc.)"
374
  msgstr "Vollständiger Name (English, Russian, Italian, etc.)"
375
 
376
- #: includes/admin/class-wpglobus-customize-options.php:841,
377
- #: includes/options/class-wpglobus-options.php:1216
378
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
379
  msgstr "Vollständiger Name mit Flagge (Englisch, Russisch, Italienisch, etc.)"
380
 
381
- #: includes/admin/class-wpglobus-customize-options.php:842,
382
- #: includes/options/class-wpglobus-options.php:1217
383
  msgid "Flags only"
384
  msgstr "nur Flaggen"
385
 
386
- #: includes/admin/class-wpglobus-customize-options.php:844,
387
- #: includes/options/class-wpglobus-options.php:1212
388
  msgid ""
389
  "Choose the way language name and country flag are shown in the drop-down menu"
390
  msgstr ""
391
  "Wählen Sie die Art der Display-Sprachnamen und die Flagge des Landes, im "
392
  "Dropdown-Menü"
393
 
394
- #: includes/admin/class-wpglobus-customize-options.php:879
395
  msgid "select navigation menu"
396
  msgstr ""
397
 
398
- #: includes/admin/class-wpglobus-customize-options.php:915,
399
- #: includes/admin/class-wpglobus-customize-options.php:888,
400
- #: includes/options/class-wpglobus-options.php:1230
401
  msgid "Language Selector Menu"
402
  msgstr "Language Selector Menu"
403
 
404
- #: includes/admin/class-wpglobus-customize-options.php:920,
405
- #: includes/admin/class-wpglobus-customize-options.php:899,
406
- #: includes/options/class-wpglobus-options.php:1231
407
  msgid "Choose the navigation menu where the language selector will be shown"
408
  msgstr ""
409
  "Wählen Sie das Navigationsmenü, wo die Sprachwahl angezeigt werden soll."
410
 
411
- #: includes/admin/class-wpglobus-customize-options.php:898
412
  msgid "No menus have been created yet. Create some."
413
  msgstr ""
414
 
415
- #: includes/admin/class-wpglobus-customize-options.php:940,
416
- #: includes/options/class-wpglobus-options.php:1241
417
  msgid "\"All Pages\" menus Language selector"
418
  msgstr "\"Alle Seiten\" Menü Sprachauswahl"
419
 
420
- #: includes/admin/class-wpglobus-customize-options.php:943,
421
- #: includes/options/class-wpglobus-options.php:1243
422
  msgid ""
423
  "Adds language selector to the menus that automatically list all existing "
424
  "pages (using `wp_list_pages`)"
@@ -426,12 +316,9 @@ msgstr ""
426
  "Fügt einen Sprach-Selektor zum Menü hinzu, welches automatisch alle Seiten "
427
  "auflistet ( `benutzt wp_list_pages`)"
428
 
429
- #: includes/admin/class-wpglobus-customize-options.php:960,
430
- #: includes/options/class-wpglobus-options.php:1356
431
  msgid "Custom CSS"
432
  msgstr "Benutzerdefiniertes CSS"
433
 
434
- #: includes/admin/class-wpglobus-customize-options.php:964
435
  msgid ""
436
  "Here you can enter the CSS rules to adjust the language selector menu for "
437
  "your theme. Look at the examples in the `style-samples.css` file."
@@ -440,99 +327,69 @@ msgstr ""
440
  "Theme anzeigen. Schauen Sie sich die Beispiele in der `style-samples.css` "
441
  "Datei an."
442
 
443
- #: includes/admin/class-wpglobus-customize-options.php:983
444
  msgid "Post types"
445
  msgstr "Post-Typen"
446
 
447
- #: includes/admin/class-wpglobus-customize-options.php:1091
448
  msgid "Uncheck to disable WPGlobus"
449
  msgstr "Deaktivieren Sie die Checkbox, um WPGlobus deaktivieren"
450
 
451
- #: includes/admin/class-wpglobus-customize-options.php:1125,
452
- #: includes/options/class-wpglobus-options.php:1424
453
  msgid "Redirect"
454
  msgstr "Weiterleiten"
455
 
456
- #: includes/admin/class-wpglobus-customize-options.php:1150,
457
- #: includes/options/class-wpglobus-options.php:1419
458
  msgid "Choose the language automatically, based on:"
459
  msgstr ""
460
 
461
- #: includes/admin/class-wpglobus-customize-options.php:1152,
462
- #: includes/options/class-wpglobus-options.php:1409
463
  msgid "Preferred language set in the browser"
464
  msgstr ""
465
 
466
- #: includes/admin/class-wpglobus-customize-options.php:1153,
467
- #: includes/options/class-wpglobus-options.php:1396
468
  msgid ""
469
  "When a user comes to the site for the first time, try to find the best "
470
  "matching language version of the page."
471
  msgstr ""
472
 
473
- #: includes/admin/class-wpglobus-customize-options.php:1214,
474
- #: includes/admin/class-wpglobus-customize-options.php:1234,
475
- #: includes/admin/class-wpglobus-customize-options.php:1192,
476
- #: includes/options/class-wpglobus-options.php:1368
477
  msgid "Custom JS Code"
478
  msgstr ""
479
 
480
- #: includes/admin/class-wpglobus-customize-options.php:1232,
481
- #: includes/admin/class-wpglobus-customize-options.php:1276
482
  msgid "Title"
483
  msgstr "Titel"
484
 
485
- #: includes/admin/class-wpglobus-customize-options.php:1235
486
  msgid "(Paste your JS code here.)"
487
  msgstr ""
488
 
489
- #: includes/admin/class-wpglobus-customize-options.php:1184
490
  msgid ""
491
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
492
  "version 4.9 or later."
493
  msgstr ""
494
 
495
- #: includes/admin/class-wpglobus-customize-options.php:1186
496
  msgid "With your version of WordPress, please use the"
497
  msgstr ""
498
 
499
- #: includes/admin/class-wpglobus-customize-options.php:1188
500
  msgid "WPGlobus Settings page"
501
  msgstr ""
502
 
503
- #: includes/admin/class-wpglobus-customize-options.php:1277
504
  msgid "Label"
505
  msgstr "Beschriftung"
506
 
507
- #: includes/admin/class-wpglobus-customize-options.php:1281
508
  msgid "Description"
509
  msgstr "Umschreibung"
510
 
511
- #: includes/admin/class-wpglobus-customize-options.php:1345
512
  msgid ""
513
  "Here you can specify which fields should be considered multilingual by "
514
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
515
  msgstr ""
516
 
517
- #: includes/admin/class-wpglobus-customize-options.php:1351,
518
- #: includes/options/class-wpglobus-options.php:608
519
  msgid "Thank you for installing WPGlobus!"
520
  msgstr "Danke, dass Sie WPGlobus installiert haben!"
521
 
522
- #: includes/admin/class-wpglobus-customize-options.php:1355,
523
- #: includes/options/class-wpglobus-options.php:612
524
  msgid "Read About WPGlobus"
525
  msgstr "Lesen Sie mehr über WPGlobus"
526
 
527
- #: includes/admin/class-wpglobus-customize-options.php:1358
528
  msgid ""
529
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
530
  msgstr ""
531
  "Klicken Sie auf <strong>[Sprachen]</strong>, auf der linken Seite um die "
532
  "Optionen einzurichten."
533
 
534
- #: includes/admin/class-wpglobus-customize-options.php:1363,
535
- #: includes/options/class-wpglobus-options.php:648
536
  msgid ""
537
  "Should you have any questions or comments, please do not hesitate to contact "
538
  "us."
@@ -540,28 +397,19 @@ msgstr ""
540
  "Sollten Sie Fragen oder Anmerkungen haben, kontaktieren Sie uns, wir freuen "
541
  "uns Ihnen zu helfen."
542
 
543
- #: includes/admin/class-wpglobus-customize-options.php:1367,
544
- #: includes/options/class-wpglobus-options.php:652
545
  msgid "Sincerely Yours,"
546
  msgstr "Mit freundlichen Grüßen,"
547
 
548
- #: includes/admin/class-wpglobus-customize-options.php:1369,
549
- #: includes/options/class-wpglobus-options.php:654,
550
- #: includes/options/wpglobus-options-header.php:34
551
  msgid "The WPGlobus Team"
552
  msgstr "Das WPGlobus-Team"
553
 
554
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
555
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
556
- #: includes/admin/class-wpglobus-customize-options.php:1388,
557
- #: includes/options/class-wpglobus-options.php:689
558
  msgid ""
559
  "We would hate to see you go. If something goes wrong, do not uninstall "
560
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
561
  msgstr ""
562
 
563
- #: includes/admin/class-wpglobus-customize-options.php:1395,
564
- #: includes/options/class-wpglobus-options.php:696
565
  msgid ""
566
  "Please note that if you deactivate WPGlobus, your site will show all the "
567
  "languages together, mixed up. You will need to remove all translations, "
@@ -570,8 +418,6 @@ msgstr ""
570
 
571
  #. translators: %s: link to the Clean-up Tool
572
  #. translators: %s: link to the Clean-up Tool.
573
- #: includes/admin/class-wpglobus-customize-options.php:1400,
574
- #: includes/options/class-wpglobus-options.php:700
575
  msgid ""
576
  "If there are just a few places, you should edit them manually. To "
577
  "automatically remove all translations at once, you can use the %s. WARNING: "
@@ -581,409 +427,304 @@ msgstr ""
581
 
582
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
583
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
584
- #: includes/admin/class-wpglobus-customize-options.php:1403,
585
- #: includes/options/class-wpglobus-options.php:677
586
  msgid "%1$sClean-up Tool%2$s"
587
  msgstr ""
588
 
589
  #. translators: %s: name of current theme
590
- #: includes/admin/class-wpglobus-customize-options.php:1415
591
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
592
  msgstr ""
593
 
594
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
595
- #: includes/admin/class-wpglobus-customize-options.php:1421
596
  msgid "Please use %1$sWPGlobus options page%2$s instead."
597
  msgstr ""
598
 
599
- #: includes/admin/class-wpglobus-customize-options.php:1485
600
  msgid "Expand/Shrink"
601
  msgstr ""
602
 
603
- #: includes/admin/class-wpglobus-dashboard-news.php:43,
604
- #: includes/admin/class-wpglobus-dashboard-news.php:59
605
  msgid "WPGlobus News"
606
  msgstr "WPGlobus-Nachrichten"
607
 
608
- #: includes/admin/class-wpglobus-language-edit.php:197,
609
- #: includes/admin/class-wpglobus-language-edit.php:192
610
  msgid "Options updated"
611
  msgstr "Optionen aktualisiert"
612
 
613
- #: includes/admin/class-wpglobus-language-edit.php:272
614
  msgid "Please enter a language code!"
615
  msgstr "Bitte geben Sie den Sprachcode ein!"
616
 
617
- #: includes/admin/class-wpglobus-language-edit.php:276
618
  msgid "Language code already exists!"
619
  msgstr "Sprachcode bereits vorhanden!"
620
 
621
- #: includes/admin/class-wpglobus-language-edit.php:280
622
  msgid "Please specify the language flag!"
623
  msgstr "Bitte geben Sie die Sprach-Flagge an!"
624
 
625
- #: includes/admin/class-wpglobus-language-edit.php:284
626
  msgid "Please enter the language name!"
627
  msgstr "Bitte geben Sie den Namen der Sprache an!"
628
 
629
- #: includes/admin/class-wpglobus-language-edit.php:288
630
  msgid "Please enter the language name in English!"
631
  msgstr "Bitte geben Sie die Sprache in Englischer Bezeichnung an!"
632
 
633
- #: includes/admin/class-wpglobus-language-edit.php:292
634
  msgid "Please enter the locale!"
635
  msgstr "Bitte geben Sie die sogenannte Locale an!"
636
 
637
- #: includes/admin/class-wpglobus-language-edit.php:354
638
  msgid "Add Language"
639
  msgstr "Sprache hinzufügen"
640
 
641
- #: includes/admin/class-wpglobus-language-edit.php:351,
642
- #: includes/admin/class-wpglobus-language-edit.php:462,
643
- #: includes/admin/class-wpglobus-language-edit.php:455
644
  msgid "Delete Language"
645
  msgstr "Sprache löschen"
646
 
647
- #: includes/admin/class-wpglobus-language-edit.php:349
648
  msgid "Edit Language"
649
  msgstr "Sprache ändern"
650
 
651
- #: includes/admin/class-wpglobus-language-edit.php:384
652
  msgid "Language Code"
653
  msgstr "Sprachcode"
654
 
655
- #: includes/admin/class-wpglobus-language-edit.php:391
656
  msgid ""
657
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
658
  msgstr ""
659
  "2-stelliger ISO-Sprachcode für die Sprache, welche Sie einfügen möchten. "
660
  "(Beispiel: en für Englisch)"
661
 
662
- #: includes/admin/class-wpglobus-language-edit.php:396
663
  msgid "Language flag"
664
  msgstr "Sprachflagge"
665
 
666
- #: includes/admin/class-wpglobus-language-edit.php:412
667
  msgid "Name"
668
  msgstr "Name"
669
 
670
- #: includes/admin/class-wpglobus-language-edit.php:417
671
  msgid ""
672
  "The name of the language in its native alphabet. (Examples: English, Русский)"
673
  msgstr ""
674
  "Der gesprochene Name der Sprache in seiner Muttersprache. (Beispiele: "
675
  "English, Deutsch)"
676
 
677
- #: includes/admin/class-wpglobus-language-edit.php:422
678
  msgid "Name in English"
679
  msgstr "Name in Englisch"
680
 
681
- #: includes/admin/class-wpglobus-language-edit.php:427
682
  msgid "The name of the language in English"
683
  msgstr "Der Name der Sprache auf Englisch"
684
 
685
- #: includes/admin/class-wpglobus-language-edit.php:432,
686
- #: includes/options/fields/table/class-wpglobus-languages-table.php:115
687
  msgid "Locale"
688
  msgstr "Lokale"
689
 
690
- #: includes/admin/class-wpglobus-language-edit.php:437
691
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
692
  msgstr "PHP/WordPress Gebietsschema der Sprache. (Beispiele: en_US, de_DE)"
693
 
694
- #: includes/admin/class-wpglobus-language-edit.php:460
695
  msgid "Are you sure you want to delete?"
696
  msgstr "Sind Sie sicher, dass Sie die Lösch-Aktion durchführen möchten?"
697
 
698
- #: includes/admin/class-wpglobus-language-edit.php:447
699
  msgid "Save Changes"
700
  msgstr "Änderungen speichern"
701
 
702
- #: includes/admin/class-wpglobus-language-edit.php:470
703
  msgid "Back to the WPGlobus Settings"
704
  msgstr "Zurück zu den WPGlobus-Einstellungen"
705
 
706
- #: includes/admin/class-wpglobus-plugin-install.php:308
707
  msgid "Current Version"
708
  msgstr "Aktuelle Version"
709
 
710
- #: includes/admin/class-wpglobus-plugin-install.php:309
711
  msgid "Get it now!"
712
  msgstr "Jetzt holen"
713
 
714
- #: includes/admin/class-wpglobus-plugin-install.php:310
715
  msgid "Premium add-on"
716
  msgstr ""
717
 
718
- #: includes/admin/class-wpglobus-plugin-install.php:311,
719
- #: includes/options/fields/table/class-wpglobus-languages-table.php:472
720
  msgid "Installed"
721
  msgstr "Installiert"
722
 
723
  #. translators: placeholders are for the HTML tags.
724
- #: includes/admin/class-wpglobus-plugin-install.php:319
725
  msgid ""
726
  "If you have already purchased a WPGlobus premium extension, please read "
727
  "%1$sthe installation instructions here%2$s"
728
  msgstr ""
729
 
730
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
731
- #: includes/options/class-wpglobus-options.php:726
732
  msgid "Help Desk"
733
  msgstr ""
734
 
735
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:185
736
  msgid "Email not sent. Please fill in the entire form."
737
  msgstr ""
738
 
739
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:195
740
  msgid ""
741
  "Email not sent. Please verify that your name and email are entered correctly."
742
  msgstr ""
743
 
744
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:216
745
  msgid "Email sent."
746
  msgstr ""
747
 
748
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
749
  msgid "Thank you for using WPGlobus!"
750
  msgstr "Danke, dass du WPGlobus! nutzt."
751
 
752
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
753
  msgid "Our Support Team is here to answer your questions or concerns."
754
  msgstr ""
755
  "Unser Support-Team ist dazu da, deine Fragen oder Anliegen zu beantworten."
756
 
757
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
758
  msgid "To help us serve you better:"
759
  msgstr ""
760
 
761
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
762
  msgid ""
763
  "Please check if the problem persists if you switch to a standard WordPress "
764
  "theme."
765
  msgstr ""
766
 
767
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
768
  msgid ""
769
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
770
  msgstr ""
771
 
772
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
773
  msgid "Please fill in and submit the contact form:"
774
  msgstr ""
775
 
776
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
777
  msgid "Please make sure the email address is correct."
778
  msgstr ""
779
 
780
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
781
  msgid "Subject"
782
  msgstr "Betreff"
783
 
784
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
785
  msgid "Short description of the problem"
786
  msgstr ""
787
 
788
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
789
  msgid "Detailed description"
790
  msgstr ""
791
 
792
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
793
  msgid "Technical Information"
794
  msgstr "Systeminformationen"
795
 
796
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
797
  msgid "This information helps us to find the problem source"
798
  msgstr ""
799
 
800
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:161
801
  msgid ""
802
  "Alternatively, please email %s. Do not forget to copy and paste the "
803
  "technical information to your email message."
804
  msgstr ""
805
 
806
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:89
807
  msgid "WPGlobus Recommends:"
808
  msgstr ""
809
 
810
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:98,
811
- #: includes/options/class-wpglobus-options.php:933
812
  msgid "WPGlobus for WooCommerce"
813
  msgstr ""
814
 
815
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:102
816
  msgid ""
817
  "Translate product titles and descriptions, product categories, tags and "
818
  "attributes."
819
  msgstr ""
820
 
821
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:107
822
  msgid "Get it now:"
823
  msgstr "Jetzt holen"
824
 
825
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:117
826
  msgid "WooCommerce Multi-Currency"
827
  msgstr ""
828
 
829
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:121
830
  msgid "Accept multiple currencies in your online store!"
831
  msgstr ""
832
 
833
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:126,
834
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:185
835
  msgid "Check it out:"
836
  msgstr ""
837
 
838
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:195
839
  msgid "To translate permalinks, please activate the module Slug."
840
  msgstr ""
841
 
842
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:183
843
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
844
  msgstr ""
845
 
846
- #: includes/builders/class-wpglobus-builder.php:278,
847
- #: includes/class-wpglobus.php:3577
848
  msgid "Save draft before using extra language."
849
  msgstr ""
850
 
851
- #: includes/builders/class-wpglobus-builder.php:371
852
  msgid "Builder"
853
  msgstr ""
854
 
855
- #: includes/builders/class-wpglobus-builder.php:395
856
  msgid "Сompatibility Settings"
857
  msgstr ""
858
 
859
  #. translators: ON/OFF status of WPGlobus on the edit pages.
860
  #. translators: ON/OFF status of WPGlobus on the edit pages.
861
- #: includes/builders/elementor/class-wpglobus-elementor.php:255,
862
- #: includes/class-wpglobus.php:1263
863
  msgid "ON"
864
  msgstr "EIN"
865
 
866
- #: includes/builders/elementor/class-wpglobus-elementor.php:256,
867
- #: includes/class-wpglobus.php:1264
868
  msgid "Turn off"
869
  msgstr ""
870
 
871
- #: includes/builders/elementor/class-wpglobus-elementor.php:250,
872
- #: includes/class-wpglobus.php:1258
873
  msgid "OFF"
874
  msgstr "AUS"
875
 
876
- #: includes/builders/elementor/class-wpglobus-elementor.php:251,
877
- #: includes/class-wpglobus.php:1259
878
  msgid "Turn on"
879
  msgstr ""
880
 
881
- #: includes/builders/elementor/class-wpglobus-elementor.php:281
882
  msgid "Elementor"
883
  msgstr ""
884
 
885
- #: includes/builders/elementor/class-wpglobus-elementor.php:508
886
  msgid "WPGlobus languages"
887
  msgstr ""
888
 
889
- #: includes/builders/elementor/class-wpglobus-elementor.php:514
890
  msgid "current"
891
  msgstr ""
892
 
893
- #: includes/builders/elementor/class-wpglobus-elementor.php:675
894
  msgid ""
895
  "WPGlobus provides multilingual support for Elementor only when the option "
896
  "%1$s%2$s%3$s is set to %4$s."
897
  msgstr ""
898
 
899
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:228
900
  msgid "Before switching the language, please save draft or publish."
901
  msgstr ""
902
 
903
  #. translators: Metabox title FOR language.
904
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:318
905
  msgctxt "filter__seo_meta_box_title"
906
  msgid "for"
907
  msgstr ""
908
 
909
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:392
910
  msgid "Page is being reloaded. Please wait..."
911
  msgstr ""
912
 
913
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:393
914
  msgid ""
915
  "Before switching the language, please save draft or publish, then reload "
916
  "page."
917
  msgstr ""
918
 
919
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
920
  msgid ""
921
  "WPGlobus provides multilingual support for Elementor only when the option "
922
  "`CSS Print Method` is set to `External File`."
923
  msgstr ""
924
 
925
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
926
  msgid "Open Elementor Settings page"
927
  msgstr ""
928
 
929
- #: includes/class-wpglobus-widget.php:27
930
  msgid "WPGlobus widget"
931
  msgstr "WPGlobus widget"
932
 
933
- #: includes/class-wpglobus-widget.php:29
934
  msgid "Add language switcher"
935
  msgstr "Sprachumschalter hinzufügen"
936
 
937
- #: includes/class-wpglobus-widget.php:32
938
  msgid "Flags"
939
  msgstr "Flaggen"
940
 
941
- #: includes/class-wpglobus-widget.php:33
942
  msgid "List"
943
  msgstr "Liste"
944
 
945
- #: includes/class-wpglobus-widget.php:34
946
  msgid "List with flags"
947
  msgstr "Liste der Flaggen"
948
 
949
- #: includes/class-wpglobus-widget.php:35
950
  msgid "Select"
951
  msgstr "Bitte wählen"
952
 
953
- #: includes/class-wpglobus-widget.php:36
954
  msgid "Select with language code"
955
  msgstr "Bitte Sprachcode wählen"
956
 
957
- #: includes/class-wpglobus-widget.php:37
958
  msgid "Dropdown"
959
  msgstr "Dropdown"
960
 
961
- #: includes/class-wpglobus-widget.php:38
962
  msgid "Dropdown with flags"
963
  msgstr "Dropdown mit Flaggen"
964
 
965
- #: includes/class-wpglobus-widget.php:264
966
  msgid "Selector type"
967
  msgstr "Selektor-Typ"
968
 
969
- #: includes/class-wpglobus.php:1447
970
  msgid "You cannot disable the main language."
971
  msgstr "Die Hauptsprache kann nicht deaktiviert werden."
972
 
973
- #: includes/class-wpglobus.php:1672
974
  msgid "Need a multilingual slug?"
975
  msgstr ""
976
 
977
- #: includes/class-wpglobus.php:1655
978
  msgid "*) Available after the menu is saved."
979
  msgstr "*) Verfügbar nachdem das Menü gespeichert wurde."
980
 
981
- #: includes/class-wpglobus.php:4025
982
  msgid "You must enable Pretty Permalinks to use WPGlobus."
983
  msgstr ""
984
  "Sie müssen schöne Permalinks aktivieren um WPGlobus verwenden zu können."
985
 
986
- #: includes/class-wpglobus.php:4027
987
  msgid ""
988
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
989
  "default option."
@@ -991,193 +732,150 @@ msgstr ""
991
  "Bitte gehen Sie zu Einstellungen > Permalinks > allgemeine Einstellungen, "
992
  "und wählen Sie die \"Beitragsname\" für schöne Permalinks."
993
 
994
- #: includes/options/class-wpglobus-options.php:281
995
  msgid "Language Selector Menu Style"
996
  msgstr ""
997
 
998
- #: includes/options/class-wpglobus-options.php:282,
999
- #: includes/options/class-wpglobus-options.php:802,
1000
- #: includes/options/class-wpglobus-options.php:871
1001
  msgid "WPGlobus Plus"
1002
  msgstr ""
1003
 
1004
- #: includes/options/class-wpglobus-options.php:283
1005
  msgid "Drop-down languages menu or Flat (in one line)"
1006
  msgstr ""
1007
 
1008
- #: includes/options/class-wpglobus-options.php:286
1009
  msgid "Do not change"
1010
  msgstr ""
1011
 
1012
- #: includes/options/class-wpglobus-options.php:287
1013
  msgid "Drop-down (vertical)"
1014
  msgstr ""
1015
 
1016
- #: includes/options/class-wpglobus-options.php:288
1017
  msgid "Flat (horizontal)"
1018
  msgstr ""
1019
 
1020
- #: includes/options/class-wpglobus-options.php:343
1021
  msgid ""
1022
  "If you see this message then your browser may not display the WPGlobus "
1023
  "Settings panel properly. Please try another browser."
1024
  msgstr ""
1025
 
1026
- #: includes/options/class-wpglobus-options.php:599,
1027
- #: includes/options/class-wpglobus-options.php:1577
1028
  msgid "Сompatibility"
1029
  msgstr ""
1030
 
1031
  #. translators: placeholders for "strong" tags.
1032
- #: includes/options/class-wpglobus-options.php:616
1033
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
1034
  msgstr ""
1035
 
1036
  #. translators: placeholders for "strong" tags.
1037
- #: includes/options/class-wpglobus-options.php:619
1038
  msgid ""
1039
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
1040
  "the language attributes: name, code, flag icon, etc."
1041
  msgstr ""
1042
 
1043
- #: includes/options/class-wpglobus-options.php:622
1044
  msgid "Important notes"
1045
  msgstr "Wichtige Hinweise"
1046
 
1047
  #. translators: placeholders for "strong" tags.
1048
- #: includes/options/class-wpglobus-options.php:624
1049
  msgid "Version %1$s1.9.17%2$s "
1050
  msgstr ""
1051
 
1052
  #. translators: placeholders for "strong" tags.
1053
- #: includes/options/class-wpglobus-options.php:627
1054
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
1055
  msgstr ""
1056
 
1057
  #. translators: placeholders for "strong" tags; compatibility tab link.
1058
- #: includes/options/class-wpglobus-options.php:630
1059
  msgid ""
1060
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
1061
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
1062
  msgstr ""
1063
 
1064
  #. translators: placeholders for "strong" tags; compatibility tab link.
1065
- #: includes/options/class-wpglobus-options.php:633
1066
  msgid ""
1067
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
1068
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
1069
  msgstr ""
1070
 
1071
  #. translators: placeholders for "strong" tags.
1072
- #: includes/options/class-wpglobus-options.php:637
1073
  msgid "Version %1$s2.2.11%2$s "
1074
  msgstr ""
1075
 
1076
- #: includes/options/class-wpglobus-options.php:639
1077
  msgid "Starting from this version"
1078
  msgstr ""
1079
 
1080
  #. translators: placeholders for "strong" tags.
1081
- #: includes/options/class-wpglobus-options.php:642
1082
  msgid ""
1083
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
1084
  "(CPT)."
1085
  msgstr ""
1086
 
1087
  #. translators: placeholders for "strong" tags.
1088
- #: includes/options/class-wpglobus-options.php:645
1089
  msgid ""
1090
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
1091
  "the %1$s[%3$s]%2$s tab."
1092
  msgstr ""
1093
 
1094
- #: includes/options/class-wpglobus-options.php:662
1095
  msgid "Welcome!"
1096
  msgstr "Willkommen!"
1097
 
1098
- #: includes/options/class-wpglobus-options.php:685
1099
  msgid "Deactivating / Uninstalling"
1100
  msgstr ""
1101
 
1102
- #: includes/options/class-wpglobus-options.php:711
1103
  msgid "Uninstall"
1104
  msgstr "Deinstallieren"
1105
 
1106
- #: includes/options/class-wpglobus-options.php:741
1107
  msgid "All add-ons"
1108
  msgstr ""
1109
 
1110
- #: includes/options/class-wpglobus-options.php:756
1111
  msgid "Mobile Menu"
1112
  msgstr ""
1113
 
1114
- #: includes/options/class-wpglobus-options.php:771
1115
  msgid "Language Widgets"
1116
  msgstr ""
1117
 
1118
- #: includes/options/class-wpglobus-options.php:841
1119
  msgid "We Recommend..."
1120
  msgstr ""
1121
 
1122
- #: includes/options/class-wpglobus-options.php:873
1123
  msgid ""
1124
  "Our premium add-on, WPGlobus Plus, will add several features to your "
1125
  "website, such as:"
1126
  msgstr ""
1127
 
1128
- #: includes/options/class-wpglobus-options.php:876
1129
  msgid ""
1130
  "- Ability to write a post in one language and immediately publish it, not "
1131
  "waiting for the translation to other languages;"
1132
  msgstr ""
1133
 
1134
- #: includes/options/class-wpglobus-options.php:879
1135
  msgid "- Set different URLs for each translation;"
1136
  msgstr ""
1137
 
1138
- #: includes/options/class-wpglobus-options.php:882
1139
  msgid ""
1140
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
1141
  "for each translation;"
1142
  msgstr ""
1143
 
1144
- #: includes/options/class-wpglobus-options.php:885
1145
  msgid "- and more..."
1146
  msgstr ""
1147
 
1148
- #: includes/options/class-wpglobus-options.php:888,
1149
- #: includes/options/class-wpglobus-options.php:945,
1150
- #: includes/options/class-wpglobus-options.php:1003
1151
  msgid "Click here to download"
1152
  msgstr ""
1153
 
1154
- #: includes/options/class-wpglobus-options.php:936
1155
  msgid ""
1156
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
1157
  "translate your blog posts and pages to many languages."
1158
  msgstr ""
1159
 
1160
- #: includes/options/class-wpglobus-options.php:939
1161
  msgid "The next step is to translate your WooCommerce-based store!"
1162
  msgstr ""
1163
 
1164
- #: includes/options/class-wpglobus-options.php:942
1165
  msgid ""
1166
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
1167
  "translate product titles and descriptions, categories, tags and attributes."
1168
  msgstr ""
1169
 
1170
- #: includes/options/class-wpglobus-options.php:989
1171
  msgid "Multi-currency"
1172
  msgstr ""
1173
 
1174
- #: includes/options/class-wpglobus-options.php:992
1175
  msgid ""
1176
  "Your WooCommerce-powered store is set to show prices and accept payments in "
1177
  "a single currency only."
1178
  msgstr ""
1179
 
1180
- #: includes/options/class-wpglobus-options.php:996
1181
  msgid ""
1182
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
1183
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
@@ -1185,464 +883,352 @@ msgid ""
1185
  "positioning for global growth!"
1186
  msgstr ""
1187
 
1188
- #: includes/options/class-wpglobus-options.php:1000
1189
  msgid ""
1190
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
1191
  "re-calculating prices on-the-fly."
1192
  msgstr ""
1193
 
1194
- #: includes/options/class-wpglobus-options.php:1037
1195
  msgid "WPGlobus Premium Add-ons"
1196
  msgstr ""
1197
 
1198
- #: includes/options/class-wpglobus-options.php:1039
1199
  msgid ""
1200
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
1201
  "you will be able to:"
1202
  msgstr ""
1203
 
1204
- #: includes/options/class-wpglobus-options.php:1044
1205
  msgid ""
1206
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
1207
  "моя-страница and so on);"
1208
  msgstr ""
1209
 
1210
- #: includes/options/class-wpglobus-options.php:1047
1211
  msgid ""
1212
  "Postpone translation to some languages and <strong>publish only the "
1213
  "translated texts</strong>;"
1214
  msgstr ""
1215
 
1216
- #: includes/options/class-wpglobus-options.php:1050
1217
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
1218
  msgstr ""
1219
 
1220
- #: includes/options/class-wpglobus-options.php:1053
1221
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
1222
  msgstr ""
1223
 
1224
- #: includes/options/class-wpglobus-options.php:1056
1225
  msgid ""
1226
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
1227
  "strong>;"
1228
  msgstr ""
1229
 
1230
- #: includes/options/class-wpglobus-options.php:1060
1231
  msgid "...and more."
1232
  msgstr ""
1233
 
1234
- #: includes/options/class-wpglobus-options.php:1063
1235
  msgid "Click here to visit the WPGlobus Store"
1236
  msgstr ""
1237
 
1238
- #: includes/options/class-wpglobus-options.php:1104
1239
  msgid "Select a language"
1240
  msgstr "Wählen Sie eine Sprache"
1241
 
1242
  #. translators: %3$s placeholder for the icon (actual picture).
1243
- #: includes/options/class-wpglobus-options.php:1133
1244
  msgid ""
1245
  "Place the %1$smain language%2$s of your site at the top of the list by "
1246
  "dragging the %3$s icons."
1247
  msgstr ""
1248
 
1249
  #. translators: placeholders for the "strong" HTML tags.
1250
- #: includes/options/class-wpglobus-options.php:1136
1251
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
1252
  msgstr ""
1253
 
1254
  #. translators: placeholders for the "strong" HTML tags.
1255
- #: includes/options/class-wpglobus-options.php:1139
1256
  msgid "%1$sAdd%2$s more languages using the section below."
1257
  msgstr ""
1258
 
1259
- #: includes/options/class-wpglobus-options.php:1140
1260
  msgid "When done, click the [Save Changes] button."
1261
  msgstr "Wenn Sie fertig sind, klicken Sie auf [Änderungen speichern]."
1262
 
1263
  #. translators: %s - placeholder for the "Save Changes" button text.
1264
- #: includes/options/class-wpglobus-options.php:1151
1265
  msgid "Press the %s button to confirm."
1266
  msgstr ""
1267
 
1268
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
1269
- #: includes/options/class-wpglobus-options.php:1168
1270
  msgid "-- none --"
1271
  msgstr ""
1272
 
1273
- #: includes/options/class-wpglobus-options.php:1169
1274
  msgid "All menus"
1275
  msgstr ""
1276
 
1277
- #: includes/options/class-wpglobus-options.php:1182
1278
  msgid "Instructions:"
1279
  msgstr "Anleitung:"
1280
 
1281
- #: includes/options/class-wpglobus-options.php:1242
1282
  msgid "(Found in some themes)"
1283
  msgstr "(In einigen Themes gefunden)"
1284
 
1285
- #: includes/options/class-wpglobus-options.php:1244
1286
  msgid "Enable"
1287
  msgstr "Aktivieren"
1288
 
1289
- #: includes/options/class-wpglobus-options.php:1259
1290
  msgid "Languages table"
1291
  msgstr "Sprachtabelle"
1292
 
1293
- #: includes/options/class-wpglobus-options.php:1265
1294
  msgid "Use this table to add, edit or delete languages."
1295
  msgstr ""
1296
  "Verwenden Sie diese Tabelle, um Sprachen hinzuzufügen, zu bearbeiten oder zu "
1297
  "löschen."
1298
 
1299
- #: includes/options/class-wpglobus-options.php:1266
1300
  msgid "NOTE: you cannot remove the main language."
1301
  msgstr "Hinweis: Sie können nicht die Hauptsprache entfernen."
1302
 
1303
- #: includes/options/class-wpglobus-options.php:1314
1304
  msgid "WPGlobus is enabled on these Post Types"
1305
  msgstr ""
1306
 
1307
- #: includes/options/class-wpglobus-options.php:1315
1308
  msgid "Uncheck to disable"
1309
  msgstr ""
1310
 
1311
- #: includes/options/class-wpglobus-options.php:1316
1312
  msgid ""
1313
  "Please note that there are post types, which status is managed by other "
1314
  "plugins and cannot be changed here."
1315
  msgstr ""
1316
 
1317
- #: includes/options/class-wpglobus-options.php:1321
1318
  msgid "Post Types"
1319
  msgstr "Post-Types"
1320
 
1321
- #: includes/options/class-wpglobus-options.php:1337
1322
  msgid ""
1323
  "You should put here only the code provided by WPGlobus Support. Do not write "
1324
  "anything else in the sections below as it might break the functionality of "
1325
  "your website!"
1326
  msgstr ""
1327
 
1328
- #: includes/options/class-wpglobus-options.php:1378
1329
  msgid "Custom Code"
1330
  msgstr "Benutzerdefinierter Code"
1331
 
1332
- #: includes/options/class-wpglobus-options.php:1486,
1333
- #: includes/options/class-wpglobus-options.php:1618,
1334
- #: includes/options/class-wpglobus-options.php:1729
1335
  msgid "Enabled"
1336
  msgstr "Aktiviert"
1337
 
1338
- #: includes/options/class-wpglobus-options.php:1499
1339
  msgid "Builders support"
1340
  msgstr ""
1341
 
1342
- #: includes/options/class-wpglobus-options.php:1551
1343
  msgid "Builder mode is enabled on these Post Types"
1344
  msgstr ""
1345
 
1346
- #: includes/options/class-wpglobus-options.php:1617
1347
  msgid "Old fashioned language switcher"
1348
  msgstr ""
1349
 
1350
- #: includes/options/class-wpglobus-options.php:1623
1351
  msgid "Block Editor"
1352
  msgstr ""
1353
 
1354
- #: includes/options/class-wpglobus-options.php:1624
1355
  msgid "Block Editor Options"
1356
  msgstr ""
1357
 
1358
- #: includes/options/class-wpglobus-options.php:1653
1359
  msgid ""
1360
  "With the current settings, you will see the following lines in the section "
1361
  "HEAD of your site pages"
1362
  msgstr ""
1363
 
1364
- #: includes/options/class-wpglobus-options.php:1655
1365
  msgid "(example for two languages)"
1366
  msgstr ""
1367
 
1368
- #: includes/options/class-wpglobus-options.php:1702
1369
  msgid ""
1370
  "Tell search engines about localized versions of your pages using the "
1371
  "hreflang tag"
1372
  msgstr ""
1373
 
1374
- #: includes/options/class-wpglobus-options.php:1711
1375
  msgid "Output the hreflang tag as"
1376
  msgstr ""
1377
 
1378
- #: includes/options/class-wpglobus-options.php:1714
1379
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1380
  msgstr ""
1381
 
1382
- #: includes/options/class-wpglobus-options.php:1715
1383
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1384
  msgstr ""
1385
 
1386
- #: includes/options/class-wpglobus-options.php:1716
1387
  msgid "Language code only (en, ru, etc.)"
1388
  msgstr ""
1389
 
1390
- #: includes/options/class-wpglobus-options.php:1728
1391
  msgid "Use the code `x-default` for the main language"
1392
  msgstr ""
1393
 
1394
- #: includes/options/class-wpglobus-options.php:1734
1395
  msgid "Multilingual SEO"
1396
  msgstr ""
1397
 
1398
- #: includes/options/class-wpglobus-options.php:1735
1399
  msgid "Multilingual SEO Options"
1400
  msgstr ""
1401
 
1402
- #: includes/options/class-wpglobus-options.php:1772
1403
  msgid ""
1404
  "With WPGlobus, you can get translations for posts and pages using REST API."
1405
  msgstr ""
1406
 
1407
- #: includes/options/class-wpglobus-options.php:1800,
1408
- #: includes/options/class-wpglobus-options.php:1808,
1409
- #: includes/options/class-wpglobus-options.php:1780,
1410
- #: includes/options/class-wpglobus-options.php:1789
1411
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1412
  msgstr ""
1413
 
1414
- #: includes/options/class-wpglobus-options.php:1777
1415
  msgid ""
1416
  "For demonstration, you can try the first post that WordPress creates at the "
1417
  "initial installation."
1418
  msgstr ""
1419
 
1420
- #: includes/options/class-wpglobus-options.php:1819
1421
  msgid ""
1422
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1423
  "information."
1424
  msgstr ""
1425
 
1426
- #: includes/options/class-wpglobus-options.php:1826
1427
  msgid ""
1428
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1429
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1430
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1431
  msgstr ""
1432
 
1433
- #: includes/options/class-wpglobus-options.php:1839
1434
  msgid "Description:"
1435
  msgstr ""
1436
 
1437
- #: includes/options/class-wpglobus-options.php:1846,
1438
- #: includes/options/class-wpglobus-options.php:1847
1439
  msgid "REST API"
1440
  msgstr ""
1441
 
1442
- #: includes/options/class-wpglobus-options.php:2180
1443
  msgid "Translate strings"
1444
  msgstr ""
1445
 
1446
- #: includes/options/fields/table/class-wpglobus-languages-table.php:66
1447
  msgid "item"
1448
  msgstr "Artikel"
1449
 
1450
- #: includes/options/fields/table/class-wpglobus-languages-table.php:68
1451
  msgid "items"
1452
  msgstr "Elemente"
1453
 
1454
- #: includes/options/fields/table/class-wpglobus-languages-table.php:88
1455
  msgid "Code"
1456
  msgstr "Code"
1457
 
1458
- #: includes/options/fields/table/class-wpglobus-languages-table.php:94
1459
  msgid "Edit"
1460
  msgstr "Bearbeiten"
1461
 
1462
- #: includes/options/fields/table/class-wpglobus-languages-table.php:99
1463
  msgid "Delete"
1464
  msgstr "Löschen"
1465
 
1466
- #: includes/options/fields/table/class-wpglobus-languages-table.php:105
1467
  msgid "File"
1468
  msgstr "Datei"
1469
 
1470
- #: includes/options/fields/table/class-wpglobus-languages-table.php:110
1471
  msgid "Flag"
1472
  msgstr "Flagge"
1473
 
1474
- #: includes/options/fields/table/class-wpglobus-languages-table.php:120
1475
  msgid "Language name"
1476
  msgstr "Sprachname"
1477
 
1478
- #: includes/options/fields/table/class-wpglobus-languages-table.php:125
1479
  msgid "English language name"
1480
  msgstr "Name der Sprache in Englisch"
1481
 
1482
- #: includes/options/fields/table/class-wpglobus-languages-table.php:151
1483
  msgid "No items found"
1484
  msgstr "Keine Einträge gefunden"
1485
 
1486
- #: includes/options/fields/table/class-wpglobus-languages-table.php:164
1487
  msgid "Add new Language"
1488
  msgstr "Fügen Sie neue Sprache hinzu"
1489
 
1490
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:164
1491
  msgid "No items of this type were found."
1492
  msgstr "Es wurden keine Elemente dieses Typs gefunden."
1493
 
1494
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:107
1495
  msgid "Select an item"
1496
  msgstr "Wählen Sie ein Element"
1497
 
1498
- #: includes/options/templates/compatibility-beta.php:15
1499
  msgid "Multilingual support of this add-on is currently in Beta stage."
1500
  msgstr ""
1501
 
1502
- #: includes/options/templates/compatibility-beta.php:17
1503
  msgid "We do not recommend using it on production sites."
1504
  msgstr ""
1505
 
1506
- #: includes/options/templates/compatibility-beta.php:23
1507
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1508
  msgstr ""
1509
 
1510
- #: includes/options/templates/compatibility.php:69
1511
  msgid "WordPress version"
1512
  msgstr "WordPress Version"
1513
 
1514
- #: includes/options/templates/compatibility.php:44
1515
  msgid "In the WordPress core"
1516
  msgstr ""
1517
 
1518
- #: includes/options/templates/compatibility.php:46
1519
  msgid "Core"
1520
  msgstr "Kern"
1521
 
1522
- #: includes/options/templates/compatibility.php:52,
1523
- #: includes/options/templates/compatibility.php:79
1524
  msgid "Current version"
1525
  msgstr "Derzeitige Version"
1526
 
1527
- #: includes/options/templates/compatibility.php:53,
1528
- #: includes/options/templates/compatibility.php:81
1529
  msgid "Stage"
1530
  msgstr ""
1531
 
1532
- #: includes/options/templates/compatibility.php:54,
1533
- #: includes/options/templates/compatibility.php:82
1534
  msgid "Status"
1535
  msgstr "Status"
1536
 
1537
- #: includes/options/templates/compatibility.php:60
1538
  msgid "Block editor"
1539
  msgstr "Block-Editor"
1540
 
1541
- #: includes/options/templates/compatibility.php:62
1542
  msgid "production"
1543
  msgstr ""
1544
 
1545
- #: includes/options/templates/compatibility.php:73
1546
  msgid "List of supported add-ons"
1547
  msgstr ""
1548
 
1549
- #: includes/options/templates/compatibility.php:78
1550
  msgid "Add-on"
1551
  msgstr "Add-on"
1552
 
1553
- #: includes/options/templates/compatibility.php:80
1554
  msgid "Supported minimum version"
1555
  msgstr ""
1556
 
1557
- #: includes/options/templates/compatibility.php:105
1558
  msgid "Not installed"
1559
  msgstr "Nicht installiert"
1560
 
1561
- #: includes/options/templates/compatibility.php:102
1562
  msgid "Installed, inactive"
1563
  msgstr ""
1564
 
1565
- #: includes/options/templates/compatibility.php:100
1566
  msgid "Active"
1567
  msgstr "Aktiv"
1568
 
1569
- #: includes/options/templates/customize-intro.php:35
1570
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1571
  msgstr ""
1572
 
1573
- #: includes/options/templates/customize-intro.php:39
1574
  msgid "However, some themes do not follow all WordPress standards strictly."
1575
  msgstr ""
1576
 
1577
- #: includes/options/templates/customize-intro.php:41
1578
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1579
  msgstr ""
1580
 
1581
- #: includes/options/templates/customize-intro.php:45
1582
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1583
  msgstr ""
1584
 
1585
- #: includes/options/templates/customize-intro.php:53
1586
  msgid ""
1587
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1588
  "With those themes, WPGlobus Customizer is switched off by default"
1589
  msgstr ""
1590
 
1591
- #: includes/options/templates/customize-intro.php:60
1592
  msgid "The currently active theme is"
1593
  msgstr ""
1594
 
1595
- #: includes/options/templates/customize-intro.php:66
1596
  msgid "In the current version, WPGlobus Customizer does not support"
1597
  msgstr ""
1598
 
1599
- #: includes/options/templates/customize-intro.php:70
1600
  msgid "translation of the navigation menus"
1601
  msgstr ""
1602
 
1603
- #: includes/options/templates/customize-intro.php:72
1604
  msgid "to translate, please go to"
1605
  msgstr ""
1606
 
1607
- #: includes/options/templates/customize-intro.php:81
1608
  msgid "Go to Customizer"
1609
  msgstr ""
1610
 
1611
- #: includes/options/templates/customize-intro.php:88
1612
  msgid "is undefined"
1613
  msgstr ""
1614
 
1615
- #: includes/options/templates/customize-intro.php:85
1616
  msgid "is set to"
1617
  msgstr ""
1618
 
1619
- #: includes/options/templates/customize-intro.php:94
1620
  msgid "by adding to the file wp-config.php"
1621
  msgstr ""
1622
 
1623
- #: includes/options/templates/customize-intro.php:96
1624
  msgid "now"
1625
  msgstr ""
1626
 
1627
- #: includes/options/wpglobus-options-header.php:25
1628
  msgid "We rely on your support!"
1629
  msgstr "Wir setzen auf Ihre Unterstützung!"
1630
 
1631
- #: includes/options/wpglobus-options-header.php:28
1632
  msgid "Please consider a small donation to support the future development."
1633
  msgstr ""
1634
  "Bitte ziehen Sie eine kleine Spende zur Unterstützung der zukünftigen "
1635
  "Entwicklung des Plugins in Betracht."
1636
 
1637
- #: includes/options/wpglobus-options-header.php:32
1638
  msgid "Thank you!"
1639
  msgstr "Danke!"
1640
 
1641
- #: includes/options/wpglobus-options-header.php:55
1642
  msgid "WPGlobus Plus!"
1643
  msgstr "WPGlobus Plus!"
1644
 
1645
- #: includes/options/wpglobus-options-header.php:58
1646
  msgid ""
1647
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1648
  "separate publishing and more! "
@@ -1650,29 +1236,23 @@ msgstr ""
1650
  "Erweiterte Funktionen und Werkzeuge: URL-Übersetzung, mehrsprachige SEO-"
1651
  "Analyse, separate Veröffentlichung und mehr! "
1652
 
1653
- #: includes/options/wpglobus-options-header.php:64
1654
  msgid "Get WPGlobus Plus now!"
1655
  msgstr "Jetzt zu WPGlobus Plus wechseln!"
1656
 
1657
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1658
  msgid ""
1659
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1660
  "the current version."
1661
  msgstr ""
1662
 
1663
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1664
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1665
  msgstr ""
1666
 
1667
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1668
  msgid "WPGlobus warning: "
1669
  msgstr ""
1670
 
1671
- #: wpglobus.php:13
1672
  msgid "https://github.com/WPGlobus/WPGlobus"
1673
  msgstr "https://github.com/WPGlobus/WPGlobus"
1674
 
1675
- #: wpglobus.php:14
1676
  msgid ""
1677
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1678
  "widgets and even custom fields - in multiple languages!"
@@ -1681,6 +1261,5 @@ msgstr ""
1681
  "Menüs, Widgets und sogar benutzerdefinierte Felder - alles einfach und "
1682
  "übersichtlich in mehreren Sprachen!"
1683
 
1684
- #: wpglobus.php:19
1685
  msgid "https://wpglobus.com/"
1686
  msgstr "https://wpglobus.com/"
18
  "Content-Transfer-Encoding: 8bit\n"
19
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
20
 
 
 
 
 
 
21
  msgid "Guide"
22
  msgstr "Anleitung"
23
 
 
 
24
  msgid "WPGlobus Help Desk"
25
  msgstr ""
26
 
 
 
 
 
 
 
 
27
  msgid "Add-ons"
28
  msgstr "Add-ons"
29
 
 
30
  msgid "Quick Start"
31
  msgstr "Schnell-Start"
32
 
 
 
33
  msgid "FAQ"
34
  msgstr "FAQ"
35
 
 
36
  msgid ""
37
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
38
  msgstr ""
39
 
 
40
  msgid ""
41
  "The mbstring extension is required for the full UTF-8 compatibility and "
42
  "better performance. Without it, some parts of WordPress and WPGlobus may "
44
  "administrator."
45
  msgstr ""
46
 
 
47
  msgid "Go to WPGlobus Settings"
48
  msgstr "Zu den WPGlobus Einstellungen"
49
 
 
50
  msgid "Easy as 1-2-3:"
51
  msgstr "Einfach wie 1-2-3:"
52
 
 
53
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
54
  msgstr ""
55
  "Gehen Sie ins WPGlobus Admin-Menü und wählen Sie die Länder / Sprachen aus;"
56
 
 
57
  msgid ""
58
  "Enter the translations to the posts, pages, categories, tags and menus using "
59
  "a clean and simple interface."
61
  "Geben Sie Übersetzungen der Beiträge, Seiten, Kategorien, Tags und Menüs "
62
  "ein. Alles über eine saubere und einfache Oberfläche."
63
 
 
64
  msgid ""
65
  "Switch languages at the front-end using a drop-down menu with language names "
66
  "and country flags."
67
  msgstr ""
68
  "Wechsel der Sprache im Front-End per Dropdown Menü mit Ländername und Flagge."
69
 
 
70
  msgid "Links:"
71
  msgstr "Links:"
72
 
 
73
  msgid "FAQs"
74
  msgstr "FAQs"
75
 
 
76
  msgid "Contact Us"
77
  msgstr "Kontaktieren Sie uns"
78
 
 
79
  msgid "Please give us 5 stars!"
80
  msgstr "Bitte geben Sie uns 5 Sterne!"
81
 
 
82
  msgid "WPGlobus does not translate texts automatically!"
83
  msgstr ""
84
 
 
85
  msgid ""
86
  "There are many translation companies and individual translators who can help "
87
  "you write and proofread the texts."
88
  msgstr ""
89
 
 
90
  msgid ""
91
  "When you choose a translator, please look at their native language, country "
92
  "of residence, specialization and knowledge of WordPress."
93
  msgstr ""
94
 
95
  #. translators: %s are used to insert HTML link. Keep them in place.
 
96
  msgid ""
97
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
98
  "website. This is not an endorsement, just a courtesy. Please contact them "
99
  "directly and let us know how did it work for you!"
100
  msgstr ""
101
 
 
102
  msgid "Important notes:"
103
  msgstr "Wichtige Hinweise:"
104
 
 
105
  msgid ""
106
  "WPGlobus only supports the localization URLs in the form of <code>example."
107
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
112
  "Übersetzungfunktionalität für Sub-Domains<code>xx.example.com</code> oder "
113
  "Parameter-Abfragen <code>example.com?lang=xx</code> in der URL geplant."
114
 
 
115
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
116
  msgstr ""
117
  "Einige Themen und Plugins unterstützen <strong>keine mehrsprachigkeit</"
118
  "strong>."
119
 
 
120
  msgid ""
121
  "They might display some texts with no translation, or with all languages "
122
  "mixed together."
125
  "Sprachen miteinander vermischt."
126
 
127
  #. translators: %s are used to insert HTML link. Keep them in place.
 
128
  msgid ""
129
  "Please contact the theme / plugin author. If they are unable to assist, "
130
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
133
  "Installation oder Anpassung haben, können Sie %s das WPGlobus Team %s mit "
134
  "einer benutzerdefinierte Anpassung beauftragen."
135
 
 
136
  msgid "Language was set on your profile page"
137
  msgstr ""
138
 
 
139
  msgid "Add"
140
  msgstr "Hinzufügen"
141
 
 
 
142
  msgid "Multilingual Everything!"
143
  msgstr "Übersetz' alles!"
144
 
 
 
145
  msgid ""
146
  "WPGlobus is a family of WordPress plugins assisting you in making "
147
  "multilingual WordPress blogs and sites."
149
  "WPGlobus ist ein Paket von mehreren WordPress-Plugins, die Möglichkeiten zur "
150
  "Übersetzung von Wordpress-Installationen bieten."
151
 
 
152
  msgid "Remove the WPGlobus settings (not recommended)"
153
  msgstr ""
154
 
 
155
  msgid "Clean-up Tool"
156
  msgstr ""
157
 
 
158
  msgid "Support"
159
  msgstr "Support"
160
 
 
161
  msgid ""
162
  "WARNING: this operation is non-reversible. It is strongly recommended that "
163
  "you backup your database before proceeding."
164
  msgstr ""
165
 
 
166
  msgid ""
167
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
168
  "By running it, you will remove ALL translations you have entered to your "
172
  "so on."
173
  msgstr ""
174
 
 
175
  msgid ""
176
  "Make sure that your active theme does not have any code related to WPGlobus. "
177
  "Such code could be added by you or by a 3rd party developer. If that code "
180
  msgstr ""
181
 
182
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
 
183
  msgid ""
184
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
185
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
186
  msgstr ""
187
 
 
188
  msgid "You are about to clean the content of the following database tables:"
189
  msgstr ""
190
 
 
191
  msgid "The operations log"
192
  msgstr ""
193
 
 
194
  msgid ""
195
  "We are going to write a detailed log of all the database changes performed. "
196
  "It should help in the case you need to restore something important. The log "
197
  "will be written to the file:"
198
  msgstr ""
199
 
 
200
  msgid ""
201
  "Uncheck if you do not want to write the operations log (we recommend to keep "
202
  "it checked)"
203
  msgstr ""
204
 
 
205
  msgid "You have been warned..."
206
  msgstr ""
207
 
 
208
  msgid "Please confirm by checking the box below:"
209
  msgstr ""
210
 
 
211
  msgid ""
212
  "I have read and understood everything written on this page. I am aware that "
213
  "by using this tool I may loose some content of my website. I have made a "
215
  "responsible for the results."
216
  msgstr ""
217
 
 
218
  msgid "YES, I CONFIRM"
219
  msgstr "JA, ICH STIMME ZU"
220
 
 
221
  msgid "Process with the Clean-up"
222
  msgstr ""
223
 
 
 
 
 
224
  msgid "Default"
225
  msgstr "Standard"
226
 
 
227
  msgid "Section"
228
  msgstr ""
229
 
 
230
  msgid "Show all sections"
231
  msgstr ""
232
 
 
233
  msgid "Save &amp; Reload"
234
  msgstr ""
235
 
 
 
 
236
  msgid "WPGlobus"
237
  msgstr "WPGlobus"
238
 
 
239
  msgid ""
240
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
241
  msgstr ""
242
 
 
243
  msgid "Fields Settings"
244
  msgstr ""
245
 
 
246
  msgid "WPGlobus Settings"
247
  msgstr "WPGlobus Einstellungen"
248
 
 
249
  msgid "Help"
250
  msgstr "Hilfe"
251
 
 
 
252
  msgid "Languages"
253
  msgstr "Sprachen"
254
 
 
 
255
  msgid "Enabled Languages"
256
  msgstr "Aktivierte Sprachen"
257
 
 
 
258
  msgid "These languages are currently enabled on your site."
259
  msgstr "Diese Sprachen sind momentan auf Ihrer Website aktiviert."
260
 
 
 
261
  msgid "Choose a language you would like to enable."
262
  msgstr ""
263
 
 
264
  msgid "Press the [Save & Publish] button to confirm."
265
  msgstr ""
266
 
267
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
268
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
 
 
269
  msgid "or Add new Language %1$s here %2$s"
270
  msgstr ""
271
 
 
 
272
  msgid "Add Languages"
273
  msgstr "Sprachen hinzufügen"
274
 
 
 
275
  msgid "Language Selector Mode"
276
  msgstr "Sprach-Selektor Modus"
277
 
 
 
278
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
279
  msgstr "Zweistelliger Buchstaben-Code mit Flagge (de, ru, it, usw.)"
280
 
 
 
281
  msgid "Full Name (English, Russian, Italian, etc.)"
282
  msgstr "Vollständiger Name (English, Russian, Italian, etc.)"
283
 
 
 
284
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
285
  msgstr "Vollständiger Name mit Flagge (Englisch, Russisch, Italienisch, etc.)"
286
 
 
 
287
  msgid "Flags only"
288
  msgstr "nur Flaggen"
289
 
 
 
290
  msgid ""
291
  "Choose the way language name and country flag are shown in the drop-down menu"
292
  msgstr ""
293
  "Wählen Sie die Art der Display-Sprachnamen und die Flagge des Landes, im "
294
  "Dropdown-Menü"
295
 
 
296
  msgid "select navigation menu"
297
  msgstr ""
298
 
 
 
 
299
  msgid "Language Selector Menu"
300
  msgstr "Language Selector Menu"
301
 
 
 
 
302
  msgid "Choose the navigation menu where the language selector will be shown"
303
  msgstr ""
304
  "Wählen Sie das Navigationsmenü, wo die Sprachwahl angezeigt werden soll."
305
 
 
306
  msgid "No menus have been created yet. Create some."
307
  msgstr ""
308
 
 
 
309
  msgid "\"All Pages\" menus Language selector"
310
  msgstr "\"Alle Seiten\" Menü Sprachauswahl"
311
 
 
 
312
  msgid ""
313
  "Adds language selector to the menus that automatically list all existing "
314
  "pages (using `wp_list_pages`)"
316
  "Fügt einen Sprach-Selektor zum Menü hinzu, welches automatisch alle Seiten "
317
  "auflistet ( `benutzt wp_list_pages`)"
318
 
 
 
319
  msgid "Custom CSS"
320
  msgstr "Benutzerdefiniertes CSS"
321
 
 
322
  msgid ""
323
  "Here you can enter the CSS rules to adjust the language selector menu for "
324
  "your theme. Look at the examples in the `style-samples.css` file."
327
  "Theme anzeigen. Schauen Sie sich die Beispiele in der `style-samples.css` "
328
  "Datei an."
329
 
 
330
  msgid "Post types"
331
  msgstr "Post-Typen"
332
 
 
333
  msgid "Uncheck to disable WPGlobus"
334
  msgstr "Deaktivieren Sie die Checkbox, um WPGlobus deaktivieren"
335
 
 
 
336
  msgid "Redirect"
337
  msgstr "Weiterleiten"
338
 
 
 
339
  msgid "Choose the language automatically, based on:"
340
  msgstr ""
341
 
 
 
342
  msgid "Preferred language set in the browser"
343
  msgstr ""
344
 
 
 
345
  msgid ""
346
  "When a user comes to the site for the first time, try to find the best "
347
  "matching language version of the page."
348
  msgstr ""
349
 
 
 
 
 
350
  msgid "Custom JS Code"
351
  msgstr ""
352
 
 
 
353
  msgid "Title"
354
  msgstr "Titel"
355
 
 
356
  msgid "(Paste your JS code here.)"
357
  msgstr ""
358
 
 
359
  msgid ""
360
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
361
  "version 4.9 or later."
362
  msgstr ""
363
 
 
364
  msgid "With your version of WordPress, please use the"
365
  msgstr ""
366
 
 
367
  msgid "WPGlobus Settings page"
368
  msgstr ""
369
 
 
370
  msgid "Label"
371
  msgstr "Beschriftung"
372
 
 
373
  msgid "Description"
374
  msgstr "Umschreibung"
375
 
 
376
  msgid ""
377
  "Here you can specify which fields should be considered multilingual by "
378
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
379
  msgstr ""
380
 
 
 
381
  msgid "Thank you for installing WPGlobus!"
382
  msgstr "Danke, dass Sie WPGlobus installiert haben!"
383
 
 
 
384
  msgid "Read About WPGlobus"
385
  msgstr "Lesen Sie mehr über WPGlobus"
386
 
 
387
  msgid ""
388
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
389
  msgstr ""
390
  "Klicken Sie auf <strong>[Sprachen]</strong>, auf der linken Seite um die "
391
  "Optionen einzurichten."
392
 
 
 
393
  msgid ""
394
  "Should you have any questions or comments, please do not hesitate to contact "
395
  "us."
397
  "Sollten Sie Fragen oder Anmerkungen haben, kontaktieren Sie uns, wir freuen "
398
  "uns Ihnen zu helfen."
399
 
 
 
400
  msgid "Sincerely Yours,"
401
  msgstr "Mit freundlichen Grüßen,"
402
 
 
 
 
403
  msgid "The WPGlobus Team"
404
  msgstr "Das WPGlobus-Team"
405
 
406
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
407
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
408
  msgid ""
409
  "We would hate to see you go. If something goes wrong, do not uninstall "
410
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
411
  msgstr ""
412
 
 
 
413
  msgid ""
414
  "Please note that if you deactivate WPGlobus, your site will show all the "
415
  "languages together, mixed up. You will need to remove all translations, "
418
 
419
  #. translators: %s: link to the Clean-up Tool
420
  #. translators: %s: link to the Clean-up Tool.
 
 
421
  msgid ""
422
  "If there are just a few places, you should edit them manually. To "
423
  "automatically remove all translations at once, you can use the %s. WARNING: "
427
 
428
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
429
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
430
  msgid "%1$sClean-up Tool%2$s"
431
  msgstr ""
432
 
433
  #. translators: %s: name of current theme
 
434
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
435
  msgstr ""
436
 
437
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
438
  msgid "Please use %1$sWPGlobus options page%2$s instead."
439
  msgstr ""
440
 
 
441
  msgid "Expand/Shrink"
442
  msgstr ""
443
 
 
 
444
  msgid "WPGlobus News"
445
  msgstr "WPGlobus-Nachrichten"
446
 
 
 
447
  msgid "Options updated"
448
  msgstr "Optionen aktualisiert"
449
 
 
450
  msgid "Please enter a language code!"
451
  msgstr "Bitte geben Sie den Sprachcode ein!"
452
 
 
453
  msgid "Language code already exists!"
454
  msgstr "Sprachcode bereits vorhanden!"
455
 
 
456
  msgid "Please specify the language flag!"
457
  msgstr "Bitte geben Sie die Sprach-Flagge an!"
458
 
 
459
  msgid "Please enter the language name!"
460
  msgstr "Bitte geben Sie den Namen der Sprache an!"
461
 
 
462
  msgid "Please enter the language name in English!"
463
  msgstr "Bitte geben Sie die Sprache in Englischer Bezeichnung an!"
464
 
 
465
  msgid "Please enter the locale!"
466
  msgstr "Bitte geben Sie die sogenannte Locale an!"
467
 
 
468
  msgid "Add Language"
469
  msgstr "Sprache hinzufügen"
470
 
 
 
 
471
  msgid "Delete Language"
472
  msgstr "Sprache löschen"
473
 
 
474
  msgid "Edit Language"
475
  msgstr "Sprache ändern"
476
 
 
477
  msgid "Language Code"
478
  msgstr "Sprachcode"
479
 
 
480
  msgid ""
481
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
482
  msgstr ""
483
  "2-stelliger ISO-Sprachcode für die Sprache, welche Sie einfügen möchten. "
484
  "(Beispiel: en für Englisch)"
485
 
 
486
  msgid "Language flag"
487
  msgstr "Sprachflagge"
488
 
 
489
  msgid "Name"
490
  msgstr "Name"
491
 
 
492
  msgid ""
493
  "The name of the language in its native alphabet. (Examples: English, Русский)"
494
  msgstr ""
495
  "Der gesprochene Name der Sprache in seiner Muttersprache. (Beispiele: "
496
  "English, Deutsch)"
497
 
 
498
  msgid "Name in English"
499
  msgstr "Name in Englisch"
500
 
 
501
  msgid "The name of the language in English"
502
  msgstr "Der Name der Sprache auf Englisch"
503
 
 
 
504
  msgid "Locale"
505
  msgstr "Lokale"
506
 
 
507
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
508
  msgstr "PHP/WordPress Gebietsschema der Sprache. (Beispiele: en_US, de_DE)"
509
 
 
510
  msgid "Are you sure you want to delete?"
511
  msgstr "Sind Sie sicher, dass Sie die Lösch-Aktion durchführen möchten?"
512
 
 
513
  msgid "Save Changes"
514
  msgstr "Änderungen speichern"
515
 
 
516
  msgid "Back to the WPGlobus Settings"
517
  msgstr "Zurück zu den WPGlobus-Einstellungen"
518
 
 
519
  msgid "Current Version"
520
  msgstr "Aktuelle Version"
521
 
 
522
  msgid "Get it now!"
523
  msgstr "Jetzt holen"
524
 
 
525
  msgid "Premium add-on"
526
  msgstr ""
527
 
 
 
528
  msgid "Installed"
529
  msgstr "Installiert"
530
 
531
  #. translators: placeholders are for the HTML tags.
 
532
  msgid ""
533
  "If you have already purchased a WPGlobus premium extension, please read "
534
  "%1$sthe installation instructions here%2$s"
535
  msgstr ""
536
 
 
 
537
  msgid "Help Desk"
538
  msgstr ""
539
 
 
540
  msgid "Email not sent. Please fill in the entire form."
541
  msgstr ""
542
 
 
543
  msgid ""
544
  "Email not sent. Please verify that your name and email are entered correctly."
545
  msgstr ""
546
 
 
547
  msgid "Email sent."
548
  msgstr ""
549
 
 
550
  msgid "Thank you for using WPGlobus!"
551
  msgstr "Danke, dass du WPGlobus! nutzt."
552
 
 
553
  msgid "Our Support Team is here to answer your questions or concerns."
554
  msgstr ""
555
  "Unser Support-Team ist dazu da, deine Fragen oder Anliegen zu beantworten."
556
 
 
557
  msgid "To help us serve you better:"
558
  msgstr ""
559
 
 
560
  msgid ""
561
  "Please check if the problem persists if you switch to a standard WordPress "
562
  "theme."
563
  msgstr ""
564
 
 
565
  msgid ""
566
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
567
  msgstr ""
568
 
 
569
  msgid "Please fill in and submit the contact form:"
570
  msgstr ""
571
 
 
572
  msgid "Please make sure the email address is correct."
573
  msgstr ""
574
 
 
575
  msgid "Subject"
576
  msgstr "Betreff"
577
 
 
578
  msgid "Short description of the problem"
579
  msgstr ""
580
 
 
581
  msgid "Detailed description"
582
  msgstr ""
583
 
 
584
  msgid "Technical Information"
585
  msgstr "Systeminformationen"
586
 
 
587
  msgid "This information helps us to find the problem source"
588
  msgstr ""
589
 
 
590
  msgid ""
591
  "Alternatively, please email %s. Do not forget to copy and paste the "
592
  "technical information to your email message."
593
  msgstr ""
594
 
 
595
  msgid "WPGlobus Recommends:"
596
  msgstr ""
597
 
 
 
598
  msgid "WPGlobus for WooCommerce"
599
  msgstr ""
600
 
 
601
  msgid ""
602
  "Translate product titles and descriptions, product categories, tags and "
603
  "attributes."
604
  msgstr ""
605
 
 
606
  msgid "Get it now:"
607
  msgstr "Jetzt holen"
608
 
 
609
  msgid "WooCommerce Multi-Currency"
610
  msgstr ""
611
 
 
612
  msgid "Accept multiple currencies in your online store!"
613
  msgstr ""
614
 
 
 
615
  msgid "Check it out:"
616
  msgstr ""
617
 
 
618
  msgid "To translate permalinks, please activate the module Slug."
619
  msgstr ""
620
 
 
621
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
622
  msgstr ""
623
 
 
 
624
  msgid "Save draft before using extra language."
625
  msgstr ""
626
 
 
627
  msgid "Builder"
628
  msgstr ""
629
 
 
630
  msgid "Сompatibility Settings"
631
  msgstr ""
632
 
633
  #. translators: ON/OFF status of WPGlobus on the edit pages.
634
  #. translators: ON/OFF status of WPGlobus on the edit pages.
 
 
635
  msgid "ON"
636
  msgstr "EIN"
637
 
 
 
638
  msgid "Turn off"
639
  msgstr ""
640
 
 
 
641
  msgid "OFF"
642
  msgstr "AUS"
643
 
 
 
644
  msgid "Turn on"
645
  msgstr ""
646
 
 
647
  msgid "Elementor"
648
  msgstr ""
649
 
 
650
  msgid "WPGlobus languages"
651
  msgstr ""
652
 
 
653
  msgid "current"
654
  msgstr ""
655
 
 
656
  msgid ""
657
  "WPGlobus provides multilingual support for Elementor only when the option "
658
  "%1$s%2$s%3$s is set to %4$s."
659
  msgstr ""
660
 
 
661
  msgid "Before switching the language, please save draft or publish."
662
  msgstr ""
663
 
664
  #. translators: Metabox title FOR language.
 
665
  msgctxt "filter__seo_meta_box_title"
666
  msgid "for"
667
  msgstr ""
668
 
 
669
  msgid "Page is being reloaded. Please wait..."
670
  msgstr ""
671
 
 
672
  msgid ""
673
  "Before switching the language, please save draft or publish, then reload "
674
  "page."
675
  msgstr ""
676
 
 
677
  msgid ""
678
  "WPGlobus provides multilingual support for Elementor only when the option "
679
  "`CSS Print Method` is set to `External File`."
680
  msgstr ""
681
 
 
682
  msgid "Open Elementor Settings page"
683
  msgstr ""
684
 
 
685
  msgid "WPGlobus widget"
686
  msgstr "WPGlobus widget"
687
 
 
688
  msgid "Add language switcher"
689
  msgstr "Sprachumschalter hinzufügen"
690
 
 
691
  msgid "Flags"
692
  msgstr "Flaggen"
693
 
 
694
  msgid "List"
695
  msgstr "Liste"
696
 
 
697
  msgid "List with flags"
698
  msgstr "Liste der Flaggen"
699
 
 
700
  msgid "Select"
701
  msgstr "Bitte wählen"
702
 
 
703
  msgid "Select with language code"
704
  msgstr "Bitte Sprachcode wählen"
705
 
 
706
  msgid "Dropdown"
707
  msgstr "Dropdown"
708
 
 
709
  msgid "Dropdown with flags"
710
  msgstr "Dropdown mit Flaggen"
711
 
 
712
  msgid "Selector type"
713
  msgstr "Selektor-Typ"
714
 
 
715
  msgid "You cannot disable the main language."
716
  msgstr "Die Hauptsprache kann nicht deaktiviert werden."
717
 
 
718
  msgid "Need a multilingual slug?"
719
  msgstr ""
720
 
 
721
  msgid "*) Available after the menu is saved."
722
  msgstr "*) Verfügbar nachdem das Menü gespeichert wurde."
723
 
 
724
  msgid "You must enable Pretty Permalinks to use WPGlobus."
725
  msgstr ""
726
  "Sie müssen schöne Permalinks aktivieren um WPGlobus verwenden zu können."
727
 
 
728
  msgid ""
729
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
730
  "default option."
732
  "Bitte gehen Sie zu Einstellungen > Permalinks > allgemeine Einstellungen, "
733
  "und wählen Sie die \"Beitragsname\" für schöne Permalinks."
734
 
 
735
  msgid "Language Selector Menu Style"
736
  msgstr ""
737
 
 
 
 
738
  msgid "WPGlobus Plus"
739
  msgstr ""
740
 
 
741
  msgid "Drop-down languages menu or Flat (in one line)"
742
  msgstr ""
743
 
 
744
  msgid "Do not change"
745
  msgstr ""
746
 
 
747
  msgid "Drop-down (vertical)"
748
  msgstr ""
749
 
 
750
  msgid "Flat (horizontal)"
751
  msgstr ""
752
 
 
753
  msgid ""
754
  "If you see this message then your browser may not display the WPGlobus "
755
  "Settings panel properly. Please try another browser."
756
  msgstr ""
757
 
 
 
758
  msgid "Сompatibility"
759
  msgstr ""
760
 
761
  #. translators: placeholders for "strong" tags.
 
762
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
763
  msgstr ""
764
 
765
  #. translators: placeholders for "strong" tags.
 
766
  msgid ""
767
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
768
  "the language attributes: name, code, flag icon, etc."
769
  msgstr ""
770
 
 
771
  msgid "Important notes"
772
  msgstr "Wichtige Hinweise"
773
 
774
  #. translators: placeholders for "strong" tags.
 
775
  msgid "Version %1$s1.9.17%2$s "
776
  msgstr ""
777
 
778
  #. translators: placeholders for "strong" tags.
 
779
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
780
  msgstr ""
781
 
782
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
783
  msgid ""
784
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
785
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
786
  msgstr ""
787
 
788
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
789
  msgid ""
790
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
791
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
792
  msgstr ""
793
 
794
  #. translators: placeholders for "strong" tags.
 
795
  msgid "Version %1$s2.2.11%2$s "
796
  msgstr ""
797
 
 
798
  msgid "Starting from this version"
799
  msgstr ""
800
 
801
  #. translators: placeholders for "strong" tags.
 
802
  msgid ""
803
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
804
  "(CPT)."
805
  msgstr ""
806
 
807
  #. translators: placeholders for "strong" tags.
 
808
  msgid ""
809
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
810
  "the %1$s[%3$s]%2$s tab."
811
  msgstr ""
812
 
 
813
  msgid "Welcome!"
814
  msgstr "Willkommen!"
815
 
 
816
  msgid "Deactivating / Uninstalling"
817
  msgstr ""
818
 
 
819
  msgid "Uninstall"
820
  msgstr "Deinstallieren"
821
 
 
822
  msgid "All add-ons"
823
  msgstr ""
824
 
 
825
  msgid "Mobile Menu"
826
  msgstr ""
827
 
 
828
  msgid "Language Widgets"
829
  msgstr ""
830
 
 
831
  msgid "We Recommend..."
832
  msgstr ""
833
 
 
834
  msgid ""
835
  "Our premium add-on, WPGlobus Plus, will add several features to your "
836
  "website, such as:"
837
  msgstr ""
838
 
 
839
  msgid ""
840
  "- Ability to write a post in one language and immediately publish it, not "
841
  "waiting for the translation to other languages;"
842
  msgstr ""
843
 
 
844
  msgid "- Set different URLs for each translation;"
845
  msgstr ""
846
 
 
847
  msgid ""
848
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
849
  "for each translation;"
850
  msgstr ""
851
 
 
852
  msgid "- and more..."
853
  msgstr ""
854
 
 
 
 
855
  msgid "Click here to download"
856
  msgstr ""
857
 
 
858
  msgid ""
859
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
860
  "translate your blog posts and pages to many languages."
861
  msgstr ""
862
 
 
863
  msgid "The next step is to translate your WooCommerce-based store!"
864
  msgstr ""
865
 
 
866
  msgid ""
867
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
868
  "translate product titles and descriptions, categories, tags and attributes."
869
  msgstr ""
870
 
 
871
  msgid "Multi-currency"
872
  msgstr ""
873
 
 
874
  msgid ""
875
  "Your WooCommerce-powered store is set to show prices and accept payments in "
876
  "a single currency only."
877
  msgstr ""
878
 
 
879
  msgid ""
880
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
881
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
883
  "positioning for global growth!"
884
  msgstr ""
885
 
 
886
  msgid ""
887
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
888
  "re-calculating prices on-the-fly."
889
  msgstr ""
890
 
 
891
  msgid "WPGlobus Premium Add-ons"
892
  msgstr ""
893
 
 
894
  msgid ""
895
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
896
  "you will be able to:"
897
  msgstr ""
898
 
 
899
  msgid ""
900
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
901
  "моя-страница and so on);"
902
  msgstr ""
903
 
 
904
  msgid ""
905
  "Postpone translation to some languages and <strong>publish only the "
906
  "translated texts</strong>;"
907
  msgstr ""
908
 
 
909
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
910
  msgstr ""
911
 
 
912
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
913
  msgstr ""
914
 
 
915
  msgid ""
916
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
917
  "strong>;"
918
  msgstr ""
919
 
 
920
  msgid "...and more."
921
  msgstr ""
922
 
 
923
  msgid "Click here to visit the WPGlobus Store"
924
  msgstr ""
925
 
 
926
  msgid "Select a language"
927
  msgstr "Wählen Sie eine Sprache"
928
 
929
  #. translators: %3$s placeholder for the icon (actual picture).
 
930
  msgid ""
931
  "Place the %1$smain language%2$s of your site at the top of the list by "
932
  "dragging the %3$s icons."
933
  msgstr ""
934
 
935
  #. translators: placeholders for the "strong" HTML tags.
 
936
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
937
  msgstr ""
938
 
939
  #. translators: placeholders for the "strong" HTML tags.
 
940
  msgid "%1$sAdd%2$s more languages using the section below."
941
  msgstr ""
942
 
 
943
  msgid "When done, click the [Save Changes] button."
944
  msgstr "Wenn Sie fertig sind, klicken Sie auf [Änderungen speichern]."
945
 
946
  #. translators: %s - placeholder for the "Save Changes" button text.
 
947
  msgid "Press the %s button to confirm."
948
  msgstr ""
949
 
950
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
 
951
  msgid "-- none --"
952
  msgstr ""
953
 
 
954
  msgid "All menus"
955
  msgstr ""
956
 
 
957
  msgid "Instructions:"
958
  msgstr "Anleitung:"
959
 
 
960
  msgid "(Found in some themes)"
961
  msgstr "(In einigen Themes gefunden)"
962
 
 
963
  msgid "Enable"
964
  msgstr "Aktivieren"
965
 
 
966
  msgid "Languages table"
967
  msgstr "Sprachtabelle"
968
 
 
969
  msgid "Use this table to add, edit or delete languages."
970
  msgstr ""
971
  "Verwenden Sie diese Tabelle, um Sprachen hinzuzufügen, zu bearbeiten oder zu "
972
  "löschen."
973
 
 
974
  msgid "NOTE: you cannot remove the main language."
975
  msgstr "Hinweis: Sie können nicht die Hauptsprache entfernen."
976
 
 
977
  msgid "WPGlobus is enabled on these Post Types"
978
  msgstr ""
979
 
 
980
  msgid "Uncheck to disable"
981
  msgstr ""
982
 
 
983
  msgid ""
984
  "Please note that there are post types, which status is managed by other "
985
  "plugins and cannot be changed here."
986
  msgstr ""
987
 
 
988
  msgid "Post Types"
989
  msgstr "Post-Types"
990
 
 
991
  msgid ""
992
  "You should put here only the code provided by WPGlobus Support. Do not write "
993
  "anything else in the sections below as it might break the functionality of "
994
  "your website!"
995
  msgstr ""
996
 
 
997
  msgid "Custom Code"
998
  msgstr "Benutzerdefinierter Code"
999
 
 
 
 
1000
  msgid "Enabled"
1001
  msgstr "Aktiviert"
1002
 
 
1003
  msgid "Builders support"
1004
  msgstr ""
1005
 
 
1006
  msgid "Builder mode is enabled on these Post Types"
1007
  msgstr ""
1008
 
 
1009
  msgid "Old fashioned language switcher"
1010
  msgstr ""
1011
 
 
1012
  msgid "Block Editor"
1013
  msgstr ""
1014
 
 
1015
  msgid "Block Editor Options"
1016
  msgstr ""
1017
 
 
1018
  msgid ""
1019
  "With the current settings, you will see the following lines in the section "
1020
  "HEAD of your site pages"
1021
  msgstr ""
1022
 
 
1023
  msgid "(example for two languages)"
1024
  msgstr ""
1025
 
 
1026
  msgid ""
1027
  "Tell search engines about localized versions of your pages using the "
1028
  "hreflang tag"
1029
  msgstr ""
1030
 
 
1031
  msgid "Output the hreflang tag as"
1032
  msgstr ""
1033
 
 
1034
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1035
  msgstr ""
1036
 
 
1037
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1038
  msgstr ""
1039
 
 
1040
  msgid "Language code only (en, ru, etc.)"
1041
  msgstr ""
1042
 
 
1043
  msgid "Use the code `x-default` for the main language"
1044
  msgstr ""
1045
 
 
1046
  msgid "Multilingual SEO"
1047
  msgstr ""
1048
 
 
1049
  msgid "Multilingual SEO Options"
1050
  msgstr ""
1051
 
 
1052
  msgid ""
1053
  "With WPGlobus, you can get translations for posts and pages using REST API."
1054
  msgstr ""
1055
 
 
 
 
 
1056
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1057
  msgstr ""
1058
 
 
1059
  msgid ""
1060
  "For demonstration, you can try the first post that WordPress creates at the "
1061
  "initial installation."
1062
  msgstr ""
1063
 
 
1064
  msgid ""
1065
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1066
  "information."
1067
  msgstr ""
1068
 
 
1069
  msgid ""
1070
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1071
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1072
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1073
  msgstr ""
1074
 
 
1075
  msgid "Description:"
1076
  msgstr ""
1077
 
 
 
1078
  msgid "REST API"
1079
  msgstr ""
1080
 
 
1081
  msgid "Translate strings"
1082
  msgstr ""
1083
 
 
1084
  msgid "item"
1085
  msgstr "Artikel"
1086
 
 
1087
  msgid "items"
1088
  msgstr "Elemente"
1089
 
 
1090
  msgid "Code"
1091
  msgstr "Code"
1092
 
 
1093
  msgid "Edit"
1094
  msgstr "Bearbeiten"
1095
 
 
1096
  msgid "Delete"
1097
  msgstr "Löschen"
1098
 
 
1099
  msgid "File"
1100
  msgstr "Datei"
1101
 
 
1102
  msgid "Flag"
1103
  msgstr "Flagge"
1104
 
 
1105
  msgid "Language name"
1106
  msgstr "Sprachname"
1107
 
 
1108
  msgid "English language name"
1109
  msgstr "Name der Sprache in Englisch"
1110
 
 
1111
  msgid "No items found"
1112
  msgstr "Keine Einträge gefunden"
1113
 
 
1114
  msgid "Add new Language"
1115
  msgstr "Fügen Sie neue Sprache hinzu"
1116
 
 
1117
  msgid "No items of this type were found."
1118
  msgstr "Es wurden keine Elemente dieses Typs gefunden."
1119
 
 
1120
  msgid "Select an item"
1121
  msgstr "Wählen Sie ein Element"
1122
 
 
1123
  msgid "Multilingual support of this add-on is currently in Beta stage."
1124
  msgstr ""
1125
 
 
1126
  msgid "We do not recommend using it on production sites."
1127
  msgstr ""
1128
 
 
1129
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1130
  msgstr ""
1131
 
 
1132
  msgid "WordPress version"
1133
  msgstr "WordPress Version"
1134
 
 
1135
  msgid "In the WordPress core"
1136
  msgstr ""
1137
 
 
1138
  msgid "Core"
1139
  msgstr "Kern"
1140
 
 
 
1141
  msgid "Current version"
1142
  msgstr "Derzeitige Version"
1143
 
 
 
1144
  msgid "Stage"
1145
  msgstr ""
1146
 
 
 
1147
  msgid "Status"
1148
  msgstr "Status"
1149
 
 
1150
  msgid "Block editor"
1151
  msgstr "Block-Editor"
1152
 
 
1153
  msgid "production"
1154
  msgstr ""
1155
 
 
1156
  msgid "List of supported add-ons"
1157
  msgstr ""
1158
 
 
1159
  msgid "Add-on"
1160
  msgstr "Add-on"
1161
 
 
1162
  msgid "Supported minimum version"
1163
  msgstr ""
1164
 
 
1165
  msgid "Not installed"
1166
  msgstr "Nicht installiert"
1167
 
 
1168
  msgid "Installed, inactive"
1169
  msgstr ""
1170
 
 
1171
  msgid "Active"
1172
  msgstr "Aktiv"
1173
 
 
1174
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1175
  msgstr ""
1176
 
 
1177
  msgid "However, some themes do not follow all WordPress standards strictly."
1178
  msgstr ""
1179
 
 
1180
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1181
  msgstr ""
1182
 
 
1183
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1184
  msgstr ""
1185
 
 
1186
  msgid ""
1187
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1188
  "With those themes, WPGlobus Customizer is switched off by default"
1189
  msgstr ""
1190
 
 
1191
  msgid "The currently active theme is"
1192
  msgstr ""
1193
 
 
1194
  msgid "In the current version, WPGlobus Customizer does not support"
1195
  msgstr ""
1196
 
 
1197
  msgid "translation of the navigation menus"
1198
  msgstr ""
1199
 
 
1200
  msgid "to translate, please go to"
1201
  msgstr ""
1202
 
 
1203
  msgid "Go to Customizer"
1204
  msgstr ""
1205
 
 
1206
  msgid "is undefined"
1207
  msgstr ""
1208
 
 
1209
  msgid "is set to"
1210
  msgstr ""
1211
 
 
1212
  msgid "by adding to the file wp-config.php"
1213
  msgstr ""
1214
 
 
1215
  msgid "now"
1216
  msgstr ""
1217
 
 
1218
  msgid "We rely on your support!"
1219
  msgstr "Wir setzen auf Ihre Unterstützung!"
1220
 
 
1221
  msgid "Please consider a small donation to support the future development."
1222
  msgstr ""
1223
  "Bitte ziehen Sie eine kleine Spende zur Unterstützung der zukünftigen "
1224
  "Entwicklung des Plugins in Betracht."
1225
 
 
1226
  msgid "Thank you!"
1227
  msgstr "Danke!"
1228
 
 
1229
  msgid "WPGlobus Plus!"
1230
  msgstr "WPGlobus Plus!"
1231
 
 
1232
  msgid ""
1233
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1234
  "separate publishing and more! "
1236
  "Erweiterte Funktionen und Werkzeuge: URL-Übersetzung, mehrsprachige SEO-"
1237
  "Analyse, separate Veröffentlichung und mehr! "
1238
 
 
1239
  msgid "Get WPGlobus Plus now!"
1240
  msgstr "Jetzt zu WPGlobus Plus wechseln!"
1241
 
 
1242
  msgid ""
1243
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1244
  "the current version."
1245
  msgstr ""
1246
 
 
1247
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1248
  msgstr ""
1249
 
 
1250
  msgid "WPGlobus warning: "
1251
  msgstr ""
1252
 
 
1253
  msgid "https://github.com/WPGlobus/WPGlobus"
1254
  msgstr "https://github.com/WPGlobus/WPGlobus"
1255
 
 
1256
  msgid ""
1257
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1258
  "widgets and even custom fields - in multiple languages!"
1261
  "Menüs, Widgets und sogar benutzerdefinierte Felder - alles einfach und "
1262
  "übersichtlich in mehreren Sprachen!"
1263
 
 
1264
  msgid "https://wpglobus.com/"
1265
  msgstr "https://wpglobus.com/"
languages/wpglobus-el.po CHANGED
@@ -16,44 +16,25 @@ msgstr ""
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
- #: includes/admin/central/class-wpglobus-admin-central.php:122,
20
- #: includes/admin/class-wpglobus-about.php:42,
21
- #: includes/admin/class-wpglobus-about.php:117,
22
- #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr ""
26
 
27
- #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
32
- #: includes/admin/central/class-wpglobus-admin-central.php:157,
33
- #: includes/admin/class-wpglobus-about.php:36,
34
- #: includes/admin/class-wpglobus-admin-menu.php:22,
35
- #: includes/admin/class-wpglobus-clean.php:606,
36
- #: includes/admin/class-wpglobus-customize-options.php:1293,
37
- #: includes/admin/class-wpglobus-customize-options.php:1261,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr ""
41
 
42
- #: includes/admin/class-wpglobus-about.php:26
43
  msgid "Quick Start"
44
  msgstr ""
45
 
46
- #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr ""
50
 
51
- #: includes/admin/class-wpglobus-about.php:59
52
  msgid ""
53
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
54
  msgstr ""
55
 
56
- #: includes/admin/class-wpglobus-about.php:60
57
  msgid ""
58
  "The mbstring extension is required for the full UTF-8 compatibility and "
59
  "better performance. Without it, some parts of WordPress and WPGlobus may "
@@ -61,137 +42,108 @@ msgid ""
61
  "administrator."
62
  msgstr ""
63
 
64
- #: includes/admin/class-wpglobus-about.php:87
65
  msgid "Go to WPGlobus Settings"
66
  msgstr ""
67
 
68
- #: includes/admin/class-wpglobus-about.php:98
69
  msgid "Easy as 1-2-3:"
70
  msgstr ""
71
 
72
- #: includes/admin/class-wpglobus-about.php:101
73
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
74
  msgstr ""
75
 
76
- #: includes/admin/class-wpglobus-about.php:102
77
  msgid ""
78
  "Enter the translations to the posts, pages, categories, tags and menus using "
79
  "a clean and simple interface."
80
  msgstr ""
81
 
82
- #: includes/admin/class-wpglobus-about.php:103
83
  msgid ""
84
  "Switch languages at the front-end using a drop-down menu with language names "
85
  "and country flags."
86
  msgstr ""
87
 
88
- #: includes/admin/class-wpglobus-about.php:111
89
  msgid "Links:"
90
  msgstr ""
91
 
92
- #: includes/admin/class-wpglobus-about.php:119
93
  msgid "FAQs"
94
  msgstr ""
95
 
96
- #: includes/admin/class-wpglobus-about.php:121
97
  msgid "Contact Us"
98
  msgstr ""
99
 
100
- #: includes/admin/class-wpglobus-about.php:123
101
  msgid "Please give us 5 stars!"
102
  msgstr ""
103
 
104
- #: includes/admin/class-wpglobus-about.php:133
105
  msgid "WPGlobus does not translate texts automatically!"
106
  msgstr ""
107
 
108
- #: includes/admin/class-wpglobus-about.php:136
109
  msgid ""
110
  "There are many translation companies and individual translators who can help "
111
  "you write and proofread the texts."
112
  msgstr ""
113
 
114
- #: includes/admin/class-wpglobus-about.php:137
115
  msgid ""
116
  "When you choose a translator, please look at their native language, country "
117
  "of residence, specialization and knowledge of WordPress."
118
  msgstr ""
119
 
120
  #. translators: %s are used to insert HTML link. Keep them in place.
121
- #: includes/admin/class-wpglobus-about.php:143
122
  msgid ""
123
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
124
  "website. This is not an endorsement, just a courtesy. Please contact them "
125
  "directly and let us know how did it work for you!"
126
  msgstr ""
127
 
128
- #: includes/admin/class-wpglobus-about.php:154
129
  msgid "Important notes:"
130
  msgstr ""
131
 
132
- #: includes/admin/class-wpglobus-about.php:159
133
  msgid ""
134
  "WPGlobus only supports the localization URLs in the form of <code>example."
135
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
136
  "com</code> and language queries <code>example.com?lang=xx</code>."
137
  msgstr ""
138
 
139
- #: includes/admin/class-wpglobus-about.php:162
140
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
141
  msgstr ""
142
 
143
- #: includes/admin/class-wpglobus-about.php:163
144
  msgid ""
145
  "They might display some texts with no translation, or with all languages "
146
  "mixed together."
147
  msgstr ""
148
 
149
  #. translators: %s are used to insert HTML link. Keep them in place.
150
- #: includes/admin/class-wpglobus-about.php:167
151
  msgid ""
152
  "Please contact the theme / plugin author. If they are unable to assist, "
153
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
154
  msgstr ""
155
 
156
- #: includes/admin/class-wpglobus-admin-bar-menu.php:124
157
  msgid "Language was set on your profile page"
158
  msgstr ""
159
 
160
- #: includes/admin/class-wpglobus-admin-bar-menu.php:194
161
  msgid "Add"
162
  msgstr ""
163
 
164
- #: includes/admin/class-wpglobus-admin-page.php:32,
165
- #: includes/admin/class-wpglobus-clean.php:585
166
  msgid "Multilingual Everything!"
167
  msgstr ""
168
 
169
- #: includes/admin/class-wpglobus-admin-page.php:34,
170
- #: includes/admin/class-wpglobus-clean.php:588
171
  msgid ""
172
  "WPGlobus is a family of WordPress plugins assisting you in making "
173
  "multilingual WordPress blogs and sites."
174
  msgstr ""
175
 
176
- #: includes/admin/class-wpglobus-clean.php:232
177
  msgid "Remove the WPGlobus settings (not recommended)"
178
  msgstr ""
179
 
180
- #: includes/admin/class-wpglobus-clean.php:595
181
  msgid "Clean-up Tool"
182
  msgstr ""
183
 
184
- #: includes/admin/class-wpglobus-clean.php:609
185
  msgid "Support"
186
  msgstr ""
187
 
188
- #: includes/admin/class-wpglobus-clean.php:614
189
  msgid ""
190
  "WARNING: this operation is non-reversible. It is strongly recommended that "
191
  "you backup your database before proceeding."
192
  msgstr ""
193
 
194
- #: includes/admin/class-wpglobus-clean.php:619
195
  msgid ""
196
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
197
  "By running it, you will remove ALL translations you have entered to your "
@@ -201,7 +153,6 @@ msgid ""
201
  "so on."
202
  msgstr ""
203
 
204
- #: includes/admin/class-wpglobus-clean.php:622
205
  msgid ""
206
  "Make sure that your active theme does not have any code related to WPGlobus. "
207
  "Such code could be added by you or by a 3rd party developer. If that code "
@@ -210,42 +161,34 @@ msgid ""
210
  msgstr ""
211
 
212
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
213
- #: includes/admin/class-wpglobus-clean.php:630
214
  msgid ""
215
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
216
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
217
  msgstr ""
218
 
219
- #: includes/admin/class-wpglobus-clean.php:641
220
  msgid "You are about to clean the content of the following database tables:"
221
  msgstr ""
222
 
223
- #: includes/admin/class-wpglobus-clean.php:649
224
  msgid "The operations log"
225
  msgstr ""
226
 
227
- #: includes/admin/class-wpglobus-clean.php:652
228
  msgid ""
229
  "We are going to write a detailed log of all the database changes performed. "
230
  "It should help in the case you need to restore something important. The log "
231
  "will be written to the file:"
232
  msgstr ""
233
 
234
- #: includes/admin/class-wpglobus-clean.php:662
235
  msgid ""
236
  "Uncheck if you do not want to write the operations log (we recommend to keep "
237
  "it checked)"
238
  msgstr ""
239
 
240
- #: includes/admin/class-wpglobus-clean.php:667
241
  msgid "You have been warned..."
242
  msgstr ""
243
 
244
- #: includes/admin/class-wpglobus-clean.php:669
245
  msgid "Please confirm by checking the box below:"
246
  msgstr ""
247
 
248
- #: includes/admin/class-wpglobus-clean.php:671
249
  msgid ""
250
  "I have read and understood everything written on this page. I am aware that "
251
  "by using this tool I may loose some content of my website. I have made a "
@@ -253,284 +196,189 @@ msgid ""
253
  "responsible for the results."
254
  msgstr ""
255
 
256
- #: includes/admin/class-wpglobus-clean.php:674
257
  msgid "YES, I CONFIRM"
258
  msgstr ""
259
 
260
- #: includes/admin/class-wpglobus-clean.php:678
261
  msgid "Process with the Clean-up"
262
  msgstr ""
263
 
264
- #: includes/admin/class-wpglobus-customize-options.php:73,
265
- #: includes/admin/class-wpglobus-customize-options.php:100,
266
- #: includes/admin/class-wpglobus-customize-options.php:145,
267
- #: includes/admin/class-wpglobus-customize-options.php:183
268
  msgid "Default"
269
  msgstr ""
270
 
271
- #: includes/admin/class-wpglobus-customize-options.php:264
272
  msgid "Section"
273
  msgstr ""
274
 
275
- #: includes/admin/class-wpglobus-customize-options.php:277
276
  msgid "Show all sections"
277
  msgstr ""
278
 
279
- #: includes/admin/class-wpglobus-customize-options.php:279
280
  msgid "Save &amp; Reload"
281
  msgstr ""
282
 
283
- #: includes/admin/class-wpglobus-customize-options.php:553,
284
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:585,
285
- #: includes/class-wpglobus.php:1284, wpglobus.php:12, wpglobus.php:18
286
  msgid "WPGlobus"
287
  msgstr "WPGlobus"
288
 
289
- #: includes/admin/class-wpglobus-customize-options.php:604
290
  msgid ""
291
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
292
  msgstr ""
293
 
294
- #: includes/admin/class-wpglobus-customize-options.php:610
295
  msgid "Fields Settings"
296
  msgstr ""
297
 
298
- #: includes/admin/class-wpglobus-customize-options.php:655
299
  msgid "WPGlobus Settings"
300
  msgstr ""
301
 
302
- #: includes/admin/class-wpglobus-customize-options.php:723
303
  msgid "Help"
304
  msgstr "Βοήθεια"
305
 
306
- #: includes/admin/class-wpglobus-customize-options.php:745,
307
- #: includes/options/class-wpglobus-options.php:1176
308
  msgid "Languages"
309
  msgstr ""
310
 
311
- #: includes/admin/class-wpglobus-customize-options.php:765,
312
- #: includes/options/class-wpglobus-options.php:1189
313
  msgid "Enabled Languages"
314
  msgstr ""
315
 
316
- #: includes/admin/class-wpglobus-customize-options.php:767,
317
- #: includes/options/class-wpglobus-options.php:1190
318
  msgid "These languages are currently enabled on your site."
319
  msgstr ""
320
 
321
- #: includes/admin/class-wpglobus-customize-options.php:795,
322
- #: includes/options/class-wpglobus-options.php:1148
323
  msgid "Choose a language you would like to enable."
324
  msgstr ""
325
 
326
- #: includes/admin/class-wpglobus-customize-options.php:797
327
  msgid "Press the [Save & Publish] button to confirm."
328
  msgstr ""
329
 
330
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
331
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
332
- #: includes/admin/class-wpglobus-customize-options.php:801,
333
- #: includes/options/class-wpglobus-options.php:1154
334
  msgid "or Add new Language %1$s here %2$s"
335
  msgstr ""
336
 
337
- #: includes/admin/class-wpglobus-customize-options.php:813,
338
- #: includes/options/class-wpglobus-options.php:1203
339
  msgid "Add Languages"
340
  msgstr ""
341
 
342
- #: includes/admin/class-wpglobus-customize-options.php:833,
343
- #: includes/options/class-wpglobus-options.php:1211
344
  msgid "Language Selector Mode"
345
  msgstr ""
346
 
347
- #: includes/admin/class-wpglobus-customize-options.php:838,
348
- #: includes/options/class-wpglobus-options.php:1214
349
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
350
  msgstr ""
351
 
352
- #: includes/admin/class-wpglobus-customize-options.php:839,
353
- #: includes/options/class-wpglobus-options.php:1215
354
  msgid "Full Name (English, Russian, Italian, etc.)"
355
  msgstr ""
356
 
357
- #: includes/admin/class-wpglobus-customize-options.php:841,
358
- #: includes/options/class-wpglobus-options.php:1216
359
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
360
  msgstr ""
361
 
362
- #: includes/admin/class-wpglobus-customize-options.php:842,
363
- #: includes/options/class-wpglobus-options.php:1217
364
  msgid "Flags only"
365
  msgstr ""
366
 
367
- #: includes/admin/class-wpglobus-customize-options.php:844,
368
- #: includes/options/class-wpglobus-options.php:1212
369
  msgid ""
370
  "Choose the way language name and country flag are shown in the drop-down menu"
371
  msgstr ""
372
 
373
- #: includes/admin/class-wpglobus-customize-options.php:879
374
  msgid "select navigation menu"
375
  msgstr ""
376
 
377
- #: includes/admin/class-wpglobus-customize-options.php:915,
378
- #: includes/admin/class-wpglobus-customize-options.php:888,
379
- #: includes/options/class-wpglobus-options.php:1230
380
  msgid "Language Selector Menu"
381
  msgstr ""
382
 
383
- #: includes/admin/class-wpglobus-customize-options.php:920,
384
- #: includes/admin/class-wpglobus-customize-options.php:899,
385
- #: includes/options/class-wpglobus-options.php:1231
386
  msgid "Choose the navigation menu where the language selector will be shown"
387
  msgstr ""
388
 
389
- #: includes/admin/class-wpglobus-customize-options.php:898
390
  msgid "No menus have been created yet. Create some."
391
  msgstr ""
392
 
393
- #: includes/admin/class-wpglobus-customize-options.php:940,
394
- #: includes/options/class-wpglobus-options.php:1241
395
  msgid "\"All Pages\" menus Language selector"
396
  msgstr ""
397
 
398
- #: includes/admin/class-wpglobus-customize-options.php:943,
399
- #: includes/options/class-wpglobus-options.php:1243
400
  msgid ""
401
  "Adds language selector to the menus that automatically list all existing "
402
  "pages (using `wp_list_pages`)"
403
  msgstr ""
404
 
405
- #: includes/admin/class-wpglobus-customize-options.php:960,
406
- #: includes/options/class-wpglobus-options.php:1356
407
  msgid "Custom CSS"
408
  msgstr ""
409
 
410
- #: includes/admin/class-wpglobus-customize-options.php:964
411
  msgid ""
412
  "Here you can enter the CSS rules to adjust the language selector menu for "
413
  "your theme. Look at the examples in the `style-samples.css` file."
414
  msgstr ""
415
 
416
- #: includes/admin/class-wpglobus-customize-options.php:983
417
  msgid "Post types"
418
  msgstr ""
419
 
420
- #: includes/admin/class-wpglobus-customize-options.php:1091
421
  msgid "Uncheck to disable WPGlobus"
422
  msgstr ""
423
 
424
- #: includes/admin/class-wpglobus-customize-options.php:1125,
425
- #: includes/options/class-wpglobus-options.php:1424
426
  msgid "Redirect"
427
  msgstr ""
428
 
429
- #: includes/admin/class-wpglobus-customize-options.php:1150,
430
- #: includes/options/class-wpglobus-options.php:1419
431
  msgid "Choose the language automatically, based on:"
432
  msgstr ""
433
 
434
- #: includes/admin/class-wpglobus-customize-options.php:1152,
435
- #: includes/options/class-wpglobus-options.php:1409
436
  msgid "Preferred language set in the browser"
437
  msgstr ""
438
 
439
- #: includes/admin/class-wpglobus-customize-options.php:1153,
440
- #: includes/options/class-wpglobus-options.php:1396
441
  msgid ""
442
  "When a user comes to the site for the first time, try to find the best "
443
  "matching language version of the page."
444
  msgstr ""
445
 
446
- #: includes/admin/class-wpglobus-customize-options.php:1214,
447
- #: includes/admin/class-wpglobus-customize-options.php:1234,
448
- #: includes/admin/class-wpglobus-customize-options.php:1192,
449
- #: includes/options/class-wpglobus-options.php:1368
450
  msgid "Custom JS Code"
451
  msgstr ""
452
 
453
- #: includes/admin/class-wpglobus-customize-options.php:1232,
454
- #: includes/admin/class-wpglobus-customize-options.php:1276
455
  msgid "Title"
456
  msgstr ""
457
 
458
- #: includes/admin/class-wpglobus-customize-options.php:1235
459
  msgid "(Paste your JS code here.)"
460
  msgstr ""
461
 
462
- #: includes/admin/class-wpglobus-customize-options.php:1184
463
  msgid ""
464
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
465
  "version 4.9 or later."
466
  msgstr ""
467
 
468
- #: includes/admin/class-wpglobus-customize-options.php:1186
469
  msgid "With your version of WordPress, please use the"
470
  msgstr ""
471
 
472
- #: includes/admin/class-wpglobus-customize-options.php:1188
473
  msgid "WPGlobus Settings page"
474
  msgstr ""
475
 
476
- #: includes/admin/class-wpglobus-customize-options.php:1277
477
  msgid "Label"
478
  msgstr ""
479
 
480
- #: includes/admin/class-wpglobus-customize-options.php:1281
481
  msgid "Description"
482
  msgstr ""
483
 
484
- #: includes/admin/class-wpglobus-customize-options.php:1345
485
  msgid ""
486
  "Here you can specify which fields should be considered multilingual by "
487
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
488
  msgstr ""
489
 
490
- #: includes/admin/class-wpglobus-customize-options.php:1351,
491
- #: includes/options/class-wpglobus-options.php:608
492
  msgid "Thank you for installing WPGlobus!"
493
  msgstr ""
494
 
495
- #: includes/admin/class-wpglobus-customize-options.php:1355,
496
- #: includes/options/class-wpglobus-options.php:612
497
  msgid "Read About WPGlobus"
498
  msgstr ""
499
 
500
- #: includes/admin/class-wpglobus-customize-options.php:1358
501
  msgid ""
502
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
503
  msgstr ""
504
 
505
- #: includes/admin/class-wpglobus-customize-options.php:1363,
506
- #: includes/options/class-wpglobus-options.php:648
507
  msgid ""
508
  "Should you have any questions or comments, please do not hesitate to contact "
509
  "us."
510
  msgstr ""
511
 
512
- #: includes/admin/class-wpglobus-customize-options.php:1367,
513
- #: includes/options/class-wpglobus-options.php:652
514
  msgid "Sincerely Yours,"
515
  msgstr ""
516
 
517
- #: includes/admin/class-wpglobus-customize-options.php:1369,
518
- #: includes/options/class-wpglobus-options.php:654,
519
- #: includes/options/wpglobus-options-header.php:34
520
  msgid "The WPGlobus Team"
521
  msgstr ""
522
 
523
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
524
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
525
- #: includes/admin/class-wpglobus-customize-options.php:1388,
526
- #: includes/options/class-wpglobus-options.php:689
527
  msgid ""
528
  "We would hate to see you go. If something goes wrong, do not uninstall "
529
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
530
  msgstr ""
531
 
532
- #: includes/admin/class-wpglobus-customize-options.php:1395,
533
- #: includes/options/class-wpglobus-options.php:696
534
  msgid ""
535
  "Please note that if you deactivate WPGlobus, your site will show all the "
536
  "languages together, mixed up. You will need to remove all translations, "
@@ -539,8 +387,6 @@ msgstr ""
539
 
540
  #. translators: %s: link to the Clean-up Tool
541
  #. translators: %s: link to the Clean-up Tool.
542
- #: includes/admin/class-wpglobus-customize-options.php:1400,
543
- #: includes/options/class-wpglobus-options.php:700
544
  msgid ""
545
  "If there are just a few places, you should edit them manually. To "
546
  "automatically remove all translations at once, you can use the %s. WARNING: "
@@ -550,595 +396,447 @@ msgstr ""
550
 
551
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
552
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
553
- #: includes/admin/class-wpglobus-customize-options.php:1403,
554
- #: includes/options/class-wpglobus-options.php:677
555
  msgid "%1$sClean-up Tool%2$s"
556
  msgstr ""
557
 
558
  #. translators: %s: name of current theme
559
- #: includes/admin/class-wpglobus-customize-options.php:1415
560
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
561
  msgstr ""
562
 
563
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
564
- #: includes/admin/class-wpglobus-customize-options.php:1421
565
  msgid "Please use %1$sWPGlobus options page%2$s instead."
566
  msgstr ""
567
 
568
- #: includes/admin/class-wpglobus-customize-options.php:1485
569
  msgid "Expand/Shrink"
570
  msgstr ""
571
 
572
- #: includes/admin/class-wpglobus-dashboard-news.php:43,
573
- #: includes/admin/class-wpglobus-dashboard-news.php:59
574
  msgid "WPGlobus News"
575
  msgstr ""
576
 
577
- #: includes/admin/class-wpglobus-language-edit.php:197,
578
- #: includes/admin/class-wpglobus-language-edit.php:192
579
  msgid "Options updated"
580
  msgstr ""
581
 
582
- #: includes/admin/class-wpglobus-language-edit.php:272
583
  msgid "Please enter a language code!"
584
  msgstr ""
585
 
586
- #: includes/admin/class-wpglobus-language-edit.php:276
587
  msgid "Language code already exists!"
588
  msgstr ""
589
 
590
- #: includes/admin/class-wpglobus-language-edit.php:280
591
  msgid "Please specify the language flag!"
592
  msgstr ""
593
 
594
- #: includes/admin/class-wpglobus-language-edit.php:284
595
  msgid "Please enter the language name!"
596
  msgstr ""
597
 
598
- #: includes/admin/class-wpglobus-language-edit.php:288
599
  msgid "Please enter the language name in English!"
600
  msgstr ""
601
 
602
- #: includes/admin/class-wpglobus-language-edit.php:292
603
  msgid "Please enter the locale!"
604
  msgstr ""
605
 
606
- #: includes/admin/class-wpglobus-language-edit.php:354
607
  msgid "Add Language"
608
  msgstr ""
609
 
610
- #: includes/admin/class-wpglobus-language-edit.php:351,
611
- #: includes/admin/class-wpglobus-language-edit.php:462,
612
- #: includes/admin/class-wpglobus-language-edit.php:455
613
  msgid "Delete Language"
614
  msgstr ""
615
 
616
- #: includes/admin/class-wpglobus-language-edit.php:349
617
  msgid "Edit Language"
618
  msgstr ""
619
 
620
- #: includes/admin/class-wpglobus-language-edit.php:384
621
  msgid "Language Code"
622
  msgstr ""
623
 
624
- #: includes/admin/class-wpglobus-language-edit.php:391
625
  msgid ""
626
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
627
  msgstr ""
628
 
629
- #: includes/admin/class-wpglobus-language-edit.php:396
630
  msgid "Language flag"
631
  msgstr ""
632
 
633
- #: includes/admin/class-wpglobus-language-edit.php:412
634
  msgid "Name"
635
  msgstr ""
636
 
637
- #: includes/admin/class-wpglobus-language-edit.php:417
638
  msgid ""
639
  "The name of the language in its native alphabet. (Examples: English, Русский)"
640
  msgstr ""
641
 
642
- #: includes/admin/class-wpglobus-language-edit.php:422
643
  msgid "Name in English"
644
  msgstr ""
645
 
646
- #: includes/admin/class-wpglobus-language-edit.php:427
647
  msgid "The name of the language in English"
648
  msgstr ""
649
 
650
- #: includes/admin/class-wpglobus-language-edit.php:432,
651
- #: includes/options/fields/table/class-wpglobus-languages-table.php:115
652
  msgid "Locale"
653
  msgstr ""
654
 
655
- #: includes/admin/class-wpglobus-language-edit.php:437
656
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
657
  msgstr ""
658
 
659
- #: includes/admin/class-wpglobus-language-edit.php:460
660
  msgid "Are you sure you want to delete?"
661
  msgstr ""
662
 
663
- #: includes/admin/class-wpglobus-language-edit.php:447
664
  msgid "Save Changes"
665
  msgstr ""
666
 
667
- #: includes/admin/class-wpglobus-language-edit.php:470
668
  msgid "Back to the WPGlobus Settings"
669
  msgstr ""
670
 
671
- #: includes/admin/class-wpglobus-plugin-install.php:308
672
  msgid "Current Version"
673
  msgstr ""
674
 
675
- #: includes/admin/class-wpglobus-plugin-install.php:309
676
  msgid "Get it now!"
677
  msgstr ""
678
 
679
- #: includes/admin/class-wpglobus-plugin-install.php:310
680
  msgid "Premium add-on"
681
  msgstr ""
682
 
683
- #: includes/admin/class-wpglobus-plugin-install.php:311,
684
- #: includes/options/fields/table/class-wpglobus-languages-table.php:472
685
  msgid "Installed"
686
  msgstr ""
687
 
688
  #. translators: placeholders are for the HTML tags.
689
- #: includes/admin/class-wpglobus-plugin-install.php:319
690
  msgid ""
691
  "If you have already purchased a WPGlobus premium extension, please read "
692
  "%1$sthe installation instructions here%2$s"
693
  msgstr ""
694
 
695
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
696
- #: includes/options/class-wpglobus-options.php:726
697
  msgid "Help Desk"
698
  msgstr ""
699
 
700
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:185
701
  msgid "Email not sent. Please fill in the entire form."
702
  msgstr ""
703
 
704
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:195
705
  msgid ""
706
  "Email not sent. Please verify that your name and email are entered correctly."
707
  msgstr ""
708
 
709
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:216
710
  msgid "Email sent."
711
  msgstr ""
712
 
713
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
714
  msgid "Thank you for using WPGlobus!"
715
  msgstr ""
716
 
717
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
718
  msgid "Our Support Team is here to answer your questions or concerns."
719
  msgstr ""
720
 
721
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
722
  msgid "To help us serve you better:"
723
  msgstr ""
724
 
725
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
726
  msgid ""
727
  "Please check if the problem persists if you switch to a standard WordPress "
728
  "theme."
729
  msgstr ""
730
 
731
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
732
  msgid ""
733
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
734
  msgstr ""
735
 
736
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
737
  msgid "Please fill in and submit the contact form:"
738
  msgstr ""
739
 
740
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
741
  msgid "Please make sure the email address is correct."
742
  msgstr ""
743
 
744
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
745
  msgid "Subject"
746
  msgstr "Θέμα"
747
 
748
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
749
  msgid "Short description of the problem"
750
  msgstr ""
751
 
752
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
753
  msgid "Detailed description"
754
  msgstr ""
755
 
756
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
757
  msgid "Technical Information"
758
  msgstr ""
759
 
760
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
761
  msgid "This information helps us to find the problem source"
762
  msgstr ""
763
 
764
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:161
765
  msgid ""
766
  "Alternatively, please email %s. Do not forget to copy and paste the "
767
  "technical information to your email message."
768
  msgstr ""
769
 
770
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:89
771
  msgid "WPGlobus Recommends:"
772
  msgstr ""
773
 
774
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:98,
775
- #: includes/options/class-wpglobus-options.php:933
776
  msgid "WPGlobus for WooCommerce"
777
  msgstr ""
778
 
779
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:102
780
  msgid ""
781
  "Translate product titles and descriptions, product categories, tags and "
782
  "attributes."
783
  msgstr ""
784
 
785
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:107
786
  msgid "Get it now:"
787
  msgstr ""
788
 
789
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:117
790
  msgid "WooCommerce Multi-Currency"
791
  msgstr ""
792
 
793
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:121
794
  msgid "Accept multiple currencies in your online store!"
795
  msgstr ""
796
 
797
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:126,
798
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:185
799
  msgid "Check it out:"
800
  msgstr ""
801
 
802
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:195
803
  msgid "To translate permalinks, please activate the module Slug."
804
  msgstr ""
805
 
806
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:183
807
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
808
  msgstr ""
809
 
810
- #: includes/builders/class-wpglobus-builder.php:278,
811
- #: includes/class-wpglobus.php:3577
812
  msgid "Save draft before using extra language."
813
  msgstr ""
814
 
815
- #: includes/builders/class-wpglobus-builder.php:371
816
  msgid "Builder"
817
  msgstr ""
818
 
819
- #: includes/builders/class-wpglobus-builder.php:395
820
  msgid "Сompatibility Settings"
821
  msgstr ""
822
 
823
  #. translators: ON/OFF status of WPGlobus on the edit pages.
824
  #. translators: ON/OFF status of WPGlobus on the edit pages.
825
- #: includes/builders/elementor/class-wpglobus-elementor.php:255,
826
- #: includes/class-wpglobus.php:1263
827
  msgid "ON"
828
  msgstr ""
829
 
830
- #: includes/builders/elementor/class-wpglobus-elementor.php:256,
831
- #: includes/class-wpglobus.php:1264
832
  msgid "Turn off"
833
  msgstr ""
834
 
835
- #: includes/builders/elementor/class-wpglobus-elementor.php:250,
836
- #: includes/class-wpglobus.php:1258
837
  msgid "OFF"
838
  msgstr ""
839
 
840
- #: includes/builders/elementor/class-wpglobus-elementor.php:251,
841
- #: includes/class-wpglobus.php:1259
842
  msgid "Turn on"
843
  msgstr ""
844
 
845
- #: includes/builders/elementor/class-wpglobus-elementor.php:281
846
  msgid "Elementor"
847
  msgstr ""
848
 
849
- #: includes/builders/elementor/class-wpglobus-elementor.php:508
850
  msgid "WPGlobus languages"
851
  msgstr ""
852
 
853
- #: includes/builders/elementor/class-wpglobus-elementor.php:514
854
  msgid "current"
855
  msgstr ""
856
 
857
- #: includes/builders/elementor/class-wpglobus-elementor.php:675
858
  msgid ""
859
  "WPGlobus provides multilingual support for Elementor only when the option "
860
  "%1$s%2$s%3$s is set to %4$s."
861
  msgstr ""
862
 
863
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:228
864
  msgid "Before switching the language, please save draft or publish."
865
  msgstr ""
866
 
867
  #. translators: Metabox title FOR language.
868
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:318
869
  msgctxt "filter__seo_meta_box_title"
870
  msgid "for"
871
  msgstr ""
872
 
873
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:392
874
  msgid "Page is being reloaded. Please wait..."
875
  msgstr ""
876
 
877
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:393
878
  msgid ""
879
  "Before switching the language, please save draft or publish, then reload "
880
  "page."
881
  msgstr ""
882
 
883
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
884
  msgid ""
885
  "WPGlobus provides multilingual support for Elementor only when the option "
886
  "`CSS Print Method` is set to `External File`."
887
  msgstr ""
888
 
889
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
890
  msgid "Open Elementor Settings page"
891
  msgstr ""
892
 
893
- #: includes/class-wpglobus-widget.php:27
894
  msgid "WPGlobus widget"
895
  msgstr ""
896
 
897
- #: includes/class-wpglobus-widget.php:29
898
  msgid "Add language switcher"
899
  msgstr ""
900
 
901
- #: includes/class-wpglobus-widget.php:32
902
  msgid "Flags"
903
  msgstr ""
904
 
905
- #: includes/class-wpglobus-widget.php:33
906
  msgid "List"
907
  msgstr ""
908
 
909
- #: includes/class-wpglobus-widget.php:34
910
  msgid "List with flags"
911
  msgstr ""
912
 
913
- #: includes/class-wpglobus-widget.php:35
914
  msgid "Select"
915
  msgstr ""
916
 
917
- #: includes/class-wpglobus-widget.php:36
918
  msgid "Select with language code"
919
  msgstr ""
920
 
921
- #: includes/class-wpglobus-widget.php:37
922
  msgid "Dropdown"
923
  msgstr ""
924
 
925
- #: includes/class-wpglobus-widget.php:38
926
  msgid "Dropdown with flags"
927
  msgstr ""
928
 
929
- #: includes/class-wpglobus-widget.php:264
930
  msgid "Selector type"
931
  msgstr ""
932
 
933
- #: includes/class-wpglobus.php:1447
934
  msgid "You cannot disable the main language."
935
  msgstr ""
936
 
937
- #: includes/class-wpglobus.php:1672
938
  msgid "Need a multilingual slug?"
939
  msgstr ""
940
 
941
- #: includes/class-wpglobus.php:1655
942
  msgid "*) Available after the menu is saved."
943
  msgstr ""
944
 
945
- #: includes/class-wpglobus.php:4025
946
  msgid "You must enable Pretty Permalinks to use WPGlobus."
947
  msgstr ""
948
 
949
- #: includes/class-wpglobus.php:4027
950
  msgid ""
951
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
952
  "default option."
953
  msgstr ""
954
 
955
- #: includes/options/class-wpglobus-options.php:281
956
  msgid "Language Selector Menu Style"
957
  msgstr ""
958
 
959
- #: includes/options/class-wpglobus-options.php:282,
960
- #: includes/options/class-wpglobus-options.php:802,
961
- #: includes/options/class-wpglobus-options.php:871
962
  msgid "WPGlobus Plus"
963
  msgstr ""
964
 
965
- #: includes/options/class-wpglobus-options.php:283
966
  msgid "Drop-down languages menu or Flat (in one line)"
967
  msgstr ""
968
 
969
- #: includes/options/class-wpglobus-options.php:286
970
  msgid "Do not change"
971
  msgstr ""
972
 
973
- #: includes/options/class-wpglobus-options.php:287
974
  msgid "Drop-down (vertical)"
975
  msgstr ""
976
 
977
- #: includes/options/class-wpglobus-options.php:288
978
  msgid "Flat (horizontal)"
979
  msgstr ""
980
 
981
- #: includes/options/class-wpglobus-options.php:343
982
  msgid ""
983
  "If you see this message then your browser may not display the WPGlobus "
984
  "Settings panel properly. Please try another browser."
985
  msgstr ""
986
 
987
- #: includes/options/class-wpglobus-options.php:599,
988
- #: includes/options/class-wpglobus-options.php:1577
989
  msgid "Сompatibility"
990
  msgstr ""
991
 
992
  #. translators: placeholders for "strong" tags.
993
- #: includes/options/class-wpglobus-options.php:616
994
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
995
  msgstr ""
996
 
997
  #. translators: placeholders for "strong" tags.
998
- #: includes/options/class-wpglobus-options.php:619
999
  msgid ""
1000
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
1001
  "the language attributes: name, code, flag icon, etc."
1002
  msgstr ""
1003
 
1004
- #: includes/options/class-wpglobus-options.php:622
1005
  msgid "Important notes"
1006
  msgstr "Σημαντικές σημειώσεις"
1007
 
1008
  #. translators: placeholders for "strong" tags.
1009
- #: includes/options/class-wpglobus-options.php:624
1010
  msgid "Version %1$s1.9.17%2$s "
1011
  msgstr ""
1012
 
1013
  #. translators: placeholders for "strong" tags.
1014
- #: includes/options/class-wpglobus-options.php:627
1015
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
1016
  msgstr ""
1017
 
1018
  #. translators: placeholders for "strong" tags; compatibility tab link.
1019
- #: includes/options/class-wpglobus-options.php:630
1020
  msgid ""
1021
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
1022
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
1023
  msgstr ""
1024
 
1025
  #. translators: placeholders for "strong" tags; compatibility tab link.
1026
- #: includes/options/class-wpglobus-options.php:633
1027
  msgid ""
1028
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
1029
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
1030
  msgstr ""
1031
 
1032
  #. translators: placeholders for "strong" tags.
1033
- #: includes/options/class-wpglobus-options.php:637
1034
  msgid "Version %1$s2.2.11%2$s "
1035
  msgstr ""
1036
 
1037
- #: includes/options/class-wpglobus-options.php:639
1038
  msgid "Starting from this version"
1039
  msgstr ""
1040
 
1041
  #. translators: placeholders for "strong" tags.
1042
- #: includes/options/class-wpglobus-options.php:642
1043
  msgid ""
1044
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
1045
  "(CPT)."
1046
  msgstr ""
1047
 
1048
  #. translators: placeholders for "strong" tags.
1049
- #: includes/options/class-wpglobus-options.php:645
1050
  msgid ""
1051
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
1052
  "the %1$s[%3$s]%2$s tab."
1053
  msgstr ""
1054
 
1055
- #: includes/options/class-wpglobus-options.php:662
1056
  msgid "Welcome!"
1057
  msgstr ""
1058
 
1059
- #: includes/options/class-wpglobus-options.php:685
1060
  msgid "Deactivating / Uninstalling"
1061
  msgstr ""
1062
 
1063
- #: includes/options/class-wpglobus-options.php:711
1064
  msgid "Uninstall"
1065
  msgstr "Απεγκατάσταση"
1066
 
1067
- #: includes/options/class-wpglobus-options.php:741
1068
  msgid "All add-ons"
1069
  msgstr ""
1070
 
1071
- #: includes/options/class-wpglobus-options.php:756
1072
  msgid "Mobile Menu"
1073
  msgstr ""
1074
 
1075
- #: includes/options/class-wpglobus-options.php:771
1076
  msgid "Language Widgets"
1077
  msgstr ""
1078
 
1079
- #: includes/options/class-wpglobus-options.php:841
1080
  msgid "We Recommend..."
1081
  msgstr ""
1082
 
1083
- #: includes/options/class-wpglobus-options.php:873
1084
  msgid ""
1085
  "Our premium add-on, WPGlobus Plus, will add several features to your "
1086
  "website, such as:"
1087
  msgstr ""
1088
 
1089
- #: includes/options/class-wpglobus-options.php:876
1090
  msgid ""
1091
  "- Ability to write a post in one language and immediately publish it, not "
1092
  "waiting for the translation to other languages;"
1093
  msgstr ""
1094
 
1095
- #: includes/options/class-wpglobus-options.php:879
1096
  msgid "- Set different URLs for each translation;"
1097
  msgstr ""
1098
 
1099
- #: includes/options/class-wpglobus-options.php:882
1100
  msgid ""
1101
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
1102
  "for each translation;"
1103
  msgstr ""
1104
 
1105
- #: includes/options/class-wpglobus-options.php:885
1106
  msgid "- and more..."
1107
  msgstr ""
1108
 
1109
- #: includes/options/class-wpglobus-options.php:888,
1110
- #: includes/options/class-wpglobus-options.php:945,
1111
- #: includes/options/class-wpglobus-options.php:1003
1112
  msgid "Click here to download"
1113
  msgstr ""
1114
 
1115
- #: includes/options/class-wpglobus-options.php:936
1116
  msgid ""
1117
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
1118
  "translate your blog posts and pages to many languages."
1119
  msgstr ""
1120
 
1121
- #: includes/options/class-wpglobus-options.php:939
1122
  msgid "The next step is to translate your WooCommerce-based store!"
1123
  msgstr ""
1124
 
1125
- #: includes/options/class-wpglobus-options.php:942
1126
  msgid ""
1127
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
1128
  "translate product titles and descriptions, categories, tags and attributes."
1129
  msgstr ""
1130
 
1131
- #: includes/options/class-wpglobus-options.php:989
1132
  msgid "Multi-currency"
1133
  msgstr ""
1134
 
1135
- #: includes/options/class-wpglobus-options.php:992
1136
  msgid ""
1137
  "Your WooCommerce-powered store is set to show prices and accept payments in "
1138
  "a single currency only."
1139
  msgstr ""
1140
 
1141
- #: includes/options/class-wpglobus-options.php:996
1142
  msgid ""
1143
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
1144
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
@@ -1146,493 +844,374 @@ msgid ""
1146
  "positioning for global growth!"
1147
  msgstr ""
1148
 
1149
- #: includes/options/class-wpglobus-options.php:1000
1150
  msgid ""
1151
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
1152
  "re-calculating prices on-the-fly."
1153
  msgstr ""
1154
 
1155
- #: includes/options/class-wpglobus-options.php:1037
1156
  msgid "WPGlobus Premium Add-ons"
1157
  msgstr ""
1158
 
1159
- #: includes/options/class-wpglobus-options.php:1039
1160
  msgid ""
1161
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
1162
  "you will be able to:"
1163
  msgstr ""
1164
 
1165
- #: includes/options/class-wpglobus-options.php:1044
1166
  msgid ""
1167
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
1168
  "моя-страница and so on);"
1169
  msgstr ""
1170
 
1171
- #: includes/options/class-wpglobus-options.php:1047
1172
  msgid ""
1173
  "Postpone translation to some languages and <strong>publish only the "
1174
  "translated texts</strong>;"
1175
  msgstr ""
1176
 
1177
- #: includes/options/class-wpglobus-options.php:1050
1178
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
1179
  msgstr ""
1180
 
1181
- #: includes/options/class-wpglobus-options.php:1053
1182
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
1183
  msgstr ""
1184
 
1185
- #: includes/options/class-wpglobus-options.php:1056
1186
  msgid ""
1187
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
1188
  "strong>;"
1189
  msgstr ""
1190
 
1191
- #: includes/options/class-wpglobus-options.php:1060
1192
  msgid "...and more."
1193
  msgstr ""
1194
 
1195
- #: includes/options/class-wpglobus-options.php:1063
1196
  msgid "Click here to visit the WPGlobus Store"
1197
  msgstr ""
1198
 
1199
- #: includes/options/class-wpglobus-options.php:1104
1200
  msgid "Select a language"
1201
  msgstr ""
1202
 
1203
  #. translators: %3$s placeholder for the icon (actual picture).
1204
- #: includes/options/class-wpglobus-options.php:1133
1205
  msgid ""
1206
  "Place the %1$smain language%2$s of your site at the top of the list by "
1207
  "dragging the %3$s icons."
1208
  msgstr ""
1209
 
1210
  #. translators: placeholders for the "strong" HTML tags.
1211
- #: includes/options/class-wpglobus-options.php:1136
1212
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
1213
  msgstr ""
1214
 
1215
  #. translators: placeholders for the "strong" HTML tags.
1216
- #: includes/options/class-wpglobus-options.php:1139
1217
  msgid "%1$sAdd%2$s more languages using the section below."
1218
  msgstr ""
1219
 
1220
- #: includes/options/class-wpglobus-options.php:1140
1221
  msgid "When done, click the [Save Changes] button."
1222
  msgstr ""
1223
 
1224
  #. translators: %s - placeholder for the "Save Changes" button text.
1225
- #: includes/options/class-wpglobus-options.php:1151
1226
  msgid "Press the %s button to confirm."
1227
  msgstr ""
1228
 
1229
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
1230
- #: includes/options/class-wpglobus-options.php:1168
1231
  msgid "-- none --"
1232
  msgstr ""
1233
 
1234
- #: includes/options/class-wpglobus-options.php:1169
1235
  msgid "All menus"
1236
  msgstr ""
1237
 
1238
- #: includes/options/class-wpglobus-options.php:1182
1239
  msgid "Instructions:"
1240
  msgstr ""
1241
 
1242
- #: includes/options/class-wpglobus-options.php:1242
1243
  msgid "(Found in some themes)"
1244
  msgstr ""
1245
 
1246
- #: includes/options/class-wpglobus-options.php:1244
1247
  msgid "Enable"
1248
  msgstr ""
1249
 
1250
- #: includes/options/class-wpglobus-options.php:1259
1251
  msgid "Languages table"
1252
  msgstr ""
1253
 
1254
- #: includes/options/class-wpglobus-options.php:1265
1255
  msgid "Use this table to add, edit or delete languages."
1256
  msgstr ""
1257
 
1258
- #: includes/options/class-wpglobus-options.php:1266
1259
  msgid "NOTE: you cannot remove the main language."
1260
  msgstr ""
1261
 
1262
- #: includes/options/class-wpglobus-options.php:1314
1263
  msgid "WPGlobus is enabled on these Post Types"
1264
  msgstr ""
1265
 
1266
- #: includes/options/class-wpglobus-options.php:1315
1267
  msgid "Uncheck to disable"
1268
  msgstr ""
1269
 
1270
- #: includes/options/class-wpglobus-options.php:1316
1271
  msgid ""
1272
  "Please note that there are post types, which status is managed by other "
1273
  "plugins and cannot be changed here."
1274
  msgstr ""
1275
 
1276
- #: includes/options/class-wpglobus-options.php:1321
1277
  msgid "Post Types"
1278
  msgstr ""
1279
 
1280
- #: includes/options/class-wpglobus-options.php:1337
1281
  msgid ""
1282
  "You should put here only the code provided by WPGlobus Support. Do not write "
1283
  "anything else in the sections below as it might break the functionality of "
1284
  "your website!"
1285
  msgstr ""
1286
 
1287
- #: includes/options/class-wpglobus-options.php:1378
1288
  msgid "Custom Code"
1289
  msgstr "Κωδικός Πελάτη"
1290
 
1291
- #: includes/options/class-wpglobus-options.php:1486,
1292
- #: includes/options/class-wpglobus-options.php:1618,
1293
- #: includes/options/class-wpglobus-options.php:1729
1294
  msgid "Enabled"
1295
  msgstr "Ενεργοποιημένο"
1296
 
1297
- #: includes/options/class-wpglobus-options.php:1499
1298
  msgid "Builders support"
1299
  msgstr ""
1300
 
1301
- #: includes/options/class-wpglobus-options.php:1551
1302
  msgid "Builder mode is enabled on these Post Types"
1303
  msgstr ""
1304
 
1305
- #: includes/options/class-wpglobus-options.php:1617
1306
  msgid "Old fashioned language switcher"
1307
  msgstr ""
1308
 
1309
- #: includes/options/class-wpglobus-options.php:1623
1310
  msgid "Block Editor"
1311
  msgstr ""
1312
 
1313
- #: includes/options/class-wpglobus-options.php:1624
1314
  msgid "Block Editor Options"
1315
  msgstr ""
1316
 
1317
- #: includes/options/class-wpglobus-options.php:1653
1318
  msgid ""
1319
  "With the current settings, you will see the following lines in the section "
1320
  "HEAD of your site pages"
1321
  msgstr ""
1322
 
1323
- #: includes/options/class-wpglobus-options.php:1655
1324
  msgid "(example for two languages)"
1325
  msgstr ""
1326
 
1327
- #: includes/options/class-wpglobus-options.php:1702
1328
  msgid ""
1329
  "Tell search engines about localized versions of your pages using the "
1330
  "hreflang tag"
1331
  msgstr ""
1332
 
1333
- #: includes/options/class-wpglobus-options.php:1711
1334
  msgid "Output the hreflang tag as"
1335
  msgstr ""
1336
 
1337
- #: includes/options/class-wpglobus-options.php:1714
1338
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1339
  msgstr ""
1340
 
1341
- #: includes/options/class-wpglobus-options.php:1715
1342
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1343
  msgstr ""
1344
 
1345
- #: includes/options/class-wpglobus-options.php:1716
1346
  msgid "Language code only (en, ru, etc.)"
1347
  msgstr ""
1348
 
1349
- #: includes/options/class-wpglobus-options.php:1728
1350
  msgid "Use the code `x-default` for the main language"
1351
  msgstr ""
1352
 
1353
- #: includes/options/class-wpglobus-options.php:1734
1354
  msgid "Multilingual SEO"
1355
  msgstr ""
1356
 
1357
- #: includes/options/class-wpglobus-options.php:1735
1358
  msgid "Multilingual SEO Options"
1359
  msgstr ""
1360
 
1361
- #: includes/options/class-wpglobus-options.php:1772
1362
  msgid ""
1363
  "With WPGlobus, you can get translations for posts and pages using REST API."
1364
  msgstr ""
1365
 
1366
- #: includes/options/class-wpglobus-options.php:1800,
1367
- #: includes/options/class-wpglobus-options.php:1808,
1368
- #: includes/options/class-wpglobus-options.php:1780,
1369
- #: includes/options/class-wpglobus-options.php:1789
1370
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1371
  msgstr ""
1372
 
1373
- #: includes/options/class-wpglobus-options.php:1777
1374
  msgid ""
1375
  "For demonstration, you can try the first post that WordPress creates at the "
1376
  "initial installation."
1377
  msgstr ""
1378
 
1379
- #: includes/options/class-wpglobus-options.php:1819
1380
  msgid ""
1381
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1382
  "information."
1383
  msgstr ""
1384
 
1385
- #: includes/options/class-wpglobus-options.php:1826
1386
  msgid ""
1387
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1388
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1389
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1390
  msgstr ""
1391
 
1392
- #: includes/options/class-wpglobus-options.php:1839
1393
  msgid "Description:"
1394
  msgstr ""
1395
 
1396
- #: includes/options/class-wpglobus-options.php:1846,
1397
- #: includes/options/class-wpglobus-options.php:1847
1398
  msgid "REST API"
1399
  msgstr ""
1400
 
1401
- #: includes/options/class-wpglobus-options.php:2180
1402
  msgid "Translate strings"
1403
  msgstr ""
1404
 
1405
- #: includes/options/fields/table/class-wpglobus-languages-table.php:66
1406
  msgid "item"
1407
  msgstr ""
1408
 
1409
- #: includes/options/fields/table/class-wpglobus-languages-table.php:68
1410
  msgid "items"
1411
  msgstr ""
1412
 
1413
- #: includes/options/fields/table/class-wpglobus-languages-table.php:88
1414
  msgid "Code"
1415
  msgstr ""
1416
 
1417
- #: includes/options/fields/table/class-wpglobus-languages-table.php:94
1418
  msgid "Edit"
1419
  msgstr ""
1420
 
1421
- #: includes/options/fields/table/class-wpglobus-languages-table.php:99
1422
  msgid "Delete"
1423
  msgstr ""
1424
 
1425
- #: includes/options/fields/table/class-wpglobus-languages-table.php:105
1426
  msgid "File"
1427
  msgstr ""
1428
 
1429
- #: includes/options/fields/table/class-wpglobus-languages-table.php:110
1430
  msgid "Flag"
1431
  msgstr ""
1432
 
1433
- #: includes/options/fields/table/class-wpglobus-languages-table.php:120
1434
  msgid "Language name"
1435
  msgstr ""
1436
 
1437
- #: includes/options/fields/table/class-wpglobus-languages-table.php:125
1438
  msgid "English language name"
1439
  msgstr ""
1440
 
1441
- #: includes/options/fields/table/class-wpglobus-languages-table.php:151
1442
  msgid "No items found"
1443
  msgstr ""
1444
 
1445
- #: includes/options/fields/table/class-wpglobus-languages-table.php:164
1446
  msgid "Add new Language"
1447
  msgstr ""
1448
 
1449
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:164
1450
  msgid "No items of this type were found."
1451
  msgstr "Βρέθηκε.χωρίς στοιχεία αυτού του τύπου."
1452
 
1453
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:107
1454
  msgid "Select an item"
1455
  msgstr "Επιλέξτε ένα στοιχείο"
1456
 
1457
- #: includes/options/templates/compatibility-beta.php:15
1458
  msgid "Multilingual support of this add-on is currently in Beta stage."
1459
  msgstr ""
1460
 
1461
- #: includes/options/templates/compatibility-beta.php:17
1462
  msgid "We do not recommend using it on production sites."
1463
  msgstr ""
1464
 
1465
- #: includes/options/templates/compatibility-beta.php:23
1466
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1467
  msgstr ""
1468
 
1469
- #: includes/options/templates/compatibility.php:69
1470
  msgid "WordPress version"
1471
  msgstr ""
1472
 
1473
- #: includes/options/templates/compatibility.php:44
1474
  msgid "In the WordPress core"
1475
  msgstr ""
1476
 
1477
- #: includes/options/templates/compatibility.php:46
1478
  msgid "Core"
1479
  msgstr ""
1480
 
1481
- #: includes/options/templates/compatibility.php:52,
1482
- #: includes/options/templates/compatibility.php:79
1483
  msgid "Current version"
1484
  msgstr ""
1485
 
1486
- #: includes/options/templates/compatibility.php:53,
1487
- #: includes/options/templates/compatibility.php:81
1488
  msgid "Stage"
1489
  msgstr ""
1490
 
1491
- #: includes/options/templates/compatibility.php:54,
1492
- #: includes/options/templates/compatibility.php:82
1493
  msgid "Status"
1494
  msgstr "Κατάσταση"
1495
 
1496
- #: includes/options/templates/compatibility.php:60
1497
  msgid "Block editor"
1498
  msgstr ""
1499
 
1500
- #: includes/options/templates/compatibility.php:62
1501
  msgid "production"
1502
  msgstr ""
1503
 
1504
- #: includes/options/templates/compatibility.php:73
1505
  msgid "List of supported add-ons"
1506
  msgstr ""
1507
 
1508
- #: includes/options/templates/compatibility.php:78
1509
  msgid "Add-on"
1510
  msgstr ""
1511
 
1512
- #: includes/options/templates/compatibility.php:80
1513
  msgid "Supported minimum version"
1514
  msgstr ""
1515
 
1516
- #: includes/options/templates/compatibility.php:105
1517
  msgid "Not installed"
1518
  msgstr ""
1519
 
1520
- #: includes/options/templates/compatibility.php:102
1521
  msgid "Installed, inactive"
1522
  msgstr ""
1523
 
1524
- #: includes/options/templates/compatibility.php:100
1525
  msgid "Active"
1526
  msgstr "Ενεργό"
1527
 
1528
- #: includes/options/templates/customize-intro.php:35
1529
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1530
  msgstr ""
1531
 
1532
- #: includes/options/templates/customize-intro.php:39
1533
  msgid "However, some themes do not follow all WordPress standards strictly."
1534
  msgstr ""
1535
 
1536
- #: includes/options/templates/customize-intro.php:41
1537
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1538
  msgstr ""
1539
 
1540
- #: includes/options/templates/customize-intro.php:45
1541
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1542
  msgstr ""
1543
 
1544
- #: includes/options/templates/customize-intro.php:53
1545
  msgid ""
1546
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1547
  "With those themes, WPGlobus Customizer is switched off by default"
1548
  msgstr ""
1549
 
1550
- #: includes/options/templates/customize-intro.php:60
1551
  msgid "The currently active theme is"
1552
  msgstr ""
1553
 
1554
- #: includes/options/templates/customize-intro.php:66
1555
  msgid "In the current version, WPGlobus Customizer does not support"
1556
  msgstr ""
1557
 
1558
- #: includes/options/templates/customize-intro.php:70
1559
  msgid "translation of the navigation menus"
1560
  msgstr ""
1561
 
1562
- #: includes/options/templates/customize-intro.php:72
1563
  msgid "to translate, please go to"
1564
  msgstr ""
1565
 
1566
- #: includes/options/templates/customize-intro.php:81
1567
  msgid "Go to Customizer"
1568
  msgstr ""
1569
 
1570
- #: includes/options/templates/customize-intro.php:88
1571
  msgid "is undefined"
1572
  msgstr ""
1573
 
1574
- #: includes/options/templates/customize-intro.php:85
1575
  msgid "is set to"
1576
  msgstr ""
1577
 
1578
- #: includes/options/templates/customize-intro.php:94
1579
  msgid "by adding to the file wp-config.php"
1580
  msgstr ""
1581
 
1582
- #: includes/options/templates/customize-intro.php:96
1583
  msgid "now"
1584
  msgstr ""
1585
 
1586
- #: includes/options/wpglobus-options-header.php:25
1587
  msgid "We rely on your support!"
1588
  msgstr ""
1589
 
1590
- #: includes/options/wpglobus-options-header.php:28
1591
  msgid "Please consider a small donation to support the future development."
1592
  msgstr ""
1593
 
1594
- #: includes/options/wpglobus-options-header.php:32
1595
  msgid "Thank you!"
1596
  msgstr ""
1597
 
1598
- #: includes/options/wpglobus-options-header.php:55
1599
  msgid "WPGlobus Plus!"
1600
  msgstr ""
1601
 
1602
- #: includes/options/wpglobus-options-header.php:58
1603
  msgid ""
1604
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1605
  "separate publishing and more! "
1606
  msgstr ""
1607
 
1608
- #: includes/options/wpglobus-options-header.php:64
1609
  msgid "Get WPGlobus Plus now!"
1610
  msgstr ""
1611
 
1612
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1613
  msgid ""
1614
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1615
  "the current version."
1616
  msgstr ""
1617
 
1618
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1619
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1620
  msgstr ""
1621
 
1622
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1623
  msgid "WPGlobus warning: "
1624
  msgstr ""
1625
 
1626
- #: wpglobus.php:13
1627
  msgid "https://github.com/WPGlobus/WPGlobus"
1628
  msgstr "https://github.com/WPGlobus/WPGlobus"
1629
 
1630
- #: wpglobus.php:14
1631
  msgid ""
1632
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1633
  "widgets and even custom fields - in multiple languages!"
1634
  msgstr ""
1635
 
1636
- #: wpglobus.php:19
1637
  msgid "https://wpglobus.com/"
1638
  msgstr "https://wpglobus.com/"
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
 
 
 
 
 
19
  msgid "Guide"
20
  msgstr ""
21
 
 
 
22
  msgid "WPGlobus Help Desk"
23
  msgstr ""
24
 
 
 
 
 
 
 
 
25
  msgid "Add-ons"
26
  msgstr ""
27
 
 
28
  msgid "Quick Start"
29
  msgstr ""
30
 
 
 
31
  msgid "FAQ"
32
  msgstr ""
33
 
 
34
  msgid ""
35
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
36
  msgstr ""
37
 
 
38
  msgid ""
39
  "The mbstring extension is required for the full UTF-8 compatibility and "
40
  "better performance. Without it, some parts of WordPress and WPGlobus may "
42
  "administrator."
43
  msgstr ""
44
 
 
45
  msgid "Go to WPGlobus Settings"
46
  msgstr ""
47
 
 
48
  msgid "Easy as 1-2-3:"
49
  msgstr ""
50
 
 
51
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
52
  msgstr ""
53
 
 
54
  msgid ""
55
  "Enter the translations to the posts, pages, categories, tags and menus using "
56
  "a clean and simple interface."
57
  msgstr ""
58
 
 
59
  msgid ""
60
  "Switch languages at the front-end using a drop-down menu with language names "
61
  "and country flags."
62
  msgstr ""
63
 
 
64
  msgid "Links:"
65
  msgstr ""
66
 
 
67
  msgid "FAQs"
68
  msgstr ""
69
 
 
70
  msgid "Contact Us"
71
  msgstr ""
72
 
 
73
  msgid "Please give us 5 stars!"
74
  msgstr ""
75
 
 
76
  msgid "WPGlobus does not translate texts automatically!"
77
  msgstr ""
78
 
 
79
  msgid ""
80
  "There are many translation companies and individual translators who can help "
81
  "you write and proofread the texts."
82
  msgstr ""
83
 
 
84
  msgid ""
85
  "When you choose a translator, please look at their native language, country "
86
  "of residence, specialization and knowledge of WordPress."
87
  msgstr ""
88
 
89
  #. translators: %s are used to insert HTML link. Keep them in place.
 
90
  msgid ""
91
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
92
  "website. This is not an endorsement, just a courtesy. Please contact them "
93
  "directly and let us know how did it work for you!"
94
  msgstr ""
95
 
 
96
  msgid "Important notes:"
97
  msgstr ""
98
 
 
99
  msgid ""
100
  "WPGlobus only supports the localization URLs in the form of <code>example."
101
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
102
  "com</code> and language queries <code>example.com?lang=xx</code>."
103
  msgstr ""
104
 
 
105
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
106
  msgstr ""
107
 
 
108
  msgid ""
109
  "They might display some texts with no translation, or with all languages "
110
  "mixed together."
111
  msgstr ""
112
 
113
  #. translators: %s are used to insert HTML link. Keep them in place.
 
114
  msgid ""
115
  "Please contact the theme / plugin author. If they are unable to assist, "
116
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
117
  msgstr ""
118
 
 
119
  msgid "Language was set on your profile page"
120
  msgstr ""
121
 
 
122
  msgid "Add"
123
  msgstr ""
124
 
 
 
125
  msgid "Multilingual Everything!"
126
  msgstr ""
127
 
 
 
128
  msgid ""
129
  "WPGlobus is a family of WordPress plugins assisting you in making "
130
  "multilingual WordPress blogs and sites."
131
  msgstr ""
132
 
 
133
  msgid "Remove the WPGlobus settings (not recommended)"
134
  msgstr ""
135
 
 
136
  msgid "Clean-up Tool"
137
  msgstr ""
138
 
 
139
  msgid "Support"
140
  msgstr ""
141
 
 
142
  msgid ""
143
  "WARNING: this operation is non-reversible. It is strongly recommended that "
144
  "you backup your database before proceeding."
145
  msgstr ""
146
 
 
147
  msgid ""
148
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
149
  "By running it, you will remove ALL translations you have entered to your "
153
  "so on."
154
  msgstr ""
155
 
 
156
  msgid ""
157
  "Make sure that your active theme does not have any code related to WPGlobus. "
158
  "Such code could be added by you or by a 3rd party developer. If that code "
161
  msgstr ""
162
 
163
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
 
164
  msgid ""
165
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
166
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
167
  msgstr ""
168
 
 
169
  msgid "You are about to clean the content of the following database tables:"
170
  msgstr ""
171
 
 
172
  msgid "The operations log"
173
  msgstr ""
174
 
 
175
  msgid ""
176
  "We are going to write a detailed log of all the database changes performed. "
177
  "It should help in the case you need to restore something important. The log "
178
  "will be written to the file:"
179
  msgstr ""
180
 
 
181
  msgid ""
182
  "Uncheck if you do not want to write the operations log (we recommend to keep "
183
  "it checked)"
184
  msgstr ""
185
 
 
186
  msgid "You have been warned..."
187
  msgstr ""
188
 
 
189
  msgid "Please confirm by checking the box below:"
190
  msgstr ""
191
 
 
192
  msgid ""
193
  "I have read and understood everything written on this page. I am aware that "
194
  "by using this tool I may loose some content of my website. I have made a "
196
  "responsible for the results."
197
  msgstr ""
198
 
 
199
  msgid "YES, I CONFIRM"
200
  msgstr ""
201
 
 
202
  msgid "Process with the Clean-up"
203
  msgstr ""
204
 
 
 
 
 
205
  msgid "Default"
206
  msgstr ""
207
 
 
208
  msgid "Section"
209
  msgstr ""
210
 
 
211
  msgid "Show all sections"
212
  msgstr ""
213
 
 
214
  msgid "Save &amp; Reload"
215
  msgstr ""
216
 
 
 
 
217
  msgid "WPGlobus"
218
  msgstr "WPGlobus"
219
 
 
220
  msgid ""
221
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
222
  msgstr ""
223
 
 
224
  msgid "Fields Settings"
225
  msgstr ""
226
 
 
227
  msgid "WPGlobus Settings"
228
  msgstr ""
229
 
 
230
  msgid "Help"
231
  msgstr "Βοήθεια"
232
 
 
 
233
  msgid "Languages"
234
  msgstr ""
235
 
 
 
236
  msgid "Enabled Languages"
237
  msgstr ""
238
 
 
 
239
  msgid "These languages are currently enabled on your site."
240
  msgstr ""
241
 
 
 
242
  msgid "Choose a language you would like to enable."
243
  msgstr ""
244
 
 
245
  msgid "Press the [Save & Publish] button to confirm."
246
  msgstr ""
247
 
248
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
249
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
 
 
250
  msgid "or Add new Language %1$s here %2$s"
251
  msgstr ""
252
 
 
 
253
  msgid "Add Languages"
254
  msgstr ""
255
 
 
 
256
  msgid "Language Selector Mode"
257
  msgstr ""
258
 
 
 
259
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
260
  msgstr ""
261
 
 
 
262
  msgid "Full Name (English, Russian, Italian, etc.)"
263
  msgstr ""
264
 
 
 
265
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
266
  msgstr ""
267
 
 
 
268
  msgid "Flags only"
269
  msgstr ""
270
 
 
 
271
  msgid ""
272
  "Choose the way language name and country flag are shown in the drop-down menu"
273
  msgstr ""
274
 
 
275
  msgid "select navigation menu"
276
  msgstr ""
277
 
 
 
 
278
  msgid "Language Selector Menu"
279
  msgstr ""
280
 
 
 
 
281
  msgid "Choose the navigation menu where the language selector will be shown"
282
  msgstr ""
283
 
 
284
  msgid "No menus have been created yet. Create some."
285
  msgstr ""
286
 
 
 
287
  msgid "\"All Pages\" menus Language selector"
288
  msgstr ""
289
 
 
 
290
  msgid ""
291
  "Adds language selector to the menus that automatically list all existing "
292
  "pages (using `wp_list_pages`)"
293
  msgstr ""
294
 
 
 
295
  msgid "Custom CSS"
296
  msgstr ""
297
 
 
298
  msgid ""
299
  "Here you can enter the CSS rules to adjust the language selector menu for "
300
  "your theme. Look at the examples in the `style-samples.css` file."
301
  msgstr ""
302
 
 
303
  msgid "Post types"
304
  msgstr ""
305
 
 
306
  msgid "Uncheck to disable WPGlobus"
307
  msgstr ""
308
 
 
 
309
  msgid "Redirect"
310
  msgstr ""
311
 
 
 
312
  msgid "Choose the language automatically, based on:"
313
  msgstr ""
314
 
 
 
315
  msgid "Preferred language set in the browser"
316
  msgstr ""
317
 
 
 
318
  msgid ""
319
  "When a user comes to the site for the first time, try to find the best "
320
  "matching language version of the page."
321
  msgstr ""
322
 
 
 
 
 
323
  msgid "Custom JS Code"
324
  msgstr ""
325
 
 
 
326
  msgid "Title"
327
  msgstr ""
328
 
 
329
  msgid "(Paste your JS code here.)"
330
  msgstr ""
331
 
 
332
  msgid ""
333
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
334
  "version 4.9 or later."
335
  msgstr ""
336
 
 
337
  msgid "With your version of WordPress, please use the"
338
  msgstr ""
339
 
 
340
  msgid "WPGlobus Settings page"
341
  msgstr ""
342
 
 
343
  msgid "Label"
344
  msgstr ""
345
 
 
346
  msgid "Description"
347
  msgstr ""
348
 
 
349
  msgid ""
350
  "Here you can specify which fields should be considered multilingual by "
351
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
352
  msgstr ""
353
 
 
 
354
  msgid "Thank you for installing WPGlobus!"
355
  msgstr ""
356
 
 
 
357
  msgid "Read About WPGlobus"
358
  msgstr ""
359
 
 
360
  msgid ""
361
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
362
  msgstr ""
363
 
 
 
364
  msgid ""
365
  "Should you have any questions or comments, please do not hesitate to contact "
366
  "us."
367
  msgstr ""
368
 
 
 
369
  msgid "Sincerely Yours,"
370
  msgstr ""
371
 
 
 
 
372
  msgid "The WPGlobus Team"
373
  msgstr ""
374
 
375
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
376
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
377
  msgid ""
378
  "We would hate to see you go. If something goes wrong, do not uninstall "
379
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
380
  msgstr ""
381
 
 
 
382
  msgid ""
383
  "Please note that if you deactivate WPGlobus, your site will show all the "
384
  "languages together, mixed up. You will need to remove all translations, "
387
 
388
  #. translators: %s: link to the Clean-up Tool
389
  #. translators: %s: link to the Clean-up Tool.
 
 
390
  msgid ""
391
  "If there are just a few places, you should edit them manually. To "
392
  "automatically remove all translations at once, you can use the %s. WARNING: "
396
 
397
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
398
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
399
  msgid "%1$sClean-up Tool%2$s"
400
  msgstr ""
401
 
402
  #. translators: %s: name of current theme
 
403
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
404
  msgstr ""
405
 
406
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
407
  msgid "Please use %1$sWPGlobus options page%2$s instead."
408
  msgstr ""
409
 
 
410
  msgid "Expand/Shrink"
411
  msgstr ""
412
 
 
 
413
  msgid "WPGlobus News"
414
  msgstr ""
415
 
 
 
416
  msgid "Options updated"
417
  msgstr ""
418
 
 
419
  msgid "Please enter a language code!"
420
  msgstr ""
421
 
 
422
  msgid "Language code already exists!"
423
  msgstr ""
424
 
 
425
  msgid "Please specify the language flag!"
426
  msgstr ""
427
 
 
428
  msgid "Please enter the language name!"
429
  msgstr ""
430
 
 
431
  msgid "Please enter the language name in English!"
432
  msgstr ""
433
 
 
434
  msgid "Please enter the locale!"
435
  msgstr ""
436
 
 
437
  msgid "Add Language"
438
  msgstr ""
439
 
 
 
 
440
  msgid "Delete Language"
441
  msgstr ""
442
 
 
443
  msgid "Edit Language"
444
  msgstr ""
445
 
 
446
  msgid "Language Code"
447
  msgstr ""
448
 
 
449
  msgid ""
450
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
451
  msgstr ""
452
 
 
453
  msgid "Language flag"
454
  msgstr ""
455
 
 
456
  msgid "Name"
457
  msgstr ""
458
 
 
459
  msgid ""
460
  "The name of the language in its native alphabet. (Examples: English, Русский)"
461
  msgstr ""
462
 
 
463
  msgid "Name in English"
464
  msgstr ""
465
 
 
466
  msgid "The name of the language in English"
467
  msgstr ""
468
 
 
 
469
  msgid "Locale"
470
  msgstr ""
471
 
 
472
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
473
  msgstr ""
474
 
 
475
  msgid "Are you sure you want to delete?"
476
  msgstr ""
477
 
 
478
  msgid "Save Changes"
479
  msgstr ""
480
 
 
481
  msgid "Back to the WPGlobus Settings"
482
  msgstr ""
483
 
 
484
  msgid "Current Version"
485
  msgstr ""
486
 
 
487
  msgid "Get it now!"
488
  msgstr ""
489
 
 
490
  msgid "Premium add-on"
491
  msgstr ""
492
 
 
 
493
  msgid "Installed"
494
  msgstr ""
495
 
496
  #. translators: placeholders are for the HTML tags.
 
497
  msgid ""
498
  "If you have already purchased a WPGlobus premium extension, please read "
499
  "%1$sthe installation instructions here%2$s"
500
  msgstr ""
501
 
 
 
502
  msgid "Help Desk"
503
  msgstr ""
504
 
 
505
  msgid "Email not sent. Please fill in the entire form."
506
  msgstr ""
507
 
 
508
  msgid ""
509
  "Email not sent. Please verify that your name and email are entered correctly."
510
  msgstr ""
511
 
 
512
  msgid "Email sent."
513
  msgstr ""
514
 
 
515
  msgid "Thank you for using WPGlobus!"
516
  msgstr ""
517
 
 
518
  msgid "Our Support Team is here to answer your questions or concerns."
519
  msgstr ""
520
 
 
521
  msgid "To help us serve you better:"
522
  msgstr ""
523
 
 
524
  msgid ""
525
  "Please check if the problem persists if you switch to a standard WordPress "
526
  "theme."
527
  msgstr ""
528
 
 
529
  msgid ""
530
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
531
  msgstr ""
532
 
 
533
  msgid "Please fill in and submit the contact form:"
534
  msgstr ""
535
 
 
536
  msgid "Please make sure the email address is correct."
537
  msgstr ""
538
 
 
539
  msgid "Subject"
540
  msgstr "Θέμα"
541
 
 
542
  msgid "Short description of the problem"
543
  msgstr ""
544
 
 
545
  msgid "Detailed description"
546
  msgstr ""
547
 
 
548
  msgid "Technical Information"
549
  msgstr ""
550
 
 
551
  msgid "This information helps us to find the problem source"
552
  msgstr ""
553
 
 
554
  msgid ""
555
  "Alternatively, please email %s. Do not forget to copy and paste the "
556
  "technical information to your email message."
557
  msgstr ""
558
 
 
559
  msgid "WPGlobus Recommends:"
560
  msgstr ""
561
 
 
 
562
  msgid "WPGlobus for WooCommerce"
563
  msgstr ""
564
 
 
565
  msgid ""
566
  "Translate product titles and descriptions, product categories, tags and "
567
  "attributes."
568
  msgstr ""
569
 
 
570
  msgid "Get it now:"
571
  msgstr ""
572
 
 
573
  msgid "WooCommerce Multi-Currency"
574
  msgstr ""
575
 
 
576
  msgid "Accept multiple currencies in your online store!"
577
  msgstr ""
578
 
 
 
579
  msgid "Check it out:"
580
  msgstr ""
581
 
 
582
  msgid "To translate permalinks, please activate the module Slug."
583
  msgstr ""
584
 
 
585
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
586
  msgstr ""
587
 
 
 
588
  msgid "Save draft before using extra language."
589
  msgstr ""
590
 
 
591
  msgid "Builder"
592
  msgstr ""
593
 
 
594
  msgid "Сompatibility Settings"
595
  msgstr ""
596
 
597
  #. translators: ON/OFF status of WPGlobus on the edit pages.
598
  #. translators: ON/OFF status of WPGlobus on the edit pages.
 
 
599
  msgid "ON"
600
  msgstr ""
601
 
 
 
602
  msgid "Turn off"
603
  msgstr ""
604
 
 
 
605
  msgid "OFF"
606
  msgstr ""
607
 
 
 
608
  msgid "Turn on"
609
  msgstr ""
610
 
 
611
  msgid "Elementor"
612
  msgstr ""
613
 
 
614
  msgid "WPGlobus languages"
615
  msgstr ""
616
 
 
617
  msgid "current"
618
  msgstr ""
619
 
 
620
  msgid ""
621
  "WPGlobus provides multilingual support for Elementor only when the option "
622
  "%1$s%2$s%3$s is set to %4$s."
623
  msgstr ""
624
 
 
625
  msgid "Before switching the language, please save draft or publish."
626
  msgstr ""
627
 
628
  #. translators: Metabox title FOR language.
 
629
  msgctxt "filter__seo_meta_box_title"
630
  msgid "for"
631
  msgstr ""
632
 
 
633
  msgid "Page is being reloaded. Please wait..."
634
  msgstr ""
635
 
 
636
  msgid ""
637
  "Before switching the language, please save draft or publish, then reload "
638
  "page."
639
  msgstr ""
640
 
 
641
  msgid ""
642
  "WPGlobus provides multilingual support for Elementor only when the option "
643
  "`CSS Print Method` is set to `External File`."
644
  msgstr ""
645
 
 
646
  msgid "Open Elementor Settings page"
647
  msgstr ""
648
 
 
649
  msgid "WPGlobus widget"
650
  msgstr ""
651
 
 
652
  msgid "Add language switcher"
653
  msgstr ""
654
 
 
655
  msgid "Flags"
656
  msgstr ""
657
 
 
658
  msgid "List"
659
  msgstr ""
660
 
 
661
  msgid "List with flags"
662
  msgstr ""
663
 
 
664
  msgid "Select"
665
  msgstr ""
666
 
 
667
  msgid "Select with language code"
668
  msgstr ""
669
 
 
670
  msgid "Dropdown"
671
  msgstr ""
672
 
 
673
  msgid "Dropdown with flags"
674
  msgstr ""
675
 
 
676
  msgid "Selector type"
677
  msgstr ""
678
 
 
679
  msgid "You cannot disable the main language."
680
  msgstr ""
681
 
 
682
  msgid "Need a multilingual slug?"
683
  msgstr ""
684
 
 
685
  msgid "*) Available after the menu is saved."
686
  msgstr ""
687
 
 
688
  msgid "You must enable Pretty Permalinks to use WPGlobus."
689
  msgstr ""
690
 
 
691
  msgid ""
692
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
693
  "default option."
694
  msgstr ""
695
 
 
696
  msgid "Language Selector Menu Style"
697
  msgstr ""
698
 
 
 
 
699
  msgid "WPGlobus Plus"
700
  msgstr ""
701
 
 
702
  msgid "Drop-down languages menu or Flat (in one line)"
703
  msgstr ""
704
 
 
705
  msgid "Do not change"
706
  msgstr ""
707
 
 
708
  msgid "Drop-down (vertical)"
709
  msgstr ""
710
 
 
711
  msgid "Flat (horizontal)"
712
  msgstr ""
713
 
 
714
  msgid ""
715
  "If you see this message then your browser may not display the WPGlobus "
716
  "Settings panel properly. Please try another browser."
717
  msgstr ""
718
 
 
 
719
  msgid "Сompatibility"
720
  msgstr ""
721
 
722
  #. translators: placeholders for "strong" tags.
 
723
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
724
  msgstr ""
725
 
726
  #. translators: placeholders for "strong" tags.
 
727
  msgid ""
728
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
729
  "the language attributes: name, code, flag icon, etc."
730
  msgstr ""
731
 
 
732
  msgid "Important notes"
733
  msgstr "Σημαντικές σημειώσεις"
734
 
735
  #. translators: placeholders for "strong" tags.
 
736
  msgid "Version %1$s1.9.17%2$s "
737
  msgstr ""
738
 
739
  #. translators: placeholders for "strong" tags.
 
740
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
741
  msgstr ""
742
 
743
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
744
  msgid ""
745
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
746
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
747
  msgstr ""
748
 
749
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
750
  msgid ""
751
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
752
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
753
  msgstr ""
754
 
755
  #. translators: placeholders for "strong" tags.
 
756
  msgid "Version %1$s2.2.11%2$s "
757
  msgstr ""
758
 
 
759
  msgid "Starting from this version"
760
  msgstr ""
761
 
762
  #. translators: placeholders for "strong" tags.
 
763
  msgid ""
764
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
765
  "(CPT)."
766
  msgstr ""
767
 
768
  #. translators: placeholders for "strong" tags.
 
769
  msgid ""
770
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
771
  "the %1$s[%3$s]%2$s tab."
772
  msgstr ""
773
 
 
774
  msgid "Welcome!"
775
  msgstr ""
776
 
 
777
  msgid "Deactivating / Uninstalling"
778
  msgstr ""
779
 
 
780
  msgid "Uninstall"
781
  msgstr "Απεγκατάσταση"
782
 
 
783
  msgid "All add-ons"
784
  msgstr ""
785
 
 
786
  msgid "Mobile Menu"
787
  msgstr ""
788
 
 
789
  msgid "Language Widgets"
790
  msgstr ""
791
 
 
792
  msgid "We Recommend..."
793
  msgstr ""
794
 
 
795
  msgid ""
796
  "Our premium add-on, WPGlobus Plus, will add several features to your "
797
  "website, such as:"
798
  msgstr ""
799
 
 
800
  msgid ""
801
  "- Ability to write a post in one language and immediately publish it, not "
802
  "waiting for the translation to other languages;"
803
  msgstr ""
804
 
 
805
  msgid "- Set different URLs for each translation;"
806
  msgstr ""
807
 
 
808
  msgid ""
809
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
810
  "for each translation;"
811
  msgstr ""
812
 
 
813
  msgid "- and more..."
814
  msgstr ""
815
 
 
 
 
816
  msgid "Click here to download"
817
  msgstr ""
818
 
 
819
  msgid ""
820
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
821
  "translate your blog posts and pages to many languages."
822
  msgstr ""
823
 
 
824
  msgid "The next step is to translate your WooCommerce-based store!"
825
  msgstr ""
826
 
 
827
  msgid ""
828
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
829
  "translate product titles and descriptions, categories, tags and attributes."
830
  msgstr ""
831
 
 
832
  msgid "Multi-currency"
833
  msgstr ""
834
 
 
835
  msgid ""
836
  "Your WooCommerce-powered store is set to show prices and accept payments in "
837
  "a single currency only."
838
  msgstr ""
839
 
 
840
  msgid ""
841
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
842
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
844
  "positioning for global growth!"
845
  msgstr ""
846
 
 
847
  msgid ""
848
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
849
  "re-calculating prices on-the-fly."
850
  msgstr ""
851
 
 
852
  msgid "WPGlobus Premium Add-ons"
853
  msgstr ""
854
 
 
855
  msgid ""
856
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
857
  "you will be able to:"
858
  msgstr ""
859
 
 
860
  msgid ""
861
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
862
  "моя-страница and so on);"
863
  msgstr ""
864
 
 
865
  msgid ""
866
  "Postpone translation to some languages and <strong>publish only the "
867
  "translated texts</strong>;"
868
  msgstr ""
869
 
 
870
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
871
  msgstr ""
872
 
 
873
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
874
  msgstr ""
875
 
 
876
  msgid ""
877
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
878
  "strong>;"
879
  msgstr ""
880
 
 
881
  msgid "...and more."
882
  msgstr ""
883
 
 
884
  msgid "Click here to visit the WPGlobus Store"
885
  msgstr ""
886
 
 
887
  msgid "Select a language"
888
  msgstr ""
889
 
890
  #. translators: %3$s placeholder for the icon (actual picture).
 
891
  msgid ""
892
  "Place the %1$smain language%2$s of your site at the top of the list by "
893
  "dragging the %3$s icons."
894
  msgstr ""
895
 
896
  #. translators: placeholders for the "strong" HTML tags.
 
897
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
898
  msgstr ""
899
 
900
  #. translators: placeholders for the "strong" HTML tags.
 
901
  msgid "%1$sAdd%2$s more languages using the section below."
902
  msgstr ""
903
 
 
904
  msgid "When done, click the [Save Changes] button."
905
  msgstr ""
906
 
907
  #. translators: %s - placeholder for the "Save Changes" button text.
 
908
  msgid "Press the %s button to confirm."
909
  msgstr ""
910
 
911
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
 
912
  msgid "-- none --"
913
  msgstr ""
914
 
 
915
  msgid "All menus"
916
  msgstr ""
917
 
 
918
  msgid "Instructions:"
919
  msgstr ""
920
 
 
921
  msgid "(Found in some themes)"
922
  msgstr ""
923
 
 
924
  msgid "Enable"
925
  msgstr ""
926
 
 
927
  msgid "Languages table"
928
  msgstr ""
929
 
 
930
  msgid "Use this table to add, edit or delete languages."
931
  msgstr ""
932
 
 
933
  msgid "NOTE: you cannot remove the main language."
934
  msgstr ""
935
 
 
936
  msgid "WPGlobus is enabled on these Post Types"
937
  msgstr ""
938
 
 
939
  msgid "Uncheck to disable"
940
  msgstr ""
941
 
 
942
  msgid ""
943
  "Please note that there are post types, which status is managed by other "
944
  "plugins and cannot be changed here."
945
  msgstr ""
946
 
 
947
  msgid "Post Types"
948
  msgstr ""
949
 
 
950
  msgid ""
951
  "You should put here only the code provided by WPGlobus Support. Do not write "
952
  "anything else in the sections below as it might break the functionality of "
953
  "your website!"
954
  msgstr ""
955
 
 
956
  msgid "Custom Code"
957
  msgstr "Κωδικός Πελάτη"
958
 
 
 
 
959
  msgid "Enabled"
960
  msgstr "Ενεργοποιημένο"
961
 
 
962
  msgid "Builders support"
963
  msgstr ""
964
 
 
965
  msgid "Builder mode is enabled on these Post Types"
966
  msgstr ""
967
 
 
968
  msgid "Old fashioned language switcher"
969
  msgstr ""
970
 
 
971
  msgid "Block Editor"
972
  msgstr ""
973
 
 
974
  msgid "Block Editor Options"
975
  msgstr ""
976
 
 
977
  msgid ""
978
  "With the current settings, you will see the following lines in the section "
979
  "HEAD of your site pages"
980
  msgstr ""
981
 
 
982
  msgid "(example for two languages)"
983
  msgstr ""
984
 
 
985
  msgid ""
986
  "Tell search engines about localized versions of your pages using the "
987
  "hreflang tag"
988
  msgstr ""
989
 
 
990
  msgid "Output the hreflang tag as"
991
  msgstr ""
992
 
 
993
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
994
  msgstr ""
995
 
 
996
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
997
  msgstr ""
998
 
 
999
  msgid "Language code only (en, ru, etc.)"
1000
  msgstr ""
1001
 
 
1002
  msgid "Use the code `x-default` for the main language"
1003
  msgstr ""
1004
 
 
1005
  msgid "Multilingual SEO"
1006
  msgstr ""
1007
 
 
1008
  msgid "Multilingual SEO Options"
1009
  msgstr ""
1010
 
 
1011
  msgid ""
1012
  "With WPGlobus, you can get translations for posts and pages using REST API."
1013
  msgstr ""
1014
 
 
 
 
 
1015
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1016
  msgstr ""
1017
 
 
1018
  msgid ""
1019
  "For demonstration, you can try the first post that WordPress creates at the "
1020
  "initial installation."
1021
  msgstr ""
1022
 
 
1023
  msgid ""
1024
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1025
  "information."
1026
  msgstr ""
1027
 
 
1028
  msgid ""
1029
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1030
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1031
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1032
  msgstr ""
1033
 
 
1034
  msgid "Description:"
1035
  msgstr ""
1036
 
 
 
1037
  msgid "REST API"
1038
  msgstr ""
1039
 
 
1040
  msgid "Translate strings"
1041
  msgstr ""
1042
 
 
1043
  msgid "item"
1044
  msgstr ""
1045
 
 
1046
  msgid "items"
1047
  msgstr ""
1048
 
 
1049
  msgid "Code"
1050
  msgstr ""
1051
 
 
1052
  msgid "Edit"
1053
  msgstr ""
1054
 
 
1055
  msgid "Delete"
1056
  msgstr ""
1057
 
 
1058
  msgid "File"
1059
  msgstr ""
1060
 
 
1061
  msgid "Flag"
1062
  msgstr ""
1063
 
 
1064
  msgid "Language name"
1065
  msgstr ""
1066
 
 
1067
  msgid "English language name"
1068
  msgstr ""
1069
 
 
1070
  msgid "No items found"
1071
  msgstr ""
1072
 
 
1073
  msgid "Add new Language"
1074
  msgstr ""
1075
 
 
1076
  msgid "No items of this type were found."
1077
  msgstr "Βρέθηκε.χωρίς στοιχεία αυτού του τύπου."
1078
 
 
1079
  msgid "Select an item"
1080
  msgstr "Επιλέξτε ένα στοιχείο"
1081
 
 
1082
  msgid "Multilingual support of this add-on is currently in Beta stage."
1083
  msgstr ""
1084
 
 
1085
  msgid "We do not recommend using it on production sites."
1086
  msgstr ""
1087
 
 
1088
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1089
  msgstr ""
1090
 
 
1091
  msgid "WordPress version"
1092
  msgstr ""
1093
 
 
1094
  msgid "In the WordPress core"
1095
  msgstr ""
1096
 
 
1097
  msgid "Core"
1098
  msgstr ""
1099
 
 
 
1100
  msgid "Current version"
1101
  msgstr ""
1102
 
 
 
1103
  msgid "Stage"
1104
  msgstr ""
1105
 
 
 
1106
  msgid "Status"
1107
  msgstr "Κατάσταση"
1108
 
 
1109
  msgid "Block editor"
1110
  msgstr ""
1111
 
 
1112
  msgid "production"
1113
  msgstr ""
1114
 
 
1115
  msgid "List of supported add-ons"
1116
  msgstr ""
1117
 
 
1118
  msgid "Add-on"
1119
  msgstr ""
1120
 
 
1121
  msgid "Supported minimum version"
1122
  msgstr ""
1123
 
 
1124
  msgid "Not installed"
1125
  msgstr ""
1126
 
 
1127
  msgid "Installed, inactive"
1128
  msgstr ""
1129
 
 
1130
  msgid "Active"
1131
  msgstr "Ενεργό"
1132
 
 
1133
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1134
  msgstr ""
1135
 
 
1136
  msgid "However, some themes do not follow all WordPress standards strictly."
1137
  msgstr ""
1138
 
 
1139
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1140
  msgstr ""
1141
 
 
1142
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1143
  msgstr ""
1144
 
 
1145
  msgid ""
1146
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1147
  "With those themes, WPGlobus Customizer is switched off by default"
1148
  msgstr ""
1149
 
 
1150
  msgid "The currently active theme is"
1151
  msgstr ""
1152
 
 
1153
  msgid "In the current version, WPGlobus Customizer does not support"
1154
  msgstr ""
1155
 
 
1156
  msgid "translation of the navigation menus"
1157
  msgstr ""
1158
 
 
1159
  msgid "to translate, please go to"
1160
  msgstr ""
1161
 
 
1162
  msgid "Go to Customizer"
1163
  msgstr ""
1164
 
 
1165
  msgid "is undefined"
1166
  msgstr ""
1167
 
 
1168
  msgid "is set to"
1169
  msgstr ""
1170
 
 
1171
  msgid "by adding to the file wp-config.php"
1172
  msgstr ""
1173
 
 
1174
  msgid "now"
1175
  msgstr ""
1176
 
 
1177
  msgid "We rely on your support!"
1178
  msgstr ""
1179
 
 
1180
  msgid "Please consider a small donation to support the future development."
1181
  msgstr ""
1182
 
 
1183
  msgid "Thank you!"
1184
  msgstr ""
1185
 
 
1186
  msgid "WPGlobus Plus!"
1187
  msgstr ""
1188
 
 
1189
  msgid ""
1190
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1191
  "separate publishing and more! "
1192
  msgstr ""
1193
 
 
1194
  msgid "Get WPGlobus Plus now!"
1195
  msgstr ""
1196
 
 
1197
  msgid ""
1198
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1199
  "the current version."
1200
  msgstr ""
1201
 
 
1202
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1203
  msgstr ""
1204
 
 
1205
  msgid "WPGlobus warning: "
1206
  msgstr ""
1207
 
 
1208
  msgid "https://github.com/WPGlobus/WPGlobus"
1209
  msgstr "https://github.com/WPGlobus/WPGlobus"
1210
 
 
1211
  msgid ""
1212
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1213
  "widgets and even custom fields - in multiple languages!"
1214
  msgstr ""
1215
 
 
1216
  msgid "https://wpglobus.com/"
1217
  msgstr "https://wpglobus.com/"
languages/wpglobus-en_AU.po CHANGED
@@ -17,45 +17,26 @@ msgstr ""
17
  "Content-Transfer-Encoding: 8bit\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
 
20
- #: includes/admin/central/class-wpglobus-admin-central.php:122,
21
- #: includes/admin/class-wpglobus-about.php:42,
22
- #: includes/admin/class-wpglobus-about.php:117,
23
- #: includes/admin/class-wpglobus-clean.php:600,
24
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
25
  msgid "Guide"
26
  msgstr "Guide"
27
 
28
- #: includes/admin/central/class-wpglobus-admin-central.php:142,
29
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
30
  msgid "WPGlobus Help Desk"
31
  msgstr "WPGlobus Help Desk"
32
 
33
- #: includes/admin/central/class-wpglobus-admin-central.php:157,
34
- #: includes/admin/class-wpglobus-about.php:36,
35
- #: includes/admin/class-wpglobus-admin-menu.php:22,
36
- #: includes/admin/class-wpglobus-clean.php:606,
37
- #: includes/admin/class-wpglobus-customize-options.php:1293,
38
- #: includes/admin/class-wpglobus-customize-options.php:1261,
39
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
40
  msgid "Add-ons"
41
  msgstr "Add-ons"
42
 
43
- #: includes/admin/class-wpglobus-about.php:26
44
  msgid "Quick Start"
45
  msgstr "Quick Start"
46
 
47
- #: includes/admin/class-wpglobus-about.php:48,
48
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
49
  msgid "FAQ"
50
  msgstr "FAQ"
51
 
52
- #: includes/admin/class-wpglobus-about.php:59
53
  msgid ""
54
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
55
  msgstr ""
56
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
57
 
58
- #: includes/admin/class-wpglobus-about.php:60
59
  msgid ""
60
  "The mbstring extension is required for the full UTF-8 compatibility and "
61
  "better performance. Without it, some parts of WordPress and WPGlobus may "
@@ -67,19 +48,15 @@ msgstr ""
67
  "function incorrectly. Please contact your hosting company or systems "
68
  "administrator."
69
 
70
- #: includes/admin/class-wpglobus-about.php:87
71
  msgid "Go to WPGlobus Settings"
72
  msgstr "Go to WPGlobus Settings"
73
 
74
- #: includes/admin/class-wpglobus-about.php:98
75
  msgid "Easy as 1-2-3:"
76
  msgstr "Easy as 1-2-3:"
77
 
78
- #: includes/admin/class-wpglobus-about.php:101
79
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
80
  msgstr "Go to WPGlobus admin menu and choose the countries / languages;"
81
 
82
- #: includes/admin/class-wpglobus-about.php:102
83
  msgid ""
84
  "Enter the translations to the posts, pages, categories, tags and menus using "
85
  "a clean and simple interface."
@@ -87,7 +64,6 @@ msgstr ""
87
  "Enter the translations to the posts, pages, categories, tags and menus using "
88
  "a clean and simple interface."
89
 
90
- #: includes/admin/class-wpglobus-about.php:103
91
  msgid ""
92
  "Switch languages at the front-end using a drop-down menu with language names "
93
  "and country flags."
@@ -95,27 +71,21 @@ msgstr ""
95
  "Switch languages at the front-end using a drop-down menu with language names "
96
  "and country flags."
97
 
98
- #: includes/admin/class-wpglobus-about.php:111
99
  msgid "Links:"
100
  msgstr "Links:"
101
 
102
- #: includes/admin/class-wpglobus-about.php:119
103
  msgid "FAQs"
104
  msgstr "FAQs"
105
 
106
- #: includes/admin/class-wpglobus-about.php:121
107
  msgid "Contact Us"
108
  msgstr "Contact Us"
109
 
110
- #: includes/admin/class-wpglobus-about.php:123
111
  msgid "Please give us 5 stars!"
112
  msgstr "Please give us 5 stars!"
113
 
114
- #: includes/admin/class-wpglobus-about.php:133
115
  msgid "WPGlobus does not translate texts automatically!"
116
  msgstr "WPGlobus does not translate texts automatically!"
117
 
118
- #: includes/admin/class-wpglobus-about.php:136
119
  msgid ""
120
  "There are many translation companies and individual translators who can help "
121
  "you write and proofread the texts."
@@ -123,7 +93,6 @@ msgstr ""
123
  "There are many translation companies and individual translators who can help "
124
  "you write and proofread the texts."
125
 
126
- #: includes/admin/class-wpglobus-about.php:137
127
  msgid ""
128
  "When you choose a translator, please look at their native language, country "
129
  "of residence, specialization and knowledge of WordPress."
@@ -132,7 +101,6 @@ msgstr ""
132
  "of residence, specialization and knowledge of WordPress."
133
 
134
  #. translators: %s are used to insert HTML link. Keep them in place.
135
- #: includes/admin/class-wpglobus-about.php:143
136
  msgid ""
137
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
138
  "website. This is not an endorsement, just a courtesy. Please contact them "
@@ -142,11 +110,9 @@ msgstr ""
142
  "website. This is not an endorsement, just a courtesy. Please contact them "
143
  "directly and let us know how did it work for you!"
144
 
145
- #: includes/admin/class-wpglobus-about.php:154
146
  msgid "Important notes:"
147
  msgstr "Important notes:"
148
 
149
- #: includes/admin/class-wpglobus-about.php:159
150
  msgid ""
151
  "WPGlobus only supports the localization URLs in the form of <code>example."
152
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
@@ -156,11 +122,9 @@ msgstr ""
156
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
157
  "com</code> and language queries <code>example.com?lang=xx</code>."
158
 
159
- #: includes/admin/class-wpglobus-about.php:162
160
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
161
  msgstr "Some themes and plugins are <strong>not multilingual-ready</strong>."
162
 
163
- #: includes/admin/class-wpglobus-about.php:163
164
  msgid ""
165
  "They might display some texts with no translation, or with all languages "
166
  "mixed together."
@@ -169,7 +133,6 @@ msgstr ""
169
  "mixed together."
170
 
171
  #. translators: %s are used to insert HTML link. Keep them in place.
172
- #: includes/admin/class-wpglobus-about.php:167
173
  msgid ""
174
  "Please contact the theme / plugin author. If they are unable to assist, "
175
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
@@ -177,21 +140,15 @@ msgstr ""
177
  "Please contact the theme / plugin author. If they are unable to assist, "
178
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
179
 
180
- #: includes/admin/class-wpglobus-admin-bar-menu.php:124
181
  msgid "Language was set on your profile page"
182
  msgstr ""
183
 
184
- #: includes/admin/class-wpglobus-admin-bar-menu.php:194
185
  msgid "Add"
186
  msgstr "Add"
187
 
188
- #: includes/admin/class-wpglobus-admin-page.php:32,
189
- #: includes/admin/class-wpglobus-clean.php:585
190
  msgid "Multilingual Everything!"
191
  msgstr "Multilingual Everything!"
192
 
193
- #: includes/admin/class-wpglobus-admin-page.php:34,
194
- #: includes/admin/class-wpglobus-clean.php:588
195
  msgid ""
196
  "WPGlobus is a family of WordPress plugins assisting you in making "
197
  "multilingual WordPress blogs and sites."
@@ -199,19 +156,15 @@ msgstr ""
199
  "WPGlobus is a family of WordPress plugins assisting you in making "
200
  "multilingual WordPress blogs and sites."
201
 
202
- #: includes/admin/class-wpglobus-clean.php:232
203
  msgid "Remove the WPGlobus settings (not recommended)"
204
  msgstr "Remove the WPGlobus settings (not recommended)"
205
 
206
- #: includes/admin/class-wpglobus-clean.php:595
207
  msgid "Clean-up Tool"
208
  msgstr "Clean-up Tool"
209
 
210
- #: includes/admin/class-wpglobus-clean.php:609
211
  msgid "Support"
212
  msgstr "Support"
213
 
214
- #: includes/admin/class-wpglobus-clean.php:614
215
  msgid ""
216
  "WARNING: this operation is non-reversible. It is strongly recommended that "
217
  "you backup your database before proceeding."
@@ -219,7 +172,6 @@ msgstr ""
219
  "WARNING: this operation is non-reversible. It is strongly recommended that "
220
  "you backup your database before proceeding."
221
 
222
- #: includes/admin/class-wpglobus-clean.php:619
223
  msgid ""
224
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
225
  "By running it, you will remove ALL translations you have entered to your "
@@ -235,7 +187,6 @@ msgstr ""
235
  "might end up with empty titles, no content, no excerpts, blank comments and "
236
  "so on."
237
 
238
- #: includes/admin/class-wpglobus-clean.php:622
239
  msgid ""
240
  "Make sure that your active theme does not have any code related to WPGlobus. "
241
  "Such code could be added by you or by a 3rd party developer. If that code "
@@ -244,21 +195,17 @@ msgid ""
244
  msgstr ""
245
 
246
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
247
- #: includes/admin/class-wpglobus-clean.php:630
248
  msgid ""
249
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
250
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
251
  msgstr ""
252
 
253
- #: includes/admin/class-wpglobus-clean.php:641
254
  msgid "You are about to clean the content of the following database tables:"
255
  msgstr "You are about to clean the content of the following database tables:"
256
 
257
- #: includes/admin/class-wpglobus-clean.php:649
258
  msgid "The operations log"
259
  msgstr "The operations log"
260
 
261
- #: includes/admin/class-wpglobus-clean.php:652
262
  msgid ""
263
  "We are going to write a detailed log of all the database changes performed. "
264
  "It should help in the case you need to restore something important. The log "
@@ -268,7 +215,6 @@ msgstr ""
268
  "It should help in the case you need to restore something important. The log "
269
  "will be written to the file:"
270
 
271
- #: includes/admin/class-wpglobus-clean.php:662
272
  msgid ""
273
  "Uncheck if you do not want to write the operations log (we recommend to keep "
274
  "it checked)"
@@ -276,15 +222,12 @@ msgstr ""
276
  "Uncheck if you do not want to write the operations log (we recommend to keep "
277
  "it checked)"
278
 
279
- #: includes/admin/class-wpglobus-clean.php:667
280
  msgid "You have been warned..."
281
  msgstr "You have been warned..."
282
 
283
- #: includes/admin/class-wpglobus-clean.php:669
284
  msgid "Please confirm by checking the box below:"
285
  msgstr "Please confirm by checking the box below:"
286
 
287
- #: includes/admin/class-wpglobus-clean.php:671
288
  msgid ""
289
  "I have read and understood everything written on this page. I am aware that "
290
  "by using this tool I may loose some content of my website. I have made a "
@@ -296,152 +239,99 @@ msgstr ""
296
  "database backup and know how to restore it if necessary. I am fully "
297
  "responsible for the results."
298
 
299
- #: includes/admin/class-wpglobus-clean.php:674
300
  msgid "YES, I CONFIRM"
301
  msgstr "YES, I CONFIRM"
302
 
303
- #: includes/admin/class-wpglobus-clean.php:678
304
  msgid "Process with the Clean-up"
305
  msgstr "Process with the Clean-up"
306
 
307
- #: includes/admin/class-wpglobus-customize-options.php:73,
308
- #: includes/admin/class-wpglobus-customize-options.php:100,
309
- #: includes/admin/class-wpglobus-customize-options.php:145,
310
- #: includes/admin/class-wpglobus-customize-options.php:183
311
  msgid "Default"
312
  msgstr "Default"
313
 
314
- #: includes/admin/class-wpglobus-customize-options.php:264
315
  msgid "Section"
316
  msgstr "Section"
317
 
318
- #: includes/admin/class-wpglobus-customize-options.php:277
319
  msgid "Show all sections"
320
  msgstr "Show all sections"
321
 
322
- #: includes/admin/class-wpglobus-customize-options.php:279
323
  msgid "Save &amp; Reload"
324
  msgstr "Save &amp; Reload"
325
 
326
- #: includes/admin/class-wpglobus-customize-options.php:553,
327
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:585,
328
- #: includes/class-wpglobus.php:1284, wpglobus.php:12, wpglobus.php:18
329
  msgid "WPGlobus"
330
  msgstr "WPGlobus"
331
 
332
- #: includes/admin/class-wpglobus-customize-options.php:604
333
  msgid ""
334
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
335
  msgstr ""
336
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
337
 
338
- #: includes/admin/class-wpglobus-customize-options.php:610
339
  msgid "Fields Settings"
340
  msgstr "Fields Settings"
341
 
342
- #: includes/admin/class-wpglobus-customize-options.php:655
343
  msgid "WPGlobus Settings"
344
  msgstr "WPGlobus Settings"
345
 
346
- #: includes/admin/class-wpglobus-customize-options.php:723
347
  msgid "Help"
348
  msgstr "Help"
349
 
350
- #: includes/admin/class-wpglobus-customize-options.php:745,
351
- #: includes/options/class-wpglobus-options.php:1176
352
  msgid "Languages"
353
  msgstr "Languages"
354
 
355
- #: includes/admin/class-wpglobus-customize-options.php:765,
356
- #: includes/options/class-wpglobus-options.php:1189
357
  msgid "Enabled Languages"
358
  msgstr "Enabled Languages"
359
 
360
- #: includes/admin/class-wpglobus-customize-options.php:767,
361
- #: includes/options/class-wpglobus-options.php:1190
362
  msgid "These languages are currently enabled on your site."
363
  msgstr "These languages are currently enabled on your site."
364
 
365
- #: includes/admin/class-wpglobus-customize-options.php:795,
366
- #: includes/options/class-wpglobus-options.php:1148
367
  msgid "Choose a language you would like to enable."
368
  msgstr ""
369
 
370
- #: includes/admin/class-wpglobus-customize-options.php:797
371
  msgid "Press the [Save & Publish] button to confirm."
372
  msgstr ""
373
 
374
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
375
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
376
- #: includes/admin/class-wpglobus-customize-options.php:801,
377
- #: includes/options/class-wpglobus-options.php:1154
378
  msgid "or Add new Language %1$s here %2$s"
379
  msgstr "or Add new Language %1$s here %2$s"
380
 
381
- #: includes/admin/class-wpglobus-customize-options.php:813,
382
- #: includes/options/class-wpglobus-options.php:1203
383
  msgid "Add Languages"
384
  msgstr "Add Languages"
385
 
386
- #: includes/admin/class-wpglobus-customize-options.php:833,
387
- #: includes/options/class-wpglobus-options.php:1211
388
  msgid "Language Selector Mode"
389
  msgstr "Language Selector Mode"
390
 
391
- #: includes/admin/class-wpglobus-customize-options.php:838,
392
- #: includes/options/class-wpglobus-options.php:1214
393
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
394
  msgstr "Two-letter Code with flag (en, ru, it, etc.)"
395
 
396
- #: includes/admin/class-wpglobus-customize-options.php:839,
397
- #: includes/options/class-wpglobus-options.php:1215
398
  msgid "Full Name (English, Russian, Italian, etc.)"
399
  msgstr "Full Name (English, Russian, Italian, etc.)"
400
 
401
- #: includes/admin/class-wpglobus-customize-options.php:841,
402
- #: includes/options/class-wpglobus-options.php:1216
403
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
404
  msgstr "Full Name with flag (English, Russian, Italian, etc.)"
405
 
406
- #: includes/admin/class-wpglobus-customize-options.php:842,
407
- #: includes/options/class-wpglobus-options.php:1217
408
  msgid "Flags only"
409
  msgstr "Flags only"
410
 
411
- #: includes/admin/class-wpglobus-customize-options.php:844,
412
- #: includes/options/class-wpglobus-options.php:1212
413
  msgid ""
414
  "Choose the way language name and country flag are shown in the drop-down menu"
415
  msgstr ""
416
  "Choose the way language name and country flag are shown in the drop-down menu"
417
 
418
- #: includes/admin/class-wpglobus-customize-options.php:879
419
  msgid "select navigation menu"
420
  msgstr ""
421
 
422
- #: includes/admin/class-wpglobus-customize-options.php:915,
423
- #: includes/admin/class-wpglobus-customize-options.php:888,
424
- #: includes/options/class-wpglobus-options.php:1230
425
  msgid "Language Selector Menu"
426
  msgstr "Language Selector Menu"
427
 
428
- #: includes/admin/class-wpglobus-customize-options.php:920,
429
- #: includes/admin/class-wpglobus-customize-options.php:899,
430
- #: includes/options/class-wpglobus-options.php:1231
431
  msgid "Choose the navigation menu where the language selector will be shown"
432
  msgstr "Choose the navigation menu where the language selector will be shown"
433
 
434
- #: includes/admin/class-wpglobus-customize-options.php:898
435
  msgid "No menus have been created yet. Create some."
436
  msgstr "No menus have been created yet. Create some."
437
 
438
- #: includes/admin/class-wpglobus-customize-options.php:940,
439
- #: includes/options/class-wpglobus-options.php:1241
440
  msgid "\"All Pages\" menus Language selector"
441
  msgstr "\"All Pages\" menus Language selector"
442
 
443
- #: includes/admin/class-wpglobus-customize-options.php:943,
444
- #: includes/options/class-wpglobus-options.php:1243
445
  msgid ""
446
  "Adds language selector to the menus that automatically list all existing "
447
  "pages (using `wp_list_pages`)"
@@ -449,12 +339,9 @@ msgstr ""
449
  "Adds language selector to the menus that automatically list all existing "
450
  "pages (using `wp_list_pages`)"
451
 
452
- #: includes/admin/class-wpglobus-customize-options.php:960,
453
- #: includes/options/class-wpglobus-options.php:1356
454
  msgid "Custom CSS"
455
  msgstr "Custom CSS"
456
 
457
- #: includes/admin/class-wpglobus-customize-options.php:964
458
  msgid ""
459
  "Here you can enter the CSS rules to adjust the language selector menu for "
460
  "your theme. Look at the examples in the `style-samples.css` file."
@@ -462,31 +349,21 @@ msgstr ""
462
  "Here you can enter the CSS rules to adjust the language selector menu for "
463
  "your theme. Look at the examples in the `style-samples.css` file."
464
 
465
- #: includes/admin/class-wpglobus-customize-options.php:983
466
  msgid "Post types"
467
  msgstr "Post types"
468
 
469
- #: includes/admin/class-wpglobus-customize-options.php:1091
470
  msgid "Uncheck to disable WPGlobus"
471
  msgstr "Uncheck to disable WPGlobus"
472
 
473
- #: includes/admin/class-wpglobus-customize-options.php:1125,
474
- #: includes/options/class-wpglobus-options.php:1424
475
  msgid "Redirect"
476
  msgstr "Redirect"
477
 
478
- #: includes/admin/class-wpglobus-customize-options.php:1150,
479
- #: includes/options/class-wpglobus-options.php:1419
480
  msgid "Choose the language automatically, based on:"
481
  msgstr "Choose the language automatically, based on:"
482
 
483
- #: includes/admin/class-wpglobus-customize-options.php:1152,
484
- #: includes/options/class-wpglobus-options.php:1409
485
  msgid "Preferred language set in the browser"
486
  msgstr "Preferred language set in the browser"
487
 
488
- #: includes/admin/class-wpglobus-customize-options.php:1153,
489
- #: includes/options/class-wpglobus-options.php:1396
490
  msgid ""
491
  "When a user comes to the site for the first time, try to find the best "
492
  "matching language version of the page."
@@ -494,45 +371,32 @@ msgstr ""
494
  "When a user comes to the site for the first time, try to find the best "
495
  "matching language version of the page."
496
 
497
- #: includes/admin/class-wpglobus-customize-options.php:1214,
498
- #: includes/admin/class-wpglobus-customize-options.php:1234,
499
- #: includes/admin/class-wpglobus-customize-options.php:1192,
500
- #: includes/options/class-wpglobus-options.php:1368
501
  msgid "Custom JS Code"
502
  msgstr "Custom JS Code"
503
 
504
- #: includes/admin/class-wpglobus-customize-options.php:1232,
505
- #: includes/admin/class-wpglobus-customize-options.php:1276
506
  msgid "Title"
507
  msgstr "Title"
508
 
509
- #: includes/admin/class-wpglobus-customize-options.php:1235
510
  msgid "(Paste your JS code here.)"
511
  msgstr "(Paste your JS code here.)"
512
 
513
- #: includes/admin/class-wpglobus-customize-options.php:1184
514
  msgid ""
515
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
516
  "version 4.9 or later."
517
  msgstr ""
518
 
519
- #: includes/admin/class-wpglobus-customize-options.php:1186
520
  msgid "With your version of WordPress, please use the"
521
  msgstr ""
522
 
523
- #: includes/admin/class-wpglobus-customize-options.php:1188
524
  msgid "WPGlobus Settings page"
525
  msgstr ""
526
 
527
- #: includes/admin/class-wpglobus-customize-options.php:1277
528
  msgid "Label"
529
  msgstr "Label"
530
 
531
- #: includes/admin/class-wpglobus-customize-options.php:1281
532
  msgid "Description"
533
  msgstr "Description"
534
 
535
- #: includes/admin/class-wpglobus-customize-options.php:1345
536
  msgid ""
537
  "Here you can specify which fields should be considered multilingual by "
538
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
@@ -540,24 +404,17 @@ msgstr ""
540
  "Here you can specify which fields should be considered multilingual by "
541
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
542
 
543
- #: includes/admin/class-wpglobus-customize-options.php:1351,
544
- #: includes/options/class-wpglobus-options.php:608
545
  msgid "Thank you for installing WPGlobus!"
546
  msgstr "Thank you for installing WPGlobus!"
547
 
548
- #: includes/admin/class-wpglobus-customize-options.php:1355,
549
- #: includes/options/class-wpglobus-options.php:612
550
  msgid "Read About WPGlobus"
551
  msgstr "Read About WPGlobus"
552
 
553
- #: includes/admin/class-wpglobus-customize-options.php:1358
554
  msgid ""
555
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
556
  msgstr ""
557
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
558
 
559
- #: includes/admin/class-wpglobus-customize-options.php:1363,
560
- #: includes/options/class-wpglobus-options.php:648
561
  msgid ""
562
  "Should you have any questions or comments, please do not hesitate to contact "
563
  "us."
@@ -565,21 +422,14 @@ msgstr ""
565
  "Should you have any questions or comments, please do not hesitate to contact "
566
  "us."
567
 
568
- #: includes/admin/class-wpglobus-customize-options.php:1367,
569
- #: includes/options/class-wpglobus-options.php:652
570
  msgid "Sincerely Yours,"
571
  msgstr "Sincerely Yours,"
572
 
573
- #: includes/admin/class-wpglobus-customize-options.php:1369,
574
- #: includes/options/class-wpglobus-options.php:654,
575
- #: includes/options/wpglobus-options-header.php:34
576
  msgid "The WPGlobus Team"
577
  msgstr "The WPGlobus Team"
578
 
579
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
580
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
581
- #: includes/admin/class-wpglobus-customize-options.php:1388,
582
- #: includes/options/class-wpglobus-options.php:689
583
  msgid ""
584
  "We would hate to see you go. If something goes wrong, do not uninstall "
585
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
@@ -587,8 +437,6 @@ msgstr ""
587
  "We would hate to see you go. If something goes wrong, do not uninstall "
588
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
589
 
590
- #: includes/admin/class-wpglobus-customize-options.php:1395,
591
- #: includes/options/class-wpglobus-options.php:696
592
  msgid ""
593
  "Please note that if you deactivate WPGlobus, your site will show all the "
594
  "languages together, mixed up. You will need to remove all translations, "
@@ -600,8 +448,6 @@ msgstr ""
600
 
601
  #. translators: %s: link to the Clean-up Tool
602
  #. translators: %s: link to the Clean-up Tool.
603
- #: includes/admin/class-wpglobus-customize-options.php:1400,
604
- #: includes/options/class-wpglobus-options.php:700
605
  msgid ""
606
  "If there are just a few places, you should edit them manually. To "
607
  "automatically remove all translations at once, you can use the %s. WARNING: "
@@ -615,181 +461,133 @@ msgstr ""
615
 
616
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
617
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
618
- #: includes/admin/class-wpglobus-customize-options.php:1403,
619
- #: includes/options/class-wpglobus-options.php:677
620
  msgid "%1$sClean-up Tool%2$s"
621
  msgstr "%1$sClean-up Tool%2$s"
622
 
623
  #. translators: %s: name of current theme
624
- #: includes/admin/class-wpglobus-customize-options.php:1415
625
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
626
  msgstr "Sorry, WPGlobus customizer doesn't support current theme %s."
627
 
628
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
629
- #: includes/admin/class-wpglobus-customize-options.php:1421
630
  msgid "Please use %1$sWPGlobus options page%2$s instead."
631
  msgstr "Please use %1$sWPGlobus options page%2$s instead."
632
 
633
- #: includes/admin/class-wpglobus-customize-options.php:1485
634
  msgid "Expand/Shrink"
635
  msgstr ""
636
 
637
- #: includes/admin/class-wpglobus-dashboard-news.php:43,
638
- #: includes/admin/class-wpglobus-dashboard-news.php:59
639
  msgid "WPGlobus News"
640
  msgstr "WPGlobus News"
641
 
642
- #: includes/admin/class-wpglobus-language-edit.php:197,
643
- #: includes/admin/class-wpglobus-language-edit.php:192
644
  msgid "Options updated"
645
  msgstr "Options updated"
646
 
647
- #: includes/admin/class-wpglobus-language-edit.php:272
648
  msgid "Please enter a language code!"
649
  msgstr "Please enter a language code!"
650
 
651
- #: includes/admin/class-wpglobus-language-edit.php:276
652
  msgid "Language code already exists!"
653
  msgstr "Language code already exists!"
654
 
655
- #: includes/admin/class-wpglobus-language-edit.php:280
656
  msgid "Please specify the language flag!"
657
  msgstr "Please specify the language flag!"
658
 
659
- #: includes/admin/class-wpglobus-language-edit.php:284
660
  msgid "Please enter the language name!"
661
  msgstr "Please enter the language name!"
662
 
663
- #: includes/admin/class-wpglobus-language-edit.php:288
664
  msgid "Please enter the language name in English!"
665
  msgstr "Please enter the language name in English!"
666
 
667
- #: includes/admin/class-wpglobus-language-edit.php:292
668
  msgid "Please enter the locale!"
669
  msgstr "Please enter the locale!"
670
 
671
- #: includes/admin/class-wpglobus-language-edit.php:354
672
  msgid "Add Language"
673
  msgstr "Add Language"
674
 
675
- #: includes/admin/class-wpglobus-language-edit.php:351,
676
- #: includes/admin/class-wpglobus-language-edit.php:462,
677
- #: includes/admin/class-wpglobus-language-edit.php:455
678
  msgid "Delete Language"
679
  msgstr "Delete Language"
680
 
681
- #: includes/admin/class-wpglobus-language-edit.php:349
682
  msgid "Edit Language"
683
  msgstr "Edit Language"
684
 
685
- #: includes/admin/class-wpglobus-language-edit.php:384
686
  msgid "Language Code"
687
  msgstr "Language Code"
688
 
689
- #: includes/admin/class-wpglobus-language-edit.php:391
690
  msgid ""
691
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
692
  msgstr ""
693
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
694
 
695
- #: includes/admin/class-wpglobus-language-edit.php:396
696
  msgid "Language flag"
697
  msgstr "Language flag"
698
 
699
- #: includes/admin/class-wpglobus-language-edit.php:412
700
  msgid "Name"
701
  msgstr "Name"
702
 
703
- #: includes/admin/class-wpglobus-language-edit.php:417
704
  msgid ""
705
  "The name of the language in its native alphabet. (Examples: English, Русский)"
706
  msgstr ""
707
  "The name of the language in its native alphabet. (Examples: English, Русский)"
708
 
709
- #: includes/admin/class-wpglobus-language-edit.php:422
710
  msgid "Name in English"
711
  msgstr "Name in English"
712
 
713
- #: includes/admin/class-wpglobus-language-edit.php:427
714
  msgid "The name of the language in English"
715
  msgstr "The name of the language in English"
716
 
717
- #: includes/admin/class-wpglobus-language-edit.php:432,
718
- #: includes/options/fields/table/class-wpglobus-languages-table.php:115
719
  msgid "Locale"
720
  msgstr "Locale"
721
 
722
- #: includes/admin/class-wpglobus-language-edit.php:437
723
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
724
  msgstr "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
725
 
726
- #: includes/admin/class-wpglobus-language-edit.php:460
727
  msgid "Are you sure you want to delete?"
728
  msgstr "Are you sure you want to delete?"
729
 
730
- #: includes/admin/class-wpglobus-language-edit.php:447
731
  msgid "Save Changes"
732
  msgstr "Save Changes"
733
 
734
- #: includes/admin/class-wpglobus-language-edit.php:470
735
  msgid "Back to the WPGlobus Settings"
736
  msgstr "Back to the WPGlobus Settings"
737
 
738
- #: includes/admin/class-wpglobus-plugin-install.php:308
739
  msgid "Current Version"
740
  msgstr "Current Version"
741
 
742
- #: includes/admin/class-wpglobus-plugin-install.php:309
743
  msgid "Get it now!"
744
  msgstr "Get it now!"
745
 
746
- #: includes/admin/class-wpglobus-plugin-install.php:310
747
  msgid "Premium add-on"
748
  msgstr "Premium add-on"
749
 
750
- #: includes/admin/class-wpglobus-plugin-install.php:311,
751
- #: includes/options/fields/table/class-wpglobus-languages-table.php:472
752
  msgid "Installed"
753
  msgstr "Installed"
754
 
755
  #. translators: placeholders are for the HTML tags.
756
- #: includes/admin/class-wpglobus-plugin-install.php:319
757
  msgid ""
758
  "If you have already purchased a WPGlobus premium extension, please read "
759
  "%1$sthe installation instructions here%2$s"
760
  msgstr ""
761
 
762
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
763
- #: includes/options/class-wpglobus-options.php:726
764
  msgid "Help Desk"
765
  msgstr "Help Desk"
766
 
767
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:185
768
  msgid "Email not sent. Please fill in the entire form."
769
  msgstr ""
770
 
771
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:195
772
  msgid ""
773
  "Email not sent. Please verify that your name and email are entered correctly."
774
  msgstr ""
775
 
776
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:216
777
  msgid "Email sent."
778
  msgstr ""
779
 
780
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
781
  msgid "Thank you for using WPGlobus!"
782
  msgstr "Thank you for using WPGlobus!"
783
 
784
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
785
  msgid "Our Support Team is here to answer your questions or concerns."
786
  msgstr "Our Support Team is here to answer your questions or concerns."
787
 
788
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
789
  msgid "To help us serve you better:"
790
  msgstr "To help us serve you better:"
791
 
792
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
793
  msgid ""
794
  "Please check if the problem persists if you switch to a standard WordPress "
795
  "theme."
@@ -797,56 +595,43 @@ msgstr ""
797
  "Please check if the problem persists if you switch to a standard WordPress "
798
  "theme."
799
 
800
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
801
  msgid ""
802
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
803
  msgstr ""
804
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
805
 
806
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
807
  msgid "Please fill in and submit the contact form:"
808
  msgstr ""
809
 
810
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
811
  msgid "Please make sure the email address is correct."
812
  msgstr ""
813
 
814
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
815
  msgid "Subject"
816
  msgstr "Subject"
817
 
818
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
819
  msgid "Short description of the problem"
820
  msgstr ""
821
 
822
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
823
  msgid "Detailed description"
824
  msgstr ""
825
 
826
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
827
  msgid "Technical Information"
828
  msgstr "Technical Information"
829
 
830
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
831
  msgid "This information helps us to find the problem source"
832
  msgstr ""
833
 
834
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:161
835
  msgid ""
836
  "Alternatively, please email %s. Do not forget to copy and paste the "
837
  "technical information to your email message."
838
  msgstr ""
839
 
840
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:89
841
  msgid "WPGlobus Recommends:"
842
  msgstr "WPGlobus Recommends:"
843
 
844
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:98,
845
- #: includes/options/class-wpglobus-options.php:933
846
  msgid "WPGlobus for WooCommerce"
847
  msgstr "WPGlobus for WooCommerce"
848
 
849
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:102
850
  msgid ""
851
  "Translate product titles and descriptions, product categories, tags and "
852
  "attributes."
@@ -854,171 +639,127 @@ msgstr ""
854
  "Translate product titles and descriptions, product categories, tags and "
855
  "attributes."
856
 
857
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:107
858
  msgid "Get it now:"
859
  msgstr "Get it now:"
860
 
861
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:117
862
  msgid "WooCommerce Multi-Currency"
863
  msgstr ""
864
 
865
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:121
866
  msgid "Accept multiple currencies in your online store!"
867
  msgstr "Accept multiple currencies in your online store!"
868
 
869
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:126,
870
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:185
871
  msgid "Check it out:"
872
  msgstr "Check it out:"
873
 
874
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:195
875
  msgid "To translate permalinks, please activate the module Slug."
876
  msgstr ""
877
 
878
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:183
879
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
880
  msgstr ""
881
 
882
- #: includes/builders/class-wpglobus-builder.php:278,
883
- #: includes/class-wpglobus.php:3577
884
  msgid "Save draft before using extra language."
885
  msgstr ""
886
 
887
- #: includes/builders/class-wpglobus-builder.php:371
888
  msgid "Builder"
889
  msgstr ""
890
 
891
- #: includes/builders/class-wpglobus-builder.php:395
892
  msgid "Сompatibility Settings"
893
  msgstr ""
894
 
895
  #. translators: ON/OFF status of WPGlobus on the edit pages.
896
  #. translators: ON/OFF status of WPGlobus on the edit pages.
897
- #: includes/builders/elementor/class-wpglobus-elementor.php:255,
898
- #: includes/class-wpglobus.php:1263
899
  msgid "ON"
900
  msgstr ""
901
 
902
- #: includes/builders/elementor/class-wpglobus-elementor.php:256,
903
- #: includes/class-wpglobus.php:1264
904
  msgid "Turn off"
905
  msgstr ""
906
 
907
- #: includes/builders/elementor/class-wpglobus-elementor.php:250,
908
- #: includes/class-wpglobus.php:1258
909
  msgid "OFF"
910
  msgstr ""
911
 
912
- #: includes/builders/elementor/class-wpglobus-elementor.php:251,
913
- #: includes/class-wpglobus.php:1259
914
  msgid "Turn on"
915
  msgstr ""
916
 
917
- #: includes/builders/elementor/class-wpglobus-elementor.php:281
918
  msgid "Elementor"
919
  msgstr ""
920
 
921
- #: includes/builders/elementor/class-wpglobus-elementor.php:508
922
  msgid "WPGlobus languages"
923
  msgstr ""
924
 
925
- #: includes/builders/elementor/class-wpglobus-elementor.php:514
926
  msgid "current"
927
  msgstr ""
928
 
929
- #: includes/builders/elementor/class-wpglobus-elementor.php:675
930
  msgid ""
931
  "WPGlobus provides multilingual support for Elementor only when the option "
932
  "%1$s%2$s%3$s is set to %4$s."
933
  msgstr ""
934
 
935
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:228
936
  msgid "Before switching the language, please save draft or publish."
937
  msgstr ""
938
 
939
  #. translators: Metabox title FOR language.
940
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:318
941
  msgctxt "filter__seo_meta_box_title"
942
  msgid "for"
943
  msgstr ""
944
 
945
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:392
946
  msgid "Page is being reloaded. Please wait..."
947
  msgstr ""
948
 
949
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:393
950
  msgid ""
951
  "Before switching the language, please save draft or publish, then reload "
952
  "page."
953
  msgstr ""
954
 
955
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
956
  msgid ""
957
  "WPGlobus provides multilingual support for Elementor only when the option "
958
  "`CSS Print Method` is set to `External File`."
959
  msgstr ""
960
 
961
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
962
  msgid "Open Elementor Settings page"
963
  msgstr ""
964
 
965
- #: includes/class-wpglobus-widget.php:27
966
  msgid "WPGlobus widget"
967
  msgstr "WPGlobus widget"
968
 
969
- #: includes/class-wpglobus-widget.php:29
970
  msgid "Add language switcher"
971
  msgstr "Add language switcher"
972
 
973
- #: includes/class-wpglobus-widget.php:32
974
  msgid "Flags"
975
  msgstr "Flags"
976
 
977
- #: includes/class-wpglobus-widget.php:33
978
  msgid "List"
979
  msgstr "List"
980
 
981
- #: includes/class-wpglobus-widget.php:34
982
  msgid "List with flags"
983
  msgstr "List with flags"
984
 
985
- #: includes/class-wpglobus-widget.php:35
986
  msgid "Select"
987
  msgstr "Select"
988
 
989
- #: includes/class-wpglobus-widget.php:36
990
  msgid "Select with language code"
991
  msgstr "Select with language code"
992
 
993
- #: includes/class-wpglobus-widget.php:37
994
  msgid "Dropdown"
995
  msgstr "Dropdown"
996
 
997
- #: includes/class-wpglobus-widget.php:38
998
  msgid "Dropdown with flags"
999
  msgstr "Dropdown with flags"
1000
 
1001
- #: includes/class-wpglobus-widget.php:264
1002
  msgid "Selector type"
1003
  msgstr "Selector type"
1004
 
1005
- #: includes/class-wpglobus.php:1447
1006
  msgid "You cannot disable the main language."
1007
  msgstr "You cannot disable the main language."
1008
 
1009
- #: includes/class-wpglobus.php:1672
1010
  msgid "Need a multilingual slug?"
1011
  msgstr "Need a multilingual slug?"
1012
 
1013
- #: includes/class-wpglobus.php:1655
1014
  msgid "*) Available after the menu is saved."
1015
  msgstr "*) Available after the menu is saved."
1016
 
1017
- #: includes/class-wpglobus.php:4025
1018
  msgid "You must enable Pretty Permalinks to use WPGlobus."
1019
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
1020
 
1021
- #: includes/class-wpglobus.php:4027
1022
  msgid ""
1023
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1024
  "default option."
@@ -1026,193 +767,150 @@ msgstr ""
1026
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1027
  "default option."
1028
 
1029
- #: includes/options/class-wpglobus-options.php:281
1030
  msgid "Language Selector Menu Style"
1031
  msgstr ""
1032
 
1033
- #: includes/options/class-wpglobus-options.php:282,
1034
- #: includes/options/class-wpglobus-options.php:802,
1035
- #: includes/options/class-wpglobus-options.php:871
1036
  msgid "WPGlobus Plus"
1037
  msgstr ""
1038
 
1039
- #: includes/options/class-wpglobus-options.php:283
1040
  msgid "Drop-down languages menu or Flat (in one line)"
1041
  msgstr ""
1042
 
1043
- #: includes/options/class-wpglobus-options.php:286
1044
  msgid "Do not change"
1045
  msgstr ""
1046
 
1047
- #: includes/options/class-wpglobus-options.php:287
1048
  msgid "Drop-down (vertical)"
1049
  msgstr ""
1050
 
1051
- #: includes/options/class-wpglobus-options.php:288
1052
  msgid "Flat (horizontal)"
1053
  msgstr ""
1054
 
1055
- #: includes/options/class-wpglobus-options.php:343
1056
  msgid ""
1057
  "If you see this message then your browser may not display the WPGlobus "
1058
  "Settings panel properly. Please try another browser."
1059
  msgstr ""
1060
 
1061
- #: includes/options/class-wpglobus-options.php:599,
1062
- #: includes/options/class-wpglobus-options.php:1577
1063
  msgid "Сompatibility"
1064
  msgstr ""
1065
 
1066
  #. translators: placeholders for "strong" tags.
1067
- #: includes/options/class-wpglobus-options.php:616
1068
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
1069
  msgstr ""
1070
 
1071
  #. translators: placeholders for "strong" tags.
1072
- #: includes/options/class-wpglobus-options.php:619
1073
  msgid ""
1074
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
1075
  "the language attributes: name, code, flag icon, etc."
1076
  msgstr ""
1077
 
1078
- #: includes/options/class-wpglobus-options.php:622
1079
  msgid "Important notes"
1080
  msgstr ""
1081
 
1082
  #. translators: placeholders for "strong" tags.
1083
- #: includes/options/class-wpglobus-options.php:624
1084
  msgid "Version %1$s1.9.17%2$s "
1085
  msgstr ""
1086
 
1087
  #. translators: placeholders for "strong" tags.
1088
- #: includes/options/class-wpglobus-options.php:627
1089
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
1090
  msgstr ""
1091
 
1092
  #. translators: placeholders for "strong" tags; compatibility tab link.
1093
- #: includes/options/class-wpglobus-options.php:630
1094
  msgid ""
1095
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
1096
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
1097
  msgstr ""
1098
 
1099
  #. translators: placeholders for "strong" tags; compatibility tab link.
1100
- #: includes/options/class-wpglobus-options.php:633
1101
  msgid ""
1102
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
1103
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
1104
  msgstr ""
1105
 
1106
  #. translators: placeholders for "strong" tags.
1107
- #: includes/options/class-wpglobus-options.php:637
1108
  msgid "Version %1$s2.2.11%2$s "
1109
  msgstr ""
1110
 
1111
- #: includes/options/class-wpglobus-options.php:639
1112
  msgid "Starting from this version"
1113
  msgstr ""
1114
 
1115
  #. translators: placeholders for "strong" tags.
1116
- #: includes/options/class-wpglobus-options.php:642
1117
  msgid ""
1118
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
1119
  "(CPT)."
1120
  msgstr ""
1121
 
1122
  #. translators: placeholders for "strong" tags.
1123
- #: includes/options/class-wpglobus-options.php:645
1124
  msgid ""
1125
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
1126
  "the %1$s[%3$s]%2$s tab."
1127
  msgstr ""
1128
 
1129
- #: includes/options/class-wpglobus-options.php:662
1130
  msgid "Welcome!"
1131
  msgstr "Welcome!"
1132
 
1133
- #: includes/options/class-wpglobus-options.php:685
1134
  msgid "Deactivating / Uninstalling"
1135
  msgstr "Deactivating / Uninstalling"
1136
 
1137
- #: includes/options/class-wpglobus-options.php:711
1138
  msgid "Uninstall"
1139
  msgstr ""
1140
 
1141
- #: includes/options/class-wpglobus-options.php:741
1142
  msgid "All add-ons"
1143
  msgstr ""
1144
 
1145
- #: includes/options/class-wpglobus-options.php:756
1146
  msgid "Mobile Menu"
1147
  msgstr ""
1148
 
1149
- #: includes/options/class-wpglobus-options.php:771
1150
  msgid "Language Widgets"
1151
  msgstr ""
1152
 
1153
- #: includes/options/class-wpglobus-options.php:841
1154
  msgid "We Recommend..."
1155
  msgstr ""
1156
 
1157
- #: includes/options/class-wpglobus-options.php:873
1158
  msgid ""
1159
  "Our premium add-on, WPGlobus Plus, will add several features to your "
1160
  "website, such as:"
1161
  msgstr ""
1162
 
1163
- #: includes/options/class-wpglobus-options.php:876
1164
  msgid ""
1165
  "- Ability to write a post in one language and immediately publish it, not "
1166
  "waiting for the translation to other languages;"
1167
  msgstr ""
1168
 
1169
- #: includes/options/class-wpglobus-options.php:879
1170
  msgid "- Set different URLs for each translation;"
1171
  msgstr ""
1172
 
1173
- #: includes/options/class-wpglobus-options.php:882
1174
  msgid ""
1175
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
1176
  "for each translation;"
1177
  msgstr ""
1178
 
1179
- #: includes/options/class-wpglobus-options.php:885
1180
  msgid "- and more..."
1181
  msgstr ""
1182
 
1183
- #: includes/options/class-wpglobus-options.php:888,
1184
- #: includes/options/class-wpglobus-options.php:945,
1185
- #: includes/options/class-wpglobus-options.php:1003
1186
  msgid "Click here to download"
1187
  msgstr ""
1188
 
1189
- #: includes/options/class-wpglobus-options.php:936
1190
  msgid ""
1191
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
1192
  "translate your blog posts and pages to many languages."
1193
  msgstr ""
1194
 
1195
- #: includes/options/class-wpglobus-options.php:939
1196
  msgid "The next step is to translate your WooCommerce-based store!"
1197
  msgstr ""
1198
 
1199
- #: includes/options/class-wpglobus-options.php:942
1200
  msgid ""
1201
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
1202
  "translate product titles and descriptions, categories, tags and attributes."
1203
  msgstr ""
1204
 
1205
- #: includes/options/class-wpglobus-options.php:989
1206
  msgid "Multi-currency"
1207
  msgstr ""
1208
 
1209
- #: includes/options/class-wpglobus-options.php:992
1210
  msgid ""
1211
  "Your WooCommerce-powered store is set to show prices and accept payments in "
1212
  "a single currency only."
1213
  msgstr ""
1214
 
1215
- #: includes/options/class-wpglobus-options.php:996
1216
  msgid ""
1217
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
1218
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
@@ -1220,460 +918,348 @@ msgid ""
1220
  "positioning for global growth!"
1221
  msgstr ""
1222
 
1223
- #: includes/options/class-wpglobus-options.php:1000
1224
  msgid ""
1225
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
1226
  "re-calculating prices on-the-fly."
1227
  msgstr ""
1228
 
1229
- #: includes/options/class-wpglobus-options.php:1037
1230
  msgid "WPGlobus Premium Add-ons"
1231
  msgstr ""
1232
 
1233
- #: includes/options/class-wpglobus-options.php:1039
1234
  msgid ""
1235
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
1236
  "you will be able to:"
1237
  msgstr ""
1238
 
1239
- #: includes/options/class-wpglobus-options.php:1044
1240
  msgid ""
1241
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
1242
  "моя-страница and so on);"
1243
  msgstr ""
1244
 
1245
- #: includes/options/class-wpglobus-options.php:1047
1246
  msgid ""
1247
  "Postpone translation to some languages and <strong>publish only the "
1248
  "translated texts</strong>;"
1249
  msgstr ""
1250
 
1251
- #: includes/options/class-wpglobus-options.php:1050
1252
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
1253
  msgstr ""
1254
 
1255
- #: includes/options/class-wpglobus-options.php:1053
1256
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
1257
  msgstr ""
1258
 
1259
- #: includes/options/class-wpglobus-options.php:1056
1260
  msgid ""
1261
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
1262
  "strong>;"
1263
  msgstr ""
1264
 
1265
- #: includes/options/class-wpglobus-options.php:1060
1266
  msgid "...and more."
1267
  msgstr ""
1268
 
1269
- #: includes/options/class-wpglobus-options.php:1063
1270
  msgid "Click here to visit the WPGlobus Store"
1271
  msgstr ""
1272
 
1273
- #: includes/options/class-wpglobus-options.php:1104
1274
  msgid "Select a language"
1275
  msgstr "Select a language"
1276
 
1277
  #. translators: %3$s placeholder for the icon (actual picture).
1278
- #: includes/options/class-wpglobus-options.php:1133
1279
  msgid ""
1280
  "Place the %1$smain language%2$s of your site at the top of the list by "
1281
  "dragging the %3$s icons."
1282
  msgstr ""
1283
 
1284
  #. translators: placeholders for the "strong" HTML tags.
1285
- #: includes/options/class-wpglobus-options.php:1136
1286
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
1287
  msgstr ""
1288
 
1289
  #. translators: placeholders for the "strong" HTML tags.
1290
- #: includes/options/class-wpglobus-options.php:1139
1291
  msgid "%1$sAdd%2$s more languages using the section below."
1292
  msgstr ""
1293
 
1294
- #: includes/options/class-wpglobus-options.php:1140
1295
  msgid "When done, click the [Save Changes] button."
1296
  msgstr "When done, click the [Save Changes] button."
1297
 
1298
  #. translators: %s - placeholder for the "Save Changes" button text.
1299
- #: includes/options/class-wpglobus-options.php:1151
1300
  msgid "Press the %s button to confirm."
1301
  msgstr ""
1302
 
1303
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
1304
- #: includes/options/class-wpglobus-options.php:1168
1305
  msgid "-- none --"
1306
  msgstr ""
1307
 
1308
- #: includes/options/class-wpglobus-options.php:1169
1309
  msgid "All menus"
1310
  msgstr ""
1311
 
1312
- #: includes/options/class-wpglobus-options.php:1182
1313
  msgid "Instructions:"
1314
  msgstr "Instructions:"
1315
 
1316
- #: includes/options/class-wpglobus-options.php:1242
1317
  msgid "(Found in some themes)"
1318
  msgstr "(Found in some themes)"
1319
 
1320
- #: includes/options/class-wpglobus-options.php:1244
1321
  msgid "Enable"
1322
  msgstr "Enable"
1323
 
1324
- #: includes/options/class-wpglobus-options.php:1259
1325
  msgid "Languages table"
1326
  msgstr "Languages table"
1327
 
1328
- #: includes/options/class-wpglobus-options.php:1265
1329
  msgid "Use this table to add, edit or delete languages."
1330
  msgstr "Use this table to add, edit or delete languages."
1331
 
1332
- #: includes/options/class-wpglobus-options.php:1266
1333
  msgid "NOTE: you cannot remove the main language."
1334
  msgstr "NOTE: you cannot remove the main language."
1335
 
1336
- #: includes/options/class-wpglobus-options.php:1314
1337
  msgid "WPGlobus is enabled on these Post Types"
1338
  msgstr ""
1339
 
1340
- #: includes/options/class-wpglobus-options.php:1315
1341
  msgid "Uncheck to disable"
1342
  msgstr ""
1343
 
1344
- #: includes/options/class-wpglobus-options.php:1316
1345
  msgid ""
1346
  "Please note that there are post types, which status is managed by other "
1347
  "plugins and cannot be changed here."
1348
  msgstr ""
1349
 
1350
- #: includes/options/class-wpglobus-options.php:1321
1351
  msgid "Post Types"
1352
  msgstr ""
1353
 
1354
- #: includes/options/class-wpglobus-options.php:1337
1355
  msgid ""
1356
  "You should put here only the code provided by WPGlobus Support. Do not write "
1357
  "anything else in the sections below as it might break the functionality of "
1358
  "your website!"
1359
  msgstr ""
1360
 
1361
- #: includes/options/class-wpglobus-options.php:1378
1362
  msgid "Custom Code"
1363
  msgstr ""
1364
 
1365
- #: includes/options/class-wpglobus-options.php:1486,
1366
- #: includes/options/class-wpglobus-options.php:1618,
1367
- #: includes/options/class-wpglobus-options.php:1729
1368
  msgid "Enabled"
1369
  msgstr "Enabled"
1370
 
1371
- #: includes/options/class-wpglobus-options.php:1499
1372
  msgid "Builders support"
1373
  msgstr ""
1374
 
1375
- #: includes/options/class-wpglobus-options.php:1551
1376
  msgid "Builder mode is enabled on these Post Types"
1377
  msgstr ""
1378
 
1379
- #: includes/options/class-wpglobus-options.php:1617
1380
  msgid "Old fashioned language switcher"
1381
  msgstr ""
1382
 
1383
- #: includes/options/class-wpglobus-options.php:1623
1384
  msgid "Block Editor"
1385
  msgstr ""
1386
 
1387
- #: includes/options/class-wpglobus-options.php:1624
1388
  msgid "Block Editor Options"
1389
  msgstr ""
1390
 
1391
- #: includes/options/class-wpglobus-options.php:1653
1392
  msgid ""
1393
  "With the current settings, you will see the following lines in the section "
1394
  "HEAD of your site pages"
1395
  msgstr ""
1396
 
1397
- #: includes/options/class-wpglobus-options.php:1655
1398
  msgid "(example for two languages)"
1399
  msgstr ""
1400
 
1401
- #: includes/options/class-wpglobus-options.php:1702
1402
  msgid ""
1403
  "Tell search engines about localized versions of your pages using the "
1404
  "hreflang tag"
1405
  msgstr ""
1406
 
1407
- #: includes/options/class-wpglobus-options.php:1711
1408
  msgid "Output the hreflang tag as"
1409
  msgstr ""
1410
 
1411
- #: includes/options/class-wpglobus-options.php:1714
1412
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1413
  msgstr ""
1414
 
1415
- #: includes/options/class-wpglobus-options.php:1715
1416
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1417
  msgstr ""
1418
 
1419
- #: includes/options/class-wpglobus-options.php:1716
1420
  msgid "Language code only (en, ru, etc.)"
1421
  msgstr ""
1422
 
1423
- #: includes/options/class-wpglobus-options.php:1728
1424
  msgid "Use the code `x-default` for the main language"
1425
  msgstr ""
1426
 
1427
- #: includes/options/class-wpglobus-options.php:1734
1428
  msgid "Multilingual SEO"
1429
  msgstr ""
1430
 
1431
- #: includes/options/class-wpglobus-options.php:1735
1432
  msgid "Multilingual SEO Options"
1433
  msgstr ""
1434
 
1435
- #: includes/options/class-wpglobus-options.php:1772
1436
  msgid ""
1437
  "With WPGlobus, you can get translations for posts and pages using REST API."
1438
  msgstr ""
1439
 
1440
- #: includes/options/class-wpglobus-options.php:1800,
1441
- #: includes/options/class-wpglobus-options.php:1808,
1442
- #: includes/options/class-wpglobus-options.php:1780,
1443
- #: includes/options/class-wpglobus-options.php:1789
1444
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1445
  msgstr ""
1446
 
1447
- #: includes/options/class-wpglobus-options.php:1777
1448
  msgid ""
1449
  "For demonstration, you can try the first post that WordPress creates at the "
1450
  "initial installation."
1451
  msgstr ""
1452
 
1453
- #: includes/options/class-wpglobus-options.php:1819
1454
  msgid ""
1455
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1456
  "information."
1457
  msgstr ""
1458
 
1459
- #: includes/options/class-wpglobus-options.php:1826
1460
  msgid ""
1461
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1462
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1463
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1464
  msgstr ""
1465
 
1466
- #: includes/options/class-wpglobus-options.php:1839
1467
  msgid "Description:"
1468
  msgstr ""
1469
 
1470
- #: includes/options/class-wpglobus-options.php:1846,
1471
- #: includes/options/class-wpglobus-options.php:1847
1472
  msgid "REST API"
1473
  msgstr ""
1474
 
1475
- #: includes/options/class-wpglobus-options.php:2180
1476
  msgid "Translate strings"
1477
  msgstr ""
1478
 
1479
- #: includes/options/fields/table/class-wpglobus-languages-table.php:66
1480
  msgid "item"
1481
  msgstr "item"
1482
 
1483
- #: includes/options/fields/table/class-wpglobus-languages-table.php:68
1484
  msgid "items"
1485
  msgstr "items"
1486
 
1487
- #: includes/options/fields/table/class-wpglobus-languages-table.php:88
1488
  msgid "Code"
1489
  msgstr "Code"
1490
 
1491
- #: includes/options/fields/table/class-wpglobus-languages-table.php:94
1492
  msgid "Edit"
1493
  msgstr "Edit"
1494
 
1495
- #: includes/options/fields/table/class-wpglobus-languages-table.php:99
1496
  msgid "Delete"
1497
  msgstr "Delete"
1498
 
1499
- #: includes/options/fields/table/class-wpglobus-languages-table.php:105
1500
  msgid "File"
1501
  msgstr "File"
1502
 
1503
- #: includes/options/fields/table/class-wpglobus-languages-table.php:110
1504
  msgid "Flag"
1505
  msgstr "Flag"
1506
 
1507
- #: includes/options/fields/table/class-wpglobus-languages-table.php:120
1508
  msgid "Language name"
1509
  msgstr "Language name"
1510
 
1511
- #: includes/options/fields/table/class-wpglobus-languages-table.php:125
1512
  msgid "English language name"
1513
  msgstr "English language name"
1514
 
1515
- #: includes/options/fields/table/class-wpglobus-languages-table.php:151
1516
  msgid "No items found"
1517
  msgstr "No items found"
1518
 
1519
- #: includes/options/fields/table/class-wpglobus-languages-table.php:164
1520
  msgid "Add new Language"
1521
  msgstr "Add new Language"
1522
 
1523
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:164
1524
  msgid "No items of this type were found."
1525
  msgstr "No items of this type were found."
1526
 
1527
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:107
1528
  msgid "Select an item"
1529
  msgstr "Select an item"
1530
 
1531
- #: includes/options/templates/compatibility-beta.php:15
1532
  msgid "Multilingual support of this add-on is currently in Beta stage."
1533
  msgstr ""
1534
 
1535
- #: includes/options/templates/compatibility-beta.php:17
1536
  msgid "We do not recommend using it on production sites."
1537
  msgstr ""
1538
 
1539
- #: includes/options/templates/compatibility-beta.php:23
1540
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1541
  msgstr ""
1542
 
1543
- #: includes/options/templates/compatibility.php:69
1544
  msgid "WordPress version"
1545
  msgstr ""
1546
 
1547
- #: includes/options/templates/compatibility.php:44
1548
  msgid "In the WordPress core"
1549
  msgstr ""
1550
 
1551
- #: includes/options/templates/compatibility.php:46
1552
  msgid "Core"
1553
  msgstr ""
1554
 
1555
- #: includes/options/templates/compatibility.php:52,
1556
- #: includes/options/templates/compatibility.php:79
1557
  msgid "Current version"
1558
  msgstr ""
1559
 
1560
- #: includes/options/templates/compatibility.php:53,
1561
- #: includes/options/templates/compatibility.php:81
1562
  msgid "Stage"
1563
  msgstr ""
1564
 
1565
- #: includes/options/templates/compatibility.php:54,
1566
- #: includes/options/templates/compatibility.php:82
1567
  msgid "Status"
1568
  msgstr "Status"
1569
 
1570
- #: includes/options/templates/compatibility.php:60
1571
  msgid "Block editor"
1572
  msgstr ""
1573
 
1574
- #: includes/options/templates/compatibility.php:62
1575
  msgid "production"
1576
  msgstr ""
1577
 
1578
- #: includes/options/templates/compatibility.php:73
1579
  msgid "List of supported add-ons"
1580
  msgstr ""
1581
 
1582
- #: includes/options/templates/compatibility.php:78
1583
  msgid "Add-on"
1584
  msgstr ""
1585
 
1586
- #: includes/options/templates/compatibility.php:80
1587
  msgid "Supported minimum version"
1588
  msgstr ""
1589
 
1590
- #: includes/options/templates/compatibility.php:105
1591
  msgid "Not installed"
1592
  msgstr ""
1593
 
1594
- #: includes/options/templates/compatibility.php:102
1595
  msgid "Installed, inactive"
1596
  msgstr ""
1597
 
1598
- #: includes/options/templates/compatibility.php:100
1599
  msgid "Active"
1600
  msgstr "Active"
1601
 
1602
- #: includes/options/templates/customize-intro.php:35
1603
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1604
  msgstr ""
1605
 
1606
- #: includes/options/templates/customize-intro.php:39
1607
  msgid "However, some themes do not follow all WordPress standards strictly."
1608
  msgstr ""
1609
 
1610
- #: includes/options/templates/customize-intro.php:41
1611
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1612
  msgstr ""
1613
 
1614
- #: includes/options/templates/customize-intro.php:45
1615
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1616
  msgstr ""
1617
 
1618
- #: includes/options/templates/customize-intro.php:53
1619
  msgid ""
1620
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1621
  "With those themes, WPGlobus Customizer is switched off by default"
1622
  msgstr ""
1623
 
1624
- #: includes/options/templates/customize-intro.php:60
1625
  msgid "The currently active theme is"
1626
  msgstr ""
1627
 
1628
- #: includes/options/templates/customize-intro.php:66
1629
  msgid "In the current version, WPGlobus Customizer does not support"
1630
  msgstr ""
1631
 
1632
- #: includes/options/templates/customize-intro.php:70
1633
  msgid "translation of the navigation menus"
1634
  msgstr ""
1635
 
1636
- #: includes/options/templates/customize-intro.php:72
1637
  msgid "to translate, please go to"
1638
  msgstr ""
1639
 
1640
- #: includes/options/templates/customize-intro.php:81
1641
  msgid "Go to Customizer"
1642
  msgstr ""
1643
 
1644
- #: includes/options/templates/customize-intro.php:88
1645
  msgid "is undefined"
1646
  msgstr ""
1647
 
1648
- #: includes/options/templates/customize-intro.php:85
1649
  msgid "is set to"
1650
  msgstr ""
1651
 
1652
- #: includes/options/templates/customize-intro.php:94
1653
  msgid "by adding to the file wp-config.php"
1654
  msgstr ""
1655
 
1656
- #: includes/options/templates/customize-intro.php:96
1657
  msgid "now"
1658
  msgstr ""
1659
 
1660
- #: includes/options/wpglobus-options-header.php:25
1661
  msgid "We rely on your support!"
1662
  msgstr "We rely on your support!"
1663
 
1664
- #: includes/options/wpglobus-options-header.php:28
1665
  msgid "Please consider a small donation to support the future development."
1666
  msgstr "Please consider a small donation to support the future development."
1667
 
1668
- #: includes/options/wpglobus-options-header.php:32
1669
  msgid "Thank you!"
1670
  msgstr "Thank you!"
1671
 
1672
- #: includes/options/wpglobus-options-header.php:55
1673
  msgid "WPGlobus Plus!"
1674
  msgstr "WPGlobus Plus!"
1675
 
1676
- #: includes/options/wpglobus-options-header.php:58
1677
  msgid ""
1678
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1679
  "separate publishing and more! "
@@ -1681,29 +1267,23 @@ msgstr ""
1681
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1682
  "separate publishing and more! "
1683
 
1684
- #: includes/options/wpglobus-options-header.php:64
1685
  msgid "Get WPGlobus Plus now!"
1686
  msgstr "Get WPGlobus Plus now!"
1687
 
1688
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1689
  msgid ""
1690
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1691
  "the current version."
1692
  msgstr ""
1693
 
1694
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1695
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1696
  msgstr ""
1697
 
1698
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1699
  msgid "WPGlobus warning: "
1700
  msgstr ""
1701
 
1702
- #: wpglobus.php:13
1703
  msgid "https://github.com/WPGlobus/WPGlobus"
1704
  msgstr "https://github.com/WPGlobus/WPGlobus"
1705
 
1706
- #: wpglobus.php:14
1707
  msgid ""
1708
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1709
  "widgets and even custom fields - in multiple languages!"
@@ -1711,7 +1291,6 @@ msgstr ""
1711
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1712
  "widgets and even custom fields - in multiple languages!"
1713
 
1714
- #: wpglobus.php:19
1715
  msgid "https://wpglobus.com/"
1716
  msgstr "https://wpglobus.com/"
1717
 
17
  "Content-Transfer-Encoding: 8bit\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
 
 
 
 
 
 
20
  msgid "Guide"
21
  msgstr "Guide"
22
 
 
 
23
  msgid "WPGlobus Help Desk"
24
  msgstr "WPGlobus Help Desk"
25
 
 
 
 
 
 
 
 
26
  msgid "Add-ons"
27
  msgstr "Add-ons"
28
 
 
29
  msgid "Quick Start"
30
  msgstr "Quick Start"
31
 
 
 
32
  msgid "FAQ"
33
  msgstr "FAQ"
34
 
 
35
  msgid ""
36
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
37
  msgstr ""
38
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
39
 
 
40
  msgid ""
41
  "The mbstring extension is required for the full UTF-8 compatibility and "
42
  "better performance. Without it, some parts of WordPress and WPGlobus may "
48
  "function incorrectly. Please contact your hosting company or systems "
49
  "administrator."
50
 
 
51
  msgid "Go to WPGlobus Settings"
52
  msgstr "Go to WPGlobus Settings"
53
 
 
54
  msgid "Easy as 1-2-3:"
55
  msgstr "Easy as 1-2-3:"
56
 
 
57
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
58
  msgstr "Go to WPGlobus admin menu and choose the countries / languages;"
59
 
 
60
  msgid ""
61
  "Enter the translations to the posts, pages, categories, tags and menus using "
62
  "a clean and simple interface."
64
  "Enter the translations to the posts, pages, categories, tags and menus using "
65
  "a clean and simple interface."
66
 
 
67
  msgid ""
68
  "Switch languages at the front-end using a drop-down menu with language names "
69
  "and country flags."
71
  "Switch languages at the front-end using a drop-down menu with language names "
72
  "and country flags."
73
 
 
74
  msgid "Links:"
75
  msgstr "Links:"
76
 
 
77
  msgid "FAQs"
78
  msgstr "FAQs"
79
 
 
80
  msgid "Contact Us"
81
  msgstr "Contact Us"
82
 
 
83
  msgid "Please give us 5 stars!"
84
  msgstr "Please give us 5 stars!"
85
 
 
86
  msgid "WPGlobus does not translate texts automatically!"
87
  msgstr "WPGlobus does not translate texts automatically!"
88
 
 
89
  msgid ""
90
  "There are many translation companies and individual translators who can help "
91
  "you write and proofread the texts."
93
  "There are many translation companies and individual translators who can help "
94
  "you write and proofread the texts."
95
 
 
96
  msgid ""
97
  "When you choose a translator, please look at their native language, country "
98
  "of residence, specialization and knowledge of WordPress."
101
  "of residence, specialization and knowledge of WordPress."
102
 
103
  #. translators: %s are used to insert HTML link. Keep them in place.
 
104
  msgid ""
105
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
106
  "website. This is not an endorsement, just a courtesy. Please contact them "
110
  "website. This is not an endorsement, just a courtesy. Please contact them "
111
  "directly and let us know how did it work for you!"
112
 
 
113
  msgid "Important notes:"
114
  msgstr "Important notes:"
115
 
 
116
  msgid ""
117
  "WPGlobus only supports the localization URLs in the form of <code>example."
118
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
122
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
123
  "com</code> and language queries <code>example.com?lang=xx</code>."
124
 
 
125
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
126
  msgstr "Some themes and plugins are <strong>not multilingual-ready</strong>."
127
 
 
128
  msgid ""
129
  "They might display some texts with no translation, or with all languages "
130
  "mixed together."
133
  "mixed together."
134
 
135
  #. translators: %s are used to insert HTML link. Keep them in place.
 
136
  msgid ""
137
  "Please contact the theme / plugin author. If they are unable to assist, "
138
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
140
  "Please contact the theme / plugin author. If they are unable to assist, "
141
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
142
 
 
143
  msgid "Language was set on your profile page"
144
  msgstr ""
145
 
 
146
  msgid "Add"
147
  msgstr "Add"
148
 
 
 
149
  msgid "Multilingual Everything!"
150
  msgstr "Multilingual Everything!"
151
 
 
 
152
  msgid ""
153
  "WPGlobus is a family of WordPress plugins assisting you in making "
154
  "multilingual WordPress blogs and sites."
156
  "WPGlobus is a family of WordPress plugins assisting you in making "
157
  "multilingual WordPress blogs and sites."
158
 
 
159
  msgid "Remove the WPGlobus settings (not recommended)"
160
  msgstr "Remove the WPGlobus settings (not recommended)"
161
 
 
162
  msgid "Clean-up Tool"
163
  msgstr "Clean-up Tool"
164
 
 
165
  msgid "Support"
166
  msgstr "Support"
167
 
 
168
  msgid ""
169
  "WARNING: this operation is non-reversible. It is strongly recommended that "
170
  "you backup your database before proceeding."
172
  "WARNING: this operation is non-reversible. It is strongly recommended that "
173
  "you backup your database before proceeding."
174
 
 
175
  msgid ""
176
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
177
  "By running it, you will remove ALL translations you have entered to your "
187
  "might end up with empty titles, no content, no excerpts, blank comments and "
188
  "so on."
189
 
 
190
  msgid ""
191
  "Make sure that your active theme does not have any code related to WPGlobus. "
192
  "Such code could be added by you or by a 3rd party developer. If that code "
195
  msgstr ""
196
 
197
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
 
198
  msgid ""
199
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
200
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
201
  msgstr ""
202
 
 
203
  msgid "You are about to clean the content of the following database tables:"
204
  msgstr "You are about to clean the content of the following database tables:"
205
 
 
206
  msgid "The operations log"
207
  msgstr "The operations log"
208
 
 
209
  msgid ""
210
  "We are going to write a detailed log of all the database changes performed. "
211
  "It should help in the case you need to restore something important. The log "
215
  "It should help in the case you need to restore something important. The log "
216
  "will be written to the file:"
217
 
 
218
  msgid ""
219
  "Uncheck if you do not want to write the operations log (we recommend to keep "
220
  "it checked)"
222
  "Uncheck if you do not want to write the operations log (we recommend to keep "
223
  "it checked)"
224
 
 
225
  msgid "You have been warned..."
226
  msgstr "You have been warned..."
227
 
 
228
  msgid "Please confirm by checking the box below:"
229
  msgstr "Please confirm by checking the box below:"
230
 
 
231
  msgid ""
232
  "I have read and understood everything written on this page. I am aware that "
233
  "by using this tool I may loose some content of my website. I have made a "
239
  "database backup and know how to restore it if necessary. I am fully "
240
  "responsible for the results."
241
 
 
242
  msgid "YES, I CONFIRM"
243
  msgstr "YES, I CONFIRM"
244
 
 
245
  msgid "Process with the Clean-up"
246
  msgstr "Process with the Clean-up"
247
 
 
 
 
 
248
  msgid "Default"
249
  msgstr "Default"
250
 
 
251
  msgid "Section"
252
  msgstr "Section"
253
 
 
254
  msgid "Show all sections"
255
  msgstr "Show all sections"
256
 
 
257
  msgid "Save &amp; Reload"
258
  msgstr "Save &amp; Reload"
259
 
 
 
 
260
  msgid "WPGlobus"
261
  msgstr "WPGlobus"
262
 
 
263
  msgid ""
264
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
265
  msgstr ""
266
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
267
 
 
268
  msgid "Fields Settings"
269
  msgstr "Fields Settings"
270
 
 
271
  msgid "WPGlobus Settings"
272
  msgstr "WPGlobus Settings"
273
 
 
274
  msgid "Help"
275
  msgstr "Help"
276
 
 
 
277
  msgid "Languages"
278
  msgstr "Languages"
279
 
 
 
280
  msgid "Enabled Languages"
281
  msgstr "Enabled Languages"
282
 
 
 
283
  msgid "These languages are currently enabled on your site."
284
  msgstr "These languages are currently enabled on your site."
285
 
 
 
286
  msgid "Choose a language you would like to enable."
287
  msgstr ""
288
 
 
289
  msgid "Press the [Save & Publish] button to confirm."
290
  msgstr ""
291
 
292
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
293
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
 
 
294
  msgid "or Add new Language %1$s here %2$s"
295
  msgstr "or Add new Language %1$s here %2$s"
296
 
 
 
297
  msgid "Add Languages"
298
  msgstr "Add Languages"
299
 
 
 
300
  msgid "Language Selector Mode"
301
  msgstr "Language Selector Mode"
302
 
 
 
303
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
304
  msgstr "Two-letter Code with flag (en, ru, it, etc.)"
305
 
 
 
306
  msgid "Full Name (English, Russian, Italian, etc.)"
307
  msgstr "Full Name (English, Russian, Italian, etc.)"
308
 
 
 
309
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
310
  msgstr "Full Name with flag (English, Russian, Italian, etc.)"
311
 
 
 
312
  msgid "Flags only"
313
  msgstr "Flags only"
314
 
 
 
315
  msgid ""
316
  "Choose the way language name and country flag are shown in the drop-down menu"
317
  msgstr ""
318
  "Choose the way language name and country flag are shown in the drop-down menu"
319
 
 
320
  msgid "select navigation menu"
321
  msgstr ""
322
 
 
 
 
323
  msgid "Language Selector Menu"
324
  msgstr "Language Selector Menu"
325
 
 
 
 
326
  msgid "Choose the navigation menu where the language selector will be shown"
327
  msgstr "Choose the navigation menu where the language selector will be shown"
328
 
 
329
  msgid "No menus have been created yet. Create some."
330
  msgstr "No menus have been created yet. Create some."
331
 
 
 
332
  msgid "\"All Pages\" menus Language selector"
333
  msgstr "\"All Pages\" menus Language selector"
334
 
 
 
335
  msgid ""
336
  "Adds language selector to the menus that automatically list all existing "
337
  "pages (using `wp_list_pages`)"
339
  "Adds language selector to the menus that automatically list all existing "
340
  "pages (using `wp_list_pages`)"
341
 
 
 
342
  msgid "Custom CSS"
343
  msgstr "Custom CSS"
344
 
 
345
  msgid ""
346
  "Here you can enter the CSS rules to adjust the language selector menu for "
347
  "your theme. Look at the examples in the `style-samples.css` file."
349
  "Here you can enter the CSS rules to adjust the language selector menu for "
350
  "your theme. Look at the examples in the `style-samples.css` file."
351
 
 
352
  msgid "Post types"
353
  msgstr "Post types"
354
 
 
355
  msgid "Uncheck to disable WPGlobus"
356
  msgstr "Uncheck to disable WPGlobus"
357
 
 
 
358
  msgid "Redirect"
359
  msgstr "Redirect"
360
 
 
 
361
  msgid "Choose the language automatically, based on:"
362
  msgstr "Choose the language automatically, based on:"
363
 
 
 
364
  msgid "Preferred language set in the browser"
365
  msgstr "Preferred language set in the browser"
366
 
 
 
367
  msgid ""
368
  "When a user comes to the site for the first time, try to find the best "
369
  "matching language version of the page."
371
  "When a user comes to the site for the first time, try to find the best "
372
  "matching language version of the page."
373
 
 
 
 
 
374
  msgid "Custom JS Code"
375
  msgstr "Custom JS Code"
376
 
 
 
377
  msgid "Title"
378
  msgstr "Title"
379
 
 
380
  msgid "(Paste your JS code here.)"
381
  msgstr "(Paste your JS code here.)"
382
 
 
383
  msgid ""
384
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
385
  "version 4.9 or later."
386
  msgstr ""
387
 
 
388
  msgid "With your version of WordPress, please use the"
389
  msgstr ""
390
 
 
391
  msgid "WPGlobus Settings page"
392
  msgstr ""
393
 
 
394
  msgid "Label"
395
  msgstr "Label"
396
 
 
397
  msgid "Description"
398
  msgstr "Description"
399
 
 
400
  msgid ""
401
  "Here you can specify which fields should be considered multilingual by "
402
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
404
  "Here you can specify which fields should be considered multilingual by "
405
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
406
 
 
 
407
  msgid "Thank you for installing WPGlobus!"
408
  msgstr "Thank you for installing WPGlobus!"
409
 
 
 
410
  msgid "Read About WPGlobus"
411
  msgstr "Read About WPGlobus"
412
 
 
413
  msgid ""
414
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
415
  msgstr ""
416
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
417
 
 
 
418
  msgid ""
419
  "Should you have any questions or comments, please do not hesitate to contact "
420
  "us."
422
  "Should you have any questions or comments, please do not hesitate to contact "
423
  "us."
424
 
 
 
425
  msgid "Sincerely Yours,"
426
  msgstr "Sincerely Yours,"
427
 
 
 
 
428
  msgid "The WPGlobus Team"
429
  msgstr "The WPGlobus Team"
430
 
431
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
432
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
433
  msgid ""
434
  "We would hate to see you go. If something goes wrong, do not uninstall "
435
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
437
  "We would hate to see you go. If something goes wrong, do not uninstall "
438
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
439
 
 
 
440
  msgid ""
441
  "Please note that if you deactivate WPGlobus, your site will show all the "
442
  "languages together, mixed up. You will need to remove all translations, "
448
 
449
  #. translators: %s: link to the Clean-up Tool
450
  #. translators: %s: link to the Clean-up Tool.
 
 
451
  msgid ""
452
  "If there are just a few places, you should edit them manually. To "
453
  "automatically remove all translations at once, you can use the %s. WARNING: "
461
 
462
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
463
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
464
  msgid "%1$sClean-up Tool%2$s"
465
  msgstr "%1$sClean-up Tool%2$s"
466
 
467
  #. translators: %s: name of current theme
 
468
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
469
  msgstr "Sorry, WPGlobus customizer doesn't support current theme %s."
470
 
471
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
472
  msgid "Please use %1$sWPGlobus options page%2$s instead."
473
  msgstr "Please use %1$sWPGlobus options page%2$s instead."
474
 
 
475
  msgid "Expand/Shrink"
476
  msgstr ""
477
 
 
 
478
  msgid "WPGlobus News"
479
  msgstr "WPGlobus News"
480
 
 
 
481
  msgid "Options updated"
482
  msgstr "Options updated"
483
 
 
484
  msgid "Please enter a language code!"
485
  msgstr "Please enter a language code!"
486
 
 
487
  msgid "Language code already exists!"
488
  msgstr "Language code already exists!"
489
 
 
490
  msgid "Please specify the language flag!"
491
  msgstr "Please specify the language flag!"
492
 
 
493
  msgid "Please enter the language name!"
494
  msgstr "Please enter the language name!"
495
 
 
496
  msgid "Please enter the language name in English!"
497
  msgstr "Please enter the language name in English!"
498
 
 
499
  msgid "Please enter the locale!"
500
  msgstr "Please enter the locale!"
501
 
 
502
  msgid "Add Language"
503
  msgstr "Add Language"
504
 
 
 
 
505
  msgid "Delete Language"
506
  msgstr "Delete Language"
507
 
 
508
  msgid "Edit Language"
509
  msgstr "Edit Language"
510
 
 
511
  msgid "Language Code"
512
  msgstr "Language Code"
513
 
 
514
  msgid ""
515
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
516
  msgstr ""
517
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
518
 
 
519
  msgid "Language flag"
520
  msgstr "Language flag"
521
 
 
522
  msgid "Name"
523
  msgstr "Name"
524
 
 
525
  msgid ""
526
  "The name of the language in its native alphabet. (Examples: English, Русский)"
527
  msgstr ""
528
  "The name of the language in its native alphabet. (Examples: English, Русский)"
529
 
 
530
  msgid "Name in English"
531
  msgstr "Name in English"
532
 
 
533
  msgid "The name of the language in English"
534
  msgstr "The name of the language in English"
535
 
 
 
536
  msgid "Locale"
537
  msgstr "Locale"
538
 
 
539
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
540
  msgstr "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
541
 
 
542
  msgid "Are you sure you want to delete?"
543
  msgstr "Are you sure you want to delete?"
544
 
 
545
  msgid "Save Changes"
546
  msgstr "Save Changes"
547
 
 
548
  msgid "Back to the WPGlobus Settings"
549
  msgstr "Back to the WPGlobus Settings"
550
 
 
551
  msgid "Current Version"
552
  msgstr "Current Version"
553
 
 
554
  msgid "Get it now!"
555
  msgstr "Get it now!"
556
 
 
557
  msgid "Premium add-on"
558
  msgstr "Premium add-on"
559
 
 
 
560
  msgid "Installed"
561
  msgstr "Installed"
562
 
563
  #. translators: placeholders are for the HTML tags.
 
564
  msgid ""
565
  "If you have already purchased a WPGlobus premium extension, please read "
566
  "%1$sthe installation instructions here%2$s"
567
  msgstr ""
568
 
 
 
569
  msgid "Help Desk"
570
  msgstr "Help Desk"
571
 
 
572
  msgid "Email not sent. Please fill in the entire form."
573
  msgstr ""
574
 
 
575
  msgid ""
576
  "Email not sent. Please verify that your name and email are entered correctly."
577
  msgstr ""
578
 
 
579
  msgid "Email sent."
580
  msgstr ""
581
 
 
582
  msgid "Thank you for using WPGlobus!"
583
  msgstr "Thank you for using WPGlobus!"
584
 
 
585
  msgid "Our Support Team is here to answer your questions or concerns."
586
  msgstr "Our Support Team is here to answer your questions or concerns."
587
 
 
588
  msgid "To help us serve you better:"
589
  msgstr "To help us serve you better:"
590
 
 
591
  msgid ""
592
  "Please check if the problem persists if you switch to a standard WordPress "
593
  "theme."
595
  "Please check if the problem persists if you switch to a standard WordPress "
596
  "theme."
597
 
 
598
  msgid ""
599
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
600
  msgstr ""
601
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
602
 
 
603
  msgid "Please fill in and submit the contact form:"
604
  msgstr ""
605
 
 
606
  msgid "Please make sure the email address is correct."
607
  msgstr ""
608
 
 
609
  msgid "Subject"
610
  msgstr "Subject"
611
 
 
612
  msgid "Short description of the problem"
613
  msgstr ""
614
 
 
615
  msgid "Detailed description"
616
  msgstr ""
617
 
 
618
  msgid "Technical Information"
619
  msgstr "Technical Information"
620
 
 
621
  msgid "This information helps us to find the problem source"
622
  msgstr ""
623
 
 
624
  msgid ""
625
  "Alternatively, please email %s. Do not forget to copy and paste the "
626
  "technical information to your email message."
627
  msgstr ""
628
 
 
629
  msgid "WPGlobus Recommends:"
630
  msgstr "WPGlobus Recommends:"
631
 
 
 
632
  msgid "WPGlobus for WooCommerce"
633
  msgstr "WPGlobus for WooCommerce"
634
 
 
635
  msgid ""
636
  "Translate product titles and descriptions, product categories, tags and "
637
  "attributes."
639
  "Translate product titles and descriptions, product categories, tags and "
640
  "attributes."
641
 
 
642
  msgid "Get it now:"
643
  msgstr "Get it now:"
644
 
 
645
  msgid "WooCommerce Multi-Currency"
646
  msgstr ""
647
 
 
648
  msgid "Accept multiple currencies in your online store!"
649
  msgstr "Accept multiple currencies in your online store!"
650
 
 
 
651
  msgid "Check it out:"
652
  msgstr "Check it out:"
653
 
 
654
  msgid "To translate permalinks, please activate the module Slug."
655
  msgstr ""
656
 
 
657
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
658
  msgstr ""
659
 
 
 
660
  msgid "Save draft before using extra language."
661
  msgstr ""
662
 
 
663
  msgid "Builder"
664
  msgstr ""
665
 
 
666
  msgid "Сompatibility Settings"
667
  msgstr ""
668
 
669
  #. translators: ON/OFF status of WPGlobus on the edit pages.
670
  #. translators: ON/OFF status of WPGlobus on the edit pages.
 
 
671
  msgid "ON"
672
  msgstr ""
673
 
 
 
674
  msgid "Turn off"
675
  msgstr ""
676
 
 
 
677
  msgid "OFF"
678
  msgstr ""
679
 
 
 
680
  msgid "Turn on"
681
  msgstr ""
682
 
 
683
  msgid "Elementor"
684
  msgstr ""
685
 
 
686
  msgid "WPGlobus languages"
687
  msgstr ""
688
 
 
689
  msgid "current"
690
  msgstr ""
691
 
 
692
  msgid ""
693
  "WPGlobus provides multilingual support for Elementor only when the option "
694
  "%1$s%2$s%3$s is set to %4$s."
695
  msgstr ""
696
 
 
697
  msgid "Before switching the language, please save draft or publish."
698
  msgstr ""
699
 
700
  #. translators: Metabox title FOR language.
 
701
  msgctxt "filter__seo_meta_box_title"
702
  msgid "for"
703
  msgstr ""
704
 
 
705
  msgid "Page is being reloaded. Please wait..."
706
  msgstr ""
707
 
 
708
  msgid ""
709
  "Before switching the language, please save draft or publish, then reload "
710
  "page."
711
  msgstr ""
712
 
 
713
  msgid ""
714
  "WPGlobus provides multilingual support for Elementor only when the option "
715
  "`CSS Print Method` is set to `External File`."
716
  msgstr ""
717
 
 
718
  msgid "Open Elementor Settings page"
719
  msgstr ""
720
 
 
721
  msgid "WPGlobus widget"
722
  msgstr "WPGlobus widget"
723
 
 
724
  msgid "Add language switcher"
725
  msgstr "Add language switcher"
726
 
 
727
  msgid "Flags"
728
  msgstr "Flags"
729
 
 
730
  msgid "List"
731
  msgstr "List"
732
 
 
733
  msgid "List with flags"
734
  msgstr "List with flags"
735
 
 
736
  msgid "Select"
737
  msgstr "Select"
738
 
 
739
  msgid "Select with language code"
740
  msgstr "Select with language code"
741
 
 
742
  msgid "Dropdown"
743
  msgstr "Dropdown"
744
 
 
745
  msgid "Dropdown with flags"
746
  msgstr "Dropdown with flags"
747
 
 
748
  msgid "Selector type"
749
  msgstr "Selector type"
750
 
 
751
  msgid "You cannot disable the main language."
752
  msgstr "You cannot disable the main language."
753
 
 
754
  msgid "Need a multilingual slug?"
755
  msgstr "Need a multilingual slug?"
756
 
 
757
  msgid "*) Available after the menu is saved."
758
  msgstr "*) Available after the menu is saved."
759
 
 
760
  msgid "You must enable Pretty Permalinks to use WPGlobus."
761
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
762
 
 
763
  msgid ""
764
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
765
  "default option."
767
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
768
  "default option."
769
 
 
770
  msgid "Language Selector Menu Style"
771
  msgstr ""
772
 
 
 
 
773
  msgid "WPGlobus Plus"
774
  msgstr ""
775
 
 
776
  msgid "Drop-down languages menu or Flat (in one line)"
777
  msgstr ""
778
 
 
779
  msgid "Do not change"
780
  msgstr ""
781
 
 
782
  msgid "Drop-down (vertical)"
783
  msgstr ""
784
 
 
785
  msgid "Flat (horizontal)"
786
  msgstr ""
787
 
 
788
  msgid ""
789
  "If you see this message then your browser may not display the WPGlobus "
790
  "Settings panel properly. Please try another browser."
791
  msgstr ""
792
 
 
 
793
  msgid "Сompatibility"
794
  msgstr ""
795
 
796
  #. translators: placeholders for "strong" tags.
 
797
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
798
  msgstr ""
799
 
800
  #. translators: placeholders for "strong" tags.
 
801
  msgid ""
802
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
803
  "the language attributes: name, code, flag icon, etc."
804
  msgstr ""
805
 
 
806
  msgid "Important notes"
807
  msgstr ""
808
 
809
  #. translators: placeholders for "strong" tags.
 
810
  msgid "Version %1$s1.9.17%2$s "
811
  msgstr ""
812
 
813
  #. translators: placeholders for "strong" tags.
 
814
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
815
  msgstr ""
816
 
817
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
818
  msgid ""
819
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
820
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
821
  msgstr ""
822
 
823
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
824
  msgid ""
825
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
826
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
827
  msgstr ""
828
 
829
  #. translators: placeholders for "strong" tags.
 
830
  msgid "Version %1$s2.2.11%2$s "
831
  msgstr ""
832
 
 
833
  msgid "Starting from this version"
834
  msgstr ""
835
 
836
  #. translators: placeholders for "strong" tags.
 
837
  msgid ""
838
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
839
  "(CPT)."
840
  msgstr ""
841
 
842
  #. translators: placeholders for "strong" tags.
 
843
  msgid ""
844
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
845
  "the %1$s[%3$s]%2$s tab."
846
  msgstr ""
847
 
 
848
  msgid "Welcome!"
849
  msgstr "Welcome!"
850
 
 
851
  msgid "Deactivating / Uninstalling"
852
  msgstr "Deactivating / Uninstalling"
853
 
 
854
  msgid "Uninstall"
855
  msgstr ""
856
 
 
857
  msgid "All add-ons"
858
  msgstr ""
859
 
 
860
  msgid "Mobile Menu"
861
  msgstr ""
862
 
 
863
  msgid "Language Widgets"
864
  msgstr ""
865
 
 
866
  msgid "We Recommend..."
867
  msgstr ""
868
 
 
869
  msgid ""
870
  "Our premium add-on, WPGlobus Plus, will add several features to your "
871
  "website, such as:"
872
  msgstr ""
873
 
 
874
  msgid ""
875
  "- Ability to write a post in one language and immediately publish it, not "
876
  "waiting for the translation to other languages;"
877
  msgstr ""
878
 
 
879
  msgid "- Set different URLs for each translation;"
880
  msgstr ""
881
 
 
882
  msgid ""
883
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
884
  "for each translation;"
885
  msgstr ""
886
 
 
887
  msgid "- and more..."
888
  msgstr ""
889
 
 
 
 
890
  msgid "Click here to download"
891
  msgstr ""
892
 
 
893
  msgid ""
894
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
895
  "translate your blog posts and pages to many languages."
896
  msgstr ""
897
 
 
898
  msgid "The next step is to translate your WooCommerce-based store!"
899
  msgstr ""
900
 
 
901
  msgid ""
902
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
903
  "translate product titles and descriptions, categories, tags and attributes."
904
  msgstr ""
905
 
 
906
  msgid "Multi-currency"
907
  msgstr ""
908
 
 
909
  msgid ""
910
  "Your WooCommerce-powered store is set to show prices and accept payments in "
911
  "a single currency only."
912
  msgstr ""
913
 
 
914
  msgid ""
915
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
916
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
918
  "positioning for global growth!"
919
  msgstr ""
920
 
 
921
  msgid ""
922
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
923
  "re-calculating prices on-the-fly."
924
  msgstr ""
925
 
 
926
  msgid "WPGlobus Premium Add-ons"
927
  msgstr ""
928
 
 
929
  msgid ""
930
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
931
  "you will be able to:"
932
  msgstr ""
933
 
 
934
  msgid ""
935
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
936
  "моя-страница and so on);"
937
  msgstr ""
938
 
 
939
  msgid ""
940
  "Postpone translation to some languages and <strong>publish only the "
941
  "translated texts</strong>;"
942
  msgstr ""
943
 
 
944
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
945
  msgstr ""
946
 
 
947
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
948
  msgstr ""
949
 
 
950
  msgid ""
951
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
952
  "strong>;"
953
  msgstr ""
954
 
 
955
  msgid "...and more."
956
  msgstr ""
957
 
 
958
  msgid "Click here to visit the WPGlobus Store"
959
  msgstr ""
960
 
 
961
  msgid "Select a language"
962
  msgstr "Select a language"
963
 
964
  #. translators: %3$s placeholder for the icon (actual picture).
 
965
  msgid ""
966
  "Place the %1$smain language%2$s of your site at the top of the list by "
967
  "dragging the %3$s icons."
968
  msgstr ""
969
 
970
  #. translators: placeholders for the "strong" HTML tags.
 
971
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
972
  msgstr ""
973
 
974
  #. translators: placeholders for the "strong" HTML tags.
 
975
  msgid "%1$sAdd%2$s more languages using the section below."
976
  msgstr ""
977
 
 
978
  msgid "When done, click the [Save Changes] button."
979
  msgstr "When done, click the [Save Changes] button."
980
 
981
  #. translators: %s - placeholder for the "Save Changes" button text.
 
982
  msgid "Press the %s button to confirm."
983
  msgstr ""
984
 
985
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
 
986
  msgid "-- none --"
987
  msgstr ""
988
 
 
989
  msgid "All menus"
990
  msgstr ""
991
 
 
992
  msgid "Instructions:"
993
  msgstr "Instructions:"
994
 
 
995
  msgid "(Found in some themes)"
996
  msgstr "(Found in some themes)"
997
 
 
998
  msgid "Enable"
999
  msgstr "Enable"
1000
 
 
1001
  msgid "Languages table"
1002
  msgstr "Languages table"
1003
 
 
1004
  msgid "Use this table to add, edit or delete languages."
1005
  msgstr "Use this table to add, edit or delete languages."
1006
 
 
1007
  msgid "NOTE: you cannot remove the main language."
1008
  msgstr "NOTE: you cannot remove the main language."
1009
 
 
1010
  msgid "WPGlobus is enabled on these Post Types"
1011
  msgstr ""
1012
 
 
1013
  msgid "Uncheck to disable"
1014
  msgstr ""
1015
 
 
1016
  msgid ""
1017
  "Please note that there are post types, which status is managed by other "
1018
  "plugins and cannot be changed here."
1019
  msgstr ""
1020
 
 
1021
  msgid "Post Types"
1022
  msgstr ""
1023
 
 
1024
  msgid ""
1025
  "You should put here only the code provided by WPGlobus Support. Do not write "
1026
  "anything else in the sections below as it might break the functionality of "
1027
  "your website!"
1028
  msgstr ""
1029
 
 
1030
  msgid "Custom Code"
1031
  msgstr ""
1032
 
 
 
 
1033
  msgid "Enabled"
1034
  msgstr "Enabled"
1035
 
 
1036
  msgid "Builders support"
1037
  msgstr ""
1038
 
 
1039
  msgid "Builder mode is enabled on these Post Types"
1040
  msgstr ""
1041
 
 
1042
  msgid "Old fashioned language switcher"
1043
  msgstr ""
1044
 
 
1045
  msgid "Block Editor"
1046
  msgstr ""
1047
 
 
1048
  msgid "Block Editor Options"
1049
  msgstr ""
1050
 
 
1051
  msgid ""
1052
  "With the current settings, you will see the following lines in the section "
1053
  "HEAD of your site pages"
1054
  msgstr ""
1055
 
 
1056
  msgid "(example for two languages)"
1057
  msgstr ""
1058
 
 
1059
  msgid ""
1060
  "Tell search engines about localized versions of your pages using the "
1061
  "hreflang tag"
1062
  msgstr ""
1063
 
 
1064
  msgid "Output the hreflang tag as"
1065
  msgstr ""
1066
 
 
1067
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1068
  msgstr ""
1069
 
 
1070
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1071
  msgstr ""
1072
 
 
1073
  msgid "Language code only (en, ru, etc.)"
1074
  msgstr ""
1075
 
 
1076
  msgid "Use the code `x-default` for the main language"
1077
  msgstr ""
1078
 
 
1079
  msgid "Multilingual SEO"
1080
  msgstr ""
1081
 
 
1082
  msgid "Multilingual SEO Options"
1083
  msgstr ""
1084
 
 
1085
  msgid ""
1086
  "With WPGlobus, you can get translations for posts and pages using REST API."
1087
  msgstr ""
1088
 
 
 
 
 
1089
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1090
  msgstr ""
1091
 
 
1092
  msgid ""
1093
  "For demonstration, you can try the first post that WordPress creates at the "
1094
  "initial installation."
1095
  msgstr ""
1096
 
 
1097
  msgid ""
1098
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1099
  "information."
1100
  msgstr ""
1101
 
 
1102
  msgid ""
1103
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1104
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1105
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1106
  msgstr ""
1107
 
 
1108
  msgid "Description:"
1109
  msgstr ""
1110
 
 
 
1111
  msgid "REST API"
1112
  msgstr ""
1113
 
 
1114
  msgid "Translate strings"
1115
  msgstr ""
1116
 
 
1117
  msgid "item"
1118
  msgstr "item"
1119
 
 
1120
  msgid "items"
1121
  msgstr "items"
1122
 
 
1123
  msgid "Code"
1124
  msgstr "Code"
1125
 
 
1126
  msgid "Edit"
1127
  msgstr "Edit"
1128
 
 
1129
  msgid "Delete"
1130
  msgstr "Delete"
1131
 
 
1132
  msgid "File"
1133
  msgstr "File"
1134
 
 
1135
  msgid "Flag"
1136
  msgstr "Flag"
1137
 
 
1138
  msgid "Language name"
1139
  msgstr "Language name"
1140
 
 
1141
  msgid "English language name"
1142
  msgstr "English language name"
1143
 
 
1144
  msgid "No items found"
1145
  msgstr "No items found"
1146
 
 
1147
  msgid "Add new Language"
1148
  msgstr "Add new Language"
1149
 
 
1150
  msgid "No items of this type were found."
1151
  msgstr "No items of this type were found."
1152
 
 
1153
  msgid "Select an item"
1154
  msgstr "Select an item"
1155
 
 
1156
  msgid "Multilingual support of this add-on is currently in Beta stage."
1157
  msgstr ""
1158
 
 
1159
  msgid "We do not recommend using it on production sites."
1160
  msgstr ""
1161
 
 
1162
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1163
  msgstr ""
1164
 
 
1165
  msgid "WordPress version"
1166
  msgstr ""
1167
 
 
1168
  msgid "In the WordPress core"
1169
  msgstr ""
1170
 
 
1171
  msgid "Core"
1172
  msgstr ""
1173
 
 
 
1174
  msgid "Current version"
1175
  msgstr ""
1176
 
 
 
1177
  msgid "Stage"
1178
  msgstr ""
1179
 
 
 
1180
  msgid "Status"
1181
  msgstr "Status"
1182
 
 
1183
  msgid "Block editor"
1184
  msgstr ""
1185
 
 
1186
  msgid "production"
1187
  msgstr ""
1188
 
 
1189
  msgid "List of supported add-ons"
1190
  msgstr ""
1191
 
 
1192
  msgid "Add-on"
1193
  msgstr ""
1194
 
 
1195
  msgid "Supported minimum version"
1196
  msgstr ""
1197
 
 
1198
  msgid "Not installed"
1199
  msgstr ""
1200
 
 
1201
  msgid "Installed, inactive"
1202
  msgstr ""
1203
 
 
1204
  msgid "Active"
1205
  msgstr "Active"
1206
 
 
1207
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1208
  msgstr ""
1209
 
 
1210
  msgid "However, some themes do not follow all WordPress standards strictly."
1211
  msgstr ""
1212
 
 
1213
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1214
  msgstr ""
1215
 
 
1216
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1217
  msgstr ""
1218
 
 
1219
  msgid ""
1220
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1221
  "With those themes, WPGlobus Customizer is switched off by default"
1222
  msgstr ""
1223
 
 
1224
  msgid "The currently active theme is"
1225
  msgstr ""
1226
 
 
1227
  msgid "In the current version, WPGlobus Customizer does not support"
1228
  msgstr ""
1229
 
 
1230
  msgid "translation of the navigation menus"
1231
  msgstr ""
1232
 
 
1233
  msgid "to translate, please go to"
1234
  msgstr ""
1235
 
 
1236
  msgid "Go to Customizer"
1237
  msgstr ""
1238
 
 
1239
  msgid "is undefined"
1240
  msgstr ""
1241
 
 
1242
  msgid "is set to"
1243
  msgstr ""
1244
 
 
1245
  msgid "by adding to the file wp-config.php"
1246
  msgstr ""
1247
 
 
1248
  msgid "now"
1249
  msgstr ""
1250
 
 
1251
  msgid "We rely on your support!"
1252
  msgstr "We rely on your support!"
1253
 
 
1254
  msgid "Please consider a small donation to support the future development."
1255
  msgstr "Please consider a small donation to support the future development."
1256
 
 
1257
  msgid "Thank you!"
1258
  msgstr "Thank you!"
1259
 
 
1260
  msgid "WPGlobus Plus!"
1261
  msgstr "WPGlobus Plus!"
1262
 
 
1263
  msgid ""
1264
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1265
  "separate publishing and more! "
1267
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1268
  "separate publishing and more! "
1269
 
 
1270
  msgid "Get WPGlobus Plus now!"
1271
  msgstr "Get WPGlobus Plus now!"
1272
 
 
1273
  msgid ""
1274
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1275
  "the current version."
1276
  msgstr ""
1277
 
 
1278
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1279
  msgstr ""
1280
 
 
1281
  msgid "WPGlobus warning: "
1282
  msgstr ""
1283
 
 
1284
  msgid "https://github.com/WPGlobus/WPGlobus"
1285
  msgstr "https://github.com/WPGlobus/WPGlobus"
1286
 
 
1287
  msgid ""
1288
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1289
  "widgets and even custom fields - in multiple languages!"
1291
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1292
  "widgets and even custom fields - in multiple languages!"
1293
 
 
1294
  msgid "https://wpglobus.com/"
1295
  msgstr "https://wpglobus.com/"
1296
 
languages/wpglobus-en_CA.po CHANGED
@@ -16,45 +16,26 @@ msgstr ""
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
- #: includes/admin/central/class-wpglobus-admin-central.php:122,
20
- #: includes/admin/class-wpglobus-about.php:42,
21
- #: includes/admin/class-wpglobus-about.php:117,
22
- #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr "Guide"
26
 
27
- #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr "WPGlobus Help Desk"
31
 
32
- #: includes/admin/central/class-wpglobus-admin-central.php:157,
33
- #: includes/admin/class-wpglobus-about.php:36,
34
- #: includes/admin/class-wpglobus-admin-menu.php:22,
35
- #: includes/admin/class-wpglobus-clean.php:606,
36
- #: includes/admin/class-wpglobus-customize-options.php:1293,
37
- #: includes/admin/class-wpglobus-customize-options.php:1261,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr "Add-ons"
41
 
42
- #: includes/admin/class-wpglobus-about.php:26
43
  msgid "Quick Start"
44
  msgstr "Quick Start"
45
 
46
- #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
51
- #: includes/admin/class-wpglobus-about.php:59
52
  msgid ""
53
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
54
  msgstr ""
55
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
56
 
57
- #: includes/admin/class-wpglobus-about.php:60
58
  msgid ""
59
  "The mbstring extension is required for the full UTF-8 compatibility and "
60
  "better performance. Without it, some parts of WordPress and WPGlobus may "
@@ -66,19 +47,15 @@ msgstr ""
66
  "function incorrectly. Please contact your hosting company or systems "
67
  "administrator."
68
 
69
- #: includes/admin/class-wpglobus-about.php:87
70
  msgid "Go to WPGlobus Settings"
71
  msgstr "Go to WPGlobus Settings"
72
 
73
- #: includes/admin/class-wpglobus-about.php:98
74
  msgid "Easy as 1-2-3:"
75
  msgstr "Easy as 1-2-3:"
76
 
77
- #: includes/admin/class-wpglobus-about.php:101
78
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
79
  msgstr "Go to WPGlobus admin menu and choose the countries / languages;"
80
 
81
- #: includes/admin/class-wpglobus-about.php:102
82
  msgid ""
83
  "Enter the translations to the posts, pages, categories, tags and menus using "
84
  "a clean and simple interface."
@@ -86,7 +63,6 @@ msgstr ""
86
  "Enter the translations to the posts, pages, categories, tags and menus using "
87
  "a clean and simple interface."
88
 
89
- #: includes/admin/class-wpglobus-about.php:103
90
  msgid ""
91
  "Switch languages at the front-end using a drop-down menu with language names "
92
  "and country flags."
@@ -94,27 +70,21 @@ msgstr ""
94
  "Switch languages at the front-end using a drop-down menu with language names "
95
  "and country flags."
96
 
97
- #: includes/admin/class-wpglobus-about.php:111
98
  msgid "Links:"
99
  msgstr "Links:"
100
 
101
- #: includes/admin/class-wpglobus-about.php:119
102
  msgid "FAQs"
103
  msgstr "FAQs"
104
 
105
- #: includes/admin/class-wpglobus-about.php:121
106
  msgid "Contact Us"
107
  msgstr "Contact Us"
108
 
109
- #: includes/admin/class-wpglobus-about.php:123
110
  msgid "Please give us 5 stars!"
111
  msgstr "Please give us 5 stars!"
112
 
113
- #: includes/admin/class-wpglobus-about.php:133
114
  msgid "WPGlobus does not translate texts automatically!"
115
  msgstr "WPGlobus does not translate texts automatically!"
116
 
117
- #: includes/admin/class-wpglobus-about.php:136
118
  msgid ""
119
  "There are many translation companies and individual translators who can help "
120
  "you write and proofread the texts."
@@ -122,7 +92,6 @@ msgstr ""
122
  "There are many translation companies and individual translators who can help "
123
  "you write and proofread the texts."
124
 
125
- #: includes/admin/class-wpglobus-about.php:137
126
  msgid ""
127
  "When you choose a translator, please look at their native language, country "
128
  "of residence, specialization and knowledge of WordPress."
@@ -131,7 +100,6 @@ msgstr ""
131
  "of residence, specialization and knowledge of WordPress."
132
 
133
  #. translators: %s are used to insert HTML link. Keep them in place.
134
- #: includes/admin/class-wpglobus-about.php:143
135
  msgid ""
136
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
137
  "website. This is not an endorsement, just a courtesy. Please contact them "
@@ -141,11 +109,9 @@ msgstr ""
141
  "website. This is not an endorsement, just a courtesy. Please contact them "
142
  "directly and let us know how did it work for you!"
143
 
144
- #: includes/admin/class-wpglobus-about.php:154
145
  msgid "Important notes:"
146
  msgstr "Important notes:"
147
 
148
- #: includes/admin/class-wpglobus-about.php:159
149
  msgid ""
150
  "WPGlobus only supports the localization URLs in the form of <code>example."
151
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
@@ -155,11 +121,9 @@ msgstr ""
155
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
156
  "com</code> and language queries <code>example.com?lang=xx</code>."
157
 
158
- #: includes/admin/class-wpglobus-about.php:162
159
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
160
  msgstr "Some themes and plugins are <strong>not multilingual-ready</strong>."
161
 
162
- #: includes/admin/class-wpglobus-about.php:163
163
  msgid ""
164
  "They might display some texts with no translation, or with all languages "
165
  "mixed together."
@@ -168,7 +132,6 @@ msgstr ""
168
  "mixed together."
169
 
170
  #. translators: %s are used to insert HTML link. Keep them in place.
171
- #: includes/admin/class-wpglobus-about.php:167
172
  msgid ""
173
  "Please contact the theme / plugin author. If they are unable to assist, "
174
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
@@ -176,21 +139,15 @@ msgstr ""
176
  "Please contact the theme / plugin author. If they are unable to assist, "
177
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
178
 
179
- #: includes/admin/class-wpglobus-admin-bar-menu.php:124
180
  msgid "Language was set on your profile page"
181
  msgstr ""
182
 
183
- #: includes/admin/class-wpglobus-admin-bar-menu.php:194
184
  msgid "Add"
185
  msgstr "Add"
186
 
187
- #: includes/admin/class-wpglobus-admin-page.php:32,
188
- #: includes/admin/class-wpglobus-clean.php:585
189
  msgid "Multilingual Everything!"
190
  msgstr "Multilingual Everything!"
191
 
192
- #: includes/admin/class-wpglobus-admin-page.php:34,
193
- #: includes/admin/class-wpglobus-clean.php:588
194
  msgid ""
195
  "WPGlobus is a family of WordPress plugins assisting you in making "
196
  "multilingual WordPress blogs and sites."
@@ -198,19 +155,15 @@ msgstr ""
198
  "WPGlobus is a family of WordPress plugins assisting you in making "
199
  "multilingual WordPress blogs and sites."
200
 
201
- #: includes/admin/class-wpglobus-clean.php:232
202
  msgid "Remove the WPGlobus settings (not recommended)"
203
  msgstr "Remove the WPGlobus settings (not recommended)"
204
 
205
- #: includes/admin/class-wpglobus-clean.php:595
206
  msgid "Clean-up Tool"
207
  msgstr "Clean-up Tool"
208
 
209
- #: includes/admin/class-wpglobus-clean.php:609
210
  msgid "Support"
211
  msgstr "Support"
212
 
213
- #: includes/admin/class-wpglobus-clean.php:614
214
  msgid ""
215
  "WARNING: this operation is non-reversible. It is strongly recommended that "
216
  "you backup your database before proceeding."
@@ -218,7 +171,6 @@ msgstr ""
218
  "WARNING: this operation is non-reversible. It is strongly recommended that "
219
  "you backup your database before proceeding."
220
 
221
- #: includes/admin/class-wpglobus-clean.php:619
222
  msgid ""
223
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
224
  "By running it, you will remove ALL translations you have entered to your "
@@ -234,7 +186,6 @@ msgstr ""
234
  "might end up with empty titles, no content, no excerpts, blank comments and "
235
  "so on."
236
 
237
- #: includes/admin/class-wpglobus-clean.php:622
238
  msgid ""
239
  "Make sure that your active theme does not have any code related to WPGlobus. "
240
  "Such code could be added by you or by a 3rd party developer. If that code "
@@ -243,21 +194,17 @@ msgid ""
243
  msgstr ""
244
 
245
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
246
- #: includes/admin/class-wpglobus-clean.php:630
247
  msgid ""
248
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
249
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
250
  msgstr ""
251
 
252
- #: includes/admin/class-wpglobus-clean.php:641
253
  msgid "You are about to clean the content of the following database tables:"
254
  msgstr "You are about to clean the content of the following database tables:"
255
 
256
- #: includes/admin/class-wpglobus-clean.php:649
257
  msgid "The operations log"
258
  msgstr "The operations log"
259
 
260
- #: includes/admin/class-wpglobus-clean.php:652
261
  msgid ""
262
  "We are going to write a detailed log of all the database changes performed. "
263
  "It should help in the case you need to restore something important. The log "
@@ -267,7 +214,6 @@ msgstr ""
267
  "It should help in the case you need to restore something important. The log "
268
  "will be written to the file:"
269
 
270
- #: includes/admin/class-wpglobus-clean.php:662
271
  msgid ""
272
  "Uncheck if you do not want to write the operations log (we recommend to keep "
273
  "it checked)"
@@ -275,15 +221,12 @@ msgstr ""
275
  "Uncheck if you do not want to write the operations log (we recommend to keep "
276
  "it checked)"
277
 
278
- #: includes/admin/class-wpglobus-clean.php:667
279
  msgid "You have been warned..."
280
  msgstr "You have been warned..."
281
 
282
- #: includes/admin/class-wpglobus-clean.php:669
283
  msgid "Please confirm by checking the box below:"
284
  msgstr "Please confirm by checking the box below:"
285
 
286
- #: includes/admin/class-wpglobus-clean.php:671
287
  msgid ""
288
  "I have read and understood everything written on this page. I am aware that "
289
  "by using this tool I may loose some content of my website. I have made a "
@@ -295,152 +238,99 @@ msgstr ""
295
  "database backup and know how to restore it if necessary. I am fully "
296
  "responsible for the results."
297
 
298
- #: includes/admin/class-wpglobus-clean.php:674
299
  msgid "YES, I CONFIRM"
300
  msgstr "YES, I CONFIRM"
301
 
302
- #: includes/admin/class-wpglobus-clean.php:678
303
  msgid "Process with the Clean-up"
304
  msgstr "Process with the Clean-up"
305
 
306
- #: includes/admin/class-wpglobus-customize-options.php:73,
307
- #: includes/admin/class-wpglobus-customize-options.php:100,
308
- #: includes/admin/class-wpglobus-customize-options.php:145,
309
- #: includes/admin/class-wpglobus-customize-options.php:183
310
  msgid "Default"
311
  msgstr "Default"
312
 
313
- #: includes/admin/class-wpglobus-customize-options.php:264
314
  msgid "Section"
315
  msgstr "Section"
316
 
317
- #: includes/admin/class-wpglobus-customize-options.php:277
318
  msgid "Show all sections"
319
  msgstr "Show all sections"
320
 
321
- #: includes/admin/class-wpglobus-customize-options.php:279
322
  msgid "Save &amp; Reload"
323
  msgstr "Save &amp; Reload"
324
 
325
- #: includes/admin/class-wpglobus-customize-options.php:553,
326
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:585,
327
- #: includes/class-wpglobus.php:1284, wpglobus.php:12, wpglobus.php:18
328
  msgid "WPGlobus"
329
  msgstr "WPGlobus"
330
 
331
- #: includes/admin/class-wpglobus-customize-options.php:604
332
  msgid ""
333
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
334
  msgstr ""
335
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
336
 
337
- #: includes/admin/class-wpglobus-customize-options.php:610
338
  msgid "Fields Settings"
339
  msgstr "Fields Settings"
340
 
341
- #: includes/admin/class-wpglobus-customize-options.php:655
342
  msgid "WPGlobus Settings"
343
  msgstr "WPGlobus Settings"
344
 
345
- #: includes/admin/class-wpglobus-customize-options.php:723
346
  msgid "Help"
347
  msgstr "Help"
348
 
349
- #: includes/admin/class-wpglobus-customize-options.php:745,
350
- #: includes/options/class-wpglobus-options.php:1176
351
  msgid "Languages"
352
  msgstr "Languages"
353
 
354
- #: includes/admin/class-wpglobus-customize-options.php:765,
355
- #: includes/options/class-wpglobus-options.php:1189
356
  msgid "Enabled Languages"
357
  msgstr "Enabled Languages"
358
 
359
- #: includes/admin/class-wpglobus-customize-options.php:767,
360
- #: includes/options/class-wpglobus-options.php:1190
361
  msgid "These languages are currently enabled on your site."
362
  msgstr "These languages are currently enabled on your site."
363
 
364
- #: includes/admin/class-wpglobus-customize-options.php:795,
365
- #: includes/options/class-wpglobus-options.php:1148
366
  msgid "Choose a language you would like to enable."
367
  msgstr ""
368
 
369
- #: includes/admin/class-wpglobus-customize-options.php:797
370
  msgid "Press the [Save & Publish] button to confirm."
371
  msgstr ""
372
 
373
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
374
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
375
- #: includes/admin/class-wpglobus-customize-options.php:801,
376
- #: includes/options/class-wpglobus-options.php:1154
377
  msgid "or Add new Language %1$s here %2$s"
378
  msgstr "or Add new Language %1$s here %2$s"
379
 
380
- #: includes/admin/class-wpglobus-customize-options.php:813,
381
- #: includes/options/class-wpglobus-options.php:1203
382
  msgid "Add Languages"
383
  msgstr "Add Languages"
384
 
385
- #: includes/admin/class-wpglobus-customize-options.php:833,
386
- #: includes/options/class-wpglobus-options.php:1211
387
  msgid "Language Selector Mode"
388
  msgstr "Language Selector Mode"
389
 
390
- #: includes/admin/class-wpglobus-customize-options.php:838,
391
- #: includes/options/class-wpglobus-options.php:1214
392
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
393
  msgstr "Two-letter Code with flag (en, ru, it, etc.)"
394
 
395
- #: includes/admin/class-wpglobus-customize-options.php:839,
396
- #: includes/options/class-wpglobus-options.php:1215
397
  msgid "Full Name (English, Russian, Italian, etc.)"
398
  msgstr "Full Name (English, Russian, Italian, etc.)"
399
 
400
- #: includes/admin/class-wpglobus-customize-options.php:841,
401
- #: includes/options/class-wpglobus-options.php:1216
402
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
403
  msgstr "Full Name with flag (English, Russian, Italian, etc.)"
404
 
405
- #: includes/admin/class-wpglobus-customize-options.php:842,
406
- #: includes/options/class-wpglobus-options.php:1217
407
  msgid "Flags only"
408
  msgstr "Flags only"
409
 
410
- #: includes/admin/class-wpglobus-customize-options.php:844,
411
- #: includes/options/class-wpglobus-options.php:1212
412
  msgid ""
413
  "Choose the way language name and country flag are shown in the drop-down menu"
414
  msgstr ""
415
  "Choose the way language name and country flag are shown in the drop-down menu"
416
 
417
- #: includes/admin/class-wpglobus-customize-options.php:879
418
  msgid "select navigation menu"
419
  msgstr ""
420
 
421
- #: includes/admin/class-wpglobus-customize-options.php:915,
422
- #: includes/admin/class-wpglobus-customize-options.php:888,
423
- #: includes/options/class-wpglobus-options.php:1230
424
  msgid "Language Selector Menu"
425
  msgstr "Language Selector Menu"
426
 
427
- #: includes/admin/class-wpglobus-customize-options.php:920,
428
- #: includes/admin/class-wpglobus-customize-options.php:899,
429
- #: includes/options/class-wpglobus-options.php:1231
430
  msgid "Choose the navigation menu where the language selector will be shown"
431
  msgstr "Choose the navigation menu where the language selector will be shown"
432
 
433
- #: includes/admin/class-wpglobus-customize-options.php:898
434
  msgid "No menus have been created yet. Create some."
435
  msgstr "No menus have been created yet. Create some."
436
 
437
- #: includes/admin/class-wpglobus-customize-options.php:940,
438
- #: includes/options/class-wpglobus-options.php:1241
439
  msgid "\"All Pages\" menus Language selector"
440
  msgstr "\"All Pages\" menus Language selector"
441
 
442
- #: includes/admin/class-wpglobus-customize-options.php:943,
443
- #: includes/options/class-wpglobus-options.php:1243
444
  msgid ""
445
  "Adds language selector to the menus that automatically list all existing "
446
  "pages (using `wp_list_pages`)"
@@ -448,12 +338,9 @@ msgstr ""
448
  "Adds language selector to the menus that automatically list all existing "
449
  "pages (using `wp_list_pages`)"
450
 
451
- #: includes/admin/class-wpglobus-customize-options.php:960,
452
- #: includes/options/class-wpglobus-options.php:1356
453
  msgid "Custom CSS"
454
  msgstr "Custom CSS"
455
 
456
- #: includes/admin/class-wpglobus-customize-options.php:964
457
  msgid ""
458
  "Here you can enter the CSS rules to adjust the language selector menu for "
459
  "your theme. Look at the examples in the `style-samples.css` file."
@@ -461,31 +348,21 @@ msgstr ""
461
  "Here you can enter the CSS rules to adjust the language selector menu for "
462
  "your theme. Look at the examples in the `style-samples.css` file."
463
 
464
- #: includes/admin/class-wpglobus-customize-options.php:983
465
  msgid "Post types"
466
  msgstr "Post types"
467
 
468
- #: includes/admin/class-wpglobus-customize-options.php:1091
469
  msgid "Uncheck to disable WPGlobus"
470
  msgstr "Uncheck to disable WPGlobus"
471
 
472
- #: includes/admin/class-wpglobus-customize-options.php:1125,
473
- #: includes/options/class-wpglobus-options.php:1424
474
  msgid "Redirect"
475
  msgstr "Redirect"
476
 
477
- #: includes/admin/class-wpglobus-customize-options.php:1150,
478
- #: includes/options/class-wpglobus-options.php:1419
479
  msgid "Choose the language automatically, based on:"
480
  msgstr "Choose the language automatically, based on:"
481
 
482
- #: includes/admin/class-wpglobus-customize-options.php:1152,
483
- #: includes/options/class-wpglobus-options.php:1409
484
  msgid "Preferred language set in the browser"
485
  msgstr "Preferred language set in the browser"
486
 
487
- #: includes/admin/class-wpglobus-customize-options.php:1153,
488
- #: includes/options/class-wpglobus-options.php:1396
489
  msgid ""
490
  "When a user comes to the site for the first time, try to find the best "
491
  "matching language version of the page."
@@ -493,45 +370,32 @@ msgstr ""
493
  "When a user comes to the site for the first time, try to find the best "
494
  "matching language version of the page."
495
 
496
- #: includes/admin/class-wpglobus-customize-options.php:1214,
497
- #: includes/admin/class-wpglobus-customize-options.php:1234,
498
- #: includes/admin/class-wpglobus-customize-options.php:1192,
499
- #: includes/options/class-wpglobus-options.php:1368
500
  msgid "Custom JS Code"
501
  msgstr "Custom JS Code"
502
 
503
- #: includes/admin/class-wpglobus-customize-options.php:1232,
504
- #: includes/admin/class-wpglobus-customize-options.php:1276
505
  msgid "Title"
506
  msgstr "Title"
507
 
508
- #: includes/admin/class-wpglobus-customize-options.php:1235
509
  msgid "(Paste your JS code here.)"
510
  msgstr "(Paste your JS code here.)"
511
 
512
- #: includes/admin/class-wpglobus-customize-options.php:1184
513
  msgid ""
514
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
515
  "version 4.9 or later."
516
  msgstr ""
517
 
518
- #: includes/admin/class-wpglobus-customize-options.php:1186
519
  msgid "With your version of WordPress, please use the"
520
  msgstr ""
521
 
522
- #: includes/admin/class-wpglobus-customize-options.php:1188
523
  msgid "WPGlobus Settings page"
524
  msgstr ""
525
 
526
- #: includes/admin/class-wpglobus-customize-options.php:1277
527
  msgid "Label"
528
  msgstr "Label"
529
 
530
- #: includes/admin/class-wpglobus-customize-options.php:1281
531
  msgid "Description"
532
  msgstr "Description"
533
 
534
- #: includes/admin/class-wpglobus-customize-options.php:1345
535
  msgid ""
536
  "Here you can specify which fields should be considered multilingual by "
537
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
@@ -539,24 +403,17 @@ msgstr ""
539
  "Here you can specify which fields should be considered multilingual by "
540
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
541
 
542
- #: includes/admin/class-wpglobus-customize-options.php:1351,
543
- #: includes/options/class-wpglobus-options.php:608
544
  msgid "Thank you for installing WPGlobus!"
545
  msgstr "Thank you for installing WPGlobus!"
546
 
547
- #: includes/admin/class-wpglobus-customize-options.php:1355,
548
- #: includes/options/class-wpglobus-options.php:612
549
  msgid "Read About WPGlobus"
550
  msgstr "Read About WPGlobus"
551
 
552
- #: includes/admin/class-wpglobus-customize-options.php:1358
553
  msgid ""
554
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
555
  msgstr ""
556
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
557
 
558
- #: includes/admin/class-wpglobus-customize-options.php:1363,
559
- #: includes/options/class-wpglobus-options.php:648
560
  msgid ""
561
  "Should you have any questions or comments, please do not hesitate to contact "
562
  "us."
@@ -564,21 +421,14 @@ msgstr ""
564
  "Should you have any questions or comments, please do not hesitate to contact "
565
  "us."
566
 
567
- #: includes/admin/class-wpglobus-customize-options.php:1367,
568
- #: includes/options/class-wpglobus-options.php:652
569
  msgid "Sincerely Yours,"
570
  msgstr "Sincerely Yours,"
571
 
572
- #: includes/admin/class-wpglobus-customize-options.php:1369,
573
- #: includes/options/class-wpglobus-options.php:654,
574
- #: includes/options/wpglobus-options-header.php:34
575
  msgid "The WPGlobus Team"
576
  msgstr "The WPGlobus Team"
577
 
578
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
579
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
580
- #: includes/admin/class-wpglobus-customize-options.php:1388,
581
- #: includes/options/class-wpglobus-options.php:689
582
  msgid ""
583
  "We would hate to see you go. If something goes wrong, do not uninstall "
584
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
@@ -586,8 +436,6 @@ msgstr ""
586
  "We would hate to see you go. If something goes wrong, do not uninstall "
587
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
588
 
589
- #: includes/admin/class-wpglobus-customize-options.php:1395,
590
- #: includes/options/class-wpglobus-options.php:696
591
  msgid ""
592
  "Please note that if you deactivate WPGlobus, your site will show all the "
593
  "languages together, mixed up. You will need to remove all translations, "
@@ -599,8 +447,6 @@ msgstr ""
599
 
600
  #. translators: %s: link to the Clean-up Tool
601
  #. translators: %s: link to the Clean-up Tool.
602
- #: includes/admin/class-wpglobus-customize-options.php:1400,
603
- #: includes/options/class-wpglobus-options.php:700
604
  msgid ""
605
  "If there are just a few places, you should edit them manually. To "
606
  "automatically remove all translations at once, you can use the %s. WARNING: "
@@ -614,181 +460,133 @@ msgstr ""
614
 
615
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
616
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
617
- #: includes/admin/class-wpglobus-customize-options.php:1403,
618
- #: includes/options/class-wpglobus-options.php:677
619
  msgid "%1$sClean-up Tool%2$s"
620
  msgstr "%1$sClean-up Tool%2$s"
621
 
622
  #. translators: %s: name of current theme
623
- #: includes/admin/class-wpglobus-customize-options.php:1415
624
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
625
  msgstr "Sorry, WPGlobus customizer doesn't support current theme %s."
626
 
627
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
628
- #: includes/admin/class-wpglobus-customize-options.php:1421
629
  msgid "Please use %1$sWPGlobus options page%2$s instead."
630
  msgstr "Please use %1$sWPGlobus options page%2$s instead."
631
 
632
- #: includes/admin/class-wpglobus-customize-options.php:1485
633
  msgid "Expand/Shrink"
634
  msgstr ""
635
 
636
- #: includes/admin/class-wpglobus-dashboard-news.php:43,
637
- #: includes/admin/class-wpglobus-dashboard-news.php:59
638
  msgid "WPGlobus News"
639
  msgstr "WPGlobus News"
640
 
641
- #: includes/admin/class-wpglobus-language-edit.php:197,
642
- #: includes/admin/class-wpglobus-language-edit.php:192
643
  msgid "Options updated"
644
  msgstr "Options updated"
645
 
646
- #: includes/admin/class-wpglobus-language-edit.php:272
647
  msgid "Please enter a language code!"
648
  msgstr "Please enter a language code!"
649
 
650
- #: includes/admin/class-wpglobus-language-edit.php:276
651
  msgid "Language code already exists!"
652
  msgstr "Language code already exists!"
653
 
654
- #: includes/admin/class-wpglobus-language-edit.php:280
655
  msgid "Please specify the language flag!"
656
  msgstr "Please specify the language flag!"
657
 
658
- #: includes/admin/class-wpglobus-language-edit.php:284
659
  msgid "Please enter the language name!"
660
  msgstr "Please enter the language name!"
661
 
662
- #: includes/admin/class-wpglobus-language-edit.php:288
663
  msgid "Please enter the language name in English!"
664
  msgstr "Please enter the language name in English!"
665
 
666
- #: includes/admin/class-wpglobus-language-edit.php:292
667
  msgid "Please enter the locale!"
668
  msgstr "Please enter the locale!"
669
 
670
- #: includes/admin/class-wpglobus-language-edit.php:354
671
  msgid "Add Language"
672
  msgstr "Add Language"
673
 
674
- #: includes/admin/class-wpglobus-language-edit.php:351,
675
- #: includes/admin/class-wpglobus-language-edit.php:462,
676
- #: includes/admin/class-wpglobus-language-edit.php:455
677
  msgid "Delete Language"
678
  msgstr "Delete Language"
679
 
680
- #: includes/admin/class-wpglobus-language-edit.php:349
681
  msgid "Edit Language"
682
  msgstr "Edit Language"
683
 
684
- #: includes/admin/class-wpglobus-language-edit.php:384
685
  msgid "Language Code"
686
  msgstr "Language Code"
687
 
688
- #: includes/admin/class-wpglobus-language-edit.php:391
689
  msgid ""
690
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
691
  msgstr ""
692
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
693
 
694
- #: includes/admin/class-wpglobus-language-edit.php:396
695
  msgid "Language flag"
696
  msgstr "Language flag"
697
 
698
- #: includes/admin/class-wpglobus-language-edit.php:412
699
  msgid "Name"
700
  msgstr "Name"
701
 
702
- #: includes/admin/class-wpglobus-language-edit.php:417
703
  msgid ""
704
  "The name of the language in its native alphabet. (Examples: English, Русский)"
705
  msgstr ""
706
  "The name of the language in its native alphabet. (Examples: English, Русский)"
707
 
708
- #: includes/admin/class-wpglobus-language-edit.php:422
709
  msgid "Name in English"
710
  msgstr "Name in English"
711
 
712
- #: includes/admin/class-wpglobus-language-edit.php:427
713
  msgid "The name of the language in English"
714
  msgstr "The name of the language in English"
715
 
716
- #: includes/admin/class-wpglobus-language-edit.php:432,
717
- #: includes/options/fields/table/class-wpglobus-languages-table.php:115
718
  msgid "Locale"
719
  msgstr "Locale"
720
 
721
- #: includes/admin/class-wpglobus-language-edit.php:437
722
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
723
  msgstr "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
724
 
725
- #: includes/admin/class-wpglobus-language-edit.php:460
726
  msgid "Are you sure you want to delete?"
727
  msgstr "Are you sure you want to delete?"
728
 
729
- #: includes/admin/class-wpglobus-language-edit.php:447
730
  msgid "Save Changes"
731
  msgstr "Save Changes"
732
 
733
- #: includes/admin/class-wpglobus-language-edit.php:470
734
  msgid "Back to the WPGlobus Settings"
735
  msgstr "Back to the WPGlobus Settings"
736
 
737
- #: includes/admin/class-wpglobus-plugin-install.php:308
738
  msgid "Current Version"
739
  msgstr "Current Version"
740
 
741
- #: includes/admin/class-wpglobus-plugin-install.php:309
742
  msgid "Get it now!"
743
  msgstr "Get it now!"
744
 
745
- #: includes/admin/class-wpglobus-plugin-install.php:310
746
  msgid "Premium add-on"
747
  msgstr "Premium add-on"
748
 
749
- #: includes/admin/class-wpglobus-plugin-install.php:311,
750
- #: includes/options/fields/table/class-wpglobus-languages-table.php:472
751
  msgid "Installed"
752
  msgstr "Installed"
753
 
754
  #. translators: placeholders are for the HTML tags.
755
- #: includes/admin/class-wpglobus-plugin-install.php:319
756
  msgid ""
757
  "If you have already purchased a WPGlobus premium extension, please read "
758
  "%1$sthe installation instructions here%2$s"
759
  msgstr ""
760
 
761
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
762
- #: includes/options/class-wpglobus-options.php:726
763
  msgid "Help Desk"
764
  msgstr "Help Desk"
765
 
766
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:185
767
  msgid "Email not sent. Please fill in the entire form."
768
  msgstr ""
769
 
770
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:195
771
  msgid ""
772
  "Email not sent. Please verify that your name and email are entered correctly."
773
  msgstr ""
774
 
775
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:216
776
  msgid "Email sent."
777
  msgstr ""
778
 
779
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
780
  msgid "Thank you for using WPGlobus!"
781
  msgstr "Thank you for using WPGlobus!"
782
 
783
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
784
  msgid "Our Support Team is here to answer your questions or concerns."
785
  msgstr "Our Support Team is here to answer your questions or concerns."
786
 
787
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
788
  msgid "To help us serve you better:"
789
  msgstr "To help us serve you better:"
790
 
791
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
792
  msgid ""
793
  "Please check if the problem persists if you switch to a standard WordPress "
794
  "theme."
@@ -796,56 +594,43 @@ msgstr ""
796
  "Please check if the problem persists if you switch to a standard WordPress "
797
  "theme."
798
 
799
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
800
  msgid ""
801
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
802
  msgstr ""
803
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
804
 
805
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
806
  msgid "Please fill in and submit the contact form:"
807
  msgstr ""
808
 
809
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
810
  msgid "Please make sure the email address is correct."
811
  msgstr ""
812
 
813
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
814
  msgid "Subject"
815
  msgstr "Subject"
816
 
817
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
818
  msgid "Short description of the problem"
819
  msgstr ""
820
 
821
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
822
  msgid "Detailed description"
823
  msgstr ""
824
 
825
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
826
  msgid "Technical Information"
827
  msgstr "Technical Information"
828
 
829
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
830
  msgid "This information helps us to find the problem source"
831
  msgstr ""
832
 
833
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:161
834
  msgid ""
835
  "Alternatively, please email %s. Do not forget to copy and paste the "
836
  "technical information to your email message."
837
  msgstr ""
838
 
839
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:89
840
  msgid "WPGlobus Recommends:"
841
  msgstr "WPGlobus Recommends:"
842
 
843
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:98,
844
- #: includes/options/class-wpglobus-options.php:933
845
  msgid "WPGlobus for WooCommerce"
846
  msgstr "WPGlobus for WooCommerce"
847
 
848
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:102
849
  msgid ""
850
  "Translate product titles and descriptions, product categories, tags and "
851
  "attributes."
@@ -853,171 +638,127 @@ msgstr ""
853
  "Translate product titles and descriptions, product categories, tags and "
854
  "attributes."
855
 
856
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:107
857
  msgid "Get it now:"
858
  msgstr "Get it now:"
859
 
860
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:117
861
  msgid "WooCommerce Multi-Currency"
862
  msgstr ""
863
 
864
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:121
865
  msgid "Accept multiple currencies in your online store!"
866
  msgstr "Accept multiple currencies in your online store!"
867
 
868
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:126,
869
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:185
870
  msgid "Check it out:"
871
  msgstr "Check it out:"
872
 
873
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:195
874
  msgid "To translate permalinks, please activate the module Slug."
875
  msgstr ""
876
 
877
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:183
878
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
879
  msgstr ""
880
 
881
- #: includes/builders/class-wpglobus-builder.php:278,
882
- #: includes/class-wpglobus.php:3577
883
  msgid "Save draft before using extra language."
884
  msgstr ""
885
 
886
- #: includes/builders/class-wpglobus-builder.php:371
887
  msgid "Builder"
888
  msgstr ""
889
 
890
- #: includes/builders/class-wpglobus-builder.php:395
891
  msgid "Сompatibility Settings"
892
  msgstr ""
893
 
894
  #. translators: ON/OFF status of WPGlobus on the edit pages.
895
  #. translators: ON/OFF status of WPGlobus on the edit pages.
896
- #: includes/builders/elementor/class-wpglobus-elementor.php:255,
897
- #: includes/class-wpglobus.php:1263
898
  msgid "ON"
899
  msgstr ""
900
 
901
- #: includes/builders/elementor/class-wpglobus-elementor.php:256,
902
- #: includes/class-wpglobus.php:1264
903
  msgid "Turn off"
904
  msgstr ""
905
 
906
- #: includes/builders/elementor/class-wpglobus-elementor.php:250,
907
- #: includes/class-wpglobus.php:1258
908
  msgid "OFF"
909
  msgstr ""
910
 
911
- #: includes/builders/elementor/class-wpglobus-elementor.php:251,
912
- #: includes/class-wpglobus.php:1259
913
  msgid "Turn on"
914
  msgstr ""
915
 
916
- #: includes/builders/elementor/class-wpglobus-elementor.php:281
917
  msgid "Elementor"
918
  msgstr ""
919
 
920
- #: includes/builders/elementor/class-wpglobus-elementor.php:508
921
  msgid "WPGlobus languages"
922
  msgstr ""
923
 
924
- #: includes/builders/elementor/class-wpglobus-elementor.php:514
925
  msgid "current"
926
  msgstr ""
927
 
928
- #: includes/builders/elementor/class-wpglobus-elementor.php:675
929
  msgid ""
930
  "WPGlobus provides multilingual support for Elementor only when the option "
931
  "%1$s%2$s%3$s is set to %4$s."
932
  msgstr ""
933
 
934
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:228
935
  msgid "Before switching the language, please save draft or publish."
936
  msgstr ""
937
 
938
  #. translators: Metabox title FOR language.
939
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:318
940
  msgctxt "filter__seo_meta_box_title"
941
  msgid "for"
942
  msgstr ""
943
 
944
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:392
945
  msgid "Page is being reloaded. Please wait..."
946
  msgstr ""
947
 
948
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:393
949
  msgid ""
950
  "Before switching the language, please save draft or publish, then reload "
951
  "page."
952
  msgstr ""
953
 
954
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
955
  msgid ""
956
  "WPGlobus provides multilingual support for Elementor only when the option "
957
  "`CSS Print Method` is set to `External File`."
958
  msgstr ""
959
 
960
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
961
  msgid "Open Elementor Settings page"
962
  msgstr ""
963
 
964
- #: includes/class-wpglobus-widget.php:27
965
  msgid "WPGlobus widget"
966
  msgstr "WPGlobus widget"
967
 
968
- #: includes/class-wpglobus-widget.php:29
969
  msgid "Add language switcher"
970
  msgstr "Add language switcher"
971
 
972
- #: includes/class-wpglobus-widget.php:32
973
  msgid "Flags"
974
  msgstr "Flags"
975
 
976
- #: includes/class-wpglobus-widget.php:33
977
  msgid "List"
978
  msgstr "List"
979
 
980
- #: includes/class-wpglobus-widget.php:34
981
  msgid "List with flags"
982
  msgstr "List with flags"
983
 
984
- #: includes/class-wpglobus-widget.php:35
985
  msgid "Select"
986
  msgstr "Select"
987
 
988
- #: includes/class-wpglobus-widget.php:36
989
  msgid "Select with language code"
990
  msgstr "Select with language code"
991
 
992
- #: includes/class-wpglobus-widget.php:37
993
  msgid "Dropdown"
994
  msgstr "Dropdown"
995
 
996
- #: includes/class-wpglobus-widget.php:38
997
  msgid "Dropdown with flags"
998
  msgstr "Dropdown with flags"
999
 
1000
- #: includes/class-wpglobus-widget.php:264
1001
  msgid "Selector type"
1002
  msgstr "Selector type"
1003
 
1004
- #: includes/class-wpglobus.php:1447
1005
  msgid "You cannot disable the main language."
1006
  msgstr "You cannot disable the main language."
1007
 
1008
- #: includes/class-wpglobus.php:1672
1009
  msgid "Need a multilingual slug?"
1010
  msgstr "Need a multilingual slug?"
1011
 
1012
- #: includes/class-wpglobus.php:1655
1013
  msgid "*) Available after the menu is saved."
1014
  msgstr "*) Available after the menu is saved."
1015
 
1016
- #: includes/class-wpglobus.php:4025
1017
  msgid "You must enable Pretty Permalinks to use WPGlobus."
1018
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
1019
 
1020
- #: includes/class-wpglobus.php:4027
1021
  msgid ""
1022
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1023
  "default option."
@@ -1025,193 +766,150 @@ msgstr ""
1025
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1026
  "default option."
1027
 
1028
- #: includes/options/class-wpglobus-options.php:281
1029
  msgid "Language Selector Menu Style"
1030
  msgstr ""
1031
 
1032
- #: includes/options/class-wpglobus-options.php:282,
1033
- #: includes/options/class-wpglobus-options.php:802,
1034
- #: includes/options/class-wpglobus-options.php:871
1035
  msgid "WPGlobus Plus"
1036
  msgstr ""
1037
 
1038
- #: includes/options/class-wpglobus-options.php:283
1039
  msgid "Drop-down languages menu or Flat (in one line)"
1040
  msgstr ""
1041
 
1042
- #: includes/options/class-wpglobus-options.php:286
1043
  msgid "Do not change"
1044
  msgstr ""
1045
 
1046
- #: includes/options/class-wpglobus-options.php:287
1047
  msgid "Drop-down (vertical)"
1048
  msgstr ""
1049
 
1050
- #: includes/options/class-wpglobus-options.php:288
1051
  msgid "Flat (horizontal)"
1052
  msgstr ""
1053
 
1054
- #: includes/options/class-wpglobus-options.php:343
1055
  msgid ""
1056
  "If you see this message then your browser may not display the WPGlobus "
1057
  "Settings panel properly. Please try another browser."
1058
  msgstr ""
1059
 
1060
- #: includes/options/class-wpglobus-options.php:599,
1061
- #: includes/options/class-wpglobus-options.php:1577
1062
  msgid "Сompatibility"
1063
  msgstr ""
1064
 
1065
  #. translators: placeholders for "strong" tags.
1066
- #: includes/options/class-wpglobus-options.php:616
1067
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
1068
  msgstr ""
1069
 
1070
  #. translators: placeholders for "strong" tags.
1071
- #: includes/options/class-wpglobus-options.php:619
1072
  msgid ""
1073
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
1074
  "the language attributes: name, code, flag icon, etc."
1075
  msgstr ""
1076
 
1077
- #: includes/options/class-wpglobus-options.php:622
1078
  msgid "Important notes"
1079
  msgstr ""
1080
 
1081
  #. translators: placeholders for "strong" tags.
1082
- #: includes/options/class-wpglobus-options.php:624
1083
  msgid "Version %1$s1.9.17%2$s "
1084
  msgstr ""
1085
 
1086
  #. translators: placeholders for "strong" tags.
1087
- #: includes/options/class-wpglobus-options.php:627
1088
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
1089
  msgstr ""
1090
 
1091
  #. translators: placeholders for "strong" tags; compatibility tab link.
1092
- #: includes/options/class-wpglobus-options.php:630
1093
  msgid ""
1094
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
1095
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
1096
  msgstr ""
1097
 
1098
  #. translators: placeholders for "strong" tags; compatibility tab link.
1099
- #: includes/options/class-wpglobus-options.php:633
1100
  msgid ""
1101
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
1102
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
1103
  msgstr ""
1104
 
1105
  #. translators: placeholders for "strong" tags.
1106
- #: includes/options/class-wpglobus-options.php:637
1107
  msgid "Version %1$s2.2.11%2$s "
1108
  msgstr ""
1109
 
1110
- #: includes/options/class-wpglobus-options.php:639
1111
  msgid "Starting from this version"
1112
  msgstr ""
1113
 
1114
  #. translators: placeholders for "strong" tags.
1115
- #: includes/options/class-wpglobus-options.php:642
1116
  msgid ""
1117
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
1118
  "(CPT)."
1119
  msgstr ""
1120
 
1121
  #. translators: placeholders for "strong" tags.
1122
- #: includes/options/class-wpglobus-options.php:645
1123
  msgid ""
1124
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
1125
  "the %1$s[%3$s]%2$s tab."
1126
  msgstr ""
1127
 
1128
- #: includes/options/class-wpglobus-options.php:662
1129
  msgid "Welcome!"
1130
  msgstr "Welcome!"
1131
 
1132
- #: includes/options/class-wpglobus-options.php:685
1133
  msgid "Deactivating / Uninstalling"
1134
  msgstr "Deactivating / Uninstalling"
1135
 
1136
- #: includes/options/class-wpglobus-options.php:711
1137
  msgid "Uninstall"
1138
  msgstr ""
1139
 
1140
- #: includes/options/class-wpglobus-options.php:741
1141
  msgid "All add-ons"
1142
  msgstr ""
1143
 
1144
- #: includes/options/class-wpglobus-options.php:756
1145
  msgid "Mobile Menu"
1146
  msgstr ""
1147
 
1148
- #: includes/options/class-wpglobus-options.php:771
1149
  msgid "Language Widgets"
1150
  msgstr ""
1151
 
1152
- #: includes/options/class-wpglobus-options.php:841
1153
  msgid "We Recommend..."
1154
  msgstr ""
1155
 
1156
- #: includes/options/class-wpglobus-options.php:873
1157
  msgid ""
1158
  "Our premium add-on, WPGlobus Plus, will add several features to your "
1159
  "website, such as:"
1160
  msgstr ""
1161
 
1162
- #: includes/options/class-wpglobus-options.php:876
1163
  msgid ""
1164
  "- Ability to write a post in one language and immediately publish it, not "
1165
  "waiting for the translation to other languages;"
1166
  msgstr ""
1167
 
1168
- #: includes/options/class-wpglobus-options.php:879
1169
  msgid "- Set different URLs for each translation;"
1170
  msgstr ""
1171
 
1172
- #: includes/options/class-wpglobus-options.php:882
1173
  msgid ""
1174
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
1175
  "for each translation;"
1176
  msgstr ""
1177
 
1178
- #: includes/options/class-wpglobus-options.php:885
1179
  msgid "- and more..."
1180
  msgstr ""
1181
 
1182
- #: includes/options/class-wpglobus-options.php:888,
1183
- #: includes/options/class-wpglobus-options.php:945,
1184
- #: includes/options/class-wpglobus-options.php:1003
1185
  msgid "Click here to download"
1186
  msgstr ""
1187
 
1188
- #: includes/options/class-wpglobus-options.php:936
1189
  msgid ""
1190
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
1191
  "translate your blog posts and pages to many languages."
1192
  msgstr ""
1193
 
1194
- #: includes/options/class-wpglobus-options.php:939
1195
  msgid "The next step is to translate your WooCommerce-based store!"
1196
  msgstr ""
1197
 
1198
- #: includes/options/class-wpglobus-options.php:942
1199
  msgid ""
1200
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
1201
  "translate product titles and descriptions, categories, tags and attributes."
1202
  msgstr ""
1203
 
1204
- #: includes/options/class-wpglobus-options.php:989
1205
  msgid "Multi-currency"
1206
  msgstr ""
1207
 
1208
- #: includes/options/class-wpglobus-options.php:992
1209
  msgid ""
1210
  "Your WooCommerce-powered store is set to show prices and accept payments in "
1211
  "a single currency only."
1212
  msgstr ""
1213
 
1214
- #: includes/options/class-wpglobus-options.php:996
1215
  msgid ""
1216
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
1217
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
@@ -1219,460 +917,348 @@ msgid ""
1219
  "positioning for global growth!"
1220
  msgstr ""
1221
 
1222
- #: includes/options/class-wpglobus-options.php:1000
1223
  msgid ""
1224
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
1225
  "re-calculating prices on-the-fly."
1226
  msgstr ""
1227
 
1228
- #: includes/options/class-wpglobus-options.php:1037
1229
  msgid "WPGlobus Premium Add-ons"
1230
  msgstr ""
1231
 
1232
- #: includes/options/class-wpglobus-options.php:1039
1233
  msgid ""
1234
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
1235
  "you will be able to:"
1236
  msgstr ""
1237
 
1238
- #: includes/options/class-wpglobus-options.php:1044
1239
  msgid ""
1240
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
1241
  "моя-страница and so on);"
1242
  msgstr ""
1243
 
1244
- #: includes/options/class-wpglobus-options.php:1047
1245
  msgid ""
1246
  "Postpone translation to some languages and <strong>publish only the "
1247
  "translated texts</strong>;"
1248
  msgstr ""
1249
 
1250
- #: includes/options/class-wpglobus-options.php:1050
1251
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
1252
  msgstr ""
1253
 
1254
- #: includes/options/class-wpglobus-options.php:1053
1255
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
1256
  msgstr ""
1257
 
1258
- #: includes/options/class-wpglobus-options.php:1056
1259
  msgid ""
1260
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
1261
  "strong>;"
1262
  msgstr ""
1263
 
1264
- #: includes/options/class-wpglobus-options.php:1060
1265
  msgid "...and more."
1266
  msgstr ""
1267
 
1268
- #: includes/options/class-wpglobus-options.php:1063
1269
  msgid "Click here to visit the WPGlobus Store"
1270
  msgstr ""
1271
 
1272
- #: includes/options/class-wpglobus-options.php:1104
1273
  msgid "Select a language"
1274
  msgstr "Select a language"
1275
 
1276
  #. translators: %3$s placeholder for the icon (actual picture).
1277
- #: includes/options/class-wpglobus-options.php:1133
1278
  msgid ""
1279
  "Place the %1$smain language%2$s of your site at the top of the list by "
1280
  "dragging the %3$s icons."
1281
  msgstr ""
1282
 
1283
  #. translators: placeholders for the "strong" HTML tags.
1284
- #: includes/options/class-wpglobus-options.php:1136
1285
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
1286
  msgstr ""
1287
 
1288
  #. translators: placeholders for the "strong" HTML tags.
1289
- #: includes/options/class-wpglobus-options.php:1139
1290
  msgid "%1$sAdd%2$s more languages using the section below."
1291
  msgstr ""
1292
 
1293
- #: includes/options/class-wpglobus-options.php:1140
1294
  msgid "When done, click the [Save Changes] button."
1295
  msgstr "When done, click the [Save Changes] button."
1296
 
1297
  #. translators: %s - placeholder for the "Save Changes" button text.
1298
- #: includes/options/class-wpglobus-options.php:1151
1299
  msgid "Press the %s button to confirm."
1300
  msgstr ""
1301
 
1302
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
1303
- #: includes/options/class-wpglobus-options.php:1168
1304
  msgid "-- none --"
1305
  msgstr ""
1306
 
1307
- #: includes/options/class-wpglobus-options.php:1169
1308
  msgid "All menus"
1309
  msgstr ""
1310
 
1311
- #: includes/options/class-wpglobus-options.php:1182
1312
  msgid "Instructions:"
1313
  msgstr "Instructions:"
1314
 
1315
- #: includes/options/class-wpglobus-options.php:1242
1316
  msgid "(Found in some themes)"
1317
  msgstr "(Found in some themes)"
1318
 
1319
- #: includes/options/class-wpglobus-options.php:1244
1320
  msgid "Enable"
1321
  msgstr "Enable"
1322
 
1323
- #: includes/options/class-wpglobus-options.php:1259
1324
  msgid "Languages table"
1325
  msgstr "Languages table"
1326
 
1327
- #: includes/options/class-wpglobus-options.php:1265
1328
  msgid "Use this table to add, edit or delete languages."
1329
  msgstr "Use this table to add, edit or delete languages."
1330
 
1331
- #: includes/options/class-wpglobus-options.php:1266
1332
  msgid "NOTE: you cannot remove the main language."
1333
  msgstr "NOTE: you cannot remove the main language."
1334
 
1335
- #: includes/options/class-wpglobus-options.php:1314
1336
  msgid "WPGlobus is enabled on these Post Types"
1337
  msgstr ""
1338
 
1339
- #: includes/options/class-wpglobus-options.php:1315
1340
  msgid "Uncheck to disable"
1341
  msgstr ""
1342
 
1343
- #: includes/options/class-wpglobus-options.php:1316
1344
  msgid ""
1345
  "Please note that there are post types, which status is managed by other "
1346
  "plugins and cannot be changed here."
1347
  msgstr ""
1348
 
1349
- #: includes/options/class-wpglobus-options.php:1321
1350
  msgid "Post Types"
1351
  msgstr ""
1352
 
1353
- #: includes/options/class-wpglobus-options.php:1337
1354
  msgid ""
1355
  "You should put here only the code provided by WPGlobus Support. Do not write "
1356
  "anything else in the sections below as it might break the functionality of "
1357
  "your website!"
1358
  msgstr ""
1359
 
1360
- #: includes/options/class-wpglobus-options.php:1378
1361
  msgid "Custom Code"
1362
  msgstr ""
1363
 
1364
- #: includes/options/class-wpglobus-options.php:1486,
1365
- #: includes/options/class-wpglobus-options.php:1618,
1366
- #: includes/options/class-wpglobus-options.php:1729
1367
  msgid "Enabled"
1368
  msgstr "Enabled"
1369
 
1370
- #: includes/options/class-wpglobus-options.php:1499
1371
  msgid "Builders support"
1372
  msgstr ""
1373
 
1374
- #: includes/options/class-wpglobus-options.php:1551
1375
  msgid "Builder mode is enabled on these Post Types"
1376
  msgstr ""
1377
 
1378
- #: includes/options/class-wpglobus-options.php:1617
1379
  msgid "Old fashioned language switcher"
1380
  msgstr ""
1381
 
1382
- #: includes/options/class-wpglobus-options.php:1623
1383
  msgid "Block Editor"
1384
  msgstr ""
1385
 
1386
- #: includes/options/class-wpglobus-options.php:1624
1387
  msgid "Block Editor Options"
1388
  msgstr ""
1389
 
1390
- #: includes/options/class-wpglobus-options.php:1653
1391
  msgid ""
1392
  "With the current settings, you will see the following lines in the section "
1393
  "HEAD of your site pages"
1394
  msgstr ""
1395
 
1396
- #: includes/options/class-wpglobus-options.php:1655
1397
  msgid "(example for two languages)"
1398
  msgstr ""
1399
 
1400
- #: includes/options/class-wpglobus-options.php:1702
1401
  msgid ""
1402
  "Tell search engines about localized versions of your pages using the "
1403
  "hreflang tag"
1404
  msgstr ""
1405
 
1406
- #: includes/options/class-wpglobus-options.php:1711
1407
  msgid "Output the hreflang tag as"
1408
  msgstr ""
1409
 
1410
- #: includes/options/class-wpglobus-options.php:1714
1411
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1412
  msgstr ""
1413
 
1414
- #: includes/options/class-wpglobus-options.php:1715
1415
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1416
  msgstr ""
1417
 
1418
- #: includes/options/class-wpglobus-options.php:1716
1419
  msgid "Language code only (en, ru, etc.)"
1420
  msgstr ""
1421
 
1422
- #: includes/options/class-wpglobus-options.php:1728
1423
  msgid "Use the code `x-default` for the main language"
1424
  msgstr ""
1425
 
1426
- #: includes/options/class-wpglobus-options.php:1734
1427
  msgid "Multilingual SEO"
1428
  msgstr ""
1429
 
1430
- #: includes/options/class-wpglobus-options.php:1735
1431
  msgid "Multilingual SEO Options"
1432
  msgstr ""
1433
 
1434
- #: includes/options/class-wpglobus-options.php:1772
1435
  msgid ""
1436
  "With WPGlobus, you can get translations for posts and pages using REST API."
1437
  msgstr ""
1438
 
1439
- #: includes/options/class-wpglobus-options.php:1800,
1440
- #: includes/options/class-wpglobus-options.php:1808,
1441
- #: includes/options/class-wpglobus-options.php:1780,
1442
- #: includes/options/class-wpglobus-options.php:1789
1443
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1444
  msgstr ""
1445
 
1446
- #: includes/options/class-wpglobus-options.php:1777
1447
  msgid ""
1448
  "For demonstration, you can try the first post that WordPress creates at the "
1449
  "initial installation."
1450
  msgstr ""
1451
 
1452
- #: includes/options/class-wpglobus-options.php:1819
1453
  msgid ""
1454
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1455
  "information."
1456
  msgstr ""
1457
 
1458
- #: includes/options/class-wpglobus-options.php:1826
1459
  msgid ""
1460
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1461
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1462
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1463
  msgstr ""
1464
 
1465
- #: includes/options/class-wpglobus-options.php:1839
1466
  msgid "Description:"
1467
  msgstr ""
1468
 
1469
- #: includes/options/class-wpglobus-options.php:1846,
1470
- #: includes/options/class-wpglobus-options.php:1847
1471
  msgid "REST API"
1472
  msgstr ""
1473
 
1474
- #: includes/options/class-wpglobus-options.php:2180
1475
  msgid "Translate strings"
1476
  msgstr ""
1477
 
1478
- #: includes/options/fields/table/class-wpglobus-languages-table.php:66
1479
  msgid "item"
1480
  msgstr "item"
1481
 
1482
- #: includes/options/fields/table/class-wpglobus-languages-table.php:68
1483
  msgid "items"
1484
  msgstr "items"
1485
 
1486
- #: includes/options/fields/table/class-wpglobus-languages-table.php:88
1487
  msgid "Code"
1488
  msgstr "Code"
1489
 
1490
- #: includes/options/fields/table/class-wpglobus-languages-table.php:94
1491
  msgid "Edit"
1492
  msgstr "Edit"
1493
 
1494
- #: includes/options/fields/table/class-wpglobus-languages-table.php:99
1495
  msgid "Delete"
1496
  msgstr "Delete"
1497
 
1498
- #: includes/options/fields/table/class-wpglobus-languages-table.php:105
1499
  msgid "File"
1500
  msgstr "File"
1501
 
1502
- #: includes/options/fields/table/class-wpglobus-languages-table.php:110
1503
  msgid "Flag"
1504
  msgstr "Flag"
1505
 
1506
- #: includes/options/fields/table/class-wpglobus-languages-table.php:120
1507
  msgid "Language name"
1508
  msgstr "Language name"
1509
 
1510
- #: includes/options/fields/table/class-wpglobus-languages-table.php:125
1511
  msgid "English language name"
1512
  msgstr "English language name"
1513
 
1514
- #: includes/options/fields/table/class-wpglobus-languages-table.php:151
1515
  msgid "No items found"
1516
  msgstr "No items found"
1517
 
1518
- #: includes/options/fields/table/class-wpglobus-languages-table.php:164
1519
  msgid "Add new Language"
1520
  msgstr "Add new Language"
1521
 
1522
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:164
1523
  msgid "No items of this type were found."
1524
  msgstr ""
1525
 
1526
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:107
1527
  msgid "Select an item"
1528
  msgstr ""
1529
 
1530
- #: includes/options/templates/compatibility-beta.php:15
1531
  msgid "Multilingual support of this add-on is currently in Beta stage."
1532
  msgstr ""
1533
 
1534
- #: includes/options/templates/compatibility-beta.php:17
1535
  msgid "We do not recommend using it on production sites."
1536
  msgstr ""
1537
 
1538
- #: includes/options/templates/compatibility-beta.php:23
1539
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1540
  msgstr ""
1541
 
1542
- #: includes/options/templates/compatibility.php:69
1543
  msgid "WordPress version"
1544
  msgstr ""
1545
 
1546
- #: includes/options/templates/compatibility.php:44
1547
  msgid "In the WordPress core"
1548
  msgstr ""
1549
 
1550
- #: includes/options/templates/compatibility.php:46
1551
  msgid "Core"
1552
  msgstr ""
1553
 
1554
- #: includes/options/templates/compatibility.php:52,
1555
- #: includes/options/templates/compatibility.php:79
1556
  msgid "Current version"
1557
  msgstr ""
1558
 
1559
- #: includes/options/templates/compatibility.php:53,
1560
- #: includes/options/templates/compatibility.php:81
1561
  msgid "Stage"
1562
  msgstr ""
1563
 
1564
- #: includes/options/templates/compatibility.php:54,
1565
- #: includes/options/templates/compatibility.php:82
1566
  msgid "Status"
1567
  msgstr "Status"
1568
 
1569
- #: includes/options/templates/compatibility.php:60
1570
  msgid "Block editor"
1571
  msgstr ""
1572
 
1573
- #: includes/options/templates/compatibility.php:62
1574
  msgid "production"
1575
  msgstr ""
1576
 
1577
- #: includes/options/templates/compatibility.php:73
1578
  msgid "List of supported add-ons"
1579
  msgstr ""
1580
 
1581
- #: includes/options/templates/compatibility.php:78
1582
  msgid "Add-on"
1583
  msgstr ""
1584
 
1585
- #: includes/options/templates/compatibility.php:80
1586
  msgid "Supported minimum version"
1587
  msgstr ""
1588
 
1589
- #: includes/options/templates/compatibility.php:105
1590
  msgid "Not installed"
1591
  msgstr ""
1592
 
1593
- #: includes/options/templates/compatibility.php:102
1594
  msgid "Installed, inactive"
1595
  msgstr ""
1596
 
1597
- #: includes/options/templates/compatibility.php:100
1598
  msgid "Active"
1599
  msgstr "Active"
1600
 
1601
- #: includes/options/templates/customize-intro.php:35
1602
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1603
  msgstr ""
1604
 
1605
- #: includes/options/templates/customize-intro.php:39
1606
  msgid "However, some themes do not follow all WordPress standards strictly."
1607
  msgstr ""
1608
 
1609
- #: includes/options/templates/customize-intro.php:41
1610
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1611
  msgstr ""
1612
 
1613
- #: includes/options/templates/customize-intro.php:45
1614
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1615
  msgstr ""
1616
 
1617
- #: includes/options/templates/customize-intro.php:53
1618
  msgid ""
1619
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1620
  "With those themes, WPGlobus Customizer is switched off by default"
1621
  msgstr ""
1622
 
1623
- #: includes/options/templates/customize-intro.php:60
1624
  msgid "The currently active theme is"
1625
  msgstr ""
1626
 
1627
- #: includes/options/templates/customize-intro.php:66
1628
  msgid "In the current version, WPGlobus Customizer does not support"
1629
  msgstr ""
1630
 
1631
- #: includes/options/templates/customize-intro.php:70
1632
  msgid "translation of the navigation menus"
1633
  msgstr ""
1634
 
1635
- #: includes/options/templates/customize-intro.php:72
1636
  msgid "to translate, please go to"
1637
  msgstr ""
1638
 
1639
- #: includes/options/templates/customize-intro.php:81
1640
  msgid "Go to Customizer"
1641
  msgstr ""
1642
 
1643
- #: includes/options/templates/customize-intro.php:88
1644
  msgid "is undefined"
1645
  msgstr ""
1646
 
1647
- #: includes/options/templates/customize-intro.php:85
1648
  msgid "is set to"
1649
  msgstr ""
1650
 
1651
- #: includes/options/templates/customize-intro.php:94
1652
  msgid "by adding to the file wp-config.php"
1653
  msgstr ""
1654
 
1655
- #: includes/options/templates/customize-intro.php:96
1656
  msgid "now"
1657
  msgstr ""
1658
 
1659
- #: includes/options/wpglobus-options-header.php:25
1660
  msgid "We rely on your support!"
1661
  msgstr "We rely on your support!"
1662
 
1663
- #: includes/options/wpglobus-options-header.php:28
1664
  msgid "Please consider a small donation to support the future development."
1665
  msgstr "Please consider a small donation to support the future development."
1666
 
1667
- #: includes/options/wpglobus-options-header.php:32
1668
  msgid "Thank you!"
1669
  msgstr "Thank you!"
1670
 
1671
- #: includes/options/wpglobus-options-header.php:55
1672
  msgid "WPGlobus Plus!"
1673
  msgstr "WPGlobus Plus!"
1674
 
1675
- #: includes/options/wpglobus-options-header.php:58
1676
  msgid ""
1677
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1678
  "separate publishing and more! "
@@ -1680,29 +1266,23 @@ msgstr ""
1680
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1681
  "separate publishing and more! "
1682
 
1683
- #: includes/options/wpglobus-options-header.php:64
1684
  msgid "Get WPGlobus Plus now!"
1685
  msgstr "Get WPGlobus Plus now!"
1686
 
1687
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1688
  msgid ""
1689
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1690
  "the current version."
1691
  msgstr ""
1692
 
1693
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1694
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1695
  msgstr ""
1696
 
1697
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1698
  msgid "WPGlobus warning: "
1699
  msgstr ""
1700
 
1701
- #: wpglobus.php:13
1702
  msgid "https://github.com/WPGlobus/WPGlobus"
1703
  msgstr "https://github.com/WPGlobus/WPGlobus"
1704
 
1705
- #: wpglobus.php:14
1706
  msgid ""
1707
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1708
  "widgets and even custom fields - in multiple languages!"
@@ -1710,7 +1290,6 @@ msgstr ""
1710
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1711
  "widgets and even custom fields - in multiple languages!"
1712
 
1713
- #: wpglobus.php:19
1714
  msgid "https://wpglobus.com/"
1715
  msgstr "https://wpglobus.com/"
1716
 
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
 
 
 
 
 
19
  msgid "Guide"
20
  msgstr "Guide"
21
 
 
 
22
  msgid "WPGlobus Help Desk"
23
  msgstr "WPGlobus Help Desk"
24
 
 
 
 
 
 
 
 
25
  msgid "Add-ons"
26
  msgstr "Add-ons"
27
 
 
28
  msgid "Quick Start"
29
  msgstr "Quick Start"
30
 
 
 
31
  msgid "FAQ"
32
  msgstr "FAQ"
33
 
 
34
  msgid ""
35
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
36
  msgstr ""
37
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
38
 
 
39
  msgid ""
40
  "The mbstring extension is required for the full UTF-8 compatibility and "
41
  "better performance. Without it, some parts of WordPress and WPGlobus may "
47
  "function incorrectly. Please contact your hosting company or systems "
48
  "administrator."
49
 
 
50
  msgid "Go to WPGlobus Settings"
51
  msgstr "Go to WPGlobus Settings"
52
 
 
53
  msgid "Easy as 1-2-3:"
54
  msgstr "Easy as 1-2-3:"
55
 
 
56
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
57
  msgstr "Go to WPGlobus admin menu and choose the countries / languages;"
58
 
 
59
  msgid ""
60
  "Enter the translations to the posts, pages, categories, tags and menus using "
61
  "a clean and simple interface."
63
  "Enter the translations to the posts, pages, categories, tags and menus using "
64
  "a clean and simple interface."
65
 
 
66
  msgid ""
67
  "Switch languages at the front-end using a drop-down menu with language names "
68
  "and country flags."
70
  "Switch languages at the front-end using a drop-down menu with language names "
71
  "and country flags."
72
 
 
73
  msgid "Links:"
74
  msgstr "Links:"
75
 
 
76
  msgid "FAQs"
77
  msgstr "FAQs"
78
 
 
79
  msgid "Contact Us"
80
  msgstr "Contact Us"
81
 
 
82
  msgid "Please give us 5 stars!"
83
  msgstr "Please give us 5 stars!"
84
 
 
85
  msgid "WPGlobus does not translate texts automatically!"
86
  msgstr "WPGlobus does not translate texts automatically!"
87
 
 
88
  msgid ""
89
  "There are many translation companies and individual translators who can help "
90
  "you write and proofread the texts."
92
  "There are many translation companies and individual translators who can help "
93
  "you write and proofread the texts."
94
 
 
95
  msgid ""
96
  "When you choose a translator, please look at their native language, country "
97
  "of residence, specialization and knowledge of WordPress."
100
  "of residence, specialization and knowledge of WordPress."
101
 
102
  #. translators: %s are used to insert HTML link. Keep them in place.
 
103
  msgid ""
104
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
105
  "website. This is not an endorsement, just a courtesy. Please contact them "
109
  "website. This is not an endorsement, just a courtesy. Please contact them "
110
  "directly and let us know how did it work for you!"
111
 
 
112
  msgid "Important notes:"
113
  msgstr "Important notes:"
114
 
 
115
  msgid ""
116
  "WPGlobus only supports the localization URLs in the form of <code>example."
117
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
121
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
122
  "com</code> and language queries <code>example.com?lang=xx</code>."
123
 
 
124
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
125
  msgstr "Some themes and plugins are <strong>not multilingual-ready</strong>."
126
 
 
127
  msgid ""
128
  "They might display some texts with no translation, or with all languages "
129
  "mixed together."
132
  "mixed together."
133
 
134
  #. translators: %s are used to insert HTML link. Keep them in place.
 
135
  msgid ""
136
  "Please contact the theme / plugin author. If they are unable to assist, "
137
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
139
  "Please contact the theme / plugin author. If they are unable to assist, "
140
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
141
 
 
142
  msgid "Language was set on your profile page"
143
  msgstr ""
144
 
 
145
  msgid "Add"
146
  msgstr "Add"
147
 
 
 
148
  msgid "Multilingual Everything!"
149
  msgstr "Multilingual Everything!"
150
 
 
 
151
  msgid ""
152
  "WPGlobus is a family of WordPress plugins assisting you in making "
153
  "multilingual WordPress blogs and sites."
155
  "WPGlobus is a family of WordPress plugins assisting you in making "
156
  "multilingual WordPress blogs and sites."
157
 
 
158
  msgid "Remove the WPGlobus settings (not recommended)"
159
  msgstr "Remove the WPGlobus settings (not recommended)"
160
 
 
161
  msgid "Clean-up Tool"
162
  msgstr "Clean-up Tool"
163
 
 
164
  msgid "Support"
165
  msgstr "Support"
166
 
 
167
  msgid ""
168
  "WARNING: this operation is non-reversible. It is strongly recommended that "
169
  "you backup your database before proceeding."
171
  "WARNING: this operation is non-reversible. It is strongly recommended that "
172
  "you backup your database before proceeding."
173
 
 
174
  msgid ""
175
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
176
  "By running it, you will remove ALL translations you have entered to your "
186
  "might end up with empty titles, no content, no excerpts, blank comments and "
187
  "so on."
188
 
 
189
  msgid ""
190
  "Make sure that your active theme does not have any code related to WPGlobus. "
191
  "Such code could be added by you or by a 3rd party developer. If that code "
194
  msgstr ""
195
 
196
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
 
197
  msgid ""
198
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
199
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
200
  msgstr ""
201
 
 
202
  msgid "You are about to clean the content of the following database tables:"
203
  msgstr "You are about to clean the content of the following database tables:"
204
 
 
205
  msgid "The operations log"
206
  msgstr "The operations log"
207
 
 
208
  msgid ""
209
  "We are going to write a detailed log of all the database changes performed. "
210
  "It should help in the case you need to restore something important. The log "
214
  "It should help in the case you need to restore something important. The log "
215
  "will be written to the file:"
216
 
 
217
  msgid ""
218
  "Uncheck if you do not want to write the operations log (we recommend to keep "
219
  "it checked)"
221
  "Uncheck if you do not want to write the operations log (we recommend to keep "
222
  "it checked)"
223
 
 
224
  msgid "You have been warned..."
225
  msgstr "You have been warned..."
226
 
 
227
  msgid "Please confirm by checking the box below:"
228
  msgstr "Please confirm by checking the box below:"
229
 
 
230
  msgid ""
231
  "I have read and understood everything written on this page. I am aware that "
232
  "by using this tool I may loose some content of my website. I have made a "
238
  "database backup and know how to restore it if necessary. I am fully "
239
  "responsible for the results."
240
 
 
241
  msgid "YES, I CONFIRM"
242
  msgstr "YES, I CONFIRM"
243
 
 
244
  msgid "Process with the Clean-up"
245
  msgstr "Process with the Clean-up"
246
 
 
 
 
 
247
  msgid "Default"
248
  msgstr "Default"
249
 
 
250
  msgid "Section"
251
  msgstr "Section"
252
 
 
253
  msgid "Show all sections"
254
  msgstr "Show all sections"
255
 
 
256
  msgid "Save &amp; Reload"
257
  msgstr "Save &amp; Reload"
258
 
 
 
 
259
  msgid "WPGlobus"
260
  msgstr "WPGlobus"
261
 
 
262
  msgid ""
263
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
264
  msgstr ""
265
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
266
 
 
267
  msgid "Fields Settings"
268
  msgstr "Fields Settings"
269
 
 
270
  msgid "WPGlobus Settings"
271
  msgstr "WPGlobus Settings"
272
 
 
273
  msgid "Help"
274
  msgstr "Help"
275
 
 
 
276
  msgid "Languages"
277
  msgstr "Languages"
278
 
 
 
279
  msgid "Enabled Languages"
280
  msgstr "Enabled Languages"
281
 
 
 
282
  msgid "These languages are currently enabled on your site."
283
  msgstr "These languages are currently enabled on your site."
284
 
 
 
285
  msgid "Choose a language you would like to enable."
286
  msgstr ""
287
 
 
288
  msgid "Press the [Save & Publish] button to confirm."
289
  msgstr ""
290
 
291
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
292
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
 
 
293
  msgid "or Add new Language %1$s here %2$s"
294
  msgstr "or Add new Language %1$s here %2$s"
295
 
 
 
296
  msgid "Add Languages"
297
  msgstr "Add Languages"
298
 
 
 
299
  msgid "Language Selector Mode"
300
  msgstr "Language Selector Mode"
301
 
 
 
302
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
303
  msgstr "Two-letter Code with flag (en, ru, it, etc.)"
304
 
 
 
305
  msgid "Full Name (English, Russian, Italian, etc.)"
306
  msgstr "Full Name (English, Russian, Italian, etc.)"
307
 
 
 
308
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
309
  msgstr "Full Name with flag (English, Russian, Italian, etc.)"
310
 
 
 
311
  msgid "Flags only"
312
  msgstr "Flags only"
313
 
 
 
314
  msgid ""
315
  "Choose the way language name and country flag are shown in the drop-down menu"
316
  msgstr ""
317
  "Choose the way language name and country flag are shown in the drop-down menu"
318
 
 
319
  msgid "select navigation menu"
320
  msgstr ""
321
 
 
 
 
322
  msgid "Language Selector Menu"
323
  msgstr "Language Selector Menu"
324
 
 
 
 
325
  msgid "Choose the navigation menu where the language selector will be shown"
326
  msgstr "Choose the navigation menu where the language selector will be shown"
327
 
 
328
  msgid "No menus have been created yet. Create some."
329
  msgstr "No menus have been created yet. Create some."
330
 
 
 
331
  msgid "\"All Pages\" menus Language selector"
332
  msgstr "\"All Pages\" menus Language selector"
333
 
 
 
334
  msgid ""
335
  "Adds language selector to the menus that automatically list all existing "
336
  "pages (using `wp_list_pages`)"
338
  "Adds language selector to the menus that automatically list all existing "
339
  "pages (using `wp_list_pages`)"
340
 
 
 
341
  msgid "Custom CSS"
342
  msgstr "Custom CSS"
343
 
 
344
  msgid ""
345
  "Here you can enter the CSS rules to adjust the language selector menu for "
346
  "your theme. Look at the examples in the `style-samples.css` file."
348
  "Here you can enter the CSS rules to adjust the language selector menu for "
349
  "your theme. Look at the examples in the `style-samples.css` file."
350
 
 
351
  msgid "Post types"
352
  msgstr "Post types"
353
 
 
354
  msgid "Uncheck to disable WPGlobus"
355
  msgstr "Uncheck to disable WPGlobus"
356
 
 
 
357
  msgid "Redirect"
358
  msgstr "Redirect"
359
 
 
 
360
  msgid "Choose the language automatically, based on:"
361
  msgstr "Choose the language automatically, based on:"
362
 
 
 
363
  msgid "Preferred language set in the browser"
364
  msgstr "Preferred language set in the browser"
365
 
 
 
366
  msgid ""
367
  "When a user comes to the site for the first time, try to find the best "
368
  "matching language version of the page."
370
  "When a user comes to the site for the first time, try to find the best "
371
  "matching language version of the page."
372
 
 
 
 
 
373
  msgid "Custom JS Code"
374
  msgstr "Custom JS Code"
375
 
 
 
376
  msgid "Title"
377
  msgstr "Title"
378
 
 
379
  msgid "(Paste your JS code here.)"
380
  msgstr "(Paste your JS code here.)"
381
 
 
382
  msgid ""
383
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
384
  "version 4.9 or later."
385
  msgstr ""
386
 
 
387
  msgid "With your version of WordPress, please use the"
388
  msgstr ""
389
 
 
390
  msgid "WPGlobus Settings page"
391
  msgstr ""
392
 
 
393
  msgid "Label"
394
  msgstr "Label"
395
 
 
396
  msgid "Description"
397
  msgstr "Description"
398
 
 
399
  msgid ""
400
  "Here you can specify which fields should be considered multilingual by "
401
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
403
  "Here you can specify which fields should be considered multilingual by "
404
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
405
 
 
 
406
  msgid "Thank you for installing WPGlobus!"
407
  msgstr "Thank you for installing WPGlobus!"
408
 
 
 
409
  msgid "Read About WPGlobus"
410
  msgstr "Read About WPGlobus"
411
 
 
412
  msgid ""
413
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
414
  msgstr ""
415
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
416
 
 
 
417
  msgid ""
418
  "Should you have any questions or comments, please do not hesitate to contact "
419
  "us."
421
  "Should you have any questions or comments, please do not hesitate to contact "
422
  "us."
423
 
 
 
424
  msgid "Sincerely Yours,"
425
  msgstr "Sincerely Yours,"
426
 
 
 
 
427
  msgid "The WPGlobus Team"
428
  msgstr "The WPGlobus Team"
429
 
430
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
431
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
432
  msgid ""
433
  "We would hate to see you go. If something goes wrong, do not uninstall "
434
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
436
  "We would hate to see you go. If something goes wrong, do not uninstall "
437
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
438
 
 
 
439
  msgid ""
440
  "Please note that if you deactivate WPGlobus, your site will show all the "
441
  "languages together, mixed up. You will need to remove all translations, "
447
 
448
  #. translators: %s: link to the Clean-up Tool
449
  #. translators: %s: link to the Clean-up Tool.
 
 
450
  msgid ""
451
  "If there are just a few places, you should edit them manually. To "
452
  "automatically remove all translations at once, you can use the %s. WARNING: "
460
 
461
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
462
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
463
  msgid "%1$sClean-up Tool%2$s"
464
  msgstr "%1$sClean-up Tool%2$s"
465
 
466
  #. translators: %s: name of current theme
 
467
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
468
  msgstr "Sorry, WPGlobus customizer doesn't support current theme %s."
469
 
470
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
471
  msgid "Please use %1$sWPGlobus options page%2$s instead."
472
  msgstr "Please use %1$sWPGlobus options page%2$s instead."
473
 
 
474
  msgid "Expand/Shrink"
475
  msgstr ""
476
 
 
 
477
  msgid "WPGlobus News"
478
  msgstr "WPGlobus News"
479
 
 
 
480
  msgid "Options updated"
481
  msgstr "Options updated"
482
 
 
483
  msgid "Please enter a language code!"
484
  msgstr "Please enter a language code!"
485
 
 
486
  msgid "Language code already exists!"
487
  msgstr "Language code already exists!"
488
 
 
489
  msgid "Please specify the language flag!"
490
  msgstr "Please specify the language flag!"
491
 
 
492
  msgid "Please enter the language name!"
493
  msgstr "Please enter the language name!"
494
 
 
495
  msgid "Please enter the language name in English!"
496
  msgstr "Please enter the language name in English!"
497
 
 
498
  msgid "Please enter the locale!"
499
  msgstr "Please enter the locale!"
500
 
 
501
  msgid "Add Language"
502
  msgstr "Add Language"
503
 
 
 
 
504
  msgid "Delete Language"
505
  msgstr "Delete Language"
506
 
 
507
  msgid "Edit Language"
508
  msgstr "Edit Language"
509
 
 
510
  msgid "Language Code"
511
  msgstr "Language Code"
512
 
 
513
  msgid ""
514
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
515
  msgstr ""
516
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
517
 
 
518
  msgid "Language flag"
519
  msgstr "Language flag"
520
 
 
521
  msgid "Name"
522
  msgstr "Name"
523
 
 
524
  msgid ""
525
  "The name of the language in its native alphabet. (Examples: English, Русский)"
526
  msgstr ""
527
  "The name of the language in its native alphabet. (Examples: English, Русский)"
528
 
 
529
  msgid "Name in English"
530
  msgstr "Name in English"
531
 
 
532
  msgid "The name of the language in English"
533
  msgstr "The name of the language in English"
534
 
 
 
535
  msgid "Locale"
536
  msgstr "Locale"
537
 
 
538
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
539
  msgstr "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
540
 
 
541
  msgid "Are you sure you want to delete?"
542
  msgstr "Are you sure you want to delete?"
543
 
 
544
  msgid "Save Changes"
545
  msgstr "Save Changes"
546
 
 
547
  msgid "Back to the WPGlobus Settings"
548
  msgstr "Back to the WPGlobus Settings"
549
 
 
550
  msgid "Current Version"
551
  msgstr "Current Version"
552
 
 
553
  msgid "Get it now!"
554
  msgstr "Get it now!"
555
 
 
556
  msgid "Premium add-on"
557
  msgstr "Premium add-on"
558
 
 
 
559
  msgid "Installed"
560
  msgstr "Installed"
561
 
562
  #. translators: placeholders are for the HTML tags.
 
563
  msgid ""
564
  "If you have already purchased a WPGlobus premium extension, please read "
565
  "%1$sthe installation instructions here%2$s"
566
  msgstr ""
567
 
 
 
568
  msgid "Help Desk"
569
  msgstr "Help Desk"
570
 
 
571
  msgid "Email not sent. Please fill in the entire form."
572
  msgstr ""
573
 
 
574
  msgid ""
575
  "Email not sent. Please verify that your name and email are entered correctly."
576
  msgstr ""
577
 
 
578
  msgid "Email sent."
579
  msgstr ""
580
 
 
581
  msgid "Thank you for using WPGlobus!"
582
  msgstr "Thank you for using WPGlobus!"
583
 
 
584
  msgid "Our Support Team is here to answer your questions or concerns."
585
  msgstr "Our Support Team is here to answer your questions or concerns."
586
 
 
587
  msgid "To help us serve you better:"
588
  msgstr "To help us serve you better:"
589
 
 
590
  msgid ""
591
  "Please check if the problem persists if you switch to a standard WordPress "
592
  "theme."
594
  "Please check if the problem persists if you switch to a standard WordPress "
595
  "theme."
596
 
 
597
  msgid ""
598
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
599
  msgstr ""
600
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
601
 
 
602
  msgid "Please fill in and submit the contact form:"
603
  msgstr ""
604
 
 
605
  msgid "Please make sure the email address is correct."
606
  msgstr ""
607
 
 
608
  msgid "Subject"
609
  msgstr "Subject"
610
 
 
611
  msgid "Short description of the problem"
612
  msgstr ""
613
 
 
614
  msgid "Detailed description"
615
  msgstr ""
616
 
 
617
  msgid "Technical Information"
618
  msgstr "Technical Information"
619
 
 
620
  msgid "This information helps us to find the problem source"
621
  msgstr ""
622
 
 
623
  msgid ""
624
  "Alternatively, please email %s. Do not forget to copy and paste the "
625
  "technical information to your email message."
626
  msgstr ""
627
 
 
628
  msgid "WPGlobus Recommends:"
629
  msgstr "WPGlobus Recommends:"
630
 
 
 
631
  msgid "WPGlobus for WooCommerce"
632
  msgstr "WPGlobus for WooCommerce"
633
 
 
634
  msgid ""
635
  "Translate product titles and descriptions, product categories, tags and "
636
  "attributes."
638
  "Translate product titles and descriptions, product categories, tags and "
639
  "attributes."
640
 
 
641
  msgid "Get it now:"
642
  msgstr "Get it now:"
643
 
 
644
  msgid "WooCommerce Multi-Currency"
645
  msgstr ""
646
 
 
647
  msgid "Accept multiple currencies in your online store!"
648
  msgstr "Accept multiple currencies in your online store!"
649
 
 
 
650
  msgid "Check it out:"
651
  msgstr "Check it out:"
652
 
 
653
  msgid "To translate permalinks, please activate the module Slug."
654
  msgstr ""
655
 
 
656
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
657
  msgstr ""
658
 
 
 
659
  msgid "Save draft before using extra language."
660
  msgstr ""
661
 
 
662
  msgid "Builder"
663
  msgstr ""
664
 
 
665
  msgid "Сompatibility Settings"
666
  msgstr ""
667
 
668
  #. translators: ON/OFF status of WPGlobus on the edit pages.
669
  #. translators: ON/OFF status of WPGlobus on the edit pages.
 
 
670
  msgid "ON"
671
  msgstr ""
672
 
 
 
673
  msgid "Turn off"
674
  msgstr ""
675
 
 
 
676
  msgid "OFF"
677
  msgstr ""
678
 
 
 
679
  msgid "Turn on"
680
  msgstr ""
681
 
 
682
  msgid "Elementor"
683
  msgstr ""
684
 
 
685
  msgid "WPGlobus languages"
686
  msgstr ""
687
 
 
688
  msgid "current"
689
  msgstr ""
690
 
 
691
  msgid ""
692
  "WPGlobus provides multilingual support for Elementor only when the option "
693
  "%1$s%2$s%3$s is set to %4$s."
694
  msgstr ""
695
 
 
696
  msgid "Before switching the language, please save draft or publish."
697
  msgstr ""
698
 
699
  #. translators: Metabox title FOR language.
 
700
  msgctxt "filter__seo_meta_box_title"
701
  msgid "for"
702
  msgstr ""
703
 
 
704
  msgid "Page is being reloaded. Please wait..."
705
  msgstr ""
706
 
 
707
  msgid ""
708
  "Before switching the language, please save draft or publish, then reload "
709
  "page."
710
  msgstr ""
711
 
 
712
  msgid ""
713
  "WPGlobus provides multilingual support for Elementor only when the option "
714
  "`CSS Print Method` is set to `External File`."
715
  msgstr ""
716
 
 
717
  msgid "Open Elementor Settings page"
718
  msgstr ""
719
 
 
720
  msgid "WPGlobus widget"
721
  msgstr "WPGlobus widget"
722
 
 
723
  msgid "Add language switcher"
724
  msgstr "Add language switcher"
725
 
 
726
  msgid "Flags"
727
  msgstr "Flags"
728
 
 
729
  msgid "List"
730
  msgstr "List"
731
 
 
732
  msgid "List with flags"
733
  msgstr "List with flags"
734
 
 
735
  msgid "Select"
736
  msgstr "Select"
737
 
 
738
  msgid "Select with language code"
739
  msgstr "Select with language code"
740
 
 
741
  msgid "Dropdown"
742
  msgstr "Dropdown"
743
 
 
744
  msgid "Dropdown with flags"
745
  msgstr "Dropdown with flags"
746
 
 
747
  msgid "Selector type"
748
  msgstr "Selector type"
749
 
 
750
  msgid "You cannot disable the main language."
751
  msgstr "You cannot disable the main language."
752
 
 
753
  msgid "Need a multilingual slug?"
754
  msgstr "Need a multilingual slug?"
755
 
 
756
  msgid "*) Available after the menu is saved."
757
  msgstr "*) Available after the menu is saved."
758
 
 
759
  msgid "You must enable Pretty Permalinks to use WPGlobus."
760
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
761
 
 
762
  msgid ""
763
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
764
  "default option."
766
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
767
  "default option."
768
 
 
769
  msgid "Language Selector Menu Style"
770
  msgstr ""
771
 
 
 
 
772
  msgid "WPGlobus Plus"
773
  msgstr ""
774
 
 
775
  msgid "Drop-down languages menu or Flat (in one line)"
776
  msgstr ""
777
 
 
778
  msgid "Do not change"
779
  msgstr ""
780
 
 
781
  msgid "Drop-down (vertical)"
782
  msgstr ""
783
 
 
784
  msgid "Flat (horizontal)"
785
  msgstr ""
786
 
 
787
  msgid ""
788
  "If you see this message then your browser may not display the WPGlobus "
789
  "Settings panel properly. Please try another browser."
790
  msgstr ""
791
 
 
 
792
  msgid "Сompatibility"
793
  msgstr ""
794
 
795
  #. translators: placeholders for "strong" tags.
 
796
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
797
  msgstr ""
798
 
799
  #. translators: placeholders for "strong" tags.
 
800
  msgid ""
801
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
802
  "the language attributes: name, code, flag icon, etc."
803
  msgstr ""
804
 
 
805
  msgid "Important notes"
806
  msgstr ""
807
 
808
  #. translators: placeholders for "strong" tags.
 
809
  msgid "Version %1$s1.9.17%2$s "
810
  msgstr ""
811
 
812
  #. translators: placeholders for "strong" tags.
 
813
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
814
  msgstr ""
815
 
816
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
817
  msgid ""
818
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
819
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
820
  msgstr ""
821
 
822
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
823
  msgid ""
824
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
825
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
826
  msgstr ""
827
 
828
  #. translators: placeholders for "strong" tags.
 
829
  msgid "Version %1$s2.2.11%2$s "
830
  msgstr ""
831
 
 
832
  msgid "Starting from this version"
833
  msgstr ""
834
 
835
  #. translators: placeholders for "strong" tags.
 
836
  msgid ""
837
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
838
  "(CPT)."
839
  msgstr ""
840
 
841
  #. translators: placeholders for "strong" tags.
 
842
  msgid ""
843
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
844
  "the %1$s[%3$s]%2$s tab."
845
  msgstr ""
846
 
 
847
  msgid "Welcome!"
848
  msgstr "Welcome!"
849
 
 
850
  msgid "Deactivating / Uninstalling"
851
  msgstr "Deactivating / Uninstalling"
852
 
 
853
  msgid "Uninstall"
854
  msgstr ""
855
 
 
856
  msgid "All add-ons"
857
  msgstr ""
858
 
 
859
  msgid "Mobile Menu"
860
  msgstr ""
861
 
 
862
  msgid "Language Widgets"
863
  msgstr ""
864
 
 
865
  msgid "We Recommend..."
866
  msgstr ""
867
 
 
868
  msgid ""
869
  "Our premium add-on, WPGlobus Plus, will add several features to your "
870
  "website, such as:"
871
  msgstr ""
872
 
 
873
  msgid ""
874
  "- Ability to write a post in one language and immediately publish it, not "
875
  "waiting for the translation to other languages;"
876
  msgstr ""
877
 
 
878
  msgid "- Set different URLs for each translation;"
879
  msgstr ""
880
 
 
881
  msgid ""
882
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
883
  "for each translation;"
884
  msgstr ""
885
 
 
886
  msgid "- and more..."
887
  msgstr ""
888
 
 
 
 
889
  msgid "Click here to download"
890
  msgstr ""
891
 
 
892
  msgid ""
893
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
894
  "translate your blog posts and pages to many languages."
895
  msgstr ""
896
 
 
897
  msgid "The next step is to translate your WooCommerce-based store!"
898
  msgstr ""
899
 
 
900
  msgid ""
901
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
902
  "translate product titles and descriptions, categories, tags and attributes."
903
  msgstr ""
904
 
 
905
  msgid "Multi-currency"
906
  msgstr ""
907
 
 
908
  msgid ""
909
  "Your WooCommerce-powered store is set to show prices and accept payments in "
910
  "a single currency only."
911
  msgstr ""
912
 
 
913
  msgid ""
914
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
915
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
917
  "positioning for global growth!"
918
  msgstr ""
919
 
 
920
  msgid ""
921
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
922
  "re-calculating prices on-the-fly."
923
  msgstr ""
924
 
 
925
  msgid "WPGlobus Premium Add-ons"
926
  msgstr ""
927
 
 
928
  msgid ""
929
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
930
  "you will be able to:"
931
  msgstr ""
932
 
 
933
  msgid ""
934
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
935
  "моя-страница and so on);"
936
  msgstr ""
937
 
 
938
  msgid ""
939
  "Postpone translation to some languages and <strong>publish only the "
940
  "translated texts</strong>;"
941
  msgstr ""
942
 
 
943
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
944
  msgstr ""
945
 
 
946
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
947
  msgstr ""
948
 
 
949
  msgid ""
950
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
951
  "strong>;"
952
  msgstr ""
953
 
 
954
  msgid "...and more."
955
  msgstr ""
956
 
 
957
  msgid "Click here to visit the WPGlobus Store"
958
  msgstr ""
959
 
 
960
  msgid "Select a language"
961
  msgstr "Select a language"
962
 
963
  #. translators: %3$s placeholder for the icon (actual picture).
 
964
  msgid ""
965
  "Place the %1$smain language%2$s of your site at the top of the list by "
966
  "dragging the %3$s icons."
967
  msgstr ""
968
 
969
  #. translators: placeholders for the "strong" HTML tags.
 
970
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
971
  msgstr ""
972
 
973
  #. translators: placeholders for the "strong" HTML tags.
 
974
  msgid "%1$sAdd%2$s more languages using the section below."
975
  msgstr ""
976
 
 
977
  msgid "When done, click the [Save Changes] button."
978
  msgstr "When done, click the [Save Changes] button."
979
 
980
  #. translators: %s - placeholder for the "Save Changes" button text.
 
981
  msgid "Press the %s button to confirm."
982
  msgstr ""
983
 
984
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
 
985
  msgid "-- none --"
986
  msgstr ""
987
 
 
988
  msgid "All menus"
989
  msgstr ""
990
 
 
991
  msgid "Instructions:"
992
  msgstr "Instructions:"
993
 
 
994
  msgid "(Found in some themes)"
995
  msgstr "(Found in some themes)"
996
 
 
997
  msgid "Enable"
998
  msgstr "Enable"
999
 
 
1000
  msgid "Languages table"
1001
  msgstr "Languages table"
1002
 
 
1003
  msgid "Use this table to add, edit or delete languages."
1004
  msgstr "Use this table to add, edit or delete languages."
1005
 
 
1006
  msgid "NOTE: you cannot remove the main language."
1007
  msgstr "NOTE: you cannot remove the main language."
1008
 
 
1009
  msgid "WPGlobus is enabled on these Post Types"
1010
  msgstr ""
1011
 
 
1012
  msgid "Uncheck to disable"
1013
  msgstr ""
1014
 
 
1015
  msgid ""
1016
  "Please note that there are post types, which status is managed by other "
1017
  "plugins and cannot be changed here."
1018
  msgstr ""
1019
 
 
1020
  msgid "Post Types"
1021
  msgstr ""
1022
 
 
1023
  msgid ""
1024
  "You should put here only the code provided by WPGlobus Support. Do not write "
1025
  "anything else in the sections below as it might break the functionality of "
1026
  "your website!"
1027
  msgstr ""
1028
 
 
1029
  msgid "Custom Code"
1030
  msgstr ""
1031
 
 
 
 
1032
  msgid "Enabled"
1033
  msgstr "Enabled"
1034
 
 
1035
  msgid "Builders support"
1036
  msgstr ""
1037
 
 
1038
  msgid "Builder mode is enabled on these Post Types"
1039
  msgstr ""
1040
 
 
1041
  msgid "Old fashioned language switcher"
1042
  msgstr ""
1043
 
 
1044
  msgid "Block Editor"
1045
  msgstr ""
1046
 
 
1047
  msgid "Block Editor Options"
1048
  msgstr ""
1049
 
 
1050
  msgid ""
1051
  "With the current settings, you will see the following lines in the section "
1052
  "HEAD of your site pages"
1053
  msgstr ""
1054
 
 
1055
  msgid "(example for two languages)"
1056
  msgstr ""
1057
 
 
1058
  msgid ""
1059
  "Tell search engines about localized versions of your pages using the "
1060
  "hreflang tag"
1061
  msgstr ""
1062
 
 
1063
  msgid "Output the hreflang tag as"
1064
  msgstr ""
1065
 
 
1066
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1067
  msgstr ""
1068
 
 
1069
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1070
  msgstr ""
1071
 
 
1072
  msgid "Language code only (en, ru, etc.)"
1073
  msgstr ""
1074
 
 
1075
  msgid "Use the code `x-default` for the main language"
1076
  msgstr ""
1077
 
 
1078
  msgid "Multilingual SEO"
1079
  msgstr ""
1080
 
 
1081
  msgid "Multilingual SEO Options"
1082
  msgstr ""
1083
 
 
1084
  msgid ""
1085
  "With WPGlobus, you can get translations for posts and pages using REST API."
1086
  msgstr ""
1087
 
 
 
 
 
1088
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1089
  msgstr ""
1090
 
 
1091
  msgid ""
1092
  "For demonstration, you can try the first post that WordPress creates at the "
1093
  "initial installation."
1094
  msgstr ""
1095
 
 
1096
  msgid ""
1097
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1098
  "information."
1099
  msgstr ""
1100
 
 
1101
  msgid ""
1102
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1103
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1104
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1105
  msgstr ""
1106
 
 
1107
  msgid "Description:"
1108
  msgstr ""
1109
 
 
 
1110
  msgid "REST API"
1111
  msgstr ""
1112
 
 
1113
  msgid "Translate strings"
1114
  msgstr ""
1115
 
 
1116
  msgid "item"
1117
  msgstr "item"
1118
 
 
1119
  msgid "items"
1120
  msgstr "items"
1121
 
 
1122
  msgid "Code"
1123
  msgstr "Code"
1124
 
 
1125
  msgid "Edit"
1126
  msgstr "Edit"
1127
 
 
1128
  msgid "Delete"
1129
  msgstr "Delete"
1130
 
 
1131
  msgid "File"
1132
  msgstr "File"
1133
 
 
1134
  msgid "Flag"
1135
  msgstr "Flag"
1136
 
 
1137
  msgid "Language name"
1138
  msgstr "Language name"
1139
 
 
1140
  msgid "English language name"
1141
  msgstr "English language name"
1142
 
 
1143
  msgid "No items found"
1144
  msgstr "No items found"
1145
 
 
1146
  msgid "Add new Language"
1147
  msgstr "Add new Language"
1148
 
 
1149
  msgid "No items of this type were found."
1150
  msgstr ""
1151
 
 
1152
  msgid "Select an item"
1153
  msgstr ""
1154
 
 
1155
  msgid "Multilingual support of this add-on is currently in Beta stage."
1156
  msgstr ""
1157
 
 
1158
  msgid "We do not recommend using it on production sites."
1159
  msgstr ""
1160
 
 
1161
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1162
  msgstr ""
1163
 
 
1164
  msgid "WordPress version"
1165
  msgstr ""
1166
 
 
1167
  msgid "In the WordPress core"
1168
  msgstr ""
1169
 
 
1170
  msgid "Core"
1171
  msgstr ""
1172
 
 
 
1173
  msgid "Current version"
1174
  msgstr ""
1175
 
 
 
1176
  msgid "Stage"
1177
  msgstr ""
1178
 
 
 
1179
  msgid "Status"
1180
  msgstr "Status"
1181
 
 
1182
  msgid "Block editor"
1183
  msgstr ""
1184
 
 
1185
  msgid "production"
1186
  msgstr ""
1187
 
 
1188
  msgid "List of supported add-ons"
1189
  msgstr ""
1190
 
 
1191
  msgid "Add-on"
1192
  msgstr ""
1193
 
 
1194
  msgid "Supported minimum version"
1195
  msgstr ""
1196
 
 
1197
  msgid "Not installed"
1198
  msgstr ""
1199
 
 
1200
  msgid "Installed, inactive"
1201
  msgstr ""
1202
 
 
1203
  msgid "Active"
1204
  msgstr "Active"
1205
 
 
1206
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1207
  msgstr ""
1208
 
 
1209
  msgid "However, some themes do not follow all WordPress standards strictly."
1210
  msgstr ""
1211
 
 
1212
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1213
  msgstr ""
1214
 
 
1215
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1216
  msgstr ""
1217
 
 
1218
  msgid ""
1219
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1220
  "With those themes, WPGlobus Customizer is switched off by default"
1221
  msgstr ""
1222
 
 
1223
  msgid "The currently active theme is"
1224
  msgstr ""
1225
 
 
1226
  msgid "In the current version, WPGlobus Customizer does not support"
1227
  msgstr ""
1228
 
 
1229
  msgid "translation of the navigation menus"
1230
  msgstr ""
1231
 
 
1232
  msgid "to translate, please go to"
1233
  msgstr ""
1234
 
 
1235
  msgid "Go to Customizer"
1236
  msgstr ""
1237
 
 
1238
  msgid "is undefined"
1239
  msgstr ""
1240
 
 
1241
  msgid "is set to"
1242
  msgstr ""
1243
 
 
1244
  msgid "by adding to the file wp-config.php"
1245
  msgstr ""
1246
 
 
1247
  msgid "now"
1248
  msgstr ""
1249
 
 
1250
  msgid "We rely on your support!"
1251
  msgstr "We rely on your support!"
1252
 
 
1253
  msgid "Please consider a small donation to support the future development."
1254
  msgstr "Please consider a small donation to support the future development."
1255
 
 
1256
  msgid "Thank you!"
1257
  msgstr "Thank you!"
1258
 
 
1259
  msgid "WPGlobus Plus!"
1260
  msgstr "WPGlobus Plus!"
1261
 
 
1262
  msgid ""
1263
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1264
  "separate publishing and more! "
1266
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1267
  "separate publishing and more! "
1268
 
 
1269
  msgid "Get WPGlobus Plus now!"
1270
  msgstr "Get WPGlobus Plus now!"
1271
 
 
1272
  msgid ""
1273
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1274
  "the current version."
1275
  msgstr ""
1276
 
 
1277
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1278
  msgstr ""
1279
 
 
1280
  msgid "WPGlobus warning: "
1281
  msgstr ""
1282
 
 
1283
  msgid "https://github.com/WPGlobus/WPGlobus"
1284
  msgstr "https://github.com/WPGlobus/WPGlobus"
1285
 
 
1286
  msgid ""
1287
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1288
  "widgets and even custom fields - in multiple languages!"
1290
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1291
  "widgets and even custom fields - in multiple languages!"
1292
 
 
1293
  msgid "https://wpglobus.com/"
1294
  msgstr "https://wpglobus.com/"
1295
 
languages/wpglobus-en_GB.po CHANGED
@@ -17,45 +17,26 @@ msgstr ""
17
  "Content-Transfer-Encoding: 8bit\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
 
20
- #: includes/admin/central/class-wpglobus-admin-central.php:122,
21
- #: includes/admin/class-wpglobus-about.php:42,
22
- #: includes/admin/class-wpglobus-about.php:117,
23
- #: includes/admin/class-wpglobus-clean.php:600,
24
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
25
  msgid "Guide"
26
  msgstr "Guide"
27
 
28
- #: includes/admin/central/class-wpglobus-admin-central.php:142,
29
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
30
  msgid "WPGlobus Help Desk"
31
  msgstr "WPGlobus Help Desk"
32
 
33
- #: includes/admin/central/class-wpglobus-admin-central.php:157,
34
- #: includes/admin/class-wpglobus-about.php:36,
35
- #: includes/admin/class-wpglobus-admin-menu.php:22,
36
- #: includes/admin/class-wpglobus-clean.php:606,
37
- #: includes/admin/class-wpglobus-customize-options.php:1293,
38
- #: includes/admin/class-wpglobus-customize-options.php:1261,
39
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
40
  msgid "Add-ons"
41
  msgstr "Add-ons"
42
 
43
- #: includes/admin/class-wpglobus-about.php:26
44
  msgid "Quick Start"
45
  msgstr "Quick Start"
46
 
47
- #: includes/admin/class-wpglobus-about.php:48,
48
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
49
  msgid "FAQ"
50
  msgstr "FAQ"
51
 
52
- #: includes/admin/class-wpglobus-about.php:59
53
  msgid ""
54
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
55
  msgstr ""
56
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
57
 
58
- #: includes/admin/class-wpglobus-about.php:60
59
  msgid ""
60
  "The mbstring extension is required for the full UTF-8 compatibility and "
61
  "better performance. Without it, some parts of WordPress and WPGlobus may "
@@ -67,19 +48,15 @@ msgstr ""
67
  "function incorrectly. Please contact your hosting company or systems "
68
  "administrator."
69
 
70
- #: includes/admin/class-wpglobus-about.php:87
71
  msgid "Go to WPGlobus Settings"
72
  msgstr "Go to WPGlobus Settings"
73
 
74
- #: includes/admin/class-wpglobus-about.php:98
75
  msgid "Easy as 1-2-3:"
76
  msgstr "Easy as 1-2-3:"
77
 
78
- #: includes/admin/class-wpglobus-about.php:101
79
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
80
  msgstr "Go to WPGlobus admin menu and choose the countries / languages;"
81
 
82
- #: includes/admin/class-wpglobus-about.php:102
83
  msgid ""
84
  "Enter the translations to the posts, pages, categories, tags and menus using "
85
  "a clean and simple interface."
@@ -87,7 +64,6 @@ msgstr ""
87
  "Enter the translations to the posts, pages, categories, tags and menus using "
88
  "a clean and simple interface."
89
 
90
- #: includes/admin/class-wpglobus-about.php:103
91
  msgid ""
92
  "Switch languages at the front-end using a drop-down menu with language names "
93
  "and country flags."
@@ -95,27 +71,21 @@ msgstr ""
95
  "Switch languages at the front-end using a drop-down menu with language names "
96
  "and country flags."
97
 
98
- #: includes/admin/class-wpglobus-about.php:111
99
  msgid "Links:"
100
  msgstr "Links:"
101
 
102
- #: includes/admin/class-wpglobus-about.php:119
103
  msgid "FAQs"
104
  msgstr "FAQs"
105
 
106
- #: includes/admin/class-wpglobus-about.php:121
107
  msgid "Contact Us"
108
  msgstr "Contact Us"
109
 
110
- #: includes/admin/class-wpglobus-about.php:123
111
  msgid "Please give us 5 stars!"
112
  msgstr "Please give us 5 stars!"
113
 
114
- #: includes/admin/class-wpglobus-about.php:133
115
  msgid "WPGlobus does not translate texts automatically!"
116
  msgstr "WPGlobus does not translate texts automatically!"
117
 
118
- #: includes/admin/class-wpglobus-about.php:136
119
  msgid ""
120
  "There are many translation companies and individual translators who can help "
121
  "you write and proofread the texts."
@@ -123,7 +93,6 @@ msgstr ""
123
  "There are many translation companies and individual translators who can help "
124
  "you write and proofread the texts."
125
 
126
- #: includes/admin/class-wpglobus-about.php:137
127
  msgid ""
128
  "When you choose a translator, please look at their native language, country "
129
  "of residence, specialization and knowledge of WordPress."
@@ -132,7 +101,6 @@ msgstr ""
132
  "of residence, specialization and knowledge of WordPress."
133
 
134
  #. translators: %s are used to insert HTML link. Keep them in place.
135
- #: includes/admin/class-wpglobus-about.php:143
136
  msgid ""
137
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
138
  "website. This is not an endorsement, just a courtesy. Please contact them "
@@ -142,11 +110,9 @@ msgstr ""
142
  "website. This is not an endorsement, just a courtesy. Please contact them "
143
  "directly and let us know how did it work for you!"
144
 
145
- #: includes/admin/class-wpglobus-about.php:154
146
  msgid "Important notes:"
147
  msgstr "Important notes:"
148
 
149
- #: includes/admin/class-wpglobus-about.php:159
150
  msgid ""
151
  "WPGlobus only supports the localization URLs in the form of <code>example."
152
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
@@ -156,11 +122,9 @@ msgstr ""
156
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
157
  "com</code> and language queries <code>example.com?lang=xx</code>."
158
 
159
- #: includes/admin/class-wpglobus-about.php:162
160
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
161
  msgstr "Some themes and plugins are <strong>not multilingual-ready</strong>."
162
 
163
- #: includes/admin/class-wpglobus-about.php:163
164
  msgid ""
165
  "They might display some texts with no translation, or with all languages "
166
  "mixed together."
@@ -169,7 +133,6 @@ msgstr ""
169
  "mixed together."
170
 
171
  #. translators: %s are used to insert HTML link. Keep them in place.
172
- #: includes/admin/class-wpglobus-about.php:167
173
  msgid ""
174
  "Please contact the theme / plugin author. If they are unable to assist, "
175
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
@@ -177,21 +140,15 @@ msgstr ""
177
  "Please contact the theme / plugin author. If they are unable to assist, "
178
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
179
 
180
- #: includes/admin/class-wpglobus-admin-bar-menu.php:124
181
  msgid "Language was set on your profile page"
182
  msgstr ""
183
 
184
- #: includes/admin/class-wpglobus-admin-bar-menu.php:194
185
  msgid "Add"
186
  msgstr "Add"
187
 
188
- #: includes/admin/class-wpglobus-admin-page.php:32,
189
- #: includes/admin/class-wpglobus-clean.php:585
190
  msgid "Multilingual Everything!"
191
  msgstr "Multilingual Everything!"
192
 
193
- #: includes/admin/class-wpglobus-admin-page.php:34,
194
- #: includes/admin/class-wpglobus-clean.php:588
195
  msgid ""
196
  "WPGlobus is a family of WordPress plugins assisting you in making "
197
  "multilingual WordPress blogs and sites."
@@ -199,19 +156,15 @@ msgstr ""
199
  "WPGlobus is a family of WordPress plugins assisting you in making "
200
  "multilingual WordPress blogs and sites."
201
 
202
- #: includes/admin/class-wpglobus-clean.php:232
203
  msgid "Remove the WPGlobus settings (not recommended)"
204
  msgstr "Remove the WPGlobus settings (not recommended)"
205
 
206
- #: includes/admin/class-wpglobus-clean.php:595
207
  msgid "Clean-up Tool"
208
  msgstr "Clean-up Tool"
209
 
210
- #: includes/admin/class-wpglobus-clean.php:609
211
  msgid "Support"
212
  msgstr "Support"
213
 
214
- #: includes/admin/class-wpglobus-clean.php:614
215
  msgid ""
216
  "WARNING: this operation is non-reversible. It is strongly recommended that "
217
  "you backup your database before proceeding."
@@ -219,7 +172,6 @@ msgstr ""
219
  "WARNING: this operation is non-reversible. It is strongly recommended that "
220
  "you backup your database before proceeding."
221
 
222
- #: includes/admin/class-wpglobus-clean.php:619
223
  msgid ""
224
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
225
  "By running it, you will remove ALL translations you have entered to your "
@@ -235,7 +187,6 @@ msgstr ""
235
  "might end up with empty titles, no content, no excerpts, blank comments and "
236
  "so on."
237
 
238
- #: includes/admin/class-wpglobus-clean.php:622
239
  msgid ""
240
  "Make sure that your active theme does not have any code related to WPGlobus. "
241
  "Such code could be added by you or by a 3rd party developer. If that code "
@@ -244,21 +195,17 @@ msgid ""
244
  msgstr ""
245
 
246
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
247
- #: includes/admin/class-wpglobus-clean.php:630
248
  msgid ""
249
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
250
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
251
  msgstr ""
252
 
253
- #: includes/admin/class-wpglobus-clean.php:641
254
  msgid "You are about to clean the content of the following database tables:"
255
  msgstr "You are about to clean the content of the following database tables:"
256
 
257
- #: includes/admin/class-wpglobus-clean.php:649
258
  msgid "The operations log"
259
  msgstr "The operations log"
260
 
261
- #: includes/admin/class-wpglobus-clean.php:652
262
  msgid ""
263
  "We are going to write a detailed log of all the database changes performed. "
264
  "It should help in the case you need to restore something important. The log "
@@ -268,7 +215,6 @@ msgstr ""
268
  "It should help in the case you need to restore something important. The log "
269
  "will be written to the file:"
270
 
271
- #: includes/admin/class-wpglobus-clean.php:662
272
  msgid ""
273
  "Uncheck if you do not want to write the operations log (we recommend to keep "
274
  "it checked)"
@@ -276,15 +222,12 @@ msgstr ""
276
  "Uncheck if you do not want to write the operations log (we recommend to keep "
277
  "it checked)"
278
 
279
- #: includes/admin/class-wpglobus-clean.php:667
280
  msgid "You have been warned..."
281
  msgstr "You have been warned..."
282
 
283
- #: includes/admin/class-wpglobus-clean.php:669
284
  msgid "Please confirm by checking the box below:"
285
  msgstr "Please confirm by checking the box below:"
286
 
287
- #: includes/admin/class-wpglobus-clean.php:671
288
  msgid ""
289
  "I have read and understood everything written on this page. I am aware that "
290
  "by using this tool I may loose some content of my website. I have made a "
@@ -296,152 +239,99 @@ msgstr ""
296
  "database backup and know how to restore it if necessary. I am fully "
297
  "responsible for the results."
298
 
299
- #: includes/admin/class-wpglobus-clean.php:674
300
  msgid "YES, I CONFIRM"
301
  msgstr "YES, I CONFIRM"
302
 
303
- #: includes/admin/class-wpglobus-clean.php:678
304
  msgid "Process with the Clean-up"
305
  msgstr "Process with the Clean-up"
306
 
307
- #: includes/admin/class-wpglobus-customize-options.php:73,
308
- #: includes/admin/class-wpglobus-customize-options.php:100,
309
- #: includes/admin/class-wpglobus-customize-options.php:145,
310
- #: includes/admin/class-wpglobus-customize-options.php:183
311
  msgid "Default"
312
  msgstr "Default"
313
 
314
- #: includes/admin/class-wpglobus-customize-options.php:264
315
  msgid "Section"
316
  msgstr "Section"
317
 
318
- #: includes/admin/class-wpglobus-customize-options.php:277
319
  msgid "Show all sections"
320
  msgstr "Show all sections"
321
 
322
- #: includes/admin/class-wpglobus-customize-options.php:279
323
  msgid "Save &amp; Reload"
324
  msgstr "Save &amp; Reload"
325
 
326
- #: includes/admin/class-wpglobus-customize-options.php:553,
327
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:585,
328
- #: includes/class-wpglobus.php:1284, wpglobus.php:12, wpglobus.php:18
329
  msgid "WPGlobus"
330
  msgstr "WPGlobus"
331
 
332
- #: includes/admin/class-wpglobus-customize-options.php:604
333
  msgid ""
334
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
335
  msgstr ""
336
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
337
 
338
- #: includes/admin/class-wpglobus-customize-options.php:610
339
  msgid "Fields Settings"
340
  msgstr "Fields Settings"
341
 
342
- #: includes/admin/class-wpglobus-customize-options.php:655
343
  msgid "WPGlobus Settings"
344
  msgstr "WPGlobus Settings"
345
 
346
- #: includes/admin/class-wpglobus-customize-options.php:723
347
  msgid "Help"
348
  msgstr "Help"
349
 
350
- #: includes/admin/class-wpglobus-customize-options.php:745,
351
- #: includes/options/class-wpglobus-options.php:1176
352
  msgid "Languages"
353
  msgstr "Languages"
354
 
355
- #: includes/admin/class-wpglobus-customize-options.php:765,
356
- #: includes/options/class-wpglobus-options.php:1189
357
  msgid "Enabled Languages"
358
  msgstr "Enabled Languages"
359
 
360
- #: includes/admin/class-wpglobus-customize-options.php:767,
361
- #: includes/options/class-wpglobus-options.php:1190
362
  msgid "These languages are currently enabled on your site."
363
  msgstr "These languages are currently enabled on your site."
364
 
365
- #: includes/admin/class-wpglobus-customize-options.php:795,
366
- #: includes/options/class-wpglobus-options.php:1148
367
  msgid "Choose a language you would like to enable."
368
  msgstr ""
369
 
370
- #: includes/admin/class-wpglobus-customize-options.php:797
371
  msgid "Press the [Save & Publish] button to confirm."
372
  msgstr ""
373
 
374
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
375
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
376
- #: includes/admin/class-wpglobus-customize-options.php:801,
377
- #: includes/options/class-wpglobus-options.php:1154
378
  msgid "or Add new Language %1$s here %2$s"
379
  msgstr "or Add new Language %1$s here %2$s"
380
 
381
- #: includes/admin/class-wpglobus-customize-options.php:813,
382
- #: includes/options/class-wpglobus-options.php:1203
383
  msgid "Add Languages"
384
  msgstr "Add Languages"
385
 
386
- #: includes/admin/class-wpglobus-customize-options.php:833,
387
- #: includes/options/class-wpglobus-options.php:1211
388
  msgid "Language Selector Mode"
389
  msgstr "Language Selector Mode"
390
 
391
- #: includes/admin/class-wpglobus-customize-options.php:838,
392
- #: includes/options/class-wpglobus-options.php:1214
393
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
394
  msgstr "Two-letter Code with flag (en, ru, it, etc.)"
395
 
396
- #: includes/admin/class-wpglobus-customize-options.php:839,
397
- #: includes/options/class-wpglobus-options.php:1215
398
  msgid "Full Name (English, Russian, Italian, etc.)"
399
  msgstr "Full Name (English, Russian, Italian, etc.)"
400
 
401
- #: includes/admin/class-wpglobus-customize-options.php:841,
402
- #: includes/options/class-wpglobus-options.php:1216
403
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
404
  msgstr "Full Name with flag (English, Russian, Italian, etc.)"
405
 
406
- #: includes/admin/class-wpglobus-customize-options.php:842,
407
- #: includes/options/class-wpglobus-options.php:1217
408
  msgid "Flags only"
409
  msgstr "Flags only"
410
 
411
- #: includes/admin/class-wpglobus-customize-options.php:844,
412
- #: includes/options/class-wpglobus-options.php:1212
413
  msgid ""
414
  "Choose the way language name and country flag are shown in the drop-down menu"
415
  msgstr ""
416
  "Choose the way language name and country flag are shown in the drop-down menu"
417
 
418
- #: includes/admin/class-wpglobus-customize-options.php:879
419
  msgid "select navigation menu"
420
  msgstr ""
421
 
422
- #: includes/admin/class-wpglobus-customize-options.php:915,
423
- #: includes/admin/class-wpglobus-customize-options.php:888,
424
- #: includes/options/class-wpglobus-options.php:1230
425
  msgid "Language Selector Menu"
426
  msgstr "Language Selector Menu"
427
 
428
- #: includes/admin/class-wpglobus-customize-options.php:920,
429
- #: includes/admin/class-wpglobus-customize-options.php:899,
430
- #: includes/options/class-wpglobus-options.php:1231
431
  msgid "Choose the navigation menu where the language selector will be shown"
432
  msgstr "Choose the navigation menu where the language selector will be shown"
433
 
434
- #: includes/admin/class-wpglobus-customize-options.php:898
435
  msgid "No menus have been created yet. Create some."
436
  msgstr "No menus have been created yet. Create some."
437
 
438
- #: includes/admin/class-wpglobus-customize-options.php:940,
439
- #: includes/options/class-wpglobus-options.php:1241
440
  msgid "\"All Pages\" menus Language selector"
441
  msgstr "\"All Pages\" menus Language selector"
442
 
443
- #: includes/admin/class-wpglobus-customize-options.php:943,
444
- #: includes/options/class-wpglobus-options.php:1243
445
  msgid ""
446
  "Adds language selector to the menus that automatically list all existing "
447
  "pages (using `wp_list_pages`)"
@@ -449,12 +339,9 @@ msgstr ""
449
  "Adds language selector to the menus that automatically list all existing "
450
  "pages (using `wp_list_pages`)"
451
 
452
- #: includes/admin/class-wpglobus-customize-options.php:960,
453
- #: includes/options/class-wpglobus-options.php:1356
454
  msgid "Custom CSS"
455
  msgstr "Custom CSS"
456
 
457
- #: includes/admin/class-wpglobus-customize-options.php:964
458
  msgid ""
459
  "Here you can enter the CSS rules to adjust the language selector menu for "
460
  "your theme. Look at the examples in the `style-samples.css` file."
@@ -462,31 +349,21 @@ msgstr ""
462
  "Here you can enter the CSS rules to adjust the language selector menu for "
463
  "your theme. Look at the examples in the `style-samples.css` file."
464
 
465
- #: includes/admin/class-wpglobus-customize-options.php:983
466
  msgid "Post types"
467
  msgstr "Post types"
468
 
469
- #: includes/admin/class-wpglobus-customize-options.php:1091
470
  msgid "Uncheck to disable WPGlobus"
471
  msgstr "Uncheck to disable WPGlobus"
472
 
473
- #: includes/admin/class-wpglobus-customize-options.php:1125,
474
- #: includes/options/class-wpglobus-options.php:1424
475
  msgid "Redirect"
476
  msgstr "Redirect"
477
 
478
- #: includes/admin/class-wpglobus-customize-options.php:1150,
479
- #: includes/options/class-wpglobus-options.php:1419
480
  msgid "Choose the language automatically, based on:"
481
  msgstr "Choose the language automatically, based on:"
482
 
483
- #: includes/admin/class-wpglobus-customize-options.php:1152,
484
- #: includes/options/class-wpglobus-options.php:1409
485
  msgid "Preferred language set in the browser"
486
  msgstr "Preferred language set in the browser"
487
 
488
- #: includes/admin/class-wpglobus-customize-options.php:1153,
489
- #: includes/options/class-wpglobus-options.php:1396
490
  msgid ""
491
  "When a user comes to the site for the first time, try to find the best "
492
  "matching language version of the page."
@@ -494,45 +371,32 @@ msgstr ""
494
  "When a user comes to the site for the first time, try to find the best "
495
  "matching language version of the page."
496
 
497
- #: includes/admin/class-wpglobus-customize-options.php:1214,
498
- #: includes/admin/class-wpglobus-customize-options.php:1234,
499
- #: includes/admin/class-wpglobus-customize-options.php:1192,
500
- #: includes/options/class-wpglobus-options.php:1368
501
  msgid "Custom JS Code"
502
  msgstr "Custom JS Code"
503
 
504
- #: includes/admin/class-wpglobus-customize-options.php:1232,
505
- #: includes/admin/class-wpglobus-customize-options.php:1276
506
  msgid "Title"
507
  msgstr "Title"
508
 
509
- #: includes/admin/class-wpglobus-customize-options.php:1235
510
  msgid "(Paste your JS code here.)"
511
  msgstr "(Paste your JS code here.)"
512
 
513
- #: includes/admin/class-wpglobus-customize-options.php:1184
514
  msgid ""
515
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
516
  "version 4.9 or later."
517
  msgstr ""
518
 
519
- #: includes/admin/class-wpglobus-customize-options.php:1186
520
  msgid "With your version of WordPress, please use the"
521
  msgstr ""
522
 
523
- #: includes/admin/class-wpglobus-customize-options.php:1188
524
  msgid "WPGlobus Settings page"
525
  msgstr ""
526
 
527
- #: includes/admin/class-wpglobus-customize-options.php:1277
528
  msgid "Label"
529
  msgstr "Label"
530
 
531
- #: includes/admin/class-wpglobus-customize-options.php:1281
532
  msgid "Description"
533
  msgstr "Description"
534
 
535
- #: includes/admin/class-wpglobus-customize-options.php:1345
536
  msgid ""
537
  "Here you can specify which fields should be considered multilingual by "
538
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
@@ -540,24 +404,17 @@ msgstr ""
540
  "Here you can specify which fields should be considered multilingual by "
541
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
542
 
543
- #: includes/admin/class-wpglobus-customize-options.php:1351,
544
- #: includes/options/class-wpglobus-options.php:608
545
  msgid "Thank you for installing WPGlobus!"
546
  msgstr "Thank you for installing WPGlobus!"
547
 
548
- #: includes/admin/class-wpglobus-customize-options.php:1355,
549
- #: includes/options/class-wpglobus-options.php:612
550
  msgid "Read About WPGlobus"
551
  msgstr "Read About WPGlobus"
552
 
553
- #: includes/admin/class-wpglobus-customize-options.php:1358
554
  msgid ""
555
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
556
  msgstr ""
557
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
558
 
559
- #: includes/admin/class-wpglobus-customize-options.php:1363,
560
- #: includes/options/class-wpglobus-options.php:648
561
  msgid ""
562
  "Should you have any questions or comments, please do not hesitate to contact "
563
  "us."
@@ -565,21 +422,14 @@ msgstr ""
565
  "Should you have any questions or comments, please do not hesitate to contact "
566
  "us."
567
 
568
- #: includes/admin/class-wpglobus-customize-options.php:1367,
569
- #: includes/options/class-wpglobus-options.php:652
570
  msgid "Sincerely Yours,"
571
  msgstr "Sincerely Yours,"
572
 
573
- #: includes/admin/class-wpglobus-customize-options.php:1369,
574
- #: includes/options/class-wpglobus-options.php:654,
575
- #: includes/options/wpglobus-options-header.php:34
576
  msgid "The WPGlobus Team"
577
  msgstr "The WPGlobus Team"
578
 
579
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
580
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
581
- #: includes/admin/class-wpglobus-customize-options.php:1388,
582
- #: includes/options/class-wpglobus-options.php:689
583
  msgid ""
584
  "We would hate to see you go. If something goes wrong, do not uninstall "
585
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
@@ -587,8 +437,6 @@ msgstr ""
587
  "We would hate to see you go. If something goes wrong, do not uninstall "
588
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
589
 
590
- #: includes/admin/class-wpglobus-customize-options.php:1395,
591
- #: includes/options/class-wpglobus-options.php:696
592
  msgid ""
593
  "Please note that if you deactivate WPGlobus, your site will show all the "
594
  "languages together, mixed up. You will need to remove all translations, "
@@ -600,8 +448,6 @@ msgstr ""
600
 
601
  #. translators: %s: link to the Clean-up Tool
602
  #. translators: %s: link to the Clean-up Tool.
603
- #: includes/admin/class-wpglobus-customize-options.php:1400,
604
- #: includes/options/class-wpglobus-options.php:700
605
  msgid ""
606
  "If there are just a few places, you should edit them manually. To "
607
  "automatically remove all translations at once, you can use the %s. WARNING: "
@@ -615,181 +461,133 @@ msgstr ""
615
 
616
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
617
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
618
- #: includes/admin/class-wpglobus-customize-options.php:1403,
619
- #: includes/options/class-wpglobus-options.php:677
620
  msgid "%1$sClean-up Tool%2$s"
621
  msgstr "%1$sClean-up Tool%2$s"
622
 
623
  #. translators: %s: name of current theme
624
- #: includes/admin/class-wpglobus-customize-options.php:1415
625
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
626
  msgstr "Sorry, WPGlobus customizer doesn't support current theme %s."
627
 
628
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
629
- #: includes/admin/class-wpglobus-customize-options.php:1421
630
  msgid "Please use %1$sWPGlobus options page%2$s instead."
631
  msgstr "Please use %1$sWPGlobus options page%2$s instead."
632
 
633
- #: includes/admin/class-wpglobus-customize-options.php:1485
634
  msgid "Expand/Shrink"
635
  msgstr ""
636
 
637
- #: includes/admin/class-wpglobus-dashboard-news.php:43,
638
- #: includes/admin/class-wpglobus-dashboard-news.php:59
639
  msgid "WPGlobus News"
640
  msgstr "WPGlobus News"
641
 
642
- #: includes/admin/class-wpglobus-language-edit.php:197,
643
- #: includes/admin/class-wpglobus-language-edit.php:192
644
  msgid "Options updated"
645
  msgstr "Options updated"
646
 
647
- #: includes/admin/class-wpglobus-language-edit.php:272
648
  msgid "Please enter a language code!"
649
  msgstr "Please enter a language code!"
650
 
651
- #: includes/admin/class-wpglobus-language-edit.php:276
652
  msgid "Language code already exists!"
653
  msgstr "Language code already exists!"
654
 
655
- #: includes/admin/class-wpglobus-language-edit.php:280
656
  msgid "Please specify the language flag!"
657
  msgstr "Please specify the language flag!"
658
 
659
- #: includes/admin/class-wpglobus-language-edit.php:284
660
  msgid "Please enter the language name!"
661
  msgstr "Please enter the language name!"
662
 
663
- #: includes/admin/class-wpglobus-language-edit.php:288
664
  msgid "Please enter the language name in English!"
665
  msgstr "Please enter the language name in English!"
666
 
667
- #: includes/admin/class-wpglobus-language-edit.php:292
668
  msgid "Please enter the locale!"
669
  msgstr "Please enter the locale!"
670
 
671
- #: includes/admin/class-wpglobus-language-edit.php:354
672
  msgid "Add Language"
673
  msgstr "Add Language"
674
 
675
- #: includes/admin/class-wpglobus-language-edit.php:351,
676
- #: includes/admin/class-wpglobus-language-edit.php:462,
677
- #: includes/admin/class-wpglobus-language-edit.php:455
678
  msgid "Delete Language"
679
  msgstr "Delete Language"
680
 
681
- #: includes/admin/class-wpglobus-language-edit.php:349
682
  msgid "Edit Language"
683
  msgstr "Edit Language"
684
 
685
- #: includes/admin/class-wpglobus-language-edit.php:384
686
  msgid "Language Code"
687
  msgstr "Language Code"
688
 
689
- #: includes/admin/class-wpglobus-language-edit.php:391
690
  msgid ""
691
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
692
  msgstr ""
693
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
694
 
695
- #: includes/admin/class-wpglobus-language-edit.php:396
696
  msgid "Language flag"
697
  msgstr "Language flag"
698
 
699
- #: includes/admin/class-wpglobus-language-edit.php:412
700
  msgid "Name"
701
  msgstr "Name"
702
 
703
- #: includes/admin/class-wpglobus-language-edit.php:417
704
  msgid ""
705
  "The name of the language in its native alphabet. (Examples: English, Русский)"
706
  msgstr ""
707
  "The name of the language in its native alphabet. (Examples: English, Русский)"
708
 
709
- #: includes/admin/class-wpglobus-language-edit.php:422
710
  msgid "Name in English"
711
  msgstr "Name in English"
712
 
713
- #: includes/admin/class-wpglobus-language-edit.php:427
714
  msgid "The name of the language in English"
715
  msgstr "The name of the language in English"
716
 
717
- #: includes/admin/class-wpglobus-language-edit.php:432,
718
- #: includes/options/fields/table/class-wpglobus-languages-table.php:115
719
  msgid "Locale"
720
  msgstr "Locale"
721
 
722
- #: includes/admin/class-wpglobus-language-edit.php:437
723
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
724
  msgstr "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
725
 
726
- #: includes/admin/class-wpglobus-language-edit.php:460
727
  msgid "Are you sure you want to delete?"
728
  msgstr "Are you sure you want to delete?"
729
 
730
- #: includes/admin/class-wpglobus-language-edit.php:447
731
  msgid "Save Changes"
732
  msgstr "Save Changes"
733
 
734
- #: includes/admin/class-wpglobus-language-edit.php:470
735
  msgid "Back to the WPGlobus Settings"
736
  msgstr "Back to the WPGlobus Settings"
737
 
738
- #: includes/admin/class-wpglobus-plugin-install.php:308
739
  msgid "Current Version"
740
  msgstr "Current Version"
741
 
742
- #: includes/admin/class-wpglobus-plugin-install.php:309
743
  msgid "Get it now!"
744
  msgstr "Get it now!"
745
 
746
- #: includes/admin/class-wpglobus-plugin-install.php:310
747
  msgid "Premium add-on"
748
  msgstr "Premium add-on"
749
 
750
- #: includes/admin/class-wpglobus-plugin-install.php:311,
751
- #: includes/options/fields/table/class-wpglobus-languages-table.php:472
752
  msgid "Installed"
753
  msgstr "Installed"
754
 
755
  #. translators: placeholders are for the HTML tags.
756
- #: includes/admin/class-wpglobus-plugin-install.php:319
757
  msgid ""
758
  "If you have already purchased a WPGlobus premium extension, please read "
759
  "%1$sthe installation instructions here%2$s"
760
  msgstr ""
761
 
762
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
763
- #: includes/options/class-wpglobus-options.php:726
764
  msgid "Help Desk"
765
  msgstr "Help Desk"
766
 
767
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:185
768
  msgid "Email not sent. Please fill in the entire form."
769
  msgstr ""
770
 
771
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:195
772
  msgid ""
773
  "Email not sent. Please verify that your name and email are entered correctly."
774
  msgstr ""
775
 
776
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:216
777
  msgid "Email sent."
778
  msgstr ""
779
 
780
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
781
  msgid "Thank you for using WPGlobus!"
782
  msgstr "Thank you for using WPGlobus!"
783
 
784
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
785
  msgid "Our Support Team is here to answer your questions or concerns."
786
  msgstr "Our Support Team is here to answer your questions or concerns."
787
 
788
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
789
  msgid "To help us serve you better:"
790
  msgstr "To help us serve you better:"
791
 
792
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
793
  msgid ""
794
  "Please check if the problem persists if you switch to a standard WordPress "
795
  "theme."
@@ -797,56 +595,43 @@ msgstr ""
797
  "Please check if the problem persists if you switch to a standard WordPress "
798
  "theme."
799
 
800
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
801
  msgid ""
802
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
803
  msgstr ""
804
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
805
 
806
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
807
  msgid "Please fill in and submit the contact form:"
808
  msgstr ""
809
 
810
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
811
  msgid "Please make sure the email address is correct."
812
  msgstr ""
813
 
814
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
815
  msgid "Subject"
816
  msgstr "Subject"
817
 
818
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
819
  msgid "Short description of the problem"
820
  msgstr ""
821
 
822
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
823
  msgid "Detailed description"
824
  msgstr ""
825
 
826
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
827
  msgid "Technical Information"
828
  msgstr "Technical Information"
829
 
830
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
831
  msgid "This information helps us to find the problem source"
832
  msgstr ""
833
 
834
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:161
835
  msgid ""
836
  "Alternatively, please email %s. Do not forget to copy and paste the "
837
  "technical information to your email message."
838
  msgstr ""
839
 
840
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:89
841
  msgid "WPGlobus Recommends:"
842
  msgstr "WPGlobus Recommends:"
843
 
844
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:98,
845
- #: includes/options/class-wpglobus-options.php:933
846
  msgid "WPGlobus for WooCommerce"
847
  msgstr "WPGlobus for WooCommerce"
848
 
849
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:102
850
  msgid ""
851
  "Translate product titles and descriptions, product categories, tags and "
852
  "attributes."
@@ -854,171 +639,127 @@ msgstr ""
854
  "Translate product titles and descriptions, product categories, tags and "
855
  "attributes."
856
 
857
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:107
858
  msgid "Get it now:"
859
  msgstr "Get it now:"
860
 
861
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:117
862
  msgid "WooCommerce Multi-Currency"
863
  msgstr ""
864
 
865
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:121
866
  msgid "Accept multiple currencies in your online store!"
867
  msgstr "Accept multiple currencies in your online store!"
868
 
869
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:126,
870
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:185
871
  msgid "Check it out:"
872
  msgstr "Check it out:"
873
 
874
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:195
875
  msgid "To translate permalinks, please activate the module Slug."
876
  msgstr ""
877
 
878
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:183
879
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
880
  msgstr ""
881
 
882
- #: includes/builders/class-wpglobus-builder.php:278,
883
- #: includes/class-wpglobus.php:3577
884
  msgid "Save draft before using extra language."
885
  msgstr ""
886
 
887
- #: includes/builders/class-wpglobus-builder.php:371
888
  msgid "Builder"
889
  msgstr ""
890
 
891
- #: includes/builders/class-wpglobus-builder.php:395
892
  msgid "Сompatibility Settings"
893
  msgstr ""
894
 
895
  #. translators: ON/OFF status of WPGlobus on the edit pages.
896
  #. translators: ON/OFF status of WPGlobus on the edit pages.
897
- #: includes/builders/elementor/class-wpglobus-elementor.php:255,
898
- #: includes/class-wpglobus.php:1263
899
  msgid "ON"
900
  msgstr "ON"
901
 
902
- #: includes/builders/elementor/class-wpglobus-elementor.php:256,
903
- #: includes/class-wpglobus.php:1264
904
  msgid "Turn off"
905
  msgstr ""
906
 
907
- #: includes/builders/elementor/class-wpglobus-elementor.php:250,
908
- #: includes/class-wpglobus.php:1258
909
  msgid "OFF"
910
  msgstr "OFF"
911
 
912
- #: includes/builders/elementor/class-wpglobus-elementor.php:251,
913
- #: includes/class-wpglobus.php:1259
914
  msgid "Turn on"
915
  msgstr ""
916
 
917
- #: includes/builders/elementor/class-wpglobus-elementor.php:281
918
  msgid "Elementor"
919
  msgstr ""
920
 
921
- #: includes/builders/elementor/class-wpglobus-elementor.php:508
922
  msgid "WPGlobus languages"
923
  msgstr ""
924
 
925
- #: includes/builders/elementor/class-wpglobus-elementor.php:514
926
  msgid "current"
927
  msgstr ""
928
 
929
- #: includes/builders/elementor/class-wpglobus-elementor.php:675
930
  msgid ""
931
  "WPGlobus provides multilingual support for Elementor only when the option "
932
  "%1$s%2$s%3$s is set to %4$s."
933
  msgstr ""
934
 
935
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:228
936
  msgid "Before switching the language, please save draft or publish."
937
  msgstr ""
938
 
939
  #. translators: Metabox title FOR language.
940
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:318
941
  msgctxt "filter__seo_meta_box_title"
942
  msgid "for"
943
  msgstr ""
944
 
945
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:392
946
  msgid "Page is being reloaded. Please wait..."
947
  msgstr ""
948
 
949
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:393
950
  msgid ""
951
  "Before switching the language, please save draft or publish, then reload "
952
  "page."
953
  msgstr ""
954
 
955
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
956
  msgid ""
957
  "WPGlobus provides multilingual support for Elementor only when the option "
958
  "`CSS Print Method` is set to `External File`."
959
  msgstr ""
960
 
961
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
962
  msgid "Open Elementor Settings page"
963
  msgstr ""
964
 
965
- #: includes/class-wpglobus-widget.php:27
966
  msgid "WPGlobus widget"
967
  msgstr "WPGlobus widget"
968
 
969
- #: includes/class-wpglobus-widget.php:29
970
  msgid "Add language switcher"
971
  msgstr "Add language switcher"
972
 
973
- #: includes/class-wpglobus-widget.php:32
974
  msgid "Flags"
975
  msgstr "Flags"
976
 
977
- #: includes/class-wpglobus-widget.php:33
978
  msgid "List"
979
  msgstr "List"
980
 
981
- #: includes/class-wpglobus-widget.php:34
982
  msgid "List with flags"
983
  msgstr "List with flags"
984
 
985
- #: includes/class-wpglobus-widget.php:35
986
  msgid "Select"
987
  msgstr "Select"
988
 
989
- #: includes/class-wpglobus-widget.php:36
990
  msgid "Select with language code"
991
  msgstr "Select with language code"
992
 
993
- #: includes/class-wpglobus-widget.php:37
994
  msgid "Dropdown"
995
  msgstr "Dropdown"
996
 
997
- #: includes/class-wpglobus-widget.php:38
998
  msgid "Dropdown with flags"
999
  msgstr "Dropdown with flags"
1000
 
1001
- #: includes/class-wpglobus-widget.php:264
1002
  msgid "Selector type"
1003
  msgstr "Selector type"
1004
 
1005
- #: includes/class-wpglobus.php:1447
1006
  msgid "You cannot disable the main language."
1007
  msgstr "You cannot disable the main language."
1008
 
1009
- #: includes/class-wpglobus.php:1672
1010
  msgid "Need a multilingual slug?"
1011
  msgstr "Need a multilingual slug?"
1012
 
1013
- #: includes/class-wpglobus.php:1655
1014
  msgid "*) Available after the menu is saved."
1015
  msgstr "*) Available after the menu is saved."
1016
 
1017
- #: includes/class-wpglobus.php:4025
1018
  msgid "You must enable Pretty Permalinks to use WPGlobus."
1019
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
1020
 
1021
- #: includes/class-wpglobus.php:4027
1022
  msgid ""
1023
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1024
  "default option."
@@ -1026,193 +767,150 @@ msgstr ""
1026
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1027
  "default option."
1028
 
1029
- #: includes/options/class-wpglobus-options.php:281
1030
  msgid "Language Selector Menu Style"
1031
  msgstr ""
1032
 
1033
- #: includes/options/class-wpglobus-options.php:282,
1034
- #: includes/options/class-wpglobus-options.php:802,
1035
- #: includes/options/class-wpglobus-options.php:871
1036
  msgid "WPGlobus Plus"
1037
  msgstr ""
1038
 
1039
- #: includes/options/class-wpglobus-options.php:283
1040
  msgid "Drop-down languages menu or Flat (in one line)"
1041
  msgstr ""
1042
 
1043
- #: includes/options/class-wpglobus-options.php:286
1044
  msgid "Do not change"
1045
  msgstr ""
1046
 
1047
- #: includes/options/class-wpglobus-options.php:287
1048
  msgid "Drop-down (vertical)"
1049
  msgstr ""
1050
 
1051
- #: includes/options/class-wpglobus-options.php:288
1052
  msgid "Flat (horizontal)"
1053
  msgstr ""
1054
 
1055
- #: includes/options/class-wpglobus-options.php:343
1056
  msgid ""
1057
  "If you see this message then your browser may not display the WPGlobus "
1058
  "Settings panel properly. Please try another browser."
1059
  msgstr ""
1060
 
1061
- #: includes/options/class-wpglobus-options.php:599,
1062
- #: includes/options/class-wpglobus-options.php:1577
1063
  msgid "Сompatibility"
1064
  msgstr ""
1065
 
1066
  #. translators: placeholders for "strong" tags.
1067
- #: includes/options/class-wpglobus-options.php:616
1068
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
1069
  msgstr ""
1070
 
1071
  #. translators: placeholders for "strong" tags.
1072
- #: includes/options/class-wpglobus-options.php:619
1073
  msgid ""
1074
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
1075
  "the language attributes: name, code, flag icon, etc."
1076
  msgstr ""
1077
 
1078
- #: includes/options/class-wpglobus-options.php:622
1079
  msgid "Important notes"
1080
  msgstr ""
1081
 
1082
  #. translators: placeholders for "strong" tags.
1083
- #: includes/options/class-wpglobus-options.php:624
1084
  msgid "Version %1$s1.9.17%2$s "
1085
  msgstr ""
1086
 
1087
  #. translators: placeholders for "strong" tags.
1088
- #: includes/options/class-wpglobus-options.php:627
1089
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
1090
  msgstr ""
1091
 
1092
  #. translators: placeholders for "strong" tags; compatibility tab link.
1093
- #: includes/options/class-wpglobus-options.php:630
1094
  msgid ""
1095
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
1096
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
1097
  msgstr ""
1098
 
1099
  #. translators: placeholders for "strong" tags; compatibility tab link.
1100
- #: includes/options/class-wpglobus-options.php:633
1101
  msgid ""
1102
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
1103
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
1104
  msgstr ""
1105
 
1106
  #. translators: placeholders for "strong" tags.
1107
- #: includes/options/class-wpglobus-options.php:637
1108
  msgid "Version %1$s2.2.11%2$s "
1109
  msgstr ""
1110
 
1111
- #: includes/options/class-wpglobus-options.php:639
1112
  msgid "Starting from this version"
1113
  msgstr ""
1114
 
1115
  #. translators: placeholders for "strong" tags.
1116
- #: includes/options/class-wpglobus-options.php:642
1117
  msgid ""
1118
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
1119
  "(CPT)."
1120
  msgstr ""
1121
 
1122
  #. translators: placeholders for "strong" tags.
1123
- #: includes/options/class-wpglobus-options.php:645
1124
  msgid ""
1125
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
1126
  "the %1$s[%3$s]%2$s tab."
1127
  msgstr ""
1128
 
1129
- #: includes/options/class-wpglobus-options.php:662
1130
  msgid "Welcome!"
1131
  msgstr "Welcome!"
1132
 
1133
- #: includes/options/class-wpglobus-options.php:685
1134
  msgid "Deactivating / Uninstalling"
1135
  msgstr "Deactivating / Uninstalling"
1136
 
1137
- #: includes/options/class-wpglobus-options.php:711
1138
  msgid "Uninstall"
1139
  msgstr ""
1140
 
1141
- #: includes/options/class-wpglobus-options.php:741
1142
  msgid "All add-ons"
1143
  msgstr ""
1144
 
1145
- #: includes/options/class-wpglobus-options.php:756
1146
  msgid "Mobile Menu"
1147
  msgstr ""
1148
 
1149
- #: includes/options/class-wpglobus-options.php:771
1150
  msgid "Language Widgets"
1151
  msgstr ""
1152
 
1153
- #: includes/options/class-wpglobus-options.php:841
1154
  msgid "We Recommend..."
1155
  msgstr ""
1156
 
1157
- #: includes/options/class-wpglobus-options.php:873
1158
  msgid ""
1159
  "Our premium add-on, WPGlobus Plus, will add several features to your "
1160
  "website, such as:"
1161
  msgstr ""
1162
 
1163
- #: includes/options/class-wpglobus-options.php:876
1164
  msgid ""
1165
  "- Ability to write a post in one language and immediately publish it, not "
1166
  "waiting for the translation to other languages;"
1167
  msgstr ""
1168
 
1169
- #: includes/options/class-wpglobus-options.php:879
1170
  msgid "- Set different URLs for each translation;"
1171
  msgstr ""
1172
 
1173
- #: includes/options/class-wpglobus-options.php:882
1174
  msgid ""
1175
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
1176
  "for each translation;"
1177
  msgstr ""
1178
 
1179
- #: includes/options/class-wpglobus-options.php:885
1180
  msgid "- and more..."
1181
  msgstr ""
1182
 
1183
- #: includes/options/class-wpglobus-options.php:888,
1184
- #: includes/options/class-wpglobus-options.php:945,
1185
- #: includes/options/class-wpglobus-options.php:1003
1186
  msgid "Click here to download"
1187
  msgstr ""
1188
 
1189
- #: includes/options/class-wpglobus-options.php:936
1190
  msgid ""
1191
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
1192
  "translate your blog posts and pages to many languages."
1193
  msgstr ""
1194
 
1195
- #: includes/options/class-wpglobus-options.php:939
1196
  msgid "The next step is to translate your WooCommerce-based store!"
1197
  msgstr ""
1198
 
1199
- #: includes/options/class-wpglobus-options.php:942
1200
  msgid ""
1201
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
1202
  "translate product titles and descriptions, categories, tags and attributes."
1203
  msgstr ""
1204
 
1205
- #: includes/options/class-wpglobus-options.php:989
1206
  msgid "Multi-currency"
1207
  msgstr ""
1208
 
1209
- #: includes/options/class-wpglobus-options.php:992
1210
  msgid ""
1211
  "Your WooCommerce-powered store is set to show prices and accept payments in "
1212
  "a single currency only."
1213
  msgstr ""
1214
 
1215
- #: includes/options/class-wpglobus-options.php:996
1216
  msgid ""
1217
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
1218
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
@@ -1220,460 +918,348 @@ msgid ""
1220
  "positioning for global growth!"
1221
  msgstr ""
1222
 
1223
- #: includes/options/class-wpglobus-options.php:1000
1224
  msgid ""
1225
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
1226
  "re-calculating prices on-the-fly."
1227
  msgstr ""
1228
 
1229
- #: includes/options/class-wpglobus-options.php:1037
1230
  msgid "WPGlobus Premium Add-ons"
1231
  msgstr ""
1232
 
1233
- #: includes/options/class-wpglobus-options.php:1039
1234
  msgid ""
1235
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
1236
  "you will be able to:"
1237
  msgstr ""
1238
 
1239
- #: includes/options/class-wpglobus-options.php:1044
1240
  msgid ""
1241
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
1242
  "моя-страница and so on);"
1243
  msgstr ""
1244
 
1245
- #: includes/options/class-wpglobus-options.php:1047
1246
  msgid ""
1247
  "Postpone translation to some languages and <strong>publish only the "
1248
  "translated texts</strong>;"
1249
  msgstr ""
1250
 
1251
- #: includes/options/class-wpglobus-options.php:1050
1252
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
1253
  msgstr ""
1254
 
1255
- #: includes/options/class-wpglobus-options.php:1053
1256
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
1257
  msgstr ""
1258
 
1259
- #: includes/options/class-wpglobus-options.php:1056
1260
  msgid ""
1261
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
1262
  "strong>;"
1263
  msgstr ""
1264
 
1265
- #: includes/options/class-wpglobus-options.php:1060
1266
  msgid "...and more."
1267
  msgstr ""
1268
 
1269
- #: includes/options/class-wpglobus-options.php:1063
1270
  msgid "Click here to visit the WPGlobus Store"
1271
  msgstr ""
1272
 
1273
- #: includes/options/class-wpglobus-options.php:1104
1274
  msgid "Select a language"
1275
  msgstr "Select a language"
1276
 
1277
  #. translators: %3$s placeholder for the icon (actual picture).
1278
- #: includes/options/class-wpglobus-options.php:1133
1279
  msgid ""
1280
  "Place the %1$smain language%2$s of your site at the top of the list by "
1281
  "dragging the %3$s icons."
1282
  msgstr ""
1283
 
1284
  #. translators: placeholders for the "strong" HTML tags.
1285
- #: includes/options/class-wpglobus-options.php:1136
1286
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
1287
  msgstr ""
1288
 
1289
  #. translators: placeholders for the "strong" HTML tags.
1290
- #: includes/options/class-wpglobus-options.php:1139
1291
  msgid "%1$sAdd%2$s more languages using the section below."
1292
  msgstr ""
1293
 
1294
- #: includes/options/class-wpglobus-options.php:1140
1295
  msgid "When done, click the [Save Changes] button."
1296
  msgstr "When done, click the [Save Changes] button."
1297
 
1298
  #. translators: %s - placeholder for the "Save Changes" button text.
1299
- #: includes/options/class-wpglobus-options.php:1151
1300
  msgid "Press the %s button to confirm."
1301
  msgstr ""
1302
 
1303
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
1304
- #: includes/options/class-wpglobus-options.php:1168
1305
  msgid "-- none --"
1306
  msgstr ""
1307
 
1308
- #: includes/options/class-wpglobus-options.php:1169
1309
  msgid "All menus"
1310
  msgstr ""
1311
 
1312
- #: includes/options/class-wpglobus-options.php:1182
1313
  msgid "Instructions:"
1314
  msgstr "Instructions:"
1315
 
1316
- #: includes/options/class-wpglobus-options.php:1242
1317
  msgid "(Found in some themes)"
1318
  msgstr "(Found in some themes)"
1319
 
1320
- #: includes/options/class-wpglobus-options.php:1244
1321
  msgid "Enable"
1322
  msgstr "Enable"
1323
 
1324
- #: includes/options/class-wpglobus-options.php:1259
1325
  msgid "Languages table"
1326
  msgstr "Languages table"
1327
 
1328
- #: includes/options/class-wpglobus-options.php:1265
1329
  msgid "Use this table to add, edit or delete languages."
1330
  msgstr "Use this table to add, edit or delete languages."
1331
 
1332
- #: includes/options/class-wpglobus-options.php:1266
1333
  msgid "NOTE: you cannot remove the main language."
1334
  msgstr "NOTE: you cannot remove the main language."
1335
 
1336
- #: includes/options/class-wpglobus-options.php:1314
1337
  msgid "WPGlobus is enabled on these Post Types"
1338
  msgstr ""
1339
 
1340
- #: includes/options/class-wpglobus-options.php:1315
1341
  msgid "Uncheck to disable"
1342
  msgstr ""
1343
 
1344
- #: includes/options/class-wpglobus-options.php:1316
1345
  msgid ""
1346
  "Please note that there are post types, which status is managed by other "
1347
  "plugins and cannot be changed here."
1348
  msgstr ""
1349
 
1350
- #: includes/options/class-wpglobus-options.php:1321
1351
  msgid "Post Types"
1352
  msgstr ""
1353
 
1354
- #: includes/options/class-wpglobus-options.php:1337
1355
  msgid ""
1356
  "You should put here only the code provided by WPGlobus Support. Do not write "
1357
  "anything else in the sections below as it might break the functionality of "
1358
  "your website!"
1359
  msgstr ""
1360
 
1361
- #: includes/options/class-wpglobus-options.php:1378
1362
  msgid "Custom Code"
1363
  msgstr ""
1364
 
1365
- #: includes/options/class-wpglobus-options.php:1486,
1366
- #: includes/options/class-wpglobus-options.php:1618,
1367
- #: includes/options/class-wpglobus-options.php:1729
1368
  msgid "Enabled"
1369
  msgstr "Enabled"
1370
 
1371
- #: includes/options/class-wpglobus-options.php:1499
1372
  msgid "Builders support"
1373
  msgstr ""
1374
 
1375
- #: includes/options/class-wpglobus-options.php:1551
1376
  msgid "Builder mode is enabled on these Post Types"
1377
  msgstr ""
1378
 
1379
- #: includes/options/class-wpglobus-options.php:1617
1380
  msgid "Old fashioned language switcher"
1381
  msgstr ""
1382
 
1383
- #: includes/options/class-wpglobus-options.php:1623
1384
  msgid "Block Editor"
1385
  msgstr ""
1386
 
1387
- #: includes/options/class-wpglobus-options.php:1624
1388
  msgid "Block Editor Options"
1389
  msgstr ""
1390
 
1391
- #: includes/options/class-wpglobus-options.php:1653
1392
  msgid ""
1393
  "With the current settings, you will see the following lines in the section "
1394
  "HEAD of your site pages"
1395
  msgstr ""
1396
 
1397
- #: includes/options/class-wpglobus-options.php:1655
1398
  msgid "(example for two languages)"
1399
  msgstr ""
1400
 
1401
- #: includes/options/class-wpglobus-options.php:1702
1402
  msgid ""
1403
  "Tell search engines about localized versions of your pages using the "
1404
  "hreflang tag"
1405
  msgstr ""
1406
 
1407
- #: includes/options/class-wpglobus-options.php:1711
1408
  msgid "Output the hreflang tag as"
1409
  msgstr ""
1410
 
1411
- #: includes/options/class-wpglobus-options.php:1714
1412
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1413
  msgstr ""
1414
 
1415
- #: includes/options/class-wpglobus-options.php:1715
1416
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1417
  msgstr ""
1418
 
1419
- #: includes/options/class-wpglobus-options.php:1716
1420
  msgid "Language code only (en, ru, etc.)"
1421
  msgstr ""
1422
 
1423
- #: includes/options/class-wpglobus-options.php:1728
1424
  msgid "Use the code `x-default` for the main language"
1425
  msgstr ""
1426
 
1427
- #: includes/options/class-wpglobus-options.php:1734
1428
  msgid "Multilingual SEO"
1429
  msgstr ""
1430
 
1431
- #: includes/options/class-wpglobus-options.php:1735
1432
  msgid "Multilingual SEO Options"
1433
  msgstr ""
1434
 
1435
- #: includes/options/class-wpglobus-options.php:1772
1436
  msgid ""
1437
  "With WPGlobus, you can get translations for posts and pages using REST API."
1438
  msgstr ""
1439
 
1440
- #: includes/options/class-wpglobus-options.php:1800,
1441
- #: includes/options/class-wpglobus-options.php:1808,
1442
- #: includes/options/class-wpglobus-options.php:1780,
1443
- #: includes/options/class-wpglobus-options.php:1789
1444
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1445
  msgstr ""
1446
 
1447
- #: includes/options/class-wpglobus-options.php:1777
1448
  msgid ""
1449
  "For demonstration, you can try the first post that WordPress creates at the "
1450
  "initial installation."
1451
  msgstr ""
1452
 
1453
- #: includes/options/class-wpglobus-options.php:1819
1454
  msgid ""
1455
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1456
  "information."
1457
  msgstr ""
1458
 
1459
- #: includes/options/class-wpglobus-options.php:1826
1460
  msgid ""
1461
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1462
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1463
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1464
  msgstr ""
1465
 
1466
- #: includes/options/class-wpglobus-options.php:1839
1467
  msgid "Description:"
1468
  msgstr ""
1469
 
1470
- #: includes/options/class-wpglobus-options.php:1846,
1471
- #: includes/options/class-wpglobus-options.php:1847
1472
  msgid "REST API"
1473
  msgstr ""
1474
 
1475
- #: includes/options/class-wpglobus-options.php:2180
1476
  msgid "Translate strings"
1477
  msgstr ""
1478
 
1479
- #: includes/options/fields/table/class-wpglobus-languages-table.php:66
1480
  msgid "item"
1481
  msgstr "item"
1482
 
1483
- #: includes/options/fields/table/class-wpglobus-languages-table.php:68
1484
  msgid "items"
1485
  msgstr "items"
1486
 
1487
- #: includes/options/fields/table/class-wpglobus-languages-table.php:88
1488
  msgid "Code"
1489
  msgstr "Code"
1490
 
1491
- #: includes/options/fields/table/class-wpglobus-languages-table.php:94
1492
  msgid "Edit"
1493
  msgstr "Edit"
1494
 
1495
- #: includes/options/fields/table/class-wpglobus-languages-table.php:99
1496
  msgid "Delete"
1497
  msgstr "Delete"
1498
 
1499
- #: includes/options/fields/table/class-wpglobus-languages-table.php:105
1500
  msgid "File"
1501
  msgstr "File"
1502
 
1503
- #: includes/options/fields/table/class-wpglobus-languages-table.php:110
1504
  msgid "Flag"
1505
  msgstr "Flag"
1506
 
1507
- #: includes/options/fields/table/class-wpglobus-languages-table.php:120
1508
  msgid "Language name"
1509
  msgstr "Language name"
1510
 
1511
- #: includes/options/fields/table/class-wpglobus-languages-table.php:125
1512
  msgid "English language name"
1513
  msgstr "English language name"
1514
 
1515
- #: includes/options/fields/table/class-wpglobus-languages-table.php:151
1516
  msgid "No items found"
1517
  msgstr "No items found"
1518
 
1519
- #: includes/options/fields/table/class-wpglobus-languages-table.php:164
1520
  msgid "Add new Language"
1521
  msgstr "Add new Language"
1522
 
1523
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:164
1524
  msgid "No items of this type were found."
1525
  msgstr "No items of this type were found."
1526
 
1527
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:107
1528
  msgid "Select an item"
1529
  msgstr "Select an item"
1530
 
1531
- #: includes/options/templates/compatibility-beta.php:15
1532
  msgid "Multilingual support of this add-on is currently in Beta stage."
1533
  msgstr ""
1534
 
1535
- #: includes/options/templates/compatibility-beta.php:17
1536
  msgid "We do not recommend using it on production sites."
1537
  msgstr ""
1538
 
1539
- #: includes/options/templates/compatibility-beta.php:23
1540
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1541
  msgstr ""
1542
 
1543
- #: includes/options/templates/compatibility.php:69
1544
  msgid "WordPress version"
1545
  msgstr ""
1546
 
1547
- #: includes/options/templates/compatibility.php:44
1548
  msgid "In the WordPress core"
1549
  msgstr ""
1550
 
1551
- #: includes/options/templates/compatibility.php:46
1552
  msgid "Core"
1553
  msgstr ""
1554
 
1555
- #: includes/options/templates/compatibility.php:52,
1556
- #: includes/options/templates/compatibility.php:79
1557
  msgid "Current version"
1558
  msgstr ""
1559
 
1560
- #: includes/options/templates/compatibility.php:53,
1561
- #: includes/options/templates/compatibility.php:81
1562
  msgid "Stage"
1563
  msgstr ""
1564
 
1565
- #: includes/options/templates/compatibility.php:54,
1566
- #: includes/options/templates/compatibility.php:82
1567
  msgid "Status"
1568
  msgstr "Status"
1569
 
1570
- #: includes/options/templates/compatibility.php:60
1571
  msgid "Block editor"
1572
  msgstr ""
1573
 
1574
- #: includes/options/templates/compatibility.php:62
1575
  msgid "production"
1576
  msgstr ""
1577
 
1578
- #: includes/options/templates/compatibility.php:73
1579
  msgid "List of supported add-ons"
1580
  msgstr ""
1581
 
1582
- #: includes/options/templates/compatibility.php:78
1583
  msgid "Add-on"
1584
  msgstr ""
1585
 
1586
- #: includes/options/templates/compatibility.php:80
1587
  msgid "Supported minimum version"
1588
  msgstr ""
1589
 
1590
- #: includes/options/templates/compatibility.php:105
1591
  msgid "Not installed"
1592
  msgstr ""
1593
 
1594
- #: includes/options/templates/compatibility.php:102
1595
  msgid "Installed, inactive"
1596
  msgstr ""
1597
 
1598
- #: includes/options/templates/compatibility.php:100
1599
  msgid "Active"
1600
  msgstr "Active"
1601
 
1602
- #: includes/options/templates/customize-intro.php:35
1603
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1604
  msgstr ""
1605
 
1606
- #: includes/options/templates/customize-intro.php:39
1607
  msgid "However, some themes do not follow all WordPress standards strictly."
1608
  msgstr ""
1609
 
1610
- #: includes/options/templates/customize-intro.php:41
1611
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1612
  msgstr ""
1613
 
1614
- #: includes/options/templates/customize-intro.php:45
1615
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1616
  msgstr ""
1617
 
1618
- #: includes/options/templates/customize-intro.php:53
1619
  msgid ""
1620
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1621
  "With those themes, WPGlobus Customizer is switched off by default"
1622
  msgstr ""
1623
 
1624
- #: includes/options/templates/customize-intro.php:60
1625
  msgid "The currently active theme is"
1626
  msgstr ""
1627
 
1628
- #: includes/options/templates/customize-intro.php:66
1629
  msgid "In the current version, WPGlobus Customizer does not support"
1630
  msgstr ""
1631
 
1632
- #: includes/options/templates/customize-intro.php:70
1633
  msgid "translation of the navigation menus"
1634
  msgstr ""
1635
 
1636
- #: includes/options/templates/customize-intro.php:72
1637
  msgid "to translate, please go to"
1638
  msgstr ""
1639
 
1640
- #: includes/options/templates/customize-intro.php:81
1641
  msgid "Go to Customizer"
1642
  msgstr ""
1643
 
1644
- #: includes/options/templates/customize-intro.php:88
1645
  msgid "is undefined"
1646
  msgstr ""
1647
 
1648
- #: includes/options/templates/customize-intro.php:85
1649
  msgid "is set to"
1650
  msgstr ""
1651
 
1652
- #: includes/options/templates/customize-intro.php:94
1653
  msgid "by adding to the file wp-config.php"
1654
  msgstr ""
1655
 
1656
- #: includes/options/templates/customize-intro.php:96
1657
  msgid "now"
1658
  msgstr ""
1659
 
1660
- #: includes/options/wpglobus-options-header.php:25
1661
  msgid "We rely on your support!"
1662
  msgstr "We rely on your support!"
1663
 
1664
- #: includes/options/wpglobus-options-header.php:28
1665
  msgid "Please consider a small donation to support the future development."
1666
  msgstr "Please consider a small donation to support the future development."
1667
 
1668
- #: includes/options/wpglobus-options-header.php:32
1669
  msgid "Thank you!"
1670
  msgstr "Thank you!"
1671
 
1672
- #: includes/options/wpglobus-options-header.php:55
1673
  msgid "WPGlobus Plus!"
1674
  msgstr "WPGlobus Plus!"
1675
 
1676
- #: includes/options/wpglobus-options-header.php:58
1677
  msgid ""
1678
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1679
  "separate publishing and more! "
@@ -1681,29 +1267,23 @@ msgstr ""
1681
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1682
  "separate publishing and more! "
1683
 
1684
- #: includes/options/wpglobus-options-header.php:64
1685
  msgid "Get WPGlobus Plus now!"
1686
  msgstr "Get WPGlobus Plus now!"
1687
 
1688
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1689
  msgid ""
1690
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1691
  "the current version."
1692
  msgstr ""
1693
 
1694
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1695
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1696
  msgstr ""
1697
 
1698
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1699
  msgid "WPGlobus warning: "
1700
  msgstr ""
1701
 
1702
- #: wpglobus.php:13
1703
  msgid "https://github.com/WPGlobus/WPGlobus"
1704
  msgstr "https://github.com/WPGlobus/WPGlobus"
1705
 
1706
- #: wpglobus.php:14
1707
  msgid ""
1708
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1709
  "widgets and even custom fields - in multiple languages!"
@@ -1711,7 +1291,6 @@ msgstr ""
1711
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1712
  "widgets and even custom fields - in multiple languages!"
1713
 
1714
- #: wpglobus.php:19
1715
  msgid "https://wpglobus.com/"
1716
  msgstr "https://wpglobus.com/"
1717
 
17
  "Content-Transfer-Encoding: 8bit\n"
18
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
19
 
 
 
 
 
 
20
  msgid "Guide"
21
  msgstr "Guide"
22
 
 
 
23
  msgid "WPGlobus Help Desk"
24
  msgstr "WPGlobus Help Desk"
25
 
 
 
 
 
 
 
 
26
  msgid "Add-ons"
27
  msgstr "Add-ons"
28
 
 
29
  msgid "Quick Start"
30
  msgstr "Quick Start"
31
 
 
 
32
  msgid "FAQ"
33
  msgstr "FAQ"
34
 
 
35
  msgid ""
36
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
37
  msgstr ""
38
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
39
 
 
40
  msgid ""
41
  "The mbstring extension is required for the full UTF-8 compatibility and "
42
  "better performance. Without it, some parts of WordPress and WPGlobus may "
48
  "function incorrectly. Please contact your hosting company or systems "
49
  "administrator."
50
 
 
51
  msgid "Go to WPGlobus Settings"
52
  msgstr "Go to WPGlobus Settings"
53
 
 
54
  msgid "Easy as 1-2-3:"
55
  msgstr "Easy as 1-2-3:"
56
 
 
57
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
58
  msgstr "Go to WPGlobus admin menu and choose the countries / languages;"
59
 
 
60
  msgid ""
61
  "Enter the translations to the posts, pages, categories, tags and menus using "
62
  "a clean and simple interface."
64
  "Enter the translations to the posts, pages, categories, tags and menus using "
65
  "a clean and simple interface."
66
 
 
67
  msgid ""
68
  "Switch languages at the front-end using a drop-down menu with language names "
69
  "and country flags."
71
  "Switch languages at the front-end using a drop-down menu with language names "
72
  "and country flags."
73
 
 
74
  msgid "Links:"
75
  msgstr "Links:"
76
 
 
77
  msgid "FAQs"
78
  msgstr "FAQs"
79
 
 
80
  msgid "Contact Us"
81
  msgstr "Contact Us"
82
 
 
83
  msgid "Please give us 5 stars!"
84
  msgstr "Please give us 5 stars!"
85
 
 
86
  msgid "WPGlobus does not translate texts automatically!"
87
  msgstr "WPGlobus does not translate texts automatically!"
88
 
 
89
  msgid ""
90
  "There are many translation companies and individual translators who can help "
91
  "you write and proofread the texts."
93
  "There are many translation companies and individual translators who can help "
94
  "you write and proofread the texts."
95
 
 
96
  msgid ""
97
  "When you choose a translator, please look at their native language, country "
98
  "of residence, specialization and knowledge of WordPress."
101
  "of residence, specialization and knowledge of WordPress."
102
 
103
  #. translators: %s are used to insert HTML link. Keep them in place.
 
104
  msgid ""
105
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
106
  "website. This is not an endorsement, just a courtesy. Please contact them "
110
  "website. This is not an endorsement, just a courtesy. Please contact them "
111
  "directly and let us know how did it work for you!"
112
 
 
113
  msgid "Important notes:"
114
  msgstr "Important notes:"
115
 
 
116
  msgid ""
117
  "WPGlobus only supports the localization URLs in the form of <code>example."
118
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
122
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
123
  "com</code> and language queries <code>example.com?lang=xx</code>."
124
 
 
125
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
126
  msgstr "Some themes and plugins are <strong>not multilingual-ready</strong>."
127
 
 
128
  msgid ""
129
  "They might display some texts with no translation, or with all languages "
130
  "mixed together."
133
  "mixed together."
134
 
135
  #. translators: %s are used to insert HTML link. Keep them in place.
 
136
  msgid ""
137
  "Please contact the theme / plugin author. If they are unable to assist, "
138
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
140
  "Please contact the theme / plugin author. If they are unable to assist, "
141
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
142
 
 
143
  msgid "Language was set on your profile page"
144
  msgstr ""
145
 
 
146
  msgid "Add"
147
  msgstr "Add"
148
 
 
 
149
  msgid "Multilingual Everything!"
150
  msgstr "Multilingual Everything!"
151
 
 
 
152
  msgid ""
153
  "WPGlobus is a family of WordPress plugins assisting you in making "
154
  "multilingual WordPress blogs and sites."
156
  "WPGlobus is a family of WordPress plugins assisting you in making "
157
  "multilingual WordPress blogs and sites."
158
 
 
159
  msgid "Remove the WPGlobus settings (not recommended)"
160
  msgstr "Remove the WPGlobus settings (not recommended)"
161
 
 
162
  msgid "Clean-up Tool"
163
  msgstr "Clean-up Tool"
164
 
 
165
  msgid "Support"
166
  msgstr "Support"
167
 
 
168
  msgid ""
169
  "WARNING: this operation is non-reversible. It is strongly recommended that "
170
  "you backup your database before proceeding."
172
  "WARNING: this operation is non-reversible. It is strongly recommended that "
173
  "you backup your database before proceeding."
174
 
 
175
  msgid ""
176
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
177
  "By running it, you will remove ALL translations you have entered to your "
187
  "might end up with empty titles, no content, no excerpts, blank comments and "
188
  "so on."
189
 
 
190
  msgid ""
191
  "Make sure that your active theme does not have any code related to WPGlobus. "
192
  "Such code could be added by you or by a 3rd party developer. If that code "
195
  msgstr ""
196
 
197
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
 
198
  msgid ""
199
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
200
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
201
  msgstr ""
202
 
 
203
  msgid "You are about to clean the content of the following database tables:"
204
  msgstr "You are about to clean the content of the following database tables:"
205
 
 
206
  msgid "The operations log"
207
  msgstr "The operations log"
208
 
 
209
  msgid ""
210
  "We are going to write a detailed log of all the database changes performed. "
211
  "It should help in the case you need to restore something important. The log "
215
  "It should help in the case you need to restore something important. The log "
216
  "will be written to the file:"
217
 
 
218
  msgid ""
219
  "Uncheck if you do not want to write the operations log (we recommend to keep "
220
  "it checked)"
222
  "Uncheck if you do not want to write the operations log (we recommend to keep "
223
  "it checked)"
224
 
 
225
  msgid "You have been warned..."
226
  msgstr "You have been warned..."
227
 
 
228
  msgid "Please confirm by checking the box below:"
229
  msgstr "Please confirm by checking the box below:"
230
 
 
231
  msgid ""
232
  "I have read and understood everything written on this page. I am aware that "
233
  "by using this tool I may loose some content of my website. I have made a "
239
  "database backup and know how to restore it if necessary. I am fully "
240
  "responsible for the results."
241
 
 
242
  msgid "YES, I CONFIRM"
243
  msgstr "YES, I CONFIRM"
244
 
 
245
  msgid "Process with the Clean-up"
246
  msgstr "Process with the Clean-up"
247
 
 
 
 
 
248
  msgid "Default"
249
  msgstr "Default"
250
 
 
251
  msgid "Section"
252
  msgstr "Section"
253
 
 
254
  msgid "Show all sections"
255
  msgstr "Show all sections"
256
 
 
257
  msgid "Save &amp; Reload"
258
  msgstr "Save &amp; Reload"
259
 
 
 
 
260
  msgid "WPGlobus"
261
  msgstr "WPGlobus"
262
 
 
263
  msgid ""
264
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
265
  msgstr ""
266
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
267
 
 
268
  msgid "Fields Settings"
269
  msgstr "Fields Settings"
270
 
 
271
  msgid "WPGlobus Settings"
272
  msgstr "WPGlobus Settings"
273
 
 
274
  msgid "Help"
275
  msgstr "Help"
276
 
 
 
277
  msgid "Languages"
278
  msgstr "Languages"
279
 
 
 
280
  msgid "Enabled Languages"
281
  msgstr "Enabled Languages"
282
 
 
 
283
  msgid "These languages are currently enabled on your site."
284
  msgstr "These languages are currently enabled on your site."
285
 
 
 
286
  msgid "Choose a language you would like to enable."
287
  msgstr ""
288
 
 
289
  msgid "Press the [Save & Publish] button to confirm."
290
  msgstr ""
291
 
292
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
293
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
 
 
294
  msgid "or Add new Language %1$s here %2$s"
295
  msgstr "or Add new Language %1$s here %2$s"
296
 
 
 
297
  msgid "Add Languages"
298
  msgstr "Add Languages"
299
 
 
 
300
  msgid "Language Selector Mode"
301
  msgstr "Language Selector Mode"
302
 
 
 
303
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
304
  msgstr "Two-letter Code with flag (en, ru, it, etc.)"
305
 
 
 
306
  msgid "Full Name (English, Russian, Italian, etc.)"
307
  msgstr "Full Name (English, Russian, Italian, etc.)"
308
 
 
 
309
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
310
  msgstr "Full Name with flag (English, Russian, Italian, etc.)"
311
 
 
 
312
  msgid "Flags only"
313
  msgstr "Flags only"
314
 
 
 
315
  msgid ""
316
  "Choose the way language name and country flag are shown in the drop-down menu"
317
  msgstr ""
318
  "Choose the way language name and country flag are shown in the drop-down menu"
319
 
 
320
  msgid "select navigation menu"
321
  msgstr ""
322
 
 
 
 
323
  msgid "Language Selector Menu"
324
  msgstr "Language Selector Menu"
325
 
 
 
 
326
  msgid "Choose the navigation menu where the language selector will be shown"
327
  msgstr "Choose the navigation menu where the language selector will be shown"
328
 
 
329
  msgid "No menus have been created yet. Create some."
330
  msgstr "No menus have been created yet. Create some."
331
 
 
 
332
  msgid "\"All Pages\" menus Language selector"
333
  msgstr "\"All Pages\" menus Language selector"
334
 
 
 
335
  msgid ""
336
  "Adds language selector to the menus that automatically list all existing "
337
  "pages (using `wp_list_pages`)"
339
  "Adds language selector to the menus that automatically list all existing "
340
  "pages (using `wp_list_pages`)"
341
 
 
 
342
  msgid "Custom CSS"
343
  msgstr "Custom CSS"
344
 
 
345
  msgid ""
346
  "Here you can enter the CSS rules to adjust the language selector menu for "
347
  "your theme. Look at the examples in the `style-samples.css` file."
349
  "Here you can enter the CSS rules to adjust the language selector menu for "
350
  "your theme. Look at the examples in the `style-samples.css` file."
351
 
 
352
  msgid "Post types"
353
  msgstr "Post types"
354
 
 
355
  msgid "Uncheck to disable WPGlobus"
356
  msgstr "Uncheck to disable WPGlobus"
357
 
 
 
358
  msgid "Redirect"
359
  msgstr "Redirect"
360
 
 
 
361
  msgid "Choose the language automatically, based on:"
362
  msgstr "Choose the language automatically, based on:"
363
 
 
 
364
  msgid "Preferred language set in the browser"
365
  msgstr "Preferred language set in the browser"
366
 
 
 
367
  msgid ""
368
  "When a user comes to the site for the first time, try to find the best "
369
  "matching language version of the page."
371
  "When a user comes to the site for the first time, try to find the best "
372
  "matching language version of the page."
373
 
 
 
 
 
374
  msgid "Custom JS Code"
375
  msgstr "Custom JS Code"
376
 
 
 
377
  msgid "Title"
378
  msgstr "Title"
379
 
 
380
  msgid "(Paste your JS code here.)"
381
  msgstr "(Paste your JS code here.)"
382
 
 
383
  msgid ""
384
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
385
  "version 4.9 or later."
386
  msgstr ""
387
 
 
388
  msgid "With your version of WordPress, please use the"
389
  msgstr ""
390
 
 
391
  msgid "WPGlobus Settings page"
392
  msgstr ""
393
 
 
394
  msgid "Label"
395
  msgstr "Label"
396
 
 
397
  msgid "Description"
398
  msgstr "Description"
399
 
 
400
  msgid ""
401
  "Here you can specify which fields should be considered multilingual by "
402
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
404
  "Here you can specify which fields should be considered multilingual by "
405
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
406
 
 
 
407
  msgid "Thank you for installing WPGlobus!"
408
  msgstr "Thank you for installing WPGlobus!"
409
 
 
 
410
  msgid "Read About WPGlobus"
411
  msgstr "Read About WPGlobus"
412
 
 
413
  msgid ""
414
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
415
  msgstr ""
416
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
417
 
 
 
418
  msgid ""
419
  "Should you have any questions or comments, please do not hesitate to contact "
420
  "us."
422
  "Should you have any questions or comments, please do not hesitate to contact "
423
  "us."
424
 
 
 
425
  msgid "Sincerely Yours,"
426
  msgstr "Sincerely Yours,"
427
 
 
 
 
428
  msgid "The WPGlobus Team"
429
  msgstr "The WPGlobus Team"
430
 
431
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
432
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
433
  msgid ""
434
  "We would hate to see you go. If something goes wrong, do not uninstall "
435
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
437
  "We would hate to see you go. If something goes wrong, do not uninstall "
438
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
439
 
 
 
440
  msgid ""
441
  "Please note that if you deactivate WPGlobus, your site will show all the "
442
  "languages together, mixed up. You will need to remove all translations, "
448
 
449
  #. translators: %s: link to the Clean-up Tool
450
  #. translators: %s: link to the Clean-up Tool.
 
 
451
  msgid ""
452
  "If there are just a few places, you should edit them manually. To "
453
  "automatically remove all translations at once, you can use the %s. WARNING: "
461
 
462
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
463
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
464
  msgid "%1$sClean-up Tool%2$s"
465
  msgstr "%1$sClean-up Tool%2$s"
466
 
467
  #. translators: %s: name of current theme
 
468
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
469
  msgstr "Sorry, WPGlobus customizer doesn't support current theme %s."
470
 
471
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
472
  msgid "Please use %1$sWPGlobus options page%2$s instead."
473
  msgstr "Please use %1$sWPGlobus options page%2$s instead."
474
 
 
475
  msgid "Expand/Shrink"
476
  msgstr ""
477
 
 
 
478
  msgid "WPGlobus News"
479
  msgstr "WPGlobus News"
480
 
 
 
481
  msgid "Options updated"
482
  msgstr "Options updated"
483
 
 
484
  msgid "Please enter a language code!"
485
  msgstr "Please enter a language code!"
486
 
 
487
  msgid "Language code already exists!"
488
  msgstr "Language code already exists!"
489
 
 
490
  msgid "Please specify the language flag!"
491
  msgstr "Please specify the language flag!"
492
 
 
493
  msgid "Please enter the language name!"
494
  msgstr "Please enter the language name!"
495
 
 
496
  msgid "Please enter the language name in English!"
497
  msgstr "Please enter the language name in English!"
498
 
 
499
  msgid "Please enter the locale!"
500
  msgstr "Please enter the locale!"
501
 
 
502
  msgid "Add Language"
503
  msgstr "Add Language"
504
 
 
 
 
505
  msgid "Delete Language"
506
  msgstr "Delete Language"
507
 
 
508
  msgid "Edit Language"
509
  msgstr "Edit Language"
510
 
 
511
  msgid "Language Code"
512
  msgstr "Language Code"
513
 
 
514
  msgid ""
515
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
516
  msgstr ""
517
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
518
 
 
519
  msgid "Language flag"
520
  msgstr "Language flag"
521
 
 
522
  msgid "Name"
523
  msgstr "Name"
524
 
 
525
  msgid ""
526
  "The name of the language in its native alphabet. (Examples: English, Русский)"
527
  msgstr ""
528
  "The name of the language in its native alphabet. (Examples: English, Русский)"
529
 
 
530
  msgid "Name in English"
531
  msgstr "Name in English"
532
 
 
533
  msgid "The name of the language in English"
534
  msgstr "The name of the language in English"
535
 
 
 
536
  msgid "Locale"
537
  msgstr "Locale"
538
 
 
539
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
540
  msgstr "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
541
 
 
542
  msgid "Are you sure you want to delete?"
543
  msgstr "Are you sure you want to delete?"
544
 
 
545
  msgid "Save Changes"
546
  msgstr "Save Changes"
547
 
 
548
  msgid "Back to the WPGlobus Settings"
549
  msgstr "Back to the WPGlobus Settings"
550
 
 
551
  msgid "Current Version"
552
  msgstr "Current Version"
553
 
 
554
  msgid "Get it now!"
555
  msgstr "Get it now!"
556
 
 
557
  msgid "Premium add-on"
558
  msgstr "Premium add-on"
559
 
 
 
560
  msgid "Installed"
561
  msgstr "Installed"
562
 
563
  #. translators: placeholders are for the HTML tags.
 
564
  msgid ""
565
  "If you have already purchased a WPGlobus premium extension, please read "
566
  "%1$sthe installation instructions here%2$s"
567
  msgstr ""
568
 
 
 
569
  msgid "Help Desk"
570
  msgstr "Help Desk"
571
 
 
572
  msgid "Email not sent. Please fill in the entire form."
573
  msgstr ""
574
 
 
575
  msgid ""
576
  "Email not sent. Please verify that your name and email are entered correctly."
577
  msgstr ""
578
 
 
579
  msgid "Email sent."
580
  msgstr ""
581
 
 
582
  msgid "Thank you for using WPGlobus!"
583
  msgstr "Thank you for using WPGlobus!"
584
 
 
585
  msgid "Our Support Team is here to answer your questions or concerns."
586
  msgstr "Our Support Team is here to answer your questions or concerns."
587
 
 
588
  msgid "To help us serve you better:"
589
  msgstr "To help us serve you better:"
590
 
 
591
  msgid ""
592
  "Please check if the problem persists if you switch to a standard WordPress "
593
  "theme."
595
  "Please check if the problem persists if you switch to a standard WordPress "
596
  "theme."
597
 
 
598
  msgid ""
599
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
600
  msgstr ""
601
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
602
 
 
603
  msgid "Please fill in and submit the contact form:"
604
  msgstr ""
605
 
 
606
  msgid "Please make sure the email address is correct."
607
  msgstr ""
608
 
 
609
  msgid "Subject"
610
  msgstr "Subject"
611
 
 
612
  msgid "Short description of the problem"
613
  msgstr ""
614
 
 
615
  msgid "Detailed description"
616
  msgstr ""
617
 
 
618
  msgid "Technical Information"
619
  msgstr "Technical Information"
620
 
 
621
  msgid "This information helps us to find the problem source"
622
  msgstr ""
623
 
 
624
  msgid ""
625
  "Alternatively, please email %s. Do not forget to copy and paste the "
626
  "technical information to your email message."
627
  msgstr ""
628
 
 
629
  msgid "WPGlobus Recommends:"
630
  msgstr "WPGlobus Recommends:"
631
 
 
 
632
  msgid "WPGlobus for WooCommerce"
633
  msgstr "WPGlobus for WooCommerce"
634
 
 
635
  msgid ""
636
  "Translate product titles and descriptions, product categories, tags and "
637
  "attributes."
639
  "Translate product titles and descriptions, product categories, tags and "
640
  "attributes."
641
 
 
642
  msgid "Get it now:"
643
  msgstr "Get it now:"
644
 
 
645
  msgid "WooCommerce Multi-Currency"
646
  msgstr ""
647
 
 
648
  msgid "Accept multiple currencies in your online store!"
649
  msgstr "Accept multiple currencies in your online store!"
650
 
 
 
651
  msgid "Check it out:"
652
  msgstr "Check it out:"
653
 
 
654
  msgid "To translate permalinks, please activate the module Slug."
655
  msgstr ""
656
 
 
657
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
658
  msgstr ""
659
 
 
 
660
  msgid "Save draft before using extra language."
661
  msgstr ""
662
 
 
663
  msgid "Builder"
664
  msgstr ""
665
 
 
666
  msgid "Сompatibility Settings"
667
  msgstr ""
668
 
669
  #. translators: ON/OFF status of WPGlobus on the edit pages.
670
  #. translators: ON/OFF status of WPGlobus on the edit pages.
 
 
671
  msgid "ON"
672
  msgstr "ON"
673
 
 
 
674
  msgid "Turn off"
675
  msgstr ""
676
 
 
 
677
  msgid "OFF"
678
  msgstr "OFF"
679
 
 
 
680
  msgid "Turn on"
681
  msgstr ""
682
 
 
683
  msgid "Elementor"
684
  msgstr ""
685
 
 
686
  msgid "WPGlobus languages"
687
  msgstr ""
688
 
 
689
  msgid "current"
690
  msgstr ""
691
 
 
692
  msgid ""
693
  "WPGlobus provides multilingual support for Elementor only when the option "
694
  "%1$s%2$s%3$s is set to %4$s."
695
  msgstr ""
696
 
 
697
  msgid "Before switching the language, please save draft or publish."
698
  msgstr ""
699
 
700
  #. translators: Metabox title FOR language.
 
701
  msgctxt "filter__seo_meta_box_title"
702
  msgid "for"
703
  msgstr ""
704
 
 
705
  msgid "Page is being reloaded. Please wait..."
706
  msgstr ""
707
 
 
708
  msgid ""
709
  "Before switching the language, please save draft or publish, then reload "
710
  "page."
711
  msgstr ""
712
 
 
713
  msgid ""
714
  "WPGlobus provides multilingual support for Elementor only when the option "
715
  "`CSS Print Method` is set to `External File`."
716
  msgstr ""
717
 
 
718
  msgid "Open Elementor Settings page"
719
  msgstr ""
720
 
 
721
  msgid "WPGlobus widget"
722
  msgstr "WPGlobus widget"
723
 
 
724
  msgid "Add language switcher"
725
  msgstr "Add language switcher"
726
 
 
727
  msgid "Flags"
728
  msgstr "Flags"
729
 
 
730
  msgid "List"
731
  msgstr "List"
732
 
 
733
  msgid "List with flags"
734
  msgstr "List with flags"
735
 
 
736
  msgid "Select"
737
  msgstr "Select"
738
 
 
739
  msgid "Select with language code"
740
  msgstr "Select with language code"
741
 
 
742
  msgid "Dropdown"
743
  msgstr "Dropdown"
744
 
 
745
  msgid "Dropdown with flags"
746
  msgstr "Dropdown with flags"
747
 
 
748
  msgid "Selector type"
749
  msgstr "Selector type"
750
 
 
751
  msgid "You cannot disable the main language."
752
  msgstr "You cannot disable the main language."
753
 
 
754
  msgid "Need a multilingual slug?"
755
  msgstr "Need a multilingual slug?"
756
 
 
757
  msgid "*) Available after the menu is saved."
758
  msgstr "*) Available after the menu is saved."
759
 
 
760
  msgid "You must enable Pretty Permalinks to use WPGlobus."
761
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
762
 
 
763
  msgid ""
764
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
765
  "default option."
767
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
768
  "default option."
769
 
 
770
  msgid "Language Selector Menu Style"
771
  msgstr ""
772
 
 
 
 
773
  msgid "WPGlobus Plus"
774
  msgstr ""
775
 
 
776
  msgid "Drop-down languages menu or Flat (in one line)"
777
  msgstr ""
778
 
 
779
  msgid "Do not change"
780
  msgstr ""
781
 
 
782
  msgid "Drop-down (vertical)"
783
  msgstr ""
784
 
 
785
  msgid "Flat (horizontal)"
786
  msgstr ""
787
 
 
788
  msgid ""
789
  "If you see this message then your browser may not display the WPGlobus "
790
  "Settings panel properly. Please try another browser."
791
  msgstr ""
792
 
 
 
793
  msgid "Сompatibility"
794
  msgstr ""
795
 
796
  #. translators: placeholders for "strong" tags.
 
797
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
798
  msgstr ""
799
 
800
  #. translators: placeholders for "strong" tags.
 
801
  msgid ""
802
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
803
  "the language attributes: name, code, flag icon, etc."
804
  msgstr ""
805
 
 
806
  msgid "Important notes"
807
  msgstr ""
808
 
809
  #. translators: placeholders for "strong" tags.
 
810
  msgid "Version %1$s1.9.17%2$s "
811
  msgstr ""
812
 
813
  #. translators: placeholders for "strong" tags.
 
814
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
815
  msgstr ""
816
 
817
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
818
  msgid ""
819
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
820
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
821
  msgstr ""
822
 
823
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
824
  msgid ""
825
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
826
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
827
  msgstr ""
828
 
829
  #. translators: placeholders for "strong" tags.
 
830
  msgid "Version %1$s2.2.11%2$s "
831
  msgstr ""
832
 
 
833
  msgid "Starting from this version"
834
  msgstr ""
835
 
836
  #. translators: placeholders for "strong" tags.
 
837
  msgid ""
838
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
839
  "(CPT)."
840
  msgstr ""
841
 
842
  #. translators: placeholders for "strong" tags.
 
843
  msgid ""
844
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
845
  "the %1$s[%3$s]%2$s tab."
846
  msgstr ""
847
 
 
848
  msgid "Welcome!"
849
  msgstr "Welcome!"
850
 
 
851
  msgid "Deactivating / Uninstalling"
852
  msgstr "Deactivating / Uninstalling"
853
 
 
854
  msgid "Uninstall"
855
  msgstr ""
856
 
 
857
  msgid "All add-ons"
858
  msgstr ""
859
 
 
860
  msgid "Mobile Menu"
861
  msgstr ""
862
 
 
863
  msgid "Language Widgets"
864
  msgstr ""
865
 
 
866
  msgid "We Recommend..."
867
  msgstr ""
868
 
 
869
  msgid ""
870
  "Our premium add-on, WPGlobus Plus, will add several features to your "
871
  "website, such as:"
872
  msgstr ""
873
 
 
874
  msgid ""
875
  "- Ability to write a post in one language and immediately publish it, not "
876
  "waiting for the translation to other languages;"
877
  msgstr ""
878
 
 
879
  msgid "- Set different URLs for each translation;"
880
  msgstr ""
881
 
 
882
  msgid ""
883
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
884
  "for each translation;"
885
  msgstr ""
886
 
 
887
  msgid "- and more..."
888
  msgstr ""
889
 
 
 
 
890
  msgid "Click here to download"
891
  msgstr ""
892
 
 
893
  msgid ""
894
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
895
  "translate your blog posts and pages to many languages."
896
  msgstr ""
897
 
 
898
  msgid "The next step is to translate your WooCommerce-based store!"
899
  msgstr ""
900
 
 
901
  msgid ""
902
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
903
  "translate product titles and descriptions, categories, tags and attributes."
904
  msgstr ""
905
 
 
906
  msgid "Multi-currency"
907
  msgstr ""
908
 
 
909
  msgid ""
910
  "Your WooCommerce-powered store is set to show prices and accept payments in "
911
  "a single currency only."
912
  msgstr ""
913
 
 
914
  msgid ""
915
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
916
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
918
  "positioning for global growth!"
919
  msgstr ""
920
 
 
921
  msgid ""
922
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
923
  "re-calculating prices on-the-fly."
924
  msgstr ""
925
 
 
926
  msgid "WPGlobus Premium Add-ons"
927
  msgstr ""
928
 
 
929
  msgid ""
930
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
931
  "you will be able to:"
932
  msgstr ""
933
 
 
934
  msgid ""
935
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
936
  "моя-страница and so on);"
937
  msgstr ""
938
 
 
939
  msgid ""
940
  "Postpone translation to some languages and <strong>publish only the "
941
  "translated texts</strong>;"
942
  msgstr ""
943
 
 
944
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
945
  msgstr ""
946
 
 
947
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
948
  msgstr ""
949
 
 
950
  msgid ""
951
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
952
  "strong>;"
953
  msgstr ""
954
 
 
955
  msgid "...and more."
956
  msgstr ""
957
 
 
958
  msgid "Click here to visit the WPGlobus Store"
959
  msgstr ""
960
 
 
961
  msgid "Select a language"
962
  msgstr "Select a language"
963
 
964
  #. translators: %3$s placeholder for the icon (actual picture).
 
965
  msgid ""
966
  "Place the %1$smain language%2$s of your site at the top of the list by "
967
  "dragging the %3$s icons."
968
  msgstr ""
969
 
970
  #. translators: placeholders for the "strong" HTML tags.
 
971
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
972
  msgstr ""
973
 
974
  #. translators: placeholders for the "strong" HTML tags.
 
975
  msgid "%1$sAdd%2$s more languages using the section below."
976
  msgstr ""
977
 
 
978
  msgid "When done, click the [Save Changes] button."
979
  msgstr "When done, click the [Save Changes] button."
980
 
981
  #. translators: %s - placeholder for the "Save Changes" button text.
 
982
  msgid "Press the %s button to confirm."
983
  msgstr ""
984
 
985
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
 
986
  msgid "-- none --"
987
  msgstr ""
988
 
 
989
  msgid "All menus"
990
  msgstr ""
991
 
 
992
  msgid "Instructions:"
993
  msgstr "Instructions:"
994
 
 
995
  msgid "(Found in some themes)"
996
  msgstr "(Found in some themes)"
997
 
 
998
  msgid "Enable"
999
  msgstr "Enable"
1000
 
 
1001
  msgid "Languages table"
1002
  msgstr "Languages table"
1003
 
 
1004
  msgid "Use this table to add, edit or delete languages."
1005
  msgstr "Use this table to add, edit or delete languages."
1006
 
 
1007
  msgid "NOTE: you cannot remove the main language."
1008
  msgstr "NOTE: you cannot remove the main language."
1009
 
 
1010
  msgid "WPGlobus is enabled on these Post Types"
1011
  msgstr ""
1012
 
 
1013
  msgid "Uncheck to disable"
1014
  msgstr ""
1015
 
 
1016
  msgid ""
1017
  "Please note that there are post types, which status is managed by other "
1018
  "plugins and cannot be changed here."
1019
  msgstr ""
1020
 
 
1021
  msgid "Post Types"
1022
  msgstr ""
1023
 
 
1024
  msgid ""
1025
  "You should put here only the code provided by WPGlobus Support. Do not write "
1026
  "anything else in the sections below as it might break the functionality of "
1027
  "your website!"
1028
  msgstr ""
1029
 
 
1030
  msgid "Custom Code"
1031
  msgstr ""
1032
 
 
 
 
1033
  msgid "Enabled"
1034
  msgstr "Enabled"
1035
 
 
1036
  msgid "Builders support"
1037
  msgstr ""
1038
 
 
1039
  msgid "Builder mode is enabled on these Post Types"
1040
  msgstr ""
1041
 
 
1042
  msgid "Old fashioned language switcher"
1043
  msgstr ""
1044
 
 
1045
  msgid "Block Editor"
1046
  msgstr ""
1047
 
 
1048
  msgid "Block Editor Options"
1049
  msgstr ""
1050
 
 
1051
  msgid ""
1052
  "With the current settings, you will see the following lines in the section "
1053
  "HEAD of your site pages"
1054
  msgstr ""
1055
 
 
1056
  msgid "(example for two languages)"
1057
  msgstr ""
1058
 
 
1059
  msgid ""
1060
  "Tell search engines about localized versions of your pages using the "
1061
  "hreflang tag"
1062
  msgstr ""
1063
 
 
1064
  msgid "Output the hreflang tag as"
1065
  msgstr ""
1066
 
 
1067
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1068
  msgstr ""
1069
 
 
1070
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1071
  msgstr ""
1072
 
 
1073
  msgid "Language code only (en, ru, etc.)"
1074
  msgstr ""
1075
 
 
1076
  msgid "Use the code `x-default` for the main language"
1077
  msgstr ""
1078
 
 
1079
  msgid "Multilingual SEO"
1080
  msgstr ""
1081
 
 
1082
  msgid "Multilingual SEO Options"
1083
  msgstr ""
1084
 
 
1085
  msgid ""
1086
  "With WPGlobus, you can get translations for posts and pages using REST API."
1087
  msgstr ""
1088
 
 
 
 
 
1089
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1090
  msgstr ""
1091
 
 
1092
  msgid ""
1093
  "For demonstration, you can try the first post that WordPress creates at the "
1094
  "initial installation."
1095
  msgstr ""
1096
 
 
1097
  msgid ""
1098
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1099
  "information."
1100
  msgstr ""
1101
 
 
1102
  msgid ""
1103
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1104
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1105
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1106
  msgstr ""
1107
 
 
1108
  msgid "Description:"
1109
  msgstr ""
1110
 
 
 
1111
  msgid "REST API"
1112
  msgstr ""
1113
 
 
1114
  msgid "Translate strings"
1115
  msgstr ""
1116
 
 
1117
  msgid "item"
1118
  msgstr "item"
1119
 
 
1120
  msgid "items"
1121
  msgstr "items"
1122
 
 
1123
  msgid "Code"
1124
  msgstr "Code"
1125
 
 
1126
  msgid "Edit"
1127
  msgstr "Edit"
1128
 
 
1129
  msgid "Delete"
1130
  msgstr "Delete"
1131
 
 
1132
  msgid "File"
1133
  msgstr "File"
1134
 
 
1135
  msgid "Flag"
1136
  msgstr "Flag"
1137
 
 
1138
  msgid "Language name"
1139
  msgstr "Language name"
1140
 
 
1141
  msgid "English language name"
1142
  msgstr "English language name"
1143
 
 
1144
  msgid "No items found"
1145
  msgstr "No items found"
1146
 
 
1147
  msgid "Add new Language"
1148
  msgstr "Add new Language"
1149
 
 
1150
  msgid "No items of this type were found."
1151
  msgstr "No items of this type were found."
1152
 
 
1153
  msgid "Select an item"
1154
  msgstr "Select an item"
1155
 
 
1156
  msgid "Multilingual support of this add-on is currently in Beta stage."
1157
  msgstr ""
1158
 
 
1159
  msgid "We do not recommend using it on production sites."
1160
  msgstr ""
1161
 
 
1162
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1163
  msgstr ""
1164
 
 
1165
  msgid "WordPress version"
1166
  msgstr ""
1167
 
 
1168
  msgid "In the WordPress core"
1169
  msgstr ""
1170
 
 
1171
  msgid "Core"
1172
  msgstr ""
1173
 
 
 
1174
  msgid "Current version"
1175
  msgstr ""
1176
 
 
 
1177
  msgid "Stage"
1178
  msgstr ""
1179
 
 
 
1180
  msgid "Status"
1181
  msgstr "Status"
1182
 
 
1183
  msgid "Block editor"
1184
  msgstr ""
1185
 
 
1186
  msgid "production"
1187
  msgstr ""
1188
 
 
1189
  msgid "List of supported add-ons"
1190
  msgstr ""
1191
 
 
1192
  msgid "Add-on"
1193
  msgstr ""
1194
 
 
1195
  msgid "Supported minimum version"
1196
  msgstr ""
1197
 
 
1198
  msgid "Not installed"
1199
  msgstr ""
1200
 
 
1201
  msgid "Installed, inactive"
1202
  msgstr ""
1203
 
 
1204
  msgid "Active"
1205
  msgstr "Active"
1206
 
 
1207
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1208
  msgstr ""
1209
 
 
1210
  msgid "However, some themes do not follow all WordPress standards strictly."
1211
  msgstr ""
1212
 
 
1213
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1214
  msgstr ""
1215
 
 
1216
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1217
  msgstr ""
1218
 
 
1219
  msgid ""
1220
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1221
  "With those themes, WPGlobus Customizer is switched off by default"
1222
  msgstr ""
1223
 
 
1224
  msgid "The currently active theme is"
1225
  msgstr ""
1226
 
 
1227
  msgid "In the current version, WPGlobus Customizer does not support"
1228
  msgstr ""
1229
 
 
1230
  msgid "translation of the navigation menus"
1231
  msgstr ""
1232
 
 
1233
  msgid "to translate, please go to"
1234
  msgstr ""
1235
 
 
1236
  msgid "Go to Customizer"
1237
  msgstr ""
1238
 
 
1239
  msgid "is undefined"
1240
  msgstr ""
1241
 
 
1242
  msgid "is set to"
1243
  msgstr ""
1244
 
 
1245
  msgid "by adding to the file wp-config.php"
1246
  msgstr ""
1247
 
 
1248
  msgid "now"
1249
  msgstr ""
1250
 
 
1251
  msgid "We rely on your support!"
1252
  msgstr "We rely on your support!"
1253
 
 
1254
  msgid "Please consider a small donation to support the future development."
1255
  msgstr "Please consider a small donation to support the future development."
1256
 
 
1257
  msgid "Thank you!"
1258
  msgstr "Thank you!"
1259
 
 
1260
  msgid "WPGlobus Plus!"
1261
  msgstr "WPGlobus Plus!"
1262
 
 
1263
  msgid ""
1264
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1265
  "separate publishing and more! "
1267
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1268
  "separate publishing and more! "
1269
 
 
1270
  msgid "Get WPGlobus Plus now!"
1271
  msgstr "Get WPGlobus Plus now!"
1272
 
 
1273
  msgid ""
1274
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1275
  "the current version."
1276
  msgstr ""
1277
 
 
1278
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1279
  msgstr ""
1280
 
 
1281
  msgid "WPGlobus warning: "
1282
  msgstr ""
1283
 
 
1284
  msgid "https://github.com/WPGlobus/WPGlobus"
1285
  msgstr "https://github.com/WPGlobus/WPGlobus"
1286
 
 
1287
  msgid ""
1288
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1289
  "widgets and even custom fields - in multiple languages!"
1291
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1292
  "widgets and even custom fields - in multiple languages!"
1293
 
 
1294
  msgid "https://wpglobus.com/"
1295
  msgstr "https://wpglobus.com/"
1296
 
languages/wpglobus-en_NZ.po CHANGED
@@ -16,45 +16,26 @@ msgstr ""
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
- #: includes/admin/central/class-wpglobus-admin-central.php:122,
20
- #: includes/admin/class-wpglobus-about.php:42,
21
- #: includes/admin/class-wpglobus-about.php:117,
22
- #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr "Guide"
26
 
27
- #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr "WPGlobus Help Desk"
31
 
32
- #: includes/admin/central/class-wpglobus-admin-central.php:157,
33
- #: includes/admin/class-wpglobus-about.php:36,
34
- #: includes/admin/class-wpglobus-admin-menu.php:22,
35
- #: includes/admin/class-wpglobus-clean.php:606,
36
- #: includes/admin/class-wpglobus-customize-options.php:1293,
37
- #: includes/admin/class-wpglobus-customize-options.php:1261,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr "Add-ons"
41
 
42
- #: includes/admin/class-wpglobus-about.php:26
43
  msgid "Quick Start"
44
  msgstr "Quick Start"
45
 
46
- #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
51
- #: includes/admin/class-wpglobus-about.php:59
52
  msgid ""
53
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
54
  msgstr ""
55
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
56
 
57
- #: includes/admin/class-wpglobus-about.php:60
58
  msgid ""
59
  "The mbstring extension is required for the full UTF-8 compatibility and "
60
  "better performance. Without it, some parts of WordPress and WPGlobus may "
@@ -66,19 +47,15 @@ msgstr ""
66
  "function incorrectly. Please contact your hosting company or systems "
67
  "administrator."
68
 
69
- #: includes/admin/class-wpglobus-about.php:87
70
  msgid "Go to WPGlobus Settings"
71
  msgstr "Go to WPGlobus Settings"
72
 
73
- #: includes/admin/class-wpglobus-about.php:98
74
  msgid "Easy as 1-2-3:"
75
  msgstr "Easy as 1-2-3:"
76
 
77
- #: includes/admin/class-wpglobus-about.php:101
78
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
79
  msgstr "Go to WPGlobus admin menu and choose the countries / languages;"
80
 
81
- #: includes/admin/class-wpglobus-about.php:102
82
  msgid ""
83
  "Enter the translations to the posts, pages, categories, tags and menus using "
84
  "a clean and simple interface."
@@ -86,7 +63,6 @@ msgstr ""
86
  "Enter the translations to the posts, pages, categories, tags and menus using "
87
  "a clean and simple interface."
88
 
89
- #: includes/admin/class-wpglobus-about.php:103
90
  msgid ""
91
  "Switch languages at the front-end using a drop-down menu with language names "
92
  "and country flags."
@@ -94,27 +70,21 @@ msgstr ""
94
  "Switch languages at the front-end using a drop-down menu with language names "
95
  "and country flags."
96
 
97
- #: includes/admin/class-wpglobus-about.php:111
98
  msgid "Links:"
99
  msgstr "Links:"
100
 
101
- #: includes/admin/class-wpglobus-about.php:119
102
  msgid "FAQs"
103
  msgstr "FAQs"
104
 
105
- #: includes/admin/class-wpglobus-about.php:121
106
  msgid "Contact Us"
107
  msgstr "Contact Us"
108
 
109
- #: includes/admin/class-wpglobus-about.php:123
110
  msgid "Please give us 5 stars!"
111
  msgstr "Please give us 5 stars!"
112
 
113
- #: includes/admin/class-wpglobus-about.php:133
114
  msgid "WPGlobus does not translate texts automatically!"
115
  msgstr "WPGlobus does not translate texts automatically!"
116
 
117
- #: includes/admin/class-wpglobus-about.php:136
118
  msgid ""
119
  "There are many translation companies and individual translators who can help "
120
  "you write and proofread the texts."
@@ -122,7 +92,6 @@ msgstr ""
122
  "There are many translation companies and individual translators who can help "
123
  "you write and proofread the texts."
124
 
125
- #: includes/admin/class-wpglobus-about.php:137
126
  msgid ""
127
  "When you choose a translator, please look at their native language, country "
128
  "of residence, specialization and knowledge of WordPress."
@@ -131,7 +100,6 @@ msgstr ""
131
  "of residence, specialization and knowledge of WordPress."
132
 
133
  #. translators: %s are used to insert HTML link. Keep them in place.
134
- #: includes/admin/class-wpglobus-about.php:143
135
  msgid ""
136
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
137
  "website. This is not an endorsement, just a courtesy. Please contact them "
@@ -141,11 +109,9 @@ msgstr ""
141
  "website. This is not an endorsement, just a courtesy. Please contact them "
142
  "directly and let us know how did it work for you!"
143
 
144
- #: includes/admin/class-wpglobus-about.php:154
145
  msgid "Important notes:"
146
  msgstr "Important notes:"
147
 
148
- #: includes/admin/class-wpglobus-about.php:159
149
  msgid ""
150
  "WPGlobus only supports the localization URLs in the form of <code>example."
151
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
@@ -155,11 +121,9 @@ msgstr ""
155
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
156
  "com</code> and language queries <code>example.com?lang=xx</code>."
157
 
158
- #: includes/admin/class-wpglobus-about.php:162
159
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
160
  msgstr "Some themes and plugins are <strong>not multilingual-ready</strong>."
161
 
162
- #: includes/admin/class-wpglobus-about.php:163
163
  msgid ""
164
  "They might display some texts with no translation, or with all languages "
165
  "mixed together."
@@ -168,7 +132,6 @@ msgstr ""
168
  "mixed together."
169
 
170
  #. translators: %s are used to insert HTML link. Keep them in place.
171
- #: includes/admin/class-wpglobus-about.php:167
172
  msgid ""
173
  "Please contact the theme / plugin author. If they are unable to assist, "
174
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
@@ -176,21 +139,15 @@ msgstr ""
176
  "Please contact the theme / plugin author. If they are unable to assist, "
177
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
178
 
179
- #: includes/admin/class-wpglobus-admin-bar-menu.php:124
180
  msgid "Language was set on your profile page"
181
  msgstr ""
182
 
183
- #: includes/admin/class-wpglobus-admin-bar-menu.php:194
184
  msgid "Add"
185
  msgstr "Add"
186
 
187
- #: includes/admin/class-wpglobus-admin-page.php:32,
188
- #: includes/admin/class-wpglobus-clean.php:585
189
  msgid "Multilingual Everything!"
190
  msgstr "Multilingual Everything!"
191
 
192
- #: includes/admin/class-wpglobus-admin-page.php:34,
193
- #: includes/admin/class-wpglobus-clean.php:588
194
  msgid ""
195
  "WPGlobus is a family of WordPress plugins assisting you in making "
196
  "multilingual WordPress blogs and sites."
@@ -198,19 +155,15 @@ msgstr ""
198
  "WPGlobus is a family of WordPress plugins assisting you in making "
199
  "multilingual WordPress blogs and sites."
200
 
201
- #: includes/admin/class-wpglobus-clean.php:232
202
  msgid "Remove the WPGlobus settings (not recommended)"
203
  msgstr "Remove the WPGlobus settings (not recommended)"
204
 
205
- #: includes/admin/class-wpglobus-clean.php:595
206
  msgid "Clean-up Tool"
207
  msgstr "Clean-up Tool"
208
 
209
- #: includes/admin/class-wpglobus-clean.php:609
210
  msgid "Support"
211
  msgstr "Support"
212
 
213
- #: includes/admin/class-wpglobus-clean.php:614
214
  msgid ""
215
  "WARNING: this operation is non-reversible. It is strongly recommended that "
216
  "you backup your database before proceeding."
@@ -218,7 +171,6 @@ msgstr ""
218
  "WARNING: this operation is non-reversible. It is strongly recommended that "
219
  "you backup your database before proceeding."
220
 
221
- #: includes/admin/class-wpglobus-clean.php:619
222
  msgid ""
223
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
224
  "By running it, you will remove ALL translations you have entered to your "
@@ -234,7 +186,6 @@ msgstr ""
234
  "might end up with empty titles, no content, no excerpts, blank comments and "
235
  "so on."
236
 
237
- #: includes/admin/class-wpglobus-clean.php:622
238
  msgid ""
239
  "Make sure that your active theme does not have any code related to WPGlobus. "
240
  "Such code could be added by you or by a 3rd party developer. If that code "
@@ -243,21 +194,17 @@ msgid ""
243
  msgstr ""
244
 
245
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
246
- #: includes/admin/class-wpglobus-clean.php:630
247
  msgid ""
248
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
249
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
250
  msgstr ""
251
 
252
- #: includes/admin/class-wpglobus-clean.php:641
253
  msgid "You are about to clean the content of the following database tables:"
254
  msgstr "You are about to clean the content of the following database tables:"
255
 
256
- #: includes/admin/class-wpglobus-clean.php:649
257
  msgid "The operations log"
258
  msgstr "The operations log"
259
 
260
- #: includes/admin/class-wpglobus-clean.php:652
261
  msgid ""
262
  "We are going to write a detailed log of all the database changes performed. "
263
  "It should help in the case you need to restore something important. The log "
@@ -267,7 +214,6 @@ msgstr ""
267
  "It should help in the case you need to restore something important. The log "
268
  "will be written to the file:"
269
 
270
- #: includes/admin/class-wpglobus-clean.php:662
271
  msgid ""
272
  "Uncheck if you do not want to write the operations log (we recommend to keep "
273
  "it checked)"
@@ -275,15 +221,12 @@ msgstr ""
275
  "Uncheck if you do not want to write the operations log (we recommend to keep "
276
  "it checked)"
277
 
278
- #: includes/admin/class-wpglobus-clean.php:667
279
  msgid "You have been warned..."
280
  msgstr "You have been warned..."
281
 
282
- #: includes/admin/class-wpglobus-clean.php:669
283
  msgid "Please confirm by checking the box below:"
284
  msgstr "Please confirm by checking the box below:"
285
 
286
- #: includes/admin/class-wpglobus-clean.php:671
287
  msgid ""
288
  "I have read and understood everything written on this page. I am aware that "
289
  "by using this tool I may loose some content of my website. I have made a "
@@ -295,152 +238,99 @@ msgstr ""
295
  "database backup and know how to restore it if necessary. I am fully "
296
  "responsible for the results."
297
 
298
- #: includes/admin/class-wpglobus-clean.php:674
299
  msgid "YES, I CONFIRM"
300
  msgstr "YES, I CONFIRM"
301
 
302
- #: includes/admin/class-wpglobus-clean.php:678
303
  msgid "Process with the Clean-up"
304
  msgstr "Process with the Clean-up"
305
 
306
- #: includes/admin/class-wpglobus-customize-options.php:73,
307
- #: includes/admin/class-wpglobus-customize-options.php:100,
308
- #: includes/admin/class-wpglobus-customize-options.php:145,
309
- #: includes/admin/class-wpglobus-customize-options.php:183
310
  msgid "Default"
311
  msgstr "Default"
312
 
313
- #: includes/admin/class-wpglobus-customize-options.php:264
314
  msgid "Section"
315
  msgstr "Section"
316
 
317
- #: includes/admin/class-wpglobus-customize-options.php:277
318
  msgid "Show all sections"
319
  msgstr "Show all sections"
320
 
321
- #: includes/admin/class-wpglobus-customize-options.php:279
322
  msgid "Save &amp; Reload"
323
  msgstr "Save &amp; Reload"
324
 
325
- #: includes/admin/class-wpglobus-customize-options.php:553,
326
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:585,
327
- #: includes/class-wpglobus.php:1284, wpglobus.php:12, wpglobus.php:18
328
  msgid "WPGlobus"
329
  msgstr "WPGlobus"
330
 
331
- #: includes/admin/class-wpglobus-customize-options.php:604
332
  msgid ""
333
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
334
  msgstr ""
335
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
336
 
337
- #: includes/admin/class-wpglobus-customize-options.php:610
338
  msgid "Fields Settings"
339
  msgstr "Fields Settings"
340
 
341
- #: includes/admin/class-wpglobus-customize-options.php:655
342
  msgid "WPGlobus Settings"
343
  msgstr "WPGlobus Settings"
344
 
345
- #: includes/admin/class-wpglobus-customize-options.php:723
346
  msgid "Help"
347
  msgstr ""
348
 
349
- #: includes/admin/class-wpglobus-customize-options.php:745,
350
- #: includes/options/class-wpglobus-options.php:1176
351
  msgid "Languages"
352
  msgstr "Languages"
353
 
354
- #: includes/admin/class-wpglobus-customize-options.php:765,
355
- #: includes/options/class-wpglobus-options.php:1189
356
  msgid "Enabled Languages"
357
  msgstr "Enabled Languages"
358
 
359
- #: includes/admin/class-wpglobus-customize-options.php:767,
360
- #: includes/options/class-wpglobus-options.php:1190
361
  msgid "These languages are currently enabled on your site."
362
  msgstr "These languages are currently enabled on your site."
363
 
364
- #: includes/admin/class-wpglobus-customize-options.php:795,
365
- #: includes/options/class-wpglobus-options.php:1148
366
  msgid "Choose a language you would like to enable."
367
  msgstr ""
368
 
369
- #: includes/admin/class-wpglobus-customize-options.php:797
370
  msgid "Press the [Save & Publish] button to confirm."
371
  msgstr ""
372
 
373
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
374
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
375
- #: includes/admin/class-wpglobus-customize-options.php:801,
376
- #: includes/options/class-wpglobus-options.php:1154
377
  msgid "or Add new Language %1$s here %2$s"
378
  msgstr "or Add new Language %1$s here %2$s"
379
 
380
- #: includes/admin/class-wpglobus-customize-options.php:813,
381
- #: includes/options/class-wpglobus-options.php:1203
382
  msgid "Add Languages"
383
  msgstr "Add Languages"
384
 
385
- #: includes/admin/class-wpglobus-customize-options.php:833,
386
- #: includes/options/class-wpglobus-options.php:1211
387
  msgid "Language Selector Mode"
388
  msgstr "Language Selector Mode"
389
 
390
- #: includes/admin/class-wpglobus-customize-options.php:838,
391
- #: includes/options/class-wpglobus-options.php:1214
392
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
393
  msgstr "Two-letter Code with flag (en, ru, it, etc.)"
394
 
395
- #: includes/admin/class-wpglobus-customize-options.php:839,
396
- #: includes/options/class-wpglobus-options.php:1215
397
  msgid "Full Name (English, Russian, Italian, etc.)"
398
  msgstr "Full Name (English, Russian, Italian, etc.)"
399
 
400
- #: includes/admin/class-wpglobus-customize-options.php:841,
401
- #: includes/options/class-wpglobus-options.php:1216
402
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
403
  msgstr "Full Name with flag (English, Russian, Italian, etc.)"
404
 
405
- #: includes/admin/class-wpglobus-customize-options.php:842,
406
- #: includes/options/class-wpglobus-options.php:1217
407
  msgid "Flags only"
408
  msgstr "Flags only"
409
 
410
- #: includes/admin/class-wpglobus-customize-options.php:844,
411
- #: includes/options/class-wpglobus-options.php:1212
412
  msgid ""
413
  "Choose the way language name and country flag are shown in the drop-down menu"
414
  msgstr ""
415
  "Choose the way language name and country flag are shown in the drop-down menu"
416
 
417
- #: includes/admin/class-wpglobus-customize-options.php:879
418
  msgid "select navigation menu"
419
  msgstr ""
420
 
421
- #: includes/admin/class-wpglobus-customize-options.php:915,
422
- #: includes/admin/class-wpglobus-customize-options.php:888,
423
- #: includes/options/class-wpglobus-options.php:1230
424
  msgid "Language Selector Menu"
425
  msgstr "Language Selector Menu"
426
 
427
- #: includes/admin/class-wpglobus-customize-options.php:920,
428
- #: includes/admin/class-wpglobus-customize-options.php:899,
429
- #: includes/options/class-wpglobus-options.php:1231
430
  msgid "Choose the navigation menu where the language selector will be shown"
431
  msgstr "Choose the navigation menu where the language selector will be shown"
432
 
433
- #: includes/admin/class-wpglobus-customize-options.php:898
434
  msgid "No menus have been created yet. Create some."
435
  msgstr "No menus have been created yet. Create some."
436
 
437
- #: includes/admin/class-wpglobus-customize-options.php:940,
438
- #: includes/options/class-wpglobus-options.php:1241
439
  msgid "\"All Pages\" menus Language selector"
440
  msgstr "\"All Pages\" menus Language selector"
441
 
442
- #: includes/admin/class-wpglobus-customize-options.php:943,
443
- #: includes/options/class-wpglobus-options.php:1243
444
  msgid ""
445
  "Adds language selector to the menus that automatically list all existing "
446
  "pages (using `wp_list_pages`)"
@@ -448,12 +338,9 @@ msgstr ""
448
  "Adds language selector to the menus that automatically list all existing "
449
  "pages (using `wp_list_pages`)"
450
 
451
- #: includes/admin/class-wpglobus-customize-options.php:960,
452
- #: includes/options/class-wpglobus-options.php:1356
453
  msgid "Custom CSS"
454
  msgstr "Custom CSS"
455
 
456
- #: includes/admin/class-wpglobus-customize-options.php:964
457
  msgid ""
458
  "Here you can enter the CSS rules to adjust the language selector menu for "
459
  "your theme. Look at the examples in the `style-samples.css` file."
@@ -461,31 +348,21 @@ msgstr ""
461
  "Here you can enter the CSS rules to adjust the language selector menu for "
462
  "your theme. Look at the examples in the `style-samples.css` file."
463
 
464
- #: includes/admin/class-wpglobus-customize-options.php:983
465
  msgid "Post types"
466
  msgstr "Post types"
467
 
468
- #: includes/admin/class-wpglobus-customize-options.php:1091
469
  msgid "Uncheck to disable WPGlobus"
470
  msgstr "Uncheck to disable WPGlobus"
471
 
472
- #: includes/admin/class-wpglobus-customize-options.php:1125,
473
- #: includes/options/class-wpglobus-options.php:1424
474
  msgid "Redirect"
475
  msgstr "Redirect"
476
 
477
- #: includes/admin/class-wpglobus-customize-options.php:1150,
478
- #: includes/options/class-wpglobus-options.php:1419
479
  msgid "Choose the language automatically, based on:"
480
  msgstr "Choose the language automatically, based on:"
481
 
482
- #: includes/admin/class-wpglobus-customize-options.php:1152,
483
- #: includes/options/class-wpglobus-options.php:1409
484
  msgid "Preferred language set in the browser"
485
  msgstr "Preferred language set in the browser"
486
 
487
- #: includes/admin/class-wpglobus-customize-options.php:1153,
488
- #: includes/options/class-wpglobus-options.php:1396
489
  msgid ""
490
  "When a user comes to the site for the first time, try to find the best "
491
  "matching language version of the page."
@@ -493,45 +370,32 @@ msgstr ""
493
  "When a user comes to the site for the first time, try to find the best "
494
  "matching language version of the page."
495
 
496
- #: includes/admin/class-wpglobus-customize-options.php:1214,
497
- #: includes/admin/class-wpglobus-customize-options.php:1234,
498
- #: includes/admin/class-wpglobus-customize-options.php:1192,
499
- #: includes/options/class-wpglobus-options.php:1368
500
  msgid "Custom JS Code"
501
  msgstr "Custom JS Code"
502
 
503
- #: includes/admin/class-wpglobus-customize-options.php:1232,
504
- #: includes/admin/class-wpglobus-customize-options.php:1276
505
  msgid "Title"
506
  msgstr "Title"
507
 
508
- #: includes/admin/class-wpglobus-customize-options.php:1235
509
  msgid "(Paste your JS code here.)"
510
  msgstr "(Paste your JS code here.)"
511
 
512
- #: includes/admin/class-wpglobus-customize-options.php:1184
513
  msgid ""
514
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
515
  "version 4.9 or later."
516
  msgstr ""
517
 
518
- #: includes/admin/class-wpglobus-customize-options.php:1186
519
  msgid "With your version of WordPress, please use the"
520
  msgstr ""
521
 
522
- #: includes/admin/class-wpglobus-customize-options.php:1188
523
  msgid "WPGlobus Settings page"
524
  msgstr ""
525
 
526
- #: includes/admin/class-wpglobus-customize-options.php:1277
527
  msgid "Label"
528
  msgstr "Label"
529
 
530
- #: includes/admin/class-wpglobus-customize-options.php:1281
531
  msgid "Description"
532
  msgstr "Description"
533
 
534
- #: includes/admin/class-wpglobus-customize-options.php:1345
535
  msgid ""
536
  "Here you can specify which fields should be considered multilingual by "
537
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
@@ -539,24 +403,17 @@ msgstr ""
539
  "Here you can specify which fields should be considered multilingual by "
540
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
541
 
542
- #: includes/admin/class-wpglobus-customize-options.php:1351,
543
- #: includes/options/class-wpglobus-options.php:608
544
  msgid "Thank you for installing WPGlobus!"
545
  msgstr "Thank you for installing WPGlobus!"
546
 
547
- #: includes/admin/class-wpglobus-customize-options.php:1355,
548
- #: includes/options/class-wpglobus-options.php:612
549
  msgid "Read About WPGlobus"
550
  msgstr "Read About WPGlobus"
551
 
552
- #: includes/admin/class-wpglobus-customize-options.php:1358
553
  msgid ""
554
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
555
  msgstr ""
556
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
557
 
558
- #: includes/admin/class-wpglobus-customize-options.php:1363,
559
- #: includes/options/class-wpglobus-options.php:648
560
  msgid ""
561
  "Should you have any questions or comments, please do not hesitate to contact "
562
  "us."
@@ -564,21 +421,14 @@ msgstr ""
564
  "Should you have any questions or comments, please do not hesitate to contact "
565
  "us."
566
 
567
- #: includes/admin/class-wpglobus-customize-options.php:1367,
568
- #: includes/options/class-wpglobus-options.php:652
569
  msgid "Sincerely Yours,"
570
  msgstr "Sincerely Yours,"
571
 
572
- #: includes/admin/class-wpglobus-customize-options.php:1369,
573
- #: includes/options/class-wpglobus-options.php:654,
574
- #: includes/options/wpglobus-options-header.php:34
575
  msgid "The WPGlobus Team"
576
  msgstr "The WPGlobus Team"
577
 
578
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
579
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
580
- #: includes/admin/class-wpglobus-customize-options.php:1388,
581
- #: includes/options/class-wpglobus-options.php:689
582
  msgid ""
583
  "We would hate to see you go. If something goes wrong, do not uninstall "
584
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
@@ -586,8 +436,6 @@ msgstr ""
586
  "We would hate to see you go. If something goes wrong, do not uninstall "
587
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
588
 
589
- #: includes/admin/class-wpglobus-customize-options.php:1395,
590
- #: includes/options/class-wpglobus-options.php:696
591
  msgid ""
592
  "Please note that if you deactivate WPGlobus, your site will show all the "
593
  "languages together, mixed up. You will need to remove all translations, "
@@ -599,8 +447,6 @@ msgstr ""
599
 
600
  #. translators: %s: link to the Clean-up Tool
601
  #. translators: %s: link to the Clean-up Tool.
602
- #: includes/admin/class-wpglobus-customize-options.php:1400,
603
- #: includes/options/class-wpglobus-options.php:700
604
  msgid ""
605
  "If there are just a few places, you should edit them manually. To "
606
  "automatically remove all translations at once, you can use the %s. WARNING: "
@@ -614,181 +460,133 @@ msgstr ""
614
 
615
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
616
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
617
- #: includes/admin/class-wpglobus-customize-options.php:1403,
618
- #: includes/options/class-wpglobus-options.php:677
619
  msgid "%1$sClean-up Tool%2$s"
620
  msgstr "%1$sClean-up Tool%2$s"
621
 
622
  #. translators: %s: name of current theme
623
- #: includes/admin/class-wpglobus-customize-options.php:1415
624
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
625
  msgstr "Sorry, WPGlobus customizer doesn't support current theme %s."
626
 
627
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
628
- #: includes/admin/class-wpglobus-customize-options.php:1421
629
  msgid "Please use %1$sWPGlobus options page%2$s instead."
630
  msgstr "Please use %1$sWPGlobus options page%2$s instead."
631
 
632
- #: includes/admin/class-wpglobus-customize-options.php:1485
633
  msgid "Expand/Shrink"
634
  msgstr ""
635
 
636
- #: includes/admin/class-wpglobus-dashboard-news.php:43,
637
- #: includes/admin/class-wpglobus-dashboard-news.php:59
638
  msgid "WPGlobus News"
639
  msgstr "WPGlobus News"
640
 
641
- #: includes/admin/class-wpglobus-language-edit.php:197,
642
- #: includes/admin/class-wpglobus-language-edit.php:192
643
  msgid "Options updated"
644
  msgstr "Options updated"
645
 
646
- #: includes/admin/class-wpglobus-language-edit.php:272
647
  msgid "Please enter a language code!"
648
  msgstr "Please enter a language code!"
649
 
650
- #: includes/admin/class-wpglobus-language-edit.php:276
651
  msgid "Language code already exists!"
652
  msgstr "Language code already exists!"
653
 
654
- #: includes/admin/class-wpglobus-language-edit.php:280
655
  msgid "Please specify the language flag!"
656
  msgstr "Please specify the language flag!"
657
 
658
- #: includes/admin/class-wpglobus-language-edit.php:284
659
  msgid "Please enter the language name!"
660
  msgstr "Please enter the language name!"
661
 
662
- #: includes/admin/class-wpglobus-language-edit.php:288
663
  msgid "Please enter the language name in English!"
664
  msgstr "Please enter the language name in English!"
665
 
666
- #: includes/admin/class-wpglobus-language-edit.php:292
667
  msgid "Please enter the locale!"
668
  msgstr "Please enter the locale!"
669
 
670
- #: includes/admin/class-wpglobus-language-edit.php:354
671
  msgid "Add Language"
672
  msgstr "Add Language"
673
 
674
- #: includes/admin/class-wpglobus-language-edit.php:351,
675
- #: includes/admin/class-wpglobus-language-edit.php:462,
676
- #: includes/admin/class-wpglobus-language-edit.php:455
677
  msgid "Delete Language"
678
  msgstr "Delete Language"
679
 
680
- #: includes/admin/class-wpglobus-language-edit.php:349
681
  msgid "Edit Language"
682
  msgstr "Edit Language"
683
 
684
- #: includes/admin/class-wpglobus-language-edit.php:384
685
  msgid "Language Code"
686
  msgstr "Language Code"
687
 
688
- #: includes/admin/class-wpglobus-language-edit.php:391
689
  msgid ""
690
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
691
  msgstr ""
692
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
693
 
694
- #: includes/admin/class-wpglobus-language-edit.php:396
695
  msgid "Language flag"
696
  msgstr "Language flag"
697
 
698
- #: includes/admin/class-wpglobus-language-edit.php:412
699
  msgid "Name"
700
  msgstr "Name"
701
 
702
- #: includes/admin/class-wpglobus-language-edit.php:417
703
  msgid ""
704
  "The name of the language in its native alphabet. (Examples: English, Русский)"
705
  msgstr ""
706
  "The name of the language in its native alphabet. (Examples: English, Русский)"
707
 
708
- #: includes/admin/class-wpglobus-language-edit.php:422
709
  msgid "Name in English"
710
  msgstr "Name in English"
711
 
712
- #: includes/admin/class-wpglobus-language-edit.php:427
713
  msgid "The name of the language in English"
714
  msgstr "The name of the language in English"
715
 
716
- #: includes/admin/class-wpglobus-language-edit.php:432,
717
- #: includes/options/fields/table/class-wpglobus-languages-table.php:115
718
  msgid "Locale"
719
  msgstr "Locale"
720
 
721
- #: includes/admin/class-wpglobus-language-edit.php:437
722
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
723
  msgstr "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
724
 
725
- #: includes/admin/class-wpglobus-language-edit.php:460
726
  msgid "Are you sure you want to delete?"
727
  msgstr "Are you sure you want to delete?"
728
 
729
- #: includes/admin/class-wpglobus-language-edit.php:447
730
  msgid "Save Changes"
731
  msgstr "Save Changes"
732
 
733
- #: includes/admin/class-wpglobus-language-edit.php:470
734
  msgid "Back to the WPGlobus Settings"
735
  msgstr "Back to the WPGlobus Settings"
736
 
737
- #: includes/admin/class-wpglobus-plugin-install.php:308
738
  msgid "Current Version"
739
  msgstr "Current Version"
740
 
741
- #: includes/admin/class-wpglobus-plugin-install.php:309
742
  msgid "Get it now!"
743
  msgstr "Get it now!"
744
 
745
- #: includes/admin/class-wpglobus-plugin-install.php:310
746
  msgid "Premium add-on"
747
  msgstr "Premium add-on"
748
 
749
- #: includes/admin/class-wpglobus-plugin-install.php:311,
750
- #: includes/options/fields/table/class-wpglobus-languages-table.php:472
751
  msgid "Installed"
752
  msgstr "Installed"
753
 
754
  #. translators: placeholders are for the HTML tags.
755
- #: includes/admin/class-wpglobus-plugin-install.php:319
756
  msgid ""
757
  "If you have already purchased a WPGlobus premium extension, please read "
758
  "%1$sthe installation instructions here%2$s"
759
  msgstr ""
760
 
761
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
762
- #: includes/options/class-wpglobus-options.php:726
763
  msgid "Help Desk"
764
  msgstr "Help Desk"
765
 
766
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:185
767
  msgid "Email not sent. Please fill in the entire form."
768
  msgstr ""
769
 
770
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:195
771
  msgid ""
772
  "Email not sent. Please verify that your name and email are entered correctly."
773
  msgstr ""
774
 
775
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:216
776
  msgid "Email sent."
777
  msgstr ""
778
 
779
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
780
  msgid "Thank you for using WPGlobus!"
781
  msgstr "Thank you for using WPGlobus!"
782
 
783
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
784
  msgid "Our Support Team is here to answer your questions or concerns."
785
  msgstr "Our Support Team is here to answer your questions or concerns."
786
 
787
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
788
  msgid "To help us serve you better:"
789
  msgstr "To help us serve you better:"
790
 
791
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
792
  msgid ""
793
  "Please check if the problem persists if you switch to a standard WordPress "
794
  "theme."
@@ -796,56 +594,43 @@ msgstr ""
796
  "Please check if the problem persists if you switch to a standard WordPress "
797
  "theme."
798
 
799
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
800
  msgid ""
801
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
802
  msgstr ""
803
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
804
 
805
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
806
  msgid "Please fill in and submit the contact form:"
807
  msgstr ""
808
 
809
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
810
  msgid "Please make sure the email address is correct."
811
  msgstr ""
812
 
813
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
814
  msgid "Subject"
815
  msgstr ""
816
 
817
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
818
  msgid "Short description of the problem"
819
  msgstr ""
820
 
821
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
822
  msgid "Detailed description"
823
  msgstr ""
824
 
825
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
826
  msgid "Technical Information"
827
  msgstr "Technical Information"
828
 
829
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
830
  msgid "This information helps us to find the problem source"
831
  msgstr ""
832
 
833
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:161
834
  msgid ""
835
  "Alternatively, please email %s. Do not forget to copy and paste the "
836
  "technical information to your email message."
837
  msgstr ""
838
 
839
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:89
840
  msgid "WPGlobus Recommends:"
841
  msgstr "WPGlobus Recommends:"
842
 
843
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:98,
844
- #: includes/options/class-wpglobus-options.php:933
845
  msgid "WPGlobus for WooCommerce"
846
  msgstr "WPGlobus for WooCommerce"
847
 
848
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:102
849
  msgid ""
850
  "Translate product titles and descriptions, product categories, tags and "
851
  "attributes."
@@ -853,171 +638,127 @@ msgstr ""
853
  "Translate product titles and descriptions, product categories, tags and "
854
  "attributes."
855
 
856
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:107
857
  msgid "Get it now:"
858
  msgstr "Get it now:"
859
 
860
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:117
861
  msgid "WooCommerce Multi-Currency"
862
  msgstr ""
863
 
864
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:121
865
  msgid "Accept multiple currencies in your online store!"
866
  msgstr "Accept multiple currencies in your online store!"
867
 
868
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:126,
869
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:185
870
  msgid "Check it out:"
871
  msgstr "Check it out:"
872
 
873
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:195
874
  msgid "To translate permalinks, please activate the module Slug."
875
  msgstr ""
876
 
877
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:183
878
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
879
  msgstr ""
880
 
881
- #: includes/builders/class-wpglobus-builder.php:278,
882
- #: includes/class-wpglobus.php:3577
883
  msgid "Save draft before using extra language."
884
  msgstr ""
885
 
886
- #: includes/builders/class-wpglobus-builder.php:371
887
  msgid "Builder"
888
  msgstr ""
889
 
890
- #: includes/builders/class-wpglobus-builder.php:395
891
  msgid "Сompatibility Settings"
892
  msgstr ""
893
 
894
  #. translators: ON/OFF status of WPGlobus on the edit pages.
895
  #. translators: ON/OFF status of WPGlobus on the edit pages.
896
- #: includes/builders/elementor/class-wpglobus-elementor.php:255,
897
- #: includes/class-wpglobus.php:1263
898
  msgid "ON"
899
  msgstr ""
900
 
901
- #: includes/builders/elementor/class-wpglobus-elementor.php:256,
902
- #: includes/class-wpglobus.php:1264
903
  msgid "Turn off"
904
  msgstr ""
905
 
906
- #: includes/builders/elementor/class-wpglobus-elementor.php:250,
907
- #: includes/class-wpglobus.php:1258
908
  msgid "OFF"
909
  msgstr ""
910
 
911
- #: includes/builders/elementor/class-wpglobus-elementor.php:251,
912
- #: includes/class-wpglobus.php:1259
913
  msgid "Turn on"
914
  msgstr ""
915
 
916
- #: includes/builders/elementor/class-wpglobus-elementor.php:281
917
  msgid "Elementor"
918
  msgstr ""
919
 
920
- #: includes/builders/elementor/class-wpglobus-elementor.php:508
921
  msgid "WPGlobus languages"
922
  msgstr ""
923
 
924
- #: includes/builders/elementor/class-wpglobus-elementor.php:514
925
  msgid "current"
926
  msgstr ""
927
 
928
- #: includes/builders/elementor/class-wpglobus-elementor.php:675
929
  msgid ""
930
  "WPGlobus provides multilingual support for Elementor only when the option "
931
  "%1$s%2$s%3$s is set to %4$s."
932
  msgstr ""
933
 
934
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:228
935
  msgid "Before switching the language, please save draft or publish."
936
  msgstr ""
937
 
938
  #. translators: Metabox title FOR language.
939
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:318
940
  msgctxt "filter__seo_meta_box_title"
941
  msgid "for"
942
  msgstr ""
943
 
944
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:392
945
  msgid "Page is being reloaded. Please wait..."
946
  msgstr ""
947
 
948
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:393
949
  msgid ""
950
  "Before switching the language, please save draft or publish, then reload "
951
  "page."
952
  msgstr ""
953
 
954
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
955
  msgid ""
956
  "WPGlobus provides multilingual support for Elementor only when the option "
957
  "`CSS Print Method` is set to `External File`."
958
  msgstr ""
959
 
960
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
961
  msgid "Open Elementor Settings page"
962
  msgstr ""
963
 
964
- #: includes/class-wpglobus-widget.php:27
965
  msgid "WPGlobus widget"
966
  msgstr "WPGlobus widget"
967
 
968
- #: includes/class-wpglobus-widget.php:29
969
  msgid "Add language switcher"
970
  msgstr "Add language switcher"
971
 
972
- #: includes/class-wpglobus-widget.php:32
973
  msgid "Flags"
974
  msgstr "Flags"
975
 
976
- #: includes/class-wpglobus-widget.php:33
977
  msgid "List"
978
  msgstr "List"
979
 
980
- #: includes/class-wpglobus-widget.php:34
981
  msgid "List with flags"
982
  msgstr "List with flags"
983
 
984
- #: includes/class-wpglobus-widget.php:35
985
  msgid "Select"
986
  msgstr "Select"
987
 
988
- #: includes/class-wpglobus-widget.php:36
989
  msgid "Select with language code"
990
  msgstr "Select with language code"
991
 
992
- #: includes/class-wpglobus-widget.php:37
993
  msgid "Dropdown"
994
  msgstr "Dropdown"
995
 
996
- #: includes/class-wpglobus-widget.php:38
997
  msgid "Dropdown with flags"
998
  msgstr "Dropdown with flags"
999
 
1000
- #: includes/class-wpglobus-widget.php:264
1001
  msgid "Selector type"
1002
  msgstr "Selector type"
1003
 
1004
- #: includes/class-wpglobus.php:1447
1005
  msgid "You cannot disable the main language."
1006
  msgstr "You cannot disable the main language."
1007
 
1008
- #: includes/class-wpglobus.php:1672
1009
  msgid "Need a multilingual slug?"
1010
  msgstr "Need a multilingual slug?"
1011
 
1012
- #: includes/class-wpglobus.php:1655
1013
  msgid "*) Available after the menu is saved."
1014
  msgstr "*) Available after the menu is saved."
1015
 
1016
- #: includes/class-wpglobus.php:4025
1017
  msgid "You must enable Pretty Permalinks to use WPGlobus."
1018
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
1019
 
1020
- #: includes/class-wpglobus.php:4027
1021
  msgid ""
1022
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1023
  "default option."
@@ -1025,193 +766,150 @@ msgstr ""
1025
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1026
  "default option."
1027
 
1028
- #: includes/options/class-wpglobus-options.php:281
1029
  msgid "Language Selector Menu Style"
1030
  msgstr ""
1031
 
1032
- #: includes/options/class-wpglobus-options.php:282,
1033
- #: includes/options/class-wpglobus-options.php:802,
1034
- #: includes/options/class-wpglobus-options.php:871
1035
  msgid "WPGlobus Plus"
1036
  msgstr ""
1037
 
1038
- #: includes/options/class-wpglobus-options.php:283
1039
  msgid "Drop-down languages menu or Flat (in one line)"
1040
  msgstr ""
1041
 
1042
- #: includes/options/class-wpglobus-options.php:286
1043
  msgid "Do not change"
1044
  msgstr ""
1045
 
1046
- #: includes/options/class-wpglobus-options.php:287
1047
  msgid "Drop-down (vertical)"
1048
  msgstr ""
1049
 
1050
- #: includes/options/class-wpglobus-options.php:288
1051
  msgid "Flat (horizontal)"
1052
  msgstr ""
1053
 
1054
- #: includes/options/class-wpglobus-options.php:343
1055
  msgid ""
1056
  "If you see this message then your browser may not display the WPGlobus "
1057
  "Settings panel properly. Please try another browser."
1058
  msgstr ""
1059
 
1060
- #: includes/options/class-wpglobus-options.php:599,
1061
- #: includes/options/class-wpglobus-options.php:1577
1062
  msgid "Сompatibility"
1063
  msgstr ""
1064
 
1065
  #. translators: placeholders for "strong" tags.
1066
- #: includes/options/class-wpglobus-options.php:616
1067
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
1068
  msgstr ""
1069
 
1070
  #. translators: placeholders for "strong" tags.
1071
- #: includes/options/class-wpglobus-options.php:619
1072
  msgid ""
1073
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
1074
  "the language attributes: name, code, flag icon, etc."
1075
  msgstr ""
1076
 
1077
- #: includes/options/class-wpglobus-options.php:622
1078
  msgid "Important notes"
1079
  msgstr ""
1080
 
1081
  #. translators: placeholders for "strong" tags.
1082
- #: includes/options/class-wpglobus-options.php:624
1083
  msgid "Version %1$s1.9.17%2$s "
1084
  msgstr ""
1085
 
1086
  #. translators: placeholders for "strong" tags.
1087
- #: includes/options/class-wpglobus-options.php:627
1088
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
1089
  msgstr ""
1090
 
1091
  #. translators: placeholders for "strong" tags; compatibility tab link.
1092
- #: includes/options/class-wpglobus-options.php:630
1093
  msgid ""
1094
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
1095
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
1096
  msgstr ""
1097
 
1098
  #. translators: placeholders for "strong" tags; compatibility tab link.
1099
- #: includes/options/class-wpglobus-options.php:633
1100
  msgid ""
1101
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
1102
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
1103
  msgstr ""
1104
 
1105
  #. translators: placeholders for "strong" tags.
1106
- #: includes/options/class-wpglobus-options.php:637
1107
  msgid "Version %1$s2.2.11%2$s "
1108
  msgstr ""
1109
 
1110
- #: includes/options/class-wpglobus-options.php:639
1111
  msgid "Starting from this version"
1112
  msgstr ""
1113
 
1114
  #. translators: placeholders for "strong" tags.
1115
- #: includes/options/class-wpglobus-options.php:642
1116
  msgid ""
1117
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
1118
  "(CPT)."
1119
  msgstr ""
1120
 
1121
  #. translators: placeholders for "strong" tags.
1122
- #: includes/options/class-wpglobus-options.php:645
1123
  msgid ""
1124
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
1125
  "the %1$s[%3$s]%2$s tab."
1126
  msgstr ""
1127
 
1128
- #: includes/options/class-wpglobus-options.php:662
1129
  msgid "Welcome!"
1130
  msgstr "Welcome!"
1131
 
1132
- #: includes/options/class-wpglobus-options.php:685
1133
  msgid "Deactivating / Uninstalling"
1134
  msgstr "Deactivating / Uninstalling"
1135
 
1136
- #: includes/options/class-wpglobus-options.php:711
1137
  msgid "Uninstall"
1138
  msgstr ""
1139
 
1140
- #: includes/options/class-wpglobus-options.php:741
1141
  msgid "All add-ons"
1142
  msgstr ""
1143
 
1144
- #: includes/options/class-wpglobus-options.php:756
1145
  msgid "Mobile Menu"
1146
  msgstr ""
1147
 
1148
- #: includes/options/class-wpglobus-options.php:771
1149
  msgid "Language Widgets"
1150
  msgstr ""
1151
 
1152
- #: includes/options/class-wpglobus-options.php:841
1153
  msgid "We Recommend..."
1154
  msgstr ""
1155
 
1156
- #: includes/options/class-wpglobus-options.php:873
1157
  msgid ""
1158
  "Our premium add-on, WPGlobus Plus, will add several features to your "
1159
  "website, such as:"
1160
  msgstr ""
1161
 
1162
- #: includes/options/class-wpglobus-options.php:876
1163
  msgid ""
1164
  "- Ability to write a post in one language and immediately publish it, not "
1165
  "waiting for the translation to other languages;"
1166
  msgstr ""
1167
 
1168
- #: includes/options/class-wpglobus-options.php:879
1169
  msgid "- Set different URLs for each translation;"
1170
  msgstr ""
1171
 
1172
- #: includes/options/class-wpglobus-options.php:882
1173
  msgid ""
1174
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
1175
  "for each translation;"
1176
  msgstr ""
1177
 
1178
- #: includes/options/class-wpglobus-options.php:885
1179
  msgid "- and more..."
1180
  msgstr ""
1181
 
1182
- #: includes/options/class-wpglobus-options.php:888,
1183
- #: includes/options/class-wpglobus-options.php:945,
1184
- #: includes/options/class-wpglobus-options.php:1003
1185
  msgid "Click here to download"
1186
  msgstr ""
1187
 
1188
- #: includes/options/class-wpglobus-options.php:936
1189
  msgid ""
1190
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
1191
  "translate your blog posts and pages to many languages."
1192
  msgstr ""
1193
 
1194
- #: includes/options/class-wpglobus-options.php:939
1195
  msgid "The next step is to translate your WooCommerce-based store!"
1196
  msgstr ""
1197
 
1198
- #: includes/options/class-wpglobus-options.php:942
1199
  msgid ""
1200
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
1201
  "translate product titles and descriptions, categories, tags and attributes."
1202
  msgstr ""
1203
 
1204
- #: includes/options/class-wpglobus-options.php:989
1205
  msgid "Multi-currency"
1206
  msgstr ""
1207
 
1208
- #: includes/options/class-wpglobus-options.php:992
1209
  msgid ""
1210
  "Your WooCommerce-powered store is set to show prices and accept payments in "
1211
  "a single currency only."
1212
  msgstr ""
1213
 
1214
- #: includes/options/class-wpglobus-options.php:996
1215
  msgid ""
1216
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
1217
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
@@ -1219,460 +917,348 @@ msgid ""
1219
  "positioning for global growth!"
1220
  msgstr ""
1221
 
1222
- #: includes/options/class-wpglobus-options.php:1000
1223
  msgid ""
1224
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
1225
  "re-calculating prices on-the-fly."
1226
  msgstr ""
1227
 
1228
- #: includes/options/class-wpglobus-options.php:1037
1229
  msgid "WPGlobus Premium Add-ons"
1230
  msgstr ""
1231
 
1232
- #: includes/options/class-wpglobus-options.php:1039
1233
  msgid ""
1234
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
1235
  "you will be able to:"
1236
  msgstr ""
1237
 
1238
- #: includes/options/class-wpglobus-options.php:1044
1239
  msgid ""
1240
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
1241
  "моя-страница and so on);"
1242
  msgstr ""
1243
 
1244
- #: includes/options/class-wpglobus-options.php:1047
1245
  msgid ""
1246
  "Postpone translation to some languages and <strong>publish only the "
1247
  "translated texts</strong>;"
1248
  msgstr ""
1249
 
1250
- #: includes/options/class-wpglobus-options.php:1050
1251
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
1252
  msgstr ""
1253
 
1254
- #: includes/options/class-wpglobus-options.php:1053
1255
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
1256
  msgstr ""
1257
 
1258
- #: includes/options/class-wpglobus-options.php:1056
1259
  msgid ""
1260
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
1261
  "strong>;"
1262
  msgstr ""
1263
 
1264
- #: includes/options/class-wpglobus-options.php:1060
1265
  msgid "...and more."
1266
  msgstr ""
1267
 
1268
- #: includes/options/class-wpglobus-options.php:1063
1269
  msgid "Click here to visit the WPGlobus Store"
1270
  msgstr ""
1271
 
1272
- #: includes/options/class-wpglobus-options.php:1104
1273
  msgid "Select a language"
1274
  msgstr "Select a language"
1275
 
1276
  #. translators: %3$s placeholder for the icon (actual picture).
1277
- #: includes/options/class-wpglobus-options.php:1133
1278
  msgid ""
1279
  "Place the %1$smain language%2$s of your site at the top of the list by "
1280
  "dragging the %3$s icons."
1281
  msgstr ""
1282
 
1283
  #. translators: placeholders for the "strong" HTML tags.
1284
- #: includes/options/class-wpglobus-options.php:1136
1285
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
1286
  msgstr ""
1287
 
1288
  #. translators: placeholders for the "strong" HTML tags.
1289
- #: includes/options/class-wpglobus-options.php:1139
1290
  msgid "%1$sAdd%2$s more languages using the section below."
1291
  msgstr ""
1292
 
1293
- #: includes/options/class-wpglobus-options.php:1140
1294
  msgid "When done, click the [Save Changes] button."
1295
  msgstr "When done, click the [Save Changes] button."
1296
 
1297
  #. translators: %s - placeholder for the "Save Changes" button text.
1298
- #: includes/options/class-wpglobus-options.php:1151
1299
  msgid "Press the %s button to confirm."
1300
  msgstr ""
1301
 
1302
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
1303
- #: includes/options/class-wpglobus-options.php:1168
1304
  msgid "-- none --"
1305
  msgstr ""
1306
 
1307
- #: includes/options/class-wpglobus-options.php:1169
1308
  msgid "All menus"
1309
  msgstr ""
1310
 
1311
- #: includes/options/class-wpglobus-options.php:1182
1312
  msgid "Instructions:"
1313
  msgstr "Instructions:"
1314
 
1315
- #: includes/options/class-wpglobus-options.php:1242
1316
  msgid "(Found in some themes)"
1317
  msgstr "(Found in some themes)"
1318
 
1319
- #: includes/options/class-wpglobus-options.php:1244
1320
  msgid "Enable"
1321
  msgstr "Enable"
1322
 
1323
- #: includes/options/class-wpglobus-options.php:1259
1324
  msgid "Languages table"
1325
  msgstr "Languages table"
1326
 
1327
- #: includes/options/class-wpglobus-options.php:1265
1328
  msgid "Use this table to add, edit or delete languages."
1329
  msgstr "Use this table to add, edit or delete languages."
1330
 
1331
- #: includes/options/class-wpglobus-options.php:1266
1332
  msgid "NOTE: you cannot remove the main language."
1333
  msgstr "NOTE: you cannot remove the main language."
1334
 
1335
- #: includes/options/class-wpglobus-options.php:1314
1336
  msgid "WPGlobus is enabled on these Post Types"
1337
  msgstr ""
1338
 
1339
- #: includes/options/class-wpglobus-options.php:1315
1340
  msgid "Uncheck to disable"
1341
  msgstr ""
1342
 
1343
- #: includes/options/class-wpglobus-options.php:1316
1344
  msgid ""
1345
  "Please note that there are post types, which status is managed by other "
1346
  "plugins and cannot be changed here."
1347
  msgstr ""
1348
 
1349
- #: includes/options/class-wpglobus-options.php:1321
1350
  msgid "Post Types"
1351
  msgstr ""
1352
 
1353
- #: includes/options/class-wpglobus-options.php:1337
1354
  msgid ""
1355
  "You should put here only the code provided by WPGlobus Support. Do not write "
1356
  "anything else in the sections below as it might break the functionality of "
1357
  "your website!"
1358
  msgstr ""
1359
 
1360
- #: includes/options/class-wpglobus-options.php:1378
1361
  msgid "Custom Code"
1362
  msgstr ""
1363
 
1364
- #: includes/options/class-wpglobus-options.php:1486,
1365
- #: includes/options/class-wpglobus-options.php:1618,
1366
- #: includes/options/class-wpglobus-options.php:1729
1367
  msgid "Enabled"
1368
  msgstr ""
1369
 
1370
- #: includes/options/class-wpglobus-options.php:1499
1371
  msgid "Builders support"
1372
  msgstr ""
1373
 
1374
- #: includes/options/class-wpglobus-options.php:1551
1375
  msgid "Builder mode is enabled on these Post Types"
1376
  msgstr ""
1377
 
1378
- #: includes/options/class-wpglobus-options.php:1617
1379
  msgid "Old fashioned language switcher"
1380
  msgstr ""
1381
 
1382
- #: includes/options/class-wpglobus-options.php:1623
1383
  msgid "Block Editor"
1384
  msgstr ""
1385
 
1386
- #: includes/options/class-wpglobus-options.php:1624
1387
  msgid "Block Editor Options"
1388
  msgstr ""
1389
 
1390
- #: includes/options/class-wpglobus-options.php:1653
1391
  msgid ""
1392
  "With the current settings, you will see the following lines in the section "
1393
  "HEAD of your site pages"
1394
  msgstr ""
1395
 
1396
- #: includes/options/class-wpglobus-options.php:1655
1397
  msgid "(example for two languages)"
1398
  msgstr ""
1399
 
1400
- #: includes/options/class-wpglobus-options.php:1702
1401
  msgid ""
1402
  "Tell search engines about localized versions of your pages using the "
1403
  "hreflang tag"
1404
  msgstr ""
1405
 
1406
- #: includes/options/class-wpglobus-options.php:1711
1407
  msgid "Output the hreflang tag as"
1408
  msgstr ""
1409
 
1410
- #: includes/options/class-wpglobus-options.php:1714
1411
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1412
  msgstr ""
1413
 
1414
- #: includes/options/class-wpglobus-options.php:1715
1415
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1416
  msgstr ""
1417
 
1418
- #: includes/options/class-wpglobus-options.php:1716
1419
  msgid "Language code only (en, ru, etc.)"
1420
  msgstr ""
1421
 
1422
- #: includes/options/class-wpglobus-options.php:1728
1423
  msgid "Use the code `x-default` for the main language"
1424
  msgstr ""
1425
 
1426
- #: includes/options/class-wpglobus-options.php:1734
1427
  msgid "Multilingual SEO"
1428
  msgstr ""
1429
 
1430
- #: includes/options/class-wpglobus-options.php:1735
1431
  msgid "Multilingual SEO Options"
1432
  msgstr ""
1433
 
1434
- #: includes/options/class-wpglobus-options.php:1772
1435
  msgid ""
1436
  "With WPGlobus, you can get translations for posts and pages using REST API."
1437
  msgstr ""
1438
 
1439
- #: includes/options/class-wpglobus-options.php:1800,
1440
- #: includes/options/class-wpglobus-options.php:1808,
1441
- #: includes/options/class-wpglobus-options.php:1780,
1442
- #: includes/options/class-wpglobus-options.php:1789
1443
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1444
  msgstr ""
1445
 
1446
- #: includes/options/class-wpglobus-options.php:1777
1447
  msgid ""
1448
  "For demonstration, you can try the first post that WordPress creates at the "
1449
  "initial installation."
1450
  msgstr ""
1451
 
1452
- #: includes/options/class-wpglobus-options.php:1819
1453
  msgid ""
1454
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1455
  "information."
1456
  msgstr ""
1457
 
1458
- #: includes/options/class-wpglobus-options.php:1826
1459
  msgid ""
1460
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1461
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1462
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1463
  msgstr ""
1464
 
1465
- #: includes/options/class-wpglobus-options.php:1839
1466
  msgid "Description:"
1467
  msgstr ""
1468
 
1469
- #: includes/options/class-wpglobus-options.php:1846,
1470
- #: includes/options/class-wpglobus-options.php:1847
1471
  msgid "REST API"
1472
  msgstr ""
1473
 
1474
- #: includes/options/class-wpglobus-options.php:2180
1475
  msgid "Translate strings"
1476
  msgstr ""
1477
 
1478
- #: includes/options/fields/table/class-wpglobus-languages-table.php:66
1479
  msgid "item"
1480
  msgstr "item"
1481
 
1482
- #: includes/options/fields/table/class-wpglobus-languages-table.php:68
1483
  msgid "items"
1484
  msgstr "items"
1485
 
1486
- #: includes/options/fields/table/class-wpglobus-languages-table.php:88
1487
  msgid "Code"
1488
  msgstr "Code"
1489
 
1490
- #: includes/options/fields/table/class-wpglobus-languages-table.php:94
1491
  msgid "Edit"
1492
  msgstr "Edit"
1493
 
1494
- #: includes/options/fields/table/class-wpglobus-languages-table.php:99
1495
  msgid "Delete"
1496
  msgstr "Delete"
1497
 
1498
- #: includes/options/fields/table/class-wpglobus-languages-table.php:105
1499
  msgid "File"
1500
  msgstr "File"
1501
 
1502
- #: includes/options/fields/table/class-wpglobus-languages-table.php:110
1503
  msgid "Flag"
1504
  msgstr "Flag"
1505
 
1506
- #: includes/options/fields/table/class-wpglobus-languages-table.php:120
1507
  msgid "Language name"
1508
  msgstr "Language name"
1509
 
1510
- #: includes/options/fields/table/class-wpglobus-languages-table.php:125
1511
  msgid "English language name"
1512
  msgstr "English language name"
1513
 
1514
- #: includes/options/fields/table/class-wpglobus-languages-table.php:151
1515
  msgid "No items found"
1516
  msgstr "No items found"
1517
 
1518
- #: includes/options/fields/table/class-wpglobus-languages-table.php:164
1519
  msgid "Add new Language"
1520
  msgstr "Add new Language"
1521
 
1522
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:164
1523
  msgid "No items of this type were found."
1524
  msgstr ""
1525
 
1526
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:107
1527
  msgid "Select an item"
1528
  msgstr ""
1529
 
1530
- #: includes/options/templates/compatibility-beta.php:15
1531
  msgid "Multilingual support of this add-on is currently in Beta stage."
1532
  msgstr ""
1533
 
1534
- #: includes/options/templates/compatibility-beta.php:17
1535
  msgid "We do not recommend using it on production sites."
1536
  msgstr ""
1537
 
1538
- #: includes/options/templates/compatibility-beta.php:23
1539
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1540
  msgstr ""
1541
 
1542
- #: includes/options/templates/compatibility.php:69
1543
  msgid "WordPress version"
1544
  msgstr ""
1545
 
1546
- #: includes/options/templates/compatibility.php:44
1547
  msgid "In the WordPress core"
1548
  msgstr ""
1549
 
1550
- #: includes/options/templates/compatibility.php:46
1551
  msgid "Core"
1552
  msgstr ""
1553
 
1554
- #: includes/options/templates/compatibility.php:52,
1555
- #: includes/options/templates/compatibility.php:79
1556
  msgid "Current version"
1557
  msgstr ""
1558
 
1559
- #: includes/options/templates/compatibility.php:53,
1560
- #: includes/options/templates/compatibility.php:81
1561
  msgid "Stage"
1562
  msgstr ""
1563
 
1564
- #: includes/options/templates/compatibility.php:54,
1565
- #: includes/options/templates/compatibility.php:82
1566
  msgid "Status"
1567
  msgstr ""
1568
 
1569
- #: includes/options/templates/compatibility.php:60
1570
  msgid "Block editor"
1571
  msgstr ""
1572
 
1573
- #: includes/options/templates/compatibility.php:62
1574
  msgid "production"
1575
  msgstr ""
1576
 
1577
- #: includes/options/templates/compatibility.php:73
1578
  msgid "List of supported add-ons"
1579
  msgstr ""
1580
 
1581
- #: includes/options/templates/compatibility.php:78
1582
  msgid "Add-on"
1583
  msgstr ""
1584
 
1585
- #: includes/options/templates/compatibility.php:80
1586
  msgid "Supported minimum version"
1587
  msgstr ""
1588
 
1589
- #: includes/options/templates/compatibility.php:105
1590
  msgid "Not installed"
1591
  msgstr ""
1592
 
1593
- #: includes/options/templates/compatibility.php:102
1594
  msgid "Installed, inactive"
1595
  msgstr ""
1596
 
1597
- #: includes/options/templates/compatibility.php:100
1598
  msgid "Active"
1599
  msgstr "Active"
1600
 
1601
- #: includes/options/templates/customize-intro.php:35
1602
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1603
  msgstr ""
1604
 
1605
- #: includes/options/templates/customize-intro.php:39
1606
  msgid "However, some themes do not follow all WordPress standards strictly."
1607
  msgstr ""
1608
 
1609
- #: includes/options/templates/customize-intro.php:41
1610
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1611
  msgstr ""
1612
 
1613
- #: includes/options/templates/customize-intro.php:45
1614
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1615
  msgstr ""
1616
 
1617
- #: includes/options/templates/customize-intro.php:53
1618
  msgid ""
1619
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1620
  "With those themes, WPGlobus Customizer is switched off by default"
1621
  msgstr ""
1622
 
1623
- #: includes/options/templates/customize-intro.php:60
1624
  msgid "The currently active theme is"
1625
  msgstr ""
1626
 
1627
- #: includes/options/templates/customize-intro.php:66
1628
  msgid "In the current version, WPGlobus Customizer does not support"
1629
  msgstr ""
1630
 
1631
- #: includes/options/templates/customize-intro.php:70
1632
  msgid "translation of the navigation menus"
1633
  msgstr ""
1634
 
1635
- #: includes/options/templates/customize-intro.php:72
1636
  msgid "to translate, please go to"
1637
  msgstr ""
1638
 
1639
- #: includes/options/templates/customize-intro.php:81
1640
  msgid "Go to Customizer"
1641
  msgstr ""
1642
 
1643
- #: includes/options/templates/customize-intro.php:88
1644
  msgid "is undefined"
1645
  msgstr ""
1646
 
1647
- #: includes/options/templates/customize-intro.php:85
1648
  msgid "is set to"
1649
  msgstr ""
1650
 
1651
- #: includes/options/templates/customize-intro.php:94
1652
  msgid "by adding to the file wp-config.php"
1653
  msgstr ""
1654
 
1655
- #: includes/options/templates/customize-intro.php:96
1656
  msgid "now"
1657
  msgstr ""
1658
 
1659
- #: includes/options/wpglobus-options-header.php:25
1660
  msgid "We rely on your support!"
1661
  msgstr "We rely on your support!"
1662
 
1663
- #: includes/options/wpglobus-options-header.php:28
1664
  msgid "Please consider a small donation to support the future development."
1665
  msgstr "Please consider a small donation to support the future development."
1666
 
1667
- #: includes/options/wpglobus-options-header.php:32
1668
  msgid "Thank you!"
1669
  msgstr "Thank you!"
1670
 
1671
- #: includes/options/wpglobus-options-header.php:55
1672
  msgid "WPGlobus Plus!"
1673
  msgstr "WPGlobus Plus!"
1674
 
1675
- #: includes/options/wpglobus-options-header.php:58
1676
  msgid ""
1677
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1678
  "separate publishing and more! "
@@ -1680,29 +1266,23 @@ msgstr ""
1680
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1681
  "separate publishing and more! "
1682
 
1683
- #: includes/options/wpglobus-options-header.php:64
1684
  msgid "Get WPGlobus Plus now!"
1685
  msgstr "Get WPGlobus Plus now!"
1686
 
1687
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1688
  msgid ""
1689
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1690
  "the current version."
1691
  msgstr ""
1692
 
1693
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1694
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1695
  msgstr ""
1696
 
1697
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1698
  msgid "WPGlobus warning: "
1699
  msgstr ""
1700
 
1701
- #: wpglobus.php:13
1702
  msgid "https://github.com/WPGlobus/WPGlobus"
1703
  msgstr "https://github.com/WPGlobus/WPGlobus"
1704
 
1705
- #: wpglobus.php:14
1706
  msgid ""
1707
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1708
  "widgets and even custom fields - in multiple languages!"
@@ -1710,7 +1290,6 @@ msgstr ""
1710
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1711
  "widgets and even custom fields - in multiple languages!"
1712
 
1713
- #: wpglobus.php:19
1714
  msgid "https://wpglobus.com/"
1715
  msgstr "https://wpglobus.com/"
1716
 
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
 
 
 
 
 
19
  msgid "Guide"
20
  msgstr "Guide"
21
 
 
 
22
  msgid "WPGlobus Help Desk"
23
  msgstr "WPGlobus Help Desk"
24
 
 
 
 
 
 
 
 
25
  msgid "Add-ons"
26
  msgstr "Add-ons"
27
 
 
28
  msgid "Quick Start"
29
  msgstr "Quick Start"
30
 
 
 
31
  msgid "FAQ"
32
  msgstr "FAQ"
33
 
 
34
  msgid ""
35
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
36
  msgstr ""
37
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
38
 
 
39
  msgid ""
40
  "The mbstring extension is required for the full UTF-8 compatibility and "
41
  "better performance. Without it, some parts of WordPress and WPGlobus may "
47
  "function incorrectly. Please contact your hosting company or systems "
48
  "administrator."
49
 
 
50
  msgid "Go to WPGlobus Settings"
51
  msgstr "Go to WPGlobus Settings"
52
 
 
53
  msgid "Easy as 1-2-3:"
54
  msgstr "Easy as 1-2-3:"
55
 
 
56
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
57
  msgstr "Go to WPGlobus admin menu and choose the countries / languages;"
58
 
 
59
  msgid ""
60
  "Enter the translations to the posts, pages, categories, tags and menus using "
61
  "a clean and simple interface."
63
  "Enter the translations to the posts, pages, categories, tags and menus using "
64
  "a clean and simple interface."
65
 
 
66
  msgid ""
67
  "Switch languages at the front-end using a drop-down menu with language names "
68
  "and country flags."
70
  "Switch languages at the front-end using a drop-down menu with language names "
71
  "and country flags."
72
 
 
73
  msgid "Links:"
74
  msgstr "Links:"
75
 
 
76
  msgid "FAQs"
77
  msgstr "FAQs"
78
 
 
79
  msgid "Contact Us"
80
  msgstr "Contact Us"
81
 
 
82
  msgid "Please give us 5 stars!"
83
  msgstr "Please give us 5 stars!"
84
 
 
85
  msgid "WPGlobus does not translate texts automatically!"
86
  msgstr "WPGlobus does not translate texts automatically!"
87
 
 
88
  msgid ""
89
  "There are many translation companies and individual translators who can help "
90
  "you write and proofread the texts."
92
  "There are many translation companies and individual translators who can help "
93
  "you write and proofread the texts."
94
 
 
95
  msgid ""
96
  "When you choose a translator, please look at their native language, country "
97
  "of residence, specialization and knowledge of WordPress."
100
  "of residence, specialization and knowledge of WordPress."
101
 
102
  #. translators: %s are used to insert HTML link. Keep them in place.
 
103
  msgid ""
104
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
105
  "website. This is not an endorsement, just a courtesy. Please contact them "
109
  "website. This is not an endorsement, just a courtesy. Please contact them "
110
  "directly and let us know how did it work for you!"
111
 
 
112
  msgid "Important notes:"
113
  msgstr "Important notes:"
114
 
 
115
  msgid ""
116
  "WPGlobus only supports the localization URLs in the form of <code>example."
117
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
121
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
122
  "com</code> and language queries <code>example.com?lang=xx</code>."
123
 
 
124
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
125
  msgstr "Some themes and plugins are <strong>not multilingual-ready</strong>."
126
 
 
127
  msgid ""
128
  "They might display some texts with no translation, or with all languages "
129
  "mixed together."
132
  "mixed together."
133
 
134
  #. translators: %s are used to insert HTML link. Keep them in place.
 
135
  msgid ""
136
  "Please contact the theme / plugin author. If they are unable to assist, "
137
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
139
  "Please contact the theme / plugin author. If they are unable to assist, "
140
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
141
 
 
142
  msgid "Language was set on your profile page"
143
  msgstr ""
144
 
 
145
  msgid "Add"
146
  msgstr "Add"
147
 
 
 
148
  msgid "Multilingual Everything!"
149
  msgstr "Multilingual Everything!"
150
 
 
 
151
  msgid ""
152
  "WPGlobus is a family of WordPress plugins assisting you in making "
153
  "multilingual WordPress blogs and sites."
155
  "WPGlobus is a family of WordPress plugins assisting you in making "
156
  "multilingual WordPress blogs and sites."
157
 
 
158
  msgid "Remove the WPGlobus settings (not recommended)"
159
  msgstr "Remove the WPGlobus settings (not recommended)"
160
 
 
161
  msgid "Clean-up Tool"
162
  msgstr "Clean-up Tool"
163
 
 
164
  msgid "Support"
165
  msgstr "Support"
166
 
 
167
  msgid ""
168
  "WARNING: this operation is non-reversible. It is strongly recommended that "
169
  "you backup your database before proceeding."
171
  "WARNING: this operation is non-reversible. It is strongly recommended that "
172
  "you backup your database before proceeding."
173
 
 
174
  msgid ""
175
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
176
  "By running it, you will remove ALL translations you have entered to your "
186
  "might end up with empty titles, no content, no excerpts, blank comments and "
187
  "so on."
188
 
 
189
  msgid ""
190
  "Make sure that your active theme does not have any code related to WPGlobus. "
191
  "Such code could be added by you or by a 3rd party developer. If that code "
194
  msgstr ""
195
 
196
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
 
197
  msgid ""
198
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
199
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
200
  msgstr ""
201
 
 
202
  msgid "You are about to clean the content of the following database tables:"
203
  msgstr "You are about to clean the content of the following database tables:"
204
 
 
205
  msgid "The operations log"
206
  msgstr "The operations log"
207
 
 
208
  msgid ""
209
  "We are going to write a detailed log of all the database changes performed. "
210
  "It should help in the case you need to restore something important. The log "
214
  "It should help in the case you need to restore something important. The log "
215
  "will be written to the file:"
216
 
 
217
  msgid ""
218
  "Uncheck if you do not want to write the operations log (we recommend to keep "
219
  "it checked)"
221
  "Uncheck if you do not want to write the operations log (we recommend to keep "
222
  "it checked)"
223
 
 
224
  msgid "You have been warned..."
225
  msgstr "You have been warned..."
226
 
 
227
  msgid "Please confirm by checking the box below:"
228
  msgstr "Please confirm by checking the box below:"
229
 
 
230
  msgid ""
231
  "I have read and understood everything written on this page. I am aware that "
232
  "by using this tool I may loose some content of my website. I have made a "
238
  "database backup and know how to restore it if necessary. I am fully "
239
  "responsible for the results."
240
 
 
241
  msgid "YES, I CONFIRM"
242
  msgstr "YES, I CONFIRM"
243
 
 
244
  msgid "Process with the Clean-up"
245
  msgstr "Process with the Clean-up"
246
 
 
 
 
 
247
  msgid "Default"
248
  msgstr "Default"
249
 
 
250
  msgid "Section"
251
  msgstr "Section"
252
 
 
253
  msgid "Show all sections"
254
  msgstr "Show all sections"
255
 
 
256
  msgid "Save &amp; Reload"
257
  msgstr "Save &amp; Reload"
258
 
 
 
 
259
  msgid "WPGlobus"
260
  msgstr "WPGlobus"
261
 
 
262
  msgid ""
263
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
264
  msgstr ""
265
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
266
 
 
267
  msgid "Fields Settings"
268
  msgstr "Fields Settings"
269
 
 
270
  msgid "WPGlobus Settings"
271
  msgstr "WPGlobus Settings"
272
 
 
273
  msgid "Help"
274
  msgstr ""
275
 
 
 
276
  msgid "Languages"
277
  msgstr "Languages"
278
 
 
 
279
  msgid "Enabled Languages"
280
  msgstr "Enabled Languages"
281
 
 
 
282
  msgid "These languages are currently enabled on your site."
283
  msgstr "These languages are currently enabled on your site."
284
 
 
 
285
  msgid "Choose a language you would like to enable."
286
  msgstr ""
287
 
 
288
  msgid "Press the [Save & Publish] button to confirm."
289
  msgstr ""
290
 
291
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
292
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
 
 
293
  msgid "or Add new Language %1$s here %2$s"
294
  msgstr "or Add new Language %1$s here %2$s"
295
 
 
 
296
  msgid "Add Languages"
297
  msgstr "Add Languages"
298
 
 
 
299
  msgid "Language Selector Mode"
300
  msgstr "Language Selector Mode"
301
 
 
 
302
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
303
  msgstr "Two-letter Code with flag (en, ru, it, etc.)"
304
 
 
 
305
  msgid "Full Name (English, Russian, Italian, etc.)"
306
  msgstr "Full Name (English, Russian, Italian, etc.)"
307
 
 
 
308
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
309
  msgstr "Full Name with flag (English, Russian, Italian, etc.)"
310
 
 
 
311
  msgid "Flags only"
312
  msgstr "Flags only"
313
 
 
 
314
  msgid ""
315
  "Choose the way language name and country flag are shown in the drop-down menu"
316
  msgstr ""
317
  "Choose the way language name and country flag are shown in the drop-down menu"
318
 
 
319
  msgid "select navigation menu"
320
  msgstr ""
321
 
 
 
 
322
  msgid "Language Selector Menu"
323
  msgstr "Language Selector Menu"
324
 
 
 
 
325
  msgid "Choose the navigation menu where the language selector will be shown"
326
  msgstr "Choose the navigation menu where the language selector will be shown"
327
 
 
328
  msgid "No menus have been created yet. Create some."
329
  msgstr "No menus have been created yet. Create some."
330
 
 
 
331
  msgid "\"All Pages\" menus Language selector"
332
  msgstr "\"All Pages\" menus Language selector"
333
 
 
 
334
  msgid ""
335
  "Adds language selector to the menus that automatically list all existing "
336
  "pages (using `wp_list_pages`)"
338
  "Adds language selector to the menus that automatically list all existing "
339
  "pages (using `wp_list_pages`)"
340
 
 
 
341
  msgid "Custom CSS"
342
  msgstr "Custom CSS"
343
 
 
344
  msgid ""
345
  "Here you can enter the CSS rules to adjust the language selector menu for "
346
  "your theme. Look at the examples in the `style-samples.css` file."
348
  "Here you can enter the CSS rules to adjust the language selector menu for "
349
  "your theme. Look at the examples in the `style-samples.css` file."
350
 
 
351
  msgid "Post types"
352
  msgstr "Post types"
353
 
 
354
  msgid "Uncheck to disable WPGlobus"
355
  msgstr "Uncheck to disable WPGlobus"
356
 
 
 
357
  msgid "Redirect"
358
  msgstr "Redirect"
359
 
 
 
360
  msgid "Choose the language automatically, based on:"
361
  msgstr "Choose the language automatically, based on:"
362
 
 
 
363
  msgid "Preferred language set in the browser"
364
  msgstr "Preferred language set in the browser"
365
 
 
 
366
  msgid ""
367
  "When a user comes to the site for the first time, try to find the best "
368
  "matching language version of the page."
370
  "When a user comes to the site for the first time, try to find the best "
371
  "matching language version of the page."
372
 
 
 
 
 
373
  msgid "Custom JS Code"
374
  msgstr "Custom JS Code"
375
 
 
 
376
  msgid "Title"
377
  msgstr "Title"
378
 
 
379
  msgid "(Paste your JS code here.)"
380
  msgstr "(Paste your JS code here.)"
381
 
 
382
  msgid ""
383
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
384
  "version 4.9 or later."
385
  msgstr ""
386
 
 
387
  msgid "With your version of WordPress, please use the"
388
  msgstr ""
389
 
 
390
  msgid "WPGlobus Settings page"
391
  msgstr ""
392
 
 
393
  msgid "Label"
394
  msgstr "Label"
395
 
 
396
  msgid "Description"
397
  msgstr "Description"
398
 
 
399
  msgid ""
400
  "Here you can specify which fields should be considered multilingual by "
401
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
403
  "Here you can specify which fields should be considered multilingual by "
404
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
405
 
 
 
406
  msgid "Thank you for installing WPGlobus!"
407
  msgstr "Thank you for installing WPGlobus!"
408
 
 
 
409
  msgid "Read About WPGlobus"
410
  msgstr "Read About WPGlobus"
411
 
 
412
  msgid ""
413
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
414
  msgstr ""
415
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
416
 
 
 
417
  msgid ""
418
  "Should you have any questions or comments, please do not hesitate to contact "
419
  "us."
421
  "Should you have any questions or comments, please do not hesitate to contact "
422
  "us."
423
 
 
 
424
  msgid "Sincerely Yours,"
425
  msgstr "Sincerely Yours,"
426
 
 
 
 
427
  msgid "The WPGlobus Team"
428
  msgstr "The WPGlobus Team"
429
 
430
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
431
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
432
  msgid ""
433
  "We would hate to see you go. If something goes wrong, do not uninstall "
434
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
436
  "We would hate to see you go. If something goes wrong, do not uninstall "
437
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
438
 
 
 
439
  msgid ""
440
  "Please note that if you deactivate WPGlobus, your site will show all the "
441
  "languages together, mixed up. You will need to remove all translations, "
447
 
448
  #. translators: %s: link to the Clean-up Tool
449
  #. translators: %s: link to the Clean-up Tool.
 
 
450
  msgid ""
451
  "If there are just a few places, you should edit them manually. To "
452
  "automatically remove all translations at once, you can use the %s. WARNING: "
460
 
461
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
462
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
463
  msgid "%1$sClean-up Tool%2$s"
464
  msgstr "%1$sClean-up Tool%2$s"
465
 
466
  #. translators: %s: name of current theme
 
467
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
468
  msgstr "Sorry, WPGlobus customizer doesn't support current theme %s."
469
 
470
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
471
  msgid "Please use %1$sWPGlobus options page%2$s instead."
472
  msgstr "Please use %1$sWPGlobus options page%2$s instead."
473
 
 
474
  msgid "Expand/Shrink"
475
  msgstr ""
476
 
 
 
477
  msgid "WPGlobus News"
478
  msgstr "WPGlobus News"
479
 
 
 
480
  msgid "Options updated"
481
  msgstr "Options updated"
482
 
 
483
  msgid "Please enter a language code!"
484
  msgstr "Please enter a language code!"
485
 
 
486
  msgid "Language code already exists!"
487
  msgstr "Language code already exists!"
488
 
 
489
  msgid "Please specify the language flag!"
490
  msgstr "Please specify the language flag!"
491
 
 
492
  msgid "Please enter the language name!"
493
  msgstr "Please enter the language name!"
494
 
 
495
  msgid "Please enter the language name in English!"
496
  msgstr "Please enter the language name in English!"
497
 
 
498
  msgid "Please enter the locale!"
499
  msgstr "Please enter the locale!"
500
 
 
501
  msgid "Add Language"
502
  msgstr "Add Language"
503
 
 
 
 
504
  msgid "Delete Language"
505
  msgstr "Delete Language"
506
 
 
507
  msgid "Edit Language"
508
  msgstr "Edit Language"
509
 
 
510
  msgid "Language Code"
511
  msgstr "Language Code"
512
 
 
513
  msgid ""
514
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
515
  msgstr ""
516
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
517
 
 
518
  msgid "Language flag"
519
  msgstr "Language flag"
520
 
 
521
  msgid "Name"
522
  msgstr "Name"
523
 
 
524
  msgid ""
525
  "The name of the language in its native alphabet. (Examples: English, Русский)"
526
  msgstr ""
527
  "The name of the language in its native alphabet. (Examples: English, Русский)"
528
 
 
529
  msgid "Name in English"
530
  msgstr "Name in English"
531
 
 
532
  msgid "The name of the language in English"
533
  msgstr "The name of the language in English"
534
 
 
 
535
  msgid "Locale"
536
  msgstr "Locale"
537
 
 
538
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
539
  msgstr "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
540
 
 
541
  msgid "Are you sure you want to delete?"
542
  msgstr "Are you sure you want to delete?"
543
 
 
544
  msgid "Save Changes"
545
  msgstr "Save Changes"
546
 
 
547
  msgid "Back to the WPGlobus Settings"
548
  msgstr "Back to the WPGlobus Settings"
549
 
 
550
  msgid "Current Version"
551
  msgstr "Current Version"
552
 
 
553
  msgid "Get it now!"
554
  msgstr "Get it now!"
555
 
 
556
  msgid "Premium add-on"
557
  msgstr "Premium add-on"
558
 
 
 
559
  msgid "Installed"
560
  msgstr "Installed"
561
 
562
  #. translators: placeholders are for the HTML tags.
 
563
  msgid ""
564
  "If you have already purchased a WPGlobus premium extension, please read "
565
  "%1$sthe installation instructions here%2$s"
566
  msgstr ""
567
 
 
 
568
  msgid "Help Desk"
569
  msgstr "Help Desk"
570
 
 
571
  msgid "Email not sent. Please fill in the entire form."
572
  msgstr ""
573
 
 
574
  msgid ""
575
  "Email not sent. Please verify that your name and email are entered correctly."
576
  msgstr ""
577
 
 
578
  msgid "Email sent."
579
  msgstr ""
580
 
 
581
  msgid "Thank you for using WPGlobus!"
582
  msgstr "Thank you for using WPGlobus!"
583
 
 
584
  msgid "Our Support Team is here to answer your questions or concerns."
585
  msgstr "Our Support Team is here to answer your questions or concerns."
586
 
 
587
  msgid "To help us serve you better:"
588
  msgstr "To help us serve you better:"
589
 
 
590
  msgid ""
591
  "Please check if the problem persists if you switch to a standard WordPress "
592
  "theme."
594
  "Please check if the problem persists if you switch to a standard WordPress "
595
  "theme."
596
 
 
597
  msgid ""
598
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
599
  msgstr ""
600
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
601
 
 
602
  msgid "Please fill in and submit the contact form:"
603
  msgstr ""
604
 
 
605
  msgid "Please make sure the email address is correct."
606
  msgstr ""
607
 
 
608
  msgid "Subject"
609
  msgstr ""
610
 
 
611
  msgid "Short description of the problem"
612
  msgstr ""
613
 
 
614
  msgid "Detailed description"
615
  msgstr ""
616
 
 
617
  msgid "Technical Information"
618
  msgstr "Technical Information"
619
 
 
620
  msgid "This information helps us to find the problem source"
621
  msgstr ""
622
 
 
623
  msgid ""
624
  "Alternatively, please email %s. Do not forget to copy and paste the "
625
  "technical information to your email message."
626
  msgstr ""
627
 
 
628
  msgid "WPGlobus Recommends:"
629
  msgstr "WPGlobus Recommends:"
630
 
 
 
631
  msgid "WPGlobus for WooCommerce"
632
  msgstr "WPGlobus for WooCommerce"
633
 
 
634
  msgid ""
635
  "Translate product titles and descriptions, product categories, tags and "
636
  "attributes."
638
  "Translate product titles and descriptions, product categories, tags and "
639
  "attributes."
640
 
 
641
  msgid "Get it now:"
642
  msgstr "Get it now:"
643
 
 
644
  msgid "WooCommerce Multi-Currency"
645
  msgstr ""
646
 
 
647
  msgid "Accept multiple currencies in your online store!"
648
  msgstr "Accept multiple currencies in your online store!"
649
 
 
 
650
  msgid "Check it out:"
651
  msgstr "Check it out:"
652
 
 
653
  msgid "To translate permalinks, please activate the module Slug."
654
  msgstr ""
655
 
 
656
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
657
  msgstr ""
658
 
 
 
659
  msgid "Save draft before using extra language."
660
  msgstr ""
661
 
 
662
  msgid "Builder"
663
  msgstr ""
664
 
 
665
  msgid "Сompatibility Settings"
666
  msgstr ""
667
 
668
  #. translators: ON/OFF status of WPGlobus on the edit pages.
669
  #. translators: ON/OFF status of WPGlobus on the edit pages.
 
 
670
  msgid "ON"
671
  msgstr ""
672
 
 
 
673
  msgid "Turn off"
674
  msgstr ""
675
 
 
 
676
  msgid "OFF"
677
  msgstr ""
678
 
 
 
679
  msgid "Turn on"
680
  msgstr ""
681
 
 
682
  msgid "Elementor"
683
  msgstr ""
684
 
 
685
  msgid "WPGlobus languages"
686
  msgstr ""
687
 
 
688
  msgid "current"
689
  msgstr ""
690
 
 
691
  msgid ""
692
  "WPGlobus provides multilingual support for Elementor only when the option "
693
  "%1$s%2$s%3$s is set to %4$s."
694
  msgstr ""
695
 
 
696
  msgid "Before switching the language, please save draft or publish."
697
  msgstr ""
698
 
699
  #. translators: Metabox title FOR language.
 
700
  msgctxt "filter__seo_meta_box_title"
701
  msgid "for"
702
  msgstr ""
703
 
 
704
  msgid "Page is being reloaded. Please wait..."
705
  msgstr ""
706
 
 
707
  msgid ""
708
  "Before switching the language, please save draft or publish, then reload "
709
  "page."
710
  msgstr ""
711
 
 
712
  msgid ""
713
  "WPGlobus provides multilingual support for Elementor only when the option "
714
  "`CSS Print Method` is set to `External File`."
715
  msgstr ""
716
 
 
717
  msgid "Open Elementor Settings page"
718
  msgstr ""
719
 
 
720
  msgid "WPGlobus widget"
721
  msgstr "WPGlobus widget"
722
 
 
723
  msgid "Add language switcher"
724
  msgstr "Add language switcher"
725
 
 
726
  msgid "Flags"
727
  msgstr "Flags"
728
 
 
729
  msgid "List"
730
  msgstr "List"
731
 
 
732
  msgid "List with flags"
733
  msgstr "List with flags"
734
 
 
735
  msgid "Select"
736
  msgstr "Select"
737
 
 
738
  msgid "Select with language code"
739
  msgstr "Select with language code"
740
 
 
741
  msgid "Dropdown"
742
  msgstr "Dropdown"
743
 
 
744
  msgid "Dropdown with flags"
745
  msgstr "Dropdown with flags"
746
 
 
747
  msgid "Selector type"
748
  msgstr "Selector type"
749
 
 
750
  msgid "You cannot disable the main language."
751
  msgstr "You cannot disable the main language."
752
 
 
753
  msgid "Need a multilingual slug?"
754
  msgstr "Need a multilingual slug?"
755
 
 
756
  msgid "*) Available after the menu is saved."
757
  msgstr "*) Available after the menu is saved."
758
 
 
759
  msgid "You must enable Pretty Permalinks to use WPGlobus."
760
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
761
 
 
762
  msgid ""
763
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
764
  "default option."
766
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
767
  "default option."
768
 
 
769
  msgid "Language Selector Menu Style"
770
  msgstr ""
771
 
 
 
 
772
  msgid "WPGlobus Plus"
773
  msgstr ""
774
 
 
775
  msgid "Drop-down languages menu or Flat (in one line)"
776
  msgstr ""
777
 
 
778
  msgid "Do not change"
779
  msgstr ""
780
 
 
781
  msgid "Drop-down (vertical)"
782
  msgstr ""
783
 
 
784
  msgid "Flat (horizontal)"
785
  msgstr ""
786
 
 
787
  msgid ""
788
  "If you see this message then your browser may not display the WPGlobus "
789
  "Settings panel properly. Please try another browser."
790
  msgstr ""
791
 
 
 
792
  msgid "Сompatibility"
793
  msgstr ""
794
 
795
  #. translators: placeholders for "strong" tags.
 
796
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
797
  msgstr ""
798
 
799
  #. translators: placeholders for "strong" tags.
 
800
  msgid ""
801
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
802
  "the language attributes: name, code, flag icon, etc."
803
  msgstr ""
804
 
 
805
  msgid "Important notes"
806
  msgstr ""
807
 
808
  #. translators: placeholders for "strong" tags.
 
809
  msgid "Version %1$s1.9.17%2$s "
810
  msgstr ""
811
 
812
  #. translators: placeholders for "strong" tags.
 
813
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
814
  msgstr ""
815
 
816
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
817
  msgid ""
818
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
819
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
820
  msgstr ""
821
 
822
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
823
  msgid ""
824
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
825
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
826
  msgstr ""
827
 
828
  #. translators: placeholders for "strong" tags.
 
829
  msgid "Version %1$s2.2.11%2$s "
830
  msgstr ""
831
 
 
832
  msgid "Starting from this version"
833
  msgstr ""
834
 
835
  #. translators: placeholders for "strong" tags.
 
836
  msgid ""
837
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
838
  "(CPT)."
839
  msgstr ""
840
 
841
  #. translators: placeholders for "strong" tags.
 
842
  msgid ""
843
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
844
  "the %1$s[%3$s]%2$s tab."
845
  msgstr ""
846
 
 
847
  msgid "Welcome!"
848
  msgstr "Welcome!"
849
 
 
850
  msgid "Deactivating / Uninstalling"
851
  msgstr "Deactivating / Uninstalling"
852
 
 
853
  msgid "Uninstall"
854
  msgstr ""
855
 
 
856
  msgid "All add-ons"
857
  msgstr ""
858
 
 
859
  msgid "Mobile Menu"
860
  msgstr ""
861
 
 
862
  msgid "Language Widgets"
863
  msgstr ""
864
 
 
865
  msgid "We Recommend..."
866
  msgstr ""
867
 
 
868
  msgid ""
869
  "Our premium add-on, WPGlobus Plus, will add several features to your "
870
  "website, such as:"
871
  msgstr ""
872
 
 
873
  msgid ""
874
  "- Ability to write a post in one language and immediately publish it, not "
875
  "waiting for the translation to other languages;"
876
  msgstr ""
877
 
 
878
  msgid "- Set different URLs for each translation;"
879
  msgstr ""
880
 
 
881
  msgid ""
882
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
883
  "for each translation;"
884
  msgstr ""
885
 
 
886
  msgid "- and more..."
887
  msgstr ""
888
 
 
 
 
889
  msgid "Click here to download"
890
  msgstr ""
891
 
 
892
  msgid ""
893
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
894
  "translate your blog posts and pages to many languages."
895
  msgstr ""
896
 
 
897
  msgid "The next step is to translate your WooCommerce-based store!"
898
  msgstr ""
899
 
 
900
  msgid ""
901
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
902
  "translate product titles and descriptions, categories, tags and attributes."
903
  msgstr ""
904
 
 
905
  msgid "Multi-currency"
906
  msgstr ""
907
 
 
908
  msgid ""
909
  "Your WooCommerce-powered store is set to show prices and accept payments in "
910
  "a single currency only."
911
  msgstr ""
912
 
 
913
  msgid ""
914
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
915
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
917
  "positioning for global growth!"
918
  msgstr ""
919
 
 
920
  msgid ""
921
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
922
  "re-calculating prices on-the-fly."
923
  msgstr ""
924
 
 
925
  msgid "WPGlobus Premium Add-ons"
926
  msgstr ""
927
 
 
928
  msgid ""
929
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
930
  "you will be able to:"
931
  msgstr ""
932
 
 
933
  msgid ""
934
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
935
  "моя-страница and so on);"
936
  msgstr ""
937
 
 
938
  msgid ""
939
  "Postpone translation to some languages and <strong>publish only the "
940
  "translated texts</strong>;"
941
  msgstr ""
942
 
 
943
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
944
  msgstr ""
945
 
 
946
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
947
  msgstr ""
948
 
 
949
  msgid ""
950
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
951
  "strong>;"
952
  msgstr ""
953
 
 
954
  msgid "...and more."
955
  msgstr ""
956
 
 
957
  msgid "Click here to visit the WPGlobus Store"
958
  msgstr ""
959
 
 
960
  msgid "Select a language"
961
  msgstr "Select a language"
962
 
963
  #. translators: %3$s placeholder for the icon (actual picture).
 
964
  msgid ""
965
  "Place the %1$smain language%2$s of your site at the top of the list by "
966
  "dragging the %3$s icons."
967
  msgstr ""
968
 
969
  #. translators: placeholders for the "strong" HTML tags.
 
970
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
971
  msgstr ""
972
 
973
  #. translators: placeholders for the "strong" HTML tags.
 
974
  msgid "%1$sAdd%2$s more languages using the section below."
975
  msgstr ""
976
 
 
977
  msgid "When done, click the [Save Changes] button."
978
  msgstr "When done, click the [Save Changes] button."
979
 
980
  #. translators: %s - placeholder for the "Save Changes" button text.
 
981
  msgid "Press the %s button to confirm."
982
  msgstr ""
983
 
984
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
 
985
  msgid "-- none --"
986
  msgstr ""
987
 
 
988
  msgid "All menus"
989
  msgstr ""
990
 
 
991
  msgid "Instructions:"
992
  msgstr "Instructions:"
993
 
 
994
  msgid "(Found in some themes)"
995
  msgstr "(Found in some themes)"
996
 
 
997
  msgid "Enable"
998
  msgstr "Enable"
999
 
 
1000
  msgid "Languages table"
1001
  msgstr "Languages table"
1002
 
 
1003
  msgid "Use this table to add, edit or delete languages."
1004
  msgstr "Use this table to add, edit or delete languages."
1005
 
 
1006
  msgid "NOTE: you cannot remove the main language."
1007
  msgstr "NOTE: you cannot remove the main language."
1008
 
 
1009
  msgid "WPGlobus is enabled on these Post Types"
1010
  msgstr ""
1011
 
 
1012
  msgid "Uncheck to disable"
1013
  msgstr ""
1014
 
 
1015
  msgid ""
1016
  "Please note that there are post types, which status is managed by other "
1017
  "plugins and cannot be changed here."
1018
  msgstr ""
1019
 
 
1020
  msgid "Post Types"
1021
  msgstr ""
1022
 
 
1023
  msgid ""
1024
  "You should put here only the code provided by WPGlobus Support. Do not write "
1025
  "anything else in the sections below as it might break the functionality of "
1026
  "your website!"
1027
  msgstr ""
1028
 
 
1029
  msgid "Custom Code"
1030
  msgstr ""
1031
 
 
 
 
1032
  msgid "Enabled"
1033
  msgstr ""
1034
 
 
1035
  msgid "Builders support"
1036
  msgstr ""
1037
 
 
1038
  msgid "Builder mode is enabled on these Post Types"
1039
  msgstr ""
1040
 
 
1041
  msgid "Old fashioned language switcher"
1042
  msgstr ""
1043
 
 
1044
  msgid "Block Editor"
1045
  msgstr ""
1046
 
 
1047
  msgid "Block Editor Options"
1048
  msgstr ""
1049
 
 
1050
  msgid ""
1051
  "With the current settings, you will see the following lines in the section "
1052
  "HEAD of your site pages"
1053
  msgstr ""
1054
 
 
1055
  msgid "(example for two languages)"
1056
  msgstr ""
1057
 
 
1058
  msgid ""
1059
  "Tell search engines about localized versions of your pages using the "
1060
  "hreflang tag"
1061
  msgstr ""
1062
 
 
1063
  msgid "Output the hreflang tag as"
1064
  msgstr ""
1065
 
 
1066
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1067
  msgstr ""
1068
 
 
1069
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1070
  msgstr ""
1071
 
 
1072
  msgid "Language code only (en, ru, etc.)"
1073
  msgstr ""
1074
 
 
1075
  msgid "Use the code `x-default` for the main language"
1076
  msgstr ""
1077
 
 
1078
  msgid "Multilingual SEO"
1079
  msgstr ""
1080
 
 
1081
  msgid "Multilingual SEO Options"
1082
  msgstr ""
1083
 
 
1084
  msgid ""
1085
  "With WPGlobus, you can get translations for posts and pages using REST API."
1086
  msgstr ""
1087
 
 
 
 
 
1088
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1089
  msgstr ""
1090
 
 
1091
  msgid ""
1092
  "For demonstration, you can try the first post that WordPress creates at the "
1093
  "initial installation."
1094
  msgstr ""
1095
 
 
1096
  msgid ""
1097
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1098
  "information."
1099
  msgstr ""
1100
 
 
1101
  msgid ""
1102
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1103
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1104
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1105
  msgstr ""
1106
 
 
1107
  msgid "Description:"
1108
  msgstr ""
1109
 
 
 
1110
  msgid "REST API"
1111
  msgstr ""
1112
 
 
1113
  msgid "Translate strings"
1114
  msgstr ""
1115
 
 
1116
  msgid "item"
1117
  msgstr "item"
1118
 
 
1119
  msgid "items"
1120
  msgstr "items"
1121
 
 
1122
  msgid "Code"
1123
  msgstr "Code"
1124
 
 
1125
  msgid "Edit"
1126
  msgstr "Edit"
1127
 
 
1128
  msgid "Delete"
1129
  msgstr "Delete"
1130
 
 
1131
  msgid "File"
1132
  msgstr "File"
1133
 
 
1134
  msgid "Flag"
1135
  msgstr "Flag"
1136
 
 
1137
  msgid "Language name"
1138
  msgstr "Language name"
1139
 
 
1140
  msgid "English language name"
1141
  msgstr "English language name"
1142
 
 
1143
  msgid "No items found"
1144
  msgstr "No items found"
1145
 
 
1146
  msgid "Add new Language"
1147
  msgstr "Add new Language"
1148
 
 
1149
  msgid "No items of this type were found."
1150
  msgstr ""
1151
 
 
1152
  msgid "Select an item"
1153
  msgstr ""
1154
 
 
1155
  msgid "Multilingual support of this add-on is currently in Beta stage."
1156
  msgstr ""
1157
 
 
1158
  msgid "We do not recommend using it on production sites."
1159
  msgstr ""
1160
 
 
1161
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1162
  msgstr ""
1163
 
 
1164
  msgid "WordPress version"
1165
  msgstr ""
1166
 
 
1167
  msgid "In the WordPress core"
1168
  msgstr ""
1169
 
 
1170
  msgid "Core"
1171
  msgstr ""
1172
 
 
 
1173
  msgid "Current version"
1174
  msgstr ""
1175
 
 
 
1176
  msgid "Stage"
1177
  msgstr ""
1178
 
 
 
1179
  msgid "Status"
1180
  msgstr ""
1181
 
 
1182
  msgid "Block editor"
1183
  msgstr ""
1184
 
 
1185
  msgid "production"
1186
  msgstr ""
1187
 
 
1188
  msgid "List of supported add-ons"
1189
  msgstr ""
1190
 
 
1191
  msgid "Add-on"
1192
  msgstr ""
1193
 
 
1194
  msgid "Supported minimum version"
1195
  msgstr ""
1196
 
 
1197
  msgid "Not installed"
1198
  msgstr ""
1199
 
 
1200
  msgid "Installed, inactive"
1201
  msgstr ""
1202
 
 
1203
  msgid "Active"
1204
  msgstr "Active"
1205
 
 
1206
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1207
  msgstr ""
1208
 
 
1209
  msgid "However, some themes do not follow all WordPress standards strictly."
1210
  msgstr ""
1211
 
 
1212
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1213
  msgstr ""
1214
 
 
1215
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1216
  msgstr ""
1217
 
 
1218
  msgid ""
1219
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1220
  "With those themes, WPGlobus Customizer is switched off by default"
1221
  msgstr ""
1222
 
 
1223
  msgid "The currently active theme is"
1224
  msgstr ""
1225
 
 
1226
  msgid "In the current version, WPGlobus Customizer does not support"
1227
  msgstr ""
1228
 
 
1229
  msgid "translation of the navigation menus"
1230
  msgstr ""
1231
 
 
1232
  msgid "to translate, please go to"
1233
  msgstr ""
1234
 
 
1235
  msgid "Go to Customizer"
1236
  msgstr ""
1237
 
 
1238
  msgid "is undefined"
1239
  msgstr ""
1240
 
 
1241
  msgid "is set to"
1242
  msgstr ""
1243
 
 
1244
  msgid "by adding to the file wp-config.php"
1245
  msgstr ""
1246
 
 
1247
  msgid "now"
1248
  msgstr ""
1249
 
 
1250
  msgid "We rely on your support!"
1251
  msgstr "We rely on your support!"
1252
 
 
1253
  msgid "Please consider a small donation to support the future development."
1254
  msgstr "Please consider a small donation to support the future development."
1255
 
 
1256
  msgid "Thank you!"
1257
  msgstr "Thank you!"
1258
 
 
1259
  msgid "WPGlobus Plus!"
1260
  msgstr "WPGlobus Plus!"
1261
 
 
1262
  msgid ""
1263
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1264
  "separate publishing and more! "
1266
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1267
  "separate publishing and more! "
1268
 
 
1269
  msgid "Get WPGlobus Plus now!"
1270
  msgstr "Get WPGlobus Plus now!"
1271
 
 
1272
  msgid ""
1273
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1274
  "the current version."
1275
  msgstr ""
1276
 
 
1277
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1278
  msgstr ""
1279
 
 
1280
  msgid "WPGlobus warning: "
1281
  msgstr ""
1282
 
 
1283
  msgid "https://github.com/WPGlobus/WPGlobus"
1284
  msgstr "https://github.com/WPGlobus/WPGlobus"
1285
 
 
1286
  msgid ""
1287
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1288
  "widgets and even custom fields - in multiple languages!"
1290
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1291
  "widgets and even custom fields - in multiple languages!"
1292
 
 
1293
  msgid "https://wpglobus.com/"
1294
  msgstr "https://wpglobus.com/"
1295
 
languages/wpglobus-en_US.po CHANGED
@@ -15,45 +15,26 @@ msgstr ""
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
 
18
- #: includes/admin/central/class-wpglobus-admin-central.php:122,
19
- #: includes/admin/class-wpglobus-about.php:42,
20
- #: includes/admin/class-wpglobus-about.php:117,
21
- #: includes/admin/class-wpglobus-clean.php:600,
22
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
23
  msgid "Guide"
24
  msgstr "Guide"
25
 
26
- #: includes/admin/central/class-wpglobus-admin-central.php:142,
27
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
28
  msgid "WPGlobus Help Desk"
29
  msgstr "WPGlobus Help Desk"
30
 
31
- #: includes/admin/central/class-wpglobus-admin-central.php:157,
32
- #: includes/admin/class-wpglobus-about.php:36,
33
- #: includes/admin/class-wpglobus-admin-menu.php:22,
34
- #: includes/admin/class-wpglobus-clean.php:606,
35
- #: includes/admin/class-wpglobus-customize-options.php:1293,
36
- #: includes/admin/class-wpglobus-customize-options.php:1261,
37
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
38
  msgid "Add-ons"
39
  msgstr "Add-ons"
40
 
41
- #: includes/admin/class-wpglobus-about.php:26
42
  msgid "Quick Start"
43
  msgstr "Quick Start"
44
 
45
- #: includes/admin/class-wpglobus-about.php:48,
46
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
47
  msgid "FAQ"
48
  msgstr "FAQ"
49
 
50
- #: includes/admin/class-wpglobus-about.php:59
51
  msgid ""
52
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
53
  msgstr ""
54
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
55
 
56
- #: includes/admin/class-wpglobus-about.php:60
57
  msgid ""
58
  "The mbstring extension is required for the full UTF-8 compatibility and "
59
  "better performance. Without it, some parts of WordPress and WPGlobus may "
@@ -65,19 +46,15 @@ msgstr ""
65
  "function incorrectly. Please contact your hosting company or systems "
66
  "administrator."
67
 
68
- #: includes/admin/class-wpglobus-about.php:87
69
  msgid "Go to WPGlobus Settings"
70
  msgstr "Go to WPGlobus Settings"
71
 
72
- #: includes/admin/class-wpglobus-about.php:98
73
  msgid "Easy as 1-2-3:"
74
  msgstr "Easy as 1-2-3:"
75
 
76
- #: includes/admin/class-wpglobus-about.php:101
77
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
78
  msgstr "Go to WPGlobus admin menu and choose the countries / languages;"
79
 
80
- #: includes/admin/class-wpglobus-about.php:102
81
  msgid ""
82
  "Enter the translations to the posts, pages, categories, tags and menus using "
83
  "a clean and simple interface."
@@ -85,7 +62,6 @@ msgstr ""
85
  "Enter the translations to the posts, pages, categories, tags and menus using "
86
  "a clean and simple interface."
87
 
88
- #: includes/admin/class-wpglobus-about.php:103
89
  msgid ""
90
  "Switch languages at the front-end using a drop-down menu with language names "
91
  "and country flags."
@@ -93,27 +69,21 @@ msgstr ""
93
  "Switch languages at the front-end using a drop-down menu with language names "
94
  "and country flags."
95
 
96
- #: includes/admin/class-wpglobus-about.php:111
97
  msgid "Links:"
98
  msgstr "Links:"
99
 
100
- #: includes/admin/class-wpglobus-about.php:119
101
  msgid "FAQs"
102
  msgstr "FAQs"
103
 
104
- #: includes/admin/class-wpglobus-about.php:121
105
  msgid "Contact Us"
106
  msgstr "Contact Us"
107
 
108
- #: includes/admin/class-wpglobus-about.php:123
109
  msgid "Please give us 5 stars!"
110
  msgstr "Please give us 5 stars!"
111
 
112
- #: includes/admin/class-wpglobus-about.php:133
113
  msgid "WPGlobus does not translate texts automatically!"
114
  msgstr "WPGlobus does not translate texts automatically!"
115
 
116
- #: includes/admin/class-wpglobus-about.php:136
117
  msgid ""
118
  "There are many translation companies and individual translators who can help "
119
  "you write and proofread the texts."
@@ -121,7 +91,6 @@ msgstr ""
121
  "There are many translation companies and individual translators who can help "
122
  "you write and proofread the texts."
123
 
124
- #: includes/admin/class-wpglobus-about.php:137
125
  msgid ""
126
  "When you choose a translator, please look at their native language, country "
127
  "of residence, specialization and knowledge of WordPress."
@@ -130,7 +99,6 @@ msgstr ""
130
  "of residence, specialization and knowledge of WordPress."
131
 
132
  #. translators: %s are used to insert HTML link. Keep them in place.
133
- #: includes/admin/class-wpglobus-about.php:143
134
  msgid ""
135
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
136
  "website. This is not an endorsement, just a courtesy. Please contact them "
@@ -140,11 +108,9 @@ msgstr ""
140
  "website. This is not an endorsement, just a courtesy. Please contact them "
141
  "directly and let us know how did it work for you!"
142
 
143
- #: includes/admin/class-wpglobus-about.php:154
144
  msgid "Important notes:"
145
  msgstr "Important notes:"
146
 
147
- #: includes/admin/class-wpglobus-about.php:159
148
  msgid ""
149
  "WPGlobus only supports the localization URLs in the form of <code>example."
150
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
@@ -154,11 +120,9 @@ msgstr ""
154
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
155
  "com</code> and language queries <code>example.com?lang=xx</code>."
156
 
157
- #: includes/admin/class-wpglobus-about.php:162
158
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
159
  msgstr "Some themes and plugins are <strong>not multilingual-ready</strong>."
160
 
161
- #: includes/admin/class-wpglobus-about.php:163
162
  msgid ""
163
  "They might display some texts with no translation, or with all languages "
164
  "mixed together."
@@ -167,7 +131,6 @@ msgstr ""
167
  "mixed together."
168
 
169
  #. translators: %s are used to insert HTML link. Keep them in place.
170
- #: includes/admin/class-wpglobus-about.php:167
171
  msgid ""
172
  "Please contact the theme / plugin author. If they are unable to assist, "
173
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
@@ -175,21 +138,15 @@ msgstr ""
175
  "Please contact the theme / plugin author. If they are unable to assist, "
176
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
177
 
178
- #: includes/admin/class-wpglobus-admin-bar-menu.php:124
179
  msgid "Language was set on your profile page"
180
  msgstr "Language was set on your profile page"
181
 
182
- #: includes/admin/class-wpglobus-admin-bar-menu.php:194
183
  msgid "Add"
184
  msgstr "Add"
185
 
186
- #: includes/admin/class-wpglobus-admin-page.php:32,
187
- #: includes/admin/class-wpglobus-clean.php:585
188
  msgid "Multilingual Everything!"
189
  msgstr "Multilingual Everything!"
190
 
191
- #: includes/admin/class-wpglobus-admin-page.php:34,
192
- #: includes/admin/class-wpglobus-clean.php:588
193
  msgid ""
194
  "WPGlobus is a family of WordPress plugins assisting you in making "
195
  "multilingual WordPress blogs and sites."
@@ -197,19 +154,15 @@ msgstr ""
197
  "WPGlobus is a family of WordPress plugins assisting you in making "
198
  "multilingual WordPress blogs and sites."
199
 
200
- #: includes/admin/class-wpglobus-clean.php:232
201
  msgid "Remove the WPGlobus settings (not recommended)"
202
  msgstr "Remove the WPGlobus settings (not recommended)"
203
 
204
- #: includes/admin/class-wpglobus-clean.php:595
205
  msgid "Clean-up Tool"
206
  msgstr "Clean-up Tool"
207
 
208
- #: includes/admin/class-wpglobus-clean.php:609
209
  msgid "Support"
210
  msgstr "Support"
211
 
212
- #: includes/admin/class-wpglobus-clean.php:614
213
  msgid ""
214
  "WARNING: this operation is non-reversible. It is strongly recommended that "
215
  "you backup your database before proceeding."
@@ -217,7 +170,6 @@ msgstr ""
217
  "WARNING: this operation is non-reversible. It is strongly recommended that "
218
  "you backup your database before proceeding."
219
 
220
- #: includes/admin/class-wpglobus-clean.php:619
221
  msgid ""
222
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
223
  "By running it, you will remove ALL translations you have entered to your "
@@ -233,7 +185,6 @@ msgstr ""
233
  "might end up with empty titles, no content, no excerpts, blank comments and "
234
  "so on."
235
 
236
- #: includes/admin/class-wpglobus-clean.php:622
237
  msgid ""
238
  "Make sure that your active theme does not have any code related to WPGlobus. "
239
  "Such code could be added by you or by a 3rd party developer. If that code "
@@ -242,21 +193,17 @@ msgid ""
242
  msgstr ""
243
 
244
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
245
- #: includes/admin/class-wpglobus-clean.php:630
246
  msgid ""
247
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
248
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
249
  msgstr ""
250
 
251
- #: includes/admin/class-wpglobus-clean.php:641
252
  msgid "You are about to clean the content of the following database tables:"
253
  msgstr "You are about to clean the content of the following database tables:"
254
 
255
- #: includes/admin/class-wpglobus-clean.php:649
256
  msgid "The operations log"
257
  msgstr "The operations log"
258
 
259
- #: includes/admin/class-wpglobus-clean.php:652
260
  msgid ""
261
  "We are going to write a detailed log of all the database changes performed. "
262
  "It should help in the case you need to restore something important. The log "
@@ -266,7 +213,6 @@ msgstr ""
266
  "It should help in the case you need to restore something important. The log "
267
  "will be written to the file:"
268
 
269
- #: includes/admin/class-wpglobus-clean.php:662
270
  msgid ""
271
  "Uncheck if you do not want to write the operations log (we recommend to keep "
272
  "it checked)"
@@ -274,15 +220,12 @@ msgstr ""
274
  "Uncheck if you do not want to write the operations log (we recommend to keep "
275
  "it checked)"
276
 
277
- #: includes/admin/class-wpglobus-clean.php:667
278
  msgid "You have been warned..."
279
  msgstr "You have been warned..."
280
 
281
- #: includes/admin/class-wpglobus-clean.php:669
282
  msgid "Please confirm by checking the box below:"
283
  msgstr "Please confirm by checking the box below:"
284
 
285
- #: includes/admin/class-wpglobus-clean.php:671
286
  msgid ""
287
  "I have read and understood everything written on this page. I am aware that "
288
  "by using this tool I may loose some content of my website. I have made a "
@@ -294,152 +237,99 @@ msgstr ""
294
  "database backup and know how to restore it if necessary. I am fully "
295
  "responsible for the results."
296
 
297
- #: includes/admin/class-wpglobus-clean.php:674
298
  msgid "YES, I CONFIRM"
299
  msgstr "YES, I CONFIRM"
300
 
301
- #: includes/admin/class-wpglobus-clean.php:678
302
  msgid "Process with the Clean-up"
303
  msgstr "Process with the Clean-up"
304
 
305
- #: includes/admin/class-wpglobus-customize-options.php:73,
306
- #: includes/admin/class-wpglobus-customize-options.php:100,
307
- #: includes/admin/class-wpglobus-customize-options.php:145,
308
- #: includes/admin/class-wpglobus-customize-options.php:183
309
  msgid "Default"
310
  msgstr "Default"
311
 
312
- #: includes/admin/class-wpglobus-customize-options.php:264
313
  msgid "Section"
314
  msgstr "Section"
315
 
316
- #: includes/admin/class-wpglobus-customize-options.php:277
317
  msgid "Show all sections"
318
  msgstr "Show all sections"
319
 
320
- #: includes/admin/class-wpglobus-customize-options.php:279
321
  msgid "Save &amp; Reload"
322
  msgstr "Save &amp; Reload"
323
 
324
- #: includes/admin/class-wpglobus-customize-options.php:553,
325
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:585,
326
- #: includes/class-wpglobus.php:1284, wpglobus.php:12, wpglobus.php:18
327
  msgid "WPGlobus"
328
  msgstr "WPGlobus"
329
 
330
- #: includes/admin/class-wpglobus-customize-options.php:604
331
  msgid ""
332
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
333
  msgstr ""
334
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
335
 
336
- #: includes/admin/class-wpglobus-customize-options.php:610
337
  msgid "Fields Settings"
338
  msgstr "Fields Settings"
339
 
340
- #: includes/admin/class-wpglobus-customize-options.php:655
341
  msgid "WPGlobus Settings"
342
  msgstr "WPGlobus Settings"
343
 
344
- #: includes/admin/class-wpglobus-customize-options.php:723
345
  msgid "Help"
346
  msgstr "Help"
347
 
348
- #: includes/admin/class-wpglobus-customize-options.php:745,
349
- #: includes/options/class-wpglobus-options.php:1176
350
  msgid "Languages"
351
  msgstr "Languages"
352
 
353
- #: includes/admin/class-wpglobus-customize-options.php:765,
354
- #: includes/options/class-wpglobus-options.php:1189
355
  msgid "Enabled Languages"
356
  msgstr "Enabled Languages"
357
 
358
- #: includes/admin/class-wpglobus-customize-options.php:767,
359
- #: includes/options/class-wpglobus-options.php:1190
360
  msgid "These languages are currently enabled on your site."
361
  msgstr "These languages are currently enabled on your site."
362
 
363
- #: includes/admin/class-wpglobus-customize-options.php:795,
364
- #: includes/options/class-wpglobus-options.php:1148
365
  msgid "Choose a language you would like to enable."
366
  msgstr "Choose a language you would like to enable."
367
 
368
- #: includes/admin/class-wpglobus-customize-options.php:797
369
  msgid "Press the [Save & Publish] button to confirm."
370
  msgstr "Press the [Save & Publish] button to confirm."
371
 
372
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
373
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
374
- #: includes/admin/class-wpglobus-customize-options.php:801,
375
- #: includes/options/class-wpglobus-options.php:1154
376
  msgid "or Add new Language %1$s here %2$s"
377
  msgstr "or Add new Language %1$s here %2$s"
378
 
379
- #: includes/admin/class-wpglobus-customize-options.php:813,
380
- #: includes/options/class-wpglobus-options.php:1203
381
  msgid "Add Languages"
382
  msgstr "Add Languages"
383
 
384
- #: includes/admin/class-wpglobus-customize-options.php:833,
385
- #: includes/options/class-wpglobus-options.php:1211
386
  msgid "Language Selector Mode"
387
  msgstr "Language Selector Mode"
388
 
389
- #: includes/admin/class-wpglobus-customize-options.php:838,
390
- #: includes/options/class-wpglobus-options.php:1214
391
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
392
  msgstr "Two-letter Code with flag (en, ru, it, etc.)"
393
 
394
- #: includes/admin/class-wpglobus-customize-options.php:839,
395
- #: includes/options/class-wpglobus-options.php:1215
396
  msgid "Full Name (English, Russian, Italian, etc.)"
397
  msgstr "Full Name (English, Russian, Italian, etc.)"
398
 
399
- #: includes/admin/class-wpglobus-customize-options.php:841,
400
- #: includes/options/class-wpglobus-options.php:1216
401
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
402
  msgstr "Full Name with flag (English, Russian, Italian, etc.)"
403
 
404
- #: includes/admin/class-wpglobus-customize-options.php:842,
405
- #: includes/options/class-wpglobus-options.php:1217
406
  msgid "Flags only"
407
  msgstr "Flags only"
408
 
409
- #: includes/admin/class-wpglobus-customize-options.php:844,
410
- #: includes/options/class-wpglobus-options.php:1212
411
  msgid ""
412
  "Choose the way language name and country flag are shown in the drop-down menu"
413
  msgstr ""
414
  "Choose the way language name and country flag are shown in the drop-down menu"
415
 
416
- #: includes/admin/class-wpglobus-customize-options.php:879
417
  msgid "select navigation menu"
418
  msgstr "select navigation menu"
419
 
420
- #: includes/admin/class-wpglobus-customize-options.php:915,
421
- #: includes/admin/class-wpglobus-customize-options.php:888,
422
- #: includes/options/class-wpglobus-options.php:1230
423
  msgid "Language Selector Menu"
424
  msgstr "Language Selector Menu"
425
 
426
- #: includes/admin/class-wpglobus-customize-options.php:920,
427
- #: includes/admin/class-wpglobus-customize-options.php:899,
428
- #: includes/options/class-wpglobus-options.php:1231
429
  msgid "Choose the navigation menu where the language selector will be shown"
430
  msgstr "Choose the navigation menu where the language selector will be shown"
431
 
432
- #: includes/admin/class-wpglobus-customize-options.php:898
433
  msgid "No menus have been created yet. Create some."
434
  msgstr "No menus have been created yet. Create some."
435
 
436
- #: includes/admin/class-wpglobus-customize-options.php:940,
437
- #: includes/options/class-wpglobus-options.php:1241
438
  msgid "\"All Pages\" menus Language selector"
439
  msgstr "\"All Pages\" menus Language selector"
440
 
441
- #: includes/admin/class-wpglobus-customize-options.php:943,
442
- #: includes/options/class-wpglobus-options.php:1243
443
  msgid ""
444
  "Adds language selector to the menus that automatically list all existing "
445
  "pages (using `wp_list_pages`)"
@@ -447,12 +337,9 @@ msgstr ""
447
  "Adds language selector to the menus that automatically list all existing "
448
  "pages (using `wp_list_pages`)"
449
 
450
- #: includes/admin/class-wpglobus-customize-options.php:960,
451
- #: includes/options/class-wpglobus-options.php:1356
452
  msgid "Custom CSS"
453
  msgstr "Custom CSS"
454
 
455
- #: includes/admin/class-wpglobus-customize-options.php:964
456
  msgid ""
457
  "Here you can enter the CSS rules to adjust the language selector menu for "
458
  "your theme. Look at the examples in the `style-samples.css` file."
@@ -460,31 +347,21 @@ msgstr ""
460
  "Here you can enter the CSS rules to adjust the language selector menu for "
461
  "your theme. Look at the examples in the `style-samples.css` file."
462
 
463
- #: includes/admin/class-wpglobus-customize-options.php:983
464
  msgid "Post types"
465
  msgstr "Post types"
466
 
467
- #: includes/admin/class-wpglobus-customize-options.php:1091
468
  msgid "Uncheck to disable WPGlobus"
469
  msgstr "Uncheck to disable WPGlobus"
470
 
471
- #: includes/admin/class-wpglobus-customize-options.php:1125,
472
- #: includes/options/class-wpglobus-options.php:1424
473
  msgid "Redirect"
474
  msgstr "Redirect"
475
 
476
- #: includes/admin/class-wpglobus-customize-options.php:1150,
477
- #: includes/options/class-wpglobus-options.php:1419
478
  msgid "Choose the language automatically, based on:"
479
  msgstr "Choose the language automatically, based on:"
480
 
481
- #: includes/admin/class-wpglobus-customize-options.php:1152,
482
- #: includes/options/class-wpglobus-options.php:1409
483
  msgid "Preferred language set in the browser"
484
  msgstr "Preferred language set in the browser"
485
 
486
- #: includes/admin/class-wpglobus-customize-options.php:1153,
487
- #: includes/options/class-wpglobus-options.php:1396
488
  msgid ""
489
  "When a user comes to the site for the first time, try to find the best "
490
  "matching language version of the page."
@@ -492,23 +369,15 @@ msgstr ""
492
  "When a user comes to the site for the first time, try to find the best "
493
  "matching language version of the page."
494
 
495
- #: includes/admin/class-wpglobus-customize-options.php:1214,
496
- #: includes/admin/class-wpglobus-customize-options.php:1234,
497
- #: includes/admin/class-wpglobus-customize-options.php:1192,
498
- #: includes/options/class-wpglobus-options.php:1368
499
  msgid "Custom JS Code"
500
  msgstr "Custom JS Code"
501
 
502
- #: includes/admin/class-wpglobus-customize-options.php:1232,
503
- #: includes/admin/class-wpglobus-customize-options.php:1276
504
  msgid "Title"
505
  msgstr "Title"
506
 
507
- #: includes/admin/class-wpglobus-customize-options.php:1235
508
  msgid "(Paste your JS code here.)"
509
  msgstr "(Paste your JS code here.)"
510
 
511
- #: includes/admin/class-wpglobus-customize-options.php:1184
512
  msgid ""
513
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
514
  "version 4.9 or later."
@@ -516,23 +385,18 @@ msgstr ""
516
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
517
  "version 4.9 or later."
518
 
519
- #: includes/admin/class-wpglobus-customize-options.php:1186
520
  msgid "With your version of WordPress, please use the"
521
  msgstr "With your version of WordPress, please use the"
522
 
523
- #: includes/admin/class-wpglobus-customize-options.php:1188
524
  msgid "WPGlobus Settings page"
525
  msgstr "WPGlobus Settings page"
526
 
527
- #: includes/admin/class-wpglobus-customize-options.php:1277
528
  msgid "Label"
529
  msgstr "Label"
530
 
531
- #: includes/admin/class-wpglobus-customize-options.php:1281
532
  msgid "Description"
533
  msgstr "Description"
534
 
535
- #: includes/admin/class-wpglobus-customize-options.php:1345
536
  msgid ""
537
  "Here you can specify which fields should be considered multilingual by "
538
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
@@ -540,24 +404,17 @@ msgstr ""
540
  "Here you can specify which fields should be considered multilingual by "
541
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
542
 
543
- #: includes/admin/class-wpglobus-customize-options.php:1351,
544
- #: includes/options/class-wpglobus-options.php:608
545
  msgid "Thank you for installing WPGlobus!"
546
  msgstr "Thank you for installing WPGlobus!"
547
 
548
- #: includes/admin/class-wpglobus-customize-options.php:1355,
549
- #: includes/options/class-wpglobus-options.php:612
550
  msgid "Read About WPGlobus"
551
  msgstr "Read About WPGlobus"
552
 
553
- #: includes/admin/class-wpglobus-customize-options.php:1358
554
  msgid ""
555
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
556
  msgstr ""
557
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
558
 
559
- #: includes/admin/class-wpglobus-customize-options.php:1363,
560
- #: includes/options/class-wpglobus-options.php:648
561
  msgid ""
562
  "Should you have any questions or comments, please do not hesitate to contact "
563
  "us."
@@ -565,21 +422,14 @@ msgstr ""
565
  "Should you have any questions or comments, please do not hesitate to contact "
566
  "us."
567
 
568
- #: includes/admin/class-wpglobus-customize-options.php:1367,
569
- #: includes/options/class-wpglobus-options.php:652
570
  msgid "Sincerely Yours,"
571
  msgstr "Sincerely Yours,"
572
 
573
- #: includes/admin/class-wpglobus-customize-options.php:1369,
574
- #: includes/options/class-wpglobus-options.php:654,
575
- #: includes/options/wpglobus-options-header.php:34
576
  msgid "The WPGlobus Team"
577
  msgstr "The WPGlobus Team"
578
 
579
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
580
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
581
- #: includes/admin/class-wpglobus-customize-options.php:1388,
582
- #: includes/options/class-wpglobus-options.php:689
583
  msgid ""
584
  "We would hate to see you go. If something goes wrong, do not uninstall "
585
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
@@ -587,8 +437,6 @@ msgstr ""
587
  "We would hate to see you go. If something goes wrong, do not uninstall "
588
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
589
 
590
- #: includes/admin/class-wpglobus-customize-options.php:1395,
591
- #: includes/options/class-wpglobus-options.php:696
592
  msgid ""
593
  "Please note that if you deactivate WPGlobus, your site will show all the "
594
  "languages together, mixed up. You will need to remove all translations, "
@@ -600,8 +448,6 @@ msgstr ""
600
 
601
  #. translators: %s: link to the Clean-up Tool
602
  #. translators: %s: link to the Clean-up Tool.
603
- #: includes/admin/class-wpglobus-customize-options.php:1400,
604
- #: includes/options/class-wpglobus-options.php:700
605
  msgid ""
606
  "If there are just a few places, you should edit them manually. To "
607
  "automatically remove all translations at once, you can use the %s. WARNING: "
@@ -615,182 +461,134 @@ msgstr ""
615
 
616
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
617
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
618
- #: includes/admin/class-wpglobus-customize-options.php:1403,
619
- #: includes/options/class-wpglobus-options.php:677
620
  msgid "%1$sClean-up Tool%2$s"
621
  msgstr "%1$sClean-up Tool%2$s"
622
 
623
  #. translators: %s: name of current theme
624
- #: includes/admin/class-wpglobus-customize-options.php:1415
625
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
626
  msgstr "Sorry, WPGlobus customizer doesn't support current theme %s."
627
 
628
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
629
- #: includes/admin/class-wpglobus-customize-options.php:1421
630
  msgid "Please use %1$sWPGlobus options page%2$s instead."
631
  msgstr "Please use %1$sWPGlobus options page%2$s instead."
632
 
633
- #: includes/admin/class-wpglobus-customize-options.php:1485
634
  msgid "Expand/Shrink"
635
  msgstr "Expand/Shrink"
636
 
637
- #: includes/admin/class-wpglobus-dashboard-news.php:43,
638
- #: includes/admin/class-wpglobus-dashboard-news.php:59
639
  msgid "WPGlobus News"
640
  msgstr "WPGlobus News"
641
 
642
- #: includes/admin/class-wpglobus-language-edit.php:197,
643
- #: includes/admin/class-wpglobus-language-edit.php:192
644
  msgid "Options updated"
645
  msgstr "Options updated"
646
 
647
- #: includes/admin/class-wpglobus-language-edit.php:272
648
  msgid "Please enter a language code!"
649
  msgstr "Please enter a language code!"
650
 
651
- #: includes/admin/class-wpglobus-language-edit.php:276
652
  msgid "Language code already exists!"
653
  msgstr "Language code already exists!"
654
 
655
- #: includes/admin/class-wpglobus-language-edit.php:280
656
  msgid "Please specify the language flag!"
657
  msgstr "Please specify the language flag!"
658
 
659
- #: includes/admin/class-wpglobus-language-edit.php:284
660
  msgid "Please enter the language name!"
661
  msgstr "Please enter the language name!"
662
 
663
- #: includes/admin/class-wpglobus-language-edit.php:288
664
  msgid "Please enter the language name in English!"
665
  msgstr "Please enter the language name in English!"
666
 
667
- #: includes/admin/class-wpglobus-language-edit.php:292
668
  msgid "Please enter the locale!"
669
  msgstr "Please enter the locale!"
670
 
671
- #: includes/admin/class-wpglobus-language-edit.php:354
672
  msgid "Add Language"
673
  msgstr "Add Language"
674
 
675
- #: includes/admin/class-wpglobus-language-edit.php:351,
676
- #: includes/admin/class-wpglobus-language-edit.php:462,
677
- #: includes/admin/class-wpglobus-language-edit.php:455
678
  msgid "Delete Language"
679
  msgstr "Delete Language"
680
 
681
- #: includes/admin/class-wpglobus-language-edit.php:349
682
  msgid "Edit Language"
683
  msgstr "Edit Language"
684
 
685
- #: includes/admin/class-wpglobus-language-edit.php:384
686
  msgid "Language Code"
687
  msgstr "Language Code"
688
 
689
- #: includes/admin/class-wpglobus-language-edit.php:391
690
  msgid ""
691
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
692
  msgstr ""
693
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
694
 
695
- #: includes/admin/class-wpglobus-language-edit.php:396
696
  msgid "Language flag"
697
  msgstr "Language flag"
698
 
699
- #: includes/admin/class-wpglobus-language-edit.php:412
700
  msgid "Name"
701
  msgstr "Name"
702
 
703
- #: includes/admin/class-wpglobus-language-edit.php:417
704
  msgid ""
705
  "The name of the language in its native alphabet. (Examples: English, Русский)"
706
  msgstr ""
707
  "The name of the language in its native alphabet. (Examples: English, Русский)"
708
 
709
- #: includes/admin/class-wpglobus-language-edit.php:422
710
  msgid "Name in English"
711
  msgstr "Name in English"
712
 
713
- #: includes/admin/class-wpglobus-language-edit.php:427
714
  msgid "The name of the language in English"
715
  msgstr "The name of the language in English"
716
 
717
- #: includes/admin/class-wpglobus-language-edit.php:432,
718
- #: includes/options/fields/table/class-wpglobus-languages-table.php:115
719
  msgid "Locale"
720
  msgstr "Locale"
721
 
722
- #: includes/admin/class-wpglobus-language-edit.php:437
723
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
724
  msgstr "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
725
 
726
- #: includes/admin/class-wpglobus-language-edit.php:460
727
  msgid "Are you sure you want to delete?"
728
  msgstr "Are you sure you want to delete?"
729
 
730
- #: includes/admin/class-wpglobus-language-edit.php:447
731
  msgid "Save Changes"
732
  msgstr "Save Changes"
733
 
734
- #: includes/admin/class-wpglobus-language-edit.php:470
735
  msgid "Back to the WPGlobus Settings"
736
  msgstr "Back to the WPGlobus Settings"
737
 
738
- #: includes/admin/class-wpglobus-plugin-install.php:308
739
  msgid "Current Version"
740
  msgstr "Current Version"
741
 
742
- #: includes/admin/class-wpglobus-plugin-install.php:309
743
  msgid "Get it now!"
744
  msgstr "Get it now!"
745
 
746
- #: includes/admin/class-wpglobus-plugin-install.php:310
747
  msgid "Premium add-on"
748
  msgstr "Premium add-on"
749
 
750
- #: includes/admin/class-wpglobus-plugin-install.php:311,
751
- #: includes/options/fields/table/class-wpglobus-languages-table.php:472
752
  msgid "Installed"
753
  msgstr "Installed"
754
 
755
  #. translators: placeholders are for the HTML tags.
756
- #: includes/admin/class-wpglobus-plugin-install.php:319
757
  msgid ""
758
  "If you have already purchased a WPGlobus premium extension, please read "
759
  "%1$sthe installation instructions here%2$s"
760
  msgstr ""
761
 
762
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
763
- #: includes/options/class-wpglobus-options.php:726
764
  msgid "Help Desk"
765
  msgstr "Help Desk"
766
 
767
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:185
768
  msgid "Email not sent. Please fill in the entire form."
769
  msgstr "Email not sent. Please fill in the entire form."
770
 
771
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:195
772
  msgid ""
773
  "Email not sent. Please verify that your name and email are entered correctly."
774
  msgstr ""
775
  "Email not sent. Please verify that your name and email are entered correctly."
776
 
777
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:216
778
  msgid "Email sent."
779
  msgstr "Email sent."
780
 
781
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
782
  msgid "Thank you for using WPGlobus!"
783
  msgstr "Thank you for using WPGlobus!"
784
 
785
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
786
  msgid "Our Support Team is here to answer your questions or concerns."
787
  msgstr "Our Support Team is here to answer your questions or concerns."
788
 
789
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
790
  msgid "To help us serve you better:"
791
  msgstr "To help us serve you better:"
792
 
793
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
794
  msgid ""
795
  "Please check if the problem persists if you switch to a standard WordPress "
796
  "theme."
@@ -798,41 +596,32 @@ msgstr ""
798
  "Please check if the problem persists if you switch to a standard WordPress "
799
  "theme."
800
 
801
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
802
  msgid ""
803
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
804
  msgstr ""
805
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
806
 
807
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
808
  msgid "Please fill in and submit the contact form:"
809
  msgstr "Please fill in and submit the contact form:"
810
 
811
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
812
  msgid "Please make sure the email address is correct."
813
  msgstr "Please make sure the email address is correct."
814
 
815
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
816
  msgid "Subject"
817
  msgstr "Subject"
818
 
819
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
820
  msgid "Short description of the problem"
821
  msgstr "Short description of the problem"
822
 
823
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
824
  msgid "Detailed description"
825
  msgstr "Detailed description"
826
 
827
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
828
  msgid "Technical Information"
829
  msgstr "Technical Information"
830
 
831
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
832
  msgid "This information helps us to find the problem source"
833
  msgstr "This information helps us to find the problem source"
834
 
835
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:161
836
  msgid ""
837
  "Alternatively, please email %s. Do not forget to copy and paste the "
838
  "technical information to your email message."
@@ -840,16 +629,12 @@ msgstr ""
840
  "Alternatively, please email %s. Do not forget to copy and paste the "
841
  "technical information to your email message."
842
 
843
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:89
844
  msgid "WPGlobus Recommends:"
845
  msgstr "WPGlobus Recommends:"
846
 
847
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:98,
848
- #: includes/options/class-wpglobus-options.php:933
849
  msgid "WPGlobus for WooCommerce"
850
  msgstr "WPGlobus for WooCommerce"
851
 
852
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:102
853
  msgid ""
854
  "Translate product titles and descriptions, product categories, tags and "
855
  "attributes."
@@ -857,79 +642,56 @@ msgstr ""
857
  "Translate product titles and descriptions, product categories, tags and "
858
  "attributes."
859
 
860
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:107
861
  msgid "Get it now:"
862
  msgstr "Get it now:"
863
 
864
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:117
865
  msgid "WooCommerce Multi-Currency"
866
  msgstr "WooCommerce Multi-Currency"
867
 
868
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:121
869
  msgid "Accept multiple currencies in your online store!"
870
  msgstr "Accept multiple currencies in your online store!"
871
 
872
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:126,
873
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:185
874
  msgid "Check it out:"
875
  msgstr "Check it out:"
876
 
877
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:195
878
  msgid "To translate permalinks, please activate the module Slug."
879
  msgstr "To translate permalinks, please activate the module Slug."
880
 
881
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:183
882
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
883
  msgstr "Translate permalinks with our premium add-on, WPGlobus Plus!"
884
 
885
- #: includes/builders/class-wpglobus-builder.php:278,
886
- #: includes/class-wpglobus.php:3577
887
  msgid "Save draft before using extra language."
888
  msgstr "Save draft before using extra language."
889
 
890
- #: includes/builders/class-wpglobus-builder.php:371
891
  msgid "Builder"
892
  msgstr "Builder"
893
 
894
- #: includes/builders/class-wpglobus-builder.php:395
895
  msgid "Сompatibility Settings"
896
  msgstr "Сompatibility Settings"
897
 
898
  #. translators: ON/OFF status of WPGlobus on the edit pages.
899
  #. translators: ON/OFF status of WPGlobus on the edit pages.
900
- #: includes/builders/elementor/class-wpglobus-elementor.php:255,
901
- #: includes/class-wpglobus.php:1263
902
  msgid "ON"
903
  msgstr "ON"
904
 
905
- #: includes/builders/elementor/class-wpglobus-elementor.php:256,
906
- #: includes/class-wpglobus.php:1264
907
  msgid "Turn off"
908
  msgstr "Turn off"
909
 
910
- #: includes/builders/elementor/class-wpglobus-elementor.php:250,
911
- #: includes/class-wpglobus.php:1258
912
  msgid "OFF"
913
  msgstr "OFF"
914
 
915
- #: includes/builders/elementor/class-wpglobus-elementor.php:251,
916
- #: includes/class-wpglobus.php:1259
917
  msgid "Turn on"
918
  msgstr "Turn on"
919
 
920
- #: includes/builders/elementor/class-wpglobus-elementor.php:281
921
  msgid "Elementor"
922
  msgstr ""
923
 
924
- #: includes/builders/elementor/class-wpglobus-elementor.php:508
925
  msgid "WPGlobus languages"
926
  msgstr "WPGlobus languages"
927
 
928
- #: includes/builders/elementor/class-wpglobus-elementor.php:514
929
  msgid "current"
930
  msgstr "current"
931
 
932
- #: includes/builders/elementor/class-wpglobus-elementor.php:675
933
  msgid ""
934
  "WPGlobus provides multilingual support for Elementor only when the option "
935
  "%1$s%2$s%3$s is set to %4$s."
@@ -937,21 +699,17 @@ msgstr ""
937
  "WPGlobus provides multilingual support for Elementor only when the option "
938
  "%1$s%2$s%3$s is set to %4$s."
939
 
940
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:228
941
  msgid "Before switching the language, please save draft or publish."
942
  msgstr "Before switching the language, please save draft or publish."
943
 
944
  #. translators: Metabox title FOR language.
945
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:318
946
  msgctxt "filter__seo_meta_box_title"
947
  msgid "for"
948
  msgstr "for"
949
 
950
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:392
951
  msgid "Page is being reloaded. Please wait..."
952
  msgstr "Page is being reloaded. Please wait..."
953
 
954
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:393
955
  msgid ""
956
  "Before switching the language, please save draft or publish, then reload "
957
  "page."
@@ -959,73 +717,56 @@ msgstr ""
959
  "Before switching the language, please save draft or publish, then reload "
960
  "page."
961
 
962
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
963
  msgid ""
964
  "WPGlobus provides multilingual support for Elementor only when the option "
965
  "`CSS Print Method` is set to `External File`."
966
  msgstr ""
967
 
968
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
969
  msgid "Open Elementor Settings page"
970
  msgstr ""
971
 
972
- #: includes/class-wpglobus-widget.php:27
973
  msgid "WPGlobus widget"
974
  msgstr "WPGlobus widget"
975
 
976
- #: includes/class-wpglobus-widget.php:29
977
  msgid "Add language switcher"
978
  msgstr "Add language switcher"
979
 
980
- #: includes/class-wpglobus-widget.php:32
981
  msgid "Flags"
982
  msgstr "Flags"
983
 
984
- #: includes/class-wpglobus-widget.php:33
985
  msgid "List"
986
  msgstr "List"
987
 
988
- #: includes/class-wpglobus-widget.php:34
989
  msgid "List with flags"
990
  msgstr "List with flags"
991
 
992
- #: includes/class-wpglobus-widget.php:35
993
  msgid "Select"
994
  msgstr "Select"
995
 
996
- #: includes/class-wpglobus-widget.php:36
997
  msgid "Select with language code"
998
  msgstr "Select with language code"
999
 
1000
- #: includes/class-wpglobus-widget.php:37
1001
  msgid "Dropdown"
1002
  msgstr "Dropdown"
1003
 
1004
- #: includes/class-wpglobus-widget.php:38
1005
  msgid "Dropdown with flags"
1006
  msgstr "Dropdown with flags"
1007
 
1008
- #: includes/class-wpglobus-widget.php:264
1009
  msgid "Selector type"
1010
  msgstr "Selector type"
1011
 
1012
- #: includes/class-wpglobus.php:1447
1013
  msgid "You cannot disable the main language."
1014
  msgstr "You cannot disable the main language."
1015
 
1016
- #: includes/class-wpglobus.php:1672
1017
  msgid "Need a multilingual slug?"
1018
  msgstr "Need a multilingual slug?"
1019
 
1020
- #: includes/class-wpglobus.php:1655
1021
  msgid "*) Available after the menu is saved."
1022
  msgstr "*) Available after the menu is saved."
1023
 
1024
- #: includes/class-wpglobus.php:4025
1025
  msgid "You must enable Pretty Permalinks to use WPGlobus."
1026
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
1027
 
1028
- #: includes/class-wpglobus.php:4027
1029
  msgid ""
1030
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1031
  "default option."
@@ -1033,33 +774,24 @@ msgstr ""
1033
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1034
  "default option."
1035
 
1036
- #: includes/options/class-wpglobus-options.php:281
1037
  msgid "Language Selector Menu Style"
1038
  msgstr "Language Selector Menu Style"
1039
 
1040
- #: includes/options/class-wpglobus-options.php:282,
1041
- #: includes/options/class-wpglobus-options.php:802,
1042
- #: includes/options/class-wpglobus-options.php:871
1043
  msgid "WPGlobus Plus"
1044
  msgstr "WPGlobus Plus"
1045
 
1046
- #: includes/options/class-wpglobus-options.php:283
1047
  msgid "Drop-down languages menu or Flat (in one line)"
1048
  msgstr "Drop-down languages menu or Flat (in one line)"
1049
 
1050
- #: includes/options/class-wpglobus-options.php:286
1051
  msgid "Do not change"
1052
  msgstr "Do not change"
1053
 
1054
- #: includes/options/class-wpglobus-options.php:287
1055
  msgid "Drop-down (vertical)"
1056
  msgstr "Drop-down (vertical)"
1057
 
1058
- #: includes/options/class-wpglobus-options.php:288
1059
  msgid "Flat (horizontal)"
1060
  msgstr "Flat (horizontal)"
1061
 
1062
- #: includes/options/class-wpglobus-options.php:343
1063
  msgid ""
1064
  "If you see this message then your browser may not display the WPGlobus "
1065
  "Settings panel properly. Please try another browser."
@@ -1067,18 +799,14 @@ msgstr ""
1067
  "If you see this message then your browser may not display the WPGlobus "
1068
  "Settings panel properly. Please try another browser."
1069
 
1070
- #: includes/options/class-wpglobus-options.php:599,
1071
- #: includes/options/class-wpglobus-options.php:1577
1072
  msgid "Сompatibility"
1073
  msgstr "Сompatibility"
1074
 
1075
  #. translators: placeholders for "strong" tags.
1076
- #: includes/options/class-wpglobus-options.php:616
1077
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
1078
  msgstr "Click the %1$s[Languages]%2$s tab at the left to setup the options."
1079
 
1080
  #. translators: placeholders for "strong" tags.
1081
- #: includes/options/class-wpglobus-options.php:619
1082
  msgid ""
1083
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
1084
  "the language attributes: name, code, flag icon, etc."
@@ -1086,22 +814,18 @@ msgstr ""
1086
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
1087
  "the language attributes: name, code, flag icon, etc."
1088
 
1089
- #: includes/options/class-wpglobus-options.php:622
1090
  msgid "Important notes"
1091
  msgstr "Important notes"
1092
 
1093
  #. translators: placeholders for "strong" tags.
1094
- #: includes/options/class-wpglobus-options.php:624
1095
  msgid "Version %1$s1.9.17%2$s "
1096
  msgstr "Version %1$s1.9.17%2$s "
1097
 
1098
  #. translators: placeholders for "strong" tags.
1099
- #: includes/options/class-wpglobus-options.php:627
1100
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
1101
  msgstr "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
1102
 
1103
  #. translators: placeholders for "strong" tags; compatibility tab link.
1104
- #: includes/options/class-wpglobus-options.php:630
1105
  msgid ""
1106
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
1107
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
@@ -1110,7 +834,6 @@ msgstr ""
1110
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
1111
 
1112
  #. translators: placeholders for "strong" tags; compatibility tab link.
1113
- #: includes/options/class-wpglobus-options.php:633
1114
  msgid ""
1115
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
1116
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
@@ -1119,16 +842,13 @@ msgstr ""
1119
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
1120
 
1121
  #. translators: placeholders for "strong" tags.
1122
- #: includes/options/class-wpglobus-options.php:637
1123
  msgid "Version %1$s2.2.11%2$s "
1124
  msgstr "Version %1$s2.2.11%2$s "
1125
 
1126
- #: includes/options/class-wpglobus-options.php:639
1127
  msgid "Starting from this version"
1128
  msgstr "Starting from this version"
1129
 
1130
  #. translators: placeholders for "strong" tags.
1131
- #: includes/options/class-wpglobus-options.php:642
1132
  msgid ""
1133
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
1134
  "(CPT)."
@@ -1137,7 +857,6 @@ msgstr ""
1137
  "(CPT)."
1138
 
1139
  #. translators: placeholders for "strong" tags.
1140
- #: includes/options/class-wpglobus-options.php:645
1141
  msgid ""
1142
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
1143
  "the %1$s[%3$s]%2$s tab."
@@ -1145,35 +864,27 @@ msgstr ""
1145
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
1146
  "the %1$s[%3$s]%2$s tab."
1147
 
1148
- #: includes/options/class-wpglobus-options.php:662
1149
  msgid "Welcome!"
1150
  msgstr "Welcome!"
1151
 
1152
- #: includes/options/class-wpglobus-options.php:685
1153
  msgid "Deactivating / Uninstalling"
1154
  msgstr "Deactivating / Uninstalling"
1155
 
1156
- #: includes/options/class-wpglobus-options.php:711
1157
  msgid "Uninstall"
1158
  msgstr "Uninstall"
1159
 
1160
- #: includes/options/class-wpglobus-options.php:741
1161
  msgid "All add-ons"
1162
  msgstr "All add-ons"
1163
 
1164
- #: includes/options/class-wpglobus-options.php:756
1165
  msgid "Mobile Menu"
1166
  msgstr "Mobile Menu"
1167
 
1168
- #: includes/options/class-wpglobus-options.php:771
1169
  msgid "Language Widgets"
1170
  msgstr "Language Widgets"
1171
 
1172
- #: includes/options/class-wpglobus-options.php:841
1173
  msgid "We Recommend..."
1174
  msgstr "We Recommend..."
1175
 
1176
- #: includes/options/class-wpglobus-options.php:873
1177
  msgid ""
1178
  "Our premium add-on, WPGlobus Plus, will add several features to your "
1179
  "website, such as:"
@@ -1181,7 +892,6 @@ msgstr ""
1181
  "Our premium add-on, WPGlobus Plus, will add several features to your "
1182
  "website, such as:"
1183
 
1184
- #: includes/options/class-wpglobus-options.php:876
1185
  msgid ""
1186
  "- Ability to write a post in one language and immediately publish it, not "
1187
  "waiting for the translation to other languages;"
@@ -1189,11 +899,9 @@ msgstr ""
1189
  "- Ability to write a post in one language and immediately publish it, not "
1190
  "waiting for the translation to other languages;"
1191
 
1192
- #: includes/options/class-wpglobus-options.php:879
1193
  msgid "- Set different URLs for each translation;"
1194
  msgstr "- Set different URLs for each translation;"
1195
 
1196
- #: includes/options/class-wpglobus-options.php:882
1197
  msgid ""
1198
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
1199
  "for each translation;"
@@ -1201,17 +909,12 @@ msgstr ""
1201
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
1202
  "for each translation;"
1203
 
1204
- #: includes/options/class-wpglobus-options.php:885
1205
  msgid "- and more..."
1206
  msgstr "- and more..."
1207
 
1208
- #: includes/options/class-wpglobus-options.php:888,
1209
- #: includes/options/class-wpglobus-options.php:945,
1210
- #: includes/options/class-wpglobus-options.php:1003
1211
  msgid "Click here to download"
1212
  msgstr "Click here to download"
1213
 
1214
- #: includes/options/class-wpglobus-options.php:936
1215
  msgid ""
1216
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
1217
  "translate your blog posts and pages to many languages."
@@ -1219,11 +922,9 @@ msgstr ""
1219
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
1220
  "translate your blog posts and pages to many languages."
1221
 
1222
- #: includes/options/class-wpglobus-options.php:939
1223
  msgid "The next step is to translate your WooCommerce-based store!"
1224
  msgstr "The next step is to translate your WooCommerce-based store!"
1225
 
1226
- #: includes/options/class-wpglobus-options.php:942
1227
  msgid ""
1228
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
1229
  "translate product titles and descriptions, categories, tags and attributes."
@@ -1231,11 +932,9 @@ msgstr ""
1231
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
1232
  "translate product titles and descriptions, categories, tags and attributes."
1233
 
1234
- #: includes/options/class-wpglobus-options.php:989
1235
  msgid "Multi-currency"
1236
  msgstr "Multi-currency"
1237
 
1238
- #: includes/options/class-wpglobus-options.php:992
1239
  msgid ""
1240
  "Your WooCommerce-powered store is set to show prices and accept payments in "
1241
  "a single currency only."
@@ -1243,7 +942,6 @@ msgstr ""
1243
  "Your WooCommerce-powered store is set to show prices and accept payments in "
1244
  "a single currency only."
1245
 
1246
- #: includes/options/class-wpglobus-options.php:996
1247
  msgid ""
1248
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
1249
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
@@ -1255,7 +953,6 @@ msgstr ""
1255
  "Accepting multiple currencies will strengthen your competitive edge and "
1256
  "positioning for global growth!"
1257
 
1258
- #: includes/options/class-wpglobus-options.php:1000
1259
  msgid ""
1260
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
1261
  "re-calculating prices on-the-fly."
@@ -1263,11 +960,9 @@ msgstr ""
1263
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
1264
  "re-calculating prices on-the-fly."
1265
 
1266
- #: includes/options/class-wpglobus-options.php:1037
1267
  msgid "WPGlobus Premium Add-ons"
1268
  msgstr "WPGlobus Premium Add-ons"
1269
 
1270
- #: includes/options/class-wpglobus-options.php:1039
1271
  msgid ""
1272
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
1273
  "you will be able to:"
@@ -1275,7 +970,6 @@ msgstr ""
1275
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
1276
  "you will be able to:"
1277
 
1278
- #: includes/options/class-wpglobus-options.php:1044
1279
  msgid ""
1280
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
1281
  "моя-страница and so on);"
@@ -1283,7 +977,6 @@ msgstr ""
1283
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
1284
  "моя-страница and so on);"
1285
 
1286
- #: includes/options/class-wpglobus-options.php:1047
1287
  msgid ""
1288
  "Postpone translation to some languages and <strong>publish only the "
1289
  "translated texts</strong>;"
@@ -1291,16 +984,13 @@ msgstr ""
1291
  "Postpone translation to some languages and <strong>publish only the "
1292
  "translated texts</strong>;"
1293
 
1294
- #: includes/options/class-wpglobus-options.php:1050
1295
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
1296
  msgstr ""
1297
  "Maintain <strong>separate menus and widgets for each language</strong>;"
1298
 
1299
- #: includes/options/class-wpglobus-options.php:1053
1300
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
1301
  msgstr "<strong>Translate WooCommerce</strong> products and taxonomies;"
1302
 
1303
- #: includes/options/class-wpglobus-options.php:1056
1304
  msgid ""
1305
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
1306
  "strong>;"
@@ -1308,20 +998,16 @@ msgstr ""
1308
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
1309
  "strong>;"
1310
 
1311
- #: includes/options/class-wpglobus-options.php:1060
1312
  msgid "...and more."
1313
  msgstr "...and more."
1314
 
1315
- #: includes/options/class-wpglobus-options.php:1063
1316
  msgid "Click here to visit the WPGlobus Store"
1317
  msgstr "Click here to visit the WPGlobus Store"
1318
 
1319
- #: includes/options/class-wpglobus-options.php:1104
1320
  msgid "Select a language"
1321
  msgstr "Select a language"
1322
 
1323
  #. translators: %3$s placeholder for the icon (actual picture).
1324
- #: includes/options/class-wpglobus-options.php:1133
1325
  msgid ""
1326
  "Place the %1$smain language%2$s of your site at the top of the list by "
1327
  "dragging the %3$s icons."
@@ -1330,66 +1016,51 @@ msgstr ""
1330
  "dragging the %3$s icons."
1331
 
1332
  #. translators: placeholders for the "strong" HTML tags.
1333
- #: includes/options/class-wpglobus-options.php:1136
1334
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
1335
  msgstr "%1$sUncheck%2$s the languages you do not plan to use."
1336
 
1337
  #. translators: placeholders for the "strong" HTML tags.
1338
- #: includes/options/class-wpglobus-options.php:1139
1339
  msgid "%1$sAdd%2$s more languages using the section below."
1340
  msgstr "%1$sAdd%2$s more languages using the section below."
1341
 
1342
- #: includes/options/class-wpglobus-options.php:1140
1343
  msgid "When done, click the [Save Changes] button."
1344
  msgstr "When done, click the [Save Changes] button."
1345
 
1346
  #. translators: %s - placeholder for the "Save Changes" button text.
1347
- #: includes/options/class-wpglobus-options.php:1151
1348
  msgid "Press the %s button to confirm."
1349
  msgstr "Press the %s button to confirm."
1350
 
1351
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
1352
- #: includes/options/class-wpglobus-options.php:1168
1353
  msgid "-- none --"
1354
  msgstr "-- none --"
1355
 
1356
- #: includes/options/class-wpglobus-options.php:1169
1357
  msgid "All menus"
1358
  msgstr "All menus"
1359
 
1360
- #: includes/options/class-wpglobus-options.php:1182
1361
  msgid "Instructions:"
1362
  msgstr "Instructions:"
1363
 
1364
- #: includes/options/class-wpglobus-options.php:1242
1365
  msgid "(Found in some themes)"
1366
  msgstr "(Found in some themes)"
1367
 
1368
- #: includes/options/class-wpglobus-options.php:1244
1369
  msgid "Enable"
1370
  msgstr "Enable"
1371
 
1372
- #: includes/options/class-wpglobus-options.php:1259
1373
  msgid "Languages table"
1374
  msgstr "Languages table"
1375
 
1376
- #: includes/options/class-wpglobus-options.php:1265
1377
  msgid "Use this table to add, edit or delete languages."
1378
  msgstr "Use this table to add, edit or delete languages."
1379
 
1380
- #: includes/options/class-wpglobus-options.php:1266
1381
  msgid "NOTE: you cannot remove the main language."
1382
  msgstr "NOTE: you cannot remove the main language."
1383
 
1384
- #: includes/options/class-wpglobus-options.php:1314
1385
  msgid "WPGlobus is enabled on these Post Types"
1386
  msgstr "WPGlobus is enabled on these Post Types"
1387
 
1388
- #: includes/options/class-wpglobus-options.php:1315
1389
  msgid "Uncheck to disable"
1390
  msgstr "Uncheck to disable"
1391
 
1392
- #: includes/options/class-wpglobus-options.php:1316
1393
  msgid ""
1394
  "Please note that there are post types, which status is managed by other "
1395
  "plugins and cannot be changed here."
@@ -1397,11 +1068,9 @@ msgstr ""
1397
  "Please note that there are post types, which status is managed by other "
1398
  "plugins and cannot be changed here."
1399
 
1400
- #: includes/options/class-wpglobus-options.php:1321
1401
  msgid "Post Types"
1402
  msgstr "Post Types"
1403
 
1404
- #: includes/options/class-wpglobus-options.php:1337
1405
  msgid ""
1406
  "You should put here only the code provided by WPGlobus Support. Do not write "
1407
  "anything else in the sections below as it might break the functionality of "
@@ -1411,37 +1080,27 @@ msgstr ""
1411
  "anything else in the sections below as it might break the functionality of "
1412
  "your website!"
1413
 
1414
- #: includes/options/class-wpglobus-options.php:1378
1415
  msgid "Custom Code"
1416
  msgstr "Custom Code"
1417
 
1418
- #: includes/options/class-wpglobus-options.php:1486,
1419
- #: includes/options/class-wpglobus-options.php:1618,
1420
- #: includes/options/class-wpglobus-options.php:1729
1421
  msgid "Enabled"
1422
  msgstr "Enabled"
1423
 
1424
- #: includes/options/class-wpglobus-options.php:1499
1425
  msgid "Builders support"
1426
  msgstr "Builders support"
1427
 
1428
- #: includes/options/class-wpglobus-options.php:1551
1429
  msgid "Builder mode is enabled on these Post Types"
1430
  msgstr "Builder mode is enabled on these Post Types"
1431
 
1432
- #: includes/options/class-wpglobus-options.php:1617
1433
  msgid "Old fashioned language switcher"
1434
  msgstr "Old fashioned language switcher"
1435
 
1436
- #: includes/options/class-wpglobus-options.php:1623
1437
  msgid "Block Editor"
1438
  msgstr "Block Editor"
1439
 
1440
- #: includes/options/class-wpglobus-options.php:1624
1441
  msgid "Block Editor Options"
1442
  msgstr "Block Editor Options"
1443
 
1444
- #: includes/options/class-wpglobus-options.php:1653
1445
  msgid ""
1446
  "With the current settings, you will see the following lines in the section "
1447
  "HEAD of your site pages"
@@ -1449,11 +1108,9 @@ msgstr ""
1449
  "With the current settings, you will see the following lines in the section "
1450
  "HEAD of your site pages"
1451
 
1452
- #: includes/options/class-wpglobus-options.php:1655
1453
  msgid "(example for two languages)"
1454
  msgstr "(example for two languages)"
1455
 
1456
- #: includes/options/class-wpglobus-options.php:1702
1457
  msgid ""
1458
  "Tell search engines about localized versions of your pages using the "
1459
  "hreflang tag"
@@ -1461,218 +1118,161 @@ msgstr ""
1461
  "Tell search engines about localized versions of your pages using the "
1462
  "hreflang tag"
1463
 
1464
- #: includes/options/class-wpglobus-options.php:1711
1465
  msgid "Output the hreflang tag as"
1466
  msgstr "Output the hreflang tag as"
1467
 
1468
- #: includes/options/class-wpglobus-options.php:1714
1469
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1470
  msgstr "Language- and region-specific (en-US, ru-RU, etc.)"
1471
 
1472
- #: includes/options/class-wpglobus-options.php:1715
1473
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1474
  msgstr "Language- and region-specific (en-us, ru-ru, etc.)"
1475
 
1476
- #: includes/options/class-wpglobus-options.php:1716
1477
  msgid "Language code only (en, ru, etc.)"
1478
  msgstr "Language code only (en, ru, etc.)"
1479
 
1480
- #: includes/options/class-wpglobus-options.php:1728
1481
  msgid "Use the code `x-default` for the main language"
1482
  msgstr "Use the code `x-default` for the main language"
1483
 
1484
- #: includes/options/class-wpglobus-options.php:1734
1485
  msgid "Multilingual SEO"
1486
  msgstr "Multilingual SEO"
1487
 
1488
- #: includes/options/class-wpglobus-options.php:1735
1489
  msgid "Multilingual SEO Options"
1490
  msgstr "Multilingual SEO Options"
1491
 
1492
- #: includes/options/class-wpglobus-options.php:1772
1493
  msgid ""
1494
  "With WPGlobus, you can get translations for posts and pages using REST API."
1495
  msgstr ""
1496
 
1497
- #: includes/options/class-wpglobus-options.php:1800,
1498
- #: includes/options/class-wpglobus-options.php:1808,
1499
- #: includes/options/class-wpglobus-options.php:1780,
1500
- #: includes/options/class-wpglobus-options.php:1789
1501
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1502
  msgstr ""
1503
 
1504
- #: includes/options/class-wpglobus-options.php:1777
1505
  msgid ""
1506
  "For demonstration, you can try the first post that WordPress creates at the "
1507
  "initial installation."
1508
  msgstr ""
1509
 
1510
- #: includes/options/class-wpglobus-options.php:1819
1511
  msgid ""
1512
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1513
  "information."
1514
  msgstr ""
1515
 
1516
- #: includes/options/class-wpglobus-options.php:1826
1517
  msgid ""
1518
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1519
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1520
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1521
  msgstr ""
1522
 
1523
- #: includes/options/class-wpglobus-options.php:1839
1524
  msgid "Description:"
1525
  msgstr ""
1526
 
1527
- #: includes/options/class-wpglobus-options.php:1846,
1528
- #: includes/options/class-wpglobus-options.php:1847
1529
  msgid "REST API"
1530
  msgstr ""
1531
 
1532
- #: includes/options/class-wpglobus-options.php:2180
1533
  msgid "Translate strings"
1534
  msgstr "Translate strings"
1535
 
1536
- #: includes/options/fields/table/class-wpglobus-languages-table.php:66
1537
  msgid "item"
1538
  msgstr "item"
1539
 
1540
- #: includes/options/fields/table/class-wpglobus-languages-table.php:68
1541
  msgid "items"
1542
  msgstr "items"
1543
 
1544
- #: includes/options/fields/table/class-wpglobus-languages-table.php:88
1545
  msgid "Code"
1546
  msgstr "Code"
1547
 
1548
- #: includes/options/fields/table/class-wpglobus-languages-table.php:94
1549
  msgid "Edit"
1550
  msgstr "Edit"
1551
 
1552
- #: includes/options/fields/table/class-wpglobus-languages-table.php:99
1553
  msgid "Delete"
1554
  msgstr "Delete"
1555
 
1556
- #: includes/options/fields/table/class-wpglobus-languages-table.php:105
1557
  msgid "File"
1558
  msgstr "File"
1559
 
1560
- #: includes/options/fields/table/class-wpglobus-languages-table.php:110
1561
  msgid "Flag"
1562
  msgstr "Flag"
1563
 
1564
- #: includes/options/fields/table/class-wpglobus-languages-table.php:120
1565
  msgid "Language name"
1566
  msgstr "Language name"
1567
 
1568
- #: includes/options/fields/table/class-wpglobus-languages-table.php:125
1569
  msgid "English language name"
1570
  msgstr "English language name"
1571
 
1572
- #: includes/options/fields/table/class-wpglobus-languages-table.php:151
1573
  msgid "No items found"
1574
  msgstr "No items found"
1575
 
1576
- #: includes/options/fields/table/class-wpglobus-languages-table.php:164
1577
  msgid "Add new Language"
1578
  msgstr "Add new Language"
1579
 
1580
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:164
1581
  msgid "No items of this type were found."
1582
  msgstr "No items of this type were found."
1583
 
1584
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:107
1585
  msgid "Select an item"
1586
  msgstr "Select an item"
1587
 
1588
- #: includes/options/templates/compatibility-beta.php:15
1589
  msgid "Multilingual support of this add-on is currently in Beta stage."
1590
  msgstr "Multilingual support of this add-on is currently in Beta stage."
1591
 
1592
- #: includes/options/templates/compatibility-beta.php:17
1593
  msgid "We do not recommend using it on production sites."
1594
  msgstr "We do not recommend using it on production sites."
1595
 
1596
- #: includes/options/templates/compatibility-beta.php:23
1597
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1598
  msgstr "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1599
 
1600
- #: includes/options/templates/compatibility.php:69
1601
  msgid "WordPress version"
1602
  msgstr "WordPress version"
1603
 
1604
- #: includes/options/templates/compatibility.php:44
1605
  msgid "In the WordPress core"
1606
  msgstr "In the WordPress core"
1607
 
1608
- #: includes/options/templates/compatibility.php:46
1609
  msgid "Core"
1610
  msgstr "Core"
1611
 
1612
- #: includes/options/templates/compatibility.php:52,
1613
- #: includes/options/templates/compatibility.php:79
1614
  msgid "Current version"
1615
  msgstr "Current version"
1616
 
1617
- #: includes/options/templates/compatibility.php:53,
1618
- #: includes/options/templates/compatibility.php:81
1619
  msgid "Stage"
1620
  msgstr "Stage"
1621
 
1622
- #: includes/options/templates/compatibility.php:54,
1623
- #: includes/options/templates/compatibility.php:82
1624
  msgid "Status"
1625
  msgstr "Status"
1626
 
1627
- #: includes/options/templates/compatibility.php:60
1628
  msgid "Block editor"
1629
  msgstr "Block editor"
1630
 
1631
- #: includes/options/templates/compatibility.php:62
1632
  msgid "production"
1633
  msgstr "production"
1634
 
1635
- #: includes/options/templates/compatibility.php:73
1636
  msgid "List of supported add-ons"
1637
  msgstr "List of supported add-ons"
1638
 
1639
- #: includes/options/templates/compatibility.php:78
1640
  msgid "Add-on"
1641
  msgstr "Add-on"
1642
 
1643
- #: includes/options/templates/compatibility.php:80
1644
  msgid "Supported minimum version"
1645
  msgstr "Supported minimum version"
1646
 
1647
- #: includes/options/templates/compatibility.php:105
1648
  msgid "Not installed"
1649
  msgstr "Not installed"
1650
 
1651
- #: includes/options/templates/compatibility.php:102
1652
  msgid "Installed, inactive"
1653
  msgstr "Installed, inactive"
1654
 
1655
- #: includes/options/templates/compatibility.php:100
1656
  msgid "Active"
1657
  msgstr "Active"
1658
 
1659
- #: includes/options/templates/customize-intro.php:35
1660
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1661
  msgstr "WPGlobus Customizer is integrated into the Customize Theme panel"
1662
 
1663
- #: includes/options/templates/customize-intro.php:39
1664
  msgid "However, some themes do not follow all WordPress standards strictly."
1665
  msgstr "However, some themes do not follow all WordPress standards strictly."
1666
 
1667
- #: includes/options/templates/customize-intro.php:41
1668
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1669
  msgstr "WPGlobus Customizer may behave incorrectly with those themes."
1670
 
1671
- #: includes/options/templates/customize-intro.php:45
1672
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1673
  msgstr "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1674
 
1675
- #: includes/options/templates/customize-intro.php:53
1676
  msgid ""
1677
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1678
  "With those themes, WPGlobus Customizer is switched off by default"
@@ -1680,59 +1280,45 @@ msgstr ""
1680
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1681
  "With those themes, WPGlobus Customizer is switched off by default"
1682
 
1683
- #: includes/options/templates/customize-intro.php:60
1684
  msgid "The currently active theme is"
1685
  msgstr "The currently active theme is"
1686
 
1687
- #: includes/options/templates/customize-intro.php:66
1688
  msgid "In the current version, WPGlobus Customizer does not support"
1689
  msgstr "In the current version, WPGlobus Customizer does not support"
1690
 
1691
- #: includes/options/templates/customize-intro.php:70
1692
  msgid "translation of the navigation menus"
1693
  msgstr "translation of the navigation menus"
1694
 
1695
- #: includes/options/templates/customize-intro.php:72
1696
  msgid "to translate, please go to"
1697
  msgstr "to translate, please go to"
1698
 
1699
- #: includes/options/templates/customize-intro.php:81
1700
  msgid "Go to Customizer"
1701
  msgstr "Go to Customizer"
1702
 
1703
- #: includes/options/templates/customize-intro.php:88
1704
  msgid "is undefined"
1705
  msgstr "is undefined"
1706
 
1707
- #: includes/options/templates/customize-intro.php:85
1708
  msgid "is set to"
1709
  msgstr "is set to"
1710
 
1711
- #: includes/options/templates/customize-intro.php:94
1712
  msgid "by adding to the file wp-config.php"
1713
  msgstr "by adding to the file wp-config.php"
1714
 
1715
- #: includes/options/templates/customize-intro.php:96
1716
  msgid "now"
1717
  msgstr "now"
1718
 
1719
- #: includes/options/wpglobus-options-header.php:25
1720
  msgid "We rely on your support!"
1721
  msgstr "We rely on your support!"
1722
 
1723
- #: includes/options/wpglobus-options-header.php:28
1724
  msgid "Please consider a small donation to support the future development."
1725
  msgstr "Please consider a small donation to support the future development."
1726
 
1727
- #: includes/options/wpglobus-options-header.php:32
1728
  msgid "Thank you!"
1729
  msgstr "Thank you!"
1730
 
1731
- #: includes/options/wpglobus-options-header.php:55
1732
  msgid "WPGlobus Plus!"
1733
  msgstr "WPGlobus Plus!"
1734
 
1735
- #: includes/options/wpglobus-options-header.php:58
1736
  msgid ""
1737
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1738
  "separate publishing and more! "
@@ -1740,29 +1326,23 @@ msgstr ""
1740
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1741
  "separate publishing and more! "
1742
 
1743
- #: includes/options/wpglobus-options-header.php:64
1744
  msgid "Get WPGlobus Plus now!"
1745
  msgstr "Get WPGlobus Plus now!"
1746
 
1747
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1748
  msgid ""
1749
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1750
  "the current version."
1751
  msgstr ""
1752
 
1753
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1754
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1755
  msgstr ""
1756
 
1757
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1758
  msgid "WPGlobus warning: "
1759
  msgstr ""
1760
 
1761
- #: wpglobus.php:13
1762
  msgid "https://github.com/WPGlobus/WPGlobus"
1763
  msgstr "https://github.com/WPGlobus/WPGlobus"
1764
 
1765
- #: wpglobus.php:14
1766
  msgid ""
1767
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1768
  "widgets and even custom fields - in multiple languages!"
@@ -1770,7 +1350,6 @@ msgstr ""
1770
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1771
  "widgets and even custom fields - in multiple languages!"
1772
 
1773
- #: wpglobus.php:19
1774
  msgid "https://wpglobus.com/"
1775
  msgstr "https://wpglobus.com/"
1776
 
15
  "Content-Transfer-Encoding: 8bit\n"
16
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
17
 
 
 
 
 
 
18
  msgid "Guide"
19
  msgstr "Guide"
20
 
 
 
21
  msgid "WPGlobus Help Desk"
22
  msgstr "WPGlobus Help Desk"
23
 
 
 
 
 
 
 
 
24
  msgid "Add-ons"
25
  msgstr "Add-ons"
26
 
 
27
  msgid "Quick Start"
28
  msgstr "Quick Start"
29
 
 
 
30
  msgid "FAQ"
31
  msgstr "FAQ"
32
 
 
33
  msgid ""
34
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
35
  msgstr ""
36
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
37
 
 
38
  msgid ""
39
  "The mbstring extension is required for the full UTF-8 compatibility and "
40
  "better performance. Without it, some parts of WordPress and WPGlobus may "
46
  "function incorrectly. Please contact your hosting company or systems "
47
  "administrator."
48
 
 
49
  msgid "Go to WPGlobus Settings"
50
  msgstr "Go to WPGlobus Settings"
51
 
 
52
  msgid "Easy as 1-2-3:"
53
  msgstr "Easy as 1-2-3:"
54
 
 
55
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
56
  msgstr "Go to WPGlobus admin menu and choose the countries / languages;"
57
 
 
58
  msgid ""
59
  "Enter the translations to the posts, pages, categories, tags and menus using "
60
  "a clean and simple interface."
62
  "Enter the translations to the posts, pages, categories, tags and menus using "
63
  "a clean and simple interface."
64
 
 
65
  msgid ""
66
  "Switch languages at the front-end using a drop-down menu with language names "
67
  "and country flags."
69
  "Switch languages at the front-end using a drop-down menu with language names "
70
  "and country flags."
71
 
 
72
  msgid "Links:"
73
  msgstr "Links:"
74
 
 
75
  msgid "FAQs"
76
  msgstr "FAQs"
77
 
 
78
  msgid "Contact Us"
79
  msgstr "Contact Us"
80
 
 
81
  msgid "Please give us 5 stars!"
82
  msgstr "Please give us 5 stars!"
83
 
 
84
  msgid "WPGlobus does not translate texts automatically!"
85
  msgstr "WPGlobus does not translate texts automatically!"
86
 
 
87
  msgid ""
88
  "There are many translation companies and individual translators who can help "
89
  "you write and proofread the texts."
91
  "There are many translation companies and individual translators who can help "
92
  "you write and proofread the texts."
93
 
 
94
  msgid ""
95
  "When you choose a translator, please look at their native language, country "
96
  "of residence, specialization and knowledge of WordPress."
99
  "of residence, specialization and knowledge of WordPress."
100
 
101
  #. translators: %s are used to insert HTML link. Keep them in place.
 
102
  msgid ""
103
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
104
  "website. This is not an endorsement, just a courtesy. Please contact them "
108
  "website. This is not an endorsement, just a courtesy. Please contact them "
109
  "directly and let us know how did it work for you!"
110
 
 
111
  msgid "Important notes:"
112
  msgstr "Important notes:"
113
 
 
114
  msgid ""
115
  "WPGlobus only supports the localization URLs in the form of <code>example."
116
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
120
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
121
  "com</code> and language queries <code>example.com?lang=xx</code>."
122
 
 
123
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
124
  msgstr "Some themes and plugins are <strong>not multilingual-ready</strong>."
125
 
 
126
  msgid ""
127
  "They might display some texts with no translation, or with all languages "
128
  "mixed together."
131
  "mixed together."
132
 
133
  #. translators: %s are used to insert HTML link. Keep them in place.
 
134
  msgid ""
135
  "Please contact the theme / plugin author. If they are unable to assist, "
136
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
138
  "Please contact the theme / plugin author. If they are unable to assist, "
139
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
140
 
 
141
  msgid "Language was set on your profile page"
142
  msgstr "Language was set on your profile page"
143
 
 
144
  msgid "Add"
145
  msgstr "Add"
146
 
 
 
147
  msgid "Multilingual Everything!"
148
  msgstr "Multilingual Everything!"
149
 
 
 
150
  msgid ""
151
  "WPGlobus is a family of WordPress plugins assisting you in making "
152
  "multilingual WordPress blogs and sites."
154
  "WPGlobus is a family of WordPress plugins assisting you in making "
155
  "multilingual WordPress blogs and sites."
156
 
 
157
  msgid "Remove the WPGlobus settings (not recommended)"
158
  msgstr "Remove the WPGlobus settings (not recommended)"
159
 
 
160
  msgid "Clean-up Tool"
161
  msgstr "Clean-up Tool"
162
 
 
163
  msgid "Support"
164
  msgstr "Support"
165
 
 
166
  msgid ""
167
  "WARNING: this operation is non-reversible. It is strongly recommended that "
168
  "you backup your database before proceeding."
170
  "WARNING: this operation is non-reversible. It is strongly recommended that "
171
  "you backup your database before proceeding."
172
 
 
173
  msgid ""
174
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
175
  "By running it, you will remove ALL translations you have entered to your "
185
  "might end up with empty titles, no content, no excerpts, blank comments and "
186
  "so on."
187
 
 
188
  msgid ""
189
  "Make sure that your active theme does not have any code related to WPGlobus. "
190
  "Such code could be added by you or by a 3rd party developer. If that code "
193
  msgstr ""
194
 
195
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
 
196
  msgid ""
197
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
198
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
199
  msgstr ""
200
 
 
201
  msgid "You are about to clean the content of the following database tables:"
202
  msgstr "You are about to clean the content of the following database tables:"
203
 
 
204
  msgid "The operations log"
205
  msgstr "The operations log"
206
 
 
207
  msgid ""
208
  "We are going to write a detailed log of all the database changes performed. "
209
  "It should help in the case you need to restore something important. The log "
213
  "It should help in the case you need to restore something important. The log "
214
  "will be written to the file:"
215
 
 
216
  msgid ""
217
  "Uncheck if you do not want to write the operations log (we recommend to keep "
218
  "it checked)"
220
  "Uncheck if you do not want to write the operations log (we recommend to keep "
221
  "it checked)"
222
 
 
223
  msgid "You have been warned..."
224
  msgstr "You have been warned..."
225
 
 
226
  msgid "Please confirm by checking the box below:"
227
  msgstr "Please confirm by checking the box below:"
228
 
 
229
  msgid ""
230
  "I have read and understood everything written on this page. I am aware that "
231
  "by using this tool I may loose some content of my website. I have made a "
237
  "database backup and know how to restore it if necessary. I am fully "
238
  "responsible for the results."
239
 
 
240
  msgid "YES, I CONFIRM"
241
  msgstr "YES, I CONFIRM"
242
 
 
243
  msgid "Process with the Clean-up"
244
  msgstr "Process with the Clean-up"
245
 
 
 
 
 
246
  msgid "Default"
247
  msgstr "Default"
248
 
 
249
  msgid "Section"
250
  msgstr "Section"
251
 
 
252
  msgid "Show all sections"
253
  msgstr "Show all sections"
254
 
 
255
  msgid "Save &amp; Reload"
256
  msgstr "Save &amp; Reload"
257
 
 
 
 
258
  msgid "WPGlobus"
259
  msgstr "WPGlobus"
260
 
 
261
  msgid ""
262
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
263
  msgstr ""
264
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
265
 
 
266
  msgid "Fields Settings"
267
  msgstr "Fields Settings"
268
 
 
269
  msgid "WPGlobus Settings"
270
  msgstr "WPGlobus Settings"
271
 
 
272
  msgid "Help"
273
  msgstr "Help"
274
 
 
 
275
  msgid "Languages"
276
  msgstr "Languages"
277
 
 
 
278
  msgid "Enabled Languages"
279
  msgstr "Enabled Languages"
280
 
 
 
281
  msgid "These languages are currently enabled on your site."
282
  msgstr "These languages are currently enabled on your site."
283
 
 
 
284
  msgid "Choose a language you would like to enable."
285
  msgstr "Choose a language you would like to enable."
286
 
 
287
  msgid "Press the [Save & Publish] button to confirm."
288
  msgstr "Press the [Save & Publish] button to confirm."
289
 
290
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
291
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
 
 
292
  msgid "or Add new Language %1$s here %2$s"
293
  msgstr "or Add new Language %1$s here %2$s"
294
 
 
 
295
  msgid "Add Languages"
296
  msgstr "Add Languages"
297
 
 
 
298
  msgid "Language Selector Mode"
299
  msgstr "Language Selector Mode"
300
 
 
 
301
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
302
  msgstr "Two-letter Code with flag (en, ru, it, etc.)"
303
 
 
 
304
  msgid "Full Name (English, Russian, Italian, etc.)"
305
  msgstr "Full Name (English, Russian, Italian, etc.)"
306
 
 
 
307
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
308
  msgstr "Full Name with flag (English, Russian, Italian, etc.)"
309
 
 
 
310
  msgid "Flags only"
311
  msgstr "Flags only"
312
 
 
 
313
  msgid ""
314
  "Choose the way language name and country flag are shown in the drop-down menu"
315
  msgstr ""
316
  "Choose the way language name and country flag are shown in the drop-down menu"
317
 
 
318
  msgid "select navigation menu"
319
  msgstr "select navigation menu"
320
 
 
 
 
321
  msgid "Language Selector Menu"
322
  msgstr "Language Selector Menu"
323
 
 
 
 
324
  msgid "Choose the navigation menu where the language selector will be shown"
325
  msgstr "Choose the navigation menu where the language selector will be shown"
326
 
 
327
  msgid "No menus have been created yet. Create some."
328
  msgstr "No menus have been created yet. Create some."
329
 
 
 
330
  msgid "\"All Pages\" menus Language selector"
331
  msgstr "\"All Pages\" menus Language selector"
332
 
 
 
333
  msgid ""
334
  "Adds language selector to the menus that automatically list all existing "
335
  "pages (using `wp_list_pages`)"
337
  "Adds language selector to the menus that automatically list all existing "
338
  "pages (using `wp_list_pages`)"
339
 
 
 
340
  msgid "Custom CSS"
341
  msgstr "Custom CSS"
342
 
 
343
  msgid ""
344
  "Here you can enter the CSS rules to adjust the language selector menu for "
345
  "your theme. Look at the examples in the `style-samples.css` file."
347
  "Here you can enter the CSS rules to adjust the language selector menu for "
348
  "your theme. Look at the examples in the `style-samples.css` file."
349
 
 
350
  msgid "Post types"
351
  msgstr "Post types"
352
 
 
353
  msgid "Uncheck to disable WPGlobus"
354
  msgstr "Uncheck to disable WPGlobus"
355
 
 
 
356
  msgid "Redirect"
357
  msgstr "Redirect"
358
 
 
 
359
  msgid "Choose the language automatically, based on:"
360
  msgstr "Choose the language automatically, based on:"
361
 
 
 
362
  msgid "Preferred language set in the browser"
363
  msgstr "Preferred language set in the browser"
364
 
 
 
365
  msgid ""
366
  "When a user comes to the site for the first time, try to find the best "
367
  "matching language version of the page."
369
  "When a user comes to the site for the first time, try to find the best "
370
  "matching language version of the page."
371
 
 
 
 
 
372
  msgid "Custom JS Code"
373
  msgstr "Custom JS Code"
374
 
 
 
375
  msgid "Title"
376
  msgstr "Title"
377
 
 
378
  msgid "(Paste your JS code here.)"
379
  msgstr "(Paste your JS code here.)"
380
 
 
381
  msgid ""
382
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
383
  "version 4.9 or later."
385
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
386
  "version 4.9 or later."
387
 
 
388
  msgid "With your version of WordPress, please use the"
389
  msgstr "With your version of WordPress, please use the"
390
 
 
391
  msgid "WPGlobus Settings page"
392
  msgstr "WPGlobus Settings page"
393
 
 
394
  msgid "Label"
395
  msgstr "Label"
396
 
 
397
  msgid "Description"
398
  msgstr "Description"
399
 
 
400
  msgid ""
401
  "Here you can specify which fields should be considered multilingual by "
402
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
404
  "Here you can specify which fields should be considered multilingual by "
405
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
406
 
 
 
407
  msgid "Thank you for installing WPGlobus!"
408
  msgstr "Thank you for installing WPGlobus!"
409
 
 
 
410
  msgid "Read About WPGlobus"
411
  msgstr "Read About WPGlobus"
412
 
 
413
  msgid ""
414
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
415
  msgstr ""
416
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
417
 
 
 
418
  msgid ""
419
  "Should you have any questions or comments, please do not hesitate to contact "
420
  "us."
422
  "Should you have any questions or comments, please do not hesitate to contact "
423
  "us."
424
 
 
 
425
  msgid "Sincerely Yours,"
426
  msgstr "Sincerely Yours,"
427
 
 
 
 
428
  msgid "The WPGlobus Team"
429
  msgstr "The WPGlobus Team"
430
 
431
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
432
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
433
  msgid ""
434
  "We would hate to see you go. If something goes wrong, do not uninstall "
435
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
437
  "We would hate to see you go. If something goes wrong, do not uninstall "
438
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
439
 
 
 
440
  msgid ""
441
  "Please note that if you deactivate WPGlobus, your site will show all the "
442
  "languages together, mixed up. You will need to remove all translations, "
448
 
449
  #. translators: %s: link to the Clean-up Tool
450
  #. translators: %s: link to the Clean-up Tool.
 
 
451
  msgid ""
452
  "If there are just a few places, you should edit them manually. To "
453
  "automatically remove all translations at once, you can use the %s. WARNING: "
461
 
462
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
463
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
464
  msgid "%1$sClean-up Tool%2$s"
465
  msgstr "%1$sClean-up Tool%2$s"
466
 
467
  #. translators: %s: name of current theme
 
468
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
469
  msgstr "Sorry, WPGlobus customizer doesn't support current theme %s."
470
 
471
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
472
  msgid "Please use %1$sWPGlobus options page%2$s instead."
473
  msgstr "Please use %1$sWPGlobus options page%2$s instead."
474
 
 
475
  msgid "Expand/Shrink"
476
  msgstr "Expand/Shrink"
477
 
 
 
478
  msgid "WPGlobus News"
479
  msgstr "WPGlobus News"
480
 
 
 
481
  msgid "Options updated"
482
  msgstr "Options updated"
483
 
 
484
  msgid "Please enter a language code!"
485
  msgstr "Please enter a language code!"
486
 
 
487
  msgid "Language code already exists!"
488
  msgstr "Language code already exists!"
489
 
 
490
  msgid "Please specify the language flag!"
491
  msgstr "Please specify the language flag!"
492
 
 
493
  msgid "Please enter the language name!"
494
  msgstr "Please enter the language name!"
495
 
 
496
  msgid "Please enter the language name in English!"
497
  msgstr "Please enter the language name in English!"
498
 
 
499
  msgid "Please enter the locale!"
500
  msgstr "Please enter the locale!"
501
 
 
502
  msgid "Add Language"
503
  msgstr "Add Language"
504
 
 
 
 
505
  msgid "Delete Language"
506
  msgstr "Delete Language"
507
 
 
508
  msgid "Edit Language"
509
  msgstr "Edit Language"
510
 
 
511
  msgid "Language Code"
512
  msgstr "Language Code"
513
 
 
514
  msgid ""
515
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
516
  msgstr ""
517
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
518
 
 
519
  msgid "Language flag"
520
  msgstr "Language flag"
521
 
 
522
  msgid "Name"
523
  msgstr "Name"
524
 
 
525
  msgid ""
526
  "The name of the language in its native alphabet. (Examples: English, Русский)"
527
  msgstr ""
528
  "The name of the language in its native alphabet. (Examples: English, Русский)"
529
 
 
530
  msgid "Name in English"
531
  msgstr "Name in English"
532
 
 
533
  msgid "The name of the language in English"
534
  msgstr "The name of the language in English"
535
 
 
 
536
  msgid "Locale"
537
  msgstr "Locale"
538
 
 
539
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
540
  msgstr "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
541
 
 
542
  msgid "Are you sure you want to delete?"
543
  msgstr "Are you sure you want to delete?"
544
 
 
545
  msgid "Save Changes"
546
  msgstr "Save Changes"
547
 
 
548
  msgid "Back to the WPGlobus Settings"
549
  msgstr "Back to the WPGlobus Settings"
550
 
 
551
  msgid "Current Version"
552
  msgstr "Current Version"
553
 
 
554
  msgid "Get it now!"
555
  msgstr "Get it now!"
556
 
 
557
  msgid "Premium add-on"
558
  msgstr "Premium add-on"
559
 
 
 
560
  msgid "Installed"
561
  msgstr "Installed"
562
 
563
  #. translators: placeholders are for the HTML tags.
 
564
  msgid ""
565
  "If you have already purchased a WPGlobus premium extension, please read "
566
  "%1$sthe installation instructions here%2$s"
567
  msgstr ""
568
 
 
 
569
  msgid "Help Desk"
570
  msgstr "Help Desk"
571
 
 
572
  msgid "Email not sent. Please fill in the entire form."
573
  msgstr "Email not sent. Please fill in the entire form."
574
 
 
575
  msgid ""
576
  "Email not sent. Please verify that your name and email are entered correctly."
577
  msgstr ""
578
  "Email not sent. Please verify that your name and email are entered correctly."
579
 
 
580
  msgid "Email sent."
581
  msgstr "Email sent."
582
 
 
583
  msgid "Thank you for using WPGlobus!"
584
  msgstr "Thank you for using WPGlobus!"
585
 
 
586
  msgid "Our Support Team is here to answer your questions or concerns."
587
  msgstr "Our Support Team is here to answer your questions or concerns."
588
 
 
589
  msgid "To help us serve you better:"
590
  msgstr "To help us serve you better:"
591
 
 
592
  msgid ""
593
  "Please check if the problem persists if you switch to a standard WordPress "
594
  "theme."
596
  "Please check if the problem persists if you switch to a standard WordPress "
597
  "theme."
598
 
 
599
  msgid ""
600
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
601
  msgstr ""
602
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
603
 
 
604
  msgid "Please fill in and submit the contact form:"
605
  msgstr "Please fill in and submit the contact form:"
606
 
 
607
  msgid "Please make sure the email address is correct."
608
  msgstr "Please make sure the email address is correct."
609
 
 
610
  msgid "Subject"
611
  msgstr "Subject"
612
 
 
613
  msgid "Short description of the problem"
614
  msgstr "Short description of the problem"
615
 
 
616
  msgid "Detailed description"
617
  msgstr "Detailed description"
618
 
 
619
  msgid "Technical Information"
620
  msgstr "Technical Information"
621
 
 
622
  msgid "This information helps us to find the problem source"
623
  msgstr "This information helps us to find the problem source"
624
 
 
625
  msgid ""
626
  "Alternatively, please email %s. Do not forget to copy and paste the "
627
  "technical information to your email message."
629
  "Alternatively, please email %s. Do not forget to copy and paste the "
630
  "technical information to your email message."
631
 
 
632
  msgid "WPGlobus Recommends:"
633
  msgstr "WPGlobus Recommends:"
634
 
 
 
635
  msgid "WPGlobus for WooCommerce"
636
  msgstr "WPGlobus for WooCommerce"
637
 
 
638
  msgid ""
639
  "Translate product titles and descriptions, product categories, tags and "
640
  "attributes."
642
  "Translate product titles and descriptions, product categories, tags and "
643
  "attributes."
644
 
 
645
  msgid "Get it now:"
646
  msgstr "Get it now:"
647
 
 
648
  msgid "WooCommerce Multi-Currency"
649
  msgstr "WooCommerce Multi-Currency"
650
 
 
651
  msgid "Accept multiple currencies in your online store!"
652
  msgstr "Accept multiple currencies in your online store!"
653
 
 
 
654
  msgid "Check it out:"
655
  msgstr "Check it out:"
656
 
 
657
  msgid "To translate permalinks, please activate the module Slug."
658
  msgstr "To translate permalinks, please activate the module Slug."
659
 
 
660
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
661
  msgstr "Translate permalinks with our premium add-on, WPGlobus Plus!"
662
 
 
 
663
  msgid "Save draft before using extra language."
664
  msgstr "Save draft before using extra language."
665
 
 
666
  msgid "Builder"
667
  msgstr "Builder"
668
 
 
669
  msgid "Сompatibility Settings"
670
  msgstr "Сompatibility Settings"
671
 
672
  #. translators: ON/OFF status of WPGlobus on the edit pages.
673
  #. translators: ON/OFF status of WPGlobus on the edit pages.
 
 
674
  msgid "ON"
675
  msgstr "ON"
676
 
 
 
677
  msgid "Turn off"
678
  msgstr "Turn off"
679
 
 
 
680
  msgid "OFF"
681
  msgstr "OFF"
682
 
 
 
683
  msgid "Turn on"
684
  msgstr "Turn on"
685
 
 
686
  msgid "Elementor"
687
  msgstr ""
688
 
 
689
  msgid "WPGlobus languages"
690
  msgstr "WPGlobus languages"
691
 
 
692
  msgid "current"
693
  msgstr "current"
694
 
 
695
  msgid ""
696
  "WPGlobus provides multilingual support for Elementor only when the option "
697
  "%1$s%2$s%3$s is set to %4$s."
699
  "WPGlobus provides multilingual support for Elementor only when the option "
700
  "%1$s%2$s%3$s is set to %4$s."
701
 
 
702
  msgid "Before switching the language, please save draft or publish."
703
  msgstr "Before switching the language, please save draft or publish."
704
 
705
  #. translators: Metabox title FOR language.
 
706
  msgctxt "filter__seo_meta_box_title"
707
  msgid "for"
708
  msgstr "for"
709
 
 
710
  msgid "Page is being reloaded. Please wait..."
711
  msgstr "Page is being reloaded. Please wait..."
712
 
 
713
  msgid ""
714
  "Before switching the language, please save draft or publish, then reload "
715
  "page."
717
  "Before switching the language, please save draft or publish, then reload "
718
  "page."
719
 
 
720
  msgid ""
721
  "WPGlobus provides multilingual support for Elementor only when the option "
722
  "`CSS Print Method` is set to `External File`."
723
  msgstr ""
724
 
 
725
  msgid "Open Elementor Settings page"
726
  msgstr ""
727
 
 
728
  msgid "WPGlobus widget"
729
  msgstr "WPGlobus widget"
730
 
 
731
  msgid "Add language switcher"
732
  msgstr "Add language switcher"
733
 
 
734
  msgid "Flags"
735
  msgstr "Flags"
736
 
 
737
  msgid "List"
738
  msgstr "List"
739
 
 
740
  msgid "List with flags"
741
  msgstr "List with flags"
742
 
 
743
  msgid "Select"
744
  msgstr "Select"
745
 
 
746
  msgid "Select with language code"
747
  msgstr "Select with language code"
748
 
 
749
  msgid "Dropdown"
750
  msgstr "Dropdown"
751
 
 
752
  msgid "Dropdown with flags"
753
  msgstr "Dropdown with flags"
754
 
 
755
  msgid "Selector type"
756
  msgstr "Selector type"
757
 
 
758
  msgid "You cannot disable the main language."
759
  msgstr "You cannot disable the main language."
760
 
 
761
  msgid "Need a multilingual slug?"
762
  msgstr "Need a multilingual slug?"
763
 
 
764
  msgid "*) Available after the menu is saved."
765
  msgstr "*) Available after the menu is saved."
766
 
 
767
  msgid "You must enable Pretty Permalinks to use WPGlobus."
768
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
769
 
 
770
  msgid ""
771
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
772
  "default option."
774
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
775
  "default option."
776
 
 
777
  msgid "Language Selector Menu Style"
778
  msgstr "Language Selector Menu Style"
779
 
 
 
 
780
  msgid "WPGlobus Plus"
781
  msgstr "WPGlobus Plus"
782
 
 
783
  msgid "Drop-down languages menu or Flat (in one line)"
784
  msgstr "Drop-down languages menu or Flat (in one line)"
785
 
 
786
  msgid "Do not change"
787
  msgstr "Do not change"
788
 
 
789
  msgid "Drop-down (vertical)"
790
  msgstr "Drop-down (vertical)"
791
 
 
792
  msgid "Flat (horizontal)"
793
  msgstr "Flat (horizontal)"
794
 
 
795
  msgid ""
796
  "If you see this message then your browser may not display the WPGlobus "
797
  "Settings panel properly. Please try another browser."
799
  "If you see this message then your browser may not display the WPGlobus "
800
  "Settings panel properly. Please try another browser."
801
 
 
 
802
  msgid "Сompatibility"
803
  msgstr "Сompatibility"
804
 
805
  #. translators: placeholders for "strong" tags.
 
806
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
807
  msgstr "Click the %1$s[Languages]%2$s tab at the left to setup the options."
808
 
809
  #. translators: placeholders for "strong" tags.
 
810
  msgid ""
811
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
812
  "the language attributes: name, code, flag icon, etc."
814
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
815
  "the language attributes: name, code, flag icon, etc."
816
 
 
817
  msgid "Important notes"
818
  msgstr "Important notes"
819
 
820
  #. translators: placeholders for "strong" tags.
 
821
  msgid "Version %1$s1.9.17%2$s "
822
  msgstr "Version %1$s1.9.17%2$s "
823
 
824
  #. translators: placeholders for "strong" tags.
 
825
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
826
  msgstr "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
827
 
828
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
829
  msgid ""
830
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
831
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
834
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
835
 
836
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
837
  msgid ""
838
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
839
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
842
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
843
 
844
  #. translators: placeholders for "strong" tags.
 
845
  msgid "Version %1$s2.2.11%2$s "
846
  msgstr "Version %1$s2.2.11%2$s "
847
 
 
848
  msgid "Starting from this version"
849
  msgstr "Starting from this version"
850
 
851
  #. translators: placeholders for "strong" tags.
 
852
  msgid ""
853
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
854
  "(CPT)."
857
  "(CPT)."
858
 
859
  #. translators: placeholders for "strong" tags.
 
860
  msgid ""
861
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
862
  "the %1$s[%3$s]%2$s tab."
864
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
865
  "the %1$s[%3$s]%2$s tab."
866
 
 
867
  msgid "Welcome!"
868
  msgstr "Welcome!"
869
 
 
870
  msgid "Deactivating / Uninstalling"
871
  msgstr "Deactivating / Uninstalling"
872
 
 
873
  msgid "Uninstall"
874
  msgstr "Uninstall"
875
 
 
876
  msgid "All add-ons"
877
  msgstr "All add-ons"
878
 
 
879
  msgid "Mobile Menu"
880
  msgstr "Mobile Menu"
881
 
 
882
  msgid "Language Widgets"
883
  msgstr "Language Widgets"
884
 
 
885
  msgid "We Recommend..."
886
  msgstr "We Recommend..."
887
 
 
888
  msgid ""
889
  "Our premium add-on, WPGlobus Plus, will add several features to your "
890
  "website, such as:"
892
  "Our premium add-on, WPGlobus Plus, will add several features to your "
893
  "website, such as:"
894
 
 
895
  msgid ""
896
  "- Ability to write a post in one language and immediately publish it, not "
897
  "waiting for the translation to other languages;"
899
  "- Ability to write a post in one language and immediately publish it, not "
900
  "waiting for the translation to other languages;"
901
 
 
902
  msgid "- Set different URLs for each translation;"
903
  msgstr "- Set different URLs for each translation;"
904
 
 
905
  msgid ""
906
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
907
  "for each translation;"
909
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
910
  "for each translation;"
911
 
 
912
  msgid "- and more..."
913
  msgstr "- and more..."
914
 
 
 
 
915
  msgid "Click here to download"
916
  msgstr "Click here to download"
917
 
 
918
  msgid ""
919
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
920
  "translate your blog posts and pages to many languages."
922
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
923
  "translate your blog posts and pages to many languages."
924
 
 
925
  msgid "The next step is to translate your WooCommerce-based store!"
926
  msgstr "The next step is to translate your WooCommerce-based store!"
927
 
 
928
  msgid ""
929
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
930
  "translate product titles and descriptions, categories, tags and attributes."
932
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
933
  "translate product titles and descriptions, categories, tags and attributes."
934
 
 
935
  msgid "Multi-currency"
936
  msgstr "Multi-currency"
937
 
 
938
  msgid ""
939
  "Your WooCommerce-powered store is set to show prices and accept payments in "
940
  "a single currency only."
942
  "Your WooCommerce-powered store is set to show prices and accept payments in "
943
  "a single currency only."
944
 
 
945
  msgid ""
946
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
947
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
953
  "Accepting multiple currencies will strengthen your competitive edge and "
954
  "positioning for global growth!"
955
 
 
956
  msgid ""
957
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
958
  "re-calculating prices on-the-fly."
960
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
961
  "re-calculating prices on-the-fly."
962
 
 
963
  msgid "WPGlobus Premium Add-ons"
964
  msgstr "WPGlobus Premium Add-ons"
965
 
 
966
  msgid ""
967
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
968
  "you will be able to:"
970
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
971
  "you will be able to:"
972
 
 
973
  msgid ""
974
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
975
  "моя-страница and so on);"
977
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
978
  "моя-страница and so on);"
979
 
 
980
  msgid ""
981
  "Postpone translation to some languages and <strong>publish only the "
982
  "translated texts</strong>;"
984
  "Postpone translation to some languages and <strong>publish only the "
985
  "translated texts</strong>;"
986
 
 
987
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
988
  msgstr ""
989
  "Maintain <strong>separate menus and widgets for each language</strong>;"
990
 
 
991
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
992
  msgstr "<strong>Translate WooCommerce</strong> products and taxonomies;"
993
 
 
994
  msgid ""
995
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
996
  "strong>;"
998
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
999
  "strong>;"
1000
 
 
1001
  msgid "...and more."
1002
  msgstr "...and more."
1003
 
 
1004
  msgid "Click here to visit the WPGlobus Store"
1005
  msgstr "Click here to visit the WPGlobus Store"
1006
 
 
1007
  msgid "Select a language"
1008
  msgstr "Select a language"
1009
 
1010
  #. translators: %3$s placeholder for the icon (actual picture).
 
1011
  msgid ""
1012
  "Place the %1$smain language%2$s of your site at the top of the list by "
1013
  "dragging the %3$s icons."
1016
  "dragging the %3$s icons."
1017
 
1018
  #. translators: placeholders for the "strong" HTML tags.
 
1019
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
1020
  msgstr "%1$sUncheck%2$s the languages you do not plan to use."
1021
 
1022
  #. translators: placeholders for the "strong" HTML tags.
 
1023
  msgid "%1$sAdd%2$s more languages using the section below."
1024
  msgstr "%1$sAdd%2$s more languages using the section below."
1025
 
 
1026
  msgid "When done, click the [Save Changes] button."
1027
  msgstr "When done, click the [Save Changes] button."
1028
 
1029
  #. translators: %s - placeholder for the "Save Changes" button text.
 
1030
  msgid "Press the %s button to confirm."
1031
  msgstr "Press the %s button to confirm."
1032
 
1033
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
 
1034
  msgid "-- none --"
1035
  msgstr "-- none --"
1036
 
 
1037
  msgid "All menus"
1038
  msgstr "All menus"
1039
 
 
1040
  msgid "Instructions:"
1041
  msgstr "Instructions:"
1042
 
 
1043
  msgid "(Found in some themes)"
1044
  msgstr "(Found in some themes)"
1045
 
 
1046
  msgid "Enable"
1047
  msgstr "Enable"
1048
 
 
1049
  msgid "Languages table"
1050
  msgstr "Languages table"
1051
 
 
1052
  msgid "Use this table to add, edit or delete languages."
1053
  msgstr "Use this table to add, edit or delete languages."
1054
 
 
1055
  msgid "NOTE: you cannot remove the main language."
1056
  msgstr "NOTE: you cannot remove the main language."
1057
 
 
1058
  msgid "WPGlobus is enabled on these Post Types"
1059
  msgstr "WPGlobus is enabled on these Post Types"
1060
 
 
1061
  msgid "Uncheck to disable"
1062
  msgstr "Uncheck to disable"
1063
 
 
1064
  msgid ""
1065
  "Please note that there are post types, which status is managed by other "
1066
  "plugins and cannot be changed here."
1068
  "Please note that there are post types, which status is managed by other "
1069
  "plugins and cannot be changed here."
1070
 
 
1071
  msgid "Post Types"
1072
  msgstr "Post Types"
1073
 
 
1074
  msgid ""
1075
  "You should put here only the code provided by WPGlobus Support. Do not write "
1076
  "anything else in the sections below as it might break the functionality of "
1080
  "anything else in the sections below as it might break the functionality of "
1081
  "your website!"
1082
 
 
1083
  msgid "Custom Code"
1084
  msgstr "Custom Code"
1085
 
 
 
 
1086
  msgid "Enabled"
1087
  msgstr "Enabled"
1088
 
 
1089
  msgid "Builders support"
1090
  msgstr "Builders support"
1091
 
 
1092
  msgid "Builder mode is enabled on these Post Types"
1093
  msgstr "Builder mode is enabled on these Post Types"
1094
 
 
1095
  msgid "Old fashioned language switcher"
1096
  msgstr "Old fashioned language switcher"
1097
 
 
1098
  msgid "Block Editor"
1099
  msgstr "Block Editor"
1100
 
 
1101
  msgid "Block Editor Options"
1102
  msgstr "Block Editor Options"
1103
 
 
1104
  msgid ""
1105
  "With the current settings, you will see the following lines in the section "
1106
  "HEAD of your site pages"
1108
  "With the current settings, you will see the following lines in the section "
1109
  "HEAD of your site pages"
1110
 
 
1111
  msgid "(example for two languages)"
1112
  msgstr "(example for two languages)"
1113
 
 
1114
  msgid ""
1115
  "Tell search engines about localized versions of your pages using the "
1116
  "hreflang tag"
1118
  "Tell search engines about localized versions of your pages using the "
1119
  "hreflang tag"
1120
 
 
1121
  msgid "Output the hreflang tag as"
1122
  msgstr "Output the hreflang tag as"
1123
 
 
1124
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1125
  msgstr "Language- and region-specific (en-US, ru-RU, etc.)"
1126
 
 
1127
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1128
  msgstr "Language- and region-specific (en-us, ru-ru, etc.)"
1129
 
 
1130
  msgid "Language code only (en, ru, etc.)"
1131
  msgstr "Language code only (en, ru, etc.)"
1132
 
 
1133
  msgid "Use the code `x-default` for the main language"
1134
  msgstr "Use the code `x-default` for the main language"
1135
 
 
1136
  msgid "Multilingual SEO"
1137
  msgstr "Multilingual SEO"
1138
 
 
1139
  msgid "Multilingual SEO Options"
1140
  msgstr "Multilingual SEO Options"
1141
 
 
1142
  msgid ""
1143
  "With WPGlobus, you can get translations for posts and pages using REST API."
1144
  msgstr ""
1145
 
 
 
 
 
1146
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1147
  msgstr ""
1148
 
 
1149
  msgid ""
1150
  "For demonstration, you can try the first post that WordPress creates at the "
1151
  "initial installation."
1152
  msgstr ""
1153
 
 
1154
  msgid ""
1155
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1156
  "information."
1157
  msgstr ""
1158
 
 
1159
  msgid ""
1160
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1161
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1162
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1163
  msgstr ""
1164
 
 
1165
  msgid "Description:"
1166
  msgstr ""
1167
 
 
 
1168
  msgid "REST API"
1169
  msgstr ""
1170
 
 
1171
  msgid "Translate strings"
1172
  msgstr "Translate strings"
1173
 
 
1174
  msgid "item"
1175
  msgstr "item"
1176
 
 
1177
  msgid "items"
1178
  msgstr "items"
1179
 
 
1180
  msgid "Code"
1181
  msgstr "Code"
1182
 
 
1183
  msgid "Edit"
1184
  msgstr "Edit"
1185
 
 
1186
  msgid "Delete"
1187
  msgstr "Delete"
1188
 
 
1189
  msgid "File"
1190
  msgstr "File"
1191
 
 
1192
  msgid "Flag"
1193
  msgstr "Flag"
1194
 
 
1195
  msgid "Language name"
1196
  msgstr "Language name"
1197
 
 
1198
  msgid "English language name"
1199
  msgstr "English language name"
1200
 
 
1201
  msgid "No items found"
1202
  msgstr "No items found"
1203
 
 
1204
  msgid "Add new Language"
1205
  msgstr "Add new Language"
1206
 
 
1207
  msgid "No items of this type were found."
1208
  msgstr "No items of this type were found."
1209
 
 
1210
  msgid "Select an item"
1211
  msgstr "Select an item"
1212
 
 
1213
  msgid "Multilingual support of this add-on is currently in Beta stage."
1214
  msgstr "Multilingual support of this add-on is currently in Beta stage."
1215
 
 
1216
  msgid "We do not recommend using it on production sites."
1217
  msgstr "We do not recommend using it on production sites."
1218
 
 
1219
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1220
  msgstr "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1221
 
 
1222
  msgid "WordPress version"
1223
  msgstr "WordPress version"
1224
 
 
1225
  msgid "In the WordPress core"
1226
  msgstr "In the WordPress core"
1227
 
 
1228
  msgid "Core"
1229
  msgstr "Core"
1230
 
 
 
1231
  msgid "Current version"
1232
  msgstr "Current version"
1233
 
 
 
1234
  msgid "Stage"
1235
  msgstr "Stage"
1236
 
 
 
1237
  msgid "Status"
1238
  msgstr "Status"
1239
 
 
1240
  msgid "Block editor"
1241
  msgstr "Block editor"
1242
 
 
1243
  msgid "production"
1244
  msgstr "production"
1245
 
 
1246
  msgid "List of supported add-ons"
1247
  msgstr "List of supported add-ons"
1248
 
 
1249
  msgid "Add-on"
1250
  msgstr "Add-on"
1251
 
 
1252
  msgid "Supported minimum version"
1253
  msgstr "Supported minimum version"
1254
 
 
1255
  msgid "Not installed"
1256
  msgstr "Not installed"
1257
 
 
1258
  msgid "Installed, inactive"
1259
  msgstr "Installed, inactive"
1260
 
 
1261
  msgid "Active"
1262
  msgstr "Active"
1263
 
 
1264
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1265
  msgstr "WPGlobus Customizer is integrated into the Customize Theme panel"
1266
 
 
1267
  msgid "However, some themes do not follow all WordPress standards strictly."
1268
  msgstr "However, some themes do not follow all WordPress standards strictly."
1269
 
 
1270
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1271
  msgstr "WPGlobus Customizer may behave incorrectly with those themes."
1272
 
 
1273
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1274
  msgstr "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1275
 
 
1276
  msgid ""
1277
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1278
  "With those themes, WPGlobus Customizer is switched off by default"
1280
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1281
  "With those themes, WPGlobus Customizer is switched off by default"
1282
 
 
1283
  msgid "The currently active theme is"
1284
  msgstr "The currently active theme is"
1285
 
 
1286
  msgid "In the current version, WPGlobus Customizer does not support"
1287
  msgstr "In the current version, WPGlobus Customizer does not support"
1288
 
 
1289
  msgid "translation of the navigation menus"
1290
  msgstr "translation of the navigation menus"
1291
 
 
1292
  msgid "to translate, please go to"
1293
  msgstr "to translate, please go to"
1294
 
 
1295
  msgid "Go to Customizer"
1296
  msgstr "Go to Customizer"
1297
 
 
1298
  msgid "is undefined"
1299
  msgstr "is undefined"
1300
 
 
1301
  msgid "is set to"
1302
  msgstr "is set to"
1303
 
 
1304
  msgid "by adding to the file wp-config.php"
1305
  msgstr "by adding to the file wp-config.php"
1306
 
 
1307
  msgid "now"
1308
  msgstr "now"
1309
 
 
1310
  msgid "We rely on your support!"
1311
  msgstr "We rely on your support!"
1312
 
 
1313
  msgid "Please consider a small donation to support the future development."
1314
  msgstr "Please consider a small donation to support the future development."
1315
 
 
1316
  msgid "Thank you!"
1317
  msgstr "Thank you!"
1318
 
 
1319
  msgid "WPGlobus Plus!"
1320
  msgstr "WPGlobus Plus!"
1321
 
 
1322
  msgid ""
1323
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1324
  "separate publishing and more! "
1326
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1327
  "separate publishing and more! "
1328
 
 
1329
  msgid "Get WPGlobus Plus now!"
1330
  msgstr "Get WPGlobus Plus now!"
1331
 
 
1332
  msgid ""
1333
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1334
  "the current version."
1335
  msgstr ""
1336
 
 
1337
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1338
  msgstr ""
1339
 
 
1340
  msgid "WPGlobus warning: "
1341
  msgstr ""
1342
 
 
1343
  msgid "https://github.com/WPGlobus/WPGlobus"
1344
  msgstr "https://github.com/WPGlobus/WPGlobus"
1345
 
 
1346
  msgid ""
1347
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1348
  "widgets and even custom fields - in multiple languages!"
1350
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1351
  "widgets and even custom fields - in multiple languages!"
1352
 
 
1353
  msgid "https://wpglobus.com/"
1354
  msgstr "https://wpglobus.com/"
1355
 
languages/wpglobus-en_ZA.po CHANGED
@@ -16,45 +16,26 @@ msgstr ""
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
- #: includes/admin/central/class-wpglobus-admin-central.php:122,
20
- #: includes/admin/class-wpglobus-about.php:42,
21
- #: includes/admin/class-wpglobus-about.php:117,
22
- #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr "Guide"
26
 
27
- #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr "WPGlobus Help Desk"
31
 
32
- #: includes/admin/central/class-wpglobus-admin-central.php:157,
33
- #: includes/admin/class-wpglobus-about.php:36,
34
- #: includes/admin/class-wpglobus-admin-menu.php:22,
35
- #: includes/admin/class-wpglobus-clean.php:606,
36
- #: includes/admin/class-wpglobus-customize-options.php:1293,
37
- #: includes/admin/class-wpglobus-customize-options.php:1261,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr "Add-ons"
41
 
42
- #: includes/admin/class-wpglobus-about.php:26
43
  msgid "Quick Start"
44
  msgstr "Quick Start"
45
 
46
- #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
51
- #: includes/admin/class-wpglobus-about.php:59
52
  msgid ""
53
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
54
  msgstr ""
55
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
56
 
57
- #: includes/admin/class-wpglobus-about.php:60
58
  msgid ""
59
  "The mbstring extension is required for the full UTF-8 compatibility and "
60
  "better performance. Without it, some parts of WordPress and WPGlobus may "
@@ -66,19 +47,15 @@ msgstr ""
66
  "function incorrectly. Please contact your hosting company or systems "
67
  "administrator."
68
 
69
- #: includes/admin/class-wpglobus-about.php:87
70
  msgid "Go to WPGlobus Settings"
71
  msgstr "Go to WPGlobus Settings"
72
 
73
- #: includes/admin/class-wpglobus-about.php:98
74
  msgid "Easy as 1-2-3:"
75
  msgstr "Easy as 1-2-3:"
76
 
77
- #: includes/admin/class-wpglobus-about.php:101
78
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
79
  msgstr "Go to WPGlobus admin menu and choose the countries / languages;"
80
 
81
- #: includes/admin/class-wpglobus-about.php:102
82
  msgid ""
83
  "Enter the translations to the posts, pages, categories, tags and menus using "
84
  "a clean and simple interface."
@@ -86,7 +63,6 @@ msgstr ""
86
  "Enter the translations to the posts, pages, categories, tags and menus using "
87
  "a clean and simple interface."
88
 
89
- #: includes/admin/class-wpglobus-about.php:103
90
  msgid ""
91
  "Switch languages at the front-end using a drop-down menu with language names "
92
  "and country flags."
@@ -94,27 +70,21 @@ msgstr ""
94
  "Switch languages at the front-end using a drop-down menu with language names "
95
  "and country flags."
96
 
97
- #: includes/admin/class-wpglobus-about.php:111
98
  msgid "Links:"
99
  msgstr "Links:"
100
 
101
- #: includes/admin/class-wpglobus-about.php:119
102
  msgid "FAQs"
103
  msgstr "FAQs"
104
 
105
- #: includes/admin/class-wpglobus-about.php:121
106
  msgid "Contact Us"
107
  msgstr "Contact Us"
108
 
109
- #: includes/admin/class-wpglobus-about.php:123
110
  msgid "Please give us 5 stars!"
111
  msgstr "Please give us 5 stars!"
112
 
113
- #: includes/admin/class-wpglobus-about.php:133
114
  msgid "WPGlobus does not translate texts automatically!"
115
  msgstr "WPGlobus does not translate texts automatically!"
116
 
117
- #: includes/admin/class-wpglobus-about.php:136
118
  msgid ""
119
  "There are many translation companies and individual translators who can help "
120
  "you write and proofread the texts."
@@ -122,7 +92,6 @@ msgstr ""
122
  "There are many translation companies and individual translators who can help "
123
  "you write and proofread the texts."
124
 
125
- #: includes/admin/class-wpglobus-about.php:137
126
  msgid ""
127
  "When you choose a translator, please look at their native language, country "
128
  "of residence, specialization and knowledge of WordPress."
@@ -131,7 +100,6 @@ msgstr ""
131
  "of residence, specialization and knowledge of WordPress."
132
 
133
  #. translators: %s are used to insert HTML link. Keep them in place.
134
- #: includes/admin/class-wpglobus-about.php:143
135
  msgid ""
136
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
137
  "website. This is not an endorsement, just a courtesy. Please contact them "
@@ -141,11 +109,9 @@ msgstr ""
141
  "website. This is not an endorsement, just a courtesy. Please contact them "
142
  "directly and let us know how did it work for you!"
143
 
144
- #: includes/admin/class-wpglobus-about.php:154
145
  msgid "Important notes:"
146
  msgstr "Important notes:"
147
 
148
- #: includes/admin/class-wpglobus-about.php:159
149
  msgid ""
150
  "WPGlobus only supports the localization URLs in the form of <code>example."
151
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
@@ -155,11 +121,9 @@ msgstr ""
155
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
156
  "com</code> and language queries <code>example.com?lang=xx</code>."
157
 
158
- #: includes/admin/class-wpglobus-about.php:162
159
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
160
  msgstr "Some themes and plugins are <strong>not multilingual-ready</strong>."
161
 
162
- #: includes/admin/class-wpglobus-about.php:163
163
  msgid ""
164
  "They might display some texts with no translation, or with all languages "
165
  "mixed together."
@@ -168,7 +132,6 @@ msgstr ""
168
  "mixed together."
169
 
170
  #. translators: %s are used to insert HTML link. Keep them in place.
171
- #: includes/admin/class-wpglobus-about.php:167
172
  msgid ""
173
  "Please contact the theme / plugin author. If they are unable to assist, "
174
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
@@ -176,21 +139,15 @@ msgstr ""
176
  "Please contact the theme / plugin author. If they are unable to assist, "
177
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
178
 
179
- #: includes/admin/class-wpglobus-admin-bar-menu.php:124
180
  msgid "Language was set on your profile page"
181
  msgstr ""
182
 
183
- #: includes/admin/class-wpglobus-admin-bar-menu.php:194
184
  msgid "Add"
185
  msgstr "Add"
186
 
187
- #: includes/admin/class-wpglobus-admin-page.php:32,
188
- #: includes/admin/class-wpglobus-clean.php:585
189
  msgid "Multilingual Everything!"
190
  msgstr "Multilingual Everything!"
191
 
192
- #: includes/admin/class-wpglobus-admin-page.php:34,
193
- #: includes/admin/class-wpglobus-clean.php:588
194
  msgid ""
195
  "WPGlobus is a family of WordPress plugins assisting you in making "
196
  "multilingual WordPress blogs and sites."
@@ -198,19 +155,15 @@ msgstr ""
198
  "WPGlobus is a family of WordPress plugins assisting you in making "
199
  "multilingual WordPress blogs and sites."
200
 
201
- #: includes/admin/class-wpglobus-clean.php:232
202
  msgid "Remove the WPGlobus settings (not recommended)"
203
  msgstr "Remove the WPGlobus settings (not recommended)"
204
 
205
- #: includes/admin/class-wpglobus-clean.php:595
206
  msgid "Clean-up Tool"
207
  msgstr "Clean-up Tool"
208
 
209
- #: includes/admin/class-wpglobus-clean.php:609
210
  msgid "Support"
211
  msgstr "Support"
212
 
213
- #: includes/admin/class-wpglobus-clean.php:614
214
  msgid ""
215
  "WARNING: this operation is non-reversible. It is strongly recommended that "
216
  "you backup your database before proceeding."
@@ -218,7 +171,6 @@ msgstr ""
218
  "WARNING: this operation is non-reversible. It is strongly recommended that "
219
  "you backup your database before proceeding."
220
 
221
- #: includes/admin/class-wpglobus-clean.php:619
222
  msgid ""
223
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
224
  "By running it, you will remove ALL translations you have entered to your "
@@ -234,7 +186,6 @@ msgstr ""
234
  "might end up with empty titles, no content, no excerpts, blank comments and "
235
  "so on."
236
 
237
- #: includes/admin/class-wpglobus-clean.php:622
238
  msgid ""
239
  "Make sure that your active theme does not have any code related to WPGlobus. "
240
  "Such code could be added by you or by a 3rd party developer. If that code "
@@ -243,21 +194,17 @@ msgid ""
243
  msgstr ""
244
 
245
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
246
- #: includes/admin/class-wpglobus-clean.php:630
247
  msgid ""
248
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
249
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
250
  msgstr ""
251
 
252
- #: includes/admin/class-wpglobus-clean.php:641
253
  msgid "You are about to clean the content of the following database tables:"
254
  msgstr "You are about to clean the content of the following database tables:"
255
 
256
- #: includes/admin/class-wpglobus-clean.php:649
257
  msgid "The operations log"
258
  msgstr "The operations log"
259
 
260
- #: includes/admin/class-wpglobus-clean.php:652
261
  msgid ""
262
  "We are going to write a detailed log of all the database changes performed. "
263
  "It should help in the case you need to restore something important. The log "
@@ -267,7 +214,6 @@ msgstr ""
267
  "It should help in the case you need to restore something important. The log "
268
  "will be written to the file:"
269
 
270
- #: includes/admin/class-wpglobus-clean.php:662
271
  msgid ""
272
  "Uncheck if you do not want to write the operations log (we recommend to keep "
273
  "it checked)"
@@ -275,15 +221,12 @@ msgstr ""
275
  "Uncheck if you do not want to write the operations log (we recommend to keep "
276
  "it checked)"
277
 
278
- #: includes/admin/class-wpglobus-clean.php:667
279
  msgid "You have been warned..."
280
  msgstr "You have been warned..."
281
 
282
- #: includes/admin/class-wpglobus-clean.php:669
283
  msgid "Please confirm by checking the box below:"
284
  msgstr "Please confirm by checking the box below:"
285
 
286
- #: includes/admin/class-wpglobus-clean.php:671
287
  msgid ""
288
  "I have read and understood everything written on this page. I am aware that "
289
  "by using this tool I may loose some content of my website. I have made a "
@@ -295,152 +238,99 @@ msgstr ""
295
  "database backup and know how to restore it if necessary. I am fully "
296
  "responsible for the results."
297
 
298
- #: includes/admin/class-wpglobus-clean.php:674
299
  msgid "YES, I CONFIRM"
300
  msgstr "YES, I CONFIRM"
301
 
302
- #: includes/admin/class-wpglobus-clean.php:678
303
  msgid "Process with the Clean-up"
304
  msgstr "Process with the Clean-up"
305
 
306
- #: includes/admin/class-wpglobus-customize-options.php:73,
307
- #: includes/admin/class-wpglobus-customize-options.php:100,
308
- #: includes/admin/class-wpglobus-customize-options.php:145,
309
- #: includes/admin/class-wpglobus-customize-options.php:183
310
  msgid "Default"
311
  msgstr "Default"
312
 
313
- #: includes/admin/class-wpglobus-customize-options.php:264
314
  msgid "Section"
315
  msgstr "Section"
316
 
317
- #: includes/admin/class-wpglobus-customize-options.php:277
318
  msgid "Show all sections"
319
  msgstr "Show all sections"
320
 
321
- #: includes/admin/class-wpglobus-customize-options.php:279
322
  msgid "Save &amp; Reload"
323
  msgstr "Save &amp; Reload"
324
 
325
- #: includes/admin/class-wpglobus-customize-options.php:553,
326
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:585,
327
- #: includes/class-wpglobus.php:1284, wpglobus.php:12, wpglobus.php:18
328
  msgid "WPGlobus"
329
  msgstr "WPGlobus"
330
 
331
- #: includes/admin/class-wpglobus-customize-options.php:604
332
  msgid ""
333
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
334
  msgstr ""
335
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
336
 
337
- #: includes/admin/class-wpglobus-customize-options.php:610
338
  msgid "Fields Settings"
339
  msgstr "Fields Settings"
340
 
341
- #: includes/admin/class-wpglobus-customize-options.php:655
342
  msgid "WPGlobus Settings"
343
  msgstr "WPGlobus Settings"
344
 
345
- #: includes/admin/class-wpglobus-customize-options.php:723
346
  msgid "Help"
347
  msgstr ""
348
 
349
- #: includes/admin/class-wpglobus-customize-options.php:745,
350
- #: includes/options/class-wpglobus-options.php:1176
351
  msgid "Languages"
352
  msgstr "Languages"
353
 
354
- #: includes/admin/class-wpglobus-customize-options.php:765,
355
- #: includes/options/class-wpglobus-options.php:1189
356
  msgid "Enabled Languages"
357
  msgstr "Enabled Languages"
358
 
359
- #: includes/admin/class-wpglobus-customize-options.php:767,
360
- #: includes/options/class-wpglobus-options.php:1190
361
  msgid "These languages are currently enabled on your site."
362
  msgstr "These languages are currently enabled on your site."
363
 
364
- #: includes/admin/class-wpglobus-customize-options.php:795,
365
- #: includes/options/class-wpglobus-options.php:1148
366
  msgid "Choose a language you would like to enable."
367
  msgstr ""
368
 
369
- #: includes/admin/class-wpglobus-customize-options.php:797
370
  msgid "Press the [Save & Publish] button to confirm."
371
  msgstr ""
372
 
373
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
374
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
375
- #: includes/admin/class-wpglobus-customize-options.php:801,
376
- #: includes/options/class-wpglobus-options.php:1154
377
  msgid "or Add new Language %1$s here %2$s"
378
  msgstr "or Add new Language %1$s here %2$s"
379
 
380
- #: includes/admin/class-wpglobus-customize-options.php:813,
381
- #: includes/options/class-wpglobus-options.php:1203
382
  msgid "Add Languages"
383
  msgstr "Add Languages"
384
 
385
- #: includes/admin/class-wpglobus-customize-options.php:833,
386
- #: includes/options/class-wpglobus-options.php:1211
387
  msgid "Language Selector Mode"
388
  msgstr "Language Selector Mode"
389
 
390
- #: includes/admin/class-wpglobus-customize-options.php:838,
391
- #: includes/options/class-wpglobus-options.php:1214
392
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
393
  msgstr "Two-letter Code with flag (en, ru, it, etc.)"
394
 
395
- #: includes/admin/class-wpglobus-customize-options.php:839,
396
- #: includes/options/class-wpglobus-options.php:1215
397
  msgid "Full Name (English, Russian, Italian, etc.)"
398
  msgstr "Full Name (English, Russian, Italian, etc.)"
399
 
400
- #: includes/admin/class-wpglobus-customize-options.php:841,
401
- #: includes/options/class-wpglobus-options.php:1216
402
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
403
  msgstr "Full Name with flag (English, Russian, Italian, etc.)"
404
 
405
- #: includes/admin/class-wpglobus-customize-options.php:842,
406
- #: includes/options/class-wpglobus-options.php:1217
407
  msgid "Flags only"
408
  msgstr "Flags only"
409
 
410
- #: includes/admin/class-wpglobus-customize-options.php:844,
411
- #: includes/options/class-wpglobus-options.php:1212
412
  msgid ""
413
  "Choose the way language name and country flag are shown in the drop-down menu"
414
  msgstr ""
415
  "Choose the way language name and country flag are shown in the drop-down menu"
416
 
417
- #: includes/admin/class-wpglobus-customize-options.php:879
418
  msgid "select navigation menu"
419
  msgstr ""
420
 
421
- #: includes/admin/class-wpglobus-customize-options.php:915,
422
- #: includes/admin/class-wpglobus-customize-options.php:888,
423
- #: includes/options/class-wpglobus-options.php:1230
424
  msgid "Language Selector Menu"
425
  msgstr "Language Selector Menu"
426
 
427
- #: includes/admin/class-wpglobus-customize-options.php:920,
428
- #: includes/admin/class-wpglobus-customize-options.php:899,
429
- #: includes/options/class-wpglobus-options.php:1231
430
  msgid "Choose the navigation menu where the language selector will be shown"
431
  msgstr "Choose the navigation menu where the language selector will be shown"
432
 
433
- #: includes/admin/class-wpglobus-customize-options.php:898
434
  msgid "No menus have been created yet. Create some."
435
  msgstr "No menus have been created yet. Create some."
436
 
437
- #: includes/admin/class-wpglobus-customize-options.php:940,
438
- #: includes/options/class-wpglobus-options.php:1241
439
  msgid "\"All Pages\" menus Language selector"
440
  msgstr "\"All Pages\" menus Language selector"
441
 
442
- #: includes/admin/class-wpglobus-customize-options.php:943,
443
- #: includes/options/class-wpglobus-options.php:1243
444
  msgid ""
445
  "Adds language selector to the menus that automatically list all existing "
446
  "pages (using `wp_list_pages`)"
@@ -448,12 +338,9 @@ msgstr ""
448
  "Adds language selector to the menus that automatically list all existing "
449
  "pages (using `wp_list_pages`)"
450
 
451
- #: includes/admin/class-wpglobus-customize-options.php:960,
452
- #: includes/options/class-wpglobus-options.php:1356
453
  msgid "Custom CSS"
454
  msgstr "Custom CSS"
455
 
456
- #: includes/admin/class-wpglobus-customize-options.php:964
457
  msgid ""
458
  "Here you can enter the CSS rules to adjust the language selector menu for "
459
  "your theme. Look at the examples in the `style-samples.css` file."
@@ -461,31 +348,21 @@ msgstr ""
461
  "Here you can enter the CSS rules to adjust the language selector menu for "
462
  "your theme. Look at the examples in the `style-samples.css` file."
463
 
464
- #: includes/admin/class-wpglobus-customize-options.php:983
465
  msgid "Post types"
466
  msgstr "Post types"
467
 
468
- #: includes/admin/class-wpglobus-customize-options.php:1091
469
  msgid "Uncheck to disable WPGlobus"
470
  msgstr "Uncheck to disable WPGlobus"
471
 
472
- #: includes/admin/class-wpglobus-customize-options.php:1125,
473
- #: includes/options/class-wpglobus-options.php:1424
474
  msgid "Redirect"
475
  msgstr "Redirect"
476
 
477
- #: includes/admin/class-wpglobus-customize-options.php:1150,
478
- #: includes/options/class-wpglobus-options.php:1419
479
  msgid "Choose the language automatically, based on:"
480
  msgstr "Choose the language automatically, based on:"
481
 
482
- #: includes/admin/class-wpglobus-customize-options.php:1152,
483
- #: includes/options/class-wpglobus-options.php:1409
484
  msgid "Preferred language set in the browser"
485
  msgstr "Preferred language set in the browser"
486
 
487
- #: includes/admin/class-wpglobus-customize-options.php:1153,
488
- #: includes/options/class-wpglobus-options.php:1396
489
  msgid ""
490
  "When a user comes to the site for the first time, try to find the best "
491
  "matching language version of the page."
@@ -493,45 +370,32 @@ msgstr ""
493
  "When a user comes to the site for the first time, try to find the best "
494
  "matching language version of the page."
495
 
496
- #: includes/admin/class-wpglobus-customize-options.php:1214,
497
- #: includes/admin/class-wpglobus-customize-options.php:1234,
498
- #: includes/admin/class-wpglobus-customize-options.php:1192,
499
- #: includes/options/class-wpglobus-options.php:1368
500
  msgid "Custom JS Code"
501
  msgstr "Custom JS Code"
502
 
503
- #: includes/admin/class-wpglobus-customize-options.php:1232,
504
- #: includes/admin/class-wpglobus-customize-options.php:1276
505
  msgid "Title"
506
  msgstr "Title"
507
 
508
- #: includes/admin/class-wpglobus-customize-options.php:1235
509
  msgid "(Paste your JS code here.)"
510
  msgstr "(Paste your JS code here.)"
511
 
512
- #: includes/admin/class-wpglobus-customize-options.php:1184
513
  msgid ""
514
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
515
  "version 4.9 or later."
516
  msgstr ""
517
 
518
- #: includes/admin/class-wpglobus-customize-options.php:1186
519
  msgid "With your version of WordPress, please use the"
520
  msgstr ""
521
 
522
- #: includes/admin/class-wpglobus-customize-options.php:1188
523
  msgid "WPGlobus Settings page"
524
  msgstr ""
525
 
526
- #: includes/admin/class-wpglobus-customize-options.php:1277
527
  msgid "Label"
528
  msgstr "Label"
529
 
530
- #: includes/admin/class-wpglobus-customize-options.php:1281
531
  msgid "Description"
532
  msgstr "Description"
533
 
534
- #: includes/admin/class-wpglobus-customize-options.php:1345
535
  msgid ""
536
  "Here you can specify which fields should be considered multilingual by "
537
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
@@ -539,24 +403,17 @@ msgstr ""
539
  "Here you can specify which fields should be considered multilingual by "
540
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
541
 
542
- #: includes/admin/class-wpglobus-customize-options.php:1351,
543
- #: includes/options/class-wpglobus-options.php:608
544
  msgid "Thank you for installing WPGlobus!"
545
  msgstr "Thank you for installing WPGlobus!"
546
 
547
- #: includes/admin/class-wpglobus-customize-options.php:1355,
548
- #: includes/options/class-wpglobus-options.php:612
549
  msgid "Read About WPGlobus"
550
  msgstr "Read About WPGlobus"
551
 
552
- #: includes/admin/class-wpglobus-customize-options.php:1358
553
  msgid ""
554
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
555
  msgstr ""
556
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
557
 
558
- #: includes/admin/class-wpglobus-customize-options.php:1363,
559
- #: includes/options/class-wpglobus-options.php:648
560
  msgid ""
561
  "Should you have any questions or comments, please do not hesitate to contact "
562
  "us."
@@ -564,21 +421,14 @@ msgstr ""
564
  "Should you have any questions or comments, please do not hesitate to contact "
565
  "us."
566
 
567
- #: includes/admin/class-wpglobus-customize-options.php:1367,
568
- #: includes/options/class-wpglobus-options.php:652
569
  msgid "Sincerely Yours,"
570
  msgstr "Sincerely Yours,"
571
 
572
- #: includes/admin/class-wpglobus-customize-options.php:1369,
573
- #: includes/options/class-wpglobus-options.php:654,
574
- #: includes/options/wpglobus-options-header.php:34
575
  msgid "The WPGlobus Team"
576
  msgstr "The WPGlobus Team"
577
 
578
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
579
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
580
- #: includes/admin/class-wpglobus-customize-options.php:1388,
581
- #: includes/options/class-wpglobus-options.php:689
582
  msgid ""
583
  "We would hate to see you go. If something goes wrong, do not uninstall "
584
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
@@ -586,8 +436,6 @@ msgstr ""
586
  "We would hate to see you go. If something goes wrong, do not uninstall "
587
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
588
 
589
- #: includes/admin/class-wpglobus-customize-options.php:1395,
590
- #: includes/options/class-wpglobus-options.php:696
591
  msgid ""
592
  "Please note that if you deactivate WPGlobus, your site will show all the "
593
  "languages together, mixed up. You will need to remove all translations, "
@@ -599,8 +447,6 @@ msgstr ""
599
 
600
  #. translators: %s: link to the Clean-up Tool
601
  #. translators: %s: link to the Clean-up Tool.
602
- #: includes/admin/class-wpglobus-customize-options.php:1400,
603
- #: includes/options/class-wpglobus-options.php:700
604
  msgid ""
605
  "If there are just a few places, you should edit them manually. To "
606
  "automatically remove all translations at once, you can use the %s. WARNING: "
@@ -614,181 +460,133 @@ msgstr ""
614
 
615
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
616
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
617
- #: includes/admin/class-wpglobus-customize-options.php:1403,
618
- #: includes/options/class-wpglobus-options.php:677
619
  msgid "%1$sClean-up Tool%2$s"
620
  msgstr "%1$sClean-up Tool%2$s"
621
 
622
  #. translators: %s: name of current theme
623
- #: includes/admin/class-wpglobus-customize-options.php:1415
624
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
625
  msgstr "Sorry, WPGlobus customizer doesn't support current theme %s."
626
 
627
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
628
- #: includes/admin/class-wpglobus-customize-options.php:1421
629
  msgid "Please use %1$sWPGlobus options page%2$s instead."
630
  msgstr "Please use %1$sWPGlobus options page%2$s instead."
631
 
632
- #: includes/admin/class-wpglobus-customize-options.php:1485
633
  msgid "Expand/Shrink"
634
  msgstr ""
635
 
636
- #: includes/admin/class-wpglobus-dashboard-news.php:43,
637
- #: includes/admin/class-wpglobus-dashboard-news.php:59
638
  msgid "WPGlobus News"
639
  msgstr "WPGlobus News"
640
 
641
- #: includes/admin/class-wpglobus-language-edit.php:197,
642
- #: includes/admin/class-wpglobus-language-edit.php:192
643
  msgid "Options updated"
644
  msgstr "Options updated"
645
 
646
- #: includes/admin/class-wpglobus-language-edit.php:272
647
  msgid "Please enter a language code!"
648
  msgstr "Please enter a language code!"
649
 
650
- #: includes/admin/class-wpglobus-language-edit.php:276
651
  msgid "Language code already exists!"
652
  msgstr "Language code already exists!"
653
 
654
- #: includes/admin/class-wpglobus-language-edit.php:280
655
  msgid "Please specify the language flag!"
656
  msgstr "Please specify the language flag!"
657
 
658
- #: includes/admin/class-wpglobus-language-edit.php:284
659
  msgid "Please enter the language name!"
660
  msgstr "Please enter the language name!"
661
 
662
- #: includes/admin/class-wpglobus-language-edit.php:288
663
  msgid "Please enter the language name in English!"
664
  msgstr "Please enter the language name in English!"
665
 
666
- #: includes/admin/class-wpglobus-language-edit.php:292
667
  msgid "Please enter the locale!"
668
  msgstr "Please enter the locale!"
669
 
670
- #: includes/admin/class-wpglobus-language-edit.php:354
671
  msgid "Add Language"
672
  msgstr "Add Language"
673
 
674
- #: includes/admin/class-wpglobus-language-edit.php:351,
675
- #: includes/admin/class-wpglobus-language-edit.php:462,
676
- #: includes/admin/class-wpglobus-language-edit.php:455
677
  msgid "Delete Language"
678
  msgstr "Delete Language"
679
 
680
- #: includes/admin/class-wpglobus-language-edit.php:349
681
  msgid "Edit Language"
682
  msgstr "Edit Language"
683
 
684
- #: includes/admin/class-wpglobus-language-edit.php:384
685
  msgid "Language Code"
686
  msgstr "Language Code"
687
 
688
- #: includes/admin/class-wpglobus-language-edit.php:391
689
  msgid ""
690
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
691
  msgstr ""
692
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
693
 
694
- #: includes/admin/class-wpglobus-language-edit.php:396
695
  msgid "Language flag"
696
  msgstr "Language flag"
697
 
698
- #: includes/admin/class-wpglobus-language-edit.php:412
699
  msgid "Name"
700
  msgstr "Name"
701
 
702
- #: includes/admin/class-wpglobus-language-edit.php:417
703
  msgid ""
704
  "The name of the language in its native alphabet. (Examples: English, Русский)"
705
  msgstr ""
706
  "The name of the language in its native alphabet. (Examples: English, Русский)"
707
 
708
- #: includes/admin/class-wpglobus-language-edit.php:422
709
  msgid "Name in English"
710
  msgstr "Name in English"
711
 
712
- #: includes/admin/class-wpglobus-language-edit.php:427
713
  msgid "The name of the language in English"
714
  msgstr "The name of the language in English"
715
 
716
- #: includes/admin/class-wpglobus-language-edit.php:432,
717
- #: includes/options/fields/table/class-wpglobus-languages-table.php:115
718
  msgid "Locale"
719
  msgstr "Locale"
720
 
721
- #: includes/admin/class-wpglobus-language-edit.php:437
722
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
723
  msgstr "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
724
 
725
- #: includes/admin/class-wpglobus-language-edit.php:460
726
  msgid "Are you sure you want to delete?"
727
  msgstr "Are you sure you want to delete?"
728
 
729
- #: includes/admin/class-wpglobus-language-edit.php:447
730
  msgid "Save Changes"
731
  msgstr "Save Changes"
732
 
733
- #: includes/admin/class-wpglobus-language-edit.php:470
734
  msgid "Back to the WPGlobus Settings"
735
  msgstr "Back to the WPGlobus Settings"
736
 
737
- #: includes/admin/class-wpglobus-plugin-install.php:308
738
  msgid "Current Version"
739
  msgstr "Current Version"
740
 
741
- #: includes/admin/class-wpglobus-plugin-install.php:309
742
  msgid "Get it now!"
743
  msgstr "Get it now!"
744
 
745
- #: includes/admin/class-wpglobus-plugin-install.php:310
746
  msgid "Premium add-on"
747
  msgstr "Premium add-on"
748
 
749
- #: includes/admin/class-wpglobus-plugin-install.php:311,
750
- #: includes/options/fields/table/class-wpglobus-languages-table.php:472
751
  msgid "Installed"
752
  msgstr "Installed"
753
 
754
  #. translators: placeholders are for the HTML tags.
755
- #: includes/admin/class-wpglobus-plugin-install.php:319
756
  msgid ""
757
  "If you have already purchased a WPGlobus premium extension, please read "
758
  "%1$sthe installation instructions here%2$s"
759
  msgstr ""
760
 
761
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
762
- #: includes/options/class-wpglobus-options.php:726
763
  msgid "Help Desk"
764
  msgstr "Help Desk"
765
 
766
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:185
767
  msgid "Email not sent. Please fill in the entire form."
768
  msgstr ""
769
 
770
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:195
771
  msgid ""
772
  "Email not sent. Please verify that your name and email are entered correctly."
773
  msgstr ""
774
 
775
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:216
776
  msgid "Email sent."
777
  msgstr ""
778
 
779
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
780
  msgid "Thank you for using WPGlobus!"
781
  msgstr "Thank you for using WPGlobus!"
782
 
783
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
784
  msgid "Our Support Team is here to answer your questions or concerns."
785
  msgstr "Our Support Team is here to answer your questions or concerns."
786
 
787
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
788
  msgid "To help us serve you better:"
789
  msgstr "To help us serve you better:"
790
 
791
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
792
  msgid ""
793
  "Please check if the problem persists if you switch to a standard WordPress "
794
  "theme."
@@ -796,56 +594,43 @@ msgstr ""
796
  "Please check if the problem persists if you switch to a standard WordPress "
797
  "theme."
798
 
799
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
800
  msgid ""
801
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
802
  msgstr ""
803
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
804
 
805
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
806
  msgid "Please fill in and submit the contact form:"
807
  msgstr ""
808
 
809
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
810
  msgid "Please make sure the email address is correct."
811
  msgstr ""
812
 
813
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
814
  msgid "Subject"
815
  msgstr ""
816
 
817
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
818
  msgid "Short description of the problem"
819
  msgstr ""
820
 
821
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
822
  msgid "Detailed description"
823
  msgstr ""
824
 
825
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
826
  msgid "Technical Information"
827
  msgstr "Technical Information"
828
 
829
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
830
  msgid "This information helps us to find the problem source"
831
  msgstr ""
832
 
833
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:161
834
  msgid ""
835
  "Alternatively, please email %s. Do not forget to copy and paste the "
836
  "technical information to your email message."
837
  msgstr ""
838
 
839
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:89
840
  msgid "WPGlobus Recommends:"
841
  msgstr "WPGlobus Recommends:"
842
 
843
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:98,
844
- #: includes/options/class-wpglobus-options.php:933
845
  msgid "WPGlobus for WooCommerce"
846
  msgstr "WPGlobus for WooCommerce"
847
 
848
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:102
849
  msgid ""
850
  "Translate product titles and descriptions, product categories, tags and "
851
  "attributes."
@@ -853,171 +638,127 @@ msgstr ""
853
  "Translate product titles and descriptions, product categories, tags and "
854
  "attributes."
855
 
856
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:107
857
  msgid "Get it now:"
858
  msgstr "Get it now:"
859
 
860
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:117
861
  msgid "WooCommerce Multi-Currency"
862
  msgstr ""
863
 
864
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:121
865
  msgid "Accept multiple currencies in your online store!"
866
  msgstr "Accept multiple currencies in your online store!"
867
 
868
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:126,
869
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:185
870
  msgid "Check it out:"
871
  msgstr "Check it out:"
872
 
873
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:195
874
  msgid "To translate permalinks, please activate the module Slug."
875
  msgstr ""
876
 
877
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:183
878
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
879
  msgstr ""
880
 
881
- #: includes/builders/class-wpglobus-builder.php:278,
882
- #: includes/class-wpglobus.php:3577
883
  msgid "Save draft before using extra language."
884
  msgstr ""
885
 
886
- #: includes/builders/class-wpglobus-builder.php:371
887
  msgid "Builder"
888
  msgstr ""
889
 
890
- #: includes/builders/class-wpglobus-builder.php:395
891
  msgid "Сompatibility Settings"
892
  msgstr ""
893
 
894
  #. translators: ON/OFF status of WPGlobus on the edit pages.
895
  #. translators: ON/OFF status of WPGlobus on the edit pages.
896
- #: includes/builders/elementor/class-wpglobus-elementor.php:255,
897
- #: includes/class-wpglobus.php:1263
898
  msgid "ON"
899
  msgstr ""
900
 
901
- #: includes/builders/elementor/class-wpglobus-elementor.php:256,
902
- #: includes/class-wpglobus.php:1264
903
  msgid "Turn off"
904
  msgstr ""
905
 
906
- #: includes/builders/elementor/class-wpglobus-elementor.php:250,
907
- #: includes/class-wpglobus.php:1258
908
  msgid "OFF"
909
  msgstr ""
910
 
911
- #: includes/builders/elementor/class-wpglobus-elementor.php:251,
912
- #: includes/class-wpglobus.php:1259
913
  msgid "Turn on"
914
  msgstr ""
915
 
916
- #: includes/builders/elementor/class-wpglobus-elementor.php:281
917
  msgid "Elementor"
918
  msgstr ""
919
 
920
- #: includes/builders/elementor/class-wpglobus-elementor.php:508
921
  msgid "WPGlobus languages"
922
  msgstr ""
923
 
924
- #: includes/builders/elementor/class-wpglobus-elementor.php:514
925
  msgid "current"
926
  msgstr ""
927
 
928
- #: includes/builders/elementor/class-wpglobus-elementor.php:675
929
  msgid ""
930
  "WPGlobus provides multilingual support for Elementor only when the option "
931
  "%1$s%2$s%3$s is set to %4$s."
932
  msgstr ""
933
 
934
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:228
935
  msgid "Before switching the language, please save draft or publish."
936
  msgstr ""
937
 
938
  #. translators: Metabox title FOR language.
939
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:318
940
  msgctxt "filter__seo_meta_box_title"
941
  msgid "for"
942
  msgstr ""
943
 
944
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:392
945
  msgid "Page is being reloaded. Please wait..."
946
  msgstr ""
947
 
948
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:393
949
  msgid ""
950
  "Before switching the language, please save draft or publish, then reload "
951
  "page."
952
  msgstr ""
953
 
954
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
955
  msgid ""
956
  "WPGlobus provides multilingual support for Elementor only when the option "
957
  "`CSS Print Method` is set to `External File`."
958
  msgstr ""
959
 
960
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
961
  msgid "Open Elementor Settings page"
962
  msgstr ""
963
 
964
- #: includes/class-wpglobus-widget.php:27
965
  msgid "WPGlobus widget"
966
  msgstr "WPGlobus widget"
967
 
968
- #: includes/class-wpglobus-widget.php:29
969
  msgid "Add language switcher"
970
  msgstr "Add language switcher"
971
 
972
- #: includes/class-wpglobus-widget.php:32
973
  msgid "Flags"
974
  msgstr "Flags"
975
 
976
- #: includes/class-wpglobus-widget.php:33
977
  msgid "List"
978
  msgstr "List"
979
 
980
- #: includes/class-wpglobus-widget.php:34
981
  msgid "List with flags"
982
  msgstr "List with flags"
983
 
984
- #: includes/class-wpglobus-widget.php:35
985
  msgid "Select"
986
  msgstr "Select"
987
 
988
- #: includes/class-wpglobus-widget.php:36
989
  msgid "Select with language code"
990
  msgstr "Select with language code"
991
 
992
- #: includes/class-wpglobus-widget.php:37
993
  msgid "Dropdown"
994
  msgstr "Dropdown"
995
 
996
- #: includes/class-wpglobus-widget.php:38
997
  msgid "Dropdown with flags"
998
  msgstr "Dropdown with flags"
999
 
1000
- #: includes/class-wpglobus-widget.php:264
1001
  msgid "Selector type"
1002
  msgstr "Selector type"
1003
 
1004
- #: includes/class-wpglobus.php:1447
1005
  msgid "You cannot disable the main language."
1006
  msgstr "You cannot disable the main language."
1007
 
1008
- #: includes/class-wpglobus.php:1672
1009
  msgid "Need a multilingual slug?"
1010
  msgstr "Need a multilingual slug?"
1011
 
1012
- #: includes/class-wpglobus.php:1655
1013
  msgid "*) Available after the menu is saved."
1014
  msgstr "*) Available after the menu is saved."
1015
 
1016
- #: includes/class-wpglobus.php:4025
1017
  msgid "You must enable Pretty Permalinks to use WPGlobus."
1018
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
1019
 
1020
- #: includes/class-wpglobus.php:4027
1021
  msgid ""
1022
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1023
  "default option."
@@ -1025,193 +766,150 @@ msgstr ""
1025
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
1026
  "default option."
1027
 
1028
- #: includes/options/class-wpglobus-options.php:281
1029
  msgid "Language Selector Menu Style"
1030
  msgstr ""
1031
 
1032
- #: includes/options/class-wpglobus-options.php:282,
1033
- #: includes/options/class-wpglobus-options.php:802,
1034
- #: includes/options/class-wpglobus-options.php:871
1035
  msgid "WPGlobus Plus"
1036
  msgstr ""
1037
 
1038
- #: includes/options/class-wpglobus-options.php:283
1039
  msgid "Drop-down languages menu or Flat (in one line)"
1040
  msgstr ""
1041
 
1042
- #: includes/options/class-wpglobus-options.php:286
1043
  msgid "Do not change"
1044
  msgstr ""
1045
 
1046
- #: includes/options/class-wpglobus-options.php:287
1047
  msgid "Drop-down (vertical)"
1048
  msgstr ""
1049
 
1050
- #: includes/options/class-wpglobus-options.php:288
1051
  msgid "Flat (horizontal)"
1052
  msgstr ""
1053
 
1054
- #: includes/options/class-wpglobus-options.php:343
1055
  msgid ""
1056
  "If you see this message then your browser may not display the WPGlobus "
1057
  "Settings panel properly. Please try another browser."
1058
  msgstr ""
1059
 
1060
- #: includes/options/class-wpglobus-options.php:599,
1061
- #: includes/options/class-wpglobus-options.php:1577
1062
  msgid "Сompatibility"
1063
  msgstr ""
1064
 
1065
  #. translators: placeholders for "strong" tags.
1066
- #: includes/options/class-wpglobus-options.php:616
1067
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
1068
  msgstr ""
1069
 
1070
  #. translators: placeholders for "strong" tags.
1071
- #: includes/options/class-wpglobus-options.php:619
1072
  msgid ""
1073
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
1074
  "the language attributes: name, code, flag icon, etc."
1075
  msgstr ""
1076
 
1077
- #: includes/options/class-wpglobus-options.php:622
1078
  msgid "Important notes"
1079
  msgstr ""
1080
 
1081
  #. translators: placeholders for "strong" tags.
1082
- #: includes/options/class-wpglobus-options.php:624
1083
  msgid "Version %1$s1.9.17%2$s "
1084
  msgstr ""
1085
 
1086
  #. translators: placeholders for "strong" tags.
1087
- #: includes/options/class-wpglobus-options.php:627
1088
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
1089
  msgstr ""
1090
 
1091
  #. translators: placeholders for "strong" tags; compatibility tab link.
1092
- #: includes/options/class-wpglobus-options.php:630
1093
  msgid ""
1094
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
1095
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
1096
  msgstr ""
1097
 
1098
  #. translators: placeholders for "strong" tags; compatibility tab link.
1099
- #: includes/options/class-wpglobus-options.php:633
1100
  msgid ""
1101
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
1102
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
1103
  msgstr ""
1104
 
1105
  #. translators: placeholders for "strong" tags.
1106
- #: includes/options/class-wpglobus-options.php:637
1107
  msgid "Version %1$s2.2.11%2$s "
1108
  msgstr ""
1109
 
1110
- #: includes/options/class-wpglobus-options.php:639
1111
  msgid "Starting from this version"
1112
  msgstr ""
1113
 
1114
  #. translators: placeholders for "strong" tags.
1115
- #: includes/options/class-wpglobus-options.php:642
1116
  msgid ""
1117
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
1118
  "(CPT)."
1119
  msgstr ""
1120
 
1121
  #. translators: placeholders for "strong" tags.
1122
- #: includes/options/class-wpglobus-options.php:645
1123
  msgid ""
1124
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
1125
  "the %1$s[%3$s]%2$s tab."
1126
  msgstr ""
1127
 
1128
- #: includes/options/class-wpglobus-options.php:662
1129
  msgid "Welcome!"
1130
  msgstr "Welcome!"
1131
 
1132
- #: includes/options/class-wpglobus-options.php:685
1133
  msgid "Deactivating / Uninstalling"
1134
  msgstr "Deactivating / Uninstalling"
1135
 
1136
- #: includes/options/class-wpglobus-options.php:711
1137
  msgid "Uninstall"
1138
  msgstr ""
1139
 
1140
- #: includes/options/class-wpglobus-options.php:741
1141
  msgid "All add-ons"
1142
  msgstr ""
1143
 
1144
- #: includes/options/class-wpglobus-options.php:756
1145
  msgid "Mobile Menu"
1146
  msgstr ""
1147
 
1148
- #: includes/options/class-wpglobus-options.php:771
1149
  msgid "Language Widgets"
1150
  msgstr ""
1151
 
1152
- #: includes/options/class-wpglobus-options.php:841
1153
  msgid "We Recommend..."
1154
  msgstr ""
1155
 
1156
- #: includes/options/class-wpglobus-options.php:873
1157
  msgid ""
1158
  "Our premium add-on, WPGlobus Plus, will add several features to your "
1159
  "website, such as:"
1160
  msgstr ""
1161
 
1162
- #: includes/options/class-wpglobus-options.php:876
1163
  msgid ""
1164
  "- Ability to write a post in one language and immediately publish it, not "
1165
  "waiting for the translation to other languages;"
1166
  msgstr ""
1167
 
1168
- #: includes/options/class-wpglobus-options.php:879
1169
  msgid "- Set different URLs for each translation;"
1170
  msgstr ""
1171
 
1172
- #: includes/options/class-wpglobus-options.php:882
1173
  msgid ""
1174
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
1175
  "for each translation;"
1176
  msgstr ""
1177
 
1178
- #: includes/options/class-wpglobus-options.php:885
1179
  msgid "- and more..."
1180
  msgstr ""
1181
 
1182
- #: includes/options/class-wpglobus-options.php:888,
1183
- #: includes/options/class-wpglobus-options.php:945,
1184
- #: includes/options/class-wpglobus-options.php:1003
1185
  msgid "Click here to download"
1186
  msgstr ""
1187
 
1188
- #: includes/options/class-wpglobus-options.php:936
1189
  msgid ""
1190
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
1191
  "translate your blog posts and pages to many languages."
1192
  msgstr ""
1193
 
1194
- #: includes/options/class-wpglobus-options.php:939
1195
  msgid "The next step is to translate your WooCommerce-based store!"
1196
  msgstr ""
1197
 
1198
- #: includes/options/class-wpglobus-options.php:942
1199
  msgid ""
1200
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
1201
  "translate product titles and descriptions, categories, tags and attributes."
1202
  msgstr ""
1203
 
1204
- #: includes/options/class-wpglobus-options.php:989
1205
  msgid "Multi-currency"
1206
  msgstr ""
1207
 
1208
- #: includes/options/class-wpglobus-options.php:992
1209
  msgid ""
1210
  "Your WooCommerce-powered store is set to show prices and accept payments in "
1211
  "a single currency only."
1212
  msgstr ""
1213
 
1214
- #: includes/options/class-wpglobus-options.php:996
1215
  msgid ""
1216
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
1217
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
@@ -1219,460 +917,348 @@ msgid ""
1219
  "positioning for global growth!"
1220
  msgstr ""
1221
 
1222
- #: includes/options/class-wpglobus-options.php:1000
1223
  msgid ""
1224
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
1225
  "re-calculating prices on-the-fly."
1226
  msgstr ""
1227
 
1228
- #: includes/options/class-wpglobus-options.php:1037
1229
  msgid "WPGlobus Premium Add-ons"
1230
  msgstr ""
1231
 
1232
- #: includes/options/class-wpglobus-options.php:1039
1233
  msgid ""
1234
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
1235
  "you will be able to:"
1236
  msgstr ""
1237
 
1238
- #: includes/options/class-wpglobus-options.php:1044
1239
  msgid ""
1240
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
1241
  "моя-страница and so on);"
1242
  msgstr ""
1243
 
1244
- #: includes/options/class-wpglobus-options.php:1047
1245
  msgid ""
1246
  "Postpone translation to some languages and <strong>publish only the "
1247
  "translated texts</strong>;"
1248
  msgstr ""
1249
 
1250
- #: includes/options/class-wpglobus-options.php:1050
1251
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
1252
  msgstr ""
1253
 
1254
- #: includes/options/class-wpglobus-options.php:1053
1255
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
1256
  msgstr ""
1257
 
1258
- #: includes/options/class-wpglobus-options.php:1056
1259
  msgid ""
1260
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
1261
  "strong>;"
1262
  msgstr ""
1263
 
1264
- #: includes/options/class-wpglobus-options.php:1060
1265
  msgid "...and more."
1266
  msgstr ""
1267
 
1268
- #: includes/options/class-wpglobus-options.php:1063
1269
  msgid "Click here to visit the WPGlobus Store"
1270
  msgstr ""
1271
 
1272
- #: includes/options/class-wpglobus-options.php:1104
1273
  msgid "Select a language"
1274
  msgstr "Select a language"
1275
 
1276
  #. translators: %3$s placeholder for the icon (actual picture).
1277
- #: includes/options/class-wpglobus-options.php:1133
1278
  msgid ""
1279
  "Place the %1$smain language%2$s of your site at the top of the list by "
1280
  "dragging the %3$s icons."
1281
  msgstr ""
1282
 
1283
  #. translators: placeholders for the "strong" HTML tags.
1284
- #: includes/options/class-wpglobus-options.php:1136
1285
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
1286
  msgstr ""
1287
 
1288
  #. translators: placeholders for the "strong" HTML tags.
1289
- #: includes/options/class-wpglobus-options.php:1139
1290
  msgid "%1$sAdd%2$s more languages using the section below."
1291
  msgstr ""
1292
 
1293
- #: includes/options/class-wpglobus-options.php:1140
1294
  msgid "When done, click the [Save Changes] button."
1295
  msgstr "When done, click the [Save Changes] button."
1296
 
1297
  #. translators: %s - placeholder for the "Save Changes" button text.
1298
- #: includes/options/class-wpglobus-options.php:1151
1299
  msgid "Press the %s button to confirm."
1300
  msgstr ""
1301
 
1302
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
1303
- #: includes/options/class-wpglobus-options.php:1168
1304
  msgid "-- none --"
1305
  msgstr ""
1306
 
1307
- #: includes/options/class-wpglobus-options.php:1169
1308
  msgid "All menus"
1309
  msgstr ""
1310
 
1311
- #: includes/options/class-wpglobus-options.php:1182
1312
  msgid "Instructions:"
1313
  msgstr "Instructions:"
1314
 
1315
- #: includes/options/class-wpglobus-options.php:1242
1316
  msgid "(Found in some themes)"
1317
  msgstr "(Found in some themes)"
1318
 
1319
- #: includes/options/class-wpglobus-options.php:1244
1320
  msgid "Enable"
1321
  msgstr "Enable"
1322
 
1323
- #: includes/options/class-wpglobus-options.php:1259
1324
  msgid "Languages table"
1325
  msgstr "Languages table"
1326
 
1327
- #: includes/options/class-wpglobus-options.php:1265
1328
  msgid "Use this table to add, edit or delete languages."
1329
  msgstr "Use this table to add, edit or delete languages."
1330
 
1331
- #: includes/options/class-wpglobus-options.php:1266
1332
  msgid "NOTE: you cannot remove the main language."
1333
  msgstr "NOTE: you cannot remove the main language."
1334
 
1335
- #: includes/options/class-wpglobus-options.php:1314
1336
  msgid "WPGlobus is enabled on these Post Types"
1337
  msgstr ""
1338
 
1339
- #: includes/options/class-wpglobus-options.php:1315
1340
  msgid "Uncheck to disable"
1341
  msgstr ""
1342
 
1343
- #: includes/options/class-wpglobus-options.php:1316
1344
  msgid ""
1345
  "Please note that there are post types, which status is managed by other "
1346
  "plugins and cannot be changed here."
1347
  msgstr ""
1348
 
1349
- #: includes/options/class-wpglobus-options.php:1321
1350
  msgid "Post Types"
1351
  msgstr ""
1352
 
1353
- #: includes/options/class-wpglobus-options.php:1337
1354
  msgid ""
1355
  "You should put here only the code provided by WPGlobus Support. Do not write "
1356
  "anything else in the sections below as it might break the functionality of "
1357
  "your website!"
1358
  msgstr ""
1359
 
1360
- #: includes/options/class-wpglobus-options.php:1378
1361
  msgid "Custom Code"
1362
  msgstr ""
1363
 
1364
- #: includes/options/class-wpglobus-options.php:1486,
1365
- #: includes/options/class-wpglobus-options.php:1618,
1366
- #: includes/options/class-wpglobus-options.php:1729
1367
  msgid "Enabled"
1368
  msgstr ""
1369
 
1370
- #: includes/options/class-wpglobus-options.php:1499
1371
  msgid "Builders support"
1372
  msgstr ""
1373
 
1374
- #: includes/options/class-wpglobus-options.php:1551
1375
  msgid "Builder mode is enabled on these Post Types"
1376
  msgstr ""
1377
 
1378
- #: includes/options/class-wpglobus-options.php:1617
1379
  msgid "Old fashioned language switcher"
1380
  msgstr ""
1381
 
1382
- #: includes/options/class-wpglobus-options.php:1623
1383
  msgid "Block Editor"
1384
  msgstr ""
1385
 
1386
- #: includes/options/class-wpglobus-options.php:1624
1387
  msgid "Block Editor Options"
1388
  msgstr ""
1389
 
1390
- #: includes/options/class-wpglobus-options.php:1653
1391
  msgid ""
1392
  "With the current settings, you will see the following lines in the section "
1393
  "HEAD of your site pages"
1394
  msgstr ""
1395
 
1396
- #: includes/options/class-wpglobus-options.php:1655
1397
  msgid "(example for two languages)"
1398
  msgstr ""
1399
 
1400
- #: includes/options/class-wpglobus-options.php:1702
1401
  msgid ""
1402
  "Tell search engines about localized versions of your pages using the "
1403
  "hreflang tag"
1404
  msgstr ""
1405
 
1406
- #: includes/options/class-wpglobus-options.php:1711
1407
  msgid "Output the hreflang tag as"
1408
  msgstr ""
1409
 
1410
- #: includes/options/class-wpglobus-options.php:1714
1411
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1412
  msgstr ""
1413
 
1414
- #: includes/options/class-wpglobus-options.php:1715
1415
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1416
  msgstr ""
1417
 
1418
- #: includes/options/class-wpglobus-options.php:1716
1419
  msgid "Language code only (en, ru, etc.)"
1420
  msgstr ""
1421
 
1422
- #: includes/options/class-wpglobus-options.php:1728
1423
  msgid "Use the code `x-default` for the main language"
1424
  msgstr ""
1425
 
1426
- #: includes/options/class-wpglobus-options.php:1734
1427
  msgid "Multilingual SEO"
1428
  msgstr ""
1429
 
1430
- #: includes/options/class-wpglobus-options.php:1735
1431
  msgid "Multilingual SEO Options"
1432
  msgstr ""
1433
 
1434
- #: includes/options/class-wpglobus-options.php:1772
1435
  msgid ""
1436
  "With WPGlobus, you can get translations for posts and pages using REST API."
1437
  msgstr ""
1438
 
1439
- #: includes/options/class-wpglobus-options.php:1800,
1440
- #: includes/options/class-wpglobus-options.php:1808,
1441
- #: includes/options/class-wpglobus-options.php:1780,
1442
- #: includes/options/class-wpglobus-options.php:1789
1443
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1444
  msgstr ""
1445
 
1446
- #: includes/options/class-wpglobus-options.php:1777
1447
  msgid ""
1448
  "For demonstration, you can try the first post that WordPress creates at the "
1449
  "initial installation."
1450
  msgstr ""
1451
 
1452
- #: includes/options/class-wpglobus-options.php:1819
1453
  msgid ""
1454
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1455
  "information."
1456
  msgstr ""
1457
 
1458
- #: includes/options/class-wpglobus-options.php:1826
1459
  msgid ""
1460
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1461
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1462
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1463
  msgstr ""
1464
 
1465
- #: includes/options/class-wpglobus-options.php:1839
1466
  msgid "Description:"
1467
  msgstr ""
1468
 
1469
- #: includes/options/class-wpglobus-options.php:1846,
1470
- #: includes/options/class-wpglobus-options.php:1847
1471
  msgid "REST API"
1472
  msgstr ""
1473
 
1474
- #: includes/options/class-wpglobus-options.php:2180
1475
  msgid "Translate strings"
1476
  msgstr ""
1477
 
1478
- #: includes/options/fields/table/class-wpglobus-languages-table.php:66
1479
  msgid "item"
1480
  msgstr "item"
1481
 
1482
- #: includes/options/fields/table/class-wpglobus-languages-table.php:68
1483
  msgid "items"
1484
  msgstr "items"
1485
 
1486
- #: includes/options/fields/table/class-wpglobus-languages-table.php:88
1487
  msgid "Code"
1488
  msgstr "Code"
1489
 
1490
- #: includes/options/fields/table/class-wpglobus-languages-table.php:94
1491
  msgid "Edit"
1492
  msgstr "Edit"
1493
 
1494
- #: includes/options/fields/table/class-wpglobus-languages-table.php:99
1495
  msgid "Delete"
1496
  msgstr "Delete"
1497
 
1498
- #: includes/options/fields/table/class-wpglobus-languages-table.php:105
1499
  msgid "File"
1500
  msgstr "File"
1501
 
1502
- #: includes/options/fields/table/class-wpglobus-languages-table.php:110
1503
  msgid "Flag"
1504
  msgstr "Flag"
1505
 
1506
- #: includes/options/fields/table/class-wpglobus-languages-table.php:120
1507
  msgid "Language name"
1508
  msgstr "Language name"
1509
 
1510
- #: includes/options/fields/table/class-wpglobus-languages-table.php:125
1511
  msgid "English language name"
1512
  msgstr "English language name"
1513
 
1514
- #: includes/options/fields/table/class-wpglobus-languages-table.php:151
1515
  msgid "No items found"
1516
  msgstr "No items found"
1517
 
1518
- #: includes/options/fields/table/class-wpglobus-languages-table.php:164
1519
  msgid "Add new Language"
1520
  msgstr "Add new Language"
1521
 
1522
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:164
1523
  msgid "No items of this type were found."
1524
  msgstr ""
1525
 
1526
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:107
1527
  msgid "Select an item"
1528
  msgstr ""
1529
 
1530
- #: includes/options/templates/compatibility-beta.php:15
1531
  msgid "Multilingual support of this add-on is currently in Beta stage."
1532
  msgstr ""
1533
 
1534
- #: includes/options/templates/compatibility-beta.php:17
1535
  msgid "We do not recommend using it on production sites."
1536
  msgstr ""
1537
 
1538
- #: includes/options/templates/compatibility-beta.php:23
1539
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1540
  msgstr ""
1541
 
1542
- #: includes/options/templates/compatibility.php:69
1543
  msgid "WordPress version"
1544
  msgstr ""
1545
 
1546
- #: includes/options/templates/compatibility.php:44
1547
  msgid "In the WordPress core"
1548
  msgstr ""
1549
 
1550
- #: includes/options/templates/compatibility.php:46
1551
  msgid "Core"
1552
  msgstr ""
1553
 
1554
- #: includes/options/templates/compatibility.php:52,
1555
- #: includes/options/templates/compatibility.php:79
1556
  msgid "Current version"
1557
  msgstr ""
1558
 
1559
- #: includes/options/templates/compatibility.php:53,
1560
- #: includes/options/templates/compatibility.php:81
1561
  msgid "Stage"
1562
  msgstr ""
1563
 
1564
- #: includes/options/templates/compatibility.php:54,
1565
- #: includes/options/templates/compatibility.php:82
1566
  msgid "Status"
1567
  msgstr ""
1568
 
1569
- #: includes/options/templates/compatibility.php:60
1570
  msgid "Block editor"
1571
  msgstr ""
1572
 
1573
- #: includes/options/templates/compatibility.php:62
1574
  msgid "production"
1575
  msgstr ""
1576
 
1577
- #: includes/options/templates/compatibility.php:73
1578
  msgid "List of supported add-ons"
1579
  msgstr ""
1580
 
1581
- #: includes/options/templates/compatibility.php:78
1582
  msgid "Add-on"
1583
  msgstr ""
1584
 
1585
- #: includes/options/templates/compatibility.php:80
1586
  msgid "Supported minimum version"
1587
  msgstr ""
1588
 
1589
- #: includes/options/templates/compatibility.php:105
1590
  msgid "Not installed"
1591
  msgstr ""
1592
 
1593
- #: includes/options/templates/compatibility.php:102
1594
  msgid "Installed, inactive"
1595
  msgstr ""
1596
 
1597
- #: includes/options/templates/compatibility.php:100
1598
  msgid "Active"
1599
  msgstr "Active"
1600
 
1601
- #: includes/options/templates/customize-intro.php:35
1602
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1603
  msgstr ""
1604
 
1605
- #: includes/options/templates/customize-intro.php:39
1606
  msgid "However, some themes do not follow all WordPress standards strictly."
1607
  msgstr ""
1608
 
1609
- #: includes/options/templates/customize-intro.php:41
1610
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1611
  msgstr ""
1612
 
1613
- #: includes/options/templates/customize-intro.php:45
1614
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1615
  msgstr ""
1616
 
1617
- #: includes/options/templates/customize-intro.php:53
1618
  msgid ""
1619
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1620
  "With those themes, WPGlobus Customizer is switched off by default"
1621
  msgstr ""
1622
 
1623
- #: includes/options/templates/customize-intro.php:60
1624
  msgid "The currently active theme is"
1625
  msgstr ""
1626
 
1627
- #: includes/options/templates/customize-intro.php:66
1628
  msgid "In the current version, WPGlobus Customizer does not support"
1629
  msgstr ""
1630
 
1631
- #: includes/options/templates/customize-intro.php:70
1632
  msgid "translation of the navigation menus"
1633
  msgstr ""
1634
 
1635
- #: includes/options/templates/customize-intro.php:72
1636
  msgid "to translate, please go to"
1637
  msgstr ""
1638
 
1639
- #: includes/options/templates/customize-intro.php:81
1640
  msgid "Go to Customizer"
1641
  msgstr ""
1642
 
1643
- #: includes/options/templates/customize-intro.php:88
1644
  msgid "is undefined"
1645
  msgstr ""
1646
 
1647
- #: includes/options/templates/customize-intro.php:85
1648
  msgid "is set to"
1649
  msgstr ""
1650
 
1651
- #: includes/options/templates/customize-intro.php:94
1652
  msgid "by adding to the file wp-config.php"
1653
  msgstr ""
1654
 
1655
- #: includes/options/templates/customize-intro.php:96
1656
  msgid "now"
1657
  msgstr ""
1658
 
1659
- #: includes/options/wpglobus-options-header.php:25
1660
  msgid "We rely on your support!"
1661
  msgstr "We rely on your support!"
1662
 
1663
- #: includes/options/wpglobus-options-header.php:28
1664
  msgid "Please consider a small donation to support the future development."
1665
  msgstr "Please consider a small donation to support the future development."
1666
 
1667
- #: includes/options/wpglobus-options-header.php:32
1668
  msgid "Thank you!"
1669
  msgstr "Thank you!"
1670
 
1671
- #: includes/options/wpglobus-options-header.php:55
1672
  msgid "WPGlobus Plus!"
1673
  msgstr "WPGlobus Plus!"
1674
 
1675
- #: includes/options/wpglobus-options-header.php:58
1676
  msgid ""
1677
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1678
  "separate publishing and more! "
@@ -1680,29 +1266,23 @@ msgstr ""
1680
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1681
  "separate publishing and more! "
1682
 
1683
- #: includes/options/wpglobus-options-header.php:64
1684
  msgid "Get WPGlobus Plus now!"
1685
  msgstr "Get WPGlobus Plus now!"
1686
 
1687
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1688
  msgid ""
1689
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1690
  "the current version."
1691
  msgstr ""
1692
 
1693
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1694
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1695
  msgstr ""
1696
 
1697
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1698
  msgid "WPGlobus warning: "
1699
  msgstr ""
1700
 
1701
- #: wpglobus.php:13
1702
  msgid "https://github.com/WPGlobus/WPGlobus"
1703
  msgstr "https://github.com/WPGlobus/WPGlobus"
1704
 
1705
- #: wpglobus.php:14
1706
  msgid ""
1707
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1708
  "widgets and even custom fields - in multiple languages!"
@@ -1710,7 +1290,6 @@ msgstr ""
1710
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1711
  "widgets and even custom fields - in multiple languages!"
1712
 
1713
- #: wpglobus.php:19
1714
  msgid "https://wpglobus.com/"
1715
  msgstr "https://wpglobus.com/"
1716
 
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
 
 
 
 
 
19
  msgid "Guide"
20
  msgstr "Guide"
21
 
 
 
22
  msgid "WPGlobus Help Desk"
23
  msgstr "WPGlobus Help Desk"
24
 
 
 
 
 
 
 
 
25
  msgid "Add-ons"
26
  msgstr "Add-ons"
27
 
 
28
  msgid "Quick Start"
29
  msgstr "Quick Start"
30
 
 
 
31
  msgid "FAQ"
32
  msgstr "FAQ"
33
 
 
34
  msgid ""
35
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
36
  msgstr ""
37
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
38
 
 
39
  msgid ""
40
  "The mbstring extension is required for the full UTF-8 compatibility and "
41
  "better performance. Without it, some parts of WordPress and WPGlobus may "
47
  "function incorrectly. Please contact your hosting company or systems "
48
  "administrator."
49
 
 
50
  msgid "Go to WPGlobus Settings"
51
  msgstr "Go to WPGlobus Settings"
52
 
 
53
  msgid "Easy as 1-2-3:"
54
  msgstr "Easy as 1-2-3:"
55
 
 
56
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
57
  msgstr "Go to WPGlobus admin menu and choose the countries / languages;"
58
 
 
59
  msgid ""
60
  "Enter the translations to the posts, pages, categories, tags and menus using "
61
  "a clean and simple interface."
63
  "Enter the translations to the posts, pages, categories, tags and menus using "
64
  "a clean and simple interface."
65
 
 
66
  msgid ""
67
  "Switch languages at the front-end using a drop-down menu with language names "
68
  "and country flags."
70
  "Switch languages at the front-end using a drop-down menu with language names "
71
  "and country flags."
72
 
 
73
  msgid "Links:"
74
  msgstr "Links:"
75
 
 
76
  msgid "FAQs"
77
  msgstr "FAQs"
78
 
 
79
  msgid "Contact Us"
80
  msgstr "Contact Us"
81
 
 
82
  msgid "Please give us 5 stars!"
83
  msgstr "Please give us 5 stars!"
84
 
 
85
  msgid "WPGlobus does not translate texts automatically!"
86
  msgstr "WPGlobus does not translate texts automatically!"
87
 
 
88
  msgid ""
89
  "There are many translation companies and individual translators who can help "
90
  "you write and proofread the texts."
92
  "There are many translation companies and individual translators who can help "
93
  "you write and proofread the texts."
94
 
 
95
  msgid ""
96
  "When you choose a translator, please look at their native language, country "
97
  "of residence, specialization and knowledge of WordPress."
100
  "of residence, specialization and knowledge of WordPress."
101
 
102
  #. translators: %s are used to insert HTML link. Keep them in place.
 
103
  msgid ""
104
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
105
  "website. This is not an endorsement, just a courtesy. Please contact them "
109
  "website. This is not an endorsement, just a courtesy. Please contact them "
110
  "directly and let us know how did it work for you!"
111
 
 
112
  msgid "Important notes:"
113
  msgstr "Important notes:"
114
 
 
115
  msgid ""
116
  "WPGlobus only supports the localization URLs in the form of <code>example."
117
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
121
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
122
  "com</code> and language queries <code>example.com?lang=xx</code>."
123
 
 
124
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
125
  msgstr "Some themes and plugins are <strong>not multilingual-ready</strong>."
126
 
 
127
  msgid ""
128
  "They might display some texts with no translation, or with all languages "
129
  "mixed together."
132
  "mixed together."
133
 
134
  #. translators: %s are used to insert HTML link. Keep them in place.
 
135
  msgid ""
136
  "Please contact the theme / plugin author. If they are unable to assist, "
137
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
139
  "Please contact the theme / plugin author. If they are unable to assist, "
140
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
141
 
 
142
  msgid "Language was set on your profile page"
143
  msgstr ""
144
 
 
145
  msgid "Add"
146
  msgstr "Add"
147
 
 
 
148
  msgid "Multilingual Everything!"
149
  msgstr "Multilingual Everything!"
150
 
 
 
151
  msgid ""
152
  "WPGlobus is a family of WordPress plugins assisting you in making "
153
  "multilingual WordPress blogs and sites."
155
  "WPGlobus is a family of WordPress plugins assisting you in making "
156
  "multilingual WordPress blogs and sites."
157
 
 
158
  msgid "Remove the WPGlobus settings (not recommended)"
159
  msgstr "Remove the WPGlobus settings (not recommended)"
160
 
 
161
  msgid "Clean-up Tool"
162
  msgstr "Clean-up Tool"
163
 
 
164
  msgid "Support"
165
  msgstr "Support"
166
 
 
167
  msgid ""
168
  "WARNING: this operation is non-reversible. It is strongly recommended that "
169
  "you backup your database before proceeding."
171
  "WARNING: this operation is non-reversible. It is strongly recommended that "
172
  "you backup your database before proceeding."
173
 
 
174
  msgid ""
175
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
176
  "By running it, you will remove ALL translations you have entered to your "
186
  "might end up with empty titles, no content, no excerpts, blank comments and "
187
  "so on."
188
 
 
189
  msgid ""
190
  "Make sure that your active theme does not have any code related to WPGlobus. "
191
  "Such code could be added by you or by a 3rd party developer. If that code "
194
  msgstr ""
195
 
196
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
 
197
  msgid ""
198
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
199
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
200
  msgstr ""
201
 
 
202
  msgid "You are about to clean the content of the following database tables:"
203
  msgstr "You are about to clean the content of the following database tables:"
204
 
 
205
  msgid "The operations log"
206
  msgstr "The operations log"
207
 
 
208
  msgid ""
209
  "We are going to write a detailed log of all the database changes performed. "
210
  "It should help in the case you need to restore something important. The log "
214
  "It should help in the case you need to restore something important. The log "
215
  "will be written to the file:"
216
 
 
217
  msgid ""
218
  "Uncheck if you do not want to write the operations log (we recommend to keep "
219
  "it checked)"
221
  "Uncheck if you do not want to write the operations log (we recommend to keep "
222
  "it checked)"
223
 
 
224
  msgid "You have been warned..."
225
  msgstr "You have been warned..."
226
 
 
227
  msgid "Please confirm by checking the box below:"
228
  msgstr "Please confirm by checking the box below:"
229
 
 
230
  msgid ""
231
  "I have read and understood everything written on this page. I am aware that "
232
  "by using this tool I may loose some content of my website. I have made a "
238
  "database backup and know how to restore it if necessary. I am fully "
239
  "responsible for the results."
240
 
 
241
  msgid "YES, I CONFIRM"
242
  msgstr "YES, I CONFIRM"
243
 
 
244
  msgid "Process with the Clean-up"
245
  msgstr "Process with the Clean-up"
246
 
 
 
 
 
247
  msgid "Default"
248
  msgstr "Default"
249
 
 
250
  msgid "Section"
251
  msgstr "Section"
252
 
 
253
  msgid "Show all sections"
254
  msgstr "Show all sections"
255
 
 
256
  msgid "Save &amp; Reload"
257
  msgstr "Save &amp; Reload"
258
 
 
 
 
259
  msgid "WPGlobus"
260
  msgstr "WPGlobus"
261
 
 
262
  msgid ""
263
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
264
  msgstr ""
265
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
266
 
 
267
  msgid "Fields Settings"
268
  msgstr "Fields Settings"
269
 
 
270
  msgid "WPGlobus Settings"
271
  msgstr "WPGlobus Settings"
272
 
 
273
  msgid "Help"
274
  msgstr ""
275
 
 
 
276
  msgid "Languages"
277
  msgstr "Languages"
278
 
 
 
279
  msgid "Enabled Languages"
280
  msgstr "Enabled Languages"
281
 
 
 
282
  msgid "These languages are currently enabled on your site."
283
  msgstr "These languages are currently enabled on your site."
284
 
 
 
285
  msgid "Choose a language you would like to enable."
286
  msgstr ""
287
 
 
288
  msgid "Press the [Save & Publish] button to confirm."
289
  msgstr ""
290
 
291
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
292
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
 
 
293
  msgid "or Add new Language %1$s here %2$s"
294
  msgstr "or Add new Language %1$s here %2$s"
295
 
 
 
296
  msgid "Add Languages"
297
  msgstr "Add Languages"
298
 
 
 
299
  msgid "Language Selector Mode"
300
  msgstr "Language Selector Mode"
301
 
 
 
302
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
303
  msgstr "Two-letter Code with flag (en, ru, it, etc.)"
304
 
 
 
305
  msgid "Full Name (English, Russian, Italian, etc.)"
306
  msgstr "Full Name (English, Russian, Italian, etc.)"
307
 
 
 
308
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
309
  msgstr "Full Name with flag (English, Russian, Italian, etc.)"
310
 
 
 
311
  msgid "Flags only"
312
  msgstr "Flags only"
313
 
 
 
314
  msgid ""
315
  "Choose the way language name and country flag are shown in the drop-down menu"
316
  msgstr ""
317
  "Choose the way language name and country flag are shown in the drop-down menu"
318
 
 
319
  msgid "select navigation menu"
320
  msgstr ""
321
 
 
 
 
322
  msgid "Language Selector Menu"
323
  msgstr "Language Selector Menu"
324
 
 
 
 
325
  msgid "Choose the navigation menu where the language selector will be shown"
326
  msgstr "Choose the navigation menu where the language selector will be shown"
327
 
 
328
  msgid "No menus have been created yet. Create some."
329
  msgstr "No menus have been created yet. Create some."
330
 
 
 
331
  msgid "\"All Pages\" menus Language selector"
332
  msgstr "\"All Pages\" menus Language selector"
333
 
 
 
334
  msgid ""
335
  "Adds language selector to the menus that automatically list all existing "
336
  "pages (using `wp_list_pages`)"
338
  "Adds language selector to the menus that automatically list all existing "
339
  "pages (using `wp_list_pages`)"
340
 
 
 
341
  msgid "Custom CSS"
342
  msgstr "Custom CSS"
343
 
 
344
  msgid ""
345
  "Here you can enter the CSS rules to adjust the language selector menu for "
346
  "your theme. Look at the examples in the `style-samples.css` file."
348
  "Here you can enter the CSS rules to adjust the language selector menu for "
349
  "your theme. Look at the examples in the `style-samples.css` file."
350
 
 
351
  msgid "Post types"
352
  msgstr "Post types"
353
 
 
354
  msgid "Uncheck to disable WPGlobus"
355
  msgstr "Uncheck to disable WPGlobus"
356
 
 
 
357
  msgid "Redirect"
358
  msgstr "Redirect"
359
 
 
 
360
  msgid "Choose the language automatically, based on:"
361
  msgstr "Choose the language automatically, based on:"
362
 
 
 
363
  msgid "Preferred language set in the browser"
364
  msgstr "Preferred language set in the browser"
365
 
 
 
366
  msgid ""
367
  "When a user comes to the site for the first time, try to find the best "
368
  "matching language version of the page."
370
  "When a user comes to the site for the first time, try to find the best "
371
  "matching language version of the page."
372
 
 
 
 
 
373
  msgid "Custom JS Code"
374
  msgstr "Custom JS Code"
375
 
 
 
376
  msgid "Title"
377
  msgstr "Title"
378
 
 
379
  msgid "(Paste your JS code here.)"
380
  msgstr "(Paste your JS code here.)"
381
 
 
382
  msgid ""
383
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
384
  "version 4.9 or later."
385
  msgstr ""
386
 
 
387
  msgid "With your version of WordPress, please use the"
388
  msgstr ""
389
 
 
390
  msgid "WPGlobus Settings page"
391
  msgstr ""
392
 
 
393
  msgid "Label"
394
  msgstr "Label"
395
 
 
396
  msgid "Description"
397
  msgstr "Description"
398
 
 
399
  msgid ""
400
  "Here you can specify which fields should be considered multilingual by "
401
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
403
  "Here you can specify which fields should be considered multilingual by "
404
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
405
 
 
 
406
  msgid "Thank you for installing WPGlobus!"
407
  msgstr "Thank you for installing WPGlobus!"
408
 
 
 
409
  msgid "Read About WPGlobus"
410
  msgstr "Read About WPGlobus"
411
 
 
412
  msgid ""
413
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
414
  msgstr ""
415
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
416
 
 
 
417
  msgid ""
418
  "Should you have any questions or comments, please do not hesitate to contact "
419
  "us."
421
  "Should you have any questions or comments, please do not hesitate to contact "
422
  "us."
423
 
 
 
424
  msgid "Sincerely Yours,"
425
  msgstr "Sincerely Yours,"
426
 
 
 
 
427
  msgid "The WPGlobus Team"
428
  msgstr "The WPGlobus Team"
429
 
430
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
431
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
432
  msgid ""
433
  "We would hate to see you go. If something goes wrong, do not uninstall "
434
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
436
  "We would hate to see you go. If something goes wrong, do not uninstall "
437
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
438
 
 
 
439
  msgid ""
440
  "Please note that if you deactivate WPGlobus, your site will show all the "
441
  "languages together, mixed up. You will need to remove all translations, "
447
 
448
  #. translators: %s: link to the Clean-up Tool
449
  #. translators: %s: link to the Clean-up Tool.
 
 
450
  msgid ""
451
  "If there are just a few places, you should edit them manually. To "
452
  "automatically remove all translations at once, you can use the %s. WARNING: "
460
 
461
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
462
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
463
  msgid "%1$sClean-up Tool%2$s"
464
  msgstr "%1$sClean-up Tool%2$s"
465
 
466
  #. translators: %s: name of current theme
 
467
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
468
  msgstr "Sorry, WPGlobus customizer doesn't support current theme %s."
469
 
470
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
471
  msgid "Please use %1$sWPGlobus options page%2$s instead."
472
  msgstr "Please use %1$sWPGlobus options page%2$s instead."
473
 
 
474
  msgid "Expand/Shrink"
475
  msgstr ""
476
 
 
 
477
  msgid "WPGlobus News"
478
  msgstr "WPGlobus News"
479
 
 
 
480
  msgid "Options updated"
481
  msgstr "Options updated"
482
 
 
483
  msgid "Please enter a language code!"
484
  msgstr "Please enter a language code!"
485
 
 
486
  msgid "Language code already exists!"
487
  msgstr "Language code already exists!"
488
 
 
489
  msgid "Please specify the language flag!"
490
  msgstr "Please specify the language flag!"
491
 
 
492
  msgid "Please enter the language name!"
493
  msgstr "Please enter the language name!"
494
 
 
495
  msgid "Please enter the language name in English!"
496
  msgstr "Please enter the language name in English!"
497
 
 
498
  msgid "Please enter the locale!"
499
  msgstr "Please enter the locale!"
500
 
 
501
  msgid "Add Language"
502
  msgstr "Add Language"
503
 
 
 
 
504
  msgid "Delete Language"
505
  msgstr "Delete Language"
506
 
 
507
  msgid "Edit Language"
508
  msgstr "Edit Language"
509
 
 
510
  msgid "Language Code"
511
  msgstr "Language Code"
512
 
 
513
  msgid ""
514
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
515
  msgstr ""
516
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
517
 
 
518
  msgid "Language flag"
519
  msgstr "Language flag"
520
 
 
521
  msgid "Name"
522
  msgstr "Name"
523
 
 
524
  msgid ""
525
  "The name of the language in its native alphabet. (Examples: English, Русский)"
526
  msgstr ""
527
  "The name of the language in its native alphabet. (Examples: English, Русский)"
528
 
 
529
  msgid "Name in English"
530
  msgstr "Name in English"
531
 
 
532
  msgid "The name of the language in English"
533
  msgstr "The name of the language in English"
534
 
 
 
535
  msgid "Locale"
536
  msgstr "Locale"
537
 
 
538
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
539
  msgstr "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
540
 
 
541
  msgid "Are you sure you want to delete?"
542
  msgstr "Are you sure you want to delete?"
543
 
 
544
  msgid "Save Changes"
545
  msgstr "Save Changes"
546
 
 
547
  msgid "Back to the WPGlobus Settings"
548
  msgstr "Back to the WPGlobus Settings"
549
 
 
550
  msgid "Current Version"
551
  msgstr "Current Version"
552
 
 
553
  msgid "Get it now!"
554
  msgstr "Get it now!"
555
 
 
556
  msgid "Premium add-on"
557
  msgstr "Premium add-on"
558
 
 
 
559
  msgid "Installed"
560
  msgstr "Installed"
561
 
562
  #. translators: placeholders are for the HTML tags.
 
563
  msgid ""
564
  "If you have already purchased a WPGlobus premium extension, please read "
565
  "%1$sthe installation instructions here%2$s"
566
  msgstr ""
567
 
 
 
568
  msgid "Help Desk"
569
  msgstr "Help Desk"
570
 
 
571
  msgid "Email not sent. Please fill in the entire form."
572
  msgstr ""
573
 
 
574
  msgid ""
575
  "Email not sent. Please verify that your name and email are entered correctly."
576
  msgstr ""
577
 
 
578
  msgid "Email sent."
579
  msgstr ""
580
 
 
581
  msgid "Thank you for using WPGlobus!"
582
  msgstr "Thank you for using WPGlobus!"
583
 
 
584
  msgid "Our Support Team is here to answer your questions or concerns."
585
  msgstr "Our Support Team is here to answer your questions or concerns."
586
 
 
587
  msgid "To help us serve you better:"
588
  msgstr "To help us serve you better:"
589
 
 
590
  msgid ""
591
  "Please check if the problem persists if you switch to a standard WordPress "
592
  "theme."
594
  "Please check if the problem persists if you switch to a standard WordPress "
595
  "theme."
596
 
 
597
  msgid ""
598
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
599
  msgstr ""
600
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
601
 
 
602
  msgid "Please fill in and submit the contact form:"
603
  msgstr ""
604
 
 
605
  msgid "Please make sure the email address is correct."
606
  msgstr ""
607
 
 
608
  msgid "Subject"
609
  msgstr ""
610
 
 
611
  msgid "Short description of the problem"
612
  msgstr ""
613
 
 
614
  msgid "Detailed description"
615
  msgstr ""
616
 
 
617
  msgid "Technical Information"
618
  msgstr "Technical Information"
619
 
 
620
  msgid "This information helps us to find the problem source"
621
  msgstr ""
622
 
 
623
  msgid ""
624
  "Alternatively, please email %s. Do not forget to copy and paste the "
625
  "technical information to your email message."
626
  msgstr ""
627
 
 
628
  msgid "WPGlobus Recommends:"
629
  msgstr "WPGlobus Recommends:"
630
 
 
 
631
  msgid "WPGlobus for WooCommerce"
632
  msgstr "WPGlobus for WooCommerce"
633
 
 
634
  msgid ""
635
  "Translate product titles and descriptions, product categories, tags and "
636
  "attributes."
638
  "Translate product titles and descriptions, product categories, tags and "
639
  "attributes."
640
 
 
641
  msgid "Get it now:"
642
  msgstr "Get it now:"
643
 
 
644
  msgid "WooCommerce Multi-Currency"
645
  msgstr ""
646
 
 
647
  msgid "Accept multiple currencies in your online store!"
648
  msgstr "Accept multiple currencies in your online store!"
649
 
 
 
650
  msgid "Check it out:"
651
  msgstr "Check it out:"
652
 
 
653
  msgid "To translate permalinks, please activate the module Slug."
654
  msgstr ""
655
 
 
656
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
657
  msgstr ""
658
 
 
 
659
  msgid "Save draft before using extra language."
660
  msgstr ""
661
 
 
662
  msgid "Builder"
663
  msgstr ""
664
 
 
665
  msgid "Сompatibility Settings"
666
  msgstr ""
667
 
668
  #. translators: ON/OFF status of WPGlobus on the edit pages.
669
  #. translators: ON/OFF status of WPGlobus on the edit pages.
 
 
670
  msgid "ON"
671
  msgstr ""
672
 
 
 
673
  msgid "Turn off"
674
  msgstr ""
675
 
 
 
676
  msgid "OFF"
677
  msgstr ""
678
 
 
 
679
  msgid "Turn on"
680
  msgstr ""
681
 
 
682
  msgid "Elementor"
683
  msgstr ""
684
 
 
685
  msgid "WPGlobus languages"
686
  msgstr ""
687
 
 
688
  msgid "current"
689
  msgstr ""
690
 
 
691
  msgid ""
692
  "WPGlobus provides multilingual support for Elementor only when the option "
693
  "%1$s%2$s%3$s is set to %4$s."
694
  msgstr ""
695
 
 
696
  msgid "Before switching the language, please save draft or publish."
697
  msgstr ""
698
 
699
  #. translators: Metabox title FOR language.
 
700
  msgctxt "filter__seo_meta_box_title"
701
  msgid "for"
702
  msgstr ""
703
 
 
704
  msgid "Page is being reloaded. Please wait..."
705
  msgstr ""
706
 
 
707
  msgid ""
708
  "Before switching the language, please save draft or publish, then reload "
709
  "page."
710
  msgstr ""
711
 
 
712
  msgid ""
713
  "WPGlobus provides multilingual support for Elementor only when the option "
714
  "`CSS Print Method` is set to `External File`."
715
  msgstr ""
716
 
 
717
  msgid "Open Elementor Settings page"
718
  msgstr ""
719
 
 
720
  msgid "WPGlobus widget"
721
  msgstr "WPGlobus widget"
722
 
 
723
  msgid "Add language switcher"
724
  msgstr "Add language switcher"
725
 
 
726
  msgid "Flags"
727
  msgstr "Flags"
728
 
 
729
  msgid "List"
730
  msgstr "List"
731
 
 
732
  msgid "List with flags"
733
  msgstr "List with flags"
734
 
 
735
  msgid "Select"
736
  msgstr "Select"
737
 
 
738
  msgid "Select with language code"
739
  msgstr "Select with language code"
740
 
 
741
  msgid "Dropdown"
742
  msgstr "Dropdown"
743
 
 
744
  msgid "Dropdown with flags"
745
  msgstr "Dropdown with flags"
746
 
 
747
  msgid "Selector type"
748
  msgstr "Selector type"
749
 
 
750
  msgid "You cannot disable the main language."
751
  msgstr "You cannot disable the main language."
752
 
 
753
  msgid "Need a multilingual slug?"
754
  msgstr "Need a multilingual slug?"
755
 
 
756
  msgid "*) Available after the menu is saved."
757
  msgstr "*) Available after the menu is saved."
758
 
 
759
  msgid "You must enable Pretty Permalinks to use WPGlobus."
760
  msgstr "You must enable Pretty Permalinks to use WPGlobus."
761
 
 
762
  msgid ""
763
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
764
  "default option."
766
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
767
  "default option."
768
 
 
769
  msgid "Language Selector Menu Style"
770
  msgstr ""
771
 
 
 
 
772
  msgid "WPGlobus Plus"
773
  msgstr ""
774
 
 
775
  msgid "Drop-down languages menu or Flat (in one line)"
776
  msgstr ""
777
 
 
778
  msgid "Do not change"
779
  msgstr ""
780
 
 
781
  msgid "Drop-down (vertical)"
782
  msgstr ""
783
 
 
784
  msgid "Flat (horizontal)"
785
  msgstr ""
786
 
 
787
  msgid ""
788
  "If you see this message then your browser may not display the WPGlobus "
789
  "Settings panel properly. Please try another browser."
790
  msgstr ""
791
 
 
 
792
  msgid "Сompatibility"
793
  msgstr ""
794
 
795
  #. translators: placeholders for "strong" tags.
 
796
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
797
  msgstr ""
798
 
799
  #. translators: placeholders for "strong" tags.
 
800
  msgid ""
801
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
802
  "the language attributes: name, code, flag icon, etc."
803
  msgstr ""
804
 
 
805
  msgid "Important notes"
806
  msgstr ""
807
 
808
  #. translators: placeholders for "strong" tags.
 
809
  msgid "Version %1$s1.9.17%2$s "
810
  msgstr ""
811
 
812
  #. translators: placeholders for "strong" tags.
 
813
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
814
  msgstr ""
815
 
816
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
817
  msgid ""
818
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
819
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
820
  msgstr ""
821
 
822
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
823
  msgid ""
824
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
825
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
826
  msgstr ""
827
 
828
  #. translators: placeholders for "strong" tags.
 
829
  msgid "Version %1$s2.2.11%2$s "
830
  msgstr ""
831
 
 
832
  msgid "Starting from this version"
833
  msgstr ""
834
 
835
  #. translators: placeholders for "strong" tags.
 
836
  msgid ""
837
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
838
  "(CPT)."
839
  msgstr ""
840
 
841
  #. translators: placeholders for "strong" tags.
 
842
  msgid ""
843
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
844
  "the %1$s[%3$s]%2$s tab."
845
  msgstr ""
846
 
 
847
  msgid "Welcome!"
848
  msgstr "Welcome!"
849
 
 
850
  msgid "Deactivating / Uninstalling"
851
  msgstr "Deactivating / Uninstalling"
852
 
 
853
  msgid "Uninstall"
854
  msgstr ""
855
 
 
856
  msgid "All add-ons"
857
  msgstr ""
858
 
 
859
  msgid "Mobile Menu"
860
  msgstr ""
861
 
 
862
  msgid "Language Widgets"
863
  msgstr ""
864
 
 
865
  msgid "We Recommend..."
866
  msgstr ""
867
 
 
868
  msgid ""
869
  "Our premium add-on, WPGlobus Plus, will add several features to your "
870
  "website, such as:"
871
  msgstr ""
872
 
 
873
  msgid ""
874
  "- Ability to write a post in one language and immediately publish it, not "
875
  "waiting for the translation to other languages;"
876
  msgstr ""
877
 
 
878
  msgid "- Set different URLs for each translation;"
879
  msgstr ""
880
 
 
881
  msgid ""
882
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
883
  "for each translation;"
884
  msgstr ""
885
 
 
886
  msgid "- and more..."
887
  msgstr ""
888
 
 
 
 
889
  msgid "Click here to download"
890
  msgstr ""
891
 
 
892
  msgid ""
893
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
894
  "translate your blog posts and pages to many languages."
895
  msgstr ""
896
 
 
897
  msgid "The next step is to translate your WooCommerce-based store!"
898
  msgstr ""
899
 
 
900
  msgid ""
901
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
902
  "translate product titles and descriptions, categories, tags and attributes."
903
  msgstr ""
904
 
 
905
  msgid "Multi-currency"
906
  msgstr ""
907
 
 
908
  msgid ""
909
  "Your WooCommerce-powered store is set to show prices and accept payments in "
910
  "a single currency only."
911
  msgstr ""
912
 
 
913
  msgid ""
914
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
915
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
917
  "positioning for global growth!"
918
  msgstr ""
919
 
 
920
  msgid ""
921
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
922
  "re-calculating prices on-the-fly."
923
  msgstr ""
924
 
 
925
  msgid "WPGlobus Premium Add-ons"
926
  msgstr ""
927
 
 
928
  msgid ""
929
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
930
  "you will be able to:"
931
  msgstr ""
932
 
 
933
  msgid ""
934
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
935
  "моя-страница and so on);"
936
  msgstr ""
937
 
 
938
  msgid ""
939
  "Postpone translation to some languages and <strong>publish only the "
940
  "translated texts</strong>;"
941
  msgstr ""
942
 
 
943
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
944
  msgstr ""
945
 
 
946
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
947
  msgstr ""
948
 
 
949
  msgid ""
950
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
951
  "strong>;"
952
  msgstr ""
953
 
 
954
  msgid "...and more."
955
  msgstr ""
956
 
 
957
  msgid "Click here to visit the WPGlobus Store"
958
  msgstr ""
959
 
 
960
  msgid "Select a language"
961
  msgstr "Select a language"
962
 
963
  #. translators: %3$s placeholder for the icon (actual picture).
 
964
  msgid ""
965
  "Place the %1$smain language%2$s of your site at the top of the list by "
966
  "dragging the %3$s icons."
967
  msgstr ""
968
 
969
  #. translators: placeholders for the "strong" HTML tags.
 
970
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
971
  msgstr ""
972
 
973
  #. translators: placeholders for the "strong" HTML tags.
 
974
  msgid "%1$sAdd%2$s more languages using the section below."
975
  msgstr ""
976
 
 
977
  msgid "When done, click the [Save Changes] button."
978
  msgstr "When done, click the [Save Changes] button."
979
 
980
  #. translators: %s - placeholder for the "Save Changes" button text.
 
981
  msgid "Press the %s button to confirm."
982
  msgstr ""
983
 
984
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
 
985
  msgid "-- none --"
986
  msgstr ""
987
 
 
988
  msgid "All menus"
989
  msgstr ""
990
 
 
991
  msgid "Instructions:"
992
  msgstr "Instructions:"
993
 
 
994
  msgid "(Found in some themes)"
995
  msgstr "(Found in some themes)"
996
 
 
997
  msgid "Enable"
998
  msgstr "Enable"
999
 
 
1000
  msgid "Languages table"
1001
  msgstr "Languages table"
1002
 
 
1003
  msgid "Use this table to add, edit or delete languages."
1004
  msgstr "Use this table to add, edit or delete languages."
1005
 
 
1006
  msgid "NOTE: you cannot remove the main language."
1007
  msgstr "NOTE: you cannot remove the main language."
1008
 
 
1009
  msgid "WPGlobus is enabled on these Post Types"
1010
  msgstr ""
1011
 
 
1012
  msgid "Uncheck to disable"
1013
  msgstr ""
1014
 
 
1015
  msgid ""
1016
  "Please note that there are post types, which status is managed by other "
1017
  "plugins and cannot be changed here."
1018
  msgstr ""
1019
 
 
1020
  msgid "Post Types"
1021
  msgstr ""
1022
 
 
1023
  msgid ""
1024
  "You should put here only the code provided by WPGlobus Support. Do not write "
1025
  "anything else in the sections below as it might break the functionality of "
1026
  "your website!"
1027
  msgstr ""
1028
 
 
1029
  msgid "Custom Code"
1030
  msgstr ""
1031
 
 
 
 
1032
  msgid "Enabled"
1033
  msgstr ""
1034
 
 
1035
  msgid "Builders support"
1036
  msgstr ""
1037
 
 
1038
  msgid "Builder mode is enabled on these Post Types"
1039
  msgstr ""
1040
 
 
1041
  msgid "Old fashioned language switcher"
1042
  msgstr ""
1043
 
 
1044
  msgid "Block Editor"
1045
  msgstr ""
1046
 
 
1047
  msgid "Block Editor Options"
1048
  msgstr ""
1049
 
 
1050
  msgid ""
1051
  "With the current settings, you will see the following lines in the section "
1052
  "HEAD of your site pages"
1053
  msgstr ""
1054
 
 
1055
  msgid "(example for two languages)"
1056
  msgstr ""
1057
 
 
1058
  msgid ""
1059
  "Tell search engines about localized versions of your pages using the "
1060
  "hreflang tag"
1061
  msgstr ""
1062
 
 
1063
  msgid "Output the hreflang tag as"
1064
  msgstr ""
1065
 
 
1066
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1067
  msgstr ""
1068
 
 
1069
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1070
  msgstr ""
1071
 
 
1072
  msgid "Language code only (en, ru, etc.)"
1073
  msgstr ""
1074
 
 
1075
  msgid "Use the code `x-default` for the main language"
1076
  msgstr ""
1077
 
 
1078
  msgid "Multilingual SEO"
1079
  msgstr ""
1080
 
 
1081
  msgid "Multilingual SEO Options"
1082
  msgstr ""
1083
 
 
1084
  msgid ""
1085
  "With WPGlobus, you can get translations for posts and pages using REST API."
1086
  msgstr ""
1087
 
 
 
 
 
1088
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1089
  msgstr ""
1090
 
 
1091
  msgid ""
1092
  "For demonstration, you can try the first post that WordPress creates at the "
1093
  "initial installation."
1094
  msgstr ""
1095
 
 
1096
  msgid ""
1097
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1098
  "information."
1099
  msgstr ""
1100
 
 
1101
  msgid ""
1102
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1103
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1104
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1105
  msgstr ""
1106
 
 
1107
  msgid "Description:"
1108
  msgstr ""
1109
 
 
 
1110
  msgid "REST API"
1111
  msgstr ""
1112
 
 
1113
  msgid "Translate strings"
1114
  msgstr ""
1115
 
 
1116
  msgid "item"
1117
  msgstr "item"
1118
 
 
1119
  msgid "items"
1120
  msgstr "items"
1121
 
 
1122
  msgid "Code"
1123
  msgstr "Code"
1124
 
 
1125
  msgid "Edit"
1126
  msgstr "Edit"
1127
 
 
1128
  msgid "Delete"
1129
  msgstr "Delete"
1130
 
 
1131
  msgid "File"
1132
  msgstr "File"
1133
 
 
1134
  msgid "Flag"
1135
  msgstr "Flag"
1136
 
 
1137
  msgid "Language name"
1138
  msgstr "Language name"
1139
 
 
1140
  msgid "English language name"
1141
  msgstr "English language name"
1142
 
 
1143
  msgid "No items found"
1144
  msgstr "No items found"
1145
 
 
1146
  msgid "Add new Language"
1147
  msgstr "Add new Language"
1148
 
 
1149
  msgid "No items of this type were found."
1150
  msgstr ""
1151
 
 
1152
  msgid "Select an item"
1153
  msgstr ""
1154
 
 
1155
  msgid "Multilingual support of this add-on is currently in Beta stage."
1156
  msgstr ""
1157
 
 
1158
  msgid "We do not recommend using it on production sites."
1159
  msgstr ""
1160
 
 
1161
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1162
  msgstr ""
1163
 
 
1164
  msgid "WordPress version"
1165
  msgstr ""
1166
 
 
1167
  msgid "In the WordPress core"
1168
  msgstr ""
1169
 
 
1170
  msgid "Core"
1171
  msgstr ""
1172
 
 
 
1173
  msgid "Current version"
1174
  msgstr ""
1175
 
 
 
1176
  msgid "Stage"
1177
  msgstr ""
1178
 
 
 
1179
  msgid "Status"
1180
  msgstr ""
1181
 
 
1182
  msgid "Block editor"
1183
  msgstr ""
1184
 
 
1185
  msgid "production"
1186
  msgstr ""
1187
 
 
1188
  msgid "List of supported add-ons"
1189
  msgstr ""
1190
 
 
1191
  msgid "Add-on"
1192
  msgstr ""
1193
 
 
1194
  msgid "Supported minimum version"
1195
  msgstr ""
1196
 
 
1197
  msgid "Not installed"
1198
  msgstr ""
1199
 
 
1200
  msgid "Installed, inactive"
1201
  msgstr ""
1202
 
 
1203
  msgid "Active"
1204
  msgstr "Active"
1205
 
 
1206
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1207
  msgstr ""
1208
 
 
1209
  msgid "However, some themes do not follow all WordPress standards strictly."
1210
  msgstr ""
1211
 
 
1212
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1213
  msgstr ""
1214
 
 
1215
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1216
  msgstr ""
1217
 
 
1218
  msgid ""
1219
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1220
  "With those themes, WPGlobus Customizer is switched off by default"
1221
  msgstr ""
1222
 
 
1223
  msgid "The currently active theme is"
1224
  msgstr ""
1225
 
 
1226
  msgid "In the current version, WPGlobus Customizer does not support"
1227
  msgstr ""
1228
 
 
1229
  msgid "translation of the navigation menus"
1230
  msgstr ""
1231
 
 
1232
  msgid "to translate, please go to"
1233
  msgstr ""
1234
 
 
1235
  msgid "Go to Customizer"
1236
  msgstr ""
1237
 
 
1238
  msgid "is undefined"
1239
  msgstr ""
1240
 
 
1241
  msgid "is set to"
1242
  msgstr ""
1243
 
 
1244
  msgid "by adding to the file wp-config.php"
1245
  msgstr ""
1246
 
 
1247
  msgid "now"
1248
  msgstr ""
1249
 
 
1250
  msgid "We rely on your support!"
1251
  msgstr "We rely on your support!"
1252
 
 
1253
  msgid "Please consider a small donation to support the future development."
1254
  msgstr "Please consider a small donation to support the future development."
1255
 
 
1256
  msgid "Thank you!"
1257
  msgstr "Thank you!"
1258
 
 
1259
  msgid "WPGlobus Plus!"
1260
  msgstr "WPGlobus Plus!"
1261
 
 
1262
  msgid ""
1263
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1264
  "separate publishing and more! "
1266
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1267
  "separate publishing and more! "
1268
 
 
1269
  msgid "Get WPGlobus Plus now!"
1270
  msgstr "Get WPGlobus Plus now!"
1271
 
 
1272
  msgid ""
1273
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1274
  "the current version."
1275
  msgstr ""
1276
 
 
1277
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1278
  msgstr ""
1279
 
 
1280
  msgid "WPGlobus warning: "
1281
  msgstr ""
1282
 
 
1283
  msgid "https://github.com/WPGlobus/WPGlobus"
1284
  msgstr "https://github.com/WPGlobus/WPGlobus"
1285
 
 
1286
  msgid ""
1287
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1288
  "widgets and even custom fields - in multiple languages!"
1290
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1291
  "widgets and even custom fields - in multiple languages!"
1292
 
 
1293
  msgid "https://wpglobus.com/"
1294
  msgstr "https://wpglobus.com/"
1295
 
languages/wpglobus-es_AR.po CHANGED
@@ -16,44 +16,25 @@ msgstr ""
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
- #: includes/admin/central/class-wpglobus-admin-central.php:122,
20
- #: includes/admin/class-wpglobus-about.php:42,
21
- #: includes/admin/class-wpglobus-about.php:117,
22
- #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr "Guía"
26
 
27
- #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
32
- #: includes/admin/central/class-wpglobus-admin-central.php:157,
33
- #: includes/admin/class-wpglobus-about.php:36,
34
- #: includes/admin/class-wpglobus-admin-menu.php:22,
35
- #: includes/admin/class-wpglobus-clean.php:606,
36
- #: includes/admin/class-wpglobus-customize-options.php:1293,
37
- #: includes/admin/class-wpglobus-customize-options.php:1261,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr "Complementos"
41
 
42
- #: includes/admin/class-wpglobus-about.php:26
43
  msgid "Quick Start"
44
  msgstr "Inicio Rápido"
45
 
46
- #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
51
- #: includes/admin/class-wpglobus-about.php:59
52
  msgid ""
53
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
54
  msgstr ""
55
 
56
- #: includes/admin/class-wpglobus-about.php:60
57
  msgid ""
58
  "The mbstring extension is required for the full UTF-8 compatibility and "
59
  "better performance. Without it, some parts of WordPress and WPGlobus may "
@@ -61,19 +42,15 @@ msgid ""
61
  "administrator."
62
  msgstr ""
63
 
64
- #: includes/admin/class-wpglobus-about.php:87
65
  msgid "Go to WPGlobus Settings"
66
  msgstr "Ir a Ajustes WPGlobus"
67
 
68
- #: includes/admin/class-wpglobus-about.php:98
69
  msgid "Easy as 1-2-3:"
70
  msgstr "Fácil en 1-2-3:"
71
 
72
- #: includes/admin/class-wpglobus-about.php:101
73
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
74
  msgstr "Ve al menú de administración WPGlobus y elege los países/idiomas;"
75
 
76
- #: includes/admin/class-wpglobus-about.php:102
77
  msgid ""
78
  "Enter the translations to the posts, pages, categories, tags and menus using "
79
  "a clean and simple interface."
@@ -81,7 +58,6 @@ msgstr ""
81
  "Introduce las traducciones a los mensajes, páginas, categorías,etiquetas y "
82
  "menús usando una interfaz limpia y simple."
83
 
84
- #: includes/admin/class-wpglobus-about.php:103
85
  msgid ""
86
  "Switch languages at the front-end using a drop-down menu with language names "
87
  "and country flags."
@@ -89,51 +65,41 @@ msgstr ""
89
  "Cambia de idioma en el front-end utilizando un menú desplegable con los "
90
  "nombres de las lenguas y banderas de los países ."
91
 
92
- #: includes/admin/class-wpglobus-about.php:111
93
  msgid "Links:"
94
  msgstr "Enlaces:"
95
 
96
- #: includes/admin/class-wpglobus-about.php:119
97
  msgid "FAQs"
98
  msgstr "Preguntas Frecuentes"
99
 
100
- #: includes/admin/class-wpglobus-about.php:121
101
  msgid "Contact Us"
102
  msgstr "Contáctanos"
103
 
104
- #: includes/admin/class-wpglobus-about.php:123
105
  msgid "Please give us 5 stars!"
106
  msgstr "Por favor danos 5 estrellas!"
107
 
108
- #: includes/admin/class-wpglobus-about.php:133
109
  msgid "WPGlobus does not translate texts automatically!"
110
  msgstr ""
111
 
112
- #: includes/admin/class-wpglobus-about.php:136
113
  msgid ""
114
  "There are many translation companies and individual translators who can help "
115
  "you write and proofread the texts."
116
  msgstr ""
117
 
118
- #: includes/admin/class-wpglobus-about.php:137
119
  msgid ""
120
  "When you choose a translator, please look at their native language, country "
121
  "of residence, specialization and knowledge of WordPress."
122
  msgstr ""
123
 
124
  #. translators: %s are used to insert HTML link. Keep them in place.
125
- #: includes/admin/class-wpglobus-about.php:143
126
  msgid ""
127
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
128
  "website. This is not an endorsement, just a courtesy. Please contact them "
129
  "directly and let us know how did it work for you!"
130
  msgstr ""
131
 
132
- #: includes/admin/class-wpglobus-about.php:154
133
  msgid "Important notes:"
134
  msgstr ""
135
 
136
- #: includes/admin/class-wpglobus-about.php:159
137
  msgid ""
138
  "WPGlobus only supports the localization URLs in the form of <code>example."
139
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
@@ -144,12 +110,10 @@ msgstr ""
144
  "subdominios <code>example.com</code> ni consultas lingüísticas <code>example."
145
  "com?lang=xx</code>."
146
 
147
- #: includes/admin/class-wpglobus-about.php:162
148
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
149
  msgstr ""
150
  "En algunos temas y plugins <strong>No está listo el multilenguaje</strong>."
151
 
152
- #: includes/admin/class-wpglobus-about.php:163
153
  msgid ""
154
  "They might display some texts with no translation, or with all languages "
155
  "mixed together."
@@ -158,7 +122,6 @@ msgstr ""
158
  "mezclados entre sí."
159
 
160
  #. translators: %s are used to insert HTML link. Keep them in place.
161
- #: includes/admin/class-wpglobus-about.php:167
162
  msgid ""
163
  "Please contact the theme / plugin author. If they are unable to assist, "
164
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
@@ -167,21 +130,15 @@ msgstr ""
167
  "ayudarte, considera % s la contratación del WPGlobus % s para escribir un "
168
  "código personalizado para tí."
169
 
170
- #: includes/admin/class-wpglobus-admin-bar-menu.php:124
171
  msgid "Language was set on your profile page"
172
  msgstr ""
173
 
174
- #: includes/admin/class-wpglobus-admin-bar-menu.php:194
175
  msgid "Add"
176
  msgstr "Añadir"
177
 
178
- #: includes/admin/class-wpglobus-admin-page.php:32,
179
- #: includes/admin/class-wpglobus-clean.php:585
180
  msgid "Multilingual Everything!"
181
  msgstr "Multilenguaje Total!"
182
 
183
- #: includes/admin/class-wpglobus-admin-page.php:34,
184
- #: includes/admin/class-wpglobus-clean.php:588
185
  msgid ""
186
  "WPGlobus is a family of WordPress plugins assisting you in making "
187
  "multilingual WordPress blogs and sites."
@@ -189,25 +146,20 @@ msgstr ""
189
  "WPGlobus es una familia de plugins de WordPress que ayudan en la traducción "
190
  "de blogs de WordPress."
191
 
192
- #: includes/admin/class-wpglobus-clean.php:232
193
  msgid "Remove the WPGlobus settings (not recommended)"
194
  msgstr ""
195
 
196
- #: includes/admin/class-wpglobus-clean.php:595
197
  msgid "Clean-up Tool"
198
  msgstr ""
199
 
200
- #: includes/admin/class-wpglobus-clean.php:609
201
  msgid "Support"
202
  msgstr "Soporte"
203
 
204
- #: includes/admin/class-wpglobus-clean.php:614
205
  msgid ""
206
  "WARNING: this operation is non-reversible. It is strongly recommended that "
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
- #: includes/admin/class-wpglobus-clean.php:619
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
@@ -217,7 +169,6 @@ msgid ""
217
  "so on."
218
  msgstr ""
219
 
220
- #: includes/admin/class-wpglobus-clean.php:622
221
  msgid ""
222
  "Make sure that your active theme does not have any code related to WPGlobus. "
223
  "Such code could be added by you or by a 3rd party developer. If that code "
@@ -226,42 +177,34 @@ msgid ""
226
  msgstr ""
227
 
228
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
229
- #: includes/admin/class-wpglobus-clean.php:630
230
  msgid ""
231
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
232
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
233
  msgstr ""
234
 
235
- #: includes/admin/class-wpglobus-clean.php:641
236
  msgid "You are about to clean the content of the following database tables:"
237
  msgstr ""
238
 
239
- #: includes/admin/class-wpglobus-clean.php:649
240
  msgid "The operations log"
241
  msgstr ""
242
 
243
- #: includes/admin/class-wpglobus-clean.php:652
244
  msgid ""
245
  "We are going to write a detailed log of all the database changes performed. "
246
  "It should help in the case you need to restore something important. The log "
247
  "will be written to the file:"
248
  msgstr ""
249
 
250
- #: includes/admin/class-wpglobus-clean.php:662
251
  msgid ""
252
  "Uncheck if you do not want to write the operations log (we recommend to keep "
253
  "it checked)"
254
  msgstr ""
255
 
256
- #: includes/admin/class-wpglobus-clean.php:667
257
  msgid "You have been warned..."
258
  msgstr ""
259
 
260
- #: includes/admin/class-wpglobus-clean.php:669
261
  msgid "Please confirm by checking the box below:"
262
  msgstr ""
263
 
264
- #: includes/admin/class-wpglobus-clean.php:671
265
  msgid ""
266
  "I have read and understood everything written on this page. I am aware that "
267
  "by using this tool I may loose some content of my website. I have made a "
@@ -269,153 +212,100 @@ msgid ""
269
  "responsible for the results."
270
  msgstr ""
271
 
272
- #: includes/admin/class-wpglobus-clean.php:674
273
  msgid "YES, I CONFIRM"
274
  msgstr ""
275
 
276
- #: includes/admin/class-wpglobus-clean.php:678
277
  msgid "Process with the Clean-up"
278
  msgstr ""
279
 
280
- #: includes/admin/class-wpglobus-customize-options.php:73,
281
- #: includes/admin/class-wpglobus-customize-options.php:100,
282
- #: includes/admin/class-wpglobus-customize-options.php:145,
283
- #: includes/admin/class-wpglobus-customize-options.php:183
284
  msgid "Default"
285
  msgstr "Predefinido"
286
 
287
- #: includes/admin/class-wpglobus-customize-options.php:264
288
  msgid "Section"
289
  msgstr ""
290
 
291
- #: includes/admin/class-wpglobus-customize-options.php:277
292
  msgid "Show all sections"
293
  msgstr ""
294
 
295
- #: includes/admin/class-wpglobus-customize-options.php:279
296
  msgid "Save &amp; Reload"
297
  msgstr ""
298
 
299
- #: includes/admin/class-wpglobus-customize-options.php:553,
300
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:585,
301
- #: includes/class-wpglobus.php:1284, wpglobus.php:12, wpglobus.php:18
302
  msgid "WPGlobus"
303
  msgstr ""
304
 
305
- #: includes/admin/class-wpglobus-customize-options.php:604
306
  msgid ""
307
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
308
  msgstr ""
309
 
310
- #: includes/admin/class-wpglobus-customize-options.php:610
311
  msgid "Fields Settings"
312
  msgstr ""
313
 
314
- #: includes/admin/class-wpglobus-customize-options.php:655
315
  msgid "WPGlobus Settings"
316
  msgstr ""
317
 
318
- #: includes/admin/class-wpglobus-customize-options.php:723
319
  msgid "Help"
320
  msgstr "Ayuda"
321
 
322
- #: includes/admin/class-wpglobus-customize-options.php:745,
323
- #: includes/options/class-wpglobus-options.php:1176
324
  msgid "Languages"
325
  msgstr "Idiomas"
326
 
327
- #: includes/admin/class-wpglobus-customize-options.php:765,
328
- #: includes/options/class-wpglobus-options.php:1189
329
  msgid "Enabled Languages"
330
  msgstr "Idiomas Habilitados"
331
 
332
- #: includes/admin/class-wpglobus-customize-options.php:767,
333
- #: includes/options/class-wpglobus-options.php:1190
334
  msgid "These languages are currently enabled on your site."
335
  msgstr "Estos idiomas están habilitados actualmente en su sitio."
336
 
337
- #: includes/admin/class-wpglobus-customize-options.php:795,
338
- #: includes/options/class-wpglobus-options.php:1148
339
  msgid "Choose a language you would like to enable."
340
  msgstr ""
341
 
342
- #: includes/admin/class-wpglobus-customize-options.php:797
343
  msgid "Press the [Save & Publish] button to confirm."
344
  msgstr ""
345
 
346
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
347
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
348
- #: includes/admin/class-wpglobus-customize-options.php:801,
349
- #: includes/options/class-wpglobus-options.php:1154
350
  msgid "or Add new Language %1$s here %2$s"
351
  msgstr ""
352
 
353
- #: includes/admin/class-wpglobus-customize-options.php:813,
354
- #: includes/options/class-wpglobus-options.php:1203
355
  msgid "Add Languages"
356
  msgstr "Añadir idioma"
357
 
358
- #: includes/admin/class-wpglobus-customize-options.php:833,
359
- #: includes/options/class-wpglobus-options.php:1211
360
  msgid "Language Selector Mode"
361
  msgstr "Modo Selector de Idioma"
362
 
363
- #: includes/admin/class-wpglobus-customize-options.php:838,
364
- #: includes/options/class-wpglobus-options.php:1214
365
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
366
  msgstr "Código de la bandera en dos letras (es, en, ru, it, etc.)"
367
 
368
- #: includes/admin/class-wpglobus-customize-options.php:839,
369
- #: includes/options/class-wpglobus-options.php:1215
370
  msgid "Full Name (English, Russian, Italian, etc.)"
371
  msgstr "Nombre completo (Español, English, Russian, Italian, etc.)"
372
 
373
- #: includes/admin/class-wpglobus-customize-options.php:841,
374
- #: includes/options/class-wpglobus-options.php:1216
375
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
376
  msgstr "Nombre completo con bandera (Español, English, Russian, Italian, etc.)"
377
 
378
- #: includes/admin/class-wpglobus-customize-options.php:842,
379
- #: includes/options/class-wpglobus-options.php:1217
380
  msgid "Flags only"
381
  msgstr "Sólo banderas"
382
 
383
- #: includes/admin/class-wpglobus-customize-options.php:844,
384
- #: includes/options/class-wpglobus-options.php:1212
385
  msgid ""
386
  "Choose the way language name and country flag are shown in the drop-down menu"
387
  msgstr ""
388
  "Elige el nombre del idioma y bandera del país se muestran en el menú "
389
  "desplegable"
390
 
391
- #: includes/admin/class-wpglobus-customize-options.php:879
392
  msgid "select navigation menu"
393
  msgstr ""
394
 
395
- #: includes/admin/class-wpglobus-customize-options.php:915,
396
- #: includes/admin/class-wpglobus-customize-options.php:888,
397
- #: includes/options/class-wpglobus-options.php:1230
398
  msgid "Language Selector Menu"
399
  msgstr "Menú selector de idioma"
400
 
401
- #: includes/admin/class-wpglobus-customize-options.php:920,
402
- #: includes/admin/class-wpglobus-customize-options.php:899,
403
- #: includes/options/class-wpglobus-options.php:1231
404
  msgid "Choose the navigation menu where the language selector will be shown"
405
  msgstr ""
406
  "Selecciona el menú de navegación donde se mostrará el selector de idioma"
407
 
408
- #: includes/admin/class-wpglobus-customize-options.php:898
409
  msgid "No menus have been created yet. Create some."
410
  msgstr ""
411
 
412
- #: includes/admin/class-wpglobus-customize-options.php:940,
413
- #: includes/options/class-wpglobus-options.php:1241
414
  msgid "\"All Pages\" menus Language selector"
415
  msgstr "\"Todas las páginas\" Selector de menús Idioma"
416
 
417
- #: includes/admin/class-wpglobus-customize-options.php:943,
418
- #: includes/options/class-wpglobus-options.php:1243
419
  msgid ""
420
  "Adds language selector to the menus that automatically list all existing "
421
  "pages (using `wp_list_pages`)"
@@ -424,12 +314,9 @@ msgstr ""
424
  "automáticamente en todas las páginas existentes (utilizando ` "
425
  "wp_list_pages` )"
426
 
427
- #: includes/admin/class-wpglobus-customize-options.php:960,
428
- #: includes/options/class-wpglobus-options.php:1356
429
  msgid "Custom CSS"
430
  msgstr "Customizar CSS"
431
 
432
- #: includes/admin/class-wpglobus-customize-options.php:964
433
  msgid ""
434
  "Here you can enter the CSS rules to adjust the language selector menu for "
435
  "your theme. Look at the examples in the `style-samples.css` file."
@@ -437,99 +324,69 @@ msgstr ""
437
  "Aquí puedes introducir las reglas CSS para ajustar el menú de selección de "
438
  "idiomas para tu tema. Mira los ejemplos en el `style-samples.css` file."
439
 
440
- #: includes/admin/class-wpglobus-customize-options.php:983
441
  msgid "Post types"
442
  msgstr "Tipos de Post"
443
 
444
- #: includes/admin/class-wpglobus-customize-options.php:1091
445
  msgid "Uncheck to disable WPGlobus"
446
  msgstr "Desactiva la opción para desactivar WPGlobus"
447
 
448
- #: includes/admin/class-wpglobus-customize-options.php:1125,
449
- #: includes/options/class-wpglobus-options.php:1424
450
  msgid "Redirect"
451
  msgstr "Redirección"
452
 
453
- #: includes/admin/class-wpglobus-customize-options.php:1150,
454
- #: includes/options/class-wpglobus-options.php:1419
455
  msgid "Choose the language automatically, based on:"
456
  msgstr ""
457
 
458
- #: includes/admin/class-wpglobus-customize-options.php:1152,
459
- #: includes/options/class-wpglobus-options.php:1409
460
  msgid "Preferred language set in the browser"
461
  msgstr ""
462
 
463
- #: includes/admin/class-wpglobus-customize-options.php:1153,
464
- #: includes/options/class-wpglobus-options.php:1396
465
  msgid ""
466
  "When a user comes to the site for the first time, try to find the best "
467
  "matching language version of the page."
468
  msgstr ""
469
 
470
- #: includes/admin/class-wpglobus-customize-options.php:1214,
471
- #: includes/admin/class-wpglobus-customize-options.php:1234,
472
- #: includes/admin/class-wpglobus-customize-options.php:1192,
473
- #: includes/options/class-wpglobus-options.php:1368
474
  msgid "Custom JS Code"
475
  msgstr ""
476
 
477
- #: includes/admin/class-wpglobus-customize-options.php:1232,
478
- #: includes/admin/class-wpglobus-customize-options.php:1276
479
  msgid "Title"
480
  msgstr "Título"
481
 
482
- #: includes/admin/class-wpglobus-customize-options.php:1235
483
  msgid "(Paste your JS code here.)"
484
  msgstr ""
485
 
486
- #: includes/admin/class-wpglobus-customize-options.php:1184
487
  msgid ""
488
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
489
  "version 4.9 or later."
490
  msgstr ""
491
 
492
- #: includes/admin/class-wpglobus-customize-options.php:1186
493
  msgid "With your version of WordPress, please use the"
494
  msgstr ""
495
 
496
- #: includes/admin/class-wpglobus-customize-options.php:1188
497
  msgid "WPGlobus Settings page"
498
  msgstr ""
499
 
500
- #: includes/admin/class-wpglobus-customize-options.php:1277
501
  msgid "Label"
502
  msgstr ""
503
 
504
- #: includes/admin/class-wpglobus-customize-options.php:1281
505
  msgid "Description"
506
  msgstr "Decripción"
507
 
508
- #: includes/admin/class-wpglobus-customize-options.php:1345
509
  msgid ""
510
  "Here you can specify which fields should be considered multilingual by "
511
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
512
  msgstr ""
513
 
514
- #: includes/admin/class-wpglobus-customize-options.php:1351,
515
- #: includes/options/class-wpglobus-options.php:608
516
  msgid "Thank you for installing WPGlobus!"
517
  msgstr "Gracias por instalar WPGlobus!"
518
 
519
- #: includes/admin/class-wpglobus-customize-options.php:1355,
520
- #: includes/options/class-wpglobus-options.php:612
521
  msgid "Read About WPGlobus"
522
  msgstr "Leer sobre WPGlobus!"
523
 
524
- #: includes/admin/class-wpglobus-customize-options.php:1358
525
  msgid ""
526
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
527
  msgstr ""
528
  "Click en la <strong>[Idiomas]</strong> pestaña en la parte izquierda de "
529
  "configuración de las opciones."
530
 
531
- #: includes/admin/class-wpglobus-customize-options.php:1363,
532
- #: includes/options/class-wpglobus-options.php:648
533
  msgid ""
534
  "Should you have any questions or comments, please do not hesitate to contact "
535
  "us."
@@ -537,28 +394,19 @@ msgstr ""
537
  "Si tienes alguna pregunta o comentario, por favor no dudes en contactar con "
538
  "nosotros."
539
 
540
- #: includes/admin/class-wpglobus-customize-options.php:1367,
541
- #: includes/options/class-wpglobus-options.php:652
542
  msgid "Sincerely Yours,"
543
  msgstr "Sinceramente tuyo,"
544
 
545
- #: includes/admin/class-wpglobus-customize-options.php:1369,
546
- #: includes/options/class-wpglobus-options.php:654,
547
- #: includes/options/wpglobus-options-header.php:34
548
  msgid "The WPGlobus Team"
549
  msgstr "El Equipo WPGlobus"
550
 
551
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
552
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
553
- #: includes/admin/class-wpglobus-customize-options.php:1388,
554
- #: includes/options/class-wpglobus-options.php:689
555
  msgid ""
556
  "We would hate to see you go. If something goes wrong, do not uninstall "
557
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
558
  msgstr ""
559
 
560
- #: includes/admin/class-wpglobus-customize-options.php:1395,
561
- #: includes/options/class-wpglobus-options.php:696
562
  msgid ""
563
  "Please note that if you deactivate WPGlobus, your site will show all the "
564
  "languages together, mixed up. You will need to remove all translations, "
@@ -567,8 +415,6 @@ msgstr ""
567
 
568
  #. translators: %s: link to the Clean-up Tool
569
  #. translators: %s: link to the Clean-up Tool.
570
- #: includes/admin/class-wpglobus-customize-options.php:1400,
571
- #: includes/options/class-wpglobus-options.php:700
572
  msgid ""
573
  "If there are just a few places, you should edit them manually. To "
574
  "automatically remove all translations at once, you can use the %s. WARNING: "
@@ -578,410 +424,305 @@ msgstr ""
578
 
579
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
580
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
581
- #: includes/admin/class-wpglobus-customize-options.php:1403,
582
- #: includes/options/class-wpglobus-options.php:677
583
  msgid "%1$sClean-up Tool%2$s"
584
  msgstr ""
585
 
586
  #. translators: %s: name of current theme
587
- #: includes/admin/class-wpglobus-customize-options.php:1415
588
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
589
  msgstr ""
590
 
591
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
592
- #: includes/admin/class-wpglobus-customize-options.php:1421
593
  msgid "Please use %1$sWPGlobus options page%2$s instead."
594
  msgstr ""
595
 
596
- #: includes/admin/class-wpglobus-customize-options.php:1485
597
  msgid "Expand/Shrink"
598
  msgstr ""
599
 
600
- #: includes/admin/class-wpglobus-dashboard-news.php:43,
601
- #: includes/admin/class-wpglobus-dashboard-news.php:59
602
  msgid "WPGlobus News"
603
  msgstr ""
604
 
605
- #: includes/admin/class-wpglobus-language-edit.php:197,
606
- #: includes/admin/class-wpglobus-language-edit.php:192
607
  msgid "Options updated"
608
  msgstr "Opciones actualizadas"
609
 
610
- #: includes/admin/class-wpglobus-language-edit.php:272
611
  msgid "Please enter a language code!"
612
  msgstr "Por favor, introduce el código del idioma!"
613
 
614
- #: includes/admin/class-wpglobus-language-edit.php:276
615
  msgid "Language code already exists!"
616
  msgstr "Este código de idioma ya existe!"
617
 
618
- #: includes/admin/class-wpglobus-language-edit.php:280
619
  msgid "Please specify the language flag!"
620
  msgstr "Por favor, especifica la bandera del idioma !"
621
 
622
- #: includes/admin/class-wpglobus-language-edit.php:284
623
  msgid "Please enter the language name!"
624
  msgstr "Por favor introduce el nombre del idioma!"
625
 
626
- #: includes/admin/class-wpglobus-language-edit.php:288
627
  msgid "Please enter the language name in English!"
628
  msgstr "Por favor introduce el nombre del idioma en Inglés!"
629
 
630
- #: includes/admin/class-wpglobus-language-edit.php:292
631
  msgid "Please enter the locale!"
632
  msgstr "Por favor introduce la localización!"
633
 
634
- #: includes/admin/class-wpglobus-language-edit.php:354
635
  msgid "Add Language"
636
  msgstr "Añadir Idioma"
637
 
638
- #: includes/admin/class-wpglobus-language-edit.php:351,
639
- #: includes/admin/class-wpglobus-language-edit.php:462,
640
- #: includes/admin/class-wpglobus-language-edit.php:455
641
  msgid "Delete Language"
642
  msgstr "Eliminar Idioma"
643
 
644
- #: includes/admin/class-wpglobus-language-edit.php:349
645
  msgid "Edit Language"
646
  msgstr "Editar Idioma"
647
 
648
- #: includes/admin/class-wpglobus-language-edit.php:384
649
  msgid "Language Code"
650
  msgstr "Código del Idioma"
651
 
652
- #: includes/admin/class-wpglobus-language-edit.php:391
653
  msgid ""
654
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
655
  msgstr ""
656
  "2-Carta de códigos de idioma ISO para el idioma que deseas insertar. "
657
  "(Ejemplo : en)"
658
 
659
- #: includes/admin/class-wpglobus-language-edit.php:396
660
  msgid "Language flag"
661
  msgstr "Bandera del idioma"
662
 
663
- #: includes/admin/class-wpglobus-language-edit.php:412
664
  msgid "Name"
665
  msgstr "Nombre"
666
 
667
- #: includes/admin/class-wpglobus-language-edit.php:417
668
  msgid ""
669
  "The name of the language in its native alphabet. (Examples: English, Русский)"
670
  msgstr ""
671
  "El nombre de la lengua en su alfabeto nativo. (Ejemplos : Español, English, "
672
  "Русский )"
673
 
674
- #: includes/admin/class-wpglobus-language-edit.php:422
675
  msgid "Name in English"
676
  msgstr "Nombre en Inglés"
677
 
678
- #: includes/admin/class-wpglobus-language-edit.php:427
679
  msgid "The name of the language in English"
680
  msgstr "El nombre del idioma en Inglés"
681
 
682
- #: includes/admin/class-wpglobus-language-edit.php:432,
683
- #: includes/options/fields/table/class-wpglobus-languages-table.php:115
684
  msgid "Locale"
685
  msgstr "Local"
686
 
687
- #: includes/admin/class-wpglobus-language-edit.php:437
688
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
689
  msgstr ""
690
  "PHP / WordPress configuración regional de la lengua . (Ejemplos : en_US, "
691
  "es_ES, ru_RU)"
692
 
693
- #: includes/admin/class-wpglobus-language-edit.php:460
694
  msgid "Are you sure you want to delete?"
695
  msgstr "Estás seguro de que quieres borrarlo?"
696
 
697
- #: includes/admin/class-wpglobus-language-edit.php:447
698
  msgid "Save Changes"
699
  msgstr "Guardar Cambios"
700
 
701
- #: includes/admin/class-wpglobus-language-edit.php:470
702
  msgid "Back to the WPGlobus Settings"
703
  msgstr "Volver a Ajustes WPGlobus"
704
 
705
- #: includes/admin/class-wpglobus-plugin-install.php:308
706
  msgid "Current Version"
707
  msgstr "Versión Actual"
708
 
709
- #: includes/admin/class-wpglobus-plugin-install.php:309
710
  msgid "Get it now!"
711
  msgstr ""
712
 
713
- #: includes/admin/class-wpglobus-plugin-install.php:310
714
  msgid "Premium add-on"
715
  msgstr ""
716
 
717
- #: includes/admin/class-wpglobus-plugin-install.php:311,
718
- #: includes/options/fields/table/class-wpglobus-languages-table.php:472
719
  msgid "Installed"
720
  msgstr "Instalado"
721
 
722
  #. translators: placeholders are for the HTML tags.
723
- #: includes/admin/class-wpglobus-plugin-install.php:319
724
  msgid ""
725
  "If you have already purchased a WPGlobus premium extension, please read "
726
  "%1$sthe installation instructions here%2$s"
727
  msgstr ""
728
 
729
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
730
- #: includes/options/class-wpglobus-options.php:726
731
  msgid "Help Desk"
732
  msgstr ""
733
 
734
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:185
735
  msgid "Email not sent. Please fill in the entire form."
736
  msgstr ""
737
 
738
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:195
739
  msgid ""
740
  "Email not sent. Please verify that your name and email are entered correctly."
741
  msgstr ""
742
 
743
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:216
744
  msgid "Email sent."
745
  msgstr ""
746
 
747
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
748
  msgid "Thank you for using WPGlobus!"
749
  msgstr ""
750
 
751
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
752
  msgid "Our Support Team is here to answer your questions or concerns."
753
  msgstr ""
754
 
755
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
756
  msgid "To help us serve you better:"
757
  msgstr ""
758
 
759
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
760
  msgid ""
761
  "Please check if the problem persists if you switch to a standard WordPress "
762
  "theme."
763
  msgstr ""
764
 
765
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
766
  msgid ""
767
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
768
  msgstr ""
769
 
770
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
771
  msgid "Please fill in and submit the contact form:"
772
  msgstr ""
773
 
774
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
775
  msgid "Please make sure the email address is correct."
776
  msgstr ""
777
 
778
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
779
  msgid "Subject"
780
  msgstr "Asunto"
781
 
782
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
783
  msgid "Short description of the problem"
784
  msgstr ""
785
 
786
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
787
  msgid "Detailed description"
788
  msgstr ""
789
 
790
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
791
  msgid "Technical Information"
792
  msgstr ""
793
 
794
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
795
  msgid "This information helps us to find the problem source"
796
  msgstr ""
797
 
798
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:161
799
  msgid ""
800
  "Alternatively, please email %s. Do not forget to copy and paste the "
801
  "technical information to your email message."
802
  msgstr ""
803
 
804
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:89
805
  msgid "WPGlobus Recommends:"
806
  msgstr ""
807
 
808
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:98,
809
- #: includes/options/class-wpglobus-options.php:933
810
  msgid "WPGlobus for WooCommerce"
811
  msgstr ""
812
 
813
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:102
814
  msgid ""
815
  "Translate product titles and descriptions, product categories, tags and "
816
  "attributes."
817
  msgstr ""
818
 
819
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:107
820
  msgid "Get it now:"
821
  msgstr ""
822
 
823
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:117
824
  msgid "WooCommerce Multi-Currency"
825
  msgstr ""
826
 
827
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:121
828
  msgid "Accept multiple currencies in your online store!"
829
  msgstr ""
830
 
831
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:126,
832
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:185
833
  msgid "Check it out:"
834
  msgstr ""
835
 
836
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:195
837
  msgid "To translate permalinks, please activate the module Slug."
838
  msgstr ""
839
 
840
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:183
841
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
842
  msgstr ""
843
 
844
- #: includes/builders/class-wpglobus-builder.php:278,
845
- #: includes/class-wpglobus.php:3577
846
  msgid "Save draft before using extra language."
847
  msgstr ""
848
 
849
- #: includes/builders/class-wpglobus-builder.php:371
850
  msgid "Builder"
851
  msgstr ""
852
 
853
- #: includes/builders/class-wpglobus-builder.php:395
854
  msgid "Сompatibility Settings"
855
  msgstr ""
856
 
857
  #. translators: ON/OFF status of WPGlobus on the edit pages.
858
  #. translators: ON/OFF status of WPGlobus on the edit pages.
859
- #: includes/builders/elementor/class-wpglobus-elementor.php:255,
860
- #: includes/class-wpglobus.php:1263
861
  msgid "ON"
862
  msgstr ""
863
 
864
- #: includes/builders/elementor/class-wpglobus-elementor.php:256,
865
- #: includes/class-wpglobus.php:1264
866
  msgid "Turn off"
867
  msgstr ""
868
 
869
- #: includes/builders/elementor/class-wpglobus-elementor.php:250,
870
- #: includes/class-wpglobus.php:1258
871
  msgid "OFF"
872
  msgstr ""
873
 
874
- #: includes/builders/elementor/class-wpglobus-elementor.php:251,
875
- #: includes/class-wpglobus.php:1259
876
  msgid "Turn on"
877
  msgstr ""
878
 
879
- #: includes/builders/elementor/class-wpglobus-elementor.php:281
880
  msgid "Elementor"
881
  msgstr ""
882
 
883
- #: includes/builders/elementor/class-wpglobus-elementor.php:508
884
  msgid "WPGlobus languages"
885
  msgstr ""
886
 
887
- #: includes/builders/elementor/class-wpglobus-elementor.php:514
888
  msgid "current"
889
  msgstr ""
890
 
891
- #: includes/builders/elementor/class-wpglobus-elementor.php:675
892
  msgid ""
893
  "WPGlobus provides multilingual support for Elementor only when the option "
894
  "%1$s%2$s%3$s is set to %4$s."
895
  msgstr ""
896
 
897
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:228
898
  msgid "Before switching the language, please save draft or publish."
899
  msgstr ""
900
 
901
  #. translators: Metabox title FOR language.
902
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:318
903
  msgctxt "filter__seo_meta_box_title"
904
  msgid "for"
905
  msgstr ""
906
 
907
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:392
908
  msgid "Page is being reloaded. Please wait..."
909
  msgstr ""
910
 
911
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:393
912
  msgid ""
913
  "Before switching the language, please save draft or publish, then reload "
914
  "page."
915
  msgstr ""
916
 
917
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
918
  msgid ""
919
  "WPGlobus provides multilingual support for Elementor only when the option "
920
  "`CSS Print Method` is set to `External File`."
921
  msgstr ""
922
 
923
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
924
  msgid "Open Elementor Settings page"
925
  msgstr ""
926
 
927
- #: includes/class-wpglobus-widget.php:27
928
  msgid "WPGlobus widget"
929
  msgstr "WPGlobus widget"
930
 
931
- #: includes/class-wpglobus-widget.php:29
932
  msgid "Add language switcher"
933
  msgstr "Añadir selector de idiomas"
934
 
935
- #: includes/class-wpglobus-widget.php:32
936
  msgid "Flags"
937
  msgstr "Banderas"
938
 
939
- #: includes/class-wpglobus-widget.php:33
940
  msgid "List"
941
  msgstr "Lista"
942
 
943
- #: includes/class-wpglobus-widget.php:34
944
  msgid "List with flags"
945
  msgstr "Lista con Banderas"
946
 
947
- #: includes/class-wpglobus-widget.php:35
948
  msgid "Select"
949
  msgstr "Seleccionar"
950
 
951
- #: includes/class-wpglobus-widget.php:36
952
  msgid "Select with language code"
953
  msgstr "Seleccionar con el código de idioma"
954
 
955
- #: includes/class-wpglobus-widget.php:37
956
  msgid "Dropdown"
957
  msgstr "Desplegable"
958
 
959
- #: includes/class-wpglobus-widget.php:38
960
  msgid "Dropdown with flags"
961
  msgstr "Desplegable con banderas"
962
 
963
- #: includes/class-wpglobus-widget.php:264
964
  msgid "Selector type"
965
  msgstr "Tipo de selector"
966
 
967
- #: includes/class-wpglobus.php:1447
968
  msgid "You cannot disable the main language."
969
  msgstr "No se puede desactivar el idioma principal."
970
 
971
- #: includes/class-wpglobus.php:1672
972
  msgid "Need a multilingual slug?"
973
  msgstr ""
974
 
975
- #: includes/class-wpglobus.php:1655
976
  msgid "*) Available after the menu is saved."
977
  msgstr "No Se Puede Desactivar el director idioma."
978
 
979
- #: includes/class-wpglobus.php:4025
980
  msgid "You must enable Pretty Permalinks to use WPGlobus."
981
  msgstr ""
982
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
983
 
984
- #: includes/class-wpglobus.php:4027
985
  msgid ""
986
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
987
  "default option."
@@ -989,193 +730,150 @@ msgstr ""
989
  "Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
990
  "selecciona una opción no predeterminada ."
991
 
992
- #: includes/options/class-wpglobus-options.php:281
993
  msgid "Language Selector Menu Style"
994
  msgstr ""
995
 
996
- #: includes/options/class-wpglobus-options.php:282,
997
- #: includes/options/class-wpglobus-options.php:802,
998
- #: includes/options/class-wpglobus-options.php:871
999
  msgid "WPGlobus Plus"
1000
  msgstr ""
1001
 
1002
- #: includes/options/class-wpglobus-options.php:283
1003
  msgid "Drop-down languages menu or Flat (in one line)"
1004
  msgstr ""
1005
 
1006
- #: includes/options/class-wpglobus-options.php:286
1007
  msgid "Do not change"
1008
  msgstr ""
1009
 
1010
- #: includes/options/class-wpglobus-options.php:287
1011
  msgid "Drop-down (vertical)"
1012
  msgstr ""
1013
 
1014
- #: includes/options/class-wpglobus-options.php:288
1015
  msgid "Flat (horizontal)"
1016
  msgstr ""
1017
 
1018
- #: includes/options/class-wpglobus-options.php:343
1019
  msgid ""
1020
  "If you see this message then your browser may not display the WPGlobus "
1021
  "Settings panel properly. Please try another browser."
1022
  msgstr ""
1023
 
1024
- #: includes/options/class-wpglobus-options.php:599,
1025
- #: includes/options/class-wpglobus-options.php:1577
1026
  msgid "Сompatibility"
1027
  msgstr ""
1028
 
1029
  #. translators: placeholders for "strong" tags.
1030
- #: includes/options/class-wpglobus-options.php:616
1031
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
1032
  msgstr ""
1033
 
1034
  #. translators: placeholders for "strong" tags.
1035
- #: includes/options/class-wpglobus-options.php:619
1036
  msgid ""
1037
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
1038
  "the language attributes: name, code, flag icon, etc."
1039
  msgstr ""
1040
 
1041
- #: includes/options/class-wpglobus-options.php:622
1042
  msgid "Important notes"
1043
  msgstr ""
1044
 
1045
  #. translators: placeholders for "strong" tags.
1046
- #: includes/options/class-wpglobus-options.php:624
1047
  msgid "Version %1$s1.9.17%2$s "
1048
  msgstr ""
1049
 
1050
  #. translators: placeholders for "strong" tags.
1051
- #: includes/options/class-wpglobus-options.php:627
1052
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
1053
  msgstr ""
1054
 
1055
  #. translators: placeholders for "strong" tags; compatibility tab link.
1056
- #: includes/options/class-wpglobus-options.php:630
1057
  msgid ""
1058
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
1059
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
1060
  msgstr ""
1061
 
1062
  #. translators: placeholders for "strong" tags; compatibility tab link.
1063
- #: includes/options/class-wpglobus-options.php:633
1064
  msgid ""
1065
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
1066
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
1067
  msgstr ""
1068
 
1069
  #. translators: placeholders for "strong" tags.
1070
- #: includes/options/class-wpglobus-options.php:637
1071
  msgid "Version %1$s2.2.11%2$s "
1072
  msgstr ""
1073
 
1074
- #: includes/options/class-wpglobus-options.php:639
1075
  msgid "Starting from this version"
1076
  msgstr ""
1077
 
1078
  #. translators: placeholders for "strong" tags.
1079
- #: includes/options/class-wpglobus-options.php:642
1080
  msgid ""
1081
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
1082
  "(CPT)."
1083
  msgstr ""
1084
 
1085
  #. translators: placeholders for "strong" tags.
1086
- #: includes/options/class-wpglobus-options.php:645
1087
  msgid ""
1088
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
1089
  "the %1$s[%3$s]%2$s tab."
1090
  msgstr ""
1091
 
1092
- #: includes/options/class-wpglobus-options.php:662
1093
  msgid "Welcome!"
1094
  msgstr "Bienvenido!"
1095
 
1096
- #: includes/options/class-wpglobus-options.php:685
1097
  msgid "Deactivating / Uninstalling"
1098
  msgstr ""
1099
 
1100
- #: includes/options/class-wpglobus-options.php:711
1101
  msgid "Uninstall"
1102
  msgstr ""
1103
 
1104
- #: includes/options/class-wpglobus-options.php:741
1105
  msgid "All add-ons"
1106
  msgstr ""
1107
 
1108
- #: includes/options/class-wpglobus-options.php:756
1109
  msgid "Mobile Menu"
1110
  msgstr ""
1111
 
1112
- #: includes/options/class-wpglobus-options.php:771
1113
  msgid "Language Widgets"
1114
  msgstr ""
1115
 
1116
- #: includes/options/class-wpglobus-options.php:841
1117
  msgid "We Recommend..."
1118
  msgstr ""
1119
 
1120
- #: includes/options/class-wpglobus-options.php:873
1121
  msgid ""
1122
  "Our premium add-on, WPGlobus Plus, will add several features to your "
1123
  "website, such as:"
1124
  msgstr ""
1125
 
1126
- #: includes/options/class-wpglobus-options.php:876
1127
  msgid ""
1128
  "- Ability to write a post in one language and immediately publish it, not "
1129
  "waiting for the translation to other languages;"
1130
  msgstr ""
1131
 
1132
- #: includes/options/class-wpglobus-options.php:879
1133
  msgid "- Set different URLs for each translation;"
1134
  msgstr ""
1135
 
1136
- #: includes/options/class-wpglobus-options.php:882
1137
  msgid ""
1138
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
1139
  "for each translation;"
1140
  msgstr ""
1141
 
1142
- #: includes/options/class-wpglobus-options.php:885
1143
  msgid "- and more..."
1144
  msgstr ""
1145
 
1146
- #: includes/options/class-wpglobus-options.php:888,
1147
- #: includes/options/class-wpglobus-options.php:945,
1148
- #: includes/options/class-wpglobus-options.php:1003
1149
  msgid "Click here to download"
1150
  msgstr ""
1151
 
1152
- #: includes/options/class-wpglobus-options.php:936
1153
  msgid ""
1154
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
1155
  "translate your blog posts and pages to many languages."
1156
  msgstr ""
1157
 
1158
- #: includes/options/class-wpglobus-options.php:939
1159
  msgid "The next step is to translate your WooCommerce-based store!"
1160
  msgstr ""
1161
 
1162
- #: includes/options/class-wpglobus-options.php:942
1163
  msgid ""
1164
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
1165
  "translate product titles and descriptions, categories, tags and attributes."
1166
  msgstr ""
1167
 
1168
- #: includes/options/class-wpglobus-options.php:989
1169
  msgid "Multi-currency"
1170
  msgstr ""
1171
 
1172
- #: includes/options/class-wpglobus-options.php:992
1173
  msgid ""
1174
  "Your WooCommerce-powered store is set to show prices and accept payments in "
1175
  "a single currency only."
1176
  msgstr ""
1177
 
1178
- #: includes/options/class-wpglobus-options.php:996
1179
  msgid ""
1180
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
1181
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
@@ -1183,488 +881,370 @@ msgid ""
1183
  "positioning for global growth!"
1184
  msgstr ""
1185
 
1186
- #: includes/options/class-wpglobus-options.php:1000
1187
  msgid ""
1188
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
1189
  "re-calculating prices on-the-fly."
1190
  msgstr ""
1191
 
1192
- #: includes/options/class-wpglobus-options.php:1037
1193
  msgid "WPGlobus Premium Add-ons"
1194
  msgstr ""
1195
 
1196
- #: includes/options/class-wpglobus-options.php:1039
1197
  msgid ""
1198
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
1199
  "you will be able to:"
1200
  msgstr ""
1201
 
1202
- #: includes/options/class-wpglobus-options.php:1044
1203
  msgid ""
1204
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
1205
  "моя-страница and so on);"
1206
  msgstr ""
1207
 
1208
- #: includes/options/class-wpglobus-options.php:1047
1209
  msgid ""
1210
  "Postpone translation to some languages and <strong>publish only the "
1211
  "translated texts</strong>;"
1212
  msgstr ""
1213
 
1214
- #: includes/options/class-wpglobus-options.php:1050
1215
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
1216
  msgstr ""
1217
 
1218
- #: includes/options/class-wpglobus-options.php:1053
1219
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
1220
  msgstr ""
1221
 
1222
- #: includes/options/class-wpglobus-options.php:1056
1223
  msgid ""
1224
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
1225
  "strong>;"
1226
  msgstr ""
1227
 
1228
- #: includes/options/class-wpglobus-options.php:1060
1229
  msgid "...and more."
1230
  msgstr ""
1231
 
1232
- #: includes/options/class-wpglobus-options.php:1063
1233
  msgid "Click here to visit the WPGlobus Store"
1234
  msgstr ""
1235
 
1236
- #: includes/options/class-wpglobus-options.php:1104
1237
  msgid "Select a language"
1238
  msgstr "Seleccionar un idioma"
1239
 
1240
  #. translators: %3$s placeholder for the icon (actual picture).
1241
- #: includes/options/class-wpglobus-options.php:1133
1242
  msgid ""
1243
  "Place the %1$smain language%2$s of your site at the top of the list by "
1244
  "dragging the %3$s icons."
1245
  msgstr ""
1246
 
1247
  #. translators: placeholders for the "strong" HTML tags.
1248
- #: includes/options/class-wpglobus-options.php:1136
1249
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
1250
  msgstr ""
1251
 
1252
  #. translators: placeholders for the "strong" HTML tags.
1253
- #: includes/options/class-wpglobus-options.php:1139
1254
  msgid "%1$sAdd%2$s more languages using the section below."
1255
  msgstr ""
1256
 
1257
- #: includes/options/class-wpglobus-options.php:1140
1258
  msgid "When done, click the [Save Changes] button."
1259
  msgstr "Cuando hayas terminado, haz clic en el botón [Guardar Cambios] ."
1260
 
1261
  #. translators: %s - placeholder for the "Save Changes" button text.
1262
- #: includes/options/class-wpglobus-options.php:1151
1263
  msgid "Press the %s button to confirm."
1264
  msgstr ""
1265
 
1266
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
1267
- #: includes/options/class-wpglobus-options.php:1168
1268
  msgid "-- none --"
1269
  msgstr ""
1270
 
1271
- #: includes/options/class-wpglobus-options.php:1169
1272
  msgid "All menus"
1273
  msgstr ""
1274
 
1275
- #: includes/options/class-wpglobus-options.php:1182
1276
  msgid "Instructions:"
1277
  msgstr "Instrucciones:"
1278
 
1279
- #: includes/options/class-wpglobus-options.php:1242
1280
  msgid "(Found in some themes)"
1281
  msgstr "(Encontrado en algunos temas)"
1282
 
1283
- #: includes/options/class-wpglobus-options.php:1244
1284
  msgid "Enable"
1285
  msgstr "Habilitar"
1286
 
1287
- #: includes/options/class-wpglobus-options.php:1259
1288
  msgid "Languages table"
1289
  msgstr "Tabla de idiomas"
1290
 
1291
- #: includes/options/class-wpglobus-options.php:1265
1292
  msgid "Use this table to add, edit or delete languages."
1293
  msgstr "Utiliza esta tabla para agregar, editar o eliminar idiomas."
1294
 
1295
- #: includes/options/class-wpglobus-options.php:1266
1296
  msgid "NOTE: you cannot remove the main language."
1297
  msgstr "Nota: No se puede eliminar el idioma principal."
1298
 
1299
- #: includes/options/class-wpglobus-options.php:1314
1300
  msgid "WPGlobus is enabled on these Post Types"
1301
  msgstr ""
1302
 
1303
- #: includes/options/class-wpglobus-options.php:1315
1304
  msgid "Uncheck to disable"
1305
  msgstr ""
1306
 
1307
- #: includes/options/class-wpglobus-options.php:1316
1308
  msgid ""
1309
  "Please note that there are post types, which status is managed by other "
1310
  "plugins and cannot be changed here."
1311
  msgstr ""
1312
 
1313
- #: includes/options/class-wpglobus-options.php:1321
1314
  msgid "Post Types"
1315
  msgstr ""
1316
 
1317
- #: includes/options/class-wpglobus-options.php:1337
1318
  msgid ""
1319
  "You should put here only the code provided by WPGlobus Support. Do not write "
1320
  "anything else in the sections below as it might break the functionality of "
1321
  "your website!"
1322
  msgstr ""
1323
 
1324
- #: includes/options/class-wpglobus-options.php:1378
1325
  msgid "Custom Code"
1326
  msgstr ""
1327
 
1328
- #: includes/options/class-wpglobus-options.php:1486,
1329
- #: includes/options/class-wpglobus-options.php:1618,
1330
- #: includes/options/class-wpglobus-options.php:1729
1331
  msgid "Enabled"
1332
  msgstr "Activar"
1333
 
1334
- #: includes/options/class-wpglobus-options.php:1499
1335
  msgid "Builders support"
1336
  msgstr ""
1337
 
1338
- #: includes/options/class-wpglobus-options.php:1551
1339
  msgid "Builder mode is enabled on these Post Types"
1340
  msgstr ""
1341
 
1342
- #: includes/options/class-wpglobus-options.php:1617
1343
  msgid "Old fashioned language switcher"
1344
  msgstr ""
1345
 
1346
- #: includes/options/class-wpglobus-options.php:1623
1347
  msgid "Block Editor"
1348
  msgstr ""
1349
 
1350
- #: includes/options/class-wpglobus-options.php:1624
1351
  msgid "Block Editor Options"
1352
  msgstr ""
1353
 
1354
- #: includes/options/class-wpglobus-options.php:1653
1355
  msgid ""
1356
  "With the current settings, you will see the following lines in the section "
1357
  "HEAD of your site pages"
1358
  msgstr ""
1359
 
1360
- #: includes/options/class-wpglobus-options.php:1655
1361
  msgid "(example for two languages)"
1362
  msgstr ""
1363
 
1364
- #: includes/options/class-wpglobus-options.php:1702
1365
  msgid ""
1366
  "Tell search engines about localized versions of your pages using the "
1367
  "hreflang tag"
1368
  msgstr ""
1369
 
1370
- #: includes/options/class-wpglobus-options.php:1711
1371
  msgid "Output the hreflang tag as"
1372
  msgstr ""
1373
 
1374
- #: includes/options/class-wpglobus-options.php:1714
1375
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1376
  msgstr ""
1377
 
1378
- #: includes/options/class-wpglobus-options.php:1715
1379
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1380
  msgstr ""
1381
 
1382
- #: includes/options/class-wpglobus-options.php:1716
1383
  msgid "Language code only (en, ru, etc.)"
1384
  msgstr ""
1385
 
1386
- #: includes/options/class-wpglobus-options.php:1728
1387
  msgid "Use the code `x-default` for the main language"
1388
  msgstr ""
1389
 
1390
- #: includes/options/class-wpglobus-options.php:1734
1391
  msgid "Multilingual SEO"
1392
  msgstr ""
1393
 
1394
- #: includes/options/class-wpglobus-options.php:1735
1395
  msgid "Multilingual SEO Options"
1396
  msgstr ""
1397
 
1398
- #: includes/options/class-wpglobus-options.php:1772
1399
  msgid ""
1400
  "With WPGlobus, you can get translations for posts and pages using REST API."
1401
  msgstr ""
1402
 
1403
- #: includes/options/class-wpglobus-options.php:1800,
1404
- #: includes/options/class-wpglobus-options.php:1808,
1405
- #: includes/options/class-wpglobus-options.php:1780,
1406
- #: includes/options/class-wpglobus-options.php:1789
1407
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1408
  msgstr ""
1409
 
1410
- #: includes/options/class-wpglobus-options.php:1777
1411
  msgid ""
1412
  "For demonstration, you can try the first post that WordPress creates at the "
1413
  "initial installation."
1414
  msgstr ""
1415
 
1416
- #: includes/options/class-wpglobus-options.php:1819
1417
  msgid ""
1418
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1419
  "information."
1420
  msgstr ""
1421
 
1422
- #: includes/options/class-wpglobus-options.php:1826
1423
  msgid ""
1424
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1425
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1426
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1427
  msgstr ""
1428
 
1429
- #: includes/options/class-wpglobus-options.php:1839
1430
  msgid "Description:"
1431
  msgstr ""
1432
 
1433
- #: includes/options/class-wpglobus-options.php:1846,
1434
- #: includes/options/class-wpglobus-options.php:1847
1435
  msgid "REST API"
1436
  msgstr ""
1437
 
1438
- #: includes/options/class-wpglobus-options.php:2180
1439
  msgid "Translate strings"
1440
  msgstr ""
1441
 
1442
- #: includes/options/fields/table/class-wpglobus-languages-table.php:66
1443
  msgid "item"
1444
  msgstr "Artículo"
1445
 
1446
- #: includes/options/fields/table/class-wpglobus-languages-table.php:68
1447
  msgid "items"
1448
  msgstr "Artículos"
1449
 
1450
- #: includes/options/fields/table/class-wpglobus-languages-table.php:88
1451
  msgid "Code"
1452
  msgstr "Código"
1453
 
1454
- #: includes/options/fields/table/class-wpglobus-languages-table.php:94
1455
  msgid "Edit"
1456
  msgstr "Editar"
1457
 
1458
- #: includes/options/fields/table/class-wpglobus-languages-table.php:99
1459
  msgid "Delete"
1460
  msgstr "Borrar"
1461
 
1462
- #: includes/options/fields/table/class-wpglobus-languages-table.php:105
1463
  msgid "File"
1464
  msgstr "Archivo"
1465
 
1466
- #: includes/options/fields/table/class-wpglobus-languages-table.php:110
1467
  msgid "Flag"
1468
  msgstr "Bandera"
1469
 
1470
- #: includes/options/fields/table/class-wpglobus-languages-table.php:120
1471
  msgid "Language name"
1472
  msgstr "Nombre del idioma"
1473
 
1474
- #: includes/options/fields/table/class-wpglobus-languages-table.php:125
1475
  msgid "English language name"
1476
  msgstr "Nombre del idioma en Inglés"
1477
 
1478
- #: includes/options/fields/table/class-wpglobus-languages-table.php:151
1479
  msgid "No items found"
1480
  msgstr "No se han encntrado artículos"
1481
 
1482
- #: includes/options/fields/table/class-wpglobus-languages-table.php:164
1483
  msgid "Add new Language"
1484
  msgstr "Añadir nuevo idioma"
1485
 
1486
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:164
1487
  msgid "No items of this type were found."
1488
  msgstr ""
1489
 
1490
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:107
1491
  msgid "Select an item"
1492
  msgstr ""
1493
 
1494
- #: includes/options/templates/compatibility-beta.php:15
1495
  msgid "Multilingual support of this add-on is currently in Beta stage."
1496
  msgstr ""
1497
 
1498
- #: includes/options/templates/compatibility-beta.php:17
1499
  msgid "We do not recommend using it on production sites."
1500
  msgstr ""
1501
 
1502
- #: includes/options/templates/compatibility-beta.php:23
1503
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1504
  msgstr ""
1505
 
1506
- #: includes/options/templates/compatibility.php:69
1507
  msgid "WordPress version"
1508
  msgstr ""
1509
 
1510
- #: includes/options/templates/compatibility.php:44
1511
  msgid "In the WordPress core"
1512
  msgstr ""
1513
 
1514
- #: includes/options/templates/compatibility.php:46
1515
  msgid "Core"
1516
  msgstr "Nucleo"
1517
 
1518
- #: includes/options/templates/compatibility.php:52,
1519
- #: includes/options/templates/compatibility.php:79
1520
  msgid "Current version"
1521
  msgstr ""
1522
 
1523
- #: includes/options/templates/compatibility.php:53,
1524
- #: includes/options/templates/compatibility.php:81
1525
  msgid "Stage"
1526
  msgstr ""
1527
 
1528
- #: includes/options/templates/compatibility.php:54,
1529
- #: includes/options/templates/compatibility.php:82
1530
  msgid "Status"
1531
  msgstr "Estado"
1532
 
1533
- #: includes/options/templates/compatibility.php:60
1534
  msgid "Block editor"
1535
  msgstr ""
1536
 
1537
- #: includes/options/templates/compatibility.php:62
1538
  msgid "production"
1539
  msgstr ""
1540
 
1541
- #: includes/options/templates/compatibility.php:73
1542
  msgid "List of supported add-ons"
1543
  msgstr ""
1544
 
1545
- #: includes/options/templates/compatibility.php:78
1546
  msgid "Add-on"
1547
  msgstr ""
1548
 
1549
- #: includes/options/templates/compatibility.php:80
1550
  msgid "Supported minimum version"
1551
  msgstr ""
1552
 
1553
- #: includes/options/templates/compatibility.php:105
1554
  msgid "Not installed"
1555
  msgstr ""
1556
 
1557
- #: includes/options/templates/compatibility.php:102
1558
  msgid "Installed, inactive"
1559
  msgstr ""
1560
 
1561
- #: includes/options/templates/compatibility.php:100
1562
  msgid "Active"
1563
  msgstr "Activo"
1564
 
1565
- #: includes/options/templates/customize-intro.php:35
1566
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1567
  msgstr ""
1568
 
1569
- #: includes/options/templates/customize-intro.php:39
1570
  msgid "However, some themes do not follow all WordPress standards strictly."
1571
  msgstr ""
1572
 
1573
- #: includes/options/templates/customize-intro.php:41
1574
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1575
  msgstr ""
1576
 
1577
- #: includes/options/templates/customize-intro.php:45
1578
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1579
  msgstr ""
1580
 
1581
- #: includes/options/templates/customize-intro.php:53
1582
  msgid ""
1583
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1584
  "With those themes, WPGlobus Customizer is switched off by default"
1585
  msgstr ""
1586
 
1587
- #: includes/options/templates/customize-intro.php:60
1588
  msgid "The currently active theme is"
1589
  msgstr ""
1590
 
1591
- #: includes/options/templates/customize-intro.php:66
1592
  msgid "In the current version, WPGlobus Customizer does not support"
1593
  msgstr ""
1594
 
1595
- #: includes/options/templates/customize-intro.php:70
1596
  msgid "translation of the navigation menus"
1597
  msgstr ""
1598
 
1599
- #: includes/options/templates/customize-intro.php:72
1600
  msgid "to translate, please go to"
1601
  msgstr ""
1602
 
1603
- #: includes/options/templates/customize-intro.php:81
1604
  msgid "Go to Customizer"
1605
  msgstr ""
1606
 
1607
- #: includes/options/templates/customize-intro.php:88
1608
  msgid "is undefined"
1609
  msgstr ""
1610
 
1611
- #: includes/options/templates/customize-intro.php:85
1612
  msgid "is set to"
1613
  msgstr ""
1614
 
1615
- #: includes/options/templates/customize-intro.php:94
1616
  msgid "by adding to the file wp-config.php"
1617
  msgstr ""
1618
 
1619
- #: includes/options/templates/customize-intro.php:96
1620
  msgid "now"
1621
  msgstr ""
1622
 
1623
- #: includes/options/wpglobus-options-header.php:25
1624
  msgid "We rely on your support!"
1625
  msgstr ""
1626
 
1627
- #: includes/options/wpglobus-options-header.php:28
1628
  msgid "Please consider a small donation to support the future development."
1629
  msgstr ""
1630
 
1631
- #: includes/options/wpglobus-options-header.php:32
1632
  msgid "Thank you!"
1633
  msgstr "Gracias!"
1634
 
1635
- #: includes/options/wpglobus-options-header.php:55
1636
  msgid "WPGlobus Plus!"
1637
  msgstr "WPGlobus Plus!"
1638
 
1639
- #: includes/options/wpglobus-options-header.php:58
1640
  msgid ""
1641
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1642
  "separate publishing and more! "
1643
  msgstr ""
1644
 
1645
- #: includes/options/wpglobus-options-header.php:64
1646
  msgid "Get WPGlobus Plus now!"
1647
  msgstr ""
1648
 
1649
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1650
  msgid ""
1651
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1652
  "the current version."
1653
  msgstr ""
1654
 
1655
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1656
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1657
  msgstr ""
1658
 
1659
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1660
  msgid "WPGlobus warning: "
1661
  msgstr ""
1662
 
1663
- #: wpglobus.php:13
1664
  msgid "https://github.com/WPGlobus/WPGlobus"
1665
  msgstr ""
1666
 
1667
- #: wpglobus.php:14
1668
  msgid ""
1669
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1670
  "widgets and even custom fields - in multiple languages!"
@@ -1672,6 +1252,5 @@ msgstr ""
1672
  "WordPress Globalization / Plugin multilenguaje. Mensajes, páginas, menús, "
1673
  "widgets e incluso campos personalizados - en varios idiomas !"
1674
 
1675
- #: wpglobus.php:19
1676
  msgid "https://wpglobus.com/"
1677
  msgstr ""
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
 
 
 
 
 
19
  msgid "Guide"
20
  msgstr "Guía"
21
 
 
 
22
  msgid "WPGlobus Help Desk"
23
  msgstr ""
24
 
 
 
 
 
 
 
 
25
  msgid "Add-ons"
26
  msgstr "Complementos"
27
 
 
28
  msgid "Quick Start"
29
  msgstr "Inicio Rápido"
30
 
 
 
31
  msgid "FAQ"
32
  msgstr "FAQ"
33
 
 
34
  msgid ""
35
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
36
  msgstr ""
37
 
 
38
  msgid ""
39
  "The mbstring extension is required for the full UTF-8 compatibility and "
40
  "better performance. Without it, some parts of WordPress and WPGlobus may "
42
  "administrator."
43
  msgstr ""
44
 
 
45
  msgid "Go to WPGlobus Settings"
46
  msgstr "Ir a Ajustes WPGlobus"
47
 
 
48
  msgid "Easy as 1-2-3:"
49
  msgstr "Fácil en 1-2-3:"
50
 
 
51
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
52
  msgstr "Ve al menú de administración WPGlobus y elege los países/idiomas;"
53
 
 
54
  msgid ""
55
  "Enter the translations to the posts, pages, categories, tags and menus using "
56
  "a clean and simple interface."
58
  "Introduce las traducciones a los mensajes, páginas, categorías,etiquetas y "
59
  "menús usando una interfaz limpia y simple."
60
 
 
61
  msgid ""
62
  "Switch languages at the front-end using a drop-down menu with language names "
63
  "and country flags."
65
  "Cambia de idioma en el front-end utilizando un menú desplegable con los "
66
  "nombres de las lenguas y banderas de los países ."
67
 
 
68
  msgid "Links:"
69
  msgstr "Enlaces:"
70
 
 
71
  msgid "FAQs"
72
  msgstr "Preguntas Frecuentes"
73
 
 
74
  msgid "Contact Us"
75
  msgstr "Contáctanos"
76
 
 
77
  msgid "Please give us 5 stars!"
78
  msgstr "Por favor danos 5 estrellas!"
79
 
 
80
  msgid "WPGlobus does not translate texts automatically!"
81
  msgstr ""
82
 
 
83
  msgid ""
84
  "There are many translation companies and individual translators who can help "
85
  "you write and proofread the texts."
86
  msgstr ""
87
 
 
88
  msgid ""
89
  "When you choose a translator, please look at their native language, country "
90
  "of residence, specialization and knowledge of WordPress."
91
  msgstr ""
92
 
93
  #. translators: %s are used to insert HTML link. Keep them in place.
 
94
  msgid ""
95
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
96
  "website. This is not an endorsement, just a courtesy. Please contact them "
97
  "directly and let us know how did it work for you!"
98
  msgstr ""
99
 
 
100
  msgid "Important notes:"
101
  msgstr ""
102
 
 
103
  msgid ""
104
  "WPGlobus only supports the localization URLs in the form of <code>example."
105
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
110
  "subdominios <code>example.com</code> ni consultas lingüísticas <code>example."
111
  "com?lang=xx</code>."
112
 
 
113
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
114
  msgstr ""
115
  "En algunos temas y plugins <strong>No está listo el multilenguaje</strong>."
116
 
 
117
  msgid ""
118
  "They might display some texts with no translation, or with all languages "
119
  "mixed together."
122
  "mezclados entre sí."
123
 
124
  #. translators: %s are used to insert HTML link. Keep them in place.
 
125
  msgid ""
126
  "Please contact the theme / plugin author. If they are unable to assist, "
127
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
130
  "ayudarte, considera % s la contratación del WPGlobus % s para escribir un "
131
  "código personalizado para tí."
132
 
 
133
  msgid "Language was set on your profile page"
134
  msgstr ""
135
 
 
136
  msgid "Add"
137
  msgstr "Añadir"
138
 
 
 
139
  msgid "Multilingual Everything!"
140
  msgstr "Multilenguaje Total!"
141
 
 
 
142
  msgid ""
143
  "WPGlobus is a family of WordPress plugins assisting you in making "
144
  "multilingual WordPress blogs and sites."
146
  "WPGlobus es una familia de plugins de WordPress que ayudan en la traducción "
147
  "de blogs de WordPress."
148
 
 
149
  msgid "Remove the WPGlobus settings (not recommended)"
150
  msgstr ""
151
 
 
152
  msgid "Clean-up Tool"
153
  msgstr ""
154
 
 
155
  msgid "Support"
156
  msgstr "Soporte"
157
 
 
158
  msgid ""
159
  "WARNING: this operation is non-reversible. It is strongly recommended that "
160
  "you backup your database before proceeding."
161
  msgstr ""
162
 
 
163
  msgid ""
164
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
165
  "By running it, you will remove ALL translations you have entered to your "
169
  "so on."
170
  msgstr ""
171
 
 
172
  msgid ""
173
  "Make sure that your active theme does not have any code related to WPGlobus. "
174
  "Such code could be added by you or by a 3rd party developer. If that code "
177
  msgstr ""
178
 
179
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
 
180
  msgid ""
181
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
182
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
183
  msgstr ""
184
 
 
185
  msgid "You are about to clean the content of the following database tables:"
186
  msgstr ""
187
 
 
188
  msgid "The operations log"
189
  msgstr ""
190
 
 
191
  msgid ""
192
  "We are going to write a detailed log of all the database changes performed. "
193
  "It should help in the case you need to restore something important. The log "
194
  "will be written to the file:"
195
  msgstr ""
196
 
 
197
  msgid ""
198
  "Uncheck if you do not want to write the operations log (we recommend to keep "
199
  "it checked)"
200
  msgstr ""
201
 
 
202
  msgid "You have been warned..."
203
  msgstr ""
204
 
 
205
  msgid "Please confirm by checking the box below:"
206
  msgstr ""
207
 
 
208
  msgid ""
209
  "I have read and understood everything written on this page. I am aware that "
210
  "by using this tool I may loose some content of my website. I have made a "
212
  "responsible for the results."
213
  msgstr ""
214
 
 
215
  msgid "YES, I CONFIRM"
216
  msgstr ""
217
 
 
218
  msgid "Process with the Clean-up"
219
  msgstr ""
220
 
 
 
 
 
221
  msgid "Default"
222
  msgstr "Predefinido"
223
 
 
224
  msgid "Section"
225
  msgstr ""
226
 
 
227
  msgid "Show all sections"
228
  msgstr ""
229
 
 
230
  msgid "Save &amp; Reload"
231
  msgstr ""
232
 
 
 
 
233
  msgid "WPGlobus"
234
  msgstr ""
235
 
 
236
  msgid ""
237
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
238
  msgstr ""
239
 
 
240
  msgid "Fields Settings"
241
  msgstr ""
242
 
 
243
  msgid "WPGlobus Settings"
244
  msgstr ""
245
 
 
246
  msgid "Help"
247
  msgstr "Ayuda"
248
 
 
 
249
  msgid "Languages"
250
  msgstr "Idiomas"
251
 
 
 
252
  msgid "Enabled Languages"
253
  msgstr "Idiomas Habilitados"
254
 
 
 
255
  msgid "These languages are currently enabled on your site."
256
  msgstr "Estos idiomas están habilitados actualmente en su sitio."
257
 
 
 
258
  msgid "Choose a language you would like to enable."
259
  msgstr ""
260
 
 
261
  msgid "Press the [Save & Publish] button to confirm."
262
  msgstr ""
263
 
264
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
265
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
 
 
266
  msgid "or Add new Language %1$s here %2$s"
267
  msgstr ""
268
 
 
 
269
  msgid "Add Languages"
270
  msgstr "Añadir idioma"
271
 
 
 
272
  msgid "Language Selector Mode"
273
  msgstr "Modo Selector de Idioma"
274
 
 
 
275
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
276
  msgstr "Código de la bandera en dos letras (es, en, ru, it, etc.)"
277
 
 
 
278
  msgid "Full Name (English, Russian, Italian, etc.)"
279
  msgstr "Nombre completo (Español, English, Russian, Italian, etc.)"
280
 
 
 
281
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
282
  msgstr "Nombre completo con bandera (Español, English, Russian, Italian, etc.)"
283
 
 
 
284
  msgid "Flags only"
285
  msgstr "Sólo banderas"
286
 
 
 
287
  msgid ""
288
  "Choose the way language name and country flag are shown in the drop-down menu"
289
  msgstr ""
290
  "Elige el nombre del idioma y bandera del país se muestran en el menú "
291
  "desplegable"
292
 
 
293
  msgid "select navigation menu"
294
  msgstr ""
295
 
 
 
 
296
  msgid "Language Selector Menu"
297
  msgstr "Menú selector de idioma"
298
 
 
 
 
299
  msgid "Choose the navigation menu where the language selector will be shown"
300
  msgstr ""
301
  "Selecciona el menú de navegación donde se mostrará el selector de idioma"
302
 
 
303
  msgid "No menus have been created yet. Create some."
304
  msgstr ""
305
 
 
 
306
  msgid "\"All Pages\" menus Language selector"
307
  msgstr "\"Todas las páginas\" Selector de menús Idioma"
308
 
 
 
309
  msgid ""
310
  "Adds language selector to the menus that automatically list all existing "
311
  "pages (using `wp_list_pages`)"
314
  "automáticamente en todas las páginas existentes (utilizando ` "
315
  "wp_list_pages` )"
316
 
 
 
317
  msgid "Custom CSS"
318
  msgstr "Customizar CSS"
319
 
 
320
  msgid ""
321
  "Here you can enter the CSS rules to adjust the language selector menu for "
322
  "your theme. Look at the examples in the `style-samples.css` file."
324
  "Aquí puedes introducir las reglas CSS para ajustar el menú de selección de "
325
  "idiomas para tu tema. Mira los ejemplos en el `style-samples.css` file."
326
 
 
327
  msgid "Post types"
328
  msgstr "Tipos de Post"
329
 
 
330
  msgid "Uncheck to disable WPGlobus"
331
  msgstr "Desactiva la opción para desactivar WPGlobus"
332
 
 
 
333
  msgid "Redirect"
334
  msgstr "Redirección"
335
 
 
 
336
  msgid "Choose the language automatically, based on:"
337
  msgstr ""
338
 
 
 
339
  msgid "Preferred language set in the browser"
340
  msgstr ""
341
 
 
 
342
  msgid ""
343
  "When a user comes to the site for the first time, try to find the best "
344
  "matching language version of the page."
345
  msgstr ""
346
 
 
 
 
 
347
  msgid "Custom JS Code"
348
  msgstr ""
349
 
 
 
350
  msgid "Title"
351
  msgstr "Título"
352
 
 
353
  msgid "(Paste your JS code here.)"
354
  msgstr ""
355
 
 
356
  msgid ""
357
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
358
  "version 4.9 or later."
359
  msgstr ""
360
 
 
361
  msgid "With your version of WordPress, please use the"
362
  msgstr ""
363
 
 
364
  msgid "WPGlobus Settings page"
365
  msgstr ""
366
 
 
367
  msgid "Label"
368
  msgstr ""
369
 
 
370
  msgid "Description"
371
  msgstr "Decripción"
372
 
 
373
  msgid ""
374
  "Here you can specify which fields should be considered multilingual by "
375
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
376
  msgstr ""
377
 
 
 
378
  msgid "Thank you for installing WPGlobus!"
379
  msgstr "Gracias por instalar WPGlobus!"
380
 
 
 
381
  msgid "Read About WPGlobus"
382
  msgstr "Leer sobre WPGlobus!"
383
 
 
384
  msgid ""
385
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
386
  msgstr ""
387
  "Click en la <strong>[Idiomas]</strong> pestaña en la parte izquierda de "
388
  "configuración de las opciones."
389
 
 
 
390
  msgid ""
391
  "Should you have any questions or comments, please do not hesitate to contact "
392
  "us."
394
  "Si tienes alguna pregunta o comentario, por favor no dudes en contactar con "
395
  "nosotros."
396
 
 
 
397
  msgid "Sincerely Yours,"
398
  msgstr "Sinceramente tuyo,"
399
 
 
 
 
400
  msgid "The WPGlobus Team"
401
  msgstr "El Equipo WPGlobus"
402
 
403
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
404
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
405
  msgid ""
406
  "We would hate to see you go. If something goes wrong, do not uninstall "
407
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
408
  msgstr ""
409
 
 
 
410
  msgid ""
411
  "Please note that if you deactivate WPGlobus, your site will show all the "
412
  "languages together, mixed up. You will need to remove all translations, "
415
 
416
  #. translators: %s: link to the Clean-up Tool
417
  #. translators: %s: link to the Clean-up Tool.
 
 
418
  msgid ""
419
  "If there are just a few places, you should edit them manually. To "
420
  "automatically remove all translations at once, you can use the %s. WARNING: "
424
 
425
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
426
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
427
  msgid "%1$sClean-up Tool%2$s"
428
  msgstr ""
429
 
430
  #. translators: %s: name of current theme
 
431
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
432
  msgstr ""
433
 
434
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
435
  msgid "Please use %1$sWPGlobus options page%2$s instead."
436
  msgstr ""
437
 
 
438
  msgid "Expand/Shrink"
439
  msgstr ""
440
 
 
 
441
  msgid "WPGlobus News"
442
  msgstr ""
443
 
 
 
444
  msgid "Options updated"
445
  msgstr "Opciones actualizadas"
446
 
 
447
  msgid "Please enter a language code!"
448
  msgstr "Por favor, introduce el código del idioma!"
449
 
 
450
  msgid "Language code already exists!"
451
  msgstr "Este código de idioma ya existe!"
452
 
 
453
  msgid "Please specify the language flag!"
454
  msgstr "Por favor, especifica la bandera del idioma !"
455
 
 
456
  msgid "Please enter the language name!"
457
  msgstr "Por favor introduce el nombre del idioma!"
458
 
 
459
  msgid "Please enter the language name in English!"
460
  msgstr "Por favor introduce el nombre del idioma en Inglés!"
461
 
 
462
  msgid "Please enter the locale!"
463
  msgstr "Por favor introduce la localización!"
464
 
 
465
  msgid "Add Language"
466
  msgstr "Añadir Idioma"
467
 
 
 
 
468
  msgid "Delete Language"
469
  msgstr "Eliminar Idioma"
470
 
 
471
  msgid "Edit Language"
472
  msgstr "Editar Idioma"
473
 
 
474
  msgid "Language Code"
475
  msgstr "Código del Idioma"
476
 
 
477
  msgid ""
478
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
479
  msgstr ""
480
  "2-Carta de códigos de idioma ISO para el idioma que deseas insertar. "
481
  "(Ejemplo : en)"
482
 
 
483
  msgid "Language flag"
484
  msgstr "Bandera del idioma"
485
 
 
486
  msgid "Name"
487
  msgstr "Nombre"
488
 
 
489
  msgid ""
490
  "The name of the language in its native alphabet. (Examples: English, Русский)"
491
  msgstr ""
492
  "El nombre de la lengua en su alfabeto nativo. (Ejemplos : Español, English, "
493
  "Русский )"
494
 
 
495
  msgid "Name in English"
496
  msgstr "Nombre en Inglés"
497
 
 
498
  msgid "The name of the language in English"
499
  msgstr "El nombre del idioma en Inglés"
500
 
 
 
501
  msgid "Locale"
502
  msgstr "Local"
503
 
 
504
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
505
  msgstr ""
506
  "PHP / WordPress configuración regional de la lengua . (Ejemplos : en_US, "
507
  "es_ES, ru_RU)"
508
 
 
509
  msgid "Are you sure you want to delete?"
510
  msgstr "Estás seguro de que quieres borrarlo?"
511
 
 
512
  msgid "Save Changes"
513
  msgstr "Guardar Cambios"
514
 
 
515
  msgid "Back to the WPGlobus Settings"
516
  msgstr "Volver a Ajustes WPGlobus"
517
 
 
518
  msgid "Current Version"
519
  msgstr "Versión Actual"
520
 
 
521
  msgid "Get it now!"
522
  msgstr ""
523
 
 
524
  msgid "Premium add-on"
525
  msgstr ""
526
 
 
 
527
  msgid "Installed"
528
  msgstr "Instalado"
529
 
530
  #. translators: placeholders are for the HTML tags.
 
531
  msgid ""
532
  "If you have already purchased a WPGlobus premium extension, please read "
533
  "%1$sthe installation instructions here%2$s"
534
  msgstr ""
535
 
 
 
536
  msgid "Help Desk"
537
  msgstr ""
538
 
 
539
  msgid "Email not sent. Please fill in the entire form."
540
  msgstr ""
541
 
 
542
  msgid ""
543
  "Email not sent. Please verify that your name and email are entered correctly."
544
  msgstr ""
545
 
 
546
  msgid "Email sent."
547
  msgstr ""
548
 
 
549
  msgid "Thank you for using WPGlobus!"
550
  msgstr ""
551
 
 
552
  msgid "Our Support Team is here to answer your questions or concerns."
553
  msgstr ""
554
 
 
555
  msgid "To help us serve you better:"
556
  msgstr ""
557
 
 
558
  msgid ""
559
  "Please check if the problem persists if you switch to a standard WordPress "
560
  "theme."
561
  msgstr ""
562
 
 
563
  msgid ""
564
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
565
  msgstr ""
566
 
 
567
  msgid "Please fill in and submit the contact form:"
568
  msgstr ""
569
 
 
570
  msgid "Please make sure the email address is correct."
571
  msgstr ""
572
 
 
573
  msgid "Subject"
574
  msgstr "Asunto"
575
 
 
576
  msgid "Short description of the problem"
577
  msgstr ""
578
 
 
579
  msgid "Detailed description"
580
  msgstr ""
581
 
 
582
  msgid "Technical Information"
583
  msgstr ""
584
 
 
585
  msgid "This information helps us to find the problem source"
586
  msgstr ""
587
 
 
588
  msgid ""
589
  "Alternatively, please email %s. Do not forget to copy and paste the "
590
  "technical information to your email message."
591
  msgstr ""
592
 
 
593
  msgid "WPGlobus Recommends:"
594
  msgstr ""
595
 
 
 
596
  msgid "WPGlobus for WooCommerce"
597
  msgstr ""
598
 
 
599
  msgid ""
600
  "Translate product titles and descriptions, product categories, tags and "
601
  "attributes."
602
  msgstr ""
603
 
 
604
  msgid "Get it now:"
605
  msgstr ""
606
 
 
607
  msgid "WooCommerce Multi-Currency"
608
  msgstr ""
609
 
 
610
  msgid "Accept multiple currencies in your online store!"
611
  msgstr ""
612
 
 
 
613
  msgid "Check it out:"
614
  msgstr ""
615
 
 
616
  msgid "To translate permalinks, please activate the module Slug."
617
  msgstr ""
618
 
 
619
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
620
  msgstr ""
621
 
 
 
622
  msgid "Save draft before using extra language."
623
  msgstr ""
624
 
 
625
  msgid "Builder"
626
  msgstr ""
627
 
 
628
  msgid "Сompatibility Settings"
629
  msgstr ""
630
 
631
  #. translators: ON/OFF status of WPGlobus on the edit pages.
632
  #. translators: ON/OFF status of WPGlobus on the edit pages.
 
 
633
  msgid "ON"
634
  msgstr ""
635
 
 
 
636
  msgid "Turn off"
637
  msgstr ""
638
 
 
 
639
  msgid "OFF"
640
  msgstr ""
641
 
 
 
642
  msgid "Turn on"
643
  msgstr ""
644
 
 
645
  msgid "Elementor"
646
  msgstr ""
647
 
 
648
  msgid "WPGlobus languages"
649
  msgstr ""
650
 
 
651
  msgid "current"
652
  msgstr ""
653
 
 
654
  msgid ""
655
  "WPGlobus provides multilingual support for Elementor only when the option "
656
  "%1$s%2$s%3$s is set to %4$s."
657
  msgstr ""
658
 
 
659
  msgid "Before switching the language, please save draft or publish."
660
  msgstr ""
661
 
662
  #. translators: Metabox title FOR language.
 
663
  msgctxt "filter__seo_meta_box_title"
664
  msgid "for"
665
  msgstr ""
666
 
 
667
  msgid "Page is being reloaded. Please wait..."
668
  msgstr ""
669
 
 
670
  msgid ""
671
  "Before switching the language, please save draft or publish, then reload "
672
  "page."
673
  msgstr ""
674
 
 
675
  msgid ""
676
  "WPGlobus provides multilingual support for Elementor only when the option "
677
  "`CSS Print Method` is set to `External File`."
678
  msgstr ""
679
 
 
680
  msgid "Open Elementor Settings page"
681
  msgstr ""
682
 
 
683
  msgid "WPGlobus widget"
684
  msgstr "WPGlobus widget"
685
 
 
686
  msgid "Add language switcher"
687
  msgstr "Añadir selector de idiomas"
688
 
 
689
  msgid "Flags"
690
  msgstr "Banderas"
691
 
 
692
  msgid "List"
693
  msgstr "Lista"
694
 
 
695
  msgid "List with flags"
696
  msgstr "Lista con Banderas"
697
 
 
698
  msgid "Select"
699
  msgstr "Seleccionar"
700
 
 
701
  msgid "Select with language code"
702
  msgstr "Seleccionar con el código de idioma"
703
 
 
704
  msgid "Dropdown"
705
  msgstr "Desplegable"
706
 
 
707
  msgid "Dropdown with flags"
708
  msgstr "Desplegable con banderas"
709
 
 
710
  msgid "Selector type"
711
  msgstr "Tipo de selector"
712
 
 
713
  msgid "You cannot disable the main language."
714
  msgstr "No se puede desactivar el idioma principal."
715
 
 
716
  msgid "Need a multilingual slug?"
717
  msgstr ""
718
 
 
719
  msgid "*) Available after the menu is saved."
720
  msgstr "No Se Puede Desactivar el director idioma."
721
 
 
722
  msgid "You must enable Pretty Permalinks to use WPGlobus."
723
  msgstr ""
724
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
725
 
 
726
  msgid ""
727
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
728
  "default option."
730
  "Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
731
  "selecciona una opción no predeterminada ."
732
 
 
733
  msgid "Language Selector Menu Style"
734
  msgstr ""
735
 
 
 
 
736
  msgid "WPGlobus Plus"
737
  msgstr ""
738
 
 
739
  msgid "Drop-down languages menu or Flat (in one line)"
740
  msgstr ""
741
 
 
742
  msgid "Do not change"
743
  msgstr ""
744
 
 
745
  msgid "Drop-down (vertical)"
746
  msgstr ""
747
 
 
748
  msgid "Flat (horizontal)"
749
  msgstr ""
750
 
 
751
  msgid ""
752
  "If you see this message then your browser may not display the WPGlobus "
753
  "Settings panel properly. Please try another browser."
754
  msgstr ""
755
 
 
 
756
  msgid "Сompatibility"
757
  msgstr ""
758
 
759
  #. translators: placeholders for "strong" tags.
 
760
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
761
  msgstr ""
762
 
763
  #. translators: placeholders for "strong" tags.
 
764
  msgid ""
765
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
766
  "the language attributes: name, code, flag icon, etc."
767
  msgstr ""
768
 
 
769
  msgid "Important notes"
770
  msgstr ""
771
 
772
  #. translators: placeholders for "strong" tags.
 
773
  msgid "Version %1$s1.9.17%2$s "
774
  msgstr ""
775
 
776
  #. translators: placeholders for "strong" tags.
 
777
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
778
  msgstr ""
779
 
780
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
781
  msgid ""
782
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
783
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
784
  msgstr ""
785
 
786
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
787
  msgid ""
788
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
789
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
790
  msgstr ""
791
 
792
  #. translators: placeholders for "strong" tags.
 
793
  msgid "Version %1$s2.2.11%2$s "
794
  msgstr ""
795
 
 
796
  msgid "Starting from this version"
797
  msgstr ""
798
 
799
  #. translators: placeholders for "strong" tags.
 
800
  msgid ""
801
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
802
  "(CPT)."
803
  msgstr ""
804
 
805
  #. translators: placeholders for "strong" tags.
 
806
  msgid ""
807
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
808
  "the %1$s[%3$s]%2$s tab."
809
  msgstr ""
810
 
 
811
  msgid "Welcome!"
812
  msgstr "Bienvenido!"
813
 
 
814
  msgid "Deactivating / Uninstalling"
815
  msgstr ""
816
 
 
817
  msgid "Uninstall"
818
  msgstr ""
819
 
 
820
  msgid "All add-ons"
821
  msgstr ""
822
 
 
823
  msgid "Mobile Menu"
824
  msgstr ""
825
 
 
826
  msgid "Language Widgets"
827
  msgstr ""
828
 
 
829
  msgid "We Recommend..."
830
  msgstr ""
831
 
 
832
  msgid ""
833
  "Our premium add-on, WPGlobus Plus, will add several features to your "
834
  "website, such as:"
835
  msgstr ""
836
 
 
837
  msgid ""
838
  "- Ability to write a post in one language and immediately publish it, not "
839
  "waiting for the translation to other languages;"
840
  msgstr ""
841
 
 
842
  msgid "- Set different URLs for each translation;"
843
  msgstr ""
844
 
 
845
  msgid ""
846
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
847
  "for each translation;"
848
  msgstr ""
849
 
 
850
  msgid "- and more..."
851
  msgstr ""
852
 
 
 
 
853
  msgid "Click here to download"
854
  msgstr ""
855
 
 
856
  msgid ""
857
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
858
  "translate your blog posts and pages to many languages."
859
  msgstr ""
860
 
 
861
  msgid "The next step is to translate your WooCommerce-based store!"
862
  msgstr ""
863
 
 
864
  msgid ""
865
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
866
  "translate product titles and descriptions, categories, tags and attributes."
867
  msgstr ""
868
 
 
869
  msgid "Multi-currency"
870
  msgstr ""
871
 
 
872
  msgid ""
873
  "Your WooCommerce-powered store is set to show prices and accept payments in "
874
  "a single currency only."
875
  msgstr ""
876
 
 
877
  msgid ""
878
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
879
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
881
  "positioning for global growth!"
882
  msgstr ""
883
 
 
884
  msgid ""
885
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
886
  "re-calculating prices on-the-fly."
887
  msgstr ""
888
 
 
889
  msgid "WPGlobus Premium Add-ons"
890
  msgstr ""
891
 
 
892
  msgid ""
893
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
894
  "you will be able to:"
895
  msgstr ""
896
 
 
897
  msgid ""
898
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
899
  "моя-страница and so on);"
900
  msgstr ""
901
 
 
902
  msgid ""
903
  "Postpone translation to some languages and <strong>publish only the "
904
  "translated texts</strong>;"
905
  msgstr ""
906
 
 
907
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
908
  msgstr ""
909
 
 
910
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
911
  msgstr ""
912
 
 
913
  msgid ""
914
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
915
  "strong>;"
916
  msgstr ""
917
 
 
918
  msgid "...and more."
919
  msgstr ""
920
 
 
921
  msgid "Click here to visit the WPGlobus Store"
922
  msgstr ""
923
 
 
924
  msgid "Select a language"
925
  msgstr "Seleccionar un idioma"
926
 
927
  #. translators: %3$s placeholder for the icon (actual picture).
 
928
  msgid ""
929
  "Place the %1$smain language%2$s of your site at the top of the list by "
930
  "dragging the %3$s icons."
931
  msgstr ""
932
 
933
  #. translators: placeholders for the "strong" HTML tags.
 
934
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
935
  msgstr ""
936
 
937
  #. translators: placeholders for the "strong" HTML tags.
 
938
  msgid "%1$sAdd%2$s more languages using the section below."
939
  msgstr ""
940
 
 
941
  msgid "When done, click the [Save Changes] button."
942
  msgstr "Cuando hayas terminado, haz clic en el botón [Guardar Cambios] ."
943
 
944
  #. translators: %s - placeholder for the "Save Changes" button text.
 
945
  msgid "Press the %s button to confirm."
946
  msgstr ""
947
 
948
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
 
949
  msgid "-- none --"
950
  msgstr ""
951
 
 
952
  msgid "All menus"
953
  msgstr ""
954
 
 
955
  msgid "Instructions:"
956
  msgstr "Instrucciones:"
957
 
 
958
  msgid "(Found in some themes)"
959
  msgstr "(Encontrado en algunos temas)"
960
 
 
961
  msgid "Enable"
962
  msgstr "Habilitar"
963
 
 
964
  msgid "Languages table"
965
  msgstr "Tabla de idiomas"
966
 
 
967
  msgid "Use this table to add, edit or delete languages."
968
  msgstr "Utiliza esta tabla para agregar, editar o eliminar idiomas."
969
 
 
970
  msgid "NOTE: you cannot remove the main language."
971
  msgstr "Nota: No se puede eliminar el idioma principal."
972
 
 
973
  msgid "WPGlobus is enabled on these Post Types"
974
  msgstr ""
975
 
 
976
  msgid "Uncheck to disable"
977
  msgstr ""
978
 
 
979
  msgid ""
980
  "Please note that there are post types, which status is managed by other "
981
  "plugins and cannot be changed here."
982
  msgstr ""
983
 
 
984
  msgid "Post Types"
985
  msgstr ""
986
 
 
987
  msgid ""
988
  "You should put here only the code provided by WPGlobus Support. Do not write "
989
  "anything else in the sections below as it might break the functionality of "
990
  "your website!"
991
  msgstr ""
992
 
 
993
  msgid "Custom Code"
994
  msgstr ""
995
 
 
 
 
996
  msgid "Enabled"
997
  msgstr "Activar"
998
 
 
999
  msgid "Builders support"
1000
  msgstr ""
1001
 
 
1002
  msgid "Builder mode is enabled on these Post Types"
1003
  msgstr ""
1004
 
 
1005
  msgid "Old fashioned language switcher"
1006
  msgstr ""
1007
 
 
1008
  msgid "Block Editor"
1009
  msgstr ""
1010
 
 
1011
  msgid "Block Editor Options"
1012
  msgstr ""
1013
 
 
1014
  msgid ""
1015
  "With the current settings, you will see the following lines in the section "
1016
  "HEAD of your site pages"
1017
  msgstr ""
1018
 
 
1019
  msgid "(example for two languages)"
1020
  msgstr ""
1021
 
 
1022
  msgid ""
1023
  "Tell search engines about localized versions of your pages using the "
1024
  "hreflang tag"
1025
  msgstr ""
1026
 
 
1027
  msgid "Output the hreflang tag as"
1028
  msgstr ""
1029
 
 
1030
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1031
  msgstr ""
1032
 
 
1033
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1034
  msgstr ""
1035
 
 
1036
  msgid "Language code only (en, ru, etc.)"
1037
  msgstr ""
1038
 
 
1039
  msgid "Use the code `x-default` for the main language"
1040
  msgstr ""
1041
 
 
1042
  msgid "Multilingual SEO"
1043
  msgstr ""
1044
 
 
1045
  msgid "Multilingual SEO Options"
1046
  msgstr ""
1047
 
 
1048
  msgid ""
1049
  "With WPGlobus, you can get translations for posts and pages using REST API."
1050
  msgstr ""
1051
 
 
 
 
 
1052
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1053
  msgstr ""
1054
 
 
1055
  msgid ""
1056
  "For demonstration, you can try the first post that WordPress creates at the "
1057
  "initial installation."
1058
  msgstr ""
1059
 
 
1060
  msgid ""
1061
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1062
  "information."
1063
  msgstr ""
1064
 
 
1065
  msgid ""
1066
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1067
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1068
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1069
  msgstr ""
1070
 
 
1071
  msgid "Description:"
1072
  msgstr ""
1073
 
 
 
1074
  msgid "REST API"
1075
  msgstr ""
1076
 
 
1077
  msgid "Translate strings"
1078
  msgstr ""
1079
 
 
1080
  msgid "item"
1081
  msgstr "Artículo"
1082
 
 
1083
  msgid "items"
1084
  msgstr "Artículos"
1085
 
 
1086
  msgid "Code"
1087
  msgstr "Código"
1088
 
 
1089
  msgid "Edit"
1090
  msgstr "Editar"
1091
 
 
1092
  msgid "Delete"
1093
  msgstr "Borrar"
1094
 
 
1095
  msgid "File"
1096
  msgstr "Archivo"
1097
 
 
1098
  msgid "Flag"
1099
  msgstr "Bandera"
1100
 
 
1101
  msgid "Language name"
1102
  msgstr "Nombre del idioma"
1103
 
 
1104
  msgid "English language name"
1105
  msgstr "Nombre del idioma en Inglés"
1106
 
 
1107
  msgid "No items found"
1108
  msgstr "No se han encntrado artículos"
1109
 
 
1110
  msgid "Add new Language"
1111
  msgstr "Añadir nuevo idioma"
1112
 
 
1113
  msgid "No items of this type were found."
1114
  msgstr ""
1115
 
 
1116
  msgid "Select an item"
1117
  msgstr ""
1118
 
 
1119
  msgid "Multilingual support of this add-on is currently in Beta stage."
1120
  msgstr ""
1121
 
 
1122
  msgid "We do not recommend using it on production sites."
1123
  msgstr ""
1124
 
 
1125
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1126
  msgstr ""
1127
 
 
1128
  msgid "WordPress version"
1129
  msgstr ""
1130
 
 
1131
  msgid "In the WordPress core"
1132
  msgstr ""
1133
 
 
1134
  msgid "Core"
1135
  msgstr "Nucleo"
1136
 
 
 
1137
  msgid "Current version"
1138
  msgstr ""
1139
 
 
 
1140
  msgid "Stage"
1141
  msgstr ""
1142
 
 
 
1143
  msgid "Status"
1144
  msgstr "Estado"
1145
 
 
1146
  msgid "Block editor"
1147
  msgstr ""
1148
 
 
1149
  msgid "production"
1150
  msgstr ""
1151
 
 
1152
  msgid "List of supported add-ons"
1153
  msgstr ""
1154
 
 
1155
  msgid "Add-on"
1156
  msgstr ""
1157
 
 
1158
  msgid "Supported minimum version"
1159
  msgstr ""
1160
 
 
1161
  msgid "Not installed"
1162
  msgstr ""
1163
 
 
1164
  msgid "Installed, inactive"
1165
  msgstr ""
1166
 
 
1167
  msgid "Active"
1168
  msgstr "Activo"
1169
 
 
1170
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1171
  msgstr ""
1172
 
 
1173
  msgid "However, some themes do not follow all WordPress standards strictly."
1174
  msgstr ""
1175
 
 
1176
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1177
  msgstr ""
1178
 
 
1179
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1180
  msgstr ""
1181
 
 
1182
  msgid ""
1183
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1184
  "With those themes, WPGlobus Customizer is switched off by default"
1185
  msgstr ""
1186
 
 
1187
  msgid "The currently active theme is"
1188
  msgstr ""
1189
 
 
1190
  msgid "In the current version, WPGlobus Customizer does not support"
1191
  msgstr ""
1192
 
 
1193
  msgid "translation of the navigation menus"
1194
  msgstr ""
1195
 
 
1196
  msgid "to translate, please go to"
1197
  msgstr ""
1198
 
 
1199
  msgid "Go to Customizer"
1200
  msgstr ""
1201
 
 
1202
  msgid "is undefined"
1203
  msgstr ""
1204
 
 
1205
  msgid "is set to"
1206
  msgstr ""
1207
 
 
1208
  msgid "by adding to the file wp-config.php"
1209
  msgstr ""
1210
 
 
1211
  msgid "now"
1212
  msgstr ""
1213
 
 
1214
  msgid "We rely on your support!"
1215
  msgstr ""
1216
 
 
1217
  msgid "Please consider a small donation to support the future development."
1218
  msgstr ""
1219
 
 
1220
  msgid "Thank you!"
1221
  msgstr "Gracias!"
1222
 
 
1223
  msgid "WPGlobus Plus!"
1224
  msgstr "WPGlobus Plus!"
1225
 
 
1226
  msgid ""
1227
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1228
  "separate publishing and more! "
1229
  msgstr ""
1230
 
 
1231
  msgid "Get WPGlobus Plus now!"
1232
  msgstr ""
1233
 
 
1234
  msgid ""
1235
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1236
  "the current version."
1237
  msgstr ""
1238
 
 
1239
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1240
  msgstr ""
1241
 
 
1242
  msgid "WPGlobus warning: "
1243
  msgstr ""
1244
 
 
1245
  msgid "https://github.com/WPGlobus/WPGlobus"
1246
  msgstr ""
1247
 
 
1248
  msgid ""
1249
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1250
  "widgets and even custom fields - in multiple languages!"
1252
  "WordPress Globalization / Plugin multilenguaje. Mensajes, páginas, menús, "
1253
  "widgets e incluso campos personalizados - en varios idiomas !"
1254
 
 
1255
  msgid "https://wpglobus.com/"
1256
  msgstr ""
languages/wpglobus-es_CL.po CHANGED
@@ -16,44 +16,25 @@ msgstr ""
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
- #: includes/admin/central/class-wpglobus-admin-central.php:122,
20
- #: includes/admin/class-wpglobus-about.php:42,
21
- #: includes/admin/class-wpglobus-about.php:117,
22
- #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr "Guía"
26
 
27
- #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
32
- #: includes/admin/central/class-wpglobus-admin-central.php:157,
33
- #: includes/admin/class-wpglobus-about.php:36,
34
- #: includes/admin/class-wpglobus-admin-menu.php:22,
35
- #: includes/admin/class-wpglobus-clean.php:606,
36
- #: includes/admin/class-wpglobus-customize-options.php:1293,
37
- #: includes/admin/class-wpglobus-customize-options.php:1261,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr "Complementos"
41
 
42
- #: includes/admin/class-wpglobus-about.php:26
43
  msgid "Quick Start"
44
  msgstr "Inicio Rápido"
45
 
46
- #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
51
- #: includes/admin/class-wpglobus-about.php:59
52
  msgid ""
53
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
54
  msgstr ""
55
 
56
- #: includes/admin/class-wpglobus-about.php:60
57
  msgid ""
58
  "The mbstring extension is required for the full UTF-8 compatibility and "
59
  "better performance. Without it, some parts of WordPress and WPGlobus may "
@@ -61,19 +42,15 @@ msgid ""
61
  "administrator."
62
  msgstr ""
63
 
64
- #: includes/admin/class-wpglobus-about.php:87
65
  msgid "Go to WPGlobus Settings"
66
  msgstr "Ir a Ajustes WPGlobus"
67
 
68
- #: includes/admin/class-wpglobus-about.php:98
69
  msgid "Easy as 1-2-3:"
70
  msgstr "Fácil en 1-2-3:"
71
 
72
- #: includes/admin/class-wpglobus-about.php:101
73
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
74
  msgstr "Ve al menú de administración WPGlobus y elege los países/idiomas;"
75
 
76
- #: includes/admin/class-wpglobus-about.php:102
77
  msgid ""
78
  "Enter the translations to the posts, pages, categories, tags and menus using "
79
  "a clean and simple interface."
@@ -81,7 +58,6 @@ msgstr ""
81
  "Introduce las traducciones a los mensajes, páginas, categorías,etiquetas y "
82
  "menús usando una interfaz limpia y simple."
83
 
84
- #: includes/admin/class-wpglobus-about.php:103
85
  msgid ""
86
  "Switch languages at the front-end using a drop-down menu with language names "
87
  "and country flags."
@@ -89,51 +65,41 @@ msgstr ""
89
  "Cambia de idioma en el front-end utilizando un menú desplegable con los "
90
  "nombres de las lenguas y banderas de los países ."
91
 
92
- #: includes/admin/class-wpglobus-about.php:111
93
  msgid "Links:"
94
  msgstr "Enlaces:"
95
 
96
- #: includes/admin/class-wpglobus-about.php:119
97
  msgid "FAQs"
98
  msgstr "Preguntas Frecuentes"
99
 
100
- #: includes/admin/class-wpglobus-about.php:121
101
  msgid "Contact Us"
102
  msgstr "Contáctanos"
103
 
104
- #: includes/admin/class-wpglobus-about.php:123
105
  msgid "Please give us 5 stars!"
106
  msgstr "Por favor danos 5 estrellas!"
107
 
108
- #: includes/admin/class-wpglobus-about.php:133
109
  msgid "WPGlobus does not translate texts automatically!"
110
  msgstr ""
111
 
112
- #: includes/admin/class-wpglobus-about.php:136
113
  msgid ""
114
  "There are many translation companies and individual translators who can help "
115
  "you write and proofread the texts."
116
  msgstr ""
117
 
118
- #: includes/admin/class-wpglobus-about.php:137
119
  msgid ""
120
  "When you choose a translator, please look at their native language, country "
121
  "of residence, specialization and knowledge of WordPress."
122
  msgstr ""
123
 
124
  #. translators: %s are used to insert HTML link. Keep them in place.
125
- #: includes/admin/class-wpglobus-about.php:143
126
  msgid ""
127
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
128
  "website. This is not an endorsement, just a courtesy. Please contact them "
129
  "directly and let us know how did it work for you!"
130
  msgstr ""
131
 
132
- #: includes/admin/class-wpglobus-about.php:154
133
  msgid "Important notes:"
134
  msgstr ""
135
 
136
- #: includes/admin/class-wpglobus-about.php:159
137
  msgid ""
138
  "WPGlobus only supports the localization URLs in the form of <code>example."
139
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
@@ -144,12 +110,10 @@ msgstr ""
144
  "subdominios <code>example.com</code> ni consultas lingüísticas <code>example."
145
  "com?lang=xx</code>."
146
 
147
- #: includes/admin/class-wpglobus-about.php:162
148
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
149
  msgstr ""
150
  "En algunos temas y plugins <strong>No está listo el multilenguaje</strong>."
151
 
152
- #: includes/admin/class-wpglobus-about.php:163
153
  msgid ""
154
  "They might display some texts with no translation, or with all languages "
155
  "mixed together."
@@ -158,7 +122,6 @@ msgstr ""
158
  "mezclados entre sí."
159
 
160
  #. translators: %s are used to insert HTML link. Keep them in place.
161
- #: includes/admin/class-wpglobus-about.php:167
162
  msgid ""
163
  "Please contact the theme / plugin author. If they are unable to assist, "
164
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
@@ -167,21 +130,15 @@ msgstr ""
167
  "ayudarte, considera % s la contratación del WPGlobus % s para escribir un "
168
  "código personalizado para tí."
169
 
170
- #: includes/admin/class-wpglobus-admin-bar-menu.php:124
171
  msgid "Language was set on your profile page"
172
  msgstr ""
173
 
174
- #: includes/admin/class-wpglobus-admin-bar-menu.php:194
175
  msgid "Add"
176
  msgstr "Añadir"
177
 
178
- #: includes/admin/class-wpglobus-admin-page.php:32,
179
- #: includes/admin/class-wpglobus-clean.php:585
180
  msgid "Multilingual Everything!"
181
  msgstr "Multilenguaje Total!"
182
 
183
- #: includes/admin/class-wpglobus-admin-page.php:34,
184
- #: includes/admin/class-wpglobus-clean.php:588
185
  msgid ""
186
  "WPGlobus is a family of WordPress plugins assisting you in making "
187
  "multilingual WordPress blogs and sites."
@@ -189,25 +146,20 @@ msgstr ""
189
  "WPGlobus es una familia de plugins de WordPress que ayudan en la traducción "
190
  "de blogs de WordPress."
191
 
192
- #: includes/admin/class-wpglobus-clean.php:232
193
  msgid "Remove the WPGlobus settings (not recommended)"
194
  msgstr ""
195
 
196
- #: includes/admin/class-wpglobus-clean.php:595
197
  msgid "Clean-up Tool"
198
  msgstr ""
199
 
200
- #: includes/admin/class-wpglobus-clean.php:609
201
  msgid "Support"
202
  msgstr "Soporte"
203
 
204
- #: includes/admin/class-wpglobus-clean.php:614
205
  msgid ""
206
  "WARNING: this operation is non-reversible. It is strongly recommended that "
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
- #: includes/admin/class-wpglobus-clean.php:619
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
@@ -217,7 +169,6 @@ msgid ""
217
  "so on."
218
  msgstr ""
219
 
220
- #: includes/admin/class-wpglobus-clean.php:622
221
  msgid ""
222
  "Make sure that your active theme does not have any code related to WPGlobus. "
223
  "Such code could be added by you or by a 3rd party developer. If that code "
@@ -226,42 +177,34 @@ msgid ""
226
  msgstr ""
227
 
228
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
229
- #: includes/admin/class-wpglobus-clean.php:630
230
  msgid ""
231
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
232
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
233
  msgstr ""
234
 
235
- #: includes/admin/class-wpglobus-clean.php:641
236
  msgid "You are about to clean the content of the following database tables:"
237
  msgstr ""
238
 
239
- #: includes/admin/class-wpglobus-clean.php:649
240
  msgid "The operations log"
241
  msgstr ""
242
 
243
- #: includes/admin/class-wpglobus-clean.php:652
244
  msgid ""
245
  "We are going to write a detailed log of all the database changes performed. "
246
  "It should help in the case you need to restore something important. The log "
247
  "will be written to the file:"
248
  msgstr ""
249
 
250
- #: includes/admin/class-wpglobus-clean.php:662
251
  msgid ""
252
  "Uncheck if you do not want to write the operations log (we recommend to keep "
253
  "it checked)"
254
  msgstr ""
255
 
256
- #: includes/admin/class-wpglobus-clean.php:667
257
  msgid "You have been warned..."
258
  msgstr ""
259
 
260
- #: includes/admin/class-wpglobus-clean.php:669
261
  msgid "Please confirm by checking the box below:"
262
  msgstr ""
263
 
264
- #: includes/admin/class-wpglobus-clean.php:671
265
  msgid ""
266
  "I have read and understood everything written on this page. I am aware that "
267
  "by using this tool I may loose some content of my website. I have made a "
@@ -269,153 +212,100 @@ msgid ""
269
  "responsible for the results."
270
  msgstr ""
271
 
272
- #: includes/admin/class-wpglobus-clean.php:674
273
  msgid "YES, I CONFIRM"
274
  msgstr ""
275
 
276
- #: includes/admin/class-wpglobus-clean.php:678
277
  msgid "Process with the Clean-up"
278
  msgstr ""
279
 
280
- #: includes/admin/class-wpglobus-customize-options.php:73,
281
- #: includes/admin/class-wpglobus-customize-options.php:100,
282
- #: includes/admin/class-wpglobus-customize-options.php:145,
283
- #: includes/admin/class-wpglobus-customize-options.php:183
284
  msgid "Default"
285
  msgstr "Predefinido"
286
 
287
- #: includes/admin/class-wpglobus-customize-options.php:264
288
  msgid "Section"
289
  msgstr ""
290
 
291
- #: includes/admin/class-wpglobus-customize-options.php:277
292
  msgid "Show all sections"
293
  msgstr ""
294
 
295
- #: includes/admin/class-wpglobus-customize-options.php:279
296
  msgid "Save &amp; Reload"
297
  msgstr ""
298
 
299
- #: includes/admin/class-wpglobus-customize-options.php:553,
300
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:585,
301
- #: includes/class-wpglobus.php:1284, wpglobus.php:12, wpglobus.php:18
302
  msgid "WPGlobus"
303
  msgstr ""
304
 
305
- #: includes/admin/class-wpglobus-customize-options.php:604
306
  msgid ""
307
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
308
  msgstr ""
309
 
310
- #: includes/admin/class-wpglobus-customize-options.php:610
311
  msgid "Fields Settings"
312
  msgstr ""
313
 
314
- #: includes/admin/class-wpglobus-customize-options.php:655
315
  msgid "WPGlobus Settings"
316
  msgstr ""
317
 
318
- #: includes/admin/class-wpglobus-customize-options.php:723
319
  msgid "Help"
320
  msgstr "Ayuda"
321
 
322
- #: includes/admin/class-wpglobus-customize-options.php:745,
323
- #: includes/options/class-wpglobus-options.php:1176
324
  msgid "Languages"
325
  msgstr "Idiomas"
326
 
327
- #: includes/admin/class-wpglobus-customize-options.php:765,
328
- #: includes/options/class-wpglobus-options.php:1189
329
  msgid "Enabled Languages"
330
  msgstr "Idiomas Habilitados"
331
 
332
- #: includes/admin/class-wpglobus-customize-options.php:767,
333
- #: includes/options/class-wpglobus-options.php:1190
334
  msgid "These languages are currently enabled on your site."
335
  msgstr "Estos idiomas están habilitados actualmente en su sitio."
336
 
337
- #: includes/admin/class-wpglobus-customize-options.php:795,
338
- #: includes/options/class-wpglobus-options.php:1148
339
  msgid "Choose a language you would like to enable."
340
  msgstr ""
341
 
342
- #: includes/admin/class-wpglobus-customize-options.php:797
343
  msgid "Press the [Save & Publish] button to confirm."
344
  msgstr ""
345
 
346
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
347
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
348
- #: includes/admin/class-wpglobus-customize-options.php:801,
349
- #: includes/options/class-wpglobus-options.php:1154
350
  msgid "or Add new Language %1$s here %2$s"
351
  msgstr ""
352
 
353
- #: includes/admin/class-wpglobus-customize-options.php:813,
354
- #: includes/options/class-wpglobus-options.php:1203
355
  msgid "Add Languages"
356
  msgstr "Añadir idioma"
357
 
358
- #: includes/admin/class-wpglobus-customize-options.php:833,
359
- #: includes/options/class-wpglobus-options.php:1211
360
  msgid "Language Selector Mode"
361
  msgstr "Modo Selector de Idioma"
362
 
363
- #: includes/admin/class-wpglobus-customize-options.php:838,
364
- #: includes/options/class-wpglobus-options.php:1214
365
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
366
  msgstr "Código de la bandera en dos letras (es, en, ru, it, etc.)"
367
 
368
- #: includes/admin/class-wpglobus-customize-options.php:839,
369
- #: includes/options/class-wpglobus-options.php:1215
370
  msgid "Full Name (English, Russian, Italian, etc.)"
371
  msgstr "Nombre completo (Español, English, Russian, Italian, etc.)"
372
 
373
- #: includes/admin/class-wpglobus-customize-options.php:841,
374
- #: includes/options/class-wpglobus-options.php:1216
375
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
376
  msgstr "Nombre completo con bandera (Español, English, Russian, Italian, etc.)"
377
 
378
- #: includes/admin/class-wpglobus-customize-options.php:842,
379
- #: includes/options/class-wpglobus-options.php:1217
380
  msgid "Flags only"
381
  msgstr "Sólo banderas"
382
 
383
- #: includes/admin/class-wpglobus-customize-options.php:844,
384
- #: includes/options/class-wpglobus-options.php:1212
385
  msgid ""
386
  "Choose the way language name and country flag are shown in the drop-down menu"
387
  msgstr ""
388
  "Elige el nombre del idioma y bandera del país se muestran en el menú "
389
  "desplegable"
390
 
391
- #: includes/admin/class-wpglobus-customize-options.php:879
392
  msgid "select navigation menu"
393
  msgstr ""
394
 
395
- #: includes/admin/class-wpglobus-customize-options.php:915,
396
- #: includes/admin/class-wpglobus-customize-options.php:888,
397
- #: includes/options/class-wpglobus-options.php:1230
398
  msgid "Language Selector Menu"
399
  msgstr "Menú selector de idioma"
400
 
401
- #: includes/admin/class-wpglobus-customize-options.php:920,
402
- #: includes/admin/class-wpglobus-customize-options.php:899,
403
- #: includes/options/class-wpglobus-options.php:1231
404
  msgid "Choose the navigation menu where the language selector will be shown"
405
  msgstr ""
406
  "Selecciona el menú de navegación donde se mostrará el selector de idioma"
407
 
408
- #: includes/admin/class-wpglobus-customize-options.php:898
409
  msgid "No menus have been created yet. Create some."
410
  msgstr ""
411
 
412
- #: includes/admin/class-wpglobus-customize-options.php:940,
413
- #: includes/options/class-wpglobus-options.php:1241
414
  msgid "\"All Pages\" menus Language selector"
415
  msgstr "\"Todas las páginas\" Selector de menús Idioma"
416
 
417
- #: includes/admin/class-wpglobus-customize-options.php:943,
418
- #: includes/options/class-wpglobus-options.php:1243
419
  msgid ""
420
  "Adds language selector to the menus that automatically list all existing "
421
  "pages (using `wp_list_pages`)"
@@ -424,12 +314,9 @@ msgstr ""
424
  "automáticamente en todas las páginas existentes (utilizando ` "
425
  "wp_list_pages` )"
426
 
427
- #: includes/admin/class-wpglobus-customize-options.php:960,
428
- #: includes/options/class-wpglobus-options.php:1356
429
  msgid "Custom CSS"
430
  msgstr "Customizar CSS"
431
 
432
- #: includes/admin/class-wpglobus-customize-options.php:964
433
  msgid ""
434
  "Here you can enter the CSS rules to adjust the language selector menu for "
435
  "your theme. Look at the examples in the `style-samples.css` file."
@@ -437,99 +324,69 @@ msgstr ""
437
  "Aquí puedes introducir las reglas CSS para ajustar el menú de selección de "
438
  "idiomas para tu tema. Mira los ejemplos en el `style-samples.css` file."
439
 
440
- #: includes/admin/class-wpglobus-customize-options.php:983
441
  msgid "Post types"
442
  msgstr "Tipos de Post"
443
 
444
- #: includes/admin/class-wpglobus-customize-options.php:1091
445
  msgid "Uncheck to disable WPGlobus"
446
  msgstr "Desactiva la opción para desactivar WPGlobus"
447
 
448
- #: includes/admin/class-wpglobus-customize-options.php:1125,
449
- #: includes/options/class-wpglobus-options.php:1424
450
  msgid "Redirect"
451
  msgstr "Redirección"
452
 
453
- #: includes/admin/class-wpglobus-customize-options.php:1150,
454
- #: includes/options/class-wpglobus-options.php:1419
455
  msgid "Choose the language automatically, based on:"
456
  msgstr ""
457
 
458
- #: includes/admin/class-wpglobus-customize-options.php:1152,
459
- #: includes/options/class-wpglobus-options.php:1409
460
  msgid "Preferred language set in the browser"
461
  msgstr ""
462
 
463
- #: includes/admin/class-wpglobus-customize-options.php:1153,
464
- #: includes/options/class-wpglobus-options.php:1396
465
  msgid ""
466
  "When a user comes to the site for the first time, try to find the best "
467
  "matching language version of the page."
468
  msgstr ""
469
 
470
- #: includes/admin/class-wpglobus-customize-options.php:1214,
471
- #: includes/admin/class-wpglobus-customize-options.php:1234,
472
- #: includes/admin/class-wpglobus-customize-options.php:1192,
473
- #: includes/options/class-wpglobus-options.php:1368
474
  msgid "Custom JS Code"
475
  msgstr ""
476
 
477
- #: includes/admin/class-wpglobus-customize-options.php:1232,
478
- #: includes/admin/class-wpglobus-customize-options.php:1276
479
  msgid "Title"
480
  msgstr "Título"
481
 
482
- #: includes/admin/class-wpglobus-customize-options.php:1235
483
  msgid "(Paste your JS code here.)"
484
  msgstr ""
485
 
486
- #: includes/admin/class-wpglobus-customize-options.php:1184
487
  msgid ""
488
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
489
  "version 4.9 or later."
490
  msgstr ""
491
 
492
- #: includes/admin/class-wpglobus-customize-options.php:1186
493
  msgid "With your version of WordPress, please use the"
494
  msgstr ""
495
 
496
- #: includes/admin/class-wpglobus-customize-options.php:1188
497
  msgid "WPGlobus Settings page"
498
  msgstr ""
499
 
500
- #: includes/admin/class-wpglobus-customize-options.php:1277
501
  msgid "Label"
502
  msgstr ""
503
 
504
- #: includes/admin/class-wpglobus-customize-options.php:1281
505
  msgid "Description"
506
  msgstr "Decripción"
507
 
508
- #: includes/admin/class-wpglobus-customize-options.php:1345
509
  msgid ""
510
  "Here you can specify which fields should be considered multilingual by "
511
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
512
  msgstr ""
513
 
514
- #: includes/admin/class-wpglobus-customize-options.php:1351,
515
- #: includes/options/class-wpglobus-options.php:608
516
  msgid "Thank you for installing WPGlobus!"
517
  msgstr "Gracias por instalar WPGlobus!"
518
 
519
- #: includes/admin/class-wpglobus-customize-options.php:1355,
520
- #: includes/options/class-wpglobus-options.php:612
521
  msgid "Read About WPGlobus"
522
  msgstr "Leer sobre WPGlobus!"
523
 
524
- #: includes/admin/class-wpglobus-customize-options.php:1358
525
  msgid ""
526
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
527
  msgstr ""
528
  "Click en la <strong>[Idiomas]</strong> pestaña en la parte izquierda de "
529
  "configuración de las opciones."
530
 
531
- #: includes/admin/class-wpglobus-customize-options.php:1363,
532
- #: includes/options/class-wpglobus-options.php:648
533
  msgid ""
534
  "Should you have any questions or comments, please do not hesitate to contact "
535
  "us."
@@ -537,28 +394,19 @@ msgstr ""
537
  "Si tienes alguna pregunta o comentario, por favor no dudes en contactar con "
538
  "nosotros."
539
 
540
- #: includes/admin/class-wpglobus-customize-options.php:1367,
541
- #: includes/options/class-wpglobus-options.php:652
542
  msgid "Sincerely Yours,"
543
  msgstr "Sinceramente tuyo,"
544
 
545
- #: includes/admin/class-wpglobus-customize-options.php:1369,
546
- #: includes/options/class-wpglobus-options.php:654,
547
- #: includes/options/wpglobus-options-header.php:34
548
  msgid "The WPGlobus Team"
549
  msgstr "El Equipo WPGlobus"
550
 
551
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
552
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
553
- #: includes/admin/class-wpglobus-customize-options.php:1388,
554
- #: includes/options/class-wpglobus-options.php:689
555
  msgid ""
556
  "We would hate to see you go. If something goes wrong, do not uninstall "
557
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
558
  msgstr ""
559
 
560
- #: includes/admin/class-wpglobus-customize-options.php:1395,
561
- #: includes/options/class-wpglobus-options.php:696
562
  msgid ""
563
  "Please note that if you deactivate WPGlobus, your site will show all the "
564
  "languages together, mixed up. You will need to remove all translations, "
@@ -567,8 +415,6 @@ msgstr ""
567
 
568
  #. translators: %s: link to the Clean-up Tool
569
  #. translators: %s: link to the Clean-up Tool.
570
- #: includes/admin/class-wpglobus-customize-options.php:1400,
571
- #: includes/options/class-wpglobus-options.php:700
572
  msgid ""
573
  "If there are just a few places, you should edit them manually. To "
574
  "automatically remove all translations at once, you can use the %s. WARNING: "
@@ -578,410 +424,305 @@ msgstr ""
578
 
579
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
580
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
581
- #: includes/admin/class-wpglobus-customize-options.php:1403,
582
- #: includes/options/class-wpglobus-options.php:677
583
  msgid "%1$sClean-up Tool%2$s"
584
  msgstr ""
585
 
586
  #. translators: %s: name of current theme
587
- #: includes/admin/class-wpglobus-customize-options.php:1415
588
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
589
  msgstr ""
590
 
591
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
592
- #: includes/admin/class-wpglobus-customize-options.php:1421
593
  msgid "Please use %1$sWPGlobus options page%2$s instead."
594
  msgstr ""
595
 
596
- #: includes/admin/class-wpglobus-customize-options.php:1485
597
  msgid "Expand/Shrink"
598
  msgstr ""
599
 
600
- #: includes/admin/class-wpglobus-dashboard-news.php:43,
601
- #: includes/admin/class-wpglobus-dashboard-news.php:59
602
  msgid "WPGlobus News"
603
  msgstr ""
604
 
605
- #: includes/admin/class-wpglobus-language-edit.php:197,
606
- #: includes/admin/class-wpglobus-language-edit.php:192
607
  msgid "Options updated"
608
  msgstr "Opciones actualizadas"
609
 
610
- #: includes/admin/class-wpglobus-language-edit.php:272
611
  msgid "Please enter a language code!"
612
  msgstr "Por favor, introduce el código del idioma!"
613
 
614
- #: includes/admin/class-wpglobus-language-edit.php:276
615
  msgid "Language code already exists!"
616
  msgstr "Este código de idioma ya existe!"
617
 
618
- #: includes/admin/class-wpglobus-language-edit.php:280
619
  msgid "Please specify the language flag!"
620
  msgstr "Por favor, especifica la bandera del idioma !"
621
 
622
- #: includes/admin/class-wpglobus-language-edit.php:284
623
  msgid "Please enter the language name!"
624
  msgstr "Por favor introduce el nombre del idioma!"
625
 
626
- #: includes/admin/class-wpglobus-language-edit.php:288
627
  msgid "Please enter the language name in English!"
628
  msgstr "Por favor introduce el nombre del idioma en Inglés!"
629
 
630
- #: includes/admin/class-wpglobus-language-edit.php:292
631
  msgid "Please enter the locale!"
632
  msgstr "Por favor introduce la localización!"
633
 
634
- #: includes/admin/class-wpglobus-language-edit.php:354
635
  msgid "Add Language"
636
  msgstr "Añadir Idioma"
637
 
638
- #: includes/admin/class-wpglobus-language-edit.php:351,
639
- #: includes/admin/class-wpglobus-language-edit.php:462,
640
- #: includes/admin/class-wpglobus-language-edit.php:455
641
  msgid "Delete Language"
642
  msgstr "Eliminar Idioma"
643
 
644
- #: includes/admin/class-wpglobus-language-edit.php:349
645
  msgid "Edit Language"
646
  msgstr "Editar Idioma"
647
 
648
- #: includes/admin/class-wpglobus-language-edit.php:384
649
  msgid "Language Code"
650
  msgstr "Código del Idioma"
651
 
652
- #: includes/admin/class-wpglobus-language-edit.php:391
653
  msgid ""
654
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
655
  msgstr ""
656
  "2-Carta de códigos de idioma ISO para el idioma que deseas insertar. "
657
  "(Ejemplo : en)"
658
 
659
- #: includes/admin/class-wpglobus-language-edit.php:396
660
  msgid "Language flag"
661
  msgstr "Bandera del idioma"
662
 
663
- #: includes/admin/class-wpglobus-language-edit.php:412
664
  msgid "Name"
665
  msgstr "Nombre"
666
 
667
- #: includes/admin/class-wpglobus-language-edit.php:417
668
  msgid ""
669
  "The name of the language in its native alphabet. (Examples: English, Русский)"
670
  msgstr ""
671
  "El nombre de la lengua en su alfabeto nativo. (Ejemplos : Español, English, "
672
  "Русский )"
673
 
674
- #: includes/admin/class-wpglobus-language-edit.php:422
675
  msgid "Name in English"
676
  msgstr "Nombre en Inglés"
677
 
678
- #: includes/admin/class-wpglobus-language-edit.php:427
679
  msgid "The name of the language in English"
680
  msgstr "El nombre del idioma en Inglés"
681
 
682
- #: includes/admin/class-wpglobus-language-edit.php:432,
683
- #: includes/options/fields/table/class-wpglobus-languages-table.php:115
684
  msgid "Locale"
685
  msgstr "Local"
686
 
687
- #: includes/admin/class-wpglobus-language-edit.php:437
688
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
689
  msgstr ""
690
  "PHP / WordPress configuración regional de la lengua . (Ejemplos : en_US, "
691
  "es_ES, ru_RU)"
692
 
693
- #: includes/admin/class-wpglobus-language-edit.php:460
694
  msgid "Are you sure you want to delete?"
695
  msgstr "Estás seguro de que quieres borrarlo?"
696
 
697
- #: includes/admin/class-wpglobus-language-edit.php:447
698
  msgid "Save Changes"
699
  msgstr "Guardar Cambios"
700
 
701
- #: includes/admin/class-wpglobus-language-edit.php:470
702
  msgid "Back to the WPGlobus Settings"
703
  msgstr "Volver a Ajustes WPGlobus"
704
 
705
- #: includes/admin/class-wpglobus-plugin-install.php:308
706
  msgid "Current Version"
707
  msgstr "Versión Actual"
708
 
709
- #: includes/admin/class-wpglobus-plugin-install.php:309
710
  msgid "Get it now!"
711
  msgstr ""
712
 
713
- #: includes/admin/class-wpglobus-plugin-install.php:310
714
  msgid "Premium add-on"
715
  msgstr ""
716
 
717
- #: includes/admin/class-wpglobus-plugin-install.php:311,
718
- #: includes/options/fields/table/class-wpglobus-languages-table.php:472
719
  msgid "Installed"
720
  msgstr "Instalado"
721
 
722
  #. translators: placeholders are for the HTML tags.
723
- #: includes/admin/class-wpglobus-plugin-install.php:319
724
  msgid ""
725
  "If you have already purchased a WPGlobus premium extension, please read "
726
  "%1$sthe installation instructions here%2$s"
727
  msgstr ""
728
 
729
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
730
- #: includes/options/class-wpglobus-options.php:726
731
  msgid "Help Desk"
732
  msgstr ""
733
 
734
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:185
735
  msgid "Email not sent. Please fill in the entire form."
736
  msgstr ""
737
 
738
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:195
739
  msgid ""
740
  "Email not sent. Please verify that your name and email are entered correctly."
741
  msgstr ""
742
 
743
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:216
744
  msgid "Email sent."
745
  msgstr ""
746
 
747
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
748
  msgid "Thank you for using WPGlobus!"
749
  msgstr ""
750
 
751
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
752
  msgid "Our Support Team is here to answer your questions or concerns."
753
  msgstr ""
754
 
755
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
756
  msgid "To help us serve you better:"
757
  msgstr ""
758
 
759
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
760
  msgid ""
761
  "Please check if the problem persists if you switch to a standard WordPress "
762
  "theme."
763
  msgstr ""
764
 
765
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
766
  msgid ""
767
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
768
  msgstr ""
769
 
770
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
771
  msgid "Please fill in and submit the contact form:"
772
  msgstr ""
773
 
774
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
775
  msgid "Please make sure the email address is correct."
776
  msgstr ""
777
 
778
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
779
  msgid "Subject"
780
  msgstr "Asunto"
781
 
782
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
783
  msgid "Short description of the problem"
784
  msgstr ""
785
 
786
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
787
  msgid "Detailed description"
788
  msgstr ""
789
 
790
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
791
  msgid "Technical Information"
792
  msgstr ""
793
 
794
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
795
  msgid "This information helps us to find the problem source"
796
  msgstr ""
797
 
798
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:161
799
  msgid ""
800
  "Alternatively, please email %s. Do not forget to copy and paste the "
801
  "technical information to your email message."
802
  msgstr ""
803
 
804
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:89
805
  msgid "WPGlobus Recommends:"
806
  msgstr ""
807
 
808
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:98,
809
- #: includes/options/class-wpglobus-options.php:933
810
  msgid "WPGlobus for WooCommerce"
811
  msgstr ""
812
 
813
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:102
814
  msgid ""
815
  "Translate product titles and descriptions, product categories, tags and "
816
  "attributes."
817
  msgstr ""
818
 
819
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:107
820
  msgid "Get it now:"
821
  msgstr ""
822
 
823
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:117
824
  msgid "WooCommerce Multi-Currency"
825
  msgstr ""
826
 
827
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:121
828
  msgid "Accept multiple currencies in your online store!"
829
  msgstr ""
830
 
831
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:126,
832
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:185
833
  msgid "Check it out:"
834
  msgstr ""
835
 
836
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:195
837
  msgid "To translate permalinks, please activate the module Slug."
838
  msgstr ""
839
 
840
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:183
841
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
842
  msgstr ""
843
 
844
- #: includes/builders/class-wpglobus-builder.php:278,
845
- #: includes/class-wpglobus.php:3577
846
  msgid "Save draft before using extra language."
847
  msgstr ""
848
 
849
- #: includes/builders/class-wpglobus-builder.php:371
850
  msgid "Builder"
851
  msgstr ""
852
 
853
- #: includes/builders/class-wpglobus-builder.php:395
854
  msgid "Сompatibility Settings"
855
  msgstr ""
856
 
857
  #. translators: ON/OFF status of WPGlobus on the edit pages.
858
  #. translators: ON/OFF status of WPGlobus on the edit pages.
859
- #: includes/builders/elementor/class-wpglobus-elementor.php:255,
860
- #: includes/class-wpglobus.php:1263
861
  msgid "ON"
862
  msgstr ""
863
 
864
- #: includes/builders/elementor/class-wpglobus-elementor.php:256,
865
- #: includes/class-wpglobus.php:1264
866
  msgid "Turn off"
867
  msgstr ""
868
 
869
- #: includes/builders/elementor/class-wpglobus-elementor.php:250,
870
- #: includes/class-wpglobus.php:1258
871
  msgid "OFF"
872
  msgstr ""
873
 
874
- #: includes/builders/elementor/class-wpglobus-elementor.php:251,
875
- #: includes/class-wpglobus.php:1259
876
  msgid "Turn on"
877
  msgstr ""
878
 
879
- #: includes/builders/elementor/class-wpglobus-elementor.php:281
880
  msgid "Elementor"
881
  msgstr ""
882
 
883
- #: includes/builders/elementor/class-wpglobus-elementor.php:508
884
  msgid "WPGlobus languages"
885
  msgstr ""
886
 
887
- #: includes/builders/elementor/class-wpglobus-elementor.php:514
888
  msgid "current"
889
  msgstr ""
890
 
891
- #: includes/builders/elementor/class-wpglobus-elementor.php:675
892
  msgid ""
893
  "WPGlobus provides multilingual support for Elementor only when the option "
894
  "%1$s%2$s%3$s is set to %4$s."
895
  msgstr ""
896
 
897
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:228
898
  msgid "Before switching the language, please save draft or publish."
899
  msgstr ""
900
 
901
  #. translators: Metabox title FOR language.
902
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:318
903
  msgctxt "filter__seo_meta_box_title"
904
  msgid "for"
905
  msgstr ""
906
 
907
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:392
908
  msgid "Page is being reloaded. Please wait..."
909
  msgstr ""
910
 
911
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:393
912
  msgid ""
913
  "Before switching the language, please save draft or publish, then reload "
914
  "page."
915
  msgstr ""
916
 
917
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
918
  msgid ""
919
  "WPGlobus provides multilingual support for Elementor only when the option "
920
  "`CSS Print Method` is set to `External File`."
921
  msgstr ""
922
 
923
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
924
  msgid "Open Elementor Settings page"
925
  msgstr ""
926
 
927
- #: includes/class-wpglobus-widget.php:27
928
  msgid "WPGlobus widget"
929
  msgstr "WPGlobus widget"
930
 
931
- #: includes/class-wpglobus-widget.php:29
932
  msgid "Add language switcher"
933
  msgstr "Añadir selector de idiomas"
934
 
935
- #: includes/class-wpglobus-widget.php:32
936
  msgid "Flags"
937
  msgstr "Banderas"
938
 
939
- #: includes/class-wpglobus-widget.php:33
940
  msgid "List"
941
  msgstr "Lista"
942
 
943
- #: includes/class-wpglobus-widget.php:34
944
  msgid "List with flags"
945
  msgstr "Lista con Banderas"
946
 
947
- #: includes/class-wpglobus-widget.php:35
948
  msgid "Select"
949
  msgstr "Seleccionar"
950
 
951
- #: includes/class-wpglobus-widget.php:36
952
  msgid "Select with language code"
953
  msgstr "Seleccionar con el código de idioma"
954
 
955
- #: includes/class-wpglobus-widget.php:37
956
  msgid "Dropdown"
957
  msgstr "Desplegable"
958
 
959
- #: includes/class-wpglobus-widget.php:38
960
  msgid "Dropdown with flags"
961
  msgstr "Desplegable con banderas"
962
 
963
- #: includes/class-wpglobus-widget.php:264
964
  msgid "Selector type"
965
  msgstr "Tipo de selector"
966
 
967
- #: includes/class-wpglobus.php:1447
968
  msgid "You cannot disable the main language."
969
  msgstr "No se puede desactivar el idioma principal."
970
 
971
- #: includes/class-wpglobus.php:1672
972
  msgid "Need a multilingual slug?"
973
  msgstr ""
974
 
975
- #: includes/class-wpglobus.php:1655
976
  msgid "*) Available after the menu is saved."
977
  msgstr "No Se Puede Desactivar el director idioma."
978
 
979
- #: includes/class-wpglobus.php:4025
980
  msgid "You must enable Pretty Permalinks to use WPGlobus."
981
  msgstr ""
982
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
983
 
984
- #: includes/class-wpglobus.php:4027
985
  msgid ""
986
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
987
  "default option."
@@ -989,193 +730,150 @@ msgstr ""
989
  "Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
990
  "selecciona una opción no predeterminada ."
991
 
992
- #: includes/options/class-wpglobus-options.php:281
993
  msgid "Language Selector Menu Style"
994
  msgstr ""
995
 
996
- #: includes/options/class-wpglobus-options.php:282,
997
- #: includes/options/class-wpglobus-options.php:802,
998
- #: includes/options/class-wpglobus-options.php:871
999
  msgid "WPGlobus Plus"
1000
  msgstr ""
1001
 
1002
- #: includes/options/class-wpglobus-options.php:283
1003
  msgid "Drop-down languages menu or Flat (in one line)"
1004
  msgstr ""
1005
 
1006
- #: includes/options/class-wpglobus-options.php:286
1007
  msgid "Do not change"
1008
  msgstr ""
1009
 
1010
- #: includes/options/class-wpglobus-options.php:287
1011
  msgid "Drop-down (vertical)"
1012
  msgstr ""
1013
 
1014
- #: includes/options/class-wpglobus-options.php:288
1015
  msgid "Flat (horizontal)"
1016
  msgstr ""
1017
 
1018
- #: includes/options/class-wpglobus-options.php:343
1019
  msgid ""
1020
  "If you see this message then your browser may not display the WPGlobus "
1021
  "Settings panel properly. Please try another browser."
1022
  msgstr ""
1023
 
1024
- #: includes/options/class-wpglobus-options.php:599,
1025
- #: includes/options/class-wpglobus-options.php:1577
1026
  msgid "Сompatibility"
1027
  msgstr ""
1028
 
1029
  #. translators: placeholders for "strong" tags.
1030
- #: includes/options/class-wpglobus-options.php:616
1031
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
1032
  msgstr ""
1033
 
1034
  #. translators: placeholders for "strong" tags.
1035
- #: includes/options/class-wpglobus-options.php:619
1036
  msgid ""
1037
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
1038
  "the language attributes: name, code, flag icon, etc."
1039
  msgstr ""
1040
 
1041
- #: includes/options/class-wpglobus-options.php:622
1042
  msgid "Important notes"
1043
  msgstr "Notas importantes"
1044
 
1045
  #. translators: placeholders for "strong" tags.
1046
- #: includes/options/class-wpglobus-options.php:624
1047
  msgid "Version %1$s1.9.17%2$s "
1048
  msgstr ""
1049
 
1050
  #. translators: placeholders for "strong" tags.
1051
- #: includes/options/class-wpglobus-options.php:627
1052
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
1053
  msgstr ""
1054
 
1055
  #. translators: placeholders for "strong" tags; compatibility tab link.
1056
- #: includes/options/class-wpglobus-options.php:630
1057
  msgid ""
1058
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
1059
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
1060
  msgstr ""
1061
 
1062
  #. translators: placeholders for "strong" tags; compatibility tab link.
1063
- #: includes/options/class-wpglobus-options.php:633
1064
  msgid ""
1065
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
1066
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
1067
  msgstr ""
1068
 
1069
  #. translators: placeholders for "strong" tags.
1070
- #: includes/options/class-wpglobus-options.php:637
1071
  msgid "Version %1$s2.2.11%2$s "
1072
  msgstr ""
1073
 
1074
- #: includes/options/class-wpglobus-options.php:639
1075
  msgid "Starting from this version"
1076
  msgstr ""
1077
 
1078
  #. translators: placeholders for "strong" tags.
1079
- #: includes/options/class-wpglobus-options.php:642
1080
  msgid ""
1081
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
1082
  "(CPT)."
1083
  msgstr ""
1084
 
1085
  #. translators: placeholders for "strong" tags.
1086
- #: includes/options/class-wpglobus-options.php:645
1087
  msgid ""
1088
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
1089
  "the %1$s[%3$s]%2$s tab."
1090
  msgstr ""
1091
 
1092
- #: includes/options/class-wpglobus-options.php:662
1093
  msgid "Welcome!"
1094
  msgstr "Bienvenido!"
1095
 
1096
- #: includes/options/class-wpglobus-options.php:685
1097
  msgid "Deactivating / Uninstalling"
1098
  msgstr ""
1099
 
1100
- #: includes/options/class-wpglobus-options.php:711
1101
  msgid "Uninstall"
1102
  msgstr ""
1103
 
1104
- #: includes/options/class-wpglobus-options.php:741
1105
  msgid "All add-ons"
1106
  msgstr ""
1107
 
1108
- #: includes/options/class-wpglobus-options.php:756
1109
  msgid "Mobile Menu"
1110
  msgstr ""
1111
 
1112
- #: includes/options/class-wpglobus-options.php:771
1113
  msgid "Language Widgets"
1114
  msgstr ""
1115
 
1116
- #: includes/options/class-wpglobus-options.php:841
1117
  msgid "We Recommend..."
1118
  msgstr ""
1119
 
1120
- #: includes/options/class-wpglobus-options.php:873
1121
  msgid ""
1122
  "Our premium add-on, WPGlobus Plus, will add several features to your "
1123
  "website, such as:"
1124
  msgstr ""
1125
 
1126
- #: includes/options/class-wpglobus-options.php:876
1127
  msgid ""
1128
  "- Ability to write a post in one language and immediately publish it, not "
1129
  "waiting for the translation to other languages;"
1130
  msgstr ""
1131
 
1132
- #: includes/options/class-wpglobus-options.php:879
1133
  msgid "- Set different URLs for each translation;"
1134
  msgstr ""
1135
 
1136
- #: includes/options/class-wpglobus-options.php:882
1137
  msgid ""
1138
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
1139
  "for each translation;"
1140
  msgstr ""
1141
 
1142
- #: includes/options/class-wpglobus-options.php:885
1143
  msgid "- and more..."
1144
  msgstr ""
1145
 
1146
- #: includes/options/class-wpglobus-options.php:888,
1147
- #: includes/options/class-wpglobus-options.php:945,
1148
- #: includes/options/class-wpglobus-options.php:1003
1149
  msgid "Click here to download"
1150
  msgstr ""
1151
 
1152
- #: includes/options/class-wpglobus-options.php:936
1153
  msgid ""
1154
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
1155
  "translate your blog posts and pages to many languages."
1156
  msgstr ""
1157
 
1158
- #: includes/options/class-wpglobus-options.php:939
1159
  msgid "The next step is to translate your WooCommerce-based store!"
1160
  msgstr ""
1161
 
1162
- #: includes/options/class-wpglobus-options.php:942
1163
  msgid ""
1164
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
1165
  "translate product titles and descriptions, categories, tags and attributes."
1166
  msgstr ""
1167
 
1168
- #: includes/options/class-wpglobus-options.php:989
1169
  msgid "Multi-currency"
1170
  msgstr ""
1171
 
1172
- #: includes/options/class-wpglobus-options.php:992
1173
  msgid ""
1174
  "Your WooCommerce-powered store is set to show prices and accept payments in "
1175
  "a single currency only."
1176
  msgstr ""
1177
 
1178
- #: includes/options/class-wpglobus-options.php:996
1179
  msgid ""
1180
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
1181
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
@@ -1183,488 +881,370 @@ msgid ""
1183
  "positioning for global growth!"
1184
  msgstr ""
1185
 
1186
- #: includes/options/class-wpglobus-options.php:1000
1187
  msgid ""
1188
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
1189
  "re-calculating prices on-the-fly."
1190
  msgstr ""
1191
 
1192
- #: includes/options/class-wpglobus-options.php:1037
1193
  msgid "WPGlobus Premium Add-ons"
1194
  msgstr ""
1195
 
1196
- #: includes/options/class-wpglobus-options.php:1039
1197
  msgid ""
1198
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
1199
  "you will be able to:"
1200
  msgstr ""
1201
 
1202
- #: includes/options/class-wpglobus-options.php:1044
1203
  msgid ""
1204
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
1205
  "моя-страница and so on);"
1206
  msgstr ""
1207
 
1208
- #: includes/options/class-wpglobus-options.php:1047
1209
  msgid ""
1210
  "Postpone translation to some languages and <strong>publish only the "
1211
  "translated texts</strong>;"
1212
  msgstr ""
1213
 
1214
- #: includes/options/class-wpglobus-options.php:1050
1215
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
1216
  msgstr ""
1217
 
1218
- #: includes/options/class-wpglobus-options.php:1053
1219
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
1220
  msgstr ""
1221
 
1222
- #: includes/options/class-wpglobus-options.php:1056
1223
  msgid ""
1224
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
1225
  "strong>;"
1226
  msgstr ""
1227
 
1228
- #: includes/options/class-wpglobus-options.php:1060
1229
  msgid "...and more."
1230
  msgstr ""
1231
 
1232
- #: includes/options/class-wpglobus-options.php:1063
1233
  msgid "Click here to visit the WPGlobus Store"
1234
  msgstr ""
1235
 
1236
- #: includes/options/class-wpglobus-options.php:1104
1237
  msgid "Select a language"
1238
  msgstr "Seleccionar un idioma"
1239
 
1240
  #. translators: %3$s placeholder for the icon (actual picture).
1241
- #: includes/options/class-wpglobus-options.php:1133
1242
  msgid ""
1243
  "Place the %1$smain language%2$s of your site at the top of the list by "
1244
  "dragging the %3$s icons."
1245
  msgstr ""
1246
 
1247
  #. translators: placeholders for the "strong" HTML tags.
1248
- #: includes/options/class-wpglobus-options.php:1136
1249
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
1250
  msgstr ""
1251
 
1252
  #. translators: placeholders for the "strong" HTML tags.
1253
- #: includes/options/class-wpglobus-options.php:1139
1254
  msgid "%1$sAdd%2$s more languages using the section below."
1255
  msgstr ""
1256
 
1257
- #: includes/options/class-wpglobus-options.php:1140
1258
  msgid "When done, click the [Save Changes] button."
1259
  msgstr "Cuando hayas terminado, haz clic en el botón [Guardar Cambios] ."
1260
 
1261
  #. translators: %s - placeholder for the "Save Changes" button text.
1262
- #: includes/options/class-wpglobus-options.php:1151
1263
  msgid "Press the %s button to confirm."
1264
  msgstr ""
1265
 
1266
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
1267
- #: includes/options/class-wpglobus-options.php:1168
1268
  msgid "-- none --"
1269
  msgstr ""
1270
 
1271
- #: includes/options/class-wpglobus-options.php:1169
1272
  msgid "All menus"
1273
  msgstr ""
1274
 
1275
- #: includes/options/class-wpglobus-options.php:1182
1276
  msgid "Instructions:"
1277
  msgstr "Instrucciones:"
1278
 
1279
- #: includes/options/class-wpglobus-options.php:1242
1280
  msgid "(Found in some themes)"
1281
  msgstr "(Encontrado en algunos temas)"
1282
 
1283
- #: includes/options/class-wpglobus-options.php:1244
1284
  msgid "Enable"
1285
  msgstr "Habilitar"
1286
 
1287
- #: includes/options/class-wpglobus-options.php:1259
1288
  msgid "Languages table"
1289
  msgstr "Tabla de idiomas"
1290
 
1291
- #: includes/options/class-wpglobus-options.php:1265
1292
  msgid "Use this table to add, edit or delete languages."
1293
  msgstr "Utiliza esta tabla para agregar, editar o eliminar idiomas."
1294
 
1295
- #: includes/options/class-wpglobus-options.php:1266
1296
  msgid "NOTE: you cannot remove the main language."
1297
  msgstr "Nota: No se puede eliminar el idioma principal."
1298
 
1299
- #: includes/options/class-wpglobus-options.php:1314
1300
  msgid "WPGlobus is enabled on these Post Types"
1301
  msgstr ""
1302
 
1303
- #: includes/options/class-wpglobus-options.php:1315
1304
  msgid "Uncheck to disable"
1305
  msgstr ""
1306
 
1307
- #: includes/options/class-wpglobus-options.php:1316
1308
  msgid ""
1309
  "Please note that there are post types, which status is managed by other "
1310
  "plugins and cannot be changed here."
1311
  msgstr ""
1312
 
1313
- #: includes/options/class-wpglobus-options.php:1321
1314
  msgid "Post Types"
1315
  msgstr ""
1316
 
1317
- #: includes/options/class-wpglobus-options.php:1337
1318
  msgid ""
1319
  "You should put here only the code provided by WPGlobus Support. Do not write "
1320
  "anything else in the sections below as it might break the functionality of "
1321
  "your website!"
1322
  msgstr ""
1323
 
1324
- #: includes/options/class-wpglobus-options.php:1378
1325
  msgid "Custom Code"
1326
  msgstr ""
1327
 
1328
- #: includes/options/class-wpglobus-options.php:1486,
1329
- #: includes/options/class-wpglobus-options.php:1618,
1330
- #: includes/options/class-wpglobus-options.php:1729
1331
  msgid "Enabled"
1332
  msgstr "Habilitar"
1333
 
1334
- #: includes/options/class-wpglobus-options.php:1499
1335
  msgid "Builders support"
1336
  msgstr ""
1337
 
1338
- #: includes/options/class-wpglobus-options.php:1551
1339
  msgid "Builder mode is enabled on these Post Types"
1340
  msgstr ""
1341
 
1342
- #: includes/options/class-wpglobus-options.php:1617
1343
  msgid "Old fashioned language switcher"
1344
  msgstr ""
1345
 
1346
- #: includes/options/class-wpglobus-options.php:1623
1347
  msgid "Block Editor"
1348
  msgstr ""
1349
 
1350
- #: includes/options/class-wpglobus-options.php:1624
1351
  msgid "Block Editor Options"
1352
  msgstr ""
1353
 
1354
- #: includes/options/class-wpglobus-options.php:1653
1355
  msgid ""
1356
  "With the current settings, you will see the following lines in the section "
1357
  "HEAD of your site pages"
1358
  msgstr ""
1359
 
1360
- #: includes/options/class-wpglobus-options.php:1655
1361
  msgid "(example for two languages)"
1362
  msgstr ""
1363
 
1364
- #: includes/options/class-wpglobus-options.php:1702
1365
  msgid ""
1366
  "Tell search engines about localized versions of your pages using the "
1367
  "hreflang tag"
1368
  msgstr ""
1369
 
1370
- #: includes/options/class-wpglobus-options.php:1711
1371
  msgid "Output the hreflang tag as"
1372
  msgstr ""
1373
 
1374
- #: includes/options/class-wpglobus-options.php:1714
1375
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1376
  msgstr ""
1377
 
1378
- #: includes/options/class-wpglobus-options.php:1715
1379
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1380
  msgstr ""
1381
 
1382
- #: includes/options/class-wpglobus-options.php:1716
1383
  msgid "Language code only (en, ru, etc.)"
1384
  msgstr ""
1385
 
1386
- #: includes/options/class-wpglobus-options.php:1728
1387
  msgid "Use the code `x-default` for the main language"
1388
  msgstr ""
1389
 
1390
- #: includes/options/class-wpglobus-options.php:1734
1391
  msgid "Multilingual SEO"
1392
  msgstr ""
1393
 
1394
- #: includes/options/class-wpglobus-options.php:1735
1395
  msgid "Multilingual SEO Options"
1396
  msgstr ""
1397
 
1398
- #: includes/options/class-wpglobus-options.php:1772
1399
  msgid ""
1400
  "With WPGlobus, you can get translations for posts and pages using REST API."
1401
  msgstr ""
1402
 
1403
- #: includes/options/class-wpglobus-options.php:1800,
1404
- #: includes/options/class-wpglobus-options.php:1808,
1405
- #: includes/options/class-wpglobus-options.php:1780,
1406
- #: includes/options/class-wpglobus-options.php:1789
1407
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1408
  msgstr ""
1409
 
1410
- #: includes/options/class-wpglobus-options.php:1777
1411
  msgid ""
1412
  "For demonstration, you can try the first post that WordPress creates at the "
1413
  "initial installation."
1414
  msgstr ""
1415
 
1416
- #: includes/options/class-wpglobus-options.php:1819
1417
  msgid ""
1418
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1419
  "information."
1420
  msgstr ""
1421
 
1422
- #: includes/options/class-wpglobus-options.php:1826
1423
  msgid ""
1424
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1425
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1426
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1427
  msgstr ""
1428
 
1429
- #: includes/options/class-wpglobus-options.php:1839
1430
  msgid "Description:"
1431
  msgstr ""
1432
 
1433
- #: includes/options/class-wpglobus-options.php:1846,
1434
- #: includes/options/class-wpglobus-options.php:1847
1435
  msgid "REST API"
1436
  msgstr ""
1437
 
1438
- #: includes/options/class-wpglobus-options.php:2180
1439
  msgid "Translate strings"
1440
  msgstr ""
1441
 
1442
- #: includes/options/fields/table/class-wpglobus-languages-table.php:66
1443
  msgid "item"
1444
  msgstr "Artículo"
1445
 
1446
- #: includes/options/fields/table/class-wpglobus-languages-table.php:68
1447
  msgid "items"
1448
  msgstr "Artículos"
1449
 
1450
- #: includes/options/fields/table/class-wpglobus-languages-table.php:88
1451
  msgid "Code"
1452
  msgstr "Código"
1453
 
1454
- #: includes/options/fields/table/class-wpglobus-languages-table.php:94
1455
  msgid "Edit"
1456
  msgstr "Editar"
1457
 
1458
- #: includes/options/fields/table/class-wpglobus-languages-table.php:99
1459
  msgid "Delete"
1460
  msgstr "Borrar"
1461
 
1462
- #: includes/options/fields/table/class-wpglobus-languages-table.php:105
1463
  msgid "File"
1464
  msgstr "Archivo"
1465
 
1466
- #: includes/options/fields/table/class-wpglobus-languages-table.php:110
1467
  msgid "Flag"
1468
  msgstr "Bandera"
1469
 
1470
- #: includes/options/fields/table/class-wpglobus-languages-table.php:120
1471
  msgid "Language name"
1472
  msgstr "Nombre del idioma"
1473
 
1474
- #: includes/options/fields/table/class-wpglobus-languages-table.php:125
1475
  msgid "English language name"
1476
  msgstr "Nombre del idioma en Inglés"
1477
 
1478
- #: includes/options/fields/table/class-wpglobus-languages-table.php:151
1479
  msgid "No items found"
1480
  msgstr "No se han encntrado artículos"
1481
 
1482
- #: includes/options/fields/table/class-wpglobus-languages-table.php:164
1483
  msgid "Add new Language"
1484
  msgstr "Añadir nuevo idioma"
1485
 
1486
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:164
1487
  msgid "No items of this type were found."
1488
  msgstr ""
1489
 
1490
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:107
1491
  msgid "Select an item"
1492
  msgstr ""
1493
 
1494
- #: includes/options/templates/compatibility-beta.php:15
1495
  msgid "Multilingual support of this add-on is currently in Beta stage."
1496
  msgstr ""
1497
 
1498
- #: includes/options/templates/compatibility-beta.php:17
1499
  msgid "We do not recommend using it on production sites."
1500
  msgstr ""
1501
 
1502
- #: includes/options/templates/compatibility-beta.php:23
1503
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1504
  msgstr ""
1505
 
1506
- #: includes/options/templates/compatibility.php:69
1507
  msgid "WordPress version"
1508
  msgstr ""
1509
 
1510
- #: includes/options/templates/compatibility.php:44
1511
  msgid "In the WordPress core"
1512
  msgstr ""
1513
 
1514
- #: includes/options/templates/compatibility.php:46
1515
  msgid "Core"
1516
  msgstr ""
1517
 
1518
- #: includes/options/templates/compatibility.php:52,
1519
- #: includes/options/templates/compatibility.php:79
1520
  msgid "Current version"
1521
  msgstr ""
1522
 
1523
- #: includes/options/templates/compatibility.php:53,
1524
- #: includes/options/templates/compatibility.php:81
1525
  msgid "Stage"
1526
  msgstr ""
1527
 
1528
- #: includes/options/templates/compatibility.php:54,
1529
- #: includes/options/templates/compatibility.php:82
1530
  msgid "Status"
1531
  msgstr "Estado"
1532
 
1533
- #: includes/options/templates/compatibility.php:60
1534
  msgid "Block editor"
1535
  msgstr ""
1536
 
1537
- #: includes/options/templates/compatibility.php:62
1538
  msgid "production"
1539
  msgstr ""
1540
 
1541
- #: includes/options/templates/compatibility.php:73
1542
  msgid "List of supported add-ons"
1543
  msgstr ""
1544
 
1545
- #: includes/options/templates/compatibility.php:78
1546
  msgid "Add-on"
1547
  msgstr ""
1548
 
1549
- #: includes/options/templates/compatibility.php:80
1550
  msgid "Supported minimum version"
1551
  msgstr ""
1552
 
1553
- #: includes/options/templates/compatibility.php:105
1554
  msgid "Not installed"
1555
  msgstr ""
1556
 
1557
- #: includes/options/templates/compatibility.php:102
1558
  msgid "Installed, inactive"
1559
  msgstr ""
1560
 
1561
- #: includes/options/templates/compatibility.php:100
1562
  msgid "Active"
1563
  msgstr "Activo"
1564
 
1565
- #: includes/options/templates/customize-intro.php:35
1566
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1567
  msgstr ""
1568
 
1569
- #: includes/options/templates/customize-intro.php:39
1570
  msgid "However, some themes do not follow all WordPress standards strictly."
1571
  msgstr ""
1572
 
1573
- #: includes/options/templates/customize-intro.php:41
1574
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1575
  msgstr ""
1576
 
1577
- #: includes/options/templates/customize-intro.php:45
1578
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1579
  msgstr ""
1580
 
1581
- #: includes/options/templates/customize-intro.php:53
1582
  msgid ""
1583
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1584
  "With those themes, WPGlobus Customizer is switched off by default"
1585
  msgstr ""
1586
 
1587
- #: includes/options/templates/customize-intro.php:60
1588
  msgid "The currently active theme is"
1589
  msgstr ""
1590
 
1591
- #: includes/options/templates/customize-intro.php:66
1592
  msgid "In the current version, WPGlobus Customizer does not support"
1593
  msgstr ""
1594
 
1595
- #: includes/options/templates/customize-intro.php:70
1596
  msgid "translation of the navigation menus"
1597
  msgstr ""
1598
 
1599
- #: includes/options/templates/customize-intro.php:72
1600
  msgid "to translate, please go to"
1601
  msgstr ""
1602
 
1603
- #: includes/options/templates/customize-intro.php:81
1604
  msgid "Go to Customizer"
1605
  msgstr ""
1606
 
1607
- #: includes/options/templates/customize-intro.php:88
1608
  msgid "is undefined"
1609
  msgstr ""
1610
 
1611
- #: includes/options/templates/customize-intro.php:85
1612
  msgid "is set to"
1613
  msgstr ""
1614
 
1615
- #: includes/options/templates/customize-intro.php:94
1616
  msgid "by adding to the file wp-config.php"
1617
  msgstr ""
1618
 
1619
- #: includes/options/templates/customize-intro.php:96
1620
  msgid "now"
1621
  msgstr ""
1622
 
1623
- #: includes/options/wpglobus-options-header.php:25
1624
  msgid "We rely on your support!"
1625
  msgstr ""
1626
 
1627
- #: includes/options/wpglobus-options-header.php:28
1628
  msgid "Please consider a small donation to support the future development."
1629
  msgstr ""
1630
 
1631
- #: includes/options/wpglobus-options-header.php:32
1632
  msgid "Thank you!"
1633
  msgstr "Gracias!"
1634
 
1635
- #: includes/options/wpglobus-options-header.php:55
1636
  msgid "WPGlobus Plus!"
1637
  msgstr "WPGlobus Plus!"
1638
 
1639
- #: includes/options/wpglobus-options-header.php:58
1640
  msgid ""
1641
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1642
  "separate publishing and more! "
1643
  msgstr ""
1644
 
1645
- #: includes/options/wpglobus-options-header.php:64
1646
  msgid "Get WPGlobus Plus now!"
1647
  msgstr ""
1648
 
1649
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1650
  msgid ""
1651
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1652
  "the current version."
1653
  msgstr ""
1654
 
1655
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1656
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1657
  msgstr ""
1658
 
1659
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1660
  msgid "WPGlobus warning: "
1661
  msgstr ""
1662
 
1663
- #: wpglobus.php:13
1664
  msgid "https://github.com/WPGlobus/WPGlobus"
1665
  msgstr ""
1666
 
1667
- #: wpglobus.php:14
1668
  msgid ""
1669
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1670
  "widgets and even custom fields - in multiple languages!"
@@ -1672,6 +1252,5 @@ msgstr ""
1672
  "WordPress Globalization / Plugin multilenguaje. Mensajes, páginas, menús, "
1673
  "widgets e incluso campos personalizados - en varios idiomas !"
1674
 
1675
- #: wpglobus.php:19
1676
  msgid "https://wpglobus.com/"
1677
  msgstr ""
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
 
 
 
 
 
19
  msgid "Guide"
20
  msgstr "Guía"
21
 
 
 
22
  msgid "WPGlobus Help Desk"
23
  msgstr ""
24
 
 
 
 
 
 
 
 
25
  msgid "Add-ons"
26
  msgstr "Complementos"
27
 
 
28
  msgid "Quick Start"
29
  msgstr "Inicio Rápido"
30
 
 
 
31
  msgid "FAQ"
32
  msgstr "FAQ"
33
 
 
34
  msgid ""
35
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
36
  msgstr ""
37
 
 
38
  msgid ""
39
  "The mbstring extension is required for the full UTF-8 compatibility and "
40
  "better performance. Without it, some parts of WordPress and WPGlobus may "
42
  "administrator."
43
  msgstr ""
44
 
 
45
  msgid "Go to WPGlobus Settings"
46
  msgstr "Ir a Ajustes WPGlobus"
47
 
 
48
  msgid "Easy as 1-2-3:"
49
  msgstr "Fácil en 1-2-3:"
50
 
 
51
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
52
  msgstr "Ve al menú de administración WPGlobus y elege los países/idiomas;"
53
 
 
54
  msgid ""
55
  "Enter the translations to the posts, pages, categories, tags and menus using "
56
  "a clean and simple interface."
58
  "Introduce las traducciones a los mensajes, páginas, categorías,etiquetas y "
59
  "menús usando una interfaz limpia y simple."
60
 
 
61
  msgid ""
62
  "Switch languages at the front-end using a drop-down menu with language names "
63
  "and country flags."
65
  "Cambia de idioma en el front-end utilizando un menú desplegable con los "
66
  "nombres de las lenguas y banderas de los países ."
67
 
 
68
  msgid "Links:"
69
  msgstr "Enlaces:"
70
 
 
71
  msgid "FAQs"
72
  msgstr "Preguntas Frecuentes"
73
 
 
74
  msgid "Contact Us"
75
  msgstr "Contáctanos"
76
 
 
77
  msgid "Please give us 5 stars!"
78
  msgstr "Por favor danos 5 estrellas!"
79
 
 
80
  msgid "WPGlobus does not translate texts automatically!"
81
  msgstr ""
82
 
 
83
  msgid ""
84
  "There are many translation companies and individual translators who can help "
85
  "you write and proofread the texts."
86
  msgstr ""
87
 
 
88
  msgid ""
89
  "When you choose a translator, please look at their native language, country "
90
  "of residence, specialization and knowledge of WordPress."
91
  msgstr ""
92
 
93
  #. translators: %s are used to insert HTML link. Keep them in place.
 
94
  msgid ""
95
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
96
  "website. This is not an endorsement, just a courtesy. Please contact them "
97
  "directly and let us know how did it work for you!"
98
  msgstr ""
99
 
 
100
  msgid "Important notes:"
101
  msgstr ""
102
 
 
103
  msgid ""
104
  "WPGlobus only supports the localization URLs in the form of <code>example."
105
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
110
  "subdominios <code>example.com</code> ni consultas lingüísticas <code>example."
111
  "com?lang=xx</code>."
112
 
 
113
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
114
  msgstr ""
115
  "En algunos temas y plugins <strong>No está listo el multilenguaje</strong>."
116
 
 
117
  msgid ""
118
  "They might display some texts with no translation, or with all languages "
119
  "mixed together."
122
  "mezclados entre sí."
123
 
124
  #. translators: %s are used to insert HTML link. Keep them in place.
 
125
  msgid ""
126
  "Please contact the theme / plugin author. If they are unable to assist, "
127
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
130
  "ayudarte, considera % s la contratación del WPGlobus % s para escribir un "
131
  "código personalizado para tí."
132
 
 
133
  msgid "Language was set on your profile page"
134
  msgstr ""
135
 
 
136
  msgid "Add"
137
  msgstr "Añadir"
138
 
 
 
139
  msgid "Multilingual Everything!"
140
  msgstr "Multilenguaje Total!"
141
 
 
 
142
  msgid ""
143
  "WPGlobus is a family of WordPress plugins assisting you in making "
144
  "multilingual WordPress blogs and sites."
146
  "WPGlobus es una familia de plugins de WordPress que ayudan en la traducción "
147
  "de blogs de WordPress."
148
 
 
149
  msgid "Remove the WPGlobus settings (not recommended)"
150
  msgstr ""
151
 
 
152
  msgid "Clean-up Tool"
153
  msgstr ""
154
 
 
155
  msgid "Support"
156
  msgstr "Soporte"
157
 
 
158
  msgid ""
159
  "WARNING: this operation is non-reversible. It is strongly recommended that "
160
  "you backup your database before proceeding."
161
  msgstr ""
162
 
 
163
  msgid ""
164
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
165
  "By running it, you will remove ALL translations you have entered to your "
169
  "so on."
170
  msgstr ""
171
 
 
172
  msgid ""
173
  "Make sure that your active theme does not have any code related to WPGlobus. "
174
  "Such code could be added by you or by a 3rd party developer. If that code "
177
  msgstr ""
178
 
179
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
 
180
  msgid ""
181
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
182
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
183
  msgstr ""
184
 
 
185
  msgid "You are about to clean the content of the following database tables:"
186
  msgstr ""
187
 
 
188
  msgid "The operations log"
189
  msgstr ""
190
 
 
191
  msgid ""
192
  "We are going to write a detailed log of all the database changes performed. "
193
  "It should help in the case you need to restore something important. The log "
194
  "will be written to the file:"
195
  msgstr ""
196
 
 
197
  msgid ""
198
  "Uncheck if you do not want to write the operations log (we recommend to keep "
199
  "it checked)"
200
  msgstr ""
201
 
 
202
  msgid "You have been warned..."
203
  msgstr ""
204
 
 
205
  msgid "Please confirm by checking the box below:"
206
  msgstr ""
207
 
 
208
  msgid ""
209
  "I have read and understood everything written on this page. I am aware that "
210
  "by using this tool I may loose some content of my website. I have made a "
212
  "responsible for the results."
213
  msgstr ""
214
 
 
215
  msgid "YES, I CONFIRM"
216
  msgstr ""
217
 
 
218
  msgid "Process with the Clean-up"
219
  msgstr ""
220
 
 
 
 
 
221
  msgid "Default"
222
  msgstr "Predefinido"
223
 
 
224
  msgid "Section"
225
  msgstr ""
226
 
 
227
  msgid "Show all sections"
228
  msgstr ""
229
 
 
230
  msgid "Save &amp; Reload"
231
  msgstr ""
232
 
 
 
 
233
  msgid "WPGlobus"
234
  msgstr ""
235
 
 
236
  msgid ""
237
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
238
  msgstr ""
239
 
 
240
  msgid "Fields Settings"
241
  msgstr ""
242
 
 
243
  msgid "WPGlobus Settings"
244
  msgstr ""
245
 
 
246
  msgid "Help"
247
  msgstr "Ayuda"
248
 
 
 
249
  msgid "Languages"
250
  msgstr "Idiomas"
251
 
 
 
252
  msgid "Enabled Languages"
253
  msgstr "Idiomas Habilitados"
254
 
 
 
255
  msgid "These languages are currently enabled on your site."
256
  msgstr "Estos idiomas están habilitados actualmente en su sitio."
257
 
 
 
258
  msgid "Choose a language you would like to enable."
259
  msgstr ""
260
 
 
261
  msgid "Press the [Save & Publish] button to confirm."
262
  msgstr ""
263
 
264
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
265
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
 
 
266
  msgid "or Add new Language %1$s here %2$s"
267
  msgstr ""
268
 
 
 
269
  msgid "Add Languages"
270
  msgstr "Añadir idioma"
271
 
 
 
272
  msgid "Language Selector Mode"
273
  msgstr "Modo Selector de Idioma"
274
 
 
 
275
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
276
  msgstr "Código de la bandera en dos letras (es, en, ru, it, etc.)"
277
 
 
 
278
  msgid "Full Name (English, Russian, Italian, etc.)"
279
  msgstr "Nombre completo (Español, English, Russian, Italian, etc.)"
280
 
 
 
281
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
282
  msgstr "Nombre completo con bandera (Español, English, Russian, Italian, etc.)"
283
 
 
 
284
  msgid "Flags only"
285
  msgstr "Sólo banderas"
286
 
 
 
287
  msgid ""
288
  "Choose the way language name and country flag are shown in the drop-down menu"
289
  msgstr ""
290
  "Elige el nombre del idioma y bandera del país se muestran en el menú "
291
  "desplegable"
292
 
 
293
  msgid "select navigation menu"
294
  msgstr ""
295
 
 
 
 
296
  msgid "Language Selector Menu"
297
  msgstr "Menú selector de idioma"
298
 
 
 
 
299
  msgid "Choose the navigation menu where the language selector will be shown"
300
  msgstr ""
301
  "Selecciona el menú de navegación donde se mostrará el selector de idioma"
302
 
 
303
  msgid "No menus have been created yet. Create some."
304
  msgstr ""
305
 
 
 
306
  msgid "\"All Pages\" menus Language selector"
307
  msgstr "\"Todas las páginas\" Selector de menús Idioma"
308
 
 
 
309
  msgid ""
310
  "Adds language selector to the menus that automatically list all existing "
311
  "pages (using `wp_list_pages`)"
314
  "automáticamente en todas las páginas existentes (utilizando ` "
315
  "wp_list_pages` )"
316
 
 
 
317
  msgid "Custom CSS"
318
  msgstr "Customizar CSS"
319
 
 
320
  msgid ""
321
  "Here you can enter the CSS rules to adjust the language selector menu for "
322
  "your theme. Look at the examples in the `style-samples.css` file."
324
  "Aquí puedes introducir las reglas CSS para ajustar el menú de selección de "
325
  "idiomas para tu tema. Mira los ejemplos en el `style-samples.css` file."
326
 
 
327
  msgid "Post types"
328
  msgstr "Tipos de Post"
329
 
 
330
  msgid "Uncheck to disable WPGlobus"
331
  msgstr "Desactiva la opción para desactivar WPGlobus"
332
 
 
 
333
  msgid "Redirect"
334
  msgstr "Redirección"
335
 
 
 
336
  msgid "Choose the language automatically, based on:"
337
  msgstr ""
338
 
 
 
339
  msgid "Preferred language set in the browser"
340
  msgstr ""
341
 
 
 
342
  msgid ""
343
  "When a user comes to the site for the first time, try to find the best "
344
  "matching language version of the page."
345
  msgstr ""
346
 
 
 
 
 
347
  msgid "Custom JS Code"
348
  msgstr ""
349
 
 
 
350
  msgid "Title"
351
  msgstr "Título"
352
 
 
353
  msgid "(Paste your JS code here.)"
354
  msgstr ""
355
 
 
356
  msgid ""
357
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
358
  "version 4.9 or later."
359
  msgstr ""
360
 
 
361
  msgid "With your version of WordPress, please use the"
362
  msgstr ""
363
 
 
364
  msgid "WPGlobus Settings page"
365
  msgstr ""
366
 
 
367
  msgid "Label"
368
  msgstr ""
369
 
 
370
  msgid "Description"
371
  msgstr "Decripción"
372
 
 
373
  msgid ""
374
  "Here you can specify which fields should be considered multilingual by "
375
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
376
  msgstr ""
377
 
 
 
378
  msgid "Thank you for installing WPGlobus!"
379
  msgstr "Gracias por instalar WPGlobus!"
380
 
 
 
381
  msgid "Read About WPGlobus"
382
  msgstr "Leer sobre WPGlobus!"
383
 
 
384
  msgid ""
385
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
386
  msgstr ""
387
  "Click en la <strong>[Idiomas]</strong> pestaña en la parte izquierda de "
388
  "configuración de las opciones."
389
 
 
 
390
  msgid ""
391
  "Should you have any questions or comments, please do not hesitate to contact "
392
  "us."
394
  "Si tienes alguna pregunta o comentario, por favor no dudes en contactar con "
395
  "nosotros."
396
 
 
 
397
  msgid "Sincerely Yours,"
398
  msgstr "Sinceramente tuyo,"
399
 
 
 
 
400
  msgid "The WPGlobus Team"
401
  msgstr "El Equipo WPGlobus"
402
 
403
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
404
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
405
  msgid ""
406
  "We would hate to see you go. If something goes wrong, do not uninstall "
407
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
408
  msgstr ""
409
 
 
 
410
  msgid ""
411
  "Please note that if you deactivate WPGlobus, your site will show all the "
412
  "languages together, mixed up. You will need to remove all translations, "
415
 
416
  #. translators: %s: link to the Clean-up Tool
417
  #. translators: %s: link to the Clean-up Tool.
 
 
418
  msgid ""
419
  "If there are just a few places, you should edit them manually. To "
420
  "automatically remove all translations at once, you can use the %s. WARNING: "
424
 
425
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
426
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
427
  msgid "%1$sClean-up Tool%2$s"
428
  msgstr ""
429
 
430
  #. translators: %s: name of current theme
 
431
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
432
  msgstr ""
433
 
434
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
435
  msgid "Please use %1$sWPGlobus options page%2$s instead."
436
  msgstr ""
437
 
 
438
  msgid "Expand/Shrink"
439
  msgstr ""
440
 
 
 
441
  msgid "WPGlobus News"
442
  msgstr ""
443
 
 
 
444
  msgid "Options updated"
445
  msgstr "Opciones actualizadas"
446
 
 
447
  msgid "Please enter a language code!"
448
  msgstr "Por favor, introduce el código del idioma!"
449
 
 
450
  msgid "Language code already exists!"
451
  msgstr "Este código de idioma ya existe!"
452
 
 
453
  msgid "Please specify the language flag!"
454
  msgstr "Por favor, especifica la bandera del idioma !"
455
 
 
456
  msgid "Please enter the language name!"
457
  msgstr "Por favor introduce el nombre del idioma!"
458
 
 
459
  msgid "Please enter the language name in English!"
460
  msgstr "Por favor introduce el nombre del idioma en Inglés!"
461
 
 
462
  msgid "Please enter the locale!"
463
  msgstr "Por favor introduce la localización!"
464
 
 
465
  msgid "Add Language"
466
  msgstr "Añadir Idioma"
467
 
 
 
 
468
  msgid "Delete Language"
469
  msgstr "Eliminar Idioma"
470
 
 
471
  msgid "Edit Language"
472
  msgstr "Editar Idioma"
473
 
 
474
  msgid "Language Code"
475
  msgstr "Código del Idioma"
476
 
 
477
  msgid ""
478
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
479
  msgstr ""
480
  "2-Carta de códigos de idioma ISO para el idioma que deseas insertar. "
481
  "(Ejemplo : en)"
482
 
 
483
  msgid "Language flag"
484
  msgstr "Bandera del idioma"
485
 
 
486
  msgid "Name"
487
  msgstr "Nombre"
488
 
 
489
  msgid ""
490
  "The name of the language in its native alphabet. (Examples: English, Русский)"
491
  msgstr ""
492
  "El nombre de la lengua en su alfabeto nativo. (Ejemplos : Español, English, "
493
  "Русский )"
494
 
 
495
  msgid "Name in English"
496
  msgstr "Nombre en Inglés"
497
 
 
498
  msgid "The name of the language in English"
499
  msgstr "El nombre del idioma en Inglés"
500
 
 
 
501
  msgid "Locale"
502
  msgstr "Local"
503
 
 
504
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
505
  msgstr ""
506
  "PHP / WordPress configuración regional de la lengua . (Ejemplos : en_US, "
507
  "es_ES, ru_RU)"
508
 
 
509
  msgid "Are you sure you want to delete?"
510
  msgstr "Estás seguro de que quieres borrarlo?"
511
 
 
512
  msgid "Save Changes"
513
  msgstr "Guardar Cambios"
514
 
 
515
  msgid "Back to the WPGlobus Settings"
516
  msgstr "Volver a Ajustes WPGlobus"
517
 
 
518
  msgid "Current Version"
519
  msgstr "Versión Actual"
520
 
 
521
  msgid "Get it now!"
522
  msgstr ""
523
 
 
524
  msgid "Premium add-on"
525
  msgstr ""
526
 
 
 
527
  msgid "Installed"
528
  msgstr "Instalado"
529
 
530
  #. translators: placeholders are for the HTML tags.
 
531
  msgid ""
532
  "If you have already purchased a WPGlobus premium extension, please read "
533
  "%1$sthe installation instructions here%2$s"
534
  msgstr ""
535
 
 
 
536
  msgid "Help Desk"
537
  msgstr ""
538
 
 
539
  msgid "Email not sent. Please fill in the entire form."
540
  msgstr ""
541
 
 
542
  msgid ""
543
  "Email not sent. Please verify that your name and email are entered correctly."
544
  msgstr ""
545
 
 
546
  msgid "Email sent."
547
  msgstr ""
548
 
 
549
  msgid "Thank you for using WPGlobus!"
550
  msgstr ""
551
 
 
552
  msgid "Our Support Team is here to answer your questions or concerns."
553
  msgstr ""
554
 
 
555
  msgid "To help us serve you better:"
556
  msgstr ""
557
 
 
558
  msgid ""
559
  "Please check if the problem persists if you switch to a standard WordPress "
560
  "theme."
561
  msgstr ""
562
 
 
563
  msgid ""
564
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
565
  msgstr ""
566
 
 
567
  msgid "Please fill in and submit the contact form:"
568
  msgstr ""
569
 
 
570
  msgid "Please make sure the email address is correct."
571
  msgstr ""
572
 
 
573
  msgid "Subject"
574
  msgstr "Asunto"
575
 
 
576
  msgid "Short description of the problem"
577
  msgstr ""
578
 
 
579
  msgid "Detailed description"
580
  msgstr ""
581
 
 
582
  msgid "Technical Information"
583
  msgstr ""
584
 
 
585
  msgid "This information helps us to find the problem source"
586
  msgstr ""
587
 
 
588
  msgid ""
589
  "Alternatively, please email %s. Do not forget to copy and paste the "
590
  "technical information to your email message."
591
  msgstr ""
592
 
 
593
  msgid "WPGlobus Recommends:"
594
  msgstr ""
595
 
 
 
596
  msgid "WPGlobus for WooCommerce"
597
  msgstr ""
598
 
 
599
  msgid ""
600
  "Translate product titles and descriptions, product categories, tags and "
601
  "attributes."
602
  msgstr ""
603
 
 
604
  msgid "Get it now:"
605
  msgstr ""
606
 
 
607
  msgid "WooCommerce Multi-Currency"
608
  msgstr ""
609
 
 
610
  msgid "Accept multiple currencies in your online store!"
611
  msgstr ""
612
 
 
 
613
  msgid "Check it out:"
614
  msgstr ""
615
 
 
616
  msgid "To translate permalinks, please activate the module Slug."
617
  msgstr ""
618
 
 
619
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
620
  msgstr ""
621
 
 
 
622
  msgid "Save draft before using extra language."
623
  msgstr ""
624
 
 
625
  msgid "Builder"
626
  msgstr ""
627
 
 
628
  msgid "Сompatibility Settings"
629
  msgstr ""
630
 
631
  #. translators: ON/OFF status of WPGlobus on the edit pages.
632
  #. translators: ON/OFF status of WPGlobus on the edit pages.
 
 
633
  msgid "ON"
634
  msgstr ""
635
 
 
 
636
  msgid "Turn off"
637
  msgstr ""
638
 
 
 
639
  msgid "OFF"
640
  msgstr ""
641
 
 
 
642
  msgid "Turn on"
643
  msgstr ""
644
 
 
645
  msgid "Elementor"
646
  msgstr ""
647
 
 
648
  msgid "WPGlobus languages"
649
  msgstr ""
650
 
 
651
  msgid "current"
652
  msgstr ""
653
 
 
654
  msgid ""
655
  "WPGlobus provides multilingual support for Elementor only when the option "
656
  "%1$s%2$s%3$s is set to %4$s."
657
  msgstr ""
658
 
 
659
  msgid "Before switching the language, please save draft or publish."
660
  msgstr ""
661
 
662
  #. translators: Metabox title FOR language.
 
663
  msgctxt "filter__seo_meta_box_title"
664
  msgid "for"
665
  msgstr ""
666
 
 
667
  msgid "Page is being reloaded. Please wait..."
668
  msgstr ""
669
 
 
670
  msgid ""
671
  "Before switching the language, please save draft or publish, then reload "
672
  "page."
673
  msgstr ""
674
 
 
675
  msgid ""
676
  "WPGlobus provides multilingual support for Elementor only when the option "
677
  "`CSS Print Method` is set to `External File`."
678
  msgstr ""
679
 
 
680
  msgid "Open Elementor Settings page"
681
  msgstr ""
682
 
 
683
  msgid "WPGlobus widget"
684
  msgstr "WPGlobus widget"
685
 
 
686
  msgid "Add language switcher"
687
  msgstr "Añadir selector de idiomas"
688
 
 
689
  msgid "Flags"
690
  msgstr "Banderas"
691
 
 
692
  msgid "List"
693
  msgstr "Lista"
694
 
 
695
  msgid "List with flags"
696
  msgstr "Lista con Banderas"
697
 
 
698
  msgid "Select"
699
  msgstr "Seleccionar"
700
 
 
701
  msgid "Select with language code"
702
  msgstr "Seleccionar con el código de idioma"
703
 
 
704
  msgid "Dropdown"
705
  msgstr "Desplegable"
706
 
 
707
  msgid "Dropdown with flags"
708
  msgstr "Desplegable con banderas"
709
 
 
710
  msgid "Selector type"
711
  msgstr "Tipo de selector"
712
 
 
713
  msgid "You cannot disable the main language."
714
  msgstr "No se puede desactivar el idioma principal."
715
 
 
716
  msgid "Need a multilingual slug?"
717
  msgstr ""
718
 
 
719
  msgid "*) Available after the menu is saved."
720
  msgstr "No Se Puede Desactivar el director idioma."
721
 
 
722
  msgid "You must enable Pretty Permalinks to use WPGlobus."
723
  msgstr ""
724
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
725
 
 
726
  msgid ""
727
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
728
  "default option."
730
  "Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
731
  "selecciona una opción no predeterminada ."
732
 
 
733
  msgid "Language Selector Menu Style"
734
  msgstr ""
735
 
 
 
 
736
  msgid "WPGlobus Plus"
737
  msgstr ""
738
 
 
739
  msgid "Drop-down languages menu or Flat (in one line)"
740
  msgstr ""
741
 
 
742
  msgid "Do not change"
743
  msgstr ""
744
 
 
745
  msgid "Drop-down (vertical)"
746
  msgstr ""
747
 
 
748
  msgid "Flat (horizontal)"
749
  msgstr ""
750
 
 
751
  msgid ""
752
  "If you see this message then your browser may not display the WPGlobus "
753
  "Settings panel properly. Please try another browser."
754
  msgstr ""
755
 
 
 
756
  msgid "Сompatibility"
757
  msgstr ""
758
 
759
  #. translators: placeholders for "strong" tags.
 
760
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
761
  msgstr ""
762
 
763
  #. translators: placeholders for "strong" tags.
 
764
  msgid ""
765
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
766
  "the language attributes: name, code, flag icon, etc."
767
  msgstr ""
768
 
 
769
  msgid "Important notes"
770
  msgstr "Notas importantes"
771
 
772
  #. translators: placeholders for "strong" tags.
 
773
  msgid "Version %1$s1.9.17%2$s "
774
  msgstr ""
775
 
776
  #. translators: placeholders for "strong" tags.
 
777
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
778
  msgstr ""
779
 
780
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
781
  msgid ""
782
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
783
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
784
  msgstr ""
785
 
786
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
787
  msgid ""
788
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
789
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
790
  msgstr ""
791
 
792
  #. translators: placeholders for "strong" tags.
 
793
  msgid "Version %1$s2.2.11%2$s "
794
  msgstr ""
795
 
 
796
  msgid "Starting from this version"
797
  msgstr ""
798
 
799
  #. translators: placeholders for "strong" tags.
 
800
  msgid ""
801
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
802
  "(CPT)."
803
  msgstr ""
804
 
805
  #. translators: placeholders for "strong" tags.
 
806
  msgid ""
807
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
808
  "the %1$s[%3$s]%2$s tab."
809
  msgstr ""
810
 
 
811
  msgid "Welcome!"
812
  msgstr "Bienvenido!"
813
 
 
814
  msgid "Deactivating / Uninstalling"
815
  msgstr ""
816
 
 
817
  msgid "Uninstall"
818
  msgstr ""
819
 
 
820
  msgid "All add-ons"
821
  msgstr ""
822
 
 
823
  msgid "Mobile Menu"
824
  msgstr ""
825
 
 
826
  msgid "Language Widgets"
827
  msgstr ""
828
 
 
829
  msgid "We Recommend..."
830
  msgstr ""
831
 
 
832
  msgid ""
833
  "Our premium add-on, WPGlobus Plus, will add several features to your "
834
  "website, such as:"
835
  msgstr ""
836
 
 
837
  msgid ""
838
  "- Ability to write a post in one language and immediately publish it, not "
839
  "waiting for the translation to other languages;"
840
  msgstr ""
841
 
 
842
  msgid "- Set different URLs for each translation;"
843
  msgstr ""
844
 
 
845
  msgid ""
846
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
847
  "for each translation;"
848
  msgstr ""
849
 
 
850
  msgid "- and more..."
851
  msgstr ""
852
 
 
 
 
853
  msgid "Click here to download"
854
  msgstr ""
855
 
 
856
  msgid ""
857
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
858
  "translate your blog posts and pages to many languages."
859
  msgstr ""
860
 
 
861
  msgid "The next step is to translate your WooCommerce-based store!"
862
  msgstr ""
863
 
 
864
  msgid ""
865
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
866
  "translate product titles and descriptions, categories, tags and attributes."
867
  msgstr ""
868
 
 
869
  msgid "Multi-currency"
870
  msgstr ""
871
 
 
872
  msgid ""
873
  "Your WooCommerce-powered store is set to show prices and accept payments in "
874
  "a single currency only."
875
  msgstr ""
876
 
 
877
  msgid ""
878
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
879
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
881
  "positioning for global growth!"
882
  msgstr ""
883
 
 
884
  msgid ""
885
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
886
  "re-calculating prices on-the-fly."
887
  msgstr ""
888
 
 
889
  msgid "WPGlobus Premium Add-ons"
890
  msgstr ""
891
 
 
892
  msgid ""
893
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
894
  "you will be able to:"
895
  msgstr ""
896
 
 
897
  msgid ""
898
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
899
  "моя-страница and so on);"
900
  msgstr ""
901
 
 
902
  msgid ""
903
  "Postpone translation to some languages and <strong>publish only the "
904
  "translated texts</strong>;"
905
  msgstr ""
906
 
 
907
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
908
  msgstr ""
909
 
 
910
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
911
  msgstr ""
912
 
 
913
  msgid ""
914
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
915
  "strong>;"
916
  msgstr ""
917
 
 
918
  msgid "...and more."
919
  msgstr ""
920
 
 
921
  msgid "Click here to visit the WPGlobus Store"
922
  msgstr ""
923
 
 
924
  msgid "Select a language"
925
  msgstr "Seleccionar un idioma"
926
 
927
  #. translators: %3$s placeholder for the icon (actual picture).
 
928
  msgid ""
929
  "Place the %1$smain language%2$s of your site at the top of the list by "
930
  "dragging the %3$s icons."
931
  msgstr ""
932
 
933
  #. translators: placeholders for the "strong" HTML tags.
 
934
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
935
  msgstr ""
936
 
937
  #. translators: placeholders for the "strong" HTML tags.
 
938
  msgid "%1$sAdd%2$s more languages using the section below."
939
  msgstr ""
940
 
 
941
  msgid "When done, click the [Save Changes] button."
942
  msgstr "Cuando hayas terminado, haz clic en el botón [Guardar Cambios] ."
943
 
944
  #. translators: %s - placeholder for the "Save Changes" button text.
 
945
  msgid "Press the %s button to confirm."
946
  msgstr ""
947
 
948
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
 
949
  msgid "-- none --"
950
  msgstr ""
951
 
 
952
  msgid "All menus"
953
  msgstr ""
954
 
 
955
  msgid "Instructions:"
956
  msgstr "Instrucciones:"
957
 
 
958
  msgid "(Found in some themes)"
959
  msgstr "(Encontrado en algunos temas)"
960
 
 
961
  msgid "Enable"
962
  msgstr "Habilitar"
963
 
 
964
  msgid "Languages table"
965
  msgstr "Tabla de idiomas"
966
 
 
967
  msgid "Use this table to add, edit or delete languages."
968
  msgstr "Utiliza esta tabla para agregar, editar o eliminar idiomas."
969
 
 
970
  msgid "NOTE: you cannot remove the main language."
971
  msgstr "Nota: No se puede eliminar el idioma principal."
972
 
 
973
  msgid "WPGlobus is enabled on these Post Types"
974
  msgstr ""
975
 
 
976
  msgid "Uncheck to disable"
977
  msgstr ""
978
 
 
979
  msgid ""
980
  "Please note that there are post types, which status is managed by other "
981
  "plugins and cannot be changed here."
982
  msgstr ""
983
 
 
984
  msgid "Post Types"
985
  msgstr ""
986
 
 
987
  msgid ""
988
  "You should put here only the code provided by WPGlobus Support. Do not write "
989
  "anything else in the sections below as it might break the functionality of "
990
  "your website!"
991
  msgstr ""
992
 
 
993
  msgid "Custom Code"
994
  msgstr ""
995
 
 
 
 
996
  msgid "Enabled"
997
  msgstr "Habilitar"
998
 
 
999
  msgid "Builders support"
1000
  msgstr ""
1001
 
 
1002
  msgid "Builder mode is enabled on these Post Types"
1003
  msgstr ""
1004
 
 
1005
  msgid "Old fashioned language switcher"
1006
  msgstr ""
1007
 
 
1008
  msgid "Block Editor"
1009
  msgstr ""
1010
 
 
1011
  msgid "Block Editor Options"
1012
  msgstr ""
1013
 
 
1014
  msgid ""
1015
  "With the current settings, you will see the following lines in the section "
1016
  "HEAD of your site pages"
1017
  msgstr ""
1018
 
 
1019
  msgid "(example for two languages)"
1020
  msgstr ""
1021
 
 
1022
  msgid ""
1023
  "Tell search engines about localized versions of your pages using the "
1024
  "hreflang tag"
1025
  msgstr ""
1026
 
 
1027
  msgid "Output the hreflang tag as"
1028
  msgstr ""
1029
 
 
1030
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1031
  msgstr ""
1032
 
 
1033
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1034
  msgstr ""
1035
 
 
1036
  msgid "Language code only (en, ru, etc.)"
1037
  msgstr ""
1038
 
 
1039
  msgid "Use the code `x-default` for the main language"
1040
  msgstr ""
1041
 
 
1042
  msgid "Multilingual SEO"
1043
  msgstr ""
1044
 
 
1045
  msgid "Multilingual SEO Options"
1046
  msgstr ""
1047
 
 
1048
  msgid ""
1049
  "With WPGlobus, you can get translations for posts and pages using REST API."
1050
  msgstr ""
1051
 
 
 
 
 
1052
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1053
  msgstr ""
1054
 
 
1055
  msgid ""
1056
  "For demonstration, you can try the first post that WordPress creates at the "
1057
  "initial installation."
1058
  msgstr ""
1059
 
 
1060
  msgid ""
1061
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1062
  "information."
1063
  msgstr ""
1064
 
 
1065
  msgid ""
1066
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1067
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1068
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1069
  msgstr ""
1070
 
 
1071
  msgid "Description:"
1072
  msgstr ""
1073
 
 
 
1074
  msgid "REST API"
1075
  msgstr ""
1076
 
 
1077
  msgid "Translate strings"
1078
  msgstr ""
1079
 
 
1080
  msgid "item"
1081
  msgstr "Artículo"
1082
 
 
1083
  msgid "items"
1084
  msgstr "Artículos"
1085
 
 
1086
  msgid "Code"
1087
  msgstr "Código"
1088
 
 
1089
  msgid "Edit"
1090
  msgstr "Editar"
1091
 
 
1092
  msgid "Delete"
1093
  msgstr "Borrar"
1094
 
 
1095
  msgid "File"
1096
  msgstr "Archivo"
1097
 
 
1098
  msgid "Flag"
1099
  msgstr "Bandera"
1100
 
 
1101
  msgid "Language name"
1102
  msgstr "Nombre del idioma"
1103
 
 
1104
  msgid "English language name"
1105
  msgstr "Nombre del idioma en Inglés"
1106
 
 
1107
  msgid "No items found"
1108
  msgstr "No se han encntrado artículos"
1109
 
 
1110
  msgid "Add new Language"
1111
  msgstr "Añadir nuevo idioma"
1112
 
 
1113
  msgid "No items of this type were found."
1114
  msgstr ""
1115
 
 
1116
  msgid "Select an item"
1117
  msgstr ""
1118
 
 
1119
  msgid "Multilingual support of this add-on is currently in Beta stage."
1120
  msgstr ""
1121
 
 
1122
  msgid "We do not recommend using it on production sites."
1123
  msgstr ""
1124
 
 
1125
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1126
  msgstr ""
1127
 
 
1128
  msgid "WordPress version"
1129
  msgstr ""
1130
 
 
1131
  msgid "In the WordPress core"
1132
  msgstr ""
1133
 
 
1134
  msgid "Core"
1135
  msgstr ""
1136
 
 
 
1137
  msgid "Current version"
1138
  msgstr ""
1139
 
 
 
1140
  msgid "Stage"
1141
  msgstr ""
1142
 
 
 
1143
  msgid "Status"
1144
  msgstr "Estado"
1145
 
 
1146
  msgid "Block editor"
1147
  msgstr ""
1148
 
 
1149
  msgid "production"
1150
  msgstr ""
1151
 
 
1152
  msgid "List of supported add-ons"
1153
  msgstr ""
1154
 
 
1155
  msgid "Add-on"
1156
  msgstr ""
1157
 
 
1158
  msgid "Supported minimum version"
1159
  msgstr ""
1160
 
 
1161
  msgid "Not installed"
1162
  msgstr ""
1163
 
 
1164
  msgid "Installed, inactive"
1165
  msgstr ""
1166
 
 
1167
  msgid "Active"
1168
  msgstr "Activo"
1169
 
 
1170
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1171
  msgstr ""
1172
 
 
1173
  msgid "However, some themes do not follow all WordPress standards strictly."
1174
  msgstr ""
1175
 
 
1176
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1177
  msgstr ""
1178
 
 
1179
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1180
  msgstr ""
1181
 
 
1182
  msgid ""
1183
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1184
  "With those themes, WPGlobus Customizer is switched off by default"
1185
  msgstr ""
1186
 
 
1187
  msgid "The currently active theme is"
1188
  msgstr ""
1189
 
 
1190
  msgid "In the current version, WPGlobus Customizer does not support"
1191
  msgstr ""
1192
 
 
1193
  msgid "translation of the navigation menus"
1194
  msgstr ""
1195
 
 
1196
  msgid "to translate, please go to"
1197
  msgstr ""
1198
 
 
1199
  msgid "Go to Customizer"
1200
  msgstr ""
1201
 
 
1202
  msgid "is undefined"
1203
  msgstr ""
1204
 
 
1205
  msgid "is set to"
1206
  msgstr ""
1207
 
 
1208
  msgid "by adding to the file wp-config.php"
1209
  msgstr ""
1210
 
 
1211
  msgid "now"
1212
  msgstr ""
1213
 
 
1214
  msgid "We rely on your support!"
1215
  msgstr ""
1216
 
 
1217
  msgid "Please consider a small donation to support the future development."
1218
  msgstr ""
1219
 
 
1220
  msgid "Thank you!"
1221
  msgstr "Gracias!"
1222
 
 
1223
  msgid "WPGlobus Plus!"
1224
  msgstr "WPGlobus Plus!"
1225
 
 
1226
  msgid ""
1227
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1228
  "separate publishing and more! "
1229
  msgstr ""
1230
 
 
1231
  msgid "Get WPGlobus Plus now!"
1232
  msgstr ""
1233
 
 
1234
  msgid ""
1235
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1236
  "the current version."
1237
  msgstr ""
1238
 
 
1239
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1240
  msgstr ""
1241
 
 
1242
  msgid "WPGlobus warning: "
1243
  msgstr ""
1244
 
 
1245
  msgid "https://github.com/WPGlobus/WPGlobus"
1246
  msgstr ""
1247
 
 
1248
  msgid ""
1249
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1250
  "widgets and even custom fields - in multiple languages!"
1252
  "WordPress Globalization / Plugin multilenguaje. Mensajes, páginas, menús, "
1253
  "widgets e incluso campos personalizados - en varios idiomas !"
1254
 
 
1255
  msgid "https://wpglobus.com/"
1256
  msgstr ""
languages/wpglobus-es_CO.po CHANGED
@@ -16,44 +16,25 @@ msgstr ""
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
- #: includes/admin/central/class-wpglobus-admin-central.php:122,
20
- #: includes/admin/class-wpglobus-about.php:42,
21
- #: includes/admin/class-wpglobus-about.php:117,
22
- #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr "Guía"
26
 
27
- #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
32
- #: includes/admin/central/class-wpglobus-admin-central.php:157,
33
- #: includes/admin/class-wpglobus-about.php:36,
34
- #: includes/admin/class-wpglobus-admin-menu.php:22,
35
- #: includes/admin/class-wpglobus-clean.php:606,
36
- #: includes/admin/class-wpglobus-customize-options.php:1293,
37
- #: includes/admin/class-wpglobus-customize-options.php:1261,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr "Complementos"
41
 
42
- #: includes/admin/class-wpglobus-about.php:26
43
  msgid "Quick Start"
44
  msgstr "Inicio Rápido"
45
 
46
- #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
51
- #: includes/admin/class-wpglobus-about.php:59
52
  msgid ""
53
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
54
  msgstr ""
55
 
56
- #: includes/admin/class-wpglobus-about.php:60
57
  msgid ""
58
  "The mbstring extension is required for the full UTF-8 compatibility and "
59
  "better performance. Without it, some parts of WordPress and WPGlobus may "
@@ -61,19 +42,15 @@ msgid ""
61
  "administrator."
62
  msgstr ""
63
 
64
- #: includes/admin/class-wpglobus-about.php:87
65
  msgid "Go to WPGlobus Settings"
66
  msgstr "Ir a Ajustes WPGlobus"
67
 
68
- #: includes/admin/class-wpglobus-about.php:98
69
  msgid "Easy as 1-2-3:"
70
  msgstr "Fácil en 1-2-3:"
71
 
72
- #: includes/admin/class-wpglobus-about.php:101
73
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
74
  msgstr "Ve al menú de administración WPGlobus y elege los países/idiomas;"
75
 
76
- #: includes/admin/class-wpglobus-about.php:102
77
  msgid ""
78
  "Enter the translations to the posts, pages, categories, tags and menus using "
79
  "a clean and simple interface."
@@ -81,7 +58,6 @@ msgstr ""
81
  "Introduce las traducciones a los mensajes, páginas, categorías,etiquetas y "
82
  "menús usando una interfaz limpia y simple."
83
 
84
- #: includes/admin/class-wpglobus-about.php:103
85
  msgid ""
86
  "Switch languages at the front-end using a drop-down menu with language names "
87
  "and country flags."
@@ -89,51 +65,41 @@ msgstr ""
89
  "Cambia de idioma en el front-end utilizando un menú desplegable con los "
90
  "nombres de las lenguas y banderas de los países ."
91
 
92
- #: includes/admin/class-wpglobus-about.php:111
93
  msgid "Links:"
94
  msgstr "Enlaces:"
95
 
96
- #: includes/admin/class-wpglobus-about.php:119
97
  msgid "FAQs"
98
  msgstr "Preguntas Frecuentes"
99
 
100
- #: includes/admin/class-wpglobus-about.php:121
101
  msgid "Contact Us"
102
  msgstr "Contáctanos"
103
 
104
- #: includes/admin/class-wpglobus-about.php:123
105
  msgid "Please give us 5 stars!"
106
  msgstr "Por favor danos 5 estrellas!"
107
 
108
- #: includes/admin/class-wpglobus-about.php:133
109
  msgid "WPGlobus does not translate texts automatically!"
110
  msgstr ""
111
 
112
- #: includes/admin/class-wpglobus-about.php:136
113
  msgid ""
114
  "There are many translation companies and individual translators who can help "
115
  "you write and proofread the texts."
116
  msgstr ""
117
 
118
- #: includes/admin/class-wpglobus-about.php:137
119
  msgid ""
120
  "When you choose a translator, please look at their native language, country "
121
  "of residence, specialization and knowledge of WordPress."
122
  msgstr ""
123
 
124
  #. translators: %s are used to insert HTML link. Keep them in place.
125
- #: includes/admin/class-wpglobus-about.php:143
126
  msgid ""
127
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
128
  "website. This is not an endorsement, just a courtesy. Please contact them "
129
  "directly and let us know how did it work for you!"
130
  msgstr ""
131
 
132
- #: includes/admin/class-wpglobus-about.php:154
133
  msgid "Important notes:"
134
  msgstr ""
135
 
136
- #: includes/admin/class-wpglobus-about.php:159
137
  msgid ""
138
  "WPGlobus only supports the localization URLs in the form of <code>example."
139
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
@@ -144,12 +110,10 @@ msgstr ""
144
  "subdominios <code>example.com</code> ni consultas lingüísticas <code>example."
145
  "com?lang=xx</code>."
146
 
147
- #: includes/admin/class-wpglobus-about.php:162
148
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
149
  msgstr ""
150
  "En algunos temas y plugins <strong>No está listo el multilenguaje</strong>."
151
 
152
- #: includes/admin/class-wpglobus-about.php:163
153
  msgid ""
154
  "They might display some texts with no translation, or with all languages "
155
  "mixed together."
@@ -158,7 +122,6 @@ msgstr ""
158
  "mezclados entre sí."
159
 
160
  #. translators: %s are used to insert HTML link. Keep them in place.
161
- #: includes/admin/class-wpglobus-about.php:167
162
  msgid ""
163
  "Please contact the theme / plugin author. If they are unable to assist, "
164
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
@@ -167,21 +130,15 @@ msgstr ""
167
  "ayudarte, considera % s la contratación del WPGlobus % s para escribir un "
168
  "código personalizado para tí."
169
 
170
- #: includes/admin/class-wpglobus-admin-bar-menu.php:124
171
  msgid "Language was set on your profile page"
172
  msgstr ""
173
 
174
- #: includes/admin/class-wpglobus-admin-bar-menu.php:194
175
  msgid "Add"
176
  msgstr "Añadir"
177
 
178
- #: includes/admin/class-wpglobus-admin-page.php:32,
179
- #: includes/admin/class-wpglobus-clean.php:585
180
  msgid "Multilingual Everything!"
181
  msgstr "Multilenguaje Total!"
182
 
183
- #: includes/admin/class-wpglobus-admin-page.php:34,
184
- #: includes/admin/class-wpglobus-clean.php:588
185
  msgid ""
186
  "WPGlobus is a family of WordPress plugins assisting you in making "
187
  "multilingual WordPress blogs and sites."
@@ -189,25 +146,20 @@ msgstr ""
189
  "WPGlobus es una familia de plugins de WordPress que ayudan en la traducción "
190
  "de blogs de WordPress."
191
 
192
- #: includes/admin/class-wpglobus-clean.php:232
193
  msgid "Remove the WPGlobus settings (not recommended)"
194
  msgstr ""
195
 
196
- #: includes/admin/class-wpglobus-clean.php:595
197
  msgid "Clean-up Tool"
198
  msgstr ""
199
 
200
- #: includes/admin/class-wpglobus-clean.php:609
201
  msgid "Support"
202
  msgstr "Soporte"
203
 
204
- #: includes/admin/class-wpglobus-clean.php:614
205
  msgid ""
206
  "WARNING: this operation is non-reversible. It is strongly recommended that "
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
- #: includes/admin/class-wpglobus-clean.php:619
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
@@ -217,7 +169,6 @@ msgid ""
217
  "so on."
218
  msgstr ""
219
 
220
- #: includes/admin/class-wpglobus-clean.php:622
221
  msgid ""
222
  "Make sure that your active theme does not have any code related to WPGlobus. "
223
  "Such code could be added by you or by a 3rd party developer. If that code "
@@ -226,42 +177,34 @@ msgid ""
226
  msgstr ""
227
 
228
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
229
- #: includes/admin/class-wpglobus-clean.php:630
230
  msgid ""
231
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
232
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
233
  msgstr ""
234
 
235
- #: includes/admin/class-wpglobus-clean.php:641
236
  msgid "You are about to clean the content of the following database tables:"
237
  msgstr ""
238
 
239
- #: includes/admin/class-wpglobus-clean.php:649
240
  msgid "The operations log"
241
  msgstr ""
242
 
243
- #: includes/admin/class-wpglobus-clean.php:652
244
  msgid ""
245
  "We are going to write a detailed log of all the database changes performed. "
246
  "It should help in the case you need to restore something important. The log "
247
  "will be written to the file:"
248
  msgstr ""
249
 
250
- #: includes/admin/class-wpglobus-clean.php:662
251
  msgid ""
252
  "Uncheck if you do not want to write the operations log (we recommend to keep "
253
  "it checked)"
254
  msgstr ""
255
 
256
- #: includes/admin/class-wpglobus-clean.php:667
257
  msgid "You have been warned..."
258
  msgstr ""
259
 
260
- #: includes/admin/class-wpglobus-clean.php:669
261
  msgid "Please confirm by checking the box below:"
262
  msgstr ""
263
 
264
- #: includes/admin/class-wpglobus-clean.php:671
265
  msgid ""
266
  "I have read and understood everything written on this page. I am aware that "
267
  "by using this tool I may loose some content of my website. I have made a "
@@ -269,153 +212,100 @@ msgid ""
269
  "responsible for the results."
270
  msgstr ""
271
 
272
- #: includes/admin/class-wpglobus-clean.php:674
273
  msgid "YES, I CONFIRM"
274
  msgstr ""
275
 
276
- #: includes/admin/class-wpglobus-clean.php:678
277
  msgid "Process with the Clean-up"
278
  msgstr ""
279
 
280
- #: includes/admin/class-wpglobus-customize-options.php:73,
281
- #: includes/admin/class-wpglobus-customize-options.php:100,
282
- #: includes/admin/class-wpglobus-customize-options.php:145,
283
- #: includes/admin/class-wpglobus-customize-options.php:183
284
  msgid "Default"
285
  msgstr "Predefinido"
286
 
287
- #: includes/admin/class-wpglobus-customize-options.php:264
288
  msgid "Section"
289
  msgstr ""
290
 
291
- #: includes/admin/class-wpglobus-customize-options.php:277
292
  msgid "Show all sections"
293
  msgstr ""
294
 
295
- #: includes/admin/class-wpglobus-customize-options.php:279
296
  msgid "Save &amp; Reload"
297
  msgstr ""
298
 
299
- #: includes/admin/class-wpglobus-customize-options.php:553,
300
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:585,
301
- #: includes/class-wpglobus.php:1284, wpglobus.php:12, wpglobus.php:18
302
  msgid "WPGlobus"
303
  msgstr ""
304
 
305
- #: includes/admin/class-wpglobus-customize-options.php:604
306
  msgid ""
307
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
308
  msgstr ""
309
 
310
- #: includes/admin/class-wpglobus-customize-options.php:610
311
  msgid "Fields Settings"
312
  msgstr ""
313
 
314
- #: includes/admin/class-wpglobus-customize-options.php:655
315
  msgid "WPGlobus Settings"
316
  msgstr ""
317
 
318
- #: includes/admin/class-wpglobus-customize-options.php:723
319
  msgid "Help"
320
  msgstr ""
321
 
322
- #: includes/admin/class-wpglobus-customize-options.php:745,
323
- #: includes/options/class-wpglobus-options.php:1176
324
  msgid "Languages"
325
  msgstr "Idiomas"
326
 
327
- #: includes/admin/class-wpglobus-customize-options.php:765,
328
- #: includes/options/class-wpglobus-options.php:1189
329
  msgid "Enabled Languages"
330
  msgstr "Idiomas Habilitados"
331
 
332
- #: includes/admin/class-wpglobus-customize-options.php:767,
333
- #: includes/options/class-wpglobus-options.php:1190
334
  msgid "These languages are currently enabled on your site."
335
  msgstr "Estos idiomas están habilitados actualmente en su sitio."
336
 
337
- #: includes/admin/class-wpglobus-customize-options.php:795,
338
- #: includes/options/class-wpglobus-options.php:1148
339
  msgid "Choose a language you would like to enable."
340
  msgstr ""
341
 
342
- #: includes/admin/class-wpglobus-customize-options.php:797
343
  msgid "Press the [Save & Publish] button to confirm."
344
  msgstr ""
345
 
346
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
347
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
348
- #: includes/admin/class-wpglobus-customize-options.php:801,
349
- #: includes/options/class-wpglobus-options.php:1154
350
  msgid "or Add new Language %1$s here %2$s"
351
  msgstr ""
352
 
353
- #: includes/admin/class-wpglobus-customize-options.php:813,
354
- #: includes/options/class-wpglobus-options.php:1203
355
  msgid "Add Languages"
356
  msgstr "Añadir idioma"
357
 
358
- #: includes/admin/class-wpglobus-customize-options.php:833,
359
- #: includes/options/class-wpglobus-options.php:1211
360
  msgid "Language Selector Mode"
361
  msgstr "Modo Selector de Idioma"
362
 
363
- #: includes/admin/class-wpglobus-customize-options.php:838,
364
- #: includes/options/class-wpglobus-options.php:1214
365
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
366
  msgstr "Código de la bandera en dos letras (es, en, ru, it, etc.)"
367
 
368
- #: includes/admin/class-wpglobus-customize-options.php:839,
369
- #: includes/options/class-wpglobus-options.php:1215
370
  msgid "Full Name (English, Russian, Italian, etc.)"
371
  msgstr "Nombre completo (Español, English, Russian, Italian, etc.)"
372
 
373
- #: includes/admin/class-wpglobus-customize-options.php:841,
374
- #: includes/options/class-wpglobus-options.php:1216
375
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
376
  msgstr "Nombre completo con bandera (Español, English, Russian, Italian, etc.)"
377
 
378
- #: includes/admin/class-wpglobus-customize-options.php:842,
379
- #: includes/options/class-wpglobus-options.php:1217
380
  msgid "Flags only"
381
  msgstr "Sólo banderas"
382
 
383
- #: includes/admin/class-wpglobus-customize-options.php:844,
384
- #: includes/options/class-wpglobus-options.php:1212
385
  msgid ""
386
  "Choose the way language name and country flag are shown in the drop-down menu"
387
  msgstr ""
388
  "Elige el nombre del idioma y bandera del país se muestran en el menú "
389
  "desplegable"
390
 
391
- #: includes/admin/class-wpglobus-customize-options.php:879
392
  msgid "select navigation menu"
393
  msgstr ""
394
 
395
- #: includes/admin/class-wpglobus-customize-options.php:915,
396
- #: includes/admin/class-wpglobus-customize-options.php:888,
397
- #: includes/options/class-wpglobus-options.php:1230
398
  msgid "Language Selector Menu"
399
  msgstr "Menú selector de idioma"
400
 
401
- #: includes/admin/class-wpglobus-customize-options.php:920,
402
- #: includes/admin/class-wpglobus-customize-options.php:899,
403
- #: includes/options/class-wpglobus-options.php:1231
404
  msgid "Choose the navigation menu where the language selector will be shown"
405
  msgstr ""
406
  "Selecciona el menú de navegación donde se mostrará el selector de idioma"
407
 
408
- #: includes/admin/class-wpglobus-customize-options.php:898
409
  msgid "No menus have been created yet. Create some."
410
  msgstr ""
411
 
412
- #: includes/admin/class-wpglobus-customize-options.php:940,
413
- #: includes/options/class-wpglobus-options.php:1241
414
  msgid "\"All Pages\" menus Language selector"
415
  msgstr "\"Todas las páginas\" Selector de menús Idioma"
416
 
417
- #: includes/admin/class-wpglobus-customize-options.php:943,
418
- #: includes/options/class-wpglobus-options.php:1243
419
  msgid ""
420
  "Adds language selector to the menus that automatically list all existing "
421
  "pages (using `wp_list_pages`)"
@@ -424,12 +314,9 @@ msgstr ""
424
  "automáticamente en todas las páginas existentes (utilizando ` "
425
  "wp_list_pages` )"
426
 
427
- #: includes/admin/class-wpglobus-customize-options.php:960,
428
- #: includes/options/class-wpglobus-options.php:1356
429
  msgid "Custom CSS"
430
  msgstr "Customizar CSS"
431
 
432
- #: includes/admin/class-wpglobus-customize-options.php:964
433
  msgid ""
434
  "Here you can enter the CSS rules to adjust the language selector menu for "
435
  "your theme. Look at the examples in the `style-samples.css` file."
@@ -437,99 +324,69 @@ msgstr ""
437
  "Aquí puedes introducir las reglas CSS para ajustar el menú de selección de "
438
  "idiomas para tu tema. Mira los ejemplos en el `style-samples.css` file."
439
 
440
- #: includes/admin/class-wpglobus-customize-options.php:983
441
  msgid "Post types"
442
  msgstr "Tipos de Post"
443
 
444
- #: includes/admin/class-wpglobus-customize-options.php:1091
445
  msgid "Uncheck to disable WPGlobus"
446
  msgstr "Desactiva la opción para desactivar WPGlobus"
447
 
448
- #: includes/admin/class-wpglobus-customize-options.php:1125,
449
- #: includes/options/class-wpglobus-options.php:1424
450
  msgid "Redirect"
451
  msgstr "Redirección"
452
 
453
- #: includes/admin/class-wpglobus-customize-options.php:1150,
454
- #: includes/options/class-wpglobus-options.php:1419
455
  msgid "Choose the language automatically, based on:"
456
  msgstr ""
457
 
458
- #: includes/admin/class-wpglobus-customize-options.php:1152,
459
- #: includes/options/class-wpglobus-options.php:1409
460
  msgid "Preferred language set in the browser"
461
  msgstr ""
462
 
463
- #: includes/admin/class-wpglobus-customize-options.php:1153,
464
- #: includes/options/class-wpglobus-options.php:1396
465
  msgid ""
466
  "When a user comes to the site for the first time, try to find the best "
467
  "matching language version of the page."
468
  msgstr ""
469
 
470
- #: includes/admin/class-wpglobus-customize-options.php:1214,
471
- #: includes/admin/class-wpglobus-customize-options.php:1234,
472
- #: includes/admin/class-wpglobus-customize-options.php:1192,
473
- #: includes/options/class-wpglobus-options.php:1368
474
  msgid "Custom JS Code"
475
  msgstr ""
476
 
477
- #: includes/admin/class-wpglobus-customize-options.php:1232,
478
- #: includes/admin/class-wpglobus-customize-options.php:1276
479
  msgid "Title"
480
  msgstr "Título"
481
 
482
- #: includes/admin/class-wpglobus-customize-options.php:1235
483
  msgid "(Paste your JS code here.)"
484
  msgstr ""
485
 
486
- #: includes/admin/class-wpglobus-customize-options.php:1184
487
  msgid ""
488
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
489
  "version 4.9 or later."
490
  msgstr ""
491
 
492
- #: includes/admin/class-wpglobus-customize-options.php:1186
493
  msgid "With your version of WordPress, please use the"
494
  msgstr ""
495
 
496
- #: includes/admin/class-wpglobus-customize-options.php:1188
497
  msgid "WPGlobus Settings page"
498
  msgstr ""
499
 
500
- #: includes/admin/class-wpglobus-customize-options.php:1277
501
  msgid "Label"
502
  msgstr ""
503
 
504
- #: includes/admin/class-wpglobus-customize-options.php:1281
505
  msgid "Description"
506
  msgstr "Decripción"
507
 
508
- #: includes/admin/class-wpglobus-customize-options.php:1345
509
  msgid ""
510
  "Here you can specify which fields should be considered multilingual by "
511
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
512
  msgstr ""
513
 
514
- #: includes/admin/class-wpglobus-customize-options.php:1351,
515
- #: includes/options/class-wpglobus-options.php:608
516
  msgid "Thank you for installing WPGlobus!"
517
  msgstr "Gracias por instalar WPGlobus!"
518
 
519
- #: includes/admin/class-wpglobus-customize-options.php:1355,
520
- #: includes/options/class-wpglobus-options.php:612
521
  msgid "Read About WPGlobus"
522
  msgstr "Leer sobre WPGlobus!"
523
 
524
- #: includes/admin/class-wpglobus-customize-options.php:1358
525
  msgid ""
526
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
527
  msgstr ""
528
  "Click en la <strong>[Idiomas]</strong> pestaña en la parte izquierda de "
529
  "configuración de las opciones."
530
 
531
- #: includes/admin/class-wpglobus-customize-options.php:1363,
532
- #: includes/options/class-wpglobus-options.php:648
533
  msgid ""
534
  "Should you have any questions or comments, please do not hesitate to contact "
535
  "us."
@@ -537,28 +394,19 @@ msgstr ""
537
  "Si tienes alguna pregunta o comentario, por favor no dudes en contactar con "
538
  "nosotros."
539
 
540
- #: includes/admin/class-wpglobus-customize-options.php:1367,
541
- #: includes/options/class-wpglobus-options.php:652
542
  msgid "Sincerely Yours,"
543
  msgstr "Sinceramente tuyo,"
544
 
545
- #: includes/admin/class-wpglobus-customize-options.php:1369,
546
- #: includes/options/class-wpglobus-options.php:654,
547
- #: includes/options/wpglobus-options-header.php:34
548
  msgid "The WPGlobus Team"
549
  msgstr "El Equipo WPGlobus"
550
 
551
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
552
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
553
- #: includes/admin/class-wpglobus-customize-options.php:1388,
554
- #: includes/options/class-wpglobus-options.php:689
555
  msgid ""
556
  "We would hate to see you go. If something goes wrong, do not uninstall "
557
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
558
  msgstr ""
559
 
560
- #: includes/admin/class-wpglobus-customize-options.php:1395,
561
- #: includes/options/class-wpglobus-options.php:696
562
  msgid ""
563
  "Please note that if you deactivate WPGlobus, your site will show all the "
564
  "languages together, mixed up. You will need to remove all translations, "
@@ -567,8 +415,6 @@ msgstr ""
567
 
568
  #. translators: %s: link to the Clean-up Tool
569
  #. translators: %s: link to the Clean-up Tool.
570
- #: includes/admin/class-wpglobus-customize-options.php:1400,
571
- #: includes/options/class-wpglobus-options.php:700
572
  msgid ""
573
  "If there are just a few places, you should edit them manually. To "
574
  "automatically remove all translations at once, you can use the %s. WARNING: "
@@ -578,410 +424,305 @@ msgstr ""
578
 
579
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
580
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
581
- #: includes/admin/class-wpglobus-customize-options.php:1403,
582
- #: includes/options/class-wpglobus-options.php:677
583
  msgid "%1$sClean-up Tool%2$s"
584
  msgstr ""
585
 
586
  #. translators: %s: name of current theme
587
- #: includes/admin/class-wpglobus-customize-options.php:1415
588
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
589
  msgstr ""
590
 
591
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
592
- #: includes/admin/class-wpglobus-customize-options.php:1421
593
  msgid "Please use %1$sWPGlobus options page%2$s instead."
594
  msgstr ""
595
 
596
- #: includes/admin/class-wpglobus-customize-options.php:1485
597
  msgid "Expand/Shrink"
598
  msgstr ""
599
 
600
- #: includes/admin/class-wpglobus-dashboard-news.php:43,
601
- #: includes/admin/class-wpglobus-dashboard-news.php:59
602
  msgid "WPGlobus News"
603
  msgstr ""
604
 
605
- #: includes/admin/class-wpglobus-language-edit.php:197,
606
- #: includes/admin/class-wpglobus-language-edit.php:192
607
  msgid "Options updated"
608
  msgstr "Opciones actualizadas"
609
 
610
- #: includes/admin/class-wpglobus-language-edit.php:272
611
  msgid "Please enter a language code!"
612
  msgstr "Por favor, introduce el código del idioma!"
613
 
614
- #: includes/admin/class-wpglobus-language-edit.php:276
615
  msgid "Language code already exists!"
616
  msgstr "Este código de idioma ya existe!"
617
 
618
- #: includes/admin/class-wpglobus-language-edit.php:280
619
  msgid "Please specify the language flag!"
620
  msgstr "Por favor, especifica la bandera del idioma !"
621
 
622
- #: includes/admin/class-wpglobus-language-edit.php:284
623
  msgid "Please enter the language name!"
624
  msgstr "Por favor introduce el nombre del idioma!"
625
 
626
- #: includes/admin/class-wpglobus-language-edit.php:288
627
  msgid "Please enter the language name in English!"
628
  msgstr "Por favor introduce el nombre del idioma en Inglés!"
629
 
630
- #: includes/admin/class-wpglobus-language-edit.php:292
631
  msgid "Please enter the locale!"
632
  msgstr "Por favor introduce la localización!"
633
 
634
- #: includes/admin/class-wpglobus-language-edit.php:354
635
  msgid "Add Language"
636
  msgstr "Añadir Idioma"
637
 
638
- #: includes/admin/class-wpglobus-language-edit.php:351,
639
- #: includes/admin/class-wpglobus-language-edit.php:462,
640
- #: includes/admin/class-wpglobus-language-edit.php:455
641
  msgid "Delete Language"
642
  msgstr "Eliminar Idioma"
643
 
644
- #: includes/admin/class-wpglobus-language-edit.php:349
645
  msgid "Edit Language"
646
  msgstr "Editar Idioma"
647
 
648
- #: includes/admin/class-wpglobus-language-edit.php:384
649
  msgid "Language Code"
650
  msgstr "Código del Idioma"
651
 
652
- #: includes/admin/class-wpglobus-language-edit.php:391
653
  msgid ""
654
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
655
  msgstr ""
656
  "2-Carta de códigos de idioma ISO para el idioma que deseas insertar. "
657
  "(Ejemplo : en)"
658
 
659
- #: includes/admin/class-wpglobus-language-edit.php:396
660
  msgid "Language flag"
661
  msgstr "Bandera del idioma"
662
 
663
- #: includes/admin/class-wpglobus-language-edit.php:412
664
  msgid "Name"
665
  msgstr "Nombre"
666
 
667
- #: includes/admin/class-wpglobus-language-edit.php:417
668
  msgid ""
669
  "The name of the language in its native alphabet. (Examples: English, Русский)"
670
  msgstr ""
671
  "El nombre de la lengua en su alfabeto nativo. (Ejemplos : Español, English, "
672
  "Русский )"
673
 
674
- #: includes/admin/class-wpglobus-language-edit.php:422
675
  msgid "Name in English"
676
  msgstr "Nombre en Inglés"
677
 
678
- #: includes/admin/class-wpglobus-language-edit.php:427
679
  msgid "The name of the language in English"
680
  msgstr "El nombre del idioma en Inglés"
681
 
682
- #: includes/admin/class-wpglobus-language-edit.php:432,
683
- #: includes/options/fields/table/class-wpglobus-languages-table.php:115
684
  msgid "Locale"
685
  msgstr "Local"
686
 
687
- #: includes/admin/class-wpglobus-language-edit.php:437
688
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
689
  msgstr ""
690
  "PHP / WordPress configuración regional de la lengua . (Ejemplos : en_US, "
691
  "es_ES, ru_RU)"
692
 
693
- #: includes/admin/class-wpglobus-language-edit.php:460
694
  msgid "Are you sure you want to delete?"
695
  msgstr "Estás seguro de que quieres borrarlo?"
696
 
697
- #: includes/admin/class-wpglobus-language-edit.php:447
698
  msgid "Save Changes"
699
  msgstr "Guardar Cambios"
700
 
701
- #: includes/admin/class-wpglobus-language-edit.php:470
702
  msgid "Back to the WPGlobus Settings"
703
  msgstr "Volver a Ajustes WPGlobus"
704
 
705
- #: includes/admin/class-wpglobus-plugin-install.php:308
706
  msgid "Current Version"
707
  msgstr "Versión Actual"
708
 
709
- #: includes/admin/class-wpglobus-plugin-install.php:309
710
  msgid "Get it now!"
711
  msgstr ""
712
 
713
- #: includes/admin/class-wpglobus-plugin-install.php:310
714
  msgid "Premium add-on"
715
  msgstr ""
716
 
717
- #: includes/admin/class-wpglobus-plugin-install.php:311,
718
- #: includes/options/fields/table/class-wpglobus-languages-table.php:472
719
  msgid "Installed"
720
  msgstr "Instalado"
721
 
722
  #. translators: placeholders are for the HTML tags.
723
- #: includes/admin/class-wpglobus-plugin-install.php:319
724
  msgid ""
725
  "If you have already purchased a WPGlobus premium extension, please read "
726
  "%1$sthe installation instructions here%2$s"
727
  msgstr ""
728
 
729
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
730
- #: includes/options/class-wpglobus-options.php:726
731
  msgid "Help Desk"
732
  msgstr ""
733
 
734
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:185
735
  msgid "Email not sent. Please fill in the entire form."
736
  msgstr ""
737
 
738
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:195
739
  msgid ""
740
  "Email not sent. Please verify that your name and email are entered correctly."
741
  msgstr ""
742
 
743
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:216
744
  msgid "Email sent."
745
  msgstr ""
746
 
747
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
748
  msgid "Thank you for using WPGlobus!"
749
  msgstr ""
750
 
751
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
752
  msgid "Our Support Team is here to answer your questions or concerns."
753
  msgstr ""
754
 
755
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
756
  msgid "To help us serve you better:"
757
  msgstr ""
758
 
759
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
760
  msgid ""
761
  "Please check if the problem persists if you switch to a standard WordPress "
762
  "theme."
763
  msgstr ""
764
 
765
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
766
  msgid ""
767
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
768
  msgstr ""
769
 
770
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
771
  msgid "Please fill in and submit the contact form:"
772
  msgstr ""
773
 
774
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
775
  msgid "Please make sure the email address is correct."
776
  msgstr ""
777
 
778
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
779
  msgid "Subject"
780
  msgstr ""
781
 
782
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
783
  msgid "Short description of the problem"
784
  msgstr ""
785
 
786
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
787
  msgid "Detailed description"
788
  msgstr ""
789
 
790
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
791
  msgid "Technical Information"
792
  msgstr ""
793
 
794
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
795
  msgid "This information helps us to find the problem source"
796
  msgstr ""
797
 
798
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:161
799
  msgid ""
800
  "Alternatively, please email %s. Do not forget to copy and paste the "
801
  "technical information to your email message."
802
  msgstr ""
803
 
804
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:89
805
  msgid "WPGlobus Recommends:"
806
  msgstr ""
807
 
808
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:98,
809
- #: includes/options/class-wpglobus-options.php:933
810
  msgid "WPGlobus for WooCommerce"
811
  msgstr ""
812
 
813
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:102
814
  msgid ""
815
  "Translate product titles and descriptions, product categories, tags and "
816
  "attributes."
817
  msgstr ""
818
 
819
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:107
820
  msgid "Get it now:"
821
  msgstr ""
822
 
823
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:117
824
  msgid "WooCommerce Multi-Currency"
825
  msgstr ""
826
 
827
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:121
828
  msgid "Accept multiple currencies in your online store!"
829
  msgstr ""
830
 
831
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:126,
832
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:185
833
  msgid "Check it out:"
834
  msgstr ""
835
 
836
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:195
837
  msgid "To translate permalinks, please activate the module Slug."
838
  msgstr ""
839
 
840
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:183
841
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
842
  msgstr ""
843
 
844
- #: includes/builders/class-wpglobus-builder.php:278,
845
- #: includes/class-wpglobus.php:3577
846
  msgid "Save draft before using extra language."
847
  msgstr ""
848
 
849
- #: includes/builders/class-wpglobus-builder.php:371
850
  msgid "Builder"
851
  msgstr ""
852
 
853
- #: includes/builders/class-wpglobus-builder.php:395
854
  msgid "Сompatibility Settings"
855
  msgstr ""
856
 
857
  #. translators: ON/OFF status of WPGlobus on the edit pages.
858
  #. translators: ON/OFF status of WPGlobus on the edit pages.
859
- #: includes/builders/elementor/class-wpglobus-elementor.php:255,
860
- #: includes/class-wpglobus.php:1263
861
  msgid "ON"
862
  msgstr ""
863
 
864
- #: includes/builders/elementor/class-wpglobus-elementor.php:256,
865
- #: includes/class-wpglobus.php:1264
866
  msgid "Turn off"
867
  msgstr ""
868
 
869
- #: includes/builders/elementor/class-wpglobus-elementor.php:250,
870
- #: includes/class-wpglobus.php:1258
871
  msgid "OFF"
872
  msgstr ""
873
 
874
- #: includes/builders/elementor/class-wpglobus-elementor.php:251,
875
- #: includes/class-wpglobus.php:1259
876
  msgid "Turn on"
877
  msgstr ""
878
 
879
- #: includes/builders/elementor/class-wpglobus-elementor.php:281
880
  msgid "Elementor"
881
  msgstr ""
882
 
883
- #: includes/builders/elementor/class-wpglobus-elementor.php:508
884
  msgid "WPGlobus languages"
885
  msgstr ""
886
 
887
- #: includes/builders/elementor/class-wpglobus-elementor.php:514
888
  msgid "current"
889
  msgstr ""
890
 
891
- #: includes/builders/elementor/class-wpglobus-elementor.php:675
892
  msgid ""
893
  "WPGlobus provides multilingual support for Elementor only when the option "
894
  "%1$s%2$s%3$s is set to %4$s."
895
  msgstr ""
896
 
897
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:228
898
  msgid "Before switching the language, please save draft or publish."
899
  msgstr ""
900
 
901
  #. translators: Metabox title FOR language.
902
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:318
903
  msgctxt "filter__seo_meta_box_title"
904
  msgid "for"
905
  msgstr ""
906
 
907
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:392
908
  msgid "Page is being reloaded. Please wait..."
909
  msgstr ""
910
 
911
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:393
912
  msgid ""
913
  "Before switching the language, please save draft or publish, then reload "
914
  "page."
915
  msgstr ""
916
 
917
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
918
  msgid ""
919
  "WPGlobus provides multilingual support for Elementor only when the option "
920
  "`CSS Print Method` is set to `External File`."
921
  msgstr ""
922
 
923
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
924
  msgid "Open Elementor Settings page"
925
  msgstr ""
926
 
927
- #: includes/class-wpglobus-widget.php:27
928
  msgid "WPGlobus widget"
929
  msgstr "WPGlobus widget"
930
 
931
- #: includes/class-wpglobus-widget.php:29
932
  msgid "Add language switcher"
933
  msgstr "Añadir selector de idiomas"
934
 
935
- #: includes/class-wpglobus-widget.php:32
936
  msgid "Flags"
937
  msgstr "Banderas"
938
 
939
- #: includes/class-wpglobus-widget.php:33
940
  msgid "List"
941
  msgstr "Lista"
942
 
943
- #: includes/class-wpglobus-widget.php:34
944
  msgid "List with flags"
945
  msgstr "Lista con Banderas"
946
 
947
- #: includes/class-wpglobus-widget.php:35
948
  msgid "Select"
949
  msgstr "Seleccionar"
950
 
951
- #: includes/class-wpglobus-widget.php:36
952
  msgid "Select with language code"
953
  msgstr "Seleccionar con el código de idioma"
954
 
955
- #: includes/class-wpglobus-widget.php:37
956
  msgid "Dropdown"
957
  msgstr "Desplegable"
958
 
959
- #: includes/class-wpglobus-widget.php:38
960
  msgid "Dropdown with flags"
961
  msgstr "Desplegable con banderas"
962
 
963
- #: includes/class-wpglobus-widget.php:264
964
  msgid "Selector type"
965
  msgstr "Tipo de selector"
966
 
967
- #: includes/class-wpglobus.php:1447
968
  msgid "You cannot disable the main language."
969
  msgstr "No se puede desactivar el idioma principal."
970
 
971
- #: includes/class-wpglobus.php:1672
972
  msgid "Need a multilingual slug?"
973
  msgstr ""
974
 
975
- #: includes/class-wpglobus.php:1655
976
  msgid "*) Available after the menu is saved."
977
  msgstr "No Se Puede Desactivar el director idioma."
978
 
979
- #: includes/class-wpglobus.php:4025
980
  msgid "You must enable Pretty Permalinks to use WPGlobus."
981
  msgstr ""
982
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
983
 
984
- #: includes/class-wpglobus.php:4027
985
  msgid ""
986
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
987
  "default option."
@@ -989,193 +730,150 @@ msgstr ""
989
  "Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
990
  "selecciona una opción no predeterminada ."
991
 
992
- #: includes/options/class-wpglobus-options.php:281
993
  msgid "Language Selector Menu Style"
994
  msgstr ""
995
 
996
- #: includes/options/class-wpglobus-options.php:282,
997
- #: includes/options/class-wpglobus-options.php:802,
998
- #: includes/options/class-wpglobus-options.php:871
999
  msgid "WPGlobus Plus"
1000
  msgstr ""
1001
 
1002
- #: includes/options/class-wpglobus-options.php:283
1003
  msgid "Drop-down languages menu or Flat (in one line)"
1004
  msgstr ""
1005
 
1006
- #: includes/options/class-wpglobus-options.php:286
1007
  msgid "Do not change"
1008
  msgstr ""
1009
 
1010
- #: includes/options/class-wpglobus-options.php:287
1011
  msgid "Drop-down (vertical)"
1012
  msgstr ""
1013
 
1014
- #: includes/options/class-wpglobus-options.php:288
1015
  msgid "Flat (horizontal)"
1016
  msgstr ""
1017
 
1018
- #: includes/options/class-wpglobus-options.php:343
1019
  msgid ""
1020
  "If you see this message then your browser may not display the WPGlobus "
1021
  "Settings panel properly. Please try another browser."
1022
  msgstr ""
1023
 
1024
- #: includes/options/class-wpglobus-options.php:599,
1025
- #: includes/options/class-wpglobus-options.php:1577
1026
  msgid "Сompatibility"
1027
  msgstr ""
1028
 
1029
  #. translators: placeholders for "strong" tags.
1030
- #: includes/options/class-wpglobus-options.php:616
1031
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
1032
  msgstr ""
1033
 
1034
  #. translators: placeholders for "strong" tags.
1035
- #: includes/options/class-wpglobus-options.php:619
1036
  msgid ""
1037
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
1038
  "the language attributes: name, code, flag icon, etc."
1039
  msgstr ""
1040
 
1041
- #: includes/options/class-wpglobus-options.php:622
1042
  msgid "Important notes"
1043
  msgstr ""
1044
 
1045
  #. translators: placeholders for "strong" tags.
1046
- #: includes/options/class-wpglobus-options.php:624
1047
  msgid "Version %1$s1.9.17%2$s "
1048
  msgstr ""
1049
 
1050
  #. translators: placeholders for "strong" tags.
1051
- #: includes/options/class-wpglobus-options.php:627
1052
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
1053
  msgstr ""
1054
 
1055
  #. translators: placeholders for "strong" tags; compatibility tab link.
1056
- #: includes/options/class-wpglobus-options.php:630
1057
  msgid ""
1058
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
1059
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
1060
  msgstr ""
1061
 
1062
  #. translators: placeholders for "strong" tags; compatibility tab link.
1063
- #: includes/options/class-wpglobus-options.php:633
1064
  msgid ""
1065
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
1066
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
1067
  msgstr ""
1068
 
1069
  #. translators: placeholders for "strong" tags.
1070
- #: includes/options/class-wpglobus-options.php:637
1071
  msgid "Version %1$s2.2.11%2$s "
1072
  msgstr ""
1073
 
1074
- #: includes/options/class-wpglobus-options.php:639
1075
  msgid "Starting from this version"
1076
  msgstr ""
1077
 
1078
  #. translators: placeholders for "strong" tags.
1079
- #: includes/options/class-wpglobus-options.php:642
1080
  msgid ""
1081
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
1082
  "(CPT)."
1083
  msgstr ""
1084
 
1085
  #. translators: placeholders for "strong" tags.
1086
- #: includes/options/class-wpglobus-options.php:645
1087
  msgid ""
1088
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
1089
  "the %1$s[%3$s]%2$s tab."
1090
  msgstr ""
1091
 
1092
- #: includes/options/class-wpglobus-options.php:662
1093
  msgid "Welcome!"
1094
  msgstr "Bienvenido!"
1095
 
1096
- #: includes/options/class-wpglobus-options.php:685
1097
  msgid "Deactivating / Uninstalling"
1098
  msgstr ""
1099
 
1100
- #: includes/options/class-wpglobus-options.php:711
1101
  msgid "Uninstall"
1102
  msgstr ""
1103
 
1104
- #: includes/options/class-wpglobus-options.php:741
1105
  msgid "All add-ons"
1106
  msgstr ""
1107
 
1108
- #: includes/options/class-wpglobus-options.php:756
1109
  msgid "Mobile Menu"
1110
  msgstr ""
1111
 
1112
- #: includes/options/class-wpglobus-options.php:771
1113
  msgid "Language Widgets"
1114
  msgstr ""
1115
 
1116
- #: includes/options/class-wpglobus-options.php:841
1117
  msgid "We Recommend..."
1118
  msgstr ""
1119
 
1120
- #: includes/options/class-wpglobus-options.php:873
1121
  msgid ""
1122
  "Our premium add-on, WPGlobus Plus, will add several features to your "
1123
  "website, such as:"
1124
  msgstr ""
1125
 
1126
- #: includes/options/class-wpglobus-options.php:876
1127
  msgid ""
1128
  "- Ability to write a post in one language and immediately publish it, not "
1129
  "waiting for the translation to other languages;"
1130
  msgstr ""
1131
 
1132
- #: includes/options/class-wpglobus-options.php:879
1133
  msgid "- Set different URLs for each translation;"
1134
  msgstr ""
1135
 
1136
- #: includes/options/class-wpglobus-options.php:882
1137
  msgid ""
1138
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
1139
  "for each translation;"
1140
  msgstr ""
1141
 
1142
- #: includes/options/class-wpglobus-options.php:885
1143
  msgid "- and more..."
1144
  msgstr ""
1145
 
1146
- #: includes/options/class-wpglobus-options.php:888,
1147
- #: includes/options/class-wpglobus-options.php:945,
1148
- #: includes/options/class-wpglobus-options.php:1003
1149
  msgid "Click here to download"
1150
  msgstr ""
1151
 
1152
- #: includes/options/class-wpglobus-options.php:936
1153
  msgid ""
1154
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
1155
  "translate your blog posts and pages to many languages."
1156
  msgstr ""
1157
 
1158
- #: includes/options/class-wpglobus-options.php:939
1159
  msgid "The next step is to translate your WooCommerce-based store!"
1160
  msgstr ""
1161
 
1162
- #: includes/options/class-wpglobus-options.php:942
1163
  msgid ""
1164
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
1165
  "translate product titles and descriptions, categories, tags and attributes."
1166
  msgstr ""
1167
 
1168
- #: includes/options/class-wpglobus-options.php:989
1169
  msgid "Multi-currency"
1170
  msgstr ""
1171
 
1172
- #: includes/options/class-wpglobus-options.php:992
1173
  msgid ""
1174
  "Your WooCommerce-powered store is set to show prices and accept payments in "
1175
  "a single currency only."
1176
  msgstr ""
1177
 
1178
- #: includes/options/class-wpglobus-options.php:996
1179
  msgid ""
1180
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
1181
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
@@ -1183,488 +881,370 @@ msgid ""
1183
  "positioning for global growth!"
1184
  msgstr ""
1185
 
1186
- #: includes/options/class-wpglobus-options.php:1000
1187
  msgid ""
1188
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
1189
  "re-calculating prices on-the-fly."
1190
  msgstr ""
1191
 
1192
- #: includes/options/class-wpglobus-options.php:1037
1193
  msgid "WPGlobus Premium Add-ons"
1194
  msgstr ""
1195
 
1196
- #: includes/options/class-wpglobus-options.php:1039
1197
  msgid ""
1198
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
1199
  "you will be able to:"
1200
  msgstr ""
1201
 
1202
- #: includes/options/class-wpglobus-options.php:1044
1203
  msgid ""
1204
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
1205
  "моя-страница and so on);"
1206
  msgstr ""
1207
 
1208
- #: includes/options/class-wpglobus-options.php:1047
1209
  msgid ""
1210
  "Postpone translation to some languages and <strong>publish only the "
1211
  "translated texts</strong>;"
1212
  msgstr ""
1213
 
1214
- #: includes/options/class-wpglobus-options.php:1050
1215
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
1216
  msgstr ""
1217
 
1218
- #: includes/options/class-wpglobus-options.php:1053
1219
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
1220
  msgstr ""
1221
 
1222
- #: includes/options/class-wpglobus-options.php:1056
1223
  msgid ""
1224
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
1225
  "strong>;"
1226
  msgstr ""
1227
 
1228
- #: includes/options/class-wpglobus-options.php:1060
1229
  msgid "...and more."
1230
  msgstr ""
1231
 
1232
- #: includes/options/class-wpglobus-options.php:1063
1233
  msgid "Click here to visit the WPGlobus Store"
1234
  msgstr ""
1235
 
1236
- #: includes/options/class-wpglobus-options.php:1104
1237
  msgid "Select a language"
1238
  msgstr "Seleccionar un idioma"
1239
 
1240
  #. translators: %3$s placeholder for the icon (actual picture).
1241
- #: includes/options/class-wpglobus-options.php:1133
1242
  msgid ""
1243
  "Place the %1$smain language%2$s of your site at the top of the list by "
1244
  "dragging the %3$s icons."
1245
  msgstr ""
1246
 
1247
  #. translators: placeholders for the "strong" HTML tags.
1248
- #: includes/options/class-wpglobus-options.php:1136
1249
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
1250
  msgstr ""
1251
 
1252
  #. translators: placeholders for the "strong" HTML tags.
1253
- #: includes/options/class-wpglobus-options.php:1139
1254
  msgid "%1$sAdd%2$s more languages using the section below."
1255
  msgstr ""
1256
 
1257
- #: includes/options/class-wpglobus-options.php:1140
1258
  msgid "When done, click the [Save Changes] button."
1259
  msgstr "Cuando hayas terminado, haz clic en el botón [Guardar Cambios] ."
1260
 
1261
  #. translators: %s - placeholder for the "Save Changes" button text.
1262
- #: includes/options/class-wpglobus-options.php:1151
1263
  msgid "Press the %s button to confirm."
1264
  msgstr ""
1265
 
1266
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
1267
- #: includes/options/class-wpglobus-options.php:1168
1268
  msgid "-- none --"
1269
  msgstr ""
1270
 
1271
- #: includes/options/class-wpglobus-options.php:1169
1272
  msgid "All menus"
1273
  msgstr ""
1274
 
1275
- #: includes/options/class-wpglobus-options.php:1182
1276
  msgid "Instructions:"
1277
  msgstr "Instrucciones:"
1278
 
1279
- #: includes/options/class-wpglobus-options.php:1242
1280
  msgid "(Found in some themes)"
1281
  msgstr "(Encontrado en algunos temas)"
1282
 
1283
- #: includes/options/class-wpglobus-options.php:1244
1284
  msgid "Enable"
1285
  msgstr "Habilitar"
1286
 
1287
- #: includes/options/class-wpglobus-options.php:1259
1288
  msgid "Languages table"
1289
  msgstr "Tabla de idiomas"
1290
 
1291
- #: includes/options/class-wpglobus-options.php:1265
1292
  msgid "Use this table to add, edit or delete languages."
1293
  msgstr "Utiliza esta tabla para agregar, editar o eliminar idiomas."
1294
 
1295
- #: includes/options/class-wpglobus-options.php:1266
1296
  msgid "NOTE: you cannot remove the main language."
1297
  msgstr "Nota: No se puede eliminar el idioma principal."
1298
 
1299
- #: includes/options/class-wpglobus-options.php:1314
1300
  msgid "WPGlobus is enabled on these Post Types"
1301
  msgstr ""
1302
 
1303
- #: includes/options/class-wpglobus-options.php:1315
1304
  msgid "Uncheck to disable"
1305
  msgstr ""
1306
 
1307
- #: includes/options/class-wpglobus-options.php:1316
1308
  msgid ""
1309
  "Please note that there are post types, which status is managed by other "
1310
  "plugins and cannot be changed here."
1311
  msgstr ""
1312
 
1313
- #: includes/options/class-wpglobus-options.php:1321
1314
  msgid "Post Types"
1315
  msgstr ""
1316
 
1317
- #: includes/options/class-wpglobus-options.php:1337
1318
  msgid ""
1319
  "You should put here only the code provided by WPGlobus Support. Do not write "
1320
  "anything else in the sections below as it might break the functionality of "
1321
  "your website!"
1322
  msgstr ""
1323
 
1324
- #: includes/options/class-wpglobus-options.php:1378
1325
  msgid "Custom Code"
1326
  msgstr ""
1327
 
1328
- #: includes/options/class-wpglobus-options.php:1486,
1329
- #: includes/options/class-wpglobus-options.php:1618,
1330
- #: includes/options/class-wpglobus-options.php:1729
1331
  msgid "Enabled"
1332
  msgstr ""
1333
 
1334
- #: includes/options/class-wpglobus-options.php:1499
1335
  msgid "Builders support"
1336
  msgstr ""
1337
 
1338
- #: includes/options/class-wpglobus-options.php:1551
1339
  msgid "Builder mode is enabled on these Post Types"
1340
  msgstr ""
1341
 
1342
- #: includes/options/class-wpglobus-options.php:1617
1343
  msgid "Old fashioned language switcher"
1344
  msgstr ""
1345
 
1346
- #: includes/options/class-wpglobus-options.php:1623
1347
  msgid "Block Editor"
1348
  msgstr ""
1349
 
1350
- #: includes/options/class-wpglobus-options.php:1624
1351
  msgid "Block Editor Options"
1352
  msgstr ""
1353
 
1354
- #: includes/options/class-wpglobus-options.php:1653
1355
  msgid ""
1356
  "With the current settings, you will see the following lines in the section "
1357
  "HEAD of your site pages"
1358
  msgstr ""
1359
 
1360
- #: includes/options/class-wpglobus-options.php:1655
1361
  msgid "(example for two languages)"
1362
  msgstr ""
1363
 
1364
- #: includes/options/class-wpglobus-options.php:1702
1365
  msgid ""
1366
  "Tell search engines about localized versions of your pages using the "
1367
  "hreflang tag"
1368
  msgstr ""
1369
 
1370
- #: includes/options/class-wpglobus-options.php:1711
1371
  msgid "Output the hreflang tag as"
1372
  msgstr ""
1373
 
1374
- #: includes/options/class-wpglobus-options.php:1714
1375
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1376
  msgstr ""
1377
 
1378
- #: includes/options/class-wpglobus-options.php:1715
1379
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1380
  msgstr ""
1381
 
1382
- #: includes/options/class-wpglobus-options.php:1716
1383
  msgid "Language code only (en, ru, etc.)"
1384
  msgstr ""
1385
 
1386
- #: includes/options/class-wpglobus-options.php:1728
1387
  msgid "Use the code `x-default` for the main language"
1388
  msgstr ""
1389
 
1390
- #: includes/options/class-wpglobus-options.php:1734
1391
  msgid "Multilingual SEO"
1392
  msgstr ""
1393
 
1394
- #: includes/options/class-wpglobus-options.php:1735
1395
  msgid "Multilingual SEO Options"
1396
  msgstr ""
1397
 
1398
- #: includes/options/class-wpglobus-options.php:1772
1399
  msgid ""
1400
  "With WPGlobus, you can get translations for posts and pages using REST API."
1401
  msgstr ""
1402
 
1403
- #: includes/options/class-wpglobus-options.php:1800,
1404
- #: includes/options/class-wpglobus-options.php:1808,
1405
- #: includes/options/class-wpglobus-options.php:1780,
1406
- #: includes/options/class-wpglobus-options.php:1789
1407
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1408
  msgstr ""
1409
 
1410
- #: includes/options/class-wpglobus-options.php:1777
1411
  msgid ""
1412
  "For demonstration, you can try the first post that WordPress creates at the "
1413
  "initial installation."
1414
  msgstr ""
1415
 
1416
- #: includes/options/class-wpglobus-options.php:1819
1417
  msgid ""
1418
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1419
  "information."
1420
  msgstr ""
1421
 
1422
- #: includes/options/class-wpglobus-options.php:1826
1423
  msgid ""
1424
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1425
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1426
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1427
  msgstr ""
1428
 
1429
- #: includes/options/class-wpglobus-options.php:1839
1430
  msgid "Description:"
1431
  msgstr ""
1432
 
1433
- #: includes/options/class-wpglobus-options.php:1846,
1434
- #: includes/options/class-wpglobus-options.php:1847
1435
  msgid "REST API"
1436
  msgstr ""
1437
 
1438
- #: includes/options/class-wpglobus-options.php:2180
1439
  msgid "Translate strings"
1440
  msgstr ""
1441
 
1442
- #: includes/options/fields/table/class-wpglobus-languages-table.php:66
1443
  msgid "item"
1444
  msgstr "Artículo"
1445
 
1446
- #: includes/options/fields/table/class-wpglobus-languages-table.php:68
1447
  msgid "items"
1448
  msgstr "Artículos"
1449
 
1450
- #: includes/options/fields/table/class-wpglobus-languages-table.php:88
1451
  msgid "Code"
1452
  msgstr "Código"
1453
 
1454
- #: includes/options/fields/table/class-wpglobus-languages-table.php:94
1455
  msgid "Edit"
1456
  msgstr "Editar"
1457
 
1458
- #: includes/options/fields/table/class-wpglobus-languages-table.php:99
1459
  msgid "Delete"
1460
  msgstr "Borrar"
1461
 
1462
- #: includes/options/fields/table/class-wpglobus-languages-table.php:105
1463
  msgid "File"
1464
  msgstr "Archivo"
1465
 
1466
- #: includes/options/fields/table/class-wpglobus-languages-table.php:110
1467
  msgid "Flag"
1468
  msgstr "Bandera"
1469
 
1470
- #: includes/options/fields/table/class-wpglobus-languages-table.php:120
1471
  msgid "Language name"
1472
  msgstr "Nombre del idioma"
1473
 
1474
- #: includes/options/fields/table/class-wpglobus-languages-table.php:125
1475
  msgid "English language name"
1476
  msgstr "Nombre del idioma en Inglés"
1477
 
1478
- #: includes/options/fields/table/class-wpglobus-languages-table.php:151
1479
  msgid "No items found"
1480
  msgstr "No se han encntrado artículos"
1481
 
1482
- #: includes/options/fields/table/class-wpglobus-languages-table.php:164
1483
  msgid "Add new Language"
1484
  msgstr "Añadir nuevo idioma"
1485
 
1486
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:164
1487
  msgid "No items of this type were found."
1488
  msgstr ""
1489
 
1490
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:107
1491
  msgid "Select an item"
1492
  msgstr ""
1493
 
1494
- #: includes/options/templates/compatibility-beta.php:15
1495
  msgid "Multilingual support of this add-on is currently in Beta stage."
1496
  msgstr ""
1497
 
1498
- #: includes/options/templates/compatibility-beta.php:17
1499
  msgid "We do not recommend using it on production sites."
1500
  msgstr ""
1501
 
1502
- #: includes/options/templates/compatibility-beta.php:23
1503
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1504
  msgstr ""
1505
 
1506
- #: includes/options/templates/compatibility.php:69
1507
  msgid "WordPress version"
1508
  msgstr ""
1509
 
1510
- #: includes/options/templates/compatibility.php:44
1511
  msgid "In the WordPress core"
1512
  msgstr ""
1513
 
1514
- #: includes/options/templates/compatibility.php:46
1515
  msgid "Core"
1516
  msgstr ""
1517
 
1518
- #: includes/options/templates/compatibility.php:52,
1519
- #: includes/options/templates/compatibility.php:79
1520
  msgid "Current version"
1521
  msgstr ""
1522
 
1523
- #: includes/options/templates/compatibility.php:53,
1524
- #: includes/options/templates/compatibility.php:81
1525
  msgid "Stage"
1526
  msgstr ""
1527
 
1528
- #: includes/options/templates/compatibility.php:54,
1529
- #: includes/options/templates/compatibility.php:82
1530
  msgid "Status"
1531
  msgstr ""
1532
 
1533
- #: includes/options/templates/compatibility.php:60
1534
  msgid "Block editor"
1535
  msgstr ""
1536
 
1537
- #: includes/options/templates/compatibility.php:62
1538
  msgid "production"
1539
  msgstr ""
1540
 
1541
- #: includes/options/templates/compatibility.php:73
1542
  msgid "List of supported add-ons"
1543
  msgstr ""
1544
 
1545
- #: includes/options/templates/compatibility.php:78
1546
  msgid "Add-on"
1547
  msgstr ""
1548
 
1549
- #: includes/options/templates/compatibility.php:80
1550
  msgid "Supported minimum version"
1551
  msgstr ""
1552
 
1553
- #: includes/options/templates/compatibility.php:105
1554
  msgid "Not installed"
1555
  msgstr ""
1556
 
1557
- #: includes/options/templates/compatibility.php:102
1558
  msgid "Installed, inactive"
1559
  msgstr ""
1560
 
1561
- #: includes/options/templates/compatibility.php:100
1562
  msgid "Active"
1563
  msgstr "Activo"
1564
 
1565
- #: includes/options/templates/customize-intro.php:35
1566
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1567
  msgstr ""
1568
 
1569
- #: includes/options/templates/customize-intro.php:39
1570
  msgid "However, some themes do not follow all WordPress standards strictly."
1571
  msgstr ""
1572
 
1573
- #: includes/options/templates/customize-intro.php:41
1574
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1575
  msgstr ""
1576
 
1577
- #: includes/options/templates/customize-intro.php:45
1578
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1579
  msgstr ""
1580
 
1581
- #: includes/options/templates/customize-intro.php:53
1582
  msgid ""
1583
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1584
  "With those themes, WPGlobus Customizer is switched off by default"
1585
  msgstr ""
1586
 
1587
- #: includes/options/templates/customize-intro.php:60
1588
  msgid "The currently active theme is"
1589
  msgstr ""
1590
 
1591
- #: includes/options/templates/customize-intro.php:66
1592
  msgid "In the current version, WPGlobus Customizer does not support"
1593
  msgstr ""
1594
 
1595
- #: includes/options/templates/customize-intro.php:70
1596
  msgid "translation of the navigation menus"
1597
  msgstr ""
1598
 
1599
- #: includes/options/templates/customize-intro.php:72
1600
  msgid "to translate, please go to"
1601
  msgstr ""
1602
 
1603
- #: includes/options/templates/customize-intro.php:81
1604
  msgid "Go to Customizer"
1605
  msgstr ""
1606
 
1607
- #: includes/options/templates/customize-intro.php:88
1608
  msgid "is undefined"
1609
  msgstr ""
1610
 
1611
- #: includes/options/templates/customize-intro.php:85
1612
  msgid "is set to"
1613
  msgstr ""
1614
 
1615
- #: includes/options/templates/customize-intro.php:94
1616
  msgid "by adding to the file wp-config.php"
1617
  msgstr ""
1618
 
1619
- #: includes/options/templates/customize-intro.php:96
1620
  msgid "now"
1621
  msgstr ""
1622
 
1623
- #: includes/options/wpglobus-options-header.php:25
1624
  msgid "We rely on your support!"
1625
  msgstr ""
1626
 
1627
- #: includes/options/wpglobus-options-header.php:28
1628
  msgid "Please consider a small donation to support the future development."
1629
  msgstr ""
1630
 
1631
- #: includes/options/wpglobus-options-header.php:32
1632
  msgid "Thank you!"
1633
  msgstr "Gracias!"
1634
 
1635
- #: includes/options/wpglobus-options-header.php:55
1636
  msgid "WPGlobus Plus!"
1637
  msgstr "WPGlobus Plus!"
1638
 
1639
- #: includes/options/wpglobus-options-header.php:58
1640
  msgid ""
1641
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1642
  "separate publishing and more! "
1643
  msgstr ""
1644
 
1645
- #: includes/options/wpglobus-options-header.php:64
1646
  msgid "Get WPGlobus Plus now!"
1647
  msgstr ""
1648
 
1649
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1650
  msgid ""
1651
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1652
  "the current version."
1653
  msgstr ""
1654
 
1655
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1656
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1657
  msgstr ""
1658
 
1659
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1660
  msgid "WPGlobus warning: "
1661
  msgstr ""
1662
 
1663
- #: wpglobus.php:13
1664
  msgid "https://github.com/WPGlobus/WPGlobus"
1665
  msgstr ""
1666
 
1667
- #: wpglobus.php:14
1668
  msgid ""
1669
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1670
  "widgets and even custom fields - in multiple languages!"
@@ -1672,6 +1252,5 @@ msgstr ""
1672
  "WordPress Globalization / Plugin multilenguaje. Mensajes, páginas, menús, "
1673
  "widgets e incluso campos personalizados - en varios idiomas !"
1674
 
1675
- #: wpglobus.php:19
1676
  msgid "https://wpglobus.com/"
1677
  msgstr ""
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
 
 
 
 
 
19
  msgid "Guide"
20
  msgstr "Guía"
21
 
 
 
22
  msgid "WPGlobus Help Desk"
23
  msgstr ""
24
 
 
 
 
 
 
 
 
25
  msgid "Add-ons"
26
  msgstr "Complementos"
27
 
 
28
  msgid "Quick Start"
29
  msgstr "Inicio Rápido"
30
 
 
 
31
  msgid "FAQ"
32
  msgstr "FAQ"
33
 
 
34
  msgid ""
35
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
36
  msgstr ""
37
 
 
38
  msgid ""
39
  "The mbstring extension is required for the full UTF-8 compatibility and "
40
  "better performance. Without it, some parts of WordPress and WPGlobus may "
42
  "administrator."
43
  msgstr ""
44
 
 
45
  msgid "Go to WPGlobus Settings"
46
  msgstr "Ir a Ajustes WPGlobus"
47
 
 
48
  msgid "Easy as 1-2-3:"
49
  msgstr "Fácil en 1-2-3:"
50
 
 
51
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
52
  msgstr "Ve al menú de administración WPGlobus y elege los países/idiomas;"
53
 
 
54
  msgid ""
55
  "Enter the translations to the posts, pages, categories, tags and menus using "
56
  "a clean and simple interface."
58
  "Introduce las traducciones a los mensajes, páginas, categorías,etiquetas y "
59
  "menús usando una interfaz limpia y simple."
60
 
 
61
  msgid ""
62
  "Switch languages at the front-end using a drop-down menu with language names "
63
  "and country flags."
65
  "Cambia de idioma en el front-end utilizando un menú desplegable con los "
66
  "nombres de las lenguas y banderas de los países ."
67
 
 
68
  msgid "Links:"
69
  msgstr "Enlaces:"
70
 
 
71
  msgid "FAQs"
72
  msgstr "Preguntas Frecuentes"
73
 
 
74
  msgid "Contact Us"
75
  msgstr "Contáctanos"
76
 
 
77
  msgid "Please give us 5 stars!"
78
  msgstr "Por favor danos 5 estrellas!"
79
 
 
80
  msgid "WPGlobus does not translate texts automatically!"
81
  msgstr ""
82
 
 
83
  msgid ""
84
  "There are many translation companies and individual translators who can help "
85
  "you write and proofread the texts."
86
  msgstr ""
87
 
 
88
  msgid ""
89
  "When you choose a translator, please look at their native language, country "
90
  "of residence, specialization and knowledge of WordPress."
91
  msgstr ""
92
 
93
  #. translators: %s are used to insert HTML link. Keep them in place.
 
94
  msgid ""
95
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
96
  "website. This is not an endorsement, just a courtesy. Please contact them "
97
  "directly and let us know how did it work for you!"
98
  msgstr ""
99
 
 
100
  msgid "Important notes:"
101
  msgstr ""
102
 
 
103
  msgid ""
104
  "WPGlobus only supports the localization URLs in the form of <code>example."
105
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
110
  "subdominios <code>example.com</code> ni consultas lingüísticas <code>example."
111
  "com?lang=xx</code>."
112
 
 
113
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
114
  msgstr ""
115
  "En algunos temas y plugins <strong>No está listo el multilenguaje</strong>."
116
 
 
117
  msgid ""
118
  "They might display some texts with no translation, or with all languages "
119
  "mixed together."
122
  "mezclados entre sí."
123
 
124
  #. translators: %s are used to insert HTML link. Keep them in place.
 
125
  msgid ""
126
  "Please contact the theme / plugin author. If they are unable to assist, "
127
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
130
  "ayudarte, considera % s la contratación del WPGlobus % s para escribir un "
131
  "código personalizado para tí."
132
 
 
133
  msgid "Language was set on your profile page"
134
  msgstr ""
135
 
 
136
  msgid "Add"
137
  msgstr "Añadir"
138
 
 
 
139
  msgid "Multilingual Everything!"
140
  msgstr "Multilenguaje Total!"
141
 
 
 
142
  msgid ""
143
  "WPGlobus is a family of WordPress plugins assisting you in making "
144
  "multilingual WordPress blogs and sites."
146
  "WPGlobus es una familia de plugins de WordPress que ayudan en la traducción "
147
  "de blogs de WordPress."
148
 
 
149
  msgid "Remove the WPGlobus settings (not recommended)"
150
  msgstr ""
151
 
 
152
  msgid "Clean-up Tool"
153
  msgstr ""
154
 
 
155
  msgid "Support"
156
  msgstr "Soporte"
157
 
 
158
  msgid ""
159
  "WARNING: this operation is non-reversible. It is strongly recommended that "
160
  "you backup your database before proceeding."
161
  msgstr ""
162
 
 
163
  msgid ""
164
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
165
  "By running it, you will remove ALL translations you have entered to your "
169
  "so on."
170
  msgstr ""
171
 
 
172
  msgid ""
173
  "Make sure that your active theme does not have any code related to WPGlobus. "
174
  "Such code could be added by you or by a 3rd party developer. If that code "
177
  msgstr ""
178
 
179
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
 
180
  msgid ""
181
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
182
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
183
  msgstr ""
184
 
 
185
  msgid "You are about to clean the content of the following database tables:"
186
  msgstr ""
187
 
 
188
  msgid "The operations log"
189
  msgstr ""
190
 
 
191
  msgid ""
192
  "We are going to write a detailed log of all the database changes performed. "
193
  "It should help in the case you need to restore something important. The log "
194
  "will be written to the file:"
195
  msgstr ""
196
 
 
197
  msgid ""
198
  "Uncheck if you do not want to write the operations log (we recommend to keep "
199
  "it checked)"
200
  msgstr ""
201
 
 
202
  msgid "You have been warned..."
203
  msgstr ""
204
 
 
205
  msgid "Please confirm by checking the box below:"
206
  msgstr ""
207
 
 
208
  msgid ""
209
  "I have read and understood everything written on this page. I am aware that "
210
  "by using this tool I may loose some content of my website. I have made a "
212
  "responsible for the results."
213
  msgstr ""
214
 
 
215
  msgid "YES, I CONFIRM"
216
  msgstr ""
217
 
 
218
  msgid "Process with the Clean-up"
219
  msgstr ""
220
 
 
 
 
 
221
  msgid "Default"
222
  msgstr "Predefinido"
223
 
 
224
  msgid "Section"
225
  msgstr ""
226
 
 
227
  msgid "Show all sections"
228
  msgstr ""
229
 
 
230
  msgid "Save &amp; Reload"
231
  msgstr ""
232
 
 
 
 
233
  msgid "WPGlobus"
234
  msgstr ""
235
 
 
236
  msgid ""
237
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
238
  msgstr ""
239
 
 
240
  msgid "Fields Settings"
241
  msgstr ""
242
 
 
243
  msgid "WPGlobus Settings"
244
  msgstr ""
245
 
 
246
  msgid "Help"
247
  msgstr ""
248
 
 
 
249
  msgid "Languages"
250
  msgstr "Idiomas"
251
 
 
 
252
  msgid "Enabled Languages"
253
  msgstr "Idiomas Habilitados"
254
 
 
 
255
  msgid "These languages are currently enabled on your site."
256
  msgstr "Estos idiomas están habilitados actualmente en su sitio."
257
 
 
 
258
  msgid "Choose a language you would like to enable."
259
  msgstr ""
260
 
 
261
  msgid "Press the [Save & Publish] button to confirm."
262
  msgstr ""
263
 
264
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
265
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
 
 
266
  msgid "or Add new Language %1$s here %2$s"
267
  msgstr ""
268
 
 
 
269
  msgid "Add Languages"
270
  msgstr "Añadir idioma"
271
 
 
 
272
  msgid "Language Selector Mode"
273
  msgstr "Modo Selector de Idioma"
274
 
 
 
275
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
276
  msgstr "Código de la bandera en dos letras (es, en, ru, it, etc.)"
277
 
 
 
278
  msgid "Full Name (English, Russian, Italian, etc.)"
279
  msgstr "Nombre completo (Español, English, Russian, Italian, etc.)"
280
 
 
 
281
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
282
  msgstr "Nombre completo con bandera (Español, English, Russian, Italian, etc.)"
283
 
 
 
284
  msgid "Flags only"
285
  msgstr "Sólo banderas"
286
 
 
 
287
  msgid ""
288
  "Choose the way language name and country flag are shown in the drop-down menu"
289
  msgstr ""
290
  "Elige el nombre del idioma y bandera del país se muestran en el menú "
291
  "desplegable"
292
 
 
293
  msgid "select navigation menu"
294
  msgstr ""
295
 
 
 
 
296
  msgid "Language Selector Menu"
297
  msgstr "Menú selector de idioma"
298
 
 
 
 
299
  msgid "Choose the navigation menu where the language selector will be shown"
300
  msgstr ""
301
  "Selecciona el menú de navegación donde se mostrará el selector de idioma"
302
 
 
303
  msgid "No menus have been created yet. Create some."
304
  msgstr ""
305
 
 
 
306
  msgid "\"All Pages\" menus Language selector"
307
  msgstr "\"Todas las páginas\" Selector de menús Idioma"
308
 
 
 
309
  msgid ""
310
  "Adds language selector to the menus that automatically list all existing "
311
  "pages (using `wp_list_pages`)"
314
  "automáticamente en todas las páginas existentes (utilizando ` "
315
  "wp_list_pages` )"
316
 
 
 
317
  msgid "Custom CSS"
318
  msgstr "Customizar CSS"
319
 
 
320
  msgid ""
321
  "Here you can enter the CSS rules to adjust the language selector menu for "
322
  "your theme. Look at the examples in the `style-samples.css` file."
324
  "Aquí puedes introducir las reglas CSS para ajustar el menú de selección de "
325
  "idiomas para tu tema. Mira los ejemplos en el `style-samples.css` file."
326
 
 
327
  msgid "Post types"
328
  msgstr "Tipos de Post"
329
 
 
330
  msgid "Uncheck to disable WPGlobus"
331
  msgstr "Desactiva la opción para desactivar WPGlobus"
332
 
 
 
333
  msgid "Redirect"
334
  msgstr "Redirección"
335
 
 
 
336
  msgid "Choose the language automatically, based on:"
337
  msgstr ""
338
 
 
 
339
  msgid "Preferred language set in the browser"
340
  msgstr ""
341
 
 
 
342
  msgid ""
343
  "When a user comes to the site for the first time, try to find the best "
344
  "matching language version of the page."
345
  msgstr ""
346
 
 
 
 
 
347
  msgid "Custom JS Code"
348
  msgstr ""
349
 
 
 
350
  msgid "Title"
351
  msgstr "Título"
352
 
 
353
  msgid "(Paste your JS code here.)"
354
  msgstr ""
355
 
 
356
  msgid ""
357
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
358
  "version 4.9 or later."
359
  msgstr ""
360
 
 
361
  msgid "With your version of WordPress, please use the"
362
  msgstr ""
363
 
 
364
  msgid "WPGlobus Settings page"
365
  msgstr ""
366
 
 
367
  msgid "Label"
368
  msgstr ""
369
 
 
370
  msgid "Description"
371
  msgstr "Decripción"
372
 
 
373
  msgid ""
374
  "Here you can specify which fields should be considered multilingual by "
375
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
376
  msgstr ""
377
 
 
 
378
  msgid "Thank you for installing WPGlobus!"
379
  msgstr "Gracias por instalar WPGlobus!"
380
 
 
 
381
  msgid "Read About WPGlobus"
382
  msgstr "Leer sobre WPGlobus!"
383
 
 
384
  msgid ""
385
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
386
  msgstr ""
387
  "Click en la <strong>[Idiomas]</strong> pestaña en la parte izquierda de "
388
  "configuración de las opciones."
389
 
 
 
390
  msgid ""
391
  "Should you have any questions or comments, please do not hesitate to contact "
392
  "us."
394
  "Si tienes alguna pregunta o comentario, por favor no dudes en contactar con "
395
  "nosotros."
396
 
 
 
397
  msgid "Sincerely Yours,"
398
  msgstr "Sinceramente tuyo,"
399
 
 
 
 
400
  msgid "The WPGlobus Team"
401
  msgstr "El Equipo WPGlobus"
402
 
403
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
404
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
405
  msgid ""
406
  "We would hate to see you go. If something goes wrong, do not uninstall "
407
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
408
  msgstr ""
409
 
 
 
410
  msgid ""
411
  "Please note that if you deactivate WPGlobus, your site will show all the "
412
  "languages together, mixed up. You will need to remove all translations, "
415
 
416
  #. translators: %s: link to the Clean-up Tool
417
  #. translators: %s: link to the Clean-up Tool.
 
 
418
  msgid ""
419
  "If there are just a few places, you should edit them manually. To "
420
  "automatically remove all translations at once, you can use the %s. WARNING: "
424
 
425
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
426
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
427
  msgid "%1$sClean-up Tool%2$s"
428
  msgstr ""
429
 
430
  #. translators: %s: name of current theme
 
431
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
432
  msgstr ""
433
 
434
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
435
  msgid "Please use %1$sWPGlobus options page%2$s instead."
436
  msgstr ""
437
 
 
438
  msgid "Expand/Shrink"
439
  msgstr ""
440
 
 
 
441
  msgid "WPGlobus News"
442
  msgstr ""
443
 
 
 
444
  msgid "Options updated"
445
  msgstr "Opciones actualizadas"
446
 
 
447
  msgid "Please enter a language code!"
448
  msgstr "Por favor, introduce el código del idioma!"
449
 
 
450
  msgid "Language code already exists!"
451
  msgstr "Este código de idioma ya existe!"
452
 
 
453
  msgid "Please specify the language flag!"
454
  msgstr "Por favor, especifica la bandera del idioma !"
455
 
 
456
  msgid "Please enter the language name!"
457
  msgstr "Por favor introduce el nombre del idioma!"
458
 
 
459
  msgid "Please enter the language name in English!"
460
  msgstr "Por favor introduce el nombre del idioma en Inglés!"
461
 
 
462
  msgid "Please enter the locale!"
463
  msgstr "Por favor introduce la localización!"
464
 
 
465
  msgid "Add Language"
466
  msgstr "Añadir Idioma"
467
 
 
 
 
468
  msgid "Delete Language"
469
  msgstr "Eliminar Idioma"
470
 
 
471
  msgid "Edit Language"
472
  msgstr "Editar Idioma"
473
 
 
474
  msgid "Language Code"
475
  msgstr "Código del Idioma"
476
 
 
477
  msgid ""
478
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
479
  msgstr ""
480
  "2-Carta de códigos de idioma ISO para el idioma que deseas insertar. "
481
  "(Ejemplo : en)"
482
 
 
483
  msgid "Language flag"
484
  msgstr "Bandera del idioma"
485
 
 
486
  msgid "Name"
487
  msgstr "Nombre"
488
 
 
489
  msgid ""
490
  "The name of the language in its native alphabet. (Examples: English, Русский)"
491
  msgstr ""
492
  "El nombre de la lengua en su alfabeto nativo. (Ejemplos : Español, English, "
493
  "Русский )"
494
 
 
495
  msgid "Name in English"
496
  msgstr "Nombre en Inglés"
497
 
 
498
  msgid "The name of the language in English"
499
  msgstr "El nombre del idioma en Inglés"
500
 
 
 
501
  msgid "Locale"
502
  msgstr "Local"
503
 
 
504
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
505
  msgstr ""
506
  "PHP / WordPress configuración regional de la lengua . (Ejemplos : en_US, "
507
  "es_ES, ru_RU)"
508
 
 
509
  msgid "Are you sure you want to delete?"
510
  msgstr "Estás seguro de que quieres borrarlo?"
511
 
 
512
  msgid "Save Changes"
513
  msgstr "Guardar Cambios"
514
 
 
515
  msgid "Back to the WPGlobus Settings"
516
  msgstr "Volver a Ajustes WPGlobus"
517
 
 
518
  msgid "Current Version"
519
  msgstr "Versión Actual"
520
 
 
521
  msgid "Get it now!"
522
  msgstr ""
523
 
 
524
  msgid "Premium add-on"
525
  msgstr ""
526
 
 
 
527
  msgid "Installed"
528
  msgstr "Instalado"
529
 
530
  #. translators: placeholders are for the HTML tags.
 
531
  msgid ""
532
  "If you have already purchased a WPGlobus premium extension, please read "
533
  "%1$sthe installation instructions here%2$s"
534
  msgstr ""
535
 
 
 
536
  msgid "Help Desk"
537
  msgstr ""
538
 
 
539
  msgid "Email not sent. Please fill in the entire form."
540
  msgstr ""
541
 
 
542
  msgid ""
543
  "Email not sent. Please verify that your name and email are entered correctly."
544
  msgstr ""
545
 
 
546
  msgid "Email sent."
547
  msgstr ""
548
 
 
549
  msgid "Thank you for using WPGlobus!"
550
  msgstr ""
551
 
 
552
  msgid "Our Support Team is here to answer your questions or concerns."
553
  msgstr ""
554
 
 
555
  msgid "To help us serve you better:"
556
  msgstr ""
557
 
 
558
  msgid ""
559
  "Please check if the problem persists if you switch to a standard WordPress "
560
  "theme."
561
  msgstr ""
562
 
 
563
  msgid ""
564
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
565
  msgstr ""
566
 
 
567
  msgid "Please fill in and submit the contact form:"
568
  msgstr ""
569
 
 
570
  msgid "Please make sure the email address is correct."
571
  msgstr ""
572
 
 
573
  msgid "Subject"
574
  msgstr ""
575
 
 
576
  msgid "Short description of the problem"
577
  msgstr ""
578
 
 
579
  msgid "Detailed description"
580
  msgstr ""
581
 
 
582
  msgid "Technical Information"
583
  msgstr ""
584
 
 
585
  msgid "This information helps us to find the problem source"
586
  msgstr ""
587
 
 
588
  msgid ""
589
  "Alternatively, please email %s. Do not forget to copy and paste the "
590
  "technical information to your email message."
591
  msgstr ""
592
 
 
593
  msgid "WPGlobus Recommends:"
594
  msgstr ""
595
 
 
 
596
  msgid "WPGlobus for WooCommerce"
597
  msgstr ""
598
 
 
599
  msgid ""
600
  "Translate product titles and descriptions, product categories, tags and "
601
  "attributes."
602
  msgstr ""
603
 
 
604
  msgid "Get it now:"
605
  msgstr ""
606
 
 
607
  msgid "WooCommerce Multi-Currency"
608
  msgstr ""
609
 
 
610
  msgid "Accept multiple currencies in your online store!"
611
  msgstr ""
612
 
 
 
613
  msgid "Check it out:"
614
  msgstr ""
615
 
 
616
  msgid "To translate permalinks, please activate the module Slug."
617
  msgstr ""
618
 
 
619
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
620
  msgstr ""
621
 
 
 
622
  msgid "Save draft before using extra language."
623
  msgstr ""
624
 
 
625
  msgid "Builder"
626
  msgstr ""
627
 
 
628
  msgid "Сompatibility Settings"
629
  msgstr ""
630
 
631
  #. translators: ON/OFF status of WPGlobus on the edit pages.
632
  #. translators: ON/OFF status of WPGlobus on the edit pages.
 
 
633
  msgid "ON"
634
  msgstr ""
635
 
 
 
636
  msgid "Turn off"
637
  msgstr ""
638
 
 
 
639
  msgid "OFF"
640
  msgstr ""
641
 
 
 
642
  msgid "Turn on"
643
  msgstr ""
644
 
 
645
  msgid "Elementor"
646
  msgstr ""
647
 
 
648
  msgid "WPGlobus languages"
649
  msgstr ""
650
 
 
651
  msgid "current"
652
  msgstr ""
653
 
 
654
  msgid ""
655
  "WPGlobus provides multilingual support for Elementor only when the option "
656
  "%1$s%2$s%3$s is set to %4$s."
657
  msgstr ""
658
 
 
659
  msgid "Before switching the language, please save draft or publish."
660
  msgstr ""
661
 
662
  #. translators: Metabox title FOR language.
 
663
  msgctxt "filter__seo_meta_box_title"
664
  msgid "for"
665
  msgstr ""
666
 
 
667
  msgid "Page is being reloaded. Please wait..."
668
  msgstr ""
669
 
 
670
  msgid ""
671
  "Before switching the language, please save draft or publish, then reload "
672
  "page."
673
  msgstr ""
674
 
 
675
  msgid ""
676
  "WPGlobus provides multilingual support for Elementor only when the option "
677
  "`CSS Print Method` is set to `External File`."
678
  msgstr ""
679
 
 
680
  msgid "Open Elementor Settings page"
681
  msgstr ""
682
 
 
683
  msgid "WPGlobus widget"
684
  msgstr "WPGlobus widget"
685
 
 
686
  msgid "Add language switcher"
687
  msgstr "Añadir selector de idiomas"
688
 
 
689
  msgid "Flags"
690
  msgstr "Banderas"
691
 
 
692
  msgid "List"
693
  msgstr "Lista"
694
 
 
695
  msgid "List with flags"
696
  msgstr "Lista con Banderas"
697
 
 
698
  msgid "Select"
699
  msgstr "Seleccionar"
700
 
 
701
  msgid "Select with language code"
702
  msgstr "Seleccionar con el código de idioma"
703
 
 
704
  msgid "Dropdown"
705
  msgstr "Desplegable"
706
 
 
707
  msgid "Dropdown with flags"
708
  msgstr "Desplegable con banderas"
709
 
 
710
  msgid "Selector type"
711
  msgstr "Tipo de selector"
712
 
 
713
  msgid "You cannot disable the main language."
714
  msgstr "No se puede desactivar el idioma principal."
715
 
 
716
  msgid "Need a multilingual slug?"
717
  msgstr ""
718
 
 
719
  msgid "*) Available after the menu is saved."
720
  msgstr "No Se Puede Desactivar el director idioma."
721
 
 
722
  msgid "You must enable Pretty Permalinks to use WPGlobus."
723
  msgstr ""
724
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
725
 
 
726
  msgid ""
727
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
728
  "default option."
730
  "Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
731
  "selecciona una opción no predeterminada ."
732
 
 
733
  msgid "Language Selector Menu Style"
734
  msgstr ""
735
 
 
 
 
736
  msgid "WPGlobus Plus"
737
  msgstr ""
738
 
 
739
  msgid "Drop-down languages menu or Flat (in one line)"
740
  msgstr ""
741
 
 
742
  msgid "Do not change"
743
  msgstr ""
744
 
 
745
  msgid "Drop-down (vertical)"
746
  msgstr ""
747
 
 
748
  msgid "Flat (horizontal)"
749
  msgstr ""
750
 
 
751
  msgid ""
752
  "If you see this message then your browser may not display the WPGlobus "
753
  "Settings panel properly. Please try another browser."
754
  msgstr ""
755
 
 
 
756
  msgid "Сompatibility"
757
  msgstr ""
758
 
759
  #. translators: placeholders for "strong" tags.
 
760
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
761
  msgstr ""
762
 
763
  #. translators: placeholders for "strong" tags.
 
764
  msgid ""
765
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
766
  "the language attributes: name, code, flag icon, etc."
767
  msgstr ""
768
 
 
769
  msgid "Important notes"
770
  msgstr ""
771
 
772
  #. translators: placeholders for "strong" tags.
 
773
  msgid "Version %1$s1.9.17%2$s "
774
  msgstr ""
775
 
776
  #. translators: placeholders for "strong" tags.
 
777
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
778
  msgstr ""
779
 
780
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
781
  msgid ""
782
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
783
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
784
  msgstr ""
785
 
786
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
787
  msgid ""
788
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
789
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
790
  msgstr ""
791
 
792
  #. translators: placeholders for "strong" tags.
 
793
  msgid "Version %1$s2.2.11%2$s "
794
  msgstr ""
795
 
 
796
  msgid "Starting from this version"
797
  msgstr ""
798
 
799
  #. translators: placeholders for "strong" tags.
 
800
  msgid ""
801
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
802
  "(CPT)."
803
  msgstr ""
804
 
805
  #. translators: placeholders for "strong" tags.
 
806
  msgid ""
807
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
808
  "the %1$s[%3$s]%2$s tab."
809
  msgstr ""
810
 
 
811
  msgid "Welcome!"
812
  msgstr "Bienvenido!"
813
 
 
814
  msgid "Deactivating / Uninstalling"
815
  msgstr ""
816
 
 
817
  msgid "Uninstall"
818
  msgstr ""
819
 
 
820
  msgid "All add-ons"
821
  msgstr ""
822
 
 
823
  msgid "Mobile Menu"
824
  msgstr ""
825
 
 
826
  msgid "Language Widgets"
827
  msgstr ""
828
 
 
829
  msgid "We Recommend..."
830
  msgstr ""
831
 
 
832
  msgid ""
833
  "Our premium add-on, WPGlobus Plus, will add several features to your "
834
  "website, such as:"
835
  msgstr ""
836
 
 
837
  msgid ""
838
  "- Ability to write a post in one language and immediately publish it, not "
839
  "waiting for the translation to other languages;"
840
  msgstr ""
841
 
 
842
  msgid "- Set different URLs for each translation;"
843
  msgstr ""
844
 
 
845
  msgid ""
846
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
847
  "for each translation;"
848
  msgstr ""
849
 
 
850
  msgid "- and more..."
851
  msgstr ""
852
 
 
 
 
853
  msgid "Click here to download"
854
  msgstr ""
855
 
 
856
  msgid ""
857
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
858
  "translate your blog posts and pages to many languages."
859
  msgstr ""
860
 
 
861
  msgid "The next step is to translate your WooCommerce-based store!"
862
  msgstr ""
863
 
 
864
  msgid ""
865
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
866
  "translate product titles and descriptions, categories, tags and attributes."
867
  msgstr ""
868
 
 
869
  msgid "Multi-currency"
870
  msgstr ""
871
 
 
872
  msgid ""
873
  "Your WooCommerce-powered store is set to show prices and accept payments in "
874
  "a single currency only."
875
  msgstr ""
876
 
 
877
  msgid ""
878
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
879
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
881
  "positioning for global growth!"
882
  msgstr ""
883
 
 
884
  msgid ""
885
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
886
  "re-calculating prices on-the-fly."
887
  msgstr ""
888
 
 
889
  msgid "WPGlobus Premium Add-ons"
890
  msgstr ""
891
 
 
892
  msgid ""
893
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
894
  "you will be able to:"
895
  msgstr ""
896
 
 
897
  msgid ""
898
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
899
  "моя-страница and so on);"
900
  msgstr ""
901
 
 
902
  msgid ""
903
  "Postpone translation to some languages and <strong>publish only the "
904
  "translated texts</strong>;"
905
  msgstr ""
906
 
 
907
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
908
  msgstr ""
909
 
 
910
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
911
  msgstr ""
912
 
 
913
  msgid ""
914
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
915
  "strong>;"
916
  msgstr ""
917
 
 
918
  msgid "...and more."
919
  msgstr ""
920
 
 
921
  msgid "Click here to visit the WPGlobus Store"
922
  msgstr ""
923
 
 
924
  msgid "Select a language"
925
  msgstr "Seleccionar un idioma"
926
 
927
  #. translators: %3$s placeholder for the icon (actual picture).
 
928
  msgid ""
929
  "Place the %1$smain language%2$s of your site at the top of the list by "
930
  "dragging the %3$s icons."
931
  msgstr ""
932
 
933
  #. translators: placeholders for the "strong" HTML tags.
 
934
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
935
  msgstr ""
936
 
937
  #. translators: placeholders for the "strong" HTML tags.
 
938
  msgid "%1$sAdd%2$s more languages using the section below."
939
  msgstr ""
940
 
 
941
  msgid "When done, click the [Save Changes] button."
942
  msgstr "Cuando hayas terminado, haz clic en el botón [Guardar Cambios] ."
943
 
944
  #. translators: %s - placeholder for the "Save Changes" button text.
 
945
  msgid "Press the %s button to confirm."
946
  msgstr ""
947
 
948
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
 
949
  msgid "-- none --"
950
  msgstr ""
951
 
 
952
  msgid "All menus"
953
  msgstr ""
954
 
 
955
  msgid "Instructions:"
956
  msgstr "Instrucciones:"
957
 
 
958
  msgid "(Found in some themes)"
959
  msgstr "(Encontrado en algunos temas)"
960
 
 
961
  msgid "Enable"
962
  msgstr "Habilitar"
963
 
 
964
  msgid "Languages table"
965
  msgstr "Tabla de idiomas"
966
 
 
967
  msgid "Use this table to add, edit or delete languages."
968
  msgstr "Utiliza esta tabla para agregar, editar o eliminar idiomas."
969
 
 
970
  msgid "NOTE: you cannot remove the main language."
971
  msgstr "Nota: No se puede eliminar el idioma principal."
972
 
 
973
  msgid "WPGlobus is enabled on these Post Types"
974
  msgstr ""
975
 
 
976
  msgid "Uncheck to disable"
977
  msgstr ""
978
 
 
979
  msgid ""
980
  "Please note that there are post types, which status is managed by other "
981
  "plugins and cannot be changed here."
982
  msgstr ""
983
 
 
984
  msgid "Post Types"
985
  msgstr ""
986
 
 
987
  msgid ""
988
  "You should put here only the code provided by WPGlobus Support. Do not write "
989
  "anything else in the sections below as it might break the functionality of "
990
  "your website!"
991
  msgstr ""
992
 
 
993
  msgid "Custom Code"
994
  msgstr ""
995
 
 
 
 
996
  msgid "Enabled"
997
  msgstr ""
998
 
 
999
  msgid "Builders support"
1000
  msgstr ""
1001
 
 
1002
  msgid "Builder mode is enabled on these Post Types"
1003
  msgstr ""
1004
 
 
1005
  msgid "Old fashioned language switcher"
1006
  msgstr ""
1007
 
 
1008
  msgid "Block Editor"
1009
  msgstr ""
1010
 
 
1011
  msgid "Block Editor Options"
1012
  msgstr ""
1013
 
 
1014
  msgid ""
1015
  "With the current settings, you will see the following lines in the section "
1016
  "HEAD of your site pages"
1017
  msgstr ""
1018
 
 
1019
  msgid "(example for two languages)"
1020
  msgstr ""
1021
 
 
1022
  msgid ""
1023
  "Tell search engines about localized versions of your pages using the "
1024
  "hreflang tag"
1025
  msgstr ""
1026
 
 
1027
  msgid "Output the hreflang tag as"
1028
  msgstr ""
1029
 
 
1030
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1031
  msgstr ""
1032
 
 
1033
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1034
  msgstr ""
1035
 
 
1036
  msgid "Language code only (en, ru, etc.)"
1037
  msgstr ""
1038
 
 
1039
  msgid "Use the code `x-default` for the main language"
1040
  msgstr ""
1041
 
 
1042
  msgid "Multilingual SEO"
1043
  msgstr ""
1044
 
 
1045
  msgid "Multilingual SEO Options"
1046
  msgstr ""
1047
 
 
1048
  msgid ""
1049
  "With WPGlobus, you can get translations for posts and pages using REST API."
1050
  msgstr ""
1051
 
 
 
 
 
1052
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1053
  msgstr ""
1054
 
 
1055
  msgid ""
1056
  "For demonstration, you can try the first post that WordPress creates at the "
1057
  "initial installation."
1058
  msgstr ""
1059
 
 
1060
  msgid ""
1061
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1062
  "information."
1063
  msgstr ""
1064
 
 
1065
  msgid ""
1066
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1067
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1068
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1069
  msgstr ""
1070
 
 
1071
  msgid "Description:"
1072
  msgstr ""
1073
 
 
 
1074
  msgid "REST API"
1075
  msgstr ""
1076
 
 
1077
  msgid "Translate strings"
1078
  msgstr ""
1079
 
 
1080
  msgid "item"
1081
  msgstr "Artículo"
1082
 
 
1083
  msgid "items"
1084
  msgstr "Artículos"
1085
 
 
1086
  msgid "Code"
1087
  msgstr "Código"
1088
 
 
1089
  msgid "Edit"
1090
  msgstr "Editar"
1091
 
 
1092
  msgid "Delete"
1093
  msgstr "Borrar"
1094
 
 
1095
  msgid "File"
1096
  msgstr "Archivo"
1097
 
 
1098
  msgid "Flag"
1099
  msgstr "Bandera"
1100
 
 
1101
  msgid "Language name"
1102
  msgstr "Nombre del idioma"
1103
 
 
1104
  msgid "English language name"
1105
  msgstr "Nombre del idioma en Inglés"
1106
 
 
1107
  msgid "No items found"
1108
  msgstr "No se han encntrado artículos"
1109
 
 
1110
  msgid "Add new Language"
1111
  msgstr "Añadir nuevo idioma"
1112
 
 
1113
  msgid "No items of this type were found."
1114
  msgstr ""
1115
 
 
1116
  msgid "Select an item"
1117
  msgstr ""
1118
 
 
1119
  msgid "Multilingual support of this add-on is currently in Beta stage."
1120
  msgstr ""
1121
 
 
1122
  msgid "We do not recommend using it on production sites."
1123
  msgstr ""
1124
 
 
1125
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1126
  msgstr ""
1127
 
 
1128
  msgid "WordPress version"
1129
  msgstr ""
1130
 
 
1131
  msgid "In the WordPress core"
1132
  msgstr ""
1133
 
 
1134
  msgid "Core"
1135
  msgstr ""
1136
 
 
 
1137
  msgid "Current version"
1138
  msgstr ""
1139
 
 
 
1140
  msgid "Stage"
1141
  msgstr ""
1142
 
 
 
1143
  msgid "Status"
1144
  msgstr ""
1145
 
 
1146
  msgid "Block editor"
1147
  msgstr ""
1148
 
 
1149
  msgid "production"
1150
  msgstr ""
1151
 
 
1152
  msgid "List of supported add-ons"
1153
  msgstr ""
1154
 
 
1155
  msgid "Add-on"
1156
  msgstr ""
1157
 
 
1158
  msgid "Supported minimum version"
1159
  msgstr ""
1160
 
 
1161
  msgid "Not installed"
1162
  msgstr ""
1163
 
 
1164
  msgid "Installed, inactive"
1165
  msgstr ""
1166
 
 
1167
  msgid "Active"
1168
  msgstr "Activo"
1169
 
 
1170
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1171
  msgstr ""
1172
 
 
1173
  msgid "However, some themes do not follow all WordPress standards strictly."
1174
  msgstr ""
1175
 
 
1176
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1177
  msgstr ""
1178
 
 
1179
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1180
  msgstr ""
1181
 
 
1182
  msgid ""
1183
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1184
  "With those themes, WPGlobus Customizer is switched off by default"
1185
  msgstr ""
1186
 
 
1187
  msgid "The currently active theme is"
1188
  msgstr ""
1189
 
 
1190
  msgid "In the current version, WPGlobus Customizer does not support"
1191
  msgstr ""
1192
 
 
1193
  msgid "translation of the navigation menus"
1194
  msgstr ""
1195
 
 
1196
  msgid "to translate, please go to"
1197
  msgstr ""
1198
 
 
1199
  msgid "Go to Customizer"
1200
  msgstr ""
1201
 
 
1202
  msgid "is undefined"
1203
  msgstr ""
1204
 
 
1205
  msgid "is set to"
1206
  msgstr ""
1207
 
 
1208
  msgid "by adding to the file wp-config.php"
1209
  msgstr ""
1210
 
 
1211
  msgid "now"
1212
  msgstr ""
1213
 
 
1214
  msgid "We rely on your support!"
1215
  msgstr ""
1216
 
 
1217
  msgid "Please consider a small donation to support the future development."
1218
  msgstr ""
1219
 
 
1220
  msgid "Thank you!"
1221
  msgstr "Gracias!"
1222
 
 
1223
  msgid "WPGlobus Plus!"
1224
  msgstr "WPGlobus Plus!"
1225
 
 
1226
  msgid ""
1227
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1228
  "separate publishing and more! "
1229
  msgstr ""
1230
 
 
1231
  msgid "Get WPGlobus Plus now!"
1232
  msgstr ""
1233
 
 
1234
  msgid ""
1235
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1236
  "the current version."
1237
  msgstr ""
1238
 
 
1239
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1240
  msgstr ""
1241
 
 
1242
  msgid "WPGlobus warning: "
1243
  msgstr ""
1244
 
 
1245
  msgid "https://github.com/WPGlobus/WPGlobus"
1246
  msgstr ""
1247
 
 
1248
  msgid ""
1249
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1250
  "widgets and even custom fields - in multiple languages!"
1252
  "WordPress Globalization / Plugin multilenguaje. Mensajes, páginas, menús, "
1253
  "widgets e incluso campos personalizados - en varios idiomas !"
1254
 
 
1255
  msgid "https://wpglobus.com/"
1256
  msgstr ""
languages/wpglobus-es_CR.po CHANGED
@@ -16,44 +16,25 @@ msgstr ""
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
- #: includes/admin/central/class-wpglobus-admin-central.php:122,
20
- #: includes/admin/class-wpglobus-about.php:42,
21
- #: includes/admin/class-wpglobus-about.php:117,
22
- #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr "Guía"
26
 
27
- #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
32
- #: includes/admin/central/class-wpglobus-admin-central.php:157,
33
- #: includes/admin/class-wpglobus-about.php:36,
34
- #: includes/admin/class-wpglobus-admin-menu.php:22,
35
- #: includes/admin/class-wpglobus-clean.php:606,
36
- #: includes/admin/class-wpglobus-customize-options.php:1293,
37
- #: includes/admin/class-wpglobus-customize-options.php:1261,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr "Complementos"
41
 
42
- #: includes/admin/class-wpglobus-about.php:26
43
  msgid "Quick Start"
44
  msgstr "Inicio Rápido"
45
 
46
- #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
51
- #: includes/admin/class-wpglobus-about.php:59
52
  msgid ""
53
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
54
  msgstr ""
55
 
56
- #: includes/admin/class-wpglobus-about.php:60
57
  msgid ""
58
  "The mbstring extension is required for the full UTF-8 compatibility and "
59
  "better performance. Without it, some parts of WordPress and WPGlobus may "
@@ -61,19 +42,15 @@ msgid ""
61
  "administrator."
62
  msgstr ""
63
 
64
- #: includes/admin/class-wpglobus-about.php:87
65
  msgid "Go to WPGlobus Settings"
66
  msgstr "Ir a Ajustes WPGlobus"
67
 
68
- #: includes/admin/class-wpglobus-about.php:98
69
  msgid "Easy as 1-2-3:"
70
  msgstr "Fácil en 1-2-3:"
71
 
72
- #: includes/admin/class-wpglobus-about.php:101
73
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
74
  msgstr "Ve al menú de administración WPGlobus y elege los países/idiomas;"
75
 
76
- #: includes/admin/class-wpglobus-about.php:102
77
  msgid ""
78
  "Enter the translations to the posts, pages, categories, tags and menus using "
79
  "a clean and simple interface."
@@ -81,7 +58,6 @@ msgstr ""
81
  "Introduce las traducciones a los mensajes, páginas, categorías,etiquetas y "
82
  "menús usando una interfaz limpia y simple."
83
 
84
- #: includes/admin/class-wpglobus-about.php:103
85
  msgid ""
86
  "Switch languages at the front-end using a drop-down menu with language names "
87
  "and country flags."
@@ -89,51 +65,41 @@ msgstr ""
89
  "Cambia de idioma en el front-end utilizando un menú desplegable con los "
90
  "nombres de las lenguas y banderas de los países ."
91
 
92
- #: includes/admin/class-wpglobus-about.php:111
93
  msgid "Links:"
94
  msgstr "Enlaces:"
95
 
96
- #: includes/admin/class-wpglobus-about.php:119
97
  msgid "FAQs"
98
  msgstr "Preguntas Frecuentes"
99
 
100
- #: includes/admin/class-wpglobus-about.php:121
101
  msgid "Contact Us"
102
  msgstr "Contáctanos"
103
 
104
- #: includes/admin/class-wpglobus-about.php:123
105
  msgid "Please give us 5 stars!"
106
  msgstr "Por favor danos 5 estrellas!"
107
 
108
- #: includes/admin/class-wpglobus-about.php:133
109
  msgid "WPGlobus does not translate texts automatically!"
110
  msgstr ""
111
 
112
- #: includes/admin/class-wpglobus-about.php:136
113
  msgid ""
114
  "There are many translation companies and individual translators who can help "
115
  "you write and proofread the texts."
116
  msgstr ""
117
 
118
- #: includes/admin/class-wpglobus-about.php:137
119
  msgid ""
120
  "When you choose a translator, please look at their native language, country "
121
  "of residence, specialization and knowledge of WordPress."
122
  msgstr ""
123
 
124
  #. translators: %s are used to insert HTML link. Keep them in place.
125
- #: includes/admin/class-wpglobus-about.php:143
126
  msgid ""
127
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
128
  "website. This is not an endorsement, just a courtesy. Please contact them "
129
  "directly and let us know how did it work for you!"
130
  msgstr ""
131
 
132
- #: includes/admin/class-wpglobus-about.php:154
133
  msgid "Important notes:"
134
  msgstr ""
135
 
136
- #: includes/admin/class-wpglobus-about.php:159
137
  msgid ""
138
  "WPGlobus only supports the localization URLs in the form of <code>example."
139
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
@@ -144,12 +110,10 @@ msgstr ""
144
  "subdominios <code>example.com</code> ni consultas lingüísticas <code>example."
145
  "com?lang=xx</code>."
146
 
147
- #: includes/admin/class-wpglobus-about.php:162
148
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
149
  msgstr ""
150
  "En algunos temas y plugins <strong>No está listo el multilenguaje</strong>."
151
 
152
- #: includes/admin/class-wpglobus-about.php:163
153
  msgid ""
154
  "They might display some texts with no translation, or with all languages "
155
  "mixed together."
@@ -158,7 +122,6 @@ msgstr ""
158
  "mezclados entre sí."
159
 
160
  #. translators: %s are used to insert HTML link. Keep them in place.
161
- #: includes/admin/class-wpglobus-about.php:167
162
  msgid ""
163
  "Please contact the theme / plugin author. If they are unable to assist, "
164
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
@@ -167,21 +130,15 @@ msgstr ""
167
  "ayudarte, considera % s la contratación del WPGlobus % s para escribir un "
168
  "código personalizado para tí."
169
 
170
- #: includes/admin/class-wpglobus-admin-bar-menu.php:124
171
  msgid "Language was set on your profile page"
172
  msgstr ""
173
 
174
- #: includes/admin/class-wpglobus-admin-bar-menu.php:194
175
  msgid "Add"
176
  msgstr "Añadir"
177
 
178
- #: includes/admin/class-wpglobus-admin-page.php:32,
179
- #: includes/admin/class-wpglobus-clean.php:585
180
  msgid "Multilingual Everything!"
181
  msgstr "Multilenguaje Total!"
182
 
183
- #: includes/admin/class-wpglobus-admin-page.php:34,
184
- #: includes/admin/class-wpglobus-clean.php:588
185
  msgid ""
186
  "WPGlobus is a family of WordPress plugins assisting you in making "
187
  "multilingual WordPress blogs and sites."
@@ -189,25 +146,20 @@ msgstr ""
189
  "WPGlobus es una familia de plugins de WordPress que ayudan en la traducción "
190
  "de blogs de WordPress."
191
 
192
- #: includes/admin/class-wpglobus-clean.php:232
193
  msgid "Remove the WPGlobus settings (not recommended)"
194
  msgstr ""
195
 
196
- #: includes/admin/class-wpglobus-clean.php:595
197
  msgid "Clean-up Tool"
198
  msgstr ""
199
 
200
- #: includes/admin/class-wpglobus-clean.php:609
201
  msgid "Support"
202
  msgstr "Soporte"
203
 
204
- #: includes/admin/class-wpglobus-clean.php:614
205
  msgid ""
206
  "WARNING: this operation is non-reversible. It is strongly recommended that "
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
- #: includes/admin/class-wpglobus-clean.php:619
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
@@ -217,7 +169,6 @@ msgid ""
217
  "so on."
218
  msgstr ""
219
 
220
- #: includes/admin/class-wpglobus-clean.php:622
221
  msgid ""
222
  "Make sure that your active theme does not have any code related to WPGlobus. "
223
  "Such code could be added by you or by a 3rd party developer. If that code "
@@ -226,42 +177,34 @@ msgid ""
226
  msgstr ""
227
 
228
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
229
- #: includes/admin/class-wpglobus-clean.php:630
230
  msgid ""
231
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
232
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
233
  msgstr ""
234
 
235
- #: includes/admin/class-wpglobus-clean.php:641
236
  msgid "You are about to clean the content of the following database tables:"
237
  msgstr ""
238
 
239
- #: includes/admin/class-wpglobus-clean.php:649
240
  msgid "The operations log"
241
  msgstr ""
242
 
243
- #: includes/admin/class-wpglobus-clean.php:652
244
  msgid ""
245
  "We are going to write a detailed log of all the database changes performed. "
246
  "It should help in the case you need to restore something important. The log "
247
  "will be written to the file:"
248
  msgstr ""
249
 
250
- #: includes/admin/class-wpglobus-clean.php:662
251
  msgid ""
252
  "Uncheck if you do not want to write the operations log (we recommend to keep "
253
  "it checked)"
254
  msgstr ""
255
 
256
- #: includes/admin/class-wpglobus-clean.php:667
257
  msgid "You have been warned..."
258
  msgstr ""
259
 
260
- #: includes/admin/class-wpglobus-clean.php:669
261
  msgid "Please confirm by checking the box below:"
262
  msgstr ""
263
 
264
- #: includes/admin/class-wpglobus-clean.php:671
265
  msgid ""
266
  "I have read and understood everything written on this page. I am aware that "
267
  "by using this tool I may loose some content of my website. I have made a "
@@ -269,153 +212,100 @@ msgid ""
269
  "responsible for the results."
270
  msgstr ""
271
 
272
- #: includes/admin/class-wpglobus-clean.php:674
273
  msgid "YES, I CONFIRM"
274
  msgstr ""
275
 
276
- #: includes/admin/class-wpglobus-clean.php:678
277
  msgid "Process with the Clean-up"
278
  msgstr ""
279
 
280
- #: includes/admin/class-wpglobus-customize-options.php:73,
281
- #: includes/admin/class-wpglobus-customize-options.php:100,
282
- #: includes/admin/class-wpglobus-customize-options.php:145,
283
- #: includes/admin/class-wpglobus-customize-options.php:183
284
  msgid "Default"
285
  msgstr "Predefinido"
286
 
287
- #: includes/admin/class-wpglobus-customize-options.php:264
288
  msgid "Section"
289
  msgstr ""
290
 
291
- #: includes/admin/class-wpglobus-customize-options.php:277
292
  msgid "Show all sections"
293
  msgstr ""
294
 
295
- #: includes/admin/class-wpglobus-customize-options.php:279
296
  msgid "Save &amp; Reload"
297
  msgstr ""
298
 
299
- #: includes/admin/class-wpglobus-customize-options.php:553,
300
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:585,
301
- #: includes/class-wpglobus.php:1284, wpglobus.php:12, wpglobus.php:18
302
  msgid "WPGlobus"
303
  msgstr ""
304
 
305
- #: includes/admin/class-wpglobus-customize-options.php:604
306
  msgid ""
307
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
308
  msgstr ""
309
 
310
- #: includes/admin/class-wpglobus-customize-options.php:610
311
  msgid "Fields Settings"
312
  msgstr ""
313
 
314
- #: includes/admin/class-wpglobus-customize-options.php:655
315
  msgid "WPGlobus Settings"
316
  msgstr ""
317
 
318
- #: includes/admin/class-wpglobus-customize-options.php:723
319
  msgid "Help"
320
  msgstr ""
321
 
322
- #: includes/admin/class-wpglobus-customize-options.php:745,
323
- #: includes/options/class-wpglobus-options.php:1176
324
  msgid "Languages"
325
  msgstr "Idiomas"
326
 
327
- #: includes/admin/class-wpglobus-customize-options.php:765,
328
- #: includes/options/class-wpglobus-options.php:1189
329
  msgid "Enabled Languages"
330
  msgstr "Idiomas Habilitados"
331
 
332
- #: includes/admin/class-wpglobus-customize-options.php:767,
333
- #: includes/options/class-wpglobus-options.php:1190
334
  msgid "These languages are currently enabled on your site."
335
  msgstr "Estos idiomas están habilitados actualmente en su sitio."
336
 
337
- #: includes/admin/class-wpglobus-customize-options.php:795,
338
- #: includes/options/class-wpglobus-options.php:1148
339
  msgid "Choose a language you would like to enable."
340
  msgstr ""
341
 
342
- #: includes/admin/class-wpglobus-customize-options.php:797
343
  msgid "Press the [Save & Publish] button to confirm."
344
  msgstr ""
345
 
346
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
347
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
348
- #: includes/admin/class-wpglobus-customize-options.php:801,
349
- #: includes/options/class-wpglobus-options.php:1154
350
  msgid "or Add new Language %1$s here %2$s"
351
  msgstr ""
352
 
353
- #: includes/admin/class-wpglobus-customize-options.php:813,
354
- #: includes/options/class-wpglobus-options.php:1203
355
  msgid "Add Languages"
356
  msgstr "Añadir idioma"
357
 
358
- #: includes/admin/class-wpglobus-customize-options.php:833,
359
- #: includes/options/class-wpglobus-options.php:1211
360
  msgid "Language Selector Mode"
361
  msgstr "Modo Selector de Idioma"
362
 
363
- #: includes/admin/class-wpglobus-customize-options.php:838,
364
- #: includes/options/class-wpglobus-options.php:1214
365
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
366
  msgstr "Código de la bandera en dos letras (es, en, ru, it, etc.)"
367
 
368
- #: includes/admin/class-wpglobus-customize-options.php:839,
369
- #: includes/options/class-wpglobus-options.php:1215
370
  msgid "Full Name (English, Russian, Italian, etc.)"
371
  msgstr "Nombre completo (Español, English, Russian, Italian, etc.)"
372
 
373
- #: includes/admin/class-wpglobus-customize-options.php:841,
374
- #: includes/options/class-wpglobus-options.php:1216
375
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
376
  msgstr "Nombre completo con bandera (Español, English, Russian, Italian, etc.)"
377
 
378
- #: includes/admin/class-wpglobus-customize-options.php:842,
379
- #: includes/options/class-wpglobus-options.php:1217
380
  msgid "Flags only"
381
  msgstr "Sólo banderas"
382
 
383
- #: includes/admin/class-wpglobus-customize-options.php:844,
384
- #: includes/options/class-wpglobus-options.php:1212
385
  msgid ""
386
  "Choose the way language name and country flag are shown in the drop-down menu"
387
  msgstr ""
388
  "Elige el nombre del idioma y bandera del país se muestran en el menú "
389
  "desplegable"
390
 
391
- #: includes/admin/class-wpglobus-customize-options.php:879
392
  msgid "select navigation menu"
393
  msgstr ""
394
 
395
- #: includes/admin/class-wpglobus-customize-options.php:915,
396
- #: includes/admin/class-wpglobus-customize-options.php:888,
397
- #: includes/options/class-wpglobus-options.php:1230
398
  msgid "Language Selector Menu"
399
  msgstr "Menú selector de idioma"
400
 
401
- #: includes/admin/class-wpglobus-customize-options.php:920,
402
- #: includes/admin/class-wpglobus-customize-options.php:899,
403
- #: includes/options/class-wpglobus-options.php:1231
404
  msgid "Choose the navigation menu where the language selector will be shown"
405
  msgstr ""
406
  "Selecciona el menú de navegación donde se mostrará el selector de idioma"
407
 
408
- #: includes/admin/class-wpglobus-customize-options.php:898
409
  msgid "No menus have been created yet. Create some."
410
  msgstr ""
411
 
412
- #: includes/admin/class-wpglobus-customize-options.php:940,
413
- #: includes/options/class-wpglobus-options.php:1241
414
  msgid "\"All Pages\" menus Language selector"
415
  msgstr "\"Todas las páginas\" Selector de menús Idioma"
416
 
417
- #: includes/admin/class-wpglobus-customize-options.php:943,
418
- #: includes/options/class-wpglobus-options.php:1243
419
  msgid ""
420
  "Adds language selector to the menus that automatically list all existing "
421
  "pages (using `wp_list_pages`)"
@@ -424,12 +314,9 @@ msgstr ""
424
  "automáticamente en todas las páginas existentes (utilizando ` "
425
  "wp_list_pages` )"
426
 
427
- #: includes/admin/class-wpglobus-customize-options.php:960,
428
- #: includes/options/class-wpglobus-options.php:1356
429
  msgid "Custom CSS"
430
  msgstr "Customizar CSS"
431
 
432
- #: includes/admin/class-wpglobus-customize-options.php:964
433
  msgid ""
434
  "Here you can enter the CSS rules to adjust the language selector menu for "
435
  "your theme. Look at the examples in the `style-samples.css` file."
@@ -437,99 +324,69 @@ msgstr ""
437
  "Aquí puedes introducir las reglas CSS para ajustar el menú de selección de "
438
  "idiomas para tu tema. Mira los ejemplos en el `style-samples.css` file."
439
 
440
- #: includes/admin/class-wpglobus-customize-options.php:983
441
  msgid "Post types"
442
  msgstr "Tipos de Post"
443
 
444
- #: includes/admin/class-wpglobus-customize-options.php:1091
445
  msgid "Uncheck to disable WPGlobus"
446
  msgstr "Desactiva la opción para desactivar WPGlobus"
447
 
448
- #: includes/admin/class-wpglobus-customize-options.php:1125,
449
- #: includes/options/class-wpglobus-options.php:1424
450
  msgid "Redirect"
451
  msgstr "Redirección"
452
 
453
- #: includes/admin/class-wpglobus-customize-options.php:1150,
454
- #: includes/options/class-wpglobus-options.php:1419
455
  msgid "Choose the language automatically, based on:"
456
  msgstr ""
457
 
458
- #: includes/admin/class-wpglobus-customize-options.php:1152,
459
- #: includes/options/class-wpglobus-options.php:1409
460
  msgid "Preferred language set in the browser"
461
  msgstr ""
462
 
463
- #: includes/admin/class-wpglobus-customize-options.php:1153,
464
- #: includes/options/class-wpglobus-options.php:1396
465
  msgid ""
466
  "When a user comes to the site for the first time, try to find the best "
467
  "matching language version of the page."
468
  msgstr ""
469
 
470
- #: includes/admin/class-wpglobus-customize-options.php:1214,
471
- #: includes/admin/class-wpglobus-customize-options.php:1234,
472
- #: includes/admin/class-wpglobus-customize-options.php:1192,
473
- #: includes/options/class-wpglobus-options.php:1368
474
  msgid "Custom JS Code"
475
  msgstr ""
476
 
477
- #: includes/admin/class-wpglobus-customize-options.php:1232,
478
- #: includes/admin/class-wpglobus-customize-options.php:1276
479
  msgid "Title"
480
  msgstr "Título"
481
 
482
- #: includes/admin/class-wpglobus-customize-options.php:1235
483
  msgid "(Paste your JS code here.)"
484
  msgstr ""
485
 
486
- #: includes/admin/class-wpglobus-customize-options.php:1184
487
  msgid ""
488
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
489
  "version 4.9 or later."
490
  msgstr ""
491
 
492
- #: includes/admin/class-wpglobus-customize-options.php:1186
493
  msgid "With your version of WordPress, please use the"
494
  msgstr ""
495
 
496
- #: includes/admin/class-wpglobus-customize-options.php:1188
497
  msgid "WPGlobus Settings page"
498
  msgstr ""
499
 
500
- #: includes/admin/class-wpglobus-customize-options.php:1277
501
  msgid "Label"
502
  msgstr ""
503
 
504
- #: includes/admin/class-wpglobus-customize-options.php:1281
505
  msgid "Description"
506
  msgstr "Decripción"
507
 
508
- #: includes/admin/class-wpglobus-customize-options.php:1345
509
  msgid ""
510
  "Here you can specify which fields should be considered multilingual by "
511
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
512
  msgstr ""
513
 
514
- #: includes/admin/class-wpglobus-customize-options.php:1351,
515
- #: includes/options/class-wpglobus-options.php:608
516
  msgid "Thank you for installing WPGlobus!"
517
  msgstr "Gracias por instalar WPGlobus!"
518
 
519
- #: includes/admin/class-wpglobus-customize-options.php:1355,
520
- #: includes/options/class-wpglobus-options.php:612
521
  msgid "Read About WPGlobus"
522
  msgstr "Leer sobre WPGlobus!"
523
 
524
- #: includes/admin/class-wpglobus-customize-options.php:1358
525
  msgid ""
526
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
527
  msgstr ""
528
  "Click en la <strong>[Idiomas]</strong> pestaña en la parte izquierda de "
529
  "configuración de las opciones."
530
 
531
- #: includes/admin/class-wpglobus-customize-options.php:1363,
532
- #: includes/options/class-wpglobus-options.php:648
533
  msgid ""
534
  "Should you have any questions or comments, please do not hesitate to contact "
535
  "us."
@@ -537,28 +394,19 @@ msgstr ""
537
  "Si tienes alguna pregunta o comentario, por favor no dudes en contactar con "
538
  "nosotros."
539
 
540
- #: includes/admin/class-wpglobus-customize-options.php:1367,
541
- #: includes/options/class-wpglobus-options.php:652
542
  msgid "Sincerely Yours,"
543
  msgstr "Sinceramente tuyo,"
544
 
545
- #: includes/admin/class-wpglobus-customize-options.php:1369,
546
- #: includes/options/class-wpglobus-options.php:654,
547
- #: includes/options/wpglobus-options-header.php:34
548
  msgid "The WPGlobus Team"
549
  msgstr "El Equipo WPGlobus"
550
 
551
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
552
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
553
- #: includes/admin/class-wpglobus-customize-options.php:1388,
554
- #: includes/options/class-wpglobus-options.php:689
555
  msgid ""
556
  "We would hate to see you go. If something goes wrong, do not uninstall "
557
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
558
  msgstr ""
559
 
560
- #: includes/admin/class-wpglobus-customize-options.php:1395,
561
- #: includes/options/class-wpglobus-options.php:696
562
  msgid ""
563
  "Please note that if you deactivate WPGlobus, your site will show all the "
564
  "languages together, mixed up. You will need to remove all translations, "
@@ -567,8 +415,6 @@ msgstr ""
567
 
568
  #. translators: %s: link to the Clean-up Tool
569
  #. translators: %s: link to the Clean-up Tool.
570
- #: includes/admin/class-wpglobus-customize-options.php:1400,
571
- #: includes/options/class-wpglobus-options.php:700
572
  msgid ""
573
  "If there are just a few places, you should edit them manually. To "
574
  "automatically remove all translations at once, you can use the %s. WARNING: "
@@ -578,410 +424,305 @@ msgstr ""
578
 
579
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
580
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
581
- #: includes/admin/class-wpglobus-customize-options.php:1403,
582
- #: includes/options/class-wpglobus-options.php:677
583
  msgid "%1$sClean-up Tool%2$s"
584
  msgstr ""
585
 
586
  #. translators: %s: name of current theme
587
- #: includes/admin/class-wpglobus-customize-options.php:1415
588
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
589
  msgstr ""
590
 
591
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
592
- #: includes/admin/class-wpglobus-customize-options.php:1421
593
  msgid "Please use %1$sWPGlobus options page%2$s instead."
594
  msgstr ""
595
 
596
- #: includes/admin/class-wpglobus-customize-options.php:1485
597
  msgid "Expand/Shrink"
598
  msgstr ""
599
 
600
- #: includes/admin/class-wpglobus-dashboard-news.php:43,
601
- #: includes/admin/class-wpglobus-dashboard-news.php:59
602
  msgid "WPGlobus News"
603
  msgstr ""
604
 
605
- #: includes/admin/class-wpglobus-language-edit.php:197,
606
- #: includes/admin/class-wpglobus-language-edit.php:192
607
  msgid "Options updated"
608
  msgstr "Opciones actualizadas"
609
 
610
- #: includes/admin/class-wpglobus-language-edit.php:272
611
  msgid "Please enter a language code!"
612
  msgstr "Por favor, introduce el código del idioma!"
613
 
614
- #: includes/admin/class-wpglobus-language-edit.php:276
615
  msgid "Language code already exists!"
616
  msgstr "Este código de idioma ya existe!"
617
 
618
- #: includes/admin/class-wpglobus-language-edit.php:280
619
  msgid "Please specify the language flag!"
620
  msgstr "Por favor, especifica la bandera del idioma !"
621
 
622
- #: includes/admin/class-wpglobus-language-edit.php:284
623
  msgid "Please enter the language name!"
624
  msgstr "Por favor introduce el nombre del idioma!"
625
 
626
- #: includes/admin/class-wpglobus-language-edit.php:288
627
  msgid "Please enter the language name in English!"
628
  msgstr "Por favor introduce el nombre del idioma en Inglés!"
629
 
630
- #: includes/admin/class-wpglobus-language-edit.php:292
631
  msgid "Please enter the locale!"
632
  msgstr "Por favor introduce la localización!"
633
 
634
- #: includes/admin/class-wpglobus-language-edit.php:354
635
  msgid "Add Language"
636
  msgstr "Añadir Idioma"
637
 
638
- #: includes/admin/class-wpglobus-language-edit.php:351,
639
- #: includes/admin/class-wpglobus-language-edit.php:462,
640
- #: includes/admin/class-wpglobus-language-edit.php:455
641
  msgid "Delete Language"
642
  msgstr "Eliminar Idioma"
643
 
644
- #: includes/admin/class-wpglobus-language-edit.php:349
645
  msgid "Edit Language"
646
  msgstr "Editar Idioma"
647
 
648
- #: includes/admin/class-wpglobus-language-edit.php:384
649
  msgid "Language Code"
650
  msgstr "Código del Idioma"
651
 
652
- #: includes/admin/class-wpglobus-language-edit.php:391
653
  msgid ""
654
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
655
  msgstr ""
656
  "2-Carta de códigos de idioma ISO para el idioma que deseas insertar. "
657
  "(Ejemplo : en)"
658
 
659
- #: includes/admin/class-wpglobus-language-edit.php:396
660
  msgid "Language flag"
661
  msgstr "Bandera del idioma"
662
 
663
- #: includes/admin/class-wpglobus-language-edit.php:412
664
  msgid "Name"
665
  msgstr "Nombre"
666
 
667
- #: includes/admin/class-wpglobus-language-edit.php:417
668
  msgid ""
669
  "The name of the language in its native alphabet. (Examples: English, Русский)"
670
  msgstr ""
671
  "El nombre de la lengua en su alfabeto nativo. (Ejemplos : Español, English, "
672
  "Русский )"
673
 
674
- #: includes/admin/class-wpglobus-language-edit.php:422
675
  msgid "Name in English"
676
  msgstr "Nombre en Inglés"
677
 
678
- #: includes/admin/class-wpglobus-language-edit.php:427
679
  msgid "The name of the language in English"
680
  msgstr "El nombre del idioma en Inglés"
681
 
682
- #: includes/admin/class-wpglobus-language-edit.php:432,
683
- #: includes/options/fields/table/class-wpglobus-languages-table.php:115
684
  msgid "Locale"
685
  msgstr "Local"
686
 
687
- #: includes/admin/class-wpglobus-language-edit.php:437
688
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
689
  msgstr ""
690
  "PHP / WordPress configuración regional de la lengua . (Ejemplos : en_US, "
691
  "es_ES, ru_RU)"
692
 
693
- #: includes/admin/class-wpglobus-language-edit.php:460
694
  msgid "Are you sure you want to delete?"
695
  msgstr "Estás seguro de que quieres borrarlo?"
696
 
697
- #: includes/admin/class-wpglobus-language-edit.php:447
698
  msgid "Save Changes"
699
  msgstr "Guardar Cambios"
700
 
701
- #: includes/admin/class-wpglobus-language-edit.php:470
702
  msgid "Back to the WPGlobus Settings"
703
  msgstr "Volver a Ajustes WPGlobus"
704
 
705
- #: includes/admin/class-wpglobus-plugin-install.php:308
706
  msgid "Current Version"
707
  msgstr "Versión Actual"
708
 
709
- #: includes/admin/class-wpglobus-plugin-install.php:309
710
  msgid "Get it now!"
711
  msgstr ""
712
 
713
- #: includes/admin/class-wpglobus-plugin-install.php:310
714
  msgid "Premium add-on"
715
  msgstr ""
716
 
717
- #: includes/admin/class-wpglobus-plugin-install.php:311,
718
- #: includes/options/fields/table/class-wpglobus-languages-table.php:472
719
  msgid "Installed"
720
  msgstr "Instalado"
721
 
722
  #. translators: placeholders are for the HTML tags.
723
- #: includes/admin/class-wpglobus-plugin-install.php:319
724
  msgid ""
725
  "If you have already purchased a WPGlobus premium extension, please read "
726
  "%1$sthe installation instructions here%2$s"
727
  msgstr ""
728
 
729
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
730
- #: includes/options/class-wpglobus-options.php:726
731
  msgid "Help Desk"
732
  msgstr ""
733
 
734
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:185
735
  msgid "Email not sent. Please fill in the entire form."
736
  msgstr ""
737
 
738
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:195
739
  msgid ""
740
  "Email not sent. Please verify that your name and email are entered correctly."
741
  msgstr ""
742
 
743
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:216
744
  msgid "Email sent."
745
  msgstr ""
746
 
747
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
748
  msgid "Thank you for using WPGlobus!"
749
  msgstr ""
750
 
751
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
752
  msgid "Our Support Team is here to answer your questions or concerns."
753
  msgstr ""
754
 
755
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
756
  msgid "To help us serve you better:"
757
  msgstr ""
758
 
759
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
760
  msgid ""
761
  "Please check if the problem persists if you switch to a standard WordPress "
762
  "theme."
763
  msgstr ""
764
 
765
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
766
  msgid ""
767
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
768
  msgstr ""
769
 
770
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
771
  msgid "Please fill in and submit the contact form:"
772
  msgstr ""
773
 
774
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
775
  msgid "Please make sure the email address is correct."
776
  msgstr ""
777
 
778
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
779
  msgid "Subject"
780
  msgstr ""
781
 
782
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
783
  msgid "Short description of the problem"
784
  msgstr ""
785
 
786
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
787
  msgid "Detailed description"
788
  msgstr ""
789
 
790
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
791
  msgid "Technical Information"
792
  msgstr ""
793
 
794
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
795
  msgid "This information helps us to find the problem source"
796
  msgstr ""
797
 
798
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:161
799
  msgid ""
800
  "Alternatively, please email %s. Do not forget to copy and paste the "
801
  "technical information to your email message."
802
  msgstr ""
803
 
804
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:89
805
  msgid "WPGlobus Recommends:"
806
  msgstr ""
807
 
808
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:98,
809
- #: includes/options/class-wpglobus-options.php:933
810
  msgid "WPGlobus for WooCommerce"
811
  msgstr ""
812
 
813
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:102
814
  msgid ""
815
  "Translate product titles and descriptions, product categories, tags and "
816
  "attributes."
817
  msgstr ""
818
 
819
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:107
820
  msgid "Get it now:"
821
  msgstr ""
822
 
823
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:117
824
  msgid "WooCommerce Multi-Currency"
825
  msgstr ""
826
 
827
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:121
828
  msgid "Accept multiple currencies in your online store!"
829
  msgstr ""
830
 
831
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:126,
832
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:185
833
  msgid "Check it out:"
834
  msgstr ""
835
 
836
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:195
837
  msgid "To translate permalinks, please activate the module Slug."
838
  msgstr ""
839
 
840
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:183
841
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
842
  msgstr ""
843
 
844
- #: includes/builders/class-wpglobus-builder.php:278,
845
- #: includes/class-wpglobus.php:3577
846
  msgid "Save draft before using extra language."
847
  msgstr ""
848
 
849
- #: includes/builders/class-wpglobus-builder.php:371
850
  msgid "Builder"
851
  msgstr ""
852
 
853
- #: includes/builders/class-wpglobus-builder.php:395
854
  msgid "Сompatibility Settings"
855
  msgstr ""
856
 
857
  #. translators: ON/OFF status of WPGlobus on the edit pages.
858
  #. translators: ON/OFF status of WPGlobus on the edit pages.
859
- #: includes/builders/elementor/class-wpglobus-elementor.php:255,
860
- #: includes/class-wpglobus.php:1263
861
  msgid "ON"
862
  msgstr ""
863
 
864
- #: includes/builders/elementor/class-wpglobus-elementor.php:256,
865
- #: includes/class-wpglobus.php:1264
866
  msgid "Turn off"
867
  msgstr ""
868
 
869
- #: includes/builders/elementor/class-wpglobus-elementor.php:250,
870
- #: includes/class-wpglobus.php:1258
871
  msgid "OFF"
872
  msgstr ""
873
 
874
- #: includes/builders/elementor/class-wpglobus-elementor.php:251,
875
- #: includes/class-wpglobus.php:1259
876
  msgid "Turn on"
877
  msgstr ""
878
 
879
- #: includes/builders/elementor/class-wpglobus-elementor.php:281
880
  msgid "Elementor"
881
  msgstr ""
882
 
883
- #: includes/builders/elementor/class-wpglobus-elementor.php:508
884
  msgid "WPGlobus languages"
885
  msgstr ""
886
 
887
- #: includes/builders/elementor/class-wpglobus-elementor.php:514
888
  msgid "current"
889
  msgstr ""
890
 
891
- #: includes/builders/elementor/class-wpglobus-elementor.php:675
892
  msgid ""
893
  "WPGlobus provides multilingual support for Elementor only when the option "
894
  "%1$s%2$s%3$s is set to %4$s."
895
  msgstr ""
896
 
897
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:228
898
  msgid "Before switching the language, please save draft or publish."
899
  msgstr ""
900
 
901
  #. translators: Metabox title FOR language.
902
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:318
903
  msgctxt "filter__seo_meta_box_title"
904
  msgid "for"
905
  msgstr ""
906
 
907
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:392
908
  msgid "Page is being reloaded. Please wait..."
909
  msgstr ""
910
 
911
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:393
912
  msgid ""
913
  "Before switching the language, please save draft or publish, then reload "
914
  "page."
915
  msgstr ""
916
 
917
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
918
  msgid ""
919
  "WPGlobus provides multilingual support for Elementor only when the option "
920
  "`CSS Print Method` is set to `External File`."
921
  msgstr ""
922
 
923
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
924
  msgid "Open Elementor Settings page"
925
  msgstr ""
926
 
927
- #: includes/class-wpglobus-widget.php:27
928
  msgid "WPGlobus widget"
929
  msgstr "WPGlobus widget"
930
 
931
- #: includes/class-wpglobus-widget.php:29
932
  msgid "Add language switcher"
933
  msgstr "Añadir selector de idiomas"
934
 
935
- #: includes/class-wpglobus-widget.php:32
936
  msgid "Flags"
937
  msgstr "Banderas"
938
 
939
- #: includes/class-wpglobus-widget.php:33
940
  msgid "List"
941
  msgstr "Lista"
942
 
943
- #: includes/class-wpglobus-widget.php:34
944
  msgid "List with flags"
945
  msgstr "Lista con Banderas"
946
 
947
- #: includes/class-wpglobus-widget.php:35
948
  msgid "Select"
949
  msgstr "Seleccionar"
950
 
951
- #: includes/class-wpglobus-widget.php:36
952
  msgid "Select with language code"
953
  msgstr "Seleccionar con el código de idioma"
954
 
955
- #: includes/class-wpglobus-widget.php:37
956
  msgid "Dropdown"
957
  msgstr "Desplegable"
958
 
959
- #: includes/class-wpglobus-widget.php:38
960
  msgid "Dropdown with flags"
961
  msgstr "Desplegable con banderas"
962
 
963
- #: includes/class-wpglobus-widget.php:264
964
  msgid "Selector type"
965
  msgstr "Tipo de selector"
966
 
967
- #: includes/class-wpglobus.php:1447
968
  msgid "You cannot disable the main language."
969
  msgstr "No se puede desactivar el idioma principal."
970
 
971
- #: includes/class-wpglobus.php:1672
972
  msgid "Need a multilingual slug?"
973
  msgstr ""
974
 
975
- #: includes/class-wpglobus.php:1655
976
  msgid "*) Available after the menu is saved."
977
  msgstr "No Se Puede Desactivar el director idioma."
978
 
979
- #: includes/class-wpglobus.php:4025
980
  msgid "You must enable Pretty Permalinks to use WPGlobus."
981
  msgstr ""
982
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
983
 
984
- #: includes/class-wpglobus.php:4027
985
  msgid ""
986
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
987
  "default option."
@@ -989,193 +730,150 @@ msgstr ""
989
  "Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
990
  "selecciona una opción no predeterminada ."
991
 
992
- #: includes/options/class-wpglobus-options.php:281
993
  msgid "Language Selector Menu Style"
994
  msgstr ""
995
 
996
- #: includes/options/class-wpglobus-options.php:282,
997
- #: includes/options/class-wpglobus-options.php:802,
998
- #: includes/options/class-wpglobus-options.php:871
999
  msgid "WPGlobus Plus"
1000
  msgstr ""
1001
 
1002
- #: includes/options/class-wpglobus-options.php:283
1003
  msgid "Drop-down languages menu or Flat (in one line)"
1004
  msgstr ""
1005
 
1006
- #: includes/options/class-wpglobus-options.php:286
1007
  msgid "Do not change"
1008
  msgstr ""
1009
 
1010
- #: includes/options/class-wpglobus-options.php:287
1011
  msgid "Drop-down (vertical)"
1012
  msgstr ""
1013
 
1014
- #: includes/options/class-wpglobus-options.php:288
1015
  msgid "Flat (horizontal)"
1016
  msgstr ""
1017
 
1018
- #: includes/options/class-wpglobus-options.php:343
1019
  msgid ""
1020
  "If you see this message then your browser may not display the WPGlobus "
1021
  "Settings panel properly. Please try another browser."
1022
  msgstr ""
1023
 
1024
- #: includes/options/class-wpglobus-options.php:599,
1025
- #: includes/options/class-wpglobus-options.php:1577
1026
  msgid "Сompatibility"
1027
  msgstr ""
1028
 
1029
  #. translators: placeholders for "strong" tags.
1030
- #: includes/options/class-wpglobus-options.php:616
1031
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
1032
  msgstr ""
1033
 
1034
  #. translators: placeholders for "strong" tags.
1035
- #: includes/options/class-wpglobus-options.php:619
1036
  msgid ""
1037
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
1038
  "the language attributes: name, code, flag icon, etc."
1039
  msgstr ""
1040
 
1041
- #: includes/options/class-wpglobus-options.php:622
1042
  msgid "Important notes"
1043
  msgstr ""
1044
 
1045
  #. translators: placeholders for "strong" tags.
1046
- #: includes/options/class-wpglobus-options.php:624
1047
  msgid "Version %1$s1.9.17%2$s "
1048
  msgstr ""
1049
 
1050
  #. translators: placeholders for "strong" tags.
1051
- #: includes/options/class-wpglobus-options.php:627
1052
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
1053
  msgstr ""
1054
 
1055
  #. translators: placeholders for "strong" tags; compatibility tab link.
1056
- #: includes/options/class-wpglobus-options.php:630
1057
  msgid ""
1058
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
1059
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
1060
  msgstr ""
1061
 
1062
  #. translators: placeholders for "strong" tags; compatibility tab link.
1063
- #: includes/options/class-wpglobus-options.php:633
1064
  msgid ""
1065
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
1066
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
1067
  msgstr ""
1068
 
1069
  #. translators: placeholders for "strong" tags.
1070
- #: includes/options/class-wpglobus-options.php:637
1071
  msgid "Version %1$s2.2.11%2$s "
1072
  msgstr ""
1073
 
1074
- #: includes/options/class-wpglobus-options.php:639
1075
  msgid "Starting from this version"
1076
  msgstr ""
1077
 
1078
  #. translators: placeholders for "strong" tags.
1079
- #: includes/options/class-wpglobus-options.php:642
1080
  msgid ""
1081
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
1082
  "(CPT)."
1083
  msgstr ""
1084
 
1085
  #. translators: placeholders for "strong" tags.
1086
- #: includes/options/class-wpglobus-options.php:645
1087
  msgid ""
1088
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
1089
  "the %1$s[%3$s]%2$s tab."
1090
  msgstr ""
1091
 
1092
- #: includes/options/class-wpglobus-options.php:662
1093
  msgid "Welcome!"
1094
  msgstr "Bienvenido!"
1095
 
1096
- #: includes/options/class-wpglobus-options.php:685
1097
  msgid "Deactivating / Uninstalling"
1098
  msgstr ""
1099
 
1100
- #: includes/options/class-wpglobus-options.php:711
1101
  msgid "Uninstall"
1102
  msgstr ""
1103
 
1104
- #: includes/options/class-wpglobus-options.php:741
1105
  msgid "All add-ons"
1106
  msgstr ""
1107
 
1108
- #: includes/options/class-wpglobus-options.php:756
1109
  msgid "Mobile Menu"
1110
  msgstr ""
1111
 
1112
- #: includes/options/class-wpglobus-options.php:771
1113
  msgid "Language Widgets"
1114
  msgstr ""
1115
 
1116
- #: includes/options/class-wpglobus-options.php:841
1117
  msgid "We Recommend..."
1118
  msgstr ""
1119
 
1120
- #: includes/options/class-wpglobus-options.php:873
1121
  msgid ""
1122
  "Our premium add-on, WPGlobus Plus, will add several features to your "
1123
  "website, such as:"
1124
  msgstr ""
1125
 
1126
- #: includes/options/class-wpglobus-options.php:876
1127
  msgid ""
1128
  "- Ability to write a post in one language and immediately publish it, not "
1129
  "waiting for the translation to other languages;"
1130
  msgstr ""
1131
 
1132
- #: includes/options/class-wpglobus-options.php:879
1133
  msgid "- Set different URLs for each translation;"
1134
  msgstr ""
1135
 
1136
- #: includes/options/class-wpglobus-options.php:882
1137
  msgid ""
1138
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
1139
  "for each translation;"
1140
  msgstr ""
1141
 
1142
- #: includes/options/class-wpglobus-options.php:885
1143
  msgid "- and more..."
1144
  msgstr ""
1145
 
1146
- #: includes/options/class-wpglobus-options.php:888,
1147
- #: includes/options/class-wpglobus-options.php:945,
1148
- #: includes/options/class-wpglobus-options.php:1003
1149
  msgid "Click here to download"
1150
  msgstr ""
1151
 
1152
- #: includes/options/class-wpglobus-options.php:936
1153
  msgid ""
1154
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
1155
  "translate your blog posts and pages to many languages."
1156
  msgstr ""
1157
 
1158
- #: includes/options/class-wpglobus-options.php:939
1159
  msgid "The next step is to translate your WooCommerce-based store!"
1160
  msgstr ""
1161
 
1162
- #: includes/options/class-wpglobus-options.php:942
1163
  msgid ""
1164
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
1165
  "translate product titles and descriptions, categories, tags and attributes."
1166
  msgstr ""
1167
 
1168
- #: includes/options/class-wpglobus-options.php:989
1169
  msgid "Multi-currency"
1170
  msgstr ""
1171
 
1172
- #: includes/options/class-wpglobus-options.php:992
1173
  msgid ""
1174
  "Your WooCommerce-powered store is set to show prices and accept payments in "
1175
  "a single currency only."
1176
  msgstr ""
1177
 
1178
- #: includes/options/class-wpglobus-options.php:996
1179
  msgid ""
1180
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
1181
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
@@ -1183,488 +881,370 @@ msgid ""
1183
  "positioning for global growth!"
1184
  msgstr ""
1185
 
1186
- #: includes/options/class-wpglobus-options.php:1000
1187
  msgid ""
1188
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
1189
  "re-calculating prices on-the-fly."
1190
  msgstr ""
1191
 
1192
- #: includes/options/class-wpglobus-options.php:1037
1193
  msgid "WPGlobus Premium Add-ons"
1194
  msgstr ""
1195
 
1196
- #: includes/options/class-wpglobus-options.php:1039
1197
  msgid ""
1198
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
1199
  "you will be able to:"
1200
  msgstr ""
1201
 
1202
- #: includes/options/class-wpglobus-options.php:1044
1203
  msgid ""
1204
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
1205
  "моя-страница and so on);"
1206
  msgstr ""
1207
 
1208
- #: includes/options/class-wpglobus-options.php:1047
1209
  msgid ""
1210
  "Postpone translation to some languages and <strong>publish only the "
1211
  "translated texts</strong>;"
1212
  msgstr ""
1213
 
1214
- #: includes/options/class-wpglobus-options.php:1050
1215
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
1216
  msgstr ""
1217
 
1218
- #: includes/options/class-wpglobus-options.php:1053
1219
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
1220
  msgstr ""
1221
 
1222
- #: includes/options/class-wpglobus-options.php:1056
1223
  msgid ""
1224
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
1225
  "strong>;"
1226
  msgstr ""
1227
 
1228
- #: includes/options/class-wpglobus-options.php:1060
1229
  msgid "...and more."
1230
  msgstr ""
1231
 
1232
- #: includes/options/class-wpglobus-options.php:1063
1233
  msgid "Click here to visit the WPGlobus Store"
1234
  msgstr ""
1235
 
1236
- #: includes/options/class-wpglobus-options.php:1104
1237
  msgid "Select a language"
1238
  msgstr "Seleccionar un idioma"
1239
 
1240
  #. translators: %3$s placeholder for the icon (actual picture).
1241
- #: includes/options/class-wpglobus-options.php:1133
1242
  msgid ""
1243
  "Place the %1$smain language%2$s of your site at the top of the list by "
1244
  "dragging the %3$s icons."
1245
  msgstr ""
1246
 
1247
  #. translators: placeholders for the "strong" HTML tags.
1248
- #: includes/options/class-wpglobus-options.php:1136
1249
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
1250
  msgstr ""
1251
 
1252
  #. translators: placeholders for the "strong" HTML tags.
1253
- #: includes/options/class-wpglobus-options.php:1139
1254
  msgid "%1$sAdd%2$s more languages using the section below."
1255
  msgstr ""
1256
 
1257
- #: includes/options/class-wpglobus-options.php:1140
1258
  msgid "When done, click the [Save Changes] button."
1259
  msgstr "Cuando hayas terminado, haz clic en el botón [Guardar Cambios] ."
1260
 
1261
  #. translators: %s - placeholder for the "Save Changes" button text.
1262
- #: includes/options/class-wpglobus-options.php:1151
1263
  msgid "Press the %s button to confirm."
1264
  msgstr ""
1265
 
1266
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
1267
- #: includes/options/class-wpglobus-options.php:1168
1268
  msgid "-- none --"
1269
  msgstr ""
1270
 
1271
- #: includes/options/class-wpglobus-options.php:1169
1272
  msgid "All menus"
1273
  msgstr ""
1274
 
1275
- #: includes/options/class-wpglobus-options.php:1182
1276
  msgid "Instructions:"
1277
  msgstr "Instrucciones:"
1278
 
1279
- #: includes/options/class-wpglobus-options.php:1242
1280
  msgid "(Found in some themes)"
1281
  msgstr "(Encontrado en algunos temas)"
1282
 
1283
- #: includes/options/class-wpglobus-options.php:1244
1284
  msgid "Enable"
1285
  msgstr "Habilitar"
1286
 
1287
- #: includes/options/class-wpglobus-options.php:1259
1288
  msgid "Languages table"
1289
  msgstr "Tabla de idiomas"
1290
 
1291
- #: includes/options/class-wpglobus-options.php:1265
1292
  msgid "Use this table to add, edit or delete languages."
1293
  msgstr "Utiliza esta tabla para agregar, editar o eliminar idiomas."
1294
 
1295
- #: includes/options/class-wpglobus-options.php:1266
1296
  msgid "NOTE: you cannot remove the main language."
1297
  msgstr "Nota: No se puede eliminar el idioma principal."
1298
 
1299
- #: includes/options/class-wpglobus-options.php:1314
1300
  msgid "WPGlobus is enabled on these Post Types"
1301
  msgstr ""
1302
 
1303
- #: includes/options/class-wpglobus-options.php:1315
1304
  msgid "Uncheck to disable"
1305
  msgstr ""
1306
 
1307
- #: includes/options/class-wpglobus-options.php:1316
1308
  msgid ""
1309
  "Please note that there are post types, which status is managed by other "
1310
  "plugins and cannot be changed here."
1311
  msgstr ""
1312
 
1313
- #: includes/options/class-wpglobus-options.php:1321
1314
  msgid "Post Types"
1315
  msgstr ""
1316
 
1317
- #: includes/options/class-wpglobus-options.php:1337
1318
  msgid ""
1319
  "You should put here only the code provided by WPGlobus Support. Do not write "
1320
  "anything else in the sections below as it might break the functionality of "
1321
  "your website!"
1322
  msgstr ""
1323
 
1324
- #: includes/options/class-wpglobus-options.php:1378
1325
  msgid "Custom Code"
1326
  msgstr ""
1327
 
1328
- #: includes/options/class-wpglobus-options.php:1486,
1329
- #: includes/options/class-wpglobus-options.php:1618,
1330
- #: includes/options/class-wpglobus-options.php:1729
1331
  msgid "Enabled"
1332
  msgstr ""
1333
 
1334
- #: includes/options/class-wpglobus-options.php:1499
1335
  msgid "Builders support"
1336
  msgstr ""
1337
 
1338
- #: includes/options/class-wpglobus-options.php:1551
1339
  msgid "Builder mode is enabled on these Post Types"
1340
  msgstr ""
1341
 
1342
- #: includes/options/class-wpglobus-options.php:1617
1343
  msgid "Old fashioned language switcher"
1344
  msgstr ""
1345
 
1346
- #: includes/options/class-wpglobus-options.php:1623
1347
  msgid "Block Editor"
1348
  msgstr ""
1349
 
1350
- #: includes/options/class-wpglobus-options.php:1624
1351
  msgid "Block Editor Options"
1352
  msgstr ""
1353
 
1354
- #: includes/options/class-wpglobus-options.php:1653
1355
  msgid ""
1356
  "With the current settings, you will see the following lines in the section "
1357
  "HEAD of your site pages"
1358
  msgstr ""
1359
 
1360
- #: includes/options/class-wpglobus-options.php:1655
1361
  msgid "(example for two languages)"
1362
  msgstr ""
1363
 
1364
- #: includes/options/class-wpglobus-options.php:1702
1365
  msgid ""
1366
  "Tell search engines about localized versions of your pages using the "
1367
  "hreflang tag"
1368
  msgstr ""
1369
 
1370
- #: includes/options/class-wpglobus-options.php:1711
1371
  msgid "Output the hreflang tag as"
1372
  msgstr ""
1373
 
1374
- #: includes/options/class-wpglobus-options.php:1714
1375
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1376
  msgstr ""
1377
 
1378
- #: includes/options/class-wpglobus-options.php:1715
1379
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1380
  msgstr ""
1381
 
1382
- #: includes/options/class-wpglobus-options.php:1716
1383
  msgid "Language code only (en, ru, etc.)"
1384
  msgstr ""
1385
 
1386
- #: includes/options/class-wpglobus-options.php:1728
1387
  msgid "Use the code `x-default` for the main language"
1388
  msgstr ""
1389
 
1390
- #: includes/options/class-wpglobus-options.php:1734
1391
  msgid "Multilingual SEO"
1392
  msgstr ""
1393
 
1394
- #: includes/options/class-wpglobus-options.php:1735
1395
  msgid "Multilingual SEO Options"
1396
  msgstr ""
1397
 
1398
- #: includes/options/class-wpglobus-options.php:1772
1399
  msgid ""
1400
  "With WPGlobus, you can get translations for posts and pages using REST API."
1401
  msgstr ""
1402
 
1403
- #: includes/options/class-wpglobus-options.php:1800,
1404
- #: includes/options/class-wpglobus-options.php:1808,
1405
- #: includes/options/class-wpglobus-options.php:1780,
1406
- #: includes/options/class-wpglobus-options.php:1789
1407
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1408
  msgstr ""
1409
 
1410
- #: includes/options/class-wpglobus-options.php:1777
1411
  msgid ""
1412
  "For demonstration, you can try the first post that WordPress creates at the "
1413
  "initial installation."
1414
  msgstr ""
1415
 
1416
- #: includes/options/class-wpglobus-options.php:1819
1417
  msgid ""
1418
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1419
  "information."
1420
  msgstr ""
1421
 
1422
- #: includes/options/class-wpglobus-options.php:1826
1423
  msgid ""
1424
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1425
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1426
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1427
  msgstr ""
1428
 
1429
- #: includes/options/class-wpglobus-options.php:1839
1430
  msgid "Description:"
1431
  msgstr ""
1432
 
1433
- #: includes/options/class-wpglobus-options.php:1846,
1434
- #: includes/options/class-wpglobus-options.php:1847
1435
  msgid "REST API"
1436
  msgstr ""
1437
 
1438
- #: includes/options/class-wpglobus-options.php:2180
1439
  msgid "Translate strings"
1440
  msgstr ""
1441
 
1442
- #: includes/options/fields/table/class-wpglobus-languages-table.php:66
1443
  msgid "item"
1444
  msgstr "Artículo"
1445
 
1446
- #: includes/options/fields/table/class-wpglobus-languages-table.php:68
1447
  msgid "items"
1448
  msgstr "Artículos"
1449
 
1450
- #: includes/options/fields/table/class-wpglobus-languages-table.php:88
1451
  msgid "Code"
1452
  msgstr "Código"
1453
 
1454
- #: includes/options/fields/table/class-wpglobus-languages-table.php:94
1455
  msgid "Edit"
1456
  msgstr "Editar"
1457
 
1458
- #: includes/options/fields/table/class-wpglobus-languages-table.php:99
1459
  msgid "Delete"
1460
  msgstr "Borrar"
1461
 
1462
- #: includes/options/fields/table/class-wpglobus-languages-table.php:105
1463
  msgid "File"
1464
  msgstr "Archivo"
1465
 
1466
- #: includes/options/fields/table/class-wpglobus-languages-table.php:110
1467
  msgid "Flag"
1468
  msgstr "Bandera"
1469
 
1470
- #: includes/options/fields/table/class-wpglobus-languages-table.php:120
1471
  msgid "Language name"
1472
  msgstr "Nombre del idioma"
1473
 
1474
- #: includes/options/fields/table/class-wpglobus-languages-table.php:125
1475
  msgid "English language name"
1476
  msgstr "Nombre del idioma en Inglés"
1477
 
1478
- #: includes/options/fields/table/class-wpglobus-languages-table.php:151
1479
  msgid "No items found"
1480
  msgstr "No se han encntrado artículos"
1481
 
1482
- #: includes/options/fields/table/class-wpglobus-languages-table.php:164
1483
  msgid "Add new Language"
1484
  msgstr "Añadir nuevo idioma"
1485
 
1486
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:164
1487
  msgid "No items of this type were found."
1488
  msgstr ""
1489
 
1490
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:107
1491
  msgid "Select an item"
1492
  msgstr ""
1493
 
1494
- #: includes/options/templates/compatibility-beta.php:15
1495
  msgid "Multilingual support of this add-on is currently in Beta stage."
1496
  msgstr ""
1497
 
1498
- #: includes/options/templates/compatibility-beta.php:17
1499
  msgid "We do not recommend using it on production sites."
1500
  msgstr ""
1501
 
1502
- #: includes/options/templates/compatibility-beta.php:23
1503
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1504
  msgstr ""
1505
 
1506
- #: includes/options/templates/compatibility.php:69
1507
  msgid "WordPress version"
1508
  msgstr ""
1509
 
1510
- #: includes/options/templates/compatibility.php:44
1511
  msgid "In the WordPress core"
1512
  msgstr ""
1513
 
1514
- #: includes/options/templates/compatibility.php:46
1515
  msgid "Core"
1516
  msgstr ""
1517
 
1518
- #: includes/options/templates/compatibility.php:52,
1519
- #: includes/options/templates/compatibility.php:79
1520
  msgid "Current version"
1521
  msgstr ""
1522
 
1523
- #: includes/options/templates/compatibility.php:53,
1524
- #: includes/options/templates/compatibility.php:81
1525
  msgid "Stage"
1526
  msgstr ""
1527
 
1528
- #: includes/options/templates/compatibility.php:54,
1529
- #: includes/options/templates/compatibility.php:82
1530
  msgid "Status"
1531
  msgstr ""
1532
 
1533
- #: includes/options/templates/compatibility.php:60
1534
  msgid "Block editor"
1535
  msgstr ""
1536
 
1537
- #: includes/options/templates/compatibility.php:62
1538
  msgid "production"
1539
  msgstr ""
1540
 
1541
- #: includes/options/templates/compatibility.php:73
1542
  msgid "List of supported add-ons"
1543
  msgstr ""
1544
 
1545
- #: includes/options/templates/compatibility.php:78
1546
  msgid "Add-on"
1547
  msgstr ""
1548
 
1549
- #: includes/options/templates/compatibility.php:80
1550
  msgid "Supported minimum version"
1551
  msgstr ""
1552
 
1553
- #: includes/options/templates/compatibility.php:105
1554
  msgid "Not installed"
1555
  msgstr ""
1556
 
1557
- #: includes/options/templates/compatibility.php:102
1558
  msgid "Installed, inactive"
1559
  msgstr ""
1560
 
1561
- #: includes/options/templates/compatibility.php:100
1562
  msgid "Active"
1563
  msgstr "Activo"
1564
 
1565
- #: includes/options/templates/customize-intro.php:35
1566
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1567
  msgstr ""
1568
 
1569
- #: includes/options/templates/customize-intro.php:39
1570
  msgid "However, some themes do not follow all WordPress standards strictly."
1571
  msgstr ""
1572
 
1573
- #: includes/options/templates/customize-intro.php:41
1574
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1575
  msgstr ""
1576
 
1577
- #: includes/options/templates/customize-intro.php:45
1578
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1579
  msgstr ""
1580
 
1581
- #: includes/options/templates/customize-intro.php:53
1582
  msgid ""
1583
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1584
  "With those themes, WPGlobus Customizer is switched off by default"
1585
  msgstr ""
1586
 
1587
- #: includes/options/templates/customize-intro.php:60
1588
  msgid "The currently active theme is"
1589
  msgstr ""
1590
 
1591
- #: includes/options/templates/customize-intro.php:66
1592
  msgid "In the current version, WPGlobus Customizer does not support"
1593
  msgstr ""
1594
 
1595
- #: includes/options/templates/customize-intro.php:70
1596
  msgid "translation of the navigation menus"
1597
  msgstr ""
1598
 
1599
- #: includes/options/templates/customize-intro.php:72
1600
  msgid "to translate, please go to"
1601
  msgstr ""
1602
 
1603
- #: includes/options/templates/customize-intro.php:81
1604
  msgid "Go to Customizer"
1605
  msgstr ""
1606
 
1607
- #: includes/options/templates/customize-intro.php:88
1608
  msgid "is undefined"
1609
  msgstr ""
1610
 
1611
- #: includes/options/templates/customize-intro.php:85
1612
  msgid "is set to"
1613
  msgstr ""
1614
 
1615
- #: includes/options/templates/customize-intro.php:94
1616
  msgid "by adding to the file wp-config.php"
1617
  msgstr ""
1618
 
1619
- #: includes/options/templates/customize-intro.php:96
1620
  msgid "now"
1621
  msgstr ""
1622
 
1623
- #: includes/options/wpglobus-options-header.php:25
1624
  msgid "We rely on your support!"
1625
  msgstr ""
1626
 
1627
- #: includes/options/wpglobus-options-header.php:28
1628
  msgid "Please consider a small donation to support the future development."
1629
  msgstr ""
1630
 
1631
- #: includes/options/wpglobus-options-header.php:32
1632
  msgid "Thank you!"
1633
  msgstr "Gracias!"
1634
 
1635
- #: includes/options/wpglobus-options-header.php:55
1636
  msgid "WPGlobus Plus!"
1637
  msgstr "WPGlobus Plus!"
1638
 
1639
- #: includes/options/wpglobus-options-header.php:58
1640
  msgid ""
1641
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1642
  "separate publishing and more! "
1643
  msgstr ""
1644
 
1645
- #: includes/options/wpglobus-options-header.php:64
1646
  msgid "Get WPGlobus Plus now!"
1647
  msgstr ""
1648
 
1649
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1650
  msgid ""
1651
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1652
  "the current version."
1653
  msgstr ""
1654
 
1655
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1656
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1657
  msgstr ""
1658
 
1659
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1660
  msgid "WPGlobus warning: "
1661
  msgstr ""
1662
 
1663
- #: wpglobus.php:13
1664
  msgid "https://github.com/WPGlobus/WPGlobus"
1665
  msgstr ""
1666
 
1667
- #: wpglobus.php:14
1668
  msgid ""
1669
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1670
  "widgets and even custom fields - in multiple languages!"
@@ -1672,6 +1252,5 @@ msgstr ""
1672
  "WordPress Globalization / Plugin multilenguaje. Mensajes, páginas, menús, "
1673
  "widgets e incluso campos personalizados - en varios idiomas !"
1674
 
1675
- #: wpglobus.php:19
1676
  msgid "https://wpglobus.com/"
1677
  msgstr ""
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
 
 
 
 
 
19
  msgid "Guide"
20
  msgstr "Guía"
21
 
 
 
22
  msgid "WPGlobus Help Desk"
23
  msgstr ""
24
 
 
 
 
 
 
 
 
25
  msgid "Add-ons"
26
  msgstr "Complementos"
27
 
 
28
  msgid "Quick Start"
29
  msgstr "Inicio Rápido"
30
 
 
 
31
  msgid "FAQ"
32
  msgstr "FAQ"
33
 
 
34
  msgid ""
35
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
36
  msgstr ""
37
 
 
38
  msgid ""
39
  "The mbstring extension is required for the full UTF-8 compatibility and "
40
  "better performance. Without it, some parts of WordPress and WPGlobus may "
42
  "administrator."
43
  msgstr ""
44
 
 
45
  msgid "Go to WPGlobus Settings"
46
  msgstr "Ir a Ajustes WPGlobus"
47
 
 
48
  msgid "Easy as 1-2-3:"
49
  msgstr "Fácil en 1-2-3:"
50
 
 
51
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
52
  msgstr "Ve al menú de administración WPGlobus y elege los países/idiomas;"
53
 
 
54
  msgid ""
55
  "Enter the translations to the posts, pages, categories, tags and menus using "
56
  "a clean and simple interface."
58
  "Introduce las traducciones a los mensajes, páginas, categorías,etiquetas y "
59
  "menús usando una interfaz limpia y simple."
60
 
 
61
  msgid ""
62
  "Switch languages at the front-end using a drop-down menu with language names "
63
  "and country flags."
65
  "Cambia de idioma en el front-end utilizando un menú desplegable con los "
66
  "nombres de las lenguas y banderas de los países ."
67
 
 
68
  msgid "Links:"
69
  msgstr "Enlaces:"
70
 
 
71
  msgid "FAQs"
72
  msgstr "Preguntas Frecuentes"
73
 
 
74
  msgid "Contact Us"
75
  msgstr "Contáctanos"
76
 
 
77
  msgid "Please give us 5 stars!"
78
  msgstr "Por favor danos 5 estrellas!"
79
 
 
80
  msgid "WPGlobus does not translate texts automatically!"
81
  msgstr ""
82
 
 
83
  msgid ""
84
  "There are many translation companies and individual translators who can help "
85
  "you write and proofread the texts."
86
  msgstr ""
87
 
 
88
  msgid ""
89
  "When you choose a translator, please look at their native language, country "
90
  "of residence, specialization and knowledge of WordPress."
91
  msgstr ""
92
 
93
  #. translators: %s are used to insert HTML link. Keep them in place.
 
94
  msgid ""
95
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
96
  "website. This is not an endorsement, just a courtesy. Please contact them "
97
  "directly and let us know how did it work for you!"
98
  msgstr ""
99
 
 
100
  msgid "Important notes:"
101
  msgstr ""
102
 
 
103
  msgid ""
104
  "WPGlobus only supports the localization URLs in the form of <code>example."
105
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
110
  "subdominios <code>example.com</code> ni consultas lingüísticas <code>example."
111
  "com?lang=xx</code>."
112
 
 
113
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
114
  msgstr ""
115
  "En algunos temas y plugins <strong>No está listo el multilenguaje</strong>."
116
 
 
117
  msgid ""
118
  "They might display some texts with no translation, or with all languages "
119
  "mixed together."
122
  "mezclados entre sí."
123
 
124
  #. translators: %s are used to insert HTML link. Keep them in place.
 
125
  msgid ""
126
  "Please contact the theme / plugin author. If they are unable to assist, "
127
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
130
  "ayudarte, considera % s la contratación del WPGlobus % s para escribir un "
131
  "código personalizado para tí."
132
 
 
133
  msgid "Language was set on your profile page"
134
  msgstr ""
135
 
 
136
  msgid "Add"
137
  msgstr "Añadir"
138
 
 
 
139
  msgid "Multilingual Everything!"
140
  msgstr "Multilenguaje Total!"
141
 
 
 
142
  msgid ""
143
  "WPGlobus is a family of WordPress plugins assisting you in making "
144
  "multilingual WordPress blogs and sites."
146
  "WPGlobus es una familia de plugins de WordPress que ayudan en la traducción "
147
  "de blogs de WordPress."
148
 
 
149
  msgid "Remove the WPGlobus settings (not recommended)"
150
  msgstr ""
151
 
 
152
  msgid "Clean-up Tool"
153
  msgstr ""
154
 
 
155
  msgid "Support"
156
  msgstr "Soporte"
157
 
 
158
  msgid ""
159
  "WARNING: this operation is non-reversible. It is strongly recommended that "
160
  "you backup your database before proceeding."
161
  msgstr ""
162
 
 
163
  msgid ""
164
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
165
  "By running it, you will remove ALL translations you have entered to your "
169
  "so on."
170
  msgstr ""
171
 
 
172
  msgid ""
173
  "Make sure that your active theme does not have any code related to WPGlobus. "
174
  "Such code could be added by you or by a 3rd party developer. If that code "
177
  msgstr ""
178
 
179
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
 
180
  msgid ""
181
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
182
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
183
  msgstr ""
184
 
 
185
  msgid "You are about to clean the content of the following database tables:"
186
  msgstr ""
187
 
 
188
  msgid "The operations log"
189
  msgstr ""
190
 
 
191
  msgid ""
192
  "We are going to write a detailed log of all the database changes performed. "
193
  "It should help in the case you need to restore something important. The log "
194
  "will be written to the file:"
195
  msgstr ""
196
 
 
197
  msgid ""
198
  "Uncheck if you do not want to write the operations log (we recommend to keep "
199
  "it checked)"
200
  msgstr ""
201
 
 
202
  msgid "You have been warned..."
203
  msgstr ""
204
 
 
205
  msgid "Please confirm by checking the box below:"
206
  msgstr ""
207
 
 
208
  msgid ""
209
  "I have read and understood everything written on this page. I am aware that "
210
  "by using this tool I may loose some content of my website. I have made a "
212
  "responsible for the results."
213
  msgstr ""
214
 
 
215
  msgid "YES, I CONFIRM"
216
  msgstr ""
217
 
 
218
  msgid "Process with the Clean-up"
219
  msgstr ""
220
 
 
 
 
 
221
  msgid "Default"
222
  msgstr "Predefinido"
223
 
 
224
  msgid "Section"
225
  msgstr ""
226
 
 
227
  msgid "Show all sections"
228
  msgstr ""
229
 
 
230
  msgid "Save &amp; Reload"
231
  msgstr ""
232
 
 
 
 
233
  msgid "WPGlobus"
234
  msgstr ""
235
 
 
236
  msgid ""
237
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
238
  msgstr ""
239
 
 
240
  msgid "Fields Settings"
241
  msgstr ""
242
 
 
243
  msgid "WPGlobus Settings"
244
  msgstr ""
245
 
 
246
  msgid "Help"
247
  msgstr ""
248
 
 
 
249
  msgid "Languages"
250
  msgstr "Idiomas"
251
 
 
 
252
  msgid "Enabled Languages"
253
  msgstr "Idiomas Habilitados"
254
 
 
 
255
  msgid "These languages are currently enabled on your site."
256
  msgstr "Estos idiomas están habilitados actualmente en su sitio."
257
 
 
 
258
  msgid "Choose a language you would like to enable."
259
  msgstr ""
260
 
 
261
  msgid "Press the [Save & Publish] button to confirm."
262
  msgstr ""
263
 
264
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
265
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
 
 
266
  msgid "or Add new Language %1$s here %2$s"
267
  msgstr ""
268
 
 
 
269
  msgid "Add Languages"
270
  msgstr "Añadir idioma"
271
 
 
 
272
  msgid "Language Selector Mode"
273
  msgstr "Modo Selector de Idioma"
274
 
 
 
275
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
276
  msgstr "Código de la bandera en dos letras (es, en, ru, it, etc.)"
277
 
 
 
278
  msgid "Full Name (English, Russian, Italian, etc.)"
279
  msgstr "Nombre completo (Español, English, Russian, Italian, etc.)"
280
 
 
 
281
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
282
  msgstr "Nombre completo con bandera (Español, English, Russian, Italian, etc.)"
283
 
 
 
284
  msgid "Flags only"
285
  msgstr "Sólo banderas"
286
 
 
 
287
  msgid ""
288
  "Choose the way language name and country flag are shown in the drop-down menu"
289
  msgstr ""
290
  "Elige el nombre del idioma y bandera del país se muestran en el menú "
291
  "desplegable"
292
 
 
293
  msgid "select navigation menu"
294
  msgstr ""
295
 
 
 
 
296
  msgid "Language Selector Menu"
297
  msgstr "Menú selector de idioma"
298
 
 
 
 
299
  msgid "Choose the navigation menu where the language selector will be shown"
300
  msgstr ""
301
  "Selecciona el menú de navegación donde se mostrará el selector de idioma"
302
 
 
303
  msgid "No menus have been created yet. Create some."
304
  msgstr ""
305
 
 
 
306
  msgid "\"All Pages\" menus Language selector"
307
  msgstr "\"Todas las páginas\" Selector de menús Idioma"
308
 
 
 
309
  msgid ""
310
  "Adds language selector to the menus that automatically list all existing "
311
  "pages (using `wp_list_pages`)"
314
  "automáticamente en todas las páginas existentes (utilizando ` "
315
  "wp_list_pages` )"
316
 
 
 
317
  msgid "Custom CSS"
318
  msgstr "Customizar CSS"
319
 
 
320
  msgid ""
321
  "Here you can enter the CSS rules to adjust the language selector menu for "
322
  "your theme. Look at the examples in the `style-samples.css` file."
324
  "Aquí puedes introducir las reglas CSS para ajustar el menú de selección de "
325
  "idiomas para tu tema. Mira los ejemplos en el `style-samples.css` file."
326
 
 
327
  msgid "Post types"
328
  msgstr "Tipos de Post"
329
 
 
330
  msgid "Uncheck to disable WPGlobus"
331
  msgstr "Desactiva la opción para desactivar WPGlobus"
332
 
 
 
333
  msgid "Redirect"
334
  msgstr "Redirección"
335
 
 
 
336
  msgid "Choose the language automatically, based on:"
337
  msgstr ""
338
 
 
 
339
  msgid "Preferred language set in the browser"
340
  msgstr ""
341
 
 
 
342
  msgid ""
343
  "When a user comes to the site for the first time, try to find the best "
344
  "matching language version of the page."
345
  msgstr ""
346
 
 
 
 
 
347
  msgid "Custom JS Code"
348
  msgstr ""
349
 
 
 
350
  msgid "Title"
351
  msgstr "Título"
352
 
 
353
  msgid "(Paste your JS code here.)"
354
  msgstr ""
355
 
 
356
  msgid ""
357
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
358
  "version 4.9 or later."
359
  msgstr ""
360
 
 
361
  msgid "With your version of WordPress, please use the"
362
  msgstr ""
363
 
 
364
  msgid "WPGlobus Settings page"
365
  msgstr ""
366
 
 
367
  msgid "Label"
368
  msgstr ""
369
 
 
370
  msgid "Description"
371
  msgstr "Decripción"
372
 
 
373
  msgid ""
374
  "Here you can specify which fields should be considered multilingual by "
375
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
376
  msgstr ""
377
 
 
 
378
  msgid "Thank you for installing WPGlobus!"
379
  msgstr "Gracias por instalar WPGlobus!"
380
 
 
 
381
  msgid "Read About WPGlobus"
382
  msgstr "Leer sobre WPGlobus!"
383
 
 
384
  msgid ""
385
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
386
  msgstr ""
387
  "Click en la <strong>[Idiomas]</strong> pestaña en la parte izquierda de "
388
  "configuración de las opciones."
389
 
 
 
390
  msgid ""
391
  "Should you have any questions or comments, please do not hesitate to contact "
392
  "us."
394
  "Si tienes alguna pregunta o comentario, por favor no dudes en contactar con "
395
  "nosotros."
396
 
 
 
397
  msgid "Sincerely Yours,"
398
  msgstr "Sinceramente tuyo,"
399
 
 
 
 
400
  msgid "The WPGlobus Team"
401
  msgstr "El Equipo WPGlobus"
402
 
403
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
404
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
405
  msgid ""
406
  "We would hate to see you go. If something goes wrong, do not uninstall "
407
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
408
  msgstr ""
409
 
 
 
410
  msgid ""
411
  "Please note that if you deactivate WPGlobus, your site will show all the "
412
  "languages together, mixed up. You will need to remove all translations, "
415
 
416
  #. translators: %s: link to the Clean-up Tool
417
  #. translators: %s: link to the Clean-up Tool.
 
 
418
  msgid ""
419
  "If there are just a few places, you should edit them manually. To "
420
  "automatically remove all translations at once, you can use the %s. WARNING: "
424
 
425
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
426
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
427
  msgid "%1$sClean-up Tool%2$s"
428
  msgstr ""
429
 
430
  #. translators: %s: name of current theme
 
431
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
432
  msgstr ""
433
 
434
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
435
  msgid "Please use %1$sWPGlobus options page%2$s instead."
436
  msgstr ""
437
 
 
438
  msgid "Expand/Shrink"
439
  msgstr ""
440
 
 
 
441
  msgid "WPGlobus News"
442
  msgstr ""
443
 
 
 
444
  msgid "Options updated"
445
  msgstr "Opciones actualizadas"
446
 
 
447
  msgid "Please enter a language code!"
448
  msgstr "Por favor, introduce el código del idioma!"
449
 
 
450
  msgid "Language code already exists!"
451
  msgstr "Este código de idioma ya existe!"
452
 
 
453
  msgid "Please specify the language flag!"
454
  msgstr "Por favor, especifica la bandera del idioma !"
455
 
 
456
  msgid "Please enter the language name!"
457
  msgstr "Por favor introduce el nombre del idioma!"
458
 
 
459
  msgid "Please enter the language name in English!"
460
  msgstr "Por favor introduce el nombre del idioma en Inglés!"
461
 
 
462
  msgid "Please enter the locale!"
463
  msgstr "Por favor introduce la localización!"
464
 
 
465
  msgid "Add Language"
466
  msgstr "Añadir Idioma"
467
 
 
 
 
468
  msgid "Delete Language"
469
  msgstr "Eliminar Idioma"
470
 
 
471
  msgid "Edit Language"
472
  msgstr "Editar Idioma"
473
 
 
474
  msgid "Language Code"
475
  msgstr "Código del Idioma"
476
 
 
477
  msgid ""
478
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
479
  msgstr ""
480
  "2-Carta de códigos de idioma ISO para el idioma que deseas insertar. "
481
  "(Ejemplo : en)"
482
 
 
483
  msgid "Language flag"
484
  msgstr "Bandera del idioma"
485
 
 
486
  msgid "Name"
487
  msgstr "Nombre"
488
 
 
489
  msgid ""
490
  "The name of the language in its native alphabet. (Examples: English, Русский)"
491
  msgstr ""
492
  "El nombre de la lengua en su alfabeto nativo. (Ejemplos : Español, English, "
493
  "Русский )"
494
 
 
495
  msgid "Name in English"
496
  msgstr "Nombre en Inglés"
497
 
 
498
  msgid "The name of the language in English"
499
  msgstr "El nombre del idioma en Inglés"
500
 
 
 
501
  msgid "Locale"
502
  msgstr "Local"
503
 
 
504
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
505
  msgstr ""
506
  "PHP / WordPress configuración regional de la lengua . (Ejemplos : en_US, "
507
  "es_ES, ru_RU)"
508
 
 
509
  msgid "Are you sure you want to delete?"
510
  msgstr "Estás seguro de que quieres borrarlo?"
511
 
 
512
  msgid "Save Changes"
513
  msgstr "Guardar Cambios"
514
 
 
515
  msgid "Back to the WPGlobus Settings"
516
  msgstr "Volver a Ajustes WPGlobus"
517
 
 
518
  msgid "Current Version"
519
  msgstr "Versión Actual"
520
 
 
521
  msgid "Get it now!"
522
  msgstr ""
523
 
 
524
  msgid "Premium add-on"
525
  msgstr ""
526
 
 
 
527
  msgid "Installed"
528
  msgstr "Instalado"
529
 
530
  #. translators: placeholders are for the HTML tags.
 
531
  msgid ""
532
  "If you have already purchased a WPGlobus premium extension, please read "
533
  "%1$sthe installation instructions here%2$s"
534
  msgstr ""
535
 
 
 
536
  msgid "Help Desk"
537
  msgstr ""
538
 
 
539
  msgid "Email not sent. Please fill in the entire form."
540
  msgstr ""
541
 
 
542
  msgid ""
543
  "Email not sent. Please verify that your name and email are entered correctly."
544
  msgstr ""
545
 
 
546
  msgid "Email sent."
547
  msgstr ""
548
 
 
549
  msgid "Thank you for using WPGlobus!"
550
  msgstr ""
551
 
 
552
  msgid "Our Support Team is here to answer your questions or concerns."
553
  msgstr ""
554
 
 
555
  msgid "To help us serve you better:"
556
  msgstr ""
557
 
 
558
  msgid ""
559
  "Please check if the problem persists if you switch to a standard WordPress "
560
  "theme."
561
  msgstr ""
562
 
 
563
  msgid ""
564
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
565
  msgstr ""
566
 
 
567
  msgid "Please fill in and submit the contact form:"
568
  msgstr ""
569
 
 
570
  msgid "Please make sure the email address is correct."
571
  msgstr ""
572
 
 
573
  msgid "Subject"
574
  msgstr ""
575
 
 
576
  msgid "Short description of the problem"
577
  msgstr ""
578
 
 
579
  msgid "Detailed description"
580
  msgstr ""
581
 
 
582
  msgid "Technical Information"
583
  msgstr ""
584
 
 
585
  msgid "This information helps us to find the problem source"
586
  msgstr ""
587
 
 
588
  msgid ""
589
  "Alternatively, please email %s. Do not forget to copy and paste the "
590
  "technical information to your email message."
591
  msgstr ""
592
 
 
593
  msgid "WPGlobus Recommends:"
594
  msgstr ""
595
 
 
 
596
  msgid "WPGlobus for WooCommerce"
597
  msgstr ""
598
 
 
599
  msgid ""
600
  "Translate product titles and descriptions, product categories, tags and "
601
  "attributes."
602
  msgstr ""
603
 
 
604
  msgid "Get it now:"
605
  msgstr ""
606
 
 
607
  msgid "WooCommerce Multi-Currency"
608
  msgstr ""
609
 
 
610
  msgid "Accept multiple currencies in your online store!"
611
  msgstr ""
612
 
 
 
613
  msgid "Check it out:"
614
  msgstr ""
615
 
 
616
  msgid "To translate permalinks, please activate the module Slug."
617
  msgstr ""
618
 
 
619
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
620
  msgstr ""
621
 
 
 
622
  msgid "Save draft before using extra language."
623
  msgstr ""
624
 
 
625
  msgid "Builder"
626
  msgstr ""
627
 
 
628
  msgid "Сompatibility Settings"
629
  msgstr ""
630
 
631
  #. translators: ON/OFF status of WPGlobus on the edit pages.
632
  #. translators: ON/OFF status of WPGlobus on the edit pages.
 
 
633
  msgid "ON"
634
  msgstr ""
635
 
 
 
636
  msgid "Turn off"
637
  msgstr ""
638
 
 
 
639
  msgid "OFF"
640
  msgstr ""
641
 
 
 
642
  msgid "Turn on"
643
  msgstr ""
644
 
 
645
  msgid "Elementor"
646
  msgstr ""
647
 
 
648
  msgid "WPGlobus languages"
649
  msgstr ""
650
 
 
651
  msgid "current"
652
  msgstr ""
653
 
 
654
  msgid ""
655
  "WPGlobus provides multilingual support for Elementor only when the option "
656
  "%1$s%2$s%3$s is set to %4$s."
657
  msgstr ""
658
 
 
659
  msgid "Before switching the language, please save draft or publish."
660
  msgstr ""
661
 
662
  #. translators: Metabox title FOR language.
 
663
  msgctxt "filter__seo_meta_box_title"
664
  msgid "for"
665
  msgstr ""
666
 
 
667
  msgid "Page is being reloaded. Please wait..."
668
  msgstr ""
669
 
 
670
  msgid ""
671
  "Before switching the language, please save draft or publish, then reload "
672
  "page."
673
  msgstr ""
674
 
 
675
  msgid ""
676
  "WPGlobus provides multilingual support for Elementor only when the option "
677
  "`CSS Print Method` is set to `External File`."
678
  msgstr ""
679
 
 
680
  msgid "Open Elementor Settings page"
681
  msgstr ""
682
 
 
683
  msgid "WPGlobus widget"
684
  msgstr "WPGlobus widget"
685
 
 
686
  msgid "Add language switcher"
687
  msgstr "Añadir selector de idiomas"
688
 
 
689
  msgid "Flags"
690
  msgstr "Banderas"
691
 
 
692
  msgid "List"
693
  msgstr "Lista"
694
 
 
695
  msgid "List with flags"
696
  msgstr "Lista con Banderas"
697
 
 
698
  msgid "Select"
699
  msgstr "Seleccionar"
700
 
 
701
  msgid "Select with language code"
702
  msgstr "Seleccionar con el código de idioma"
703
 
 
704
  msgid "Dropdown"
705
  msgstr "Desplegable"
706
 
 
707
  msgid "Dropdown with flags"
708
  msgstr "Desplegable con banderas"
709
 
 
710
  msgid "Selector type"
711
  msgstr "Tipo de selector"
712
 
 
713
  msgid "You cannot disable the main language."
714
  msgstr "No se puede desactivar el idioma principal."
715
 
 
716
  msgid "Need a multilingual slug?"
717
  msgstr ""
718
 
 
719
  msgid "*) Available after the menu is saved."
720
  msgstr "No Se Puede Desactivar el director idioma."
721
 
 
722
  msgid "You must enable Pretty Permalinks to use WPGlobus."
723
  msgstr ""
724
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
725
 
 
726
  msgid ""
727
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
728
  "default option."
730
  "Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
731
  "selecciona una opción no predeterminada ."
732
 
 
733
  msgid "Language Selector Menu Style"
734
  msgstr ""
735
 
 
 
 
736
  msgid "WPGlobus Plus"
737
  msgstr ""
738
 
 
739
  msgid "Drop-down languages menu or Flat (in one line)"
740
  msgstr ""
741
 
 
742
  msgid "Do not change"
743
  msgstr ""
744
 
 
745
  msgid "Drop-down (vertical)"
746
  msgstr ""
747
 
 
748
  msgid "Flat (horizontal)"
749
  msgstr ""
750
 
 
751
  msgid ""
752
  "If you see this message then your browser may not display the WPGlobus "
753
  "Settings panel properly. Please try another browser."
754
  msgstr ""
755
 
 
 
756
  msgid "Сompatibility"
757
  msgstr ""
758
 
759
  #. translators: placeholders for "strong" tags.
 
760
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
761
  msgstr ""
762
 
763
  #. translators: placeholders for "strong" tags.
 
764
  msgid ""
765
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
766
  "the language attributes: name, code, flag icon, etc."
767
  msgstr ""
768
 
 
769
  msgid "Important notes"
770
  msgstr ""
771
 
772
  #. translators: placeholders for "strong" tags.
 
773
  msgid "Version %1$s1.9.17%2$s "
774
  msgstr ""
775
 
776
  #. translators: placeholders for "strong" tags.
 
777
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
778
  msgstr ""
779
 
780
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
781
  msgid ""
782
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
783
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
784
  msgstr ""
785
 
786
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
787
  msgid ""
788
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
789
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
790
  msgstr ""
791
 
792
  #. translators: placeholders for "strong" tags.
 
793
  msgid "Version %1$s2.2.11%2$s "
794
  msgstr ""
795
 
 
796
  msgid "Starting from this version"
797
  msgstr ""
798
 
799
  #. translators: placeholders for "strong" tags.
 
800
  msgid ""
801
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
802
  "(CPT)."
803
  msgstr ""
804
 
805
  #. translators: placeholders for "strong" tags.
 
806
  msgid ""
807
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
808
  "the %1$s[%3$s]%2$s tab."
809
  msgstr ""
810
 
 
811
  msgid "Welcome!"
812
  msgstr "Bienvenido!"
813
 
 
814
  msgid "Deactivating / Uninstalling"
815
  msgstr ""
816
 
 
817
  msgid "Uninstall"
818
  msgstr ""
819
 
 
820
  msgid "All add-ons"
821
  msgstr ""
822
 
 
823
  msgid "Mobile Menu"
824
  msgstr ""
825
 
 
826
  msgid "Language Widgets"
827
  msgstr ""
828
 
 
829
  msgid "We Recommend..."
830
  msgstr ""
831
 
 
832
  msgid ""
833
  "Our premium add-on, WPGlobus Plus, will add several features to your "
834
  "website, such as:"
835
  msgstr ""
836
 
 
837
  msgid ""
838
  "- Ability to write a post in one language and immediately publish it, not "
839
  "waiting for the translation to other languages;"
840
  msgstr ""
841
 
 
842
  msgid "- Set different URLs for each translation;"
843
  msgstr ""
844
 
 
845
  msgid ""
846
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
847
  "for each translation;"
848
  msgstr ""
849
 
 
850
  msgid "- and more..."
851
  msgstr ""
852
 
 
 
 
853
  msgid "Click here to download"
854
  msgstr ""
855
 
 
856
  msgid ""
857
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
858
  "translate your blog posts and pages to many languages."
859
  msgstr ""
860
 
 
861
  msgid "The next step is to translate your WooCommerce-based store!"
862
  msgstr ""
863
 
 
864
  msgid ""
865
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
866
  "translate product titles and descriptions, categories, tags and attributes."
867
  msgstr ""
868
 
 
869
  msgid "Multi-currency"
870
  msgstr ""
871
 
 
872
  msgid ""
873
  "Your WooCommerce-powered store is set to show prices and accept payments in "
874
  "a single currency only."
875
  msgstr ""
876
 
 
877
  msgid ""
878
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
879
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
881
  "positioning for global growth!"
882
  msgstr ""
883
 
 
884
  msgid ""
885
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
886
  "re-calculating prices on-the-fly."
887
  msgstr ""
888
 
 
889
  msgid "WPGlobus Premium Add-ons"
890
  msgstr ""
891
 
 
892
  msgid ""
893
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
894
  "you will be able to:"
895
  msgstr ""
896
 
 
897
  msgid ""
898
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
899
  "моя-страница and so on);"
900
  msgstr ""
901
 
 
902
  msgid ""
903
  "Postpone translation to some languages and <strong>publish only the "
904
  "translated texts</strong>;"
905
  msgstr ""
906
 
 
907
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
908
  msgstr ""
909
 
 
910
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
911
  msgstr ""
912
 
 
913
  msgid ""
914
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
915
  "strong>;"
916
  msgstr ""
917
 
 
918
  msgid "...and more."
919
  msgstr ""
920
 
 
921
  msgid "Click here to visit the WPGlobus Store"
922
  msgstr ""
923
 
 
924
  msgid "Select a language"
925
  msgstr "Seleccionar un idioma"
926
 
927
  #. translators: %3$s placeholder for the icon (actual picture).
 
928
  msgid ""
929
  "Place the %1$smain language%2$s of your site at the top of the list by "
930
  "dragging the %3$s icons."
931
  msgstr ""
932
 
933
  #. translators: placeholders for the "strong" HTML tags.
 
934
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
935
  msgstr ""
936
 
937
  #. translators: placeholders for the "strong" HTML tags.
 
938
  msgid "%1$sAdd%2$s more languages using the section below."
939
  msgstr ""
940
 
 
941
  msgid "When done, click the [Save Changes] button."
942
  msgstr "Cuando hayas terminado, haz clic en el botón [Guardar Cambios] ."
943
 
944
  #. translators: %s - placeholder for the "Save Changes" button text.
 
945
  msgid "Press the %s button to confirm."
946
  msgstr ""
947
 
948
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
 
949
  msgid "-- none --"
950
  msgstr ""
951
 
 
952
  msgid "All menus"
953
  msgstr ""
954
 
 
955
  msgid "Instructions:"
956
  msgstr "Instrucciones:"
957
 
 
958
  msgid "(Found in some themes)"
959
  msgstr "(Encontrado en algunos temas)"
960
 
 
961
  msgid "Enable"
962
  msgstr "Habilitar"
963
 
 
964
  msgid "Languages table"
965
  msgstr "Tabla de idiomas"
966
 
 
967
  msgid "Use this table to add, edit or delete languages."
968
  msgstr "Utiliza esta tabla para agregar, editar o eliminar idiomas."
969
 
 
970
  msgid "NOTE: you cannot remove the main language."
971
  msgstr "Nota: No se puede eliminar el idioma principal."
972
 
 
973
  msgid "WPGlobus is enabled on these Post Types"
974
  msgstr ""
975
 
 
976
  msgid "Uncheck to disable"
977
  msgstr ""
978
 
 
979
  msgid ""
980
  "Please note that there are post types, which status is managed by other "
981
  "plugins and cannot be changed here."
982
  msgstr ""
983
 
 
984
  msgid "Post Types"
985
  msgstr ""
986
 
 
987
  msgid ""
988
  "You should put here only the code provided by WPGlobus Support. Do not write "
989
  "anything else in the sections below as it might break the functionality of "
990
  "your website!"
991
  msgstr ""
992
 
 
993
  msgid "Custom Code"
994
  msgstr ""
995
 
 
 
 
996
  msgid "Enabled"
997
  msgstr ""
998
 
 
999
  msgid "Builders support"
1000
  msgstr ""
1001
 
 
1002
  msgid "Builder mode is enabled on these Post Types"
1003
  msgstr ""
1004
 
 
1005
  msgid "Old fashioned language switcher"
1006
  msgstr ""
1007
 
 
1008
  msgid "Block Editor"
1009
  msgstr ""
1010
 
 
1011
  msgid "Block Editor Options"
1012
  msgstr ""
1013
 
 
1014
  msgid ""
1015
  "With the current settings, you will see the following lines in the section "
1016
  "HEAD of your site pages"
1017
  msgstr ""
1018
 
 
1019
  msgid "(example for two languages)"
1020
  msgstr ""
1021
 
 
1022
  msgid ""
1023
  "Tell search engines about localized versions of your pages using the "
1024
  "hreflang tag"
1025
  msgstr ""
1026
 
 
1027
  msgid "Output the hreflang tag as"
1028
  msgstr ""
1029
 
 
1030
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1031
  msgstr ""
1032
 
 
1033
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1034
  msgstr ""
1035
 
 
1036
  msgid "Language code only (en, ru, etc.)"
1037
  msgstr ""
1038
 
 
1039
  msgid "Use the code `x-default` for the main language"
1040
  msgstr ""
1041
 
 
1042
  msgid "Multilingual SEO"
1043
  msgstr ""
1044
 
 
1045
  msgid "Multilingual SEO Options"
1046
  msgstr ""
1047
 
 
1048
  msgid ""
1049
  "With WPGlobus, you can get translations for posts and pages using REST API."
1050
  msgstr ""
1051
 
 
 
 
 
1052
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1053
  msgstr ""
1054
 
 
1055
  msgid ""
1056
  "For demonstration, you can try the first post that WordPress creates at the "
1057
  "initial installation."
1058
  msgstr ""
1059
 
 
1060
  msgid ""
1061
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1062
  "information."
1063
  msgstr ""
1064
 
 
1065
  msgid ""
1066
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1067
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1068
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1069
  msgstr ""
1070
 
 
1071
  msgid "Description:"
1072
  msgstr ""
1073
 
 
 
1074
  msgid "REST API"
1075
  msgstr ""
1076
 
 
1077
  msgid "Translate strings"
1078
  msgstr ""
1079
 
 
1080
  msgid "item"
1081
  msgstr "Artículo"
1082
 
 
1083
  msgid "items"
1084
  msgstr "Artículos"
1085
 
 
1086
  msgid "Code"
1087
  msgstr "Código"
1088
 
 
1089
  msgid "Edit"
1090
  msgstr "Editar"
1091
 
 
1092
  msgid "Delete"
1093
  msgstr "Borrar"
1094
 
 
1095
  msgid "File"
1096
  msgstr "Archivo"
1097
 
 
1098
  msgid "Flag"
1099
  msgstr "Bandera"
1100
 
 
1101
  msgid "Language name"
1102
  msgstr "Nombre del idioma"
1103
 
 
1104
  msgid "English language name"
1105
  msgstr "Nombre del idioma en Inglés"
1106
 
 
1107
  msgid "No items found"
1108
  msgstr "No se han encntrado artículos"
1109
 
 
1110
  msgid "Add new Language"
1111
  msgstr "Añadir nuevo idioma"
1112
 
 
1113
  msgid "No items of this type were found."
1114
  msgstr ""
1115
 
 
1116
  msgid "Select an item"
1117
  msgstr ""
1118
 
 
1119
  msgid "Multilingual support of this add-on is currently in Beta stage."
1120
  msgstr ""
1121
 
 
1122
  msgid "We do not recommend using it on production sites."
1123
  msgstr ""
1124
 
 
1125
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1126
  msgstr ""
1127
 
 
1128
  msgid "WordPress version"
1129
  msgstr ""
1130
 
 
1131
  msgid "In the WordPress core"
1132
  msgstr ""
1133
 
 
1134
  msgid "Core"
1135
  msgstr ""
1136
 
 
 
1137
  msgid "Current version"
1138
  msgstr ""
1139
 
 
 
1140
  msgid "Stage"
1141
  msgstr ""
1142
 
 
 
1143
  msgid "Status"
1144
  msgstr ""
1145
 
 
1146
  msgid "Block editor"
1147
  msgstr ""
1148
 
 
1149
  msgid "production"
1150
  msgstr ""
1151
 
 
1152
  msgid "List of supported add-ons"
1153
  msgstr ""
1154
 
 
1155
  msgid "Add-on"
1156
  msgstr ""
1157
 
 
1158
  msgid "Supported minimum version"
1159
  msgstr ""
1160
 
 
1161
  msgid "Not installed"
1162
  msgstr ""
1163
 
 
1164
  msgid "Installed, inactive"
1165
  msgstr ""
1166
 
 
1167
  msgid "Active"
1168
  msgstr "Activo"
1169
 
 
1170
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1171
  msgstr ""
1172
 
 
1173
  msgid "However, some themes do not follow all WordPress standards strictly."
1174
  msgstr ""
1175
 
 
1176
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1177
  msgstr ""
1178
 
 
1179
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1180
  msgstr ""
1181
 
 
1182
  msgid ""
1183
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1184
  "With those themes, WPGlobus Customizer is switched off by default"
1185
  msgstr ""
1186
 
 
1187
  msgid "The currently active theme is"
1188
  msgstr ""
1189
 
 
1190
  msgid "In the current version, WPGlobus Customizer does not support"
1191
  msgstr ""
1192
 
 
1193
  msgid "translation of the navigation menus"
1194
  msgstr ""
1195
 
 
1196
  msgid "to translate, please go to"
1197
  msgstr ""
1198
 
 
1199
  msgid "Go to Customizer"
1200
  msgstr ""
1201
 
 
1202
  msgid "is undefined"
1203
  msgstr ""
1204
 
 
1205
  msgid "is set to"
1206
  msgstr ""
1207
 
 
1208
  msgid "by adding to the file wp-config.php"
1209
  msgstr ""
1210
 
 
1211
  msgid "now"
1212
  msgstr ""
1213
 
 
1214
  msgid "We rely on your support!"
1215
  msgstr ""
1216
 
 
1217
  msgid "Please consider a small donation to support the future development."
1218
  msgstr ""
1219
 
 
1220
  msgid "Thank you!"
1221
  msgstr "Gracias!"
1222
 
 
1223
  msgid "WPGlobus Plus!"
1224
  msgstr "WPGlobus Plus!"
1225
 
 
1226
  msgid ""
1227
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1228
  "separate publishing and more! "
1229
  msgstr ""
1230
 
 
1231
  msgid "Get WPGlobus Plus now!"
1232
  msgstr ""
1233
 
 
1234
  msgid ""
1235
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1236
  "the current version."
1237
  msgstr ""
1238
 
 
1239
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1240
  msgstr ""
1241
 
 
1242
  msgid "WPGlobus warning: "
1243
  msgstr ""
1244
 
 
1245
  msgid "https://github.com/WPGlobus/WPGlobus"
1246
  msgstr ""
1247
 
 
1248
  msgid ""
1249
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1250
  "widgets and even custom fields - in multiple languages!"
1252
  "WordPress Globalization / Plugin multilenguaje. Mensajes, páginas, menús, "
1253
  "widgets e incluso campos personalizados - en varios idiomas !"
1254
 
 
1255
  msgid "https://wpglobus.com/"
1256
  msgstr ""
languages/wpglobus-es_ES.po CHANGED
@@ -16,44 +16,25 @@ msgstr ""
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
- #: includes/admin/central/class-wpglobus-admin-central.php:122,
20
- #: includes/admin/class-wpglobus-about.php:42,
21
- #: includes/admin/class-wpglobus-about.php:117,
22
- #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr "Guía"
26
 
27
- #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
32
- #: includes/admin/central/class-wpglobus-admin-central.php:157,
33
- #: includes/admin/class-wpglobus-about.php:36,
34
- #: includes/admin/class-wpglobus-admin-menu.php:22,
35
- #: includes/admin/class-wpglobus-clean.php:606,
36
- #: includes/admin/class-wpglobus-customize-options.php:1293,
37
- #: includes/admin/class-wpglobus-customize-options.php:1261,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr "Complementos"
41
 
42
- #: includes/admin/class-wpglobus-about.php:26
43
  msgid "Quick Start"
44
  msgstr "Inicio Rápido"
45
 
46
- #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
51
- #: includes/admin/class-wpglobus-about.php:59
52
  msgid ""
53
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
54
  msgstr ""
55
 
56
- #: includes/admin/class-wpglobus-about.php:60
57
  msgid ""
58
  "The mbstring extension is required for the full UTF-8 compatibility and "
59
  "better performance. Without it, some parts of WordPress and WPGlobus may "
@@ -61,19 +42,15 @@ msgid ""
61
  "administrator."
62
  msgstr ""
63
 
64
- #: includes/admin/class-wpglobus-about.php:87
65
  msgid "Go to WPGlobus Settings"
66
  msgstr "Ir a Ajustes WPGlobus"
67
 
68
- #: includes/admin/class-wpglobus-about.php:98
69
  msgid "Easy as 1-2-3:"
70
  msgstr "Fácil en 1-2-3:"
71
 
72
- #: includes/admin/class-wpglobus-about.php:101
73
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
74
  msgstr "Ve al menú de administración WPGlobus y elege los países/idiomas;"
75
 
76
- #: includes/admin/class-wpglobus-about.php:102
77
  msgid ""
78
  "Enter the translations to the posts, pages, categories, tags and menus using "
79
  "a clean and simple interface."
@@ -81,7 +58,6 @@ msgstr ""
81
  "Introduce las traducciones a los mensajes, páginas, categorías,etiquetas y "
82
  "menús usando una interfaz limpia y simple."
83
 
84
- #: includes/admin/class-wpglobus-about.php:103
85
  msgid ""
86
  "Switch languages at the front-end using a drop-down menu with language names "
87
  "and country flags."
@@ -89,51 +65,41 @@ msgstr ""
89
  "Cambia de idioma en el front-end utilizando un menú desplegable con los "
90
  "nombres de las lenguas y banderas de los países ."
91
 
92
- #: includes/admin/class-wpglobus-about.php:111
93
  msgid "Links:"
94
  msgstr "Enlaces:"
95
 
96
- #: includes/admin/class-wpglobus-about.php:119
97
  msgid "FAQs"
98
  msgstr "Preguntas Frecuentes"
99
 
100
- #: includes/admin/class-wpglobus-about.php:121
101
  msgid "Contact Us"
102
  msgstr "Contáctanos"
103
 
104
- #: includes/admin/class-wpglobus-about.php:123
105
  msgid "Please give us 5 stars!"
106
  msgstr "Por favor danos 5 estrellas!"
107
 
108
- #: includes/admin/class-wpglobus-about.php:133
109
  msgid "WPGlobus does not translate texts automatically!"
110
  msgstr ""
111
 
112
- #: includes/admin/class-wpglobus-about.php:136
113
  msgid ""
114
  "There are many translation companies and individual translators who can help "
115
  "you write and proofread the texts."
116
  msgstr ""
117
 
118
- #: includes/admin/class-wpglobus-about.php:137
119
  msgid ""
120
  "When you choose a translator, please look at their native language, country "
121
  "of residence, specialization and knowledge of WordPress."
122
  msgstr ""
123
 
124
  #. translators: %s are used to insert HTML link. Keep them in place.
125
- #: includes/admin/class-wpglobus-about.php:143
126
  msgid ""
127
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
128
  "website. This is not an endorsement, just a courtesy. Please contact them "
129
  "directly and let us know how did it work for you!"
130
  msgstr ""
131
 
132
- #: includes/admin/class-wpglobus-about.php:154
133
  msgid "Important notes:"
134
  msgstr ""
135
 
136
- #: includes/admin/class-wpglobus-about.php:159
137
  msgid ""
138
  "WPGlobus only supports the localization URLs in the form of <code>example."
139
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
@@ -144,12 +110,10 @@ msgstr ""
144
  "subdominios <code>example.com</code> ni consultas lingüísticas <code>example."
145
  "com?lang=xx</code>."
146
 
147
- #: includes/admin/class-wpglobus-about.php:162
148
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
149
  msgstr ""
150
  "En algunos temas y plugins <strong>No está listo el multilenguaje</strong>."
151
 
152
- #: includes/admin/class-wpglobus-about.php:163
153
  msgid ""
154
  "They might display some texts with no translation, or with all languages "
155
  "mixed together."
@@ -158,7 +122,6 @@ msgstr ""
158
  "mezclados entre sí."
159
 
160
  #. translators: %s are used to insert HTML link. Keep them in place.
161
- #: includes/admin/class-wpglobus-about.php:167
162
  msgid ""
163
  "Please contact the theme / plugin author. If they are unable to assist, "
164
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
@@ -167,21 +130,15 @@ msgstr ""
167
  "ayudarte, considera % s la contratación del WPGlobus % s para escribir un "
168
  "código personalizado para tí."
169
 
170
- #: includes/admin/class-wpglobus-admin-bar-menu.php:124
171
  msgid "Language was set on your profile page"
172
  msgstr ""
173
 
174
- #: includes/admin/class-wpglobus-admin-bar-menu.php:194
175
  msgid "Add"
176
  msgstr "Añadir"
177
 
178
- #: includes/admin/class-wpglobus-admin-page.php:32,
179
- #: includes/admin/class-wpglobus-clean.php:585
180
  msgid "Multilingual Everything!"
181
  msgstr "Multilenguaje Total!"
182
 
183
- #: includes/admin/class-wpglobus-admin-page.php:34,
184
- #: includes/admin/class-wpglobus-clean.php:588
185
  msgid ""
186
  "WPGlobus is a family of WordPress plugins assisting you in making "
187
  "multilingual WordPress blogs and sites."
@@ -189,25 +146,20 @@ msgstr ""
189
  "WPGlobus es una familia de plugins de WordPress que ayudan en la traducción "
190
  "de blogs de WordPress."
191
 
192
- #: includes/admin/class-wpglobus-clean.php:232
193
  msgid "Remove the WPGlobus settings (not recommended)"
194
  msgstr ""
195
 
196
- #: includes/admin/class-wpglobus-clean.php:595
197
  msgid "Clean-up Tool"
198
  msgstr ""
199
 
200
- #: includes/admin/class-wpglobus-clean.php:609
201
  msgid "Support"
202
  msgstr "Soporte"
203
 
204
- #: includes/admin/class-wpglobus-clean.php:614
205
  msgid ""
206
  "WARNING: this operation is non-reversible. It is strongly recommended that "
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
- #: includes/admin/class-wpglobus-clean.php:619
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
@@ -217,7 +169,6 @@ msgid ""
217
  "so on."
218
  msgstr ""
219
 
220
- #: includes/admin/class-wpglobus-clean.php:622
221
  msgid ""
222
  "Make sure that your active theme does not have any code related to WPGlobus. "
223
  "Such code could be added by you or by a 3rd party developer. If that code "
@@ -226,42 +177,34 @@ msgid ""
226
  msgstr ""
227
 
228
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
229
- #: includes/admin/class-wpglobus-clean.php:630
230
  msgid ""
231
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
232
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
233
  msgstr ""
234
 
235
- #: includes/admin/class-wpglobus-clean.php:641
236
  msgid "You are about to clean the content of the following database tables:"
237
  msgstr ""
238
 
239
- #: includes/admin/class-wpglobus-clean.php:649
240
  msgid "The operations log"
241
  msgstr ""
242
 
243
- #: includes/admin/class-wpglobus-clean.php:652
244
  msgid ""
245
  "We are going to write a detailed log of all the database changes performed. "
246
  "It should help in the case you need to restore something important. The log "
247
  "will be written to the file:"
248
  msgstr ""
249
 
250
- #: includes/admin/class-wpglobus-clean.php:662
251
  msgid ""
252
  "Uncheck if you do not want to write the operations log (we recommend to keep "
253
  "it checked)"
254
  msgstr ""
255
 
256
- #: includes/admin/class-wpglobus-clean.php:667
257
  msgid "You have been warned..."
258
  msgstr ""
259
 
260
- #: includes/admin/class-wpglobus-clean.php:669
261
  msgid "Please confirm by checking the box below:"
262
  msgstr ""
263
 
264
- #: includes/admin/class-wpglobus-clean.php:671
265
  msgid ""
266
  "I have read and understood everything written on this page. I am aware that "
267
  "by using this tool I may loose some content of my website. I have made a "
@@ -269,153 +212,100 @@ msgid ""
269
  "responsible for the results."
270
  msgstr ""
271
 
272
- #: includes/admin/class-wpglobus-clean.php:674
273
  msgid "YES, I CONFIRM"
274
  msgstr ""
275
 
276
- #: includes/admin/class-wpglobus-clean.php:678
277
  msgid "Process with the Clean-up"
278
  msgstr ""
279
 
280
- #: includes/admin/class-wpglobus-customize-options.php:73,
281
- #: includes/admin/class-wpglobus-customize-options.php:100,
282
- #: includes/admin/class-wpglobus-customize-options.php:145,
283
- #: includes/admin/class-wpglobus-customize-options.php:183
284
  msgid "Default"
285
  msgstr "Predefinido"
286
 
287
- #: includes/admin/class-wpglobus-customize-options.php:264
288
  msgid "Section"
289
  msgstr ""
290
 
291
- #: includes/admin/class-wpglobus-customize-options.php:277
292
  msgid "Show all sections"
293
  msgstr ""
294
 
295
- #: includes/admin/class-wpglobus-customize-options.php:279
296
  msgid "Save &amp; Reload"
297
  msgstr ""
298
 
299
- #: includes/admin/class-wpglobus-customize-options.php:553,
300
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:585,
301
- #: includes/class-wpglobus.php:1284, wpglobus.php:12, wpglobus.php:18
302
  msgid "WPGlobus"
303
  msgstr ""
304
 
305
- #: includes/admin/class-wpglobus-customize-options.php:604
306
  msgid ""
307
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
308
  msgstr ""
309
 
310
- #: includes/admin/class-wpglobus-customize-options.php:610
311
  msgid "Fields Settings"
312
  msgstr ""
313
 
314
- #: includes/admin/class-wpglobus-customize-options.php:655
315
  msgid "WPGlobus Settings"
316
  msgstr ""
317
 
318
- #: includes/admin/class-wpglobus-customize-options.php:723
319
  msgid "Help"
320
  msgstr "Ayuda"
321
 
322
- #: includes/admin/class-wpglobus-customize-options.php:745,
323
- #: includes/options/class-wpglobus-options.php:1176
324
  msgid "Languages"
325
  msgstr "Idiomas"
326
 
327
- #: includes/admin/class-wpglobus-customize-options.php:765,
328
- #: includes/options/class-wpglobus-options.php:1189
329
  msgid "Enabled Languages"
330
  msgstr "Idiomas Habilitados"
331
 
332
- #: includes/admin/class-wpglobus-customize-options.php:767,
333
- #: includes/options/class-wpglobus-options.php:1190
334
  msgid "These languages are currently enabled on your site."
335
  msgstr "Estos idiomas están habilitados actualmente en su sitio."
336
 
337
- #: includes/admin/class-wpglobus-customize-options.php:795,
338
- #: includes/options/class-wpglobus-options.php:1148
339
  msgid "Choose a language you would like to enable."
340
  msgstr ""
341
 
342
- #: includes/admin/class-wpglobus-customize-options.php:797
343
  msgid "Press the [Save & Publish] button to confirm."
344
  msgstr ""
345
 
346
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
347
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
348
- #: includes/admin/class-wpglobus-customize-options.php:801,
349
- #: includes/options/class-wpglobus-options.php:1154
350
  msgid "or Add new Language %1$s here %2$s"
351
  msgstr ""
352
 
353
- #: includes/admin/class-wpglobus-customize-options.php:813,
354
- #: includes/options/class-wpglobus-options.php:1203
355
  msgid "Add Languages"
356
  msgstr "Añadir idioma"
357
 
358
- #: includes/admin/class-wpglobus-customize-options.php:833,
359
- #: includes/options/class-wpglobus-options.php:1211
360
  msgid "Language Selector Mode"
361
  msgstr "Modo Selector de Idioma"
362
 
363
- #: includes/admin/class-wpglobus-customize-options.php:838,
364
- #: includes/options/class-wpglobus-options.php:1214
365
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
366
  msgstr "Código de la bandera en dos letras (es, en, ru, it, etc.)"
367
 
368
- #: includes/admin/class-wpglobus-customize-options.php:839,
369
- #: includes/options/class-wpglobus-options.php:1215
370
  msgid "Full Name (English, Russian, Italian, etc.)"
371
  msgstr "Nombre completo (Español, English, Russian, Italian, etc.)"
372
 
373
- #: includes/admin/class-wpglobus-customize-options.php:841,
374
- #: includes/options/class-wpglobus-options.php:1216
375
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
376
  msgstr "Nombre completo con bandera (Español, English, Russian, Italian, etc.)"
377
 
378
- #: includes/admin/class-wpglobus-customize-options.php:842,
379
- #: includes/options/class-wpglobus-options.php:1217
380
  msgid "Flags only"
381
  msgstr "Sólo banderas"
382
 
383
- #: includes/admin/class-wpglobus-customize-options.php:844,
384
- #: includes/options/class-wpglobus-options.php:1212
385
  msgid ""
386
  "Choose the way language name and country flag are shown in the drop-down menu"
387
  msgstr ""
388
  "Elige el nombre del idioma y bandera del país se muestran en el menú "
389
  "desplegable"
390
 
391
- #: includes/admin/class-wpglobus-customize-options.php:879
392
  msgid "select navigation menu"
393
  msgstr ""
394
 
395
- #: includes/admin/class-wpglobus-customize-options.php:915,
396
- #: includes/admin/class-wpglobus-customize-options.php:888,
397
- #: includes/options/class-wpglobus-options.php:1230
398
  msgid "Language Selector Menu"
399
  msgstr "Menú selector de idioma"
400
 
401
- #: includes/admin/class-wpglobus-customize-options.php:920,
402
- #: includes/admin/class-wpglobus-customize-options.php:899,
403
- #: includes/options/class-wpglobus-options.php:1231
404
  msgid "Choose the navigation menu where the language selector will be shown"
405
  msgstr ""
406
  "Selecciona el menú de navegación donde se mostrará el selector de idioma"
407
 
408
- #: includes/admin/class-wpglobus-customize-options.php:898
409
  msgid "No menus have been created yet. Create some."
410
  msgstr ""
411
 
412
- #: includes/admin/class-wpglobus-customize-options.php:940,
413
- #: includes/options/class-wpglobus-options.php:1241
414
  msgid "\"All Pages\" menus Language selector"
415
  msgstr "\"Todas las páginas\" Selector de menús Idioma"
416
 
417
- #: includes/admin/class-wpglobus-customize-options.php:943,
418
- #: includes/options/class-wpglobus-options.php:1243
419
  msgid ""
420
  "Adds language selector to the menus that automatically list all existing "
421
  "pages (using `wp_list_pages`)"
@@ -424,12 +314,9 @@ msgstr ""
424
  "automáticamente en todas las páginas existentes (utilizando ` "
425
  "wp_list_pages` )"
426
 
427
- #: includes/admin/class-wpglobus-customize-options.php:960,
428
- #: includes/options/class-wpglobus-options.php:1356
429
  msgid "Custom CSS"
430
  msgstr "Customizar CSS"
431
 
432
- #: includes/admin/class-wpglobus-customize-options.php:964
433
  msgid ""
434
  "Here you can enter the CSS rules to adjust the language selector menu for "
435
  "your theme. Look at the examples in the `style-samples.css` file."
@@ -437,99 +324,69 @@ msgstr ""
437
  "Aquí puedes introducir las reglas CSS para ajustar el menú de selección de "
438
  "idiomas para tu tema. Mira los ejemplos en el `style-samples.css` file."
439
 
440
- #: includes/admin/class-wpglobus-customize-options.php:983
441
  msgid "Post types"
442
  msgstr "Tipos de Post"
443
 
444
- #: includes/admin/class-wpglobus-customize-options.php:1091
445
  msgid "Uncheck to disable WPGlobus"
446
  msgstr "Desactiva la opción para desactivar WPGlobus"
447
 
448
- #: includes/admin/class-wpglobus-customize-options.php:1125,
449
- #: includes/options/class-wpglobus-options.php:1424
450
  msgid "Redirect"
451
  msgstr "Redirección"
452
 
453
- #: includes/admin/class-wpglobus-customize-options.php:1150,
454
- #: includes/options/class-wpglobus-options.php:1419
455
  msgid "Choose the language automatically, based on:"
456
  msgstr ""
457
 
458
- #: includes/admin/class-wpglobus-customize-options.php:1152,
459
- #: includes/options/class-wpglobus-options.php:1409
460
  msgid "Preferred language set in the browser"
461
  msgstr ""
462
 
463
- #: includes/admin/class-wpglobus-customize-options.php:1153,
464
- #: includes/options/class-wpglobus-options.php:1396
465
  msgid ""
466
  "When a user comes to the site for the first time, try to find the best "
467
  "matching language version of the page."
468
  msgstr ""
469
 
470
- #: includes/admin/class-wpglobus-customize-options.php:1214,
471
- #: includes/admin/class-wpglobus-customize-options.php:1234,
472
- #: includes/admin/class-wpglobus-customize-options.php:1192,
473
- #: includes/options/class-wpglobus-options.php:1368
474
  msgid "Custom JS Code"
475
  msgstr ""
476
 
477
- #: includes/admin/class-wpglobus-customize-options.php:1232,
478
- #: includes/admin/class-wpglobus-customize-options.php:1276
479
  msgid "Title"
480
  msgstr "Título"
481
 
482
- #: includes/admin/class-wpglobus-customize-options.php:1235
483
  msgid "(Paste your JS code here.)"
484
  msgstr ""
485
 
486
- #: includes/admin/class-wpglobus-customize-options.php:1184
487
  msgid ""
488
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
489
  "version 4.9 or later."
490
  msgstr ""
491
 
492
- #: includes/admin/class-wpglobus-customize-options.php:1186
493
  msgid "With your version of WordPress, please use the"
494
  msgstr ""
495
 
496
- #: includes/admin/class-wpglobus-customize-options.php:1188
497
  msgid "WPGlobus Settings page"
498
  msgstr ""
499
 
500
- #: includes/admin/class-wpglobus-customize-options.php:1277
501
  msgid "Label"
502
  msgstr "Etiqueta"
503
 
504
- #: includes/admin/class-wpglobus-customize-options.php:1281
505
  msgid "Description"
506
  msgstr "Decripción"
507
 
508
- #: includes/admin/class-wpglobus-customize-options.php:1345
509
  msgid ""
510
  "Here you can specify which fields should be considered multilingual by "
511
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
512
  msgstr ""
513
 
514
- #: includes/admin/class-wpglobus-customize-options.php:1351,
515
- #: includes/options/class-wpglobus-options.php:608
516
  msgid "Thank you for installing WPGlobus!"
517
  msgstr "Gracias por instalar WPGlobus!"
518
 
519
- #: includes/admin/class-wpglobus-customize-options.php:1355,
520
- #: includes/options/class-wpglobus-options.php:612
521
  msgid "Read About WPGlobus"
522
  msgstr "Leer sobre WPGlobus!"
523
 
524
- #: includes/admin/class-wpglobus-customize-options.php:1358
525
  msgid ""
526
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
527
  msgstr ""
528
  "Click en la <strong>[Idiomas]</strong> pestaña en la parte izquierda de "
529
  "configuración de las opciones."
530
 
531
- #: includes/admin/class-wpglobus-customize-options.php:1363,
532
- #: includes/options/class-wpglobus-options.php:648
533
  msgid ""
534
  "Should you have any questions or comments, please do not hesitate to contact "
535
  "us."
@@ -537,28 +394,19 @@ msgstr ""
537
  "Si tienes alguna pregunta o comentario, por favor no dudes en contactar con "
538
  "nosotros."
539
 
540
- #: includes/admin/class-wpglobus-customize-options.php:1367,
541
- #: includes/options/class-wpglobus-options.php:652
542
  msgid "Sincerely Yours,"
543
  msgstr "Sinceramente tuyo,"
544
 
545
- #: includes/admin/class-wpglobus-customize-options.php:1369,
546
- #: includes/options/class-wpglobus-options.php:654,
547
- #: includes/options/wpglobus-options-header.php:34
548
  msgid "The WPGlobus Team"
549
  msgstr "El Equipo WPGlobus"
550
 
551
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
552
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
553
- #: includes/admin/class-wpglobus-customize-options.php:1388,
554
- #: includes/options/class-wpglobus-options.php:689
555
  msgid ""
556
  "We would hate to see you go. If something goes wrong, do not uninstall "
557
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
558
  msgstr ""
559
 
560
- #: includes/admin/class-wpglobus-customize-options.php:1395,
561
- #: includes/options/class-wpglobus-options.php:696
562
  msgid ""
563
  "Please note that if you deactivate WPGlobus, your site will show all the "
564
  "languages together, mixed up. You will need to remove all translations, "
@@ -567,8 +415,6 @@ msgstr ""
567
 
568
  #. translators: %s: link to the Clean-up Tool
569
  #. translators: %s: link to the Clean-up Tool.
570
- #: includes/admin/class-wpglobus-customize-options.php:1400,
571
- #: includes/options/class-wpglobus-options.php:700
572
  msgid ""
573
  "If there are just a few places, you should edit them manually. To "
574
  "automatically remove all translations at once, you can use the %s. WARNING: "
@@ -578,410 +424,305 @@ msgstr ""
578
 
579
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
580
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
581
- #: includes/admin/class-wpglobus-customize-options.php:1403,
582
- #: includes/options/class-wpglobus-options.php:677
583
  msgid "%1$sClean-up Tool%2$s"
584
  msgstr ""
585
 
586
  #. translators: %s: name of current theme
587
- #: includes/admin/class-wpglobus-customize-options.php:1415
588
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
589
  msgstr ""
590
 
591
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
592
- #: includes/admin/class-wpglobus-customize-options.php:1421
593
  msgid "Please use %1$sWPGlobus options page%2$s instead."
594
  msgstr ""
595
 
596
- #: includes/admin/class-wpglobus-customize-options.php:1485
597
  msgid "Expand/Shrink"
598
  msgstr ""
599
 
600
- #: includes/admin/class-wpglobus-dashboard-news.php:43,
601
- #: includes/admin/class-wpglobus-dashboard-news.php:59
602
  msgid "WPGlobus News"
603
  msgstr ""
604
 
605
- #: includes/admin/class-wpglobus-language-edit.php:197,
606
- #: includes/admin/class-wpglobus-language-edit.php:192
607
  msgid "Options updated"
608
  msgstr "Opciones actualizadas"
609
 
610
- #: includes/admin/class-wpglobus-language-edit.php:272
611
  msgid "Please enter a language code!"
612
  msgstr "Por favor, introduce el código del idioma!"
613
 
614
- #: includes/admin/class-wpglobus-language-edit.php:276
615
  msgid "Language code already exists!"
616
  msgstr "Este código de idioma ya existe!"
617
 
618
- #: includes/admin/class-wpglobus-language-edit.php:280
619
  msgid "Please specify the language flag!"
620
  msgstr "Por favor, especifica la bandera del idioma !"
621
 
622
- #: includes/admin/class-wpglobus-language-edit.php:284
623
  msgid "Please enter the language name!"
624
  msgstr "Por favor introduce el nombre del idioma!"
625
 
626
- #: includes/admin/class-wpglobus-language-edit.php:288
627
  msgid "Please enter the language name in English!"
628
  msgstr "Por favor introduce el nombre del idioma en Inglés!"
629
 
630
- #: includes/admin/class-wpglobus-language-edit.php:292
631
  msgid "Please enter the locale!"
632
  msgstr "Por favor introduce la localización!"
633
 
634
- #: includes/admin/class-wpglobus-language-edit.php:354
635
  msgid "Add Language"
636
  msgstr "Añadir Idioma"
637
 
638
- #: includes/admin/class-wpglobus-language-edit.php:351,
639
- #: includes/admin/class-wpglobus-language-edit.php:462,
640
- #: includes/admin/class-wpglobus-language-edit.php:455
641
  msgid "Delete Language"
642
  msgstr "Eliminar Idioma"
643
 
644
- #: includes/admin/class-wpglobus-language-edit.php:349
645
  msgid "Edit Language"
646
  msgstr "Editar Idioma"
647
 
648
- #: includes/admin/class-wpglobus-language-edit.php:384
649
  msgid "Language Code"
650
  msgstr "Código del Idioma"
651
 
652
- #: includes/admin/class-wpglobus-language-edit.php:391
653
  msgid ""
654
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
655
  msgstr ""
656
  "2-Carta de códigos de idioma ISO para el idioma que deseas insertar. "
657
  "(Ejemplo : en)"
658
 
659
- #: includes/admin/class-wpglobus-language-edit.php:396
660
  msgid "Language flag"
661
  msgstr "Bandera del idioma"
662
 
663
- #: includes/admin/class-wpglobus-language-edit.php:412
664
  msgid "Name"
665
  msgstr "Nombre"
666
 
667
- #: includes/admin/class-wpglobus-language-edit.php:417
668
  msgid ""
669
  "The name of the language in its native alphabet. (Examples: English, Русский)"
670
  msgstr ""
671
  "El nombre de la lengua en su alfabeto nativo. (Ejemplos : Español, English, "
672
  "Русский )"
673
 
674
- #: includes/admin/class-wpglobus-language-edit.php:422
675
  msgid "Name in English"
676
  msgstr "Nombre en Inglés"
677
 
678
- #: includes/admin/class-wpglobus-language-edit.php:427
679
  msgid "The name of the language in English"
680
  msgstr "El nombre del idioma en Inglés"
681
 
682
- #: includes/admin/class-wpglobus-language-edit.php:432,
683
- #: includes/options/fields/table/class-wpglobus-languages-table.php:115
684
  msgid "Locale"
685
  msgstr "Local"
686
 
687
- #: includes/admin/class-wpglobus-language-edit.php:437
688
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
689
  msgstr ""
690
  "PHP / WordPress configuración regional de la lengua . (Ejemplos : en_US, "
691
  "es_ES, ru_RU)"
692
 
693
- #: includes/admin/class-wpglobus-language-edit.php:460
694
  msgid "Are you sure you want to delete?"
695
  msgstr "Estás seguro de que quieres borrarlo?"
696
 
697
- #: includes/admin/class-wpglobus-language-edit.php:447
698
  msgid "Save Changes"
699
  msgstr "Guardar Cambios"
700
 
701
- #: includes/admin/class-wpglobus-language-edit.php:470
702
  msgid "Back to the WPGlobus Settings"
703
  msgstr "Volver a Ajustes WPGlobus"
704
 
705
- #: includes/admin/class-wpglobus-plugin-install.php:308
706
  msgid "Current Version"
707
  msgstr "Versión Actual"
708
 
709
- #: includes/admin/class-wpglobus-plugin-install.php:309
710
  msgid "Get it now!"
711
  msgstr ""
712
 
713
- #: includes/admin/class-wpglobus-plugin-install.php:310
714
  msgid "Premium add-on"
715
  msgstr ""
716
 
717
- #: includes/admin/class-wpglobus-plugin-install.php:311,
718
- #: includes/options/fields/table/class-wpglobus-languages-table.php:472
719
  msgid "Installed"
720
  msgstr "Instalado"
721
 
722
  #. translators: placeholders are for the HTML tags.
723
- #: includes/admin/class-wpglobus-plugin-install.php:319
724
  msgid ""
725
  "If you have already purchased a WPGlobus premium extension, please read "
726
  "%1$sthe installation instructions here%2$s"
727
  msgstr ""
728
 
729
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
730
- #: includes/options/class-wpglobus-options.php:726
731
  msgid "Help Desk"
732
  msgstr ""
733
 
734
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:185
735
  msgid "Email not sent. Please fill in the entire form."
736
  msgstr ""
737
 
738
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:195
739
  msgid ""
740
  "Email not sent. Please verify that your name and email are entered correctly."
741
  msgstr ""
742
 
743
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:216
744
  msgid "Email sent."
745
  msgstr ""
746
 
747
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
748
  msgid "Thank you for using WPGlobus!"
749
  msgstr ""
750
 
751
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
752
  msgid "Our Support Team is here to answer your questions or concerns."
753
  msgstr ""
754
 
755
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
756
  msgid "To help us serve you better:"
757
  msgstr ""
758
 
759
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
760
  msgid ""
761
  "Please check if the problem persists if you switch to a standard WordPress "
762
  "theme."
763
  msgstr ""
764
 
765
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
766
  msgid ""
767
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
768
  msgstr ""
769
 
770
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
771
  msgid "Please fill in and submit the contact form:"
772
  msgstr ""
773
 
774
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
775
  msgid "Please make sure the email address is correct."
776
  msgstr ""
777
 
778
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
779
  msgid "Subject"
780
  msgstr "Asunto"
781
 
782
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
783
  msgid "Short description of the problem"
784
  msgstr ""
785
 
786
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
787
  msgid "Detailed description"
788
  msgstr ""
789
 
790
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
791
  msgid "Technical Information"
792
  msgstr ""
793
 
794
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
795
  msgid "This information helps us to find the problem source"
796
  msgstr ""
797
 
798
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:161
799
  msgid ""
800
  "Alternatively, please email %s. Do not forget to copy and paste the "
801
  "technical information to your email message."
802
  msgstr ""
803
 
804
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:89
805
  msgid "WPGlobus Recommends:"
806
  msgstr ""
807
 
808
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:98,
809
- #: includes/options/class-wpglobus-options.php:933
810
  msgid "WPGlobus for WooCommerce"
811
  msgstr ""
812
 
813
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:102
814
  msgid ""
815
  "Translate product titles and descriptions, product categories, tags and "
816
  "attributes."
817
  msgstr ""
818
 
819
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:107
820
  msgid "Get it now:"
821
  msgstr ""
822
 
823
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:117
824
  msgid "WooCommerce Multi-Currency"
825
  msgstr ""
826
 
827
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:121
828
  msgid "Accept multiple currencies in your online store!"
829
  msgstr ""
830
 
831
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:126,
832
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:185
833
  msgid "Check it out:"
834
  msgstr ""
835
 
836
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:195
837
  msgid "To translate permalinks, please activate the module Slug."
838
  msgstr ""
839
 
840
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:183
841
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
842
  msgstr ""
843
 
844
- #: includes/builders/class-wpglobus-builder.php:278,
845
- #: includes/class-wpglobus.php:3577
846
  msgid "Save draft before using extra language."
847
  msgstr ""
848
 
849
- #: includes/builders/class-wpglobus-builder.php:371
850
  msgid "Builder"
851
  msgstr ""
852
 
853
- #: includes/builders/class-wpglobus-builder.php:395
854
  msgid "Сompatibility Settings"
855
  msgstr ""
856
 
857
  #. translators: ON/OFF status of WPGlobus on the edit pages.
858
  #. translators: ON/OFF status of WPGlobus on the edit pages.
859
- #: includes/builders/elementor/class-wpglobus-elementor.php:255,
860
- #: includes/class-wpglobus.php:1263
861
  msgid "ON"
862
  msgstr "ON"
863
 
864
- #: includes/builders/elementor/class-wpglobus-elementor.php:256,
865
- #: includes/class-wpglobus.php:1264
866
  msgid "Turn off"
867
  msgstr ""
868
 
869
- #: includes/builders/elementor/class-wpglobus-elementor.php:250,
870
- #: includes/class-wpglobus.php:1258
871
  msgid "OFF"
872
  msgstr ""
873
 
874
- #: includes/builders/elementor/class-wpglobus-elementor.php:251,
875
- #: includes/class-wpglobus.php:1259
876
  msgid "Turn on"
877
  msgstr ""
878
 
879
- #: includes/builders/elementor/class-wpglobus-elementor.php:281
880
  msgid "Elementor"
881
  msgstr ""
882
 
883
- #: includes/builders/elementor/class-wpglobus-elementor.php:508
884
  msgid "WPGlobus languages"
885
  msgstr ""
886
 
887
- #: includes/builders/elementor/class-wpglobus-elementor.php:514
888
  msgid "current"
889
  msgstr ""
890
 
891
- #: includes/builders/elementor/class-wpglobus-elementor.php:675
892
  msgid ""
893
  "WPGlobus provides multilingual support for Elementor only when the option "
894
  "%1$s%2$s%3$s is set to %4$s."
895
  msgstr ""
896
 
897
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:228
898
  msgid "Before switching the language, please save draft or publish."
899
  msgstr ""
900
 
901
  #. translators: Metabox title FOR language.
902
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:318
903
  msgctxt "filter__seo_meta_box_title"
904
  msgid "for"
905
  msgstr ""
906
 
907
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:392
908
  msgid "Page is being reloaded. Please wait..."
909
  msgstr ""
910
 
911
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:393
912
  msgid ""
913
  "Before switching the language, please save draft or publish, then reload "
914
  "page."
915
  msgstr ""
916
 
917
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
918
  msgid ""
919
  "WPGlobus provides multilingual support for Elementor only when the option "
920
  "`CSS Print Method` is set to `External File`."
921
  msgstr ""
922
 
923
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
924
  msgid "Open Elementor Settings page"
925
  msgstr ""
926
 
927
- #: includes/class-wpglobus-widget.php:27
928
  msgid "WPGlobus widget"
929
  msgstr "WPGlobus widget"
930
 
931
- #: includes/class-wpglobus-widget.php:29
932
  msgid "Add language switcher"
933
  msgstr "Añadir selector de idiomas"
934
 
935
- #: includes/class-wpglobus-widget.php:32
936
  msgid "Flags"
937
  msgstr "Banderas"
938
 
939
- #: includes/class-wpglobus-widget.php:33
940
  msgid "List"
941
  msgstr "Lista"
942
 
943
- #: includes/class-wpglobus-widget.php:34
944
  msgid "List with flags"
945
  msgstr "Lista con Banderas"
946
 
947
- #: includes/class-wpglobus-widget.php:35
948
  msgid "Select"
949
  msgstr "Seleccionar"
950
 
951
- #: includes/class-wpglobus-widget.php:36
952
  msgid "Select with language code"
953
  msgstr "Seleccionar con el código de idioma"
954
 
955
- #: includes/class-wpglobus-widget.php:37
956
  msgid "Dropdown"
957
  msgstr "Desplegable"
958
 
959
- #: includes/class-wpglobus-widget.php:38
960
  msgid "Dropdown with flags"
961
  msgstr "Desplegable con banderas"
962
 
963
- #: includes/class-wpglobus-widget.php:264
964
  msgid "Selector type"
965
  msgstr "Tipo de selector"
966
 
967
- #: includes/class-wpglobus.php:1447
968
  msgid "You cannot disable the main language."
969
  msgstr "No se puede desactivar el idioma principal."
970
 
971
- #: includes/class-wpglobus.php:1672
972
  msgid "Need a multilingual slug?"
973
  msgstr ""
974
 
975
- #: includes/class-wpglobus.php:1655
976
  msgid "*) Available after the menu is saved."
977
  msgstr "No Se Puede Desactivar el director idioma."
978
 
979
- #: includes/class-wpglobus.php:4025
980
  msgid "You must enable Pretty Permalinks to use WPGlobus."
981
  msgstr ""
982
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
983
 
984
- #: includes/class-wpglobus.php:4027
985
  msgid ""
986
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
987
  "default option."
@@ -989,193 +730,150 @@ msgstr ""
989
  "Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
990
  "selecciona una opción no predeterminada ."
991
 
992
- #: includes/options/class-wpglobus-options.php:281
993
  msgid "Language Selector Menu Style"
994
  msgstr ""
995
 
996
- #: includes/options/class-wpglobus-options.php:282,
997
- #: includes/options/class-wpglobus-options.php:802,
998
- #: includes/options/class-wpglobus-options.php:871
999
  msgid "WPGlobus Plus"
1000
  msgstr ""
1001
 
1002
- #: includes/options/class-wpglobus-options.php:283
1003
  msgid "Drop-down languages menu or Flat (in one line)"
1004
  msgstr ""
1005
 
1006
- #: includes/options/class-wpglobus-options.php:286
1007
  msgid "Do not change"
1008
  msgstr ""
1009
 
1010
- #: includes/options/class-wpglobus-options.php:287
1011
  msgid "Drop-down (vertical)"
1012
  msgstr ""
1013
 
1014
- #: includes/options/class-wpglobus-options.php:288
1015
  msgid "Flat (horizontal)"
1016
  msgstr ""
1017
 
1018
- #: includes/options/class-wpglobus-options.php:343
1019
  msgid ""
1020
  "If you see this message then your browser may not display the WPGlobus "
1021
  "Settings panel properly. Please try another browser."
1022
  msgstr ""
1023
 
1024
- #: includes/options/class-wpglobus-options.php:599,
1025
- #: includes/options/class-wpglobus-options.php:1577
1026
  msgid "Сompatibility"
1027
  msgstr ""
1028
 
1029
  #. translators: placeholders for "strong" tags.
1030
- #: includes/options/class-wpglobus-options.php:616
1031
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
1032
  msgstr ""
1033
 
1034
  #. translators: placeholders for "strong" tags.
1035
- #: includes/options/class-wpglobus-options.php:619
1036
  msgid ""
1037
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
1038
  "the language attributes: name, code, flag icon, etc."
1039
  msgstr ""
1040
 
1041
- #: includes/options/class-wpglobus-options.php:622
1042
  msgid "Important notes"
1043
  msgstr "Notas importantes"
1044
 
1045
  #. translators: placeholders for "strong" tags.
1046
- #: includes/options/class-wpglobus-options.php:624
1047
  msgid "Version %1$s1.9.17%2$s "
1048
  msgstr ""
1049
 
1050
  #. translators: placeholders for "strong" tags.
1051
- #: includes/options/class-wpglobus-options.php:627
1052
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
1053
  msgstr ""
1054
 
1055
  #. translators: placeholders for "strong" tags; compatibility tab link.
1056
- #: includes/options/class-wpglobus-options.php:630
1057
  msgid ""
1058
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
1059
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
1060
  msgstr ""
1061
 
1062
  #. translators: placeholders for "strong" tags; compatibility tab link.
1063
- #: includes/options/class-wpglobus-options.php:633
1064
  msgid ""
1065
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
1066
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
1067
  msgstr ""
1068
 
1069
  #. translators: placeholders for "strong" tags.
1070
- #: includes/options/class-wpglobus-options.php:637
1071
  msgid "Version %1$s2.2.11%2$s "
1072
  msgstr ""
1073
 
1074
- #: includes/options/class-wpglobus-options.php:639
1075
  msgid "Starting from this version"
1076
  msgstr ""
1077
 
1078
  #. translators: placeholders for "strong" tags.
1079
- #: includes/options/class-wpglobus-options.php:642
1080
  msgid ""
1081
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
1082
  "(CPT)."
1083
  msgstr ""
1084
 
1085
  #. translators: placeholders for "strong" tags.
1086
- #: includes/options/class-wpglobus-options.php:645
1087
  msgid ""
1088
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
1089
  "the %1$s[%3$s]%2$s tab."
1090
  msgstr ""
1091
 
1092
- #: includes/options/class-wpglobus-options.php:662
1093
  msgid "Welcome!"
1094
  msgstr "Bienvenido!"
1095
 
1096
- #: includes/options/class-wpglobus-options.php:685
1097
  msgid "Deactivating / Uninstalling"
1098
  msgstr ""
1099
 
1100
- #: includes/options/class-wpglobus-options.php:711
1101
  msgid "Uninstall"
1102
  msgstr "Desinstalar"
1103
 
1104
- #: includes/options/class-wpglobus-options.php:741
1105
  msgid "All add-ons"
1106
  msgstr ""
1107
 
1108
- #: includes/options/class-wpglobus-options.php:756
1109
  msgid "Mobile Menu"
1110
  msgstr ""
1111
 
1112
- #: includes/options/class-wpglobus-options.php:771
1113
  msgid "Language Widgets"
1114
  msgstr ""
1115
 
1116
- #: includes/options/class-wpglobus-options.php:841
1117
  msgid "We Recommend..."
1118
  msgstr ""
1119
 
1120
- #: includes/options/class-wpglobus-options.php:873
1121
  msgid ""
1122
  "Our premium add-on, WPGlobus Plus, will add several features to your "
1123
  "website, such as:"
1124
  msgstr ""
1125
 
1126
- #: includes/options/class-wpglobus-options.php:876
1127
  msgid ""
1128
  "- Ability to write a post in one language and immediately publish it, not "
1129
  "waiting for the translation to other languages;"
1130
  msgstr ""
1131
 
1132
- #: includes/options/class-wpglobus-options.php:879
1133
  msgid "- Set different URLs for each translation;"
1134
  msgstr ""
1135
 
1136
- #: includes/options/class-wpglobus-options.php:882
1137
  msgid ""
1138
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
1139
  "for each translation;"
1140
  msgstr ""
1141
 
1142
- #: includes/options/class-wpglobus-options.php:885
1143
  msgid "- and more..."
1144
  msgstr ""
1145
 
1146
- #: includes/options/class-wpglobus-options.php:888,
1147
- #: includes/options/class-wpglobus-options.php:945,
1148
- #: includes/options/class-wpglobus-options.php:1003
1149
  msgid "Click here to download"
1150
  msgstr ""
1151
 
1152
- #: includes/options/class-wpglobus-options.php:936
1153
  msgid ""
1154
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
1155
  "translate your blog posts and pages to many languages."
1156
  msgstr ""
1157
 
1158
- #: includes/options/class-wpglobus-options.php:939
1159
  msgid "The next step is to translate your WooCommerce-based store!"
1160
  msgstr ""
1161
 
1162
- #: includes/options/class-wpglobus-options.php:942
1163
  msgid ""
1164
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
1165
  "translate product titles and descriptions, categories, tags and attributes."
1166
  msgstr ""
1167
 
1168
- #: includes/options/class-wpglobus-options.php:989
1169
  msgid "Multi-currency"
1170
  msgstr ""
1171
 
1172
- #: includes/options/class-wpglobus-options.php:992
1173
  msgid ""
1174
  "Your WooCommerce-powered store is set to show prices and accept payments in "
1175
  "a single currency only."
1176
  msgstr ""
1177
 
1178
- #: includes/options/class-wpglobus-options.php:996
1179
  msgid ""
1180
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
1181
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
@@ -1183,488 +881,370 @@ msgid ""
1183
  "positioning for global growth!"
1184
  msgstr ""
1185
 
1186
- #: includes/options/class-wpglobus-options.php:1000
1187
  msgid ""
1188
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
1189
  "re-calculating prices on-the-fly."
1190
  msgstr ""
1191
 
1192
- #: includes/options/class-wpglobus-options.php:1037
1193
  msgid "WPGlobus Premium Add-ons"
1194
  msgstr ""
1195
 
1196
- #: includes/options/class-wpglobus-options.php:1039
1197
  msgid ""
1198
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
1199
  "you will be able to:"
1200
  msgstr ""
1201
 
1202
- #: includes/options/class-wpglobus-options.php:1044
1203
  msgid ""
1204
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
1205
  "моя-страница and so on);"
1206
  msgstr ""
1207
 
1208
- #: includes/options/class-wpglobus-options.php:1047
1209
  msgid ""
1210
  "Postpone translation to some languages and <strong>publish only the "
1211
  "translated texts</strong>;"
1212
  msgstr ""
1213
 
1214
- #: includes/options/class-wpglobus-options.php:1050
1215
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
1216
  msgstr ""
1217
 
1218
- #: includes/options/class-wpglobus-options.php:1053
1219
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
1220
  msgstr ""
1221
 
1222
- #: includes/options/class-wpglobus-options.php:1056
1223
  msgid ""
1224
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
1225
  "strong>;"
1226
  msgstr ""
1227
 
1228
- #: includes/options/class-wpglobus-options.php:1060
1229
  msgid "...and more."
1230
  msgstr ""
1231
 
1232
- #: includes/options/class-wpglobus-options.php:1063
1233
  msgid "Click here to visit the WPGlobus Store"
1234
  msgstr ""
1235
 
1236
- #: includes/options/class-wpglobus-options.php:1104
1237
  msgid "Select a language"
1238
  msgstr "Seleccionar un idioma"
1239
 
1240
  #. translators: %3$s placeholder for the icon (actual picture).
1241
- #: includes/options/class-wpglobus-options.php:1133
1242
  msgid ""
1243
  "Place the %1$smain language%2$s of your site at the top of the list by "
1244
  "dragging the %3$s icons."
1245
  msgstr ""
1246
 
1247
  #. translators: placeholders for the "strong" HTML tags.
1248
- #: includes/options/class-wpglobus-options.php:1136
1249
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
1250
  msgstr ""
1251
 
1252
  #. translators: placeholders for the "strong" HTML tags.
1253
- #: includes/options/class-wpglobus-options.php:1139
1254
  msgid "%1$sAdd%2$s more languages using the section below."
1255
  msgstr ""
1256
 
1257
- #: includes/options/class-wpglobus-options.php:1140
1258
  msgid "When done, click the [Save Changes] button."
1259
  msgstr "Cuando hayas terminado, haz clic en el botón [Guardar Cambios] ."
1260
 
1261
  #. translators: %s - placeholder for the "Save Changes" button text.
1262
- #: includes/options/class-wpglobus-options.php:1151
1263
  msgid "Press the %s button to confirm."
1264
  msgstr ""
1265
 
1266
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
1267
- #: includes/options/class-wpglobus-options.php:1168
1268
  msgid "-- none --"
1269
  msgstr ""
1270
 
1271
- #: includes/options/class-wpglobus-options.php:1169
1272
  msgid "All menus"
1273
  msgstr ""
1274
 
1275
- #: includes/options/class-wpglobus-options.php:1182
1276
  msgid "Instructions:"
1277
  msgstr "Instrucciones:"
1278
 
1279
- #: includes/options/class-wpglobus-options.php:1242
1280
  msgid "(Found in some themes)"
1281
  msgstr "(Encontrado en algunos temas)"
1282
 
1283
- #: includes/options/class-wpglobus-options.php:1244
1284
  msgid "Enable"
1285
  msgstr "Habilitar"
1286
 
1287
- #: includes/options/class-wpglobus-options.php:1259
1288
  msgid "Languages table"
1289
  msgstr "Tabla de idiomas"
1290
 
1291
- #: includes/options/class-wpglobus-options.php:1265
1292
  msgid "Use this table to add, edit or delete languages."
1293
  msgstr "Utiliza esta tabla para agregar, editar o eliminar idiomas."
1294
 
1295
- #: includes/options/class-wpglobus-options.php:1266
1296
  msgid "NOTE: you cannot remove the main language."
1297
  msgstr "Nota: No se puede eliminar el idioma principal."
1298
 
1299
- #: includes/options/class-wpglobus-options.php:1314
1300
  msgid "WPGlobus is enabled on these Post Types"
1301
  msgstr ""
1302
 
1303
- #: includes/options/class-wpglobus-options.php:1315
1304
  msgid "Uncheck to disable"
1305
  msgstr ""
1306
 
1307
- #: includes/options/class-wpglobus-options.php:1316
1308
  msgid ""
1309
  "Please note that there are post types, which status is managed by other "
1310
  "plugins and cannot be changed here."
1311
  msgstr ""
1312
 
1313
- #: includes/options/class-wpglobus-options.php:1321
1314
  msgid "Post Types"
1315
  msgstr ""
1316
 
1317
- #: includes/options/class-wpglobus-options.php:1337
1318
  msgid ""
1319
  "You should put here only the code provided by WPGlobus Support. Do not write "
1320
  "anything else in the sections below as it might break the functionality of "
1321
  "your website!"
1322
  msgstr ""
1323
 
1324
- #: includes/options/class-wpglobus-options.php:1378
1325
  msgid "Custom Code"
1326
  msgstr "Código personalizado"
1327
 
1328
- #: includes/options/class-wpglobus-options.php:1486,
1329
- #: includes/options/class-wpglobus-options.php:1618,
1330
- #: includes/options/class-wpglobus-options.php:1729
1331
  msgid "Enabled"
1332
  msgstr "Activado"
1333
 
1334
- #: includes/options/class-wpglobus-options.php:1499
1335
  msgid "Builders support"
1336
  msgstr ""
1337
 
1338
- #: includes/options/class-wpglobus-options.php:1551
1339
  msgid "Builder mode is enabled on these Post Types"
1340
  msgstr ""
1341
 
1342
- #: includes/options/class-wpglobus-options.php:1617
1343
  msgid "Old fashioned language switcher"
1344
  msgstr ""
1345
 
1346
- #: includes/options/class-wpglobus-options.php:1623
1347
  msgid "Block Editor"
1348
  msgstr ""
1349
 
1350
- #: includes/options/class-wpglobus-options.php:1624
1351
  msgid "Block Editor Options"
1352
  msgstr ""
1353
 
1354
- #: includes/options/class-wpglobus-options.php:1653
1355
  msgid ""
1356
  "With the current settings, you will see the following lines in the section "
1357
  "HEAD of your site pages"
1358
  msgstr ""
1359
 
1360
- #: includes/options/class-wpglobus-options.php:1655
1361
  msgid "(example for two languages)"
1362
  msgstr ""
1363
 
1364
- #: includes/options/class-wpglobus-options.php:1702
1365
  msgid ""
1366
  "Tell search engines about localized versions of your pages using the "
1367
  "hreflang tag"
1368
  msgstr ""
1369
 
1370
- #: includes/options/class-wpglobus-options.php:1711
1371
  msgid "Output the hreflang tag as"
1372
  msgstr ""
1373
 
1374
- #: includes/options/class-wpglobus-options.php:1714
1375
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1376
  msgstr ""
1377
 
1378
- #: includes/options/class-wpglobus-options.php:1715
1379
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1380
  msgstr ""
1381
 
1382
- #: includes/options/class-wpglobus-options.php:1716
1383
  msgid "Language code only (en, ru, etc.)"
1384
  msgstr ""
1385
 
1386
- #: includes/options/class-wpglobus-options.php:1728
1387
  msgid "Use the code `x-default` for the main language"
1388
  msgstr ""
1389
 
1390
- #: includes/options/class-wpglobus-options.php:1734
1391
  msgid "Multilingual SEO"
1392
  msgstr ""
1393
 
1394
- #: includes/options/class-wpglobus-options.php:1735
1395
  msgid "Multilingual SEO Options"
1396
  msgstr ""
1397
 
1398
- #: includes/options/class-wpglobus-options.php:1772
1399
  msgid ""
1400
  "With WPGlobus, you can get translations for posts and pages using REST API."
1401
  msgstr ""
1402
 
1403
- #: includes/options/class-wpglobus-options.php:1800,
1404
- #: includes/options/class-wpglobus-options.php:1808,
1405
- #: includes/options/class-wpglobus-options.php:1780,
1406
- #: includes/options/class-wpglobus-options.php:1789
1407
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1408
  msgstr ""
1409
 
1410
- #: includes/options/class-wpglobus-options.php:1777
1411
  msgid ""
1412
  "For demonstration, you can try the first post that WordPress creates at the "
1413
  "initial installation."
1414
  msgstr ""
1415
 
1416
- #: includes/options/class-wpglobus-options.php:1819
1417
  msgid ""
1418
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1419
  "information."
1420
  msgstr ""
1421
 
1422
- #: includes/options/class-wpglobus-options.php:1826
1423
  msgid ""
1424
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1425
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1426
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1427
  msgstr ""
1428
 
1429
- #: includes/options/class-wpglobus-options.php:1839
1430
  msgid "Description:"
1431
  msgstr ""
1432
 
1433
- #: includes/options/class-wpglobus-options.php:1846,
1434
- #: includes/options/class-wpglobus-options.php:1847
1435
  msgid "REST API"
1436
  msgstr ""
1437
 
1438
- #: includes/options/class-wpglobus-options.php:2180
1439
  msgid "Translate strings"
1440
  msgstr ""
1441
 
1442
- #: includes/options/fields/table/class-wpglobus-languages-table.php:66
1443
  msgid "item"
1444
  msgstr "Artículo"
1445
 
1446
- #: includes/options/fields/table/class-wpglobus-languages-table.php:68
1447
  msgid "items"
1448
  msgstr "Artículos"
1449
 
1450
- #: includes/options/fields/table/class-wpglobus-languages-table.php:88
1451
  msgid "Code"
1452
  msgstr "Código"
1453
 
1454
- #: includes/options/fields/table/class-wpglobus-languages-table.php:94
1455
  msgid "Edit"
1456
  msgstr "Editar"
1457
 
1458
- #: includes/options/fields/table/class-wpglobus-languages-table.php:99
1459
  msgid "Delete"
1460
  msgstr "Borrar"
1461
 
1462
- #: includes/options/fields/table/class-wpglobus-languages-table.php:105
1463
  msgid "File"
1464
  msgstr "Archivo"
1465
 
1466
- #: includes/options/fields/table/class-wpglobus-languages-table.php:110
1467
  msgid "Flag"
1468
  msgstr "Bandera"
1469
 
1470
- #: includes/options/fields/table/class-wpglobus-languages-table.php:120
1471
  msgid "Language name"
1472
  msgstr "Nombre del idioma"
1473
 
1474
- #: includes/options/fields/table/class-wpglobus-languages-table.php:125
1475
  msgid "English language name"
1476
  msgstr "Nombre del idioma en Inglés"
1477
 
1478
- #: includes/options/fields/table/class-wpglobus-languages-table.php:151
1479
  msgid "No items found"
1480
  msgstr "No se han encntrado artículos"
1481
 
1482
- #: includes/options/fields/table/class-wpglobus-languages-table.php:164
1483
  msgid "Add new Language"
1484
  msgstr "Añadir nuevo idioma"
1485
 
1486
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:164
1487
  msgid "No items of this type were found."
1488
  msgstr "No se encontraron artículos de este tipo."
1489
 
1490
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:107
1491
  msgid "Select an item"
1492
  msgstr "Selecciona un artículo"
1493
 
1494
- #: includes/options/templates/compatibility-beta.php:15
1495
  msgid "Multilingual support of this add-on is currently in Beta stage."
1496
  msgstr ""
1497
 
1498
- #: includes/options/templates/compatibility-beta.php:17
1499
  msgid "We do not recommend using it on production sites."
1500
  msgstr ""
1501
 
1502
- #: includes/options/templates/compatibility-beta.php:23
1503
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1504
  msgstr ""
1505
 
1506
- #: includes/options/templates/compatibility.php:69
1507
  msgid "WordPress version"
1508
  msgstr "Versión de WordPress"
1509
 
1510
- #: includes/options/templates/compatibility.php:44
1511
  msgid "In the WordPress core"
1512
  msgstr ""
1513
 
1514
- #: includes/options/templates/compatibility.php:46
1515
  msgid "Core"
1516
  msgstr "Núcleo"
1517
 
1518
- #: includes/options/templates/compatibility.php:52,
1519
- #: includes/options/templates/compatibility.php:79
1520
  msgid "Current version"
1521
  msgstr "Versión actual"
1522
 
1523
- #: includes/options/templates/compatibility.php:53,
1524
- #: includes/options/templates/compatibility.php:81
1525
  msgid "Stage"
1526
  msgstr ""
1527
 
1528
- #: includes/options/templates/compatibility.php:54,
1529
- #: includes/options/templates/compatibility.php:82
1530
  msgid "Status"
1531
  msgstr "Estado"
1532
 
1533
- #: includes/options/templates/compatibility.php:60
1534
  msgid "Block editor"
1535
  msgstr ""
1536
 
1537
- #: includes/options/templates/compatibility.php:62
1538
  msgid "production"
1539
  msgstr ""
1540
 
1541
- #: includes/options/templates/compatibility.php:73
1542
  msgid "List of supported add-ons"
1543
  msgstr ""
1544
 
1545
- #: includes/options/templates/compatibility.php:78
1546
  msgid "Add-on"
1547
  msgstr "Extensiones"
1548
 
1549
- #: includes/options/templates/compatibility.php:80
1550
  msgid "Supported minimum version"
1551
  msgstr ""
1552
 
1553
- #: includes/options/templates/compatibility.php:105
1554
  msgid "Not installed"
1555
  msgstr ""
1556
 
1557
- #: includes/options/templates/compatibility.php:102
1558
  msgid "Installed, inactive"
1559
  msgstr ""
1560
 
1561
- #: includes/options/templates/compatibility.php:100
1562
  msgid "Active"
1563
  msgstr "Activo"
1564
 
1565
- #: includes/options/templates/customize-intro.php:35
1566
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1567
  msgstr ""
1568
 
1569
- #: includes/options/templates/customize-intro.php:39
1570
  msgid "However, some themes do not follow all WordPress standards strictly."
1571
  msgstr ""
1572
 
1573
- #: includes/options/templates/customize-intro.php:41
1574
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1575
  msgstr ""
1576
 
1577
- #: includes/options/templates/customize-intro.php:45
1578
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1579
  msgstr ""
1580
 
1581
- #: includes/options/templates/customize-intro.php:53
1582
  msgid ""
1583
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1584
  "With those themes, WPGlobus Customizer is switched off by default"
1585
  msgstr ""
1586
 
1587
- #: includes/options/templates/customize-intro.php:60
1588
  msgid "The currently active theme is"
1589
  msgstr ""
1590
 
1591
- #: includes/options/templates/customize-intro.php:66
1592
  msgid "In the current version, WPGlobus Customizer does not support"
1593
  msgstr ""
1594
 
1595
- #: includes/options/templates/customize-intro.php:70
1596
  msgid "translation of the navigation menus"
1597
  msgstr ""
1598
 
1599
- #: includes/options/templates/customize-intro.php:72
1600
  msgid "to translate, please go to"
1601
  msgstr ""
1602
 
1603
- #: includes/options/templates/customize-intro.php:81
1604
  msgid "Go to Customizer"
1605
  msgstr ""
1606
 
1607
- #: includes/options/templates/customize-intro.php:88
1608
  msgid "is undefined"
1609
  msgstr ""
1610
 
1611
- #: includes/options/templates/customize-intro.php:85
1612
  msgid "is set to"
1613
  msgstr ""
1614
 
1615
- #: includes/options/templates/customize-intro.php:94
1616
  msgid "by adding to the file wp-config.php"
1617
  msgstr ""
1618
 
1619
- #: includes/options/templates/customize-intro.php:96
1620
  msgid "now"
1621
  msgstr ""
1622
 
1623
- #: includes/options/wpglobus-options-header.php:25
1624
  msgid "We rely on your support!"
1625
  msgstr ""
1626
 
1627
- #: includes/options/wpglobus-options-header.php:28
1628
  msgid "Please consider a small donation to support the future development."
1629
  msgstr ""
1630
 
1631
- #: includes/options/wpglobus-options-header.php:32
1632
  msgid "Thank you!"
1633
  msgstr "Gracias!"
1634
 
1635
- #: includes/options/wpglobus-options-header.php:55
1636
  msgid "WPGlobus Plus!"
1637
  msgstr "WPGlobus Plus!"
1638
 
1639
- #: includes/options/wpglobus-options-header.php:58
1640
  msgid ""
1641
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1642
  "separate publishing and more! "
1643
  msgstr ""
1644
 
1645
- #: includes/options/wpglobus-options-header.php:64
1646
  msgid "Get WPGlobus Plus now!"
1647
  msgstr ""
1648
 
1649
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1650
  msgid ""
1651
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1652
  "the current version."
1653
  msgstr ""
1654
 
1655
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1656
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1657
  msgstr ""
1658
 
1659
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1660
  msgid "WPGlobus warning: "
1661
  msgstr ""
1662
 
1663
- #: wpglobus.php:13
1664
  msgid "https://github.com/WPGlobus/WPGlobus"
1665
  msgstr ""
1666
 
1667
- #: wpglobus.php:14
1668
  msgid ""
1669
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1670
  "widgets and even custom fields - in multiple languages!"
@@ -1672,6 +1252,5 @@ msgstr ""
1672
  "WordPress Globalization / Plugin multilenguaje. Mensajes, páginas, menús, "
1673
  "widgets e incluso campos personalizados - en varios idiomas !"
1674
 
1675
- #: wpglobus.php:19
1676
  msgid "https://wpglobus.com/"
1677
  msgstr ""
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
 
 
 
 
 
19
  msgid "Guide"
20
  msgstr "Guía"
21
 
 
 
22
  msgid "WPGlobus Help Desk"
23
  msgstr ""
24
 
 
 
 
 
 
 
 
25
  msgid "Add-ons"
26
  msgstr "Complementos"
27
 
 
28
  msgid "Quick Start"
29
  msgstr "Inicio Rápido"
30
 
 
 
31
  msgid "FAQ"
32
  msgstr "FAQ"
33
 
 
34
  msgid ""
35
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
36
  msgstr ""
37
 
 
38
  msgid ""
39
  "The mbstring extension is required for the full UTF-8 compatibility and "
40
  "better performance. Without it, some parts of WordPress and WPGlobus may "
42
  "administrator."
43
  msgstr ""
44
 
 
45
  msgid "Go to WPGlobus Settings"
46
  msgstr "Ir a Ajustes WPGlobus"
47
 
 
48
  msgid "Easy as 1-2-3:"
49
  msgstr "Fácil en 1-2-3:"
50
 
 
51
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
52
  msgstr "Ve al menú de administración WPGlobus y elege los países/idiomas;"
53
 
 
54
  msgid ""
55
  "Enter the translations to the posts, pages, categories, tags and menus using "
56
  "a clean and simple interface."
58
  "Introduce las traducciones a los mensajes, páginas, categorías,etiquetas y "
59
  "menús usando una interfaz limpia y simple."
60
 
 
61
  msgid ""
62
  "Switch languages at the front-end using a drop-down menu with language names "
63
  "and country flags."
65
  "Cambia de idioma en el front-end utilizando un menú desplegable con los "
66
  "nombres de las lenguas y banderas de los países ."
67
 
 
68
  msgid "Links:"
69
  msgstr "Enlaces:"
70
 
 
71
  msgid "FAQs"
72
  msgstr "Preguntas Frecuentes"
73
 
 
74
  msgid "Contact Us"
75
  msgstr "Contáctanos"
76
 
 
77
  msgid "Please give us 5 stars!"
78
  msgstr "Por favor danos 5 estrellas!"
79
 
 
80
  msgid "WPGlobus does not translate texts automatically!"
81
  msgstr ""
82
 
 
83
  msgid ""
84
  "There are many translation companies and individual translators who can help "
85
  "you write and proofread the texts."
86
  msgstr ""
87
 
 
88
  msgid ""
89
  "When you choose a translator, please look at their native language, country "
90
  "of residence, specialization and knowledge of WordPress."
91
  msgstr ""
92
 
93
  #. translators: %s are used to insert HTML link. Keep them in place.
 
94
  msgid ""
95
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
96
  "website. This is not an endorsement, just a courtesy. Please contact them "
97
  "directly and let us know how did it work for you!"
98
  msgstr ""
99
 
 
100
  msgid "Important notes:"
101
  msgstr ""
102
 
 
103
  msgid ""
104
  "WPGlobus only supports the localization URLs in the form of <code>example."
105
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
110
  "subdominios <code>example.com</code> ni consultas lingüísticas <code>example."
111
  "com?lang=xx</code>."
112
 
 
113
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
114
  msgstr ""
115
  "En algunos temas y plugins <strong>No está listo el multilenguaje</strong>."
116
 
 
117
  msgid ""
118
  "They might display some texts with no translation, or with all languages "
119
  "mixed together."
122
  "mezclados entre sí."
123
 
124
  #. translators: %s are used to insert HTML link. Keep them in place.
 
125
  msgid ""
126
  "Please contact the theme / plugin author. If they are unable to assist, "
127
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
130
  "ayudarte, considera % s la contratación del WPGlobus % s para escribir un "
131
  "código personalizado para tí."
132
 
 
133
  msgid "Language was set on your profile page"
134
  msgstr ""
135
 
 
136
  msgid "Add"
137
  msgstr "Añadir"
138
 
 
 
139
  msgid "Multilingual Everything!"
140
  msgstr "Multilenguaje Total!"
141
 
 
 
142
  msgid ""
143
  "WPGlobus is a family of WordPress plugins assisting you in making "
144
  "multilingual WordPress blogs and sites."
146
  "WPGlobus es una familia de plugins de WordPress que ayudan en la traducción "
147
  "de blogs de WordPress."
148
 
 
149
  msgid "Remove the WPGlobus settings (not recommended)"
150
  msgstr ""
151
 
 
152
  msgid "Clean-up Tool"
153
  msgstr ""
154
 
 
155
  msgid "Support"
156
  msgstr "Soporte"
157
 
 
158
  msgid ""
159
  "WARNING: this operation is non-reversible. It is strongly recommended that "
160
  "you backup your database before proceeding."
161
  msgstr ""
162
 
 
163
  msgid ""
164
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
165
  "By running it, you will remove ALL translations you have entered to your "
169
  "so on."
170
  msgstr ""
171
 
 
172
  msgid ""
173
  "Make sure that your active theme does not have any code related to WPGlobus. "
174
  "Such code could be added by you or by a 3rd party developer. If that code "
177
  msgstr ""
178
 
179
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
 
180
  msgid ""
181
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
182
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
183
  msgstr ""
184
 
 
185
  msgid "You are about to clean the content of the following database tables:"
186
  msgstr ""
187
 
 
188
  msgid "The operations log"
189
  msgstr ""
190
 
 
191
  msgid ""
192
  "We are going to write a detailed log of all the database changes performed. "
193
  "It should help in the case you need to restore something important. The log "
194
  "will be written to the file:"
195
  msgstr ""
196
 
 
197
  msgid ""
198
  "Uncheck if you do not want to write the operations log (we recommend to keep "
199
  "it checked)"
200
  msgstr ""
201
 
 
202
  msgid "You have been warned..."
203
  msgstr ""
204
 
 
205
  msgid "Please confirm by checking the box below:"
206
  msgstr ""
207
 
 
208
  msgid ""
209
  "I have read and understood everything written on this page. I am aware that "
210
  "by using this tool I may loose some content of my website. I have made a "
212
  "responsible for the results."
213
  msgstr ""
214
 
 
215
  msgid "YES, I CONFIRM"
216
  msgstr ""
217
 
 
218
  msgid "Process with the Clean-up"
219
  msgstr ""
220
 
 
 
 
 
221
  msgid "Default"
222
  msgstr "Predefinido"
223
 
 
224
  msgid "Section"
225
  msgstr ""
226
 
 
227
  msgid "Show all sections"
228
  msgstr ""
229
 
 
230
  msgid "Save &amp; Reload"
231
  msgstr ""
232
 
 
 
 
233
  msgid "WPGlobus"
234
  msgstr ""
235
 
 
236
  msgid ""
237
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
238
  msgstr ""
239
 
 
240
  msgid "Fields Settings"
241
  msgstr ""
242
 
 
243
  msgid "WPGlobus Settings"
244
  msgstr ""
245
 
 
246
  msgid "Help"
247
  msgstr "Ayuda"
248
 
 
 
249
  msgid "Languages"
250
  msgstr "Idiomas"
251
 
 
 
252
  msgid "Enabled Languages"
253
  msgstr "Idiomas Habilitados"
254
 
 
 
255
  msgid "These languages are currently enabled on your site."
256
  msgstr "Estos idiomas están habilitados actualmente en su sitio."
257
 
 
 
258
  msgid "Choose a language you would like to enable."
259
  msgstr ""
260
 
 
261
  msgid "Press the [Save & Publish] button to confirm."
262
  msgstr ""
263
 
264
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
265
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
 
 
266
  msgid "or Add new Language %1$s here %2$s"
267
  msgstr ""
268
 
 
 
269
  msgid "Add Languages"
270
  msgstr "Añadir idioma"
271
 
 
 
272
  msgid "Language Selector Mode"
273
  msgstr "Modo Selector de Idioma"
274
 
 
 
275
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
276
  msgstr "Código de la bandera en dos letras (es, en, ru, it, etc.)"
277
 
 
 
278
  msgid "Full Name (English, Russian, Italian, etc.)"
279
  msgstr "Nombre completo (Español, English, Russian, Italian, etc.)"
280
 
 
 
281
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
282
  msgstr "Nombre completo con bandera (Español, English, Russian, Italian, etc.)"
283
 
 
 
284
  msgid "Flags only"
285
  msgstr "Sólo banderas"
286
 
 
 
287
  msgid ""
288
  "Choose the way language name and country flag are shown in the drop-down menu"
289
  msgstr ""
290
  "Elige el nombre del idioma y bandera del país se muestran en el menú "
291
  "desplegable"
292
 
 
293
  msgid "select navigation menu"
294
  msgstr ""
295
 
 
 
 
296
  msgid "Language Selector Menu"
297
  msgstr "Menú selector de idioma"
298
 
 
 
 
299
  msgid "Choose the navigation menu where the language selector will be shown"
300
  msgstr ""
301
  "Selecciona el menú de navegación donde se mostrará el selector de idioma"
302
 
 
303
  msgid "No menus have been created yet. Create some."
304
  msgstr ""
305
 
 
 
306
  msgid "\"All Pages\" menus Language selector"
307
  msgstr "\"Todas las páginas\" Selector de menús Idioma"
308
 
 
 
309
  msgid ""
310
  "Adds language selector to the menus that automatically list all existing "
311
  "pages (using `wp_list_pages`)"
314
  "automáticamente en todas las páginas existentes (utilizando ` "
315
  "wp_list_pages` )"
316
 
 
 
317
  msgid "Custom CSS"
318
  msgstr "Customizar CSS"
319
 
 
320
  msgid ""
321
  "Here you can enter the CSS rules to adjust the language selector menu for "
322
  "your theme. Look at the examples in the `style-samples.css` file."
324
  "Aquí puedes introducir las reglas CSS para ajustar el menú de selección de "
325
  "idiomas para tu tema. Mira los ejemplos en el `style-samples.css` file."
326
 
 
327
  msgid "Post types"
328
  msgstr "Tipos de Post"
329
 
 
330
  msgid "Uncheck to disable WPGlobus"
331
  msgstr "Desactiva la opción para desactivar WPGlobus"
332
 
 
 
333
  msgid "Redirect"
334
  msgstr "Redirección"
335
 
 
 
336
  msgid "Choose the language automatically, based on:"
337
  msgstr ""
338
 
 
 
339
  msgid "Preferred language set in the browser"
340
  msgstr ""
341
 
 
 
342
  msgid ""
343
  "When a user comes to the site for the first time, try to find the best "
344
  "matching language version of the page."
345
  msgstr ""
346
 
 
 
 
 
347
  msgid "Custom JS Code"
348
  msgstr ""
349
 
 
 
350
  msgid "Title"
351
  msgstr "Título"
352
 
 
353
  msgid "(Paste your JS code here.)"
354
  msgstr ""
355
 
 
356
  msgid ""
357
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
358
  "version 4.9 or later."
359
  msgstr ""
360
 
 
361
  msgid "With your version of WordPress, please use the"
362
  msgstr ""
363
 
 
364
  msgid "WPGlobus Settings page"
365
  msgstr ""
366
 
 
367
  msgid "Label"
368
  msgstr "Etiqueta"
369
 
 
370
  msgid "Description"
371
  msgstr "Decripción"
372
 
 
373
  msgid ""
374
  "Here you can specify which fields should be considered multilingual by "
375
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
376
  msgstr ""
377
 
 
 
378
  msgid "Thank you for installing WPGlobus!"
379
  msgstr "Gracias por instalar WPGlobus!"
380
 
 
 
381
  msgid "Read About WPGlobus"
382
  msgstr "Leer sobre WPGlobus!"
383
 
 
384
  msgid ""
385
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
386
  msgstr ""
387
  "Click en la <strong>[Idiomas]</strong> pestaña en la parte izquierda de "
388
  "configuración de las opciones."
389
 
 
 
390
  msgid ""
391
  "Should you have any questions or comments, please do not hesitate to contact "
392
  "us."
394
  "Si tienes alguna pregunta o comentario, por favor no dudes en contactar con "
395
  "nosotros."
396
 
 
 
397
  msgid "Sincerely Yours,"
398
  msgstr "Sinceramente tuyo,"
399
 
 
 
 
400
  msgid "The WPGlobus Team"
401
  msgstr "El Equipo WPGlobus"
402
 
403
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
404
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
405
  msgid ""
406
  "We would hate to see you go. If something goes wrong, do not uninstall "
407
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
408
  msgstr ""
409
 
 
 
410
  msgid ""
411
  "Please note that if you deactivate WPGlobus, your site will show all the "
412
  "languages together, mixed up. You will need to remove all translations, "
415
 
416
  #. translators: %s: link to the Clean-up Tool
417
  #. translators: %s: link to the Clean-up Tool.
 
 
418
  msgid ""
419
  "If there are just a few places, you should edit them manually. To "
420
  "automatically remove all translations at once, you can use the %s. WARNING: "
424
 
425
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
426
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
427
  msgid "%1$sClean-up Tool%2$s"
428
  msgstr ""
429
 
430
  #. translators: %s: name of current theme
 
431
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
432
  msgstr ""
433
 
434
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
435
  msgid "Please use %1$sWPGlobus options page%2$s instead."
436
  msgstr ""
437
 
 
438
  msgid "Expand/Shrink"
439
  msgstr ""
440
 
 
 
441
  msgid "WPGlobus News"
442
  msgstr ""
443
 
 
 
444
  msgid "Options updated"
445
  msgstr "Opciones actualizadas"
446
 
 
447
  msgid "Please enter a language code!"
448
  msgstr "Por favor, introduce el código del idioma!"
449
 
 
450
  msgid "Language code already exists!"
451
  msgstr "Este código de idioma ya existe!"
452
 
 
453
  msgid "Please specify the language flag!"
454
  msgstr "Por favor, especifica la bandera del idioma !"
455
 
 
456
  msgid "Please enter the language name!"
457
  msgstr "Por favor introduce el nombre del idioma!"
458
 
 
459
  msgid "Please enter the language name in English!"
460
  msgstr "Por favor introduce el nombre del idioma en Inglés!"
461
 
 
462
  msgid "Please enter the locale!"
463
  msgstr "Por favor introduce la localización!"
464
 
 
465
  msgid "Add Language"
466
  msgstr "Añadir Idioma"
467
 
 
 
 
468
  msgid "Delete Language"
469
  msgstr "Eliminar Idioma"
470
 
 
471
  msgid "Edit Language"
472
  msgstr "Editar Idioma"
473
 
 
474
  msgid "Language Code"
475
  msgstr "Código del Idioma"
476
 
 
477
  msgid ""
478
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
479
  msgstr ""
480
  "2-Carta de códigos de idioma ISO para el idioma que deseas insertar. "
481
  "(Ejemplo : en)"
482
 
 
483
  msgid "Language flag"
484
  msgstr "Bandera del idioma"
485
 
 
486
  msgid "Name"
487
  msgstr "Nombre"
488
 
 
489
  msgid ""
490
  "The name of the language in its native alphabet. (Examples: English, Русский)"
491
  msgstr ""
492
  "El nombre de la lengua en su alfabeto nativo. (Ejemplos : Español, English, "
493
  "Русский )"
494
 
 
495
  msgid "Name in English"
496
  msgstr "Nombre en Inglés"
497
 
 
498
  msgid "The name of the language in English"
499
  msgstr "El nombre del idioma en Inglés"
500
 
 
 
501
  msgid "Locale"
502
  msgstr "Local"
503
 
 
504
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
505
  msgstr ""
506
  "PHP / WordPress configuración regional de la lengua . (Ejemplos : en_US, "
507
  "es_ES, ru_RU)"
508
 
 
509
  msgid "Are you sure you want to delete?"
510
  msgstr "Estás seguro de que quieres borrarlo?"
511
 
 
512
  msgid "Save Changes"
513
  msgstr "Guardar Cambios"
514
 
 
515
  msgid "Back to the WPGlobus Settings"
516
  msgstr "Volver a Ajustes WPGlobus"
517
 
 
518
  msgid "Current Version"
519
  msgstr "Versión Actual"
520
 
 
521
  msgid "Get it now!"
522
  msgstr ""
523
 
 
524
  msgid "Premium add-on"
525
  msgstr ""
526
 
 
 
527
  msgid "Installed"
528
  msgstr "Instalado"
529
 
530
  #. translators: placeholders are for the HTML tags.
 
531
  msgid ""
532
  "If you have already purchased a WPGlobus premium extension, please read "
533
  "%1$sthe installation instructions here%2$s"
534
  msgstr ""
535
 
 
 
536
  msgid "Help Desk"
537
  msgstr ""
538
 
 
539
  msgid "Email not sent. Please fill in the entire form."
540
  msgstr ""
541
 
 
542
  msgid ""
543
  "Email not sent. Please verify that your name and email are entered correctly."
544
  msgstr ""
545
 
 
546
  msgid "Email sent."
547
  msgstr ""
548
 
 
549
  msgid "Thank you for using WPGlobus!"
550
  msgstr ""
551
 
 
552
  msgid "Our Support Team is here to answer your questions or concerns."
553
  msgstr ""
554
 
 
555
  msgid "To help us serve you better:"
556
  msgstr ""
557
 
 
558
  msgid ""
559
  "Please check if the problem persists if you switch to a standard WordPress "
560
  "theme."
561
  msgstr ""
562
 
 
563
  msgid ""
564
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
565
  msgstr ""
566
 
 
567
  msgid "Please fill in and submit the contact form:"
568
  msgstr ""
569
 
 
570
  msgid "Please make sure the email address is correct."
571
  msgstr ""
572
 
 
573
  msgid "Subject"
574
  msgstr "Asunto"
575
 
 
576
  msgid "Short description of the problem"
577
  msgstr ""
578
 
 
579
  msgid "Detailed description"
580
  msgstr ""
581
 
 
582
  msgid "Technical Information"
583
  msgstr ""
584
 
 
585
  msgid "This information helps us to find the problem source"
586
  msgstr ""
587
 
 
588
  msgid ""
589
  "Alternatively, please email %s. Do not forget to copy and paste the "
590
  "technical information to your email message."
591
  msgstr ""
592
 
 
593
  msgid "WPGlobus Recommends:"
594
  msgstr ""
595
 
 
 
596
  msgid "WPGlobus for WooCommerce"
597
  msgstr ""
598
 
 
599
  msgid ""
600
  "Translate product titles and descriptions, product categories, tags and "
601
  "attributes."
602
  msgstr ""
603
 
 
604
  msgid "Get it now:"
605
  msgstr ""
606
 
 
607
  msgid "WooCommerce Multi-Currency"
608
  msgstr ""
609
 
 
610
  msgid "Accept multiple currencies in your online store!"
611
  msgstr ""
612
 
 
 
613
  msgid "Check it out:"
614
  msgstr ""
615
 
 
616
  msgid "To translate permalinks, please activate the module Slug."
617
  msgstr ""
618
 
 
619
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
620
  msgstr ""
621
 
 
 
622
  msgid "Save draft before using extra language."
623
  msgstr ""
624
 
 
625
  msgid "Builder"
626
  msgstr ""
627
 
 
628
  msgid "Сompatibility Settings"
629
  msgstr ""
630
 
631
  #. translators: ON/OFF status of WPGlobus on the edit pages.
632
  #. translators: ON/OFF status of WPGlobus on the edit pages.
 
 
633
  msgid "ON"
634
  msgstr "ON"
635
 
 
 
636
  msgid "Turn off"
637
  msgstr ""
638
 
 
 
639
  msgid "OFF"
640
  msgstr ""
641
 
 
 
642
  msgid "Turn on"
643
  msgstr ""
644
 
 
645
  msgid "Elementor"
646
  msgstr ""
647
 
 
648
  msgid "WPGlobus languages"
649
  msgstr ""
650
 
 
651
  msgid "current"
652
  msgstr ""
653
 
 
654
  msgid ""
655
  "WPGlobus provides multilingual support for Elementor only when the option "
656
  "%1$s%2$s%3$s is set to %4$s."
657
  msgstr ""
658
 
 
659
  msgid "Before switching the language, please save draft or publish."
660
  msgstr ""
661
 
662
  #. translators: Metabox title FOR language.
 
663
  msgctxt "filter__seo_meta_box_title"
664
  msgid "for"
665
  msgstr ""
666
 
 
667
  msgid "Page is being reloaded. Please wait..."
668
  msgstr ""
669
 
 
670
  msgid ""
671
  "Before switching the language, please save draft or publish, then reload "
672
  "page."
673
  msgstr ""
674
 
 
675
  msgid ""
676
  "WPGlobus provides multilingual support for Elementor only when the option "
677
  "`CSS Print Method` is set to `External File`."
678
  msgstr ""
679
 
 
680
  msgid "Open Elementor Settings page"
681
  msgstr ""
682
 
 
683
  msgid "WPGlobus widget"
684
  msgstr "WPGlobus widget"
685
 
 
686
  msgid "Add language switcher"
687
  msgstr "Añadir selector de idiomas"
688
 
 
689
  msgid "Flags"
690
  msgstr "Banderas"
691
 
 
692
  msgid "List"
693
  msgstr "Lista"
694
 
 
695
  msgid "List with flags"
696
  msgstr "Lista con Banderas"
697
 
 
698
  msgid "Select"
699
  msgstr "Seleccionar"
700
 
 
701
  msgid "Select with language code"
702
  msgstr "Seleccionar con el código de idioma"
703
 
 
704
  msgid "Dropdown"
705
  msgstr "Desplegable"
706
 
 
707
  msgid "Dropdown with flags"
708
  msgstr "Desplegable con banderas"
709
 
 
710
  msgid "Selector type"
711
  msgstr "Tipo de selector"
712
 
 
713
  msgid "You cannot disable the main language."
714
  msgstr "No se puede desactivar el idioma principal."
715
 
 
716
  msgid "Need a multilingual slug?"
717
  msgstr ""
718
 
 
719
  msgid "*) Available after the menu is saved."
720
  msgstr "No Se Puede Desactivar el director idioma."
721
 
 
722
  msgid "You must enable Pretty Permalinks to use WPGlobus."
723
  msgstr ""
724
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
725
 
 
726
  msgid ""
727
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
728
  "default option."
730
  "Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
731
  "selecciona una opción no predeterminada ."
732
 
 
733
  msgid "Language Selector Menu Style"
734
  msgstr ""
735
 
 
 
 
736
  msgid "WPGlobus Plus"
737
  msgstr ""
738
 
 
739
  msgid "Drop-down languages menu or Flat (in one line)"
740
  msgstr ""
741
 
 
742
  msgid "Do not change"
743
  msgstr ""
744
 
 
745
  msgid "Drop-down (vertical)"
746
  msgstr ""
747
 
 
748
  msgid "Flat (horizontal)"
749
  msgstr ""
750
 
 
751
  msgid ""
752
  "If you see this message then your browser may not display the WPGlobus "
753
  "Settings panel properly. Please try another browser."
754
  msgstr ""
755
 
 
 
756
  msgid "Сompatibility"
757
  msgstr ""
758
 
759
  #. translators: placeholders for "strong" tags.
 
760
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
761
  msgstr ""
762
 
763
  #. translators: placeholders for "strong" tags.
 
764
  msgid ""
765
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
766
  "the language attributes: name, code, flag icon, etc."
767
  msgstr ""
768
 
 
769
  msgid "Important notes"
770
  msgstr "Notas importantes"
771
 
772
  #. translators: placeholders for "strong" tags.
 
773
  msgid "Version %1$s1.9.17%2$s "
774
  msgstr ""
775
 
776
  #. translators: placeholders for "strong" tags.
 
777
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
778
  msgstr ""
779
 
780
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
781
  msgid ""
782
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
783
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
784
  msgstr ""
785
 
786
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
787
  msgid ""
788
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
789
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
790
  msgstr ""
791
 
792
  #. translators: placeholders for "strong" tags.
 
793
  msgid "Version %1$s2.2.11%2$s "
794
  msgstr ""
795
 
 
796
  msgid "Starting from this version"
797
  msgstr ""
798
 
799
  #. translators: placeholders for "strong" tags.
 
800
  msgid ""
801
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
802
  "(CPT)."
803
  msgstr ""
804
 
805
  #. translators: placeholders for "strong" tags.
 
806
  msgid ""
807
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
808
  "the %1$s[%3$s]%2$s tab."
809
  msgstr ""
810
 
 
811
  msgid "Welcome!"
812
  msgstr "Bienvenido!"
813
 
 
814
  msgid "Deactivating / Uninstalling"
815
  msgstr ""
816
 
 
817
  msgid "Uninstall"
818
  msgstr "Desinstalar"
819
 
 
820
  msgid "All add-ons"
821
  msgstr ""
822
 
 
823
  msgid "Mobile Menu"
824
  msgstr ""
825
 
 
826
  msgid "Language Widgets"
827
  msgstr ""
828
 
 
829
  msgid "We Recommend..."
830
  msgstr ""
831
 
 
832
  msgid ""
833
  "Our premium add-on, WPGlobus Plus, will add several features to your "
834
  "website, such as:"
835
  msgstr ""
836
 
 
837
  msgid ""
838
  "- Ability to write a post in one language and immediately publish it, not "
839
  "waiting for the translation to other languages;"
840
  msgstr ""
841
 
 
842
  msgid "- Set different URLs for each translation;"
843
  msgstr ""
844
 
 
845
  msgid ""
846
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
847
  "for each translation;"
848
  msgstr ""
849
 
 
850
  msgid "- and more..."
851
  msgstr ""
852
 
 
 
 
853
  msgid "Click here to download"
854
  msgstr ""
855
 
 
856
  msgid ""
857
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
858
  "translate your blog posts and pages to many languages."
859
  msgstr ""
860
 
 
861
  msgid "The next step is to translate your WooCommerce-based store!"
862
  msgstr ""
863
 
 
864
  msgid ""
865
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
866
  "translate product titles and descriptions, categories, tags and attributes."
867
  msgstr ""
868
 
 
869
  msgid "Multi-currency"
870
  msgstr ""
871
 
 
872
  msgid ""
873
  "Your WooCommerce-powered store is set to show prices and accept payments in "
874
  "a single currency only."
875
  msgstr ""
876
 
 
877
  msgid ""
878
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
879
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
881
  "positioning for global growth!"
882
  msgstr ""
883
 
 
884
  msgid ""
885
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
886
  "re-calculating prices on-the-fly."
887
  msgstr ""
888
 
 
889
  msgid "WPGlobus Premium Add-ons"
890
  msgstr ""
891
 
 
892
  msgid ""
893
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
894
  "you will be able to:"
895
  msgstr ""
896
 
 
897
  msgid ""
898
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
899
  "моя-страница and so on);"
900
  msgstr ""
901
 
 
902
  msgid ""
903
  "Postpone translation to some languages and <strong>publish only the "
904
  "translated texts</strong>;"
905
  msgstr ""
906
 
 
907
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
908
  msgstr ""
909
 
 
910
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
911
  msgstr ""
912
 
 
913
  msgid ""
914
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
915
  "strong>;"
916
  msgstr ""
917
 
 
918
  msgid "...and more."
919
  msgstr ""
920
 
 
921
  msgid "Click here to visit the WPGlobus Store"
922
  msgstr ""
923
 
 
924
  msgid "Select a language"
925
  msgstr "Seleccionar un idioma"
926
 
927
  #. translators: %3$s placeholder for the icon (actual picture).
 
928
  msgid ""
929
  "Place the %1$smain language%2$s of your site at the top of the list by "
930
  "dragging the %3$s icons."
931
  msgstr ""
932
 
933
  #. translators: placeholders for the "strong" HTML tags.
 
934
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
935
  msgstr ""
936
 
937
  #. translators: placeholders for the "strong" HTML tags.
 
938
  msgid "%1$sAdd%2$s more languages using the section below."
939
  msgstr ""
940
 
 
941
  msgid "When done, click the [Save Changes] button."
942
  msgstr "Cuando hayas terminado, haz clic en el botón [Guardar Cambios] ."
943
 
944
  #. translators: %s - placeholder for the "Save Changes" button text.
 
945
  msgid "Press the %s button to confirm."
946
  msgstr ""
947
 
948
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
 
949
  msgid "-- none --"
950
  msgstr ""
951
 
 
952
  msgid "All menus"
953
  msgstr ""
954
 
 
955
  msgid "Instructions:"
956
  msgstr "Instrucciones:"
957
 
 
958
  msgid "(Found in some themes)"
959
  msgstr "(Encontrado en algunos temas)"
960
 
 
961
  msgid "Enable"
962
  msgstr "Habilitar"
963
 
 
964
  msgid "Languages table"
965
  msgstr "Tabla de idiomas"
966
 
 
967
  msgid "Use this table to add, edit or delete languages."
968
  msgstr "Utiliza esta tabla para agregar, editar o eliminar idiomas."
969
 
 
970
  msgid "NOTE: you cannot remove the main language."
971
  msgstr "Nota: No se puede eliminar el idioma principal."
972
 
 
973
  msgid "WPGlobus is enabled on these Post Types"
974
  msgstr ""
975
 
 
976
  msgid "Uncheck to disable"
977
  msgstr ""
978
 
 
979
  msgid ""
980
  "Please note that there are post types, which status is managed by other "
981
  "plugins and cannot be changed here."
982
  msgstr ""
983
 
 
984
  msgid "Post Types"
985
  msgstr ""
986
 
 
987
  msgid ""
988
  "You should put here only the code provided by WPGlobus Support. Do not write "
989
  "anything else in the sections below as it might break the functionality of "
990
  "your website!"
991
  msgstr ""
992
 
 
993
  msgid "Custom Code"
994
  msgstr "Código personalizado"
995
 
 
 
 
996
  msgid "Enabled"
997
  msgstr "Activado"
998
 
 
999
  msgid "Builders support"
1000
  msgstr ""
1001
 
 
1002
  msgid "Builder mode is enabled on these Post Types"
1003
  msgstr ""
1004
 
 
1005
  msgid "Old fashioned language switcher"
1006
  msgstr ""
1007
 
 
1008
  msgid "Block Editor"
1009
  msgstr ""
1010
 
 
1011
  msgid "Block Editor Options"
1012
  msgstr ""
1013
 
 
1014
  msgid ""
1015
  "With the current settings, you will see the following lines in the section "
1016
  "HEAD of your site pages"
1017
  msgstr ""
1018
 
 
1019
  msgid "(example for two languages)"
1020
  msgstr ""
1021
 
 
1022
  msgid ""
1023
  "Tell search engines about localized versions of your pages using the "
1024
  "hreflang tag"
1025
  msgstr ""
1026
 
 
1027
  msgid "Output the hreflang tag as"
1028
  msgstr ""
1029
 
 
1030
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1031
  msgstr ""
1032
 
 
1033
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1034
  msgstr ""
1035
 
 
1036
  msgid "Language code only (en, ru, etc.)"
1037
  msgstr ""
1038
 
 
1039
  msgid "Use the code `x-default` for the main language"
1040
  msgstr ""
1041
 
 
1042
  msgid "Multilingual SEO"
1043
  msgstr ""
1044
 
 
1045
  msgid "Multilingual SEO Options"
1046
  msgstr ""
1047
 
 
1048
  msgid ""
1049
  "With WPGlobus, you can get translations for posts and pages using REST API."
1050
  msgstr ""
1051
 
 
 
 
 
1052
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1053
  msgstr ""
1054
 
 
1055
  msgid ""
1056
  "For demonstration, you can try the first post that WordPress creates at the "
1057
  "initial installation."
1058
  msgstr ""
1059
 
 
1060
  msgid ""
1061
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1062
  "information."
1063
  msgstr ""
1064
 
 
1065
  msgid ""
1066
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1067
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1068
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1069
  msgstr ""
1070
 
 
1071
  msgid "Description:"
1072
  msgstr ""
1073
 
 
 
1074
  msgid "REST API"
1075
  msgstr ""
1076
 
 
1077
  msgid "Translate strings"
1078
  msgstr ""
1079
 
 
1080
  msgid "item"
1081
  msgstr "Artículo"
1082
 
 
1083
  msgid "items"
1084
  msgstr "Artículos"
1085
 
 
1086
  msgid "Code"
1087
  msgstr "Código"
1088
 
 
1089
  msgid "Edit"
1090
  msgstr "Editar"
1091
 
 
1092
  msgid "Delete"
1093
  msgstr "Borrar"
1094
 
 
1095
  msgid "File"
1096
  msgstr "Archivo"
1097
 
 
1098
  msgid "Flag"
1099
  msgstr "Bandera"
1100
 
 
1101
  msgid "Language name"
1102
  msgstr "Nombre del idioma"
1103
 
 
1104
  msgid "English language name"
1105
  msgstr "Nombre del idioma en Inglés"
1106
 
 
1107
  msgid "No items found"
1108
  msgstr "No se han encntrado artículos"
1109
 
 
1110
  msgid "Add new Language"
1111
  msgstr "Añadir nuevo idioma"
1112
 
 
1113
  msgid "No items of this type were found."
1114
  msgstr "No se encontraron artículos de este tipo."
1115
 
 
1116
  msgid "Select an item"
1117
  msgstr "Selecciona un artículo"
1118
 
 
1119
  msgid "Multilingual support of this add-on is currently in Beta stage."
1120
  msgstr ""
1121
 
 
1122
  msgid "We do not recommend using it on production sites."
1123
  msgstr ""
1124
 
 
1125
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1126
  msgstr ""
1127
 
 
1128
  msgid "WordPress version"
1129
  msgstr "Versión de WordPress"
1130
 
 
1131
  msgid "In the WordPress core"
1132
  msgstr ""
1133
 
 
1134
  msgid "Core"
1135
  msgstr "Núcleo"
1136
 
 
 
1137
  msgid "Current version"
1138
  msgstr "Versión actual"
1139
 
 
 
1140
  msgid "Stage"
1141
  msgstr ""
1142
 
 
 
1143
  msgid "Status"
1144
  msgstr "Estado"
1145
 
 
1146
  msgid "Block editor"
1147
  msgstr ""
1148
 
 
1149
  msgid "production"
1150
  msgstr ""
1151
 
 
1152
  msgid "List of supported add-ons"
1153
  msgstr ""
1154
 
 
1155
  msgid "Add-on"
1156
  msgstr "Extensiones"
1157
 
 
1158
  msgid "Supported minimum version"
1159
  msgstr ""
1160
 
 
1161
  msgid "Not installed"
1162
  msgstr ""
1163
 
 
1164
  msgid "Installed, inactive"
1165
  msgstr ""
1166
 
 
1167
  msgid "Active"
1168
  msgstr "Activo"
1169
 
 
1170
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1171
  msgstr ""
1172
 
 
1173
  msgid "However, some themes do not follow all WordPress standards strictly."
1174
  msgstr ""
1175
 
 
1176
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1177
  msgstr ""
1178
 
 
1179
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1180
  msgstr ""
1181
 
 
1182
  msgid ""
1183
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1184
  "With those themes, WPGlobus Customizer is switched off by default"
1185
  msgstr ""
1186
 
 
1187
  msgid "The currently active theme is"
1188
  msgstr ""
1189
 
 
1190
  msgid "In the current version, WPGlobus Customizer does not support"
1191
  msgstr ""
1192
 
 
1193
  msgid "translation of the navigation menus"
1194
  msgstr ""
1195
 
 
1196
  msgid "to translate, please go to"
1197
  msgstr ""
1198
 
 
1199
  msgid "Go to Customizer"
1200
  msgstr ""
1201
 
 
1202
  msgid "is undefined"
1203
  msgstr ""
1204
 
 
1205
  msgid "is set to"
1206
  msgstr ""
1207
 
 
1208
  msgid "by adding to the file wp-config.php"
1209
  msgstr ""
1210
 
 
1211
  msgid "now"
1212
  msgstr ""
1213
 
 
1214
  msgid "We rely on your support!"
1215
  msgstr ""
1216
 
 
1217
  msgid "Please consider a small donation to support the future development."
1218
  msgstr ""
1219
 
 
1220
  msgid "Thank you!"
1221
  msgstr "Gracias!"
1222
 
 
1223
  msgid "WPGlobus Plus!"
1224
  msgstr "WPGlobus Plus!"
1225
 
 
1226
  msgid ""
1227
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1228
  "separate publishing and more! "
1229
  msgstr ""
1230
 
 
1231
  msgid "Get WPGlobus Plus now!"
1232
  msgstr ""
1233
 
 
1234
  msgid ""
1235
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1236
  "the current version."
1237
  msgstr ""
1238
 
 
1239
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1240
  msgstr ""
1241
 
 
1242
  msgid "WPGlobus warning: "
1243
  msgstr ""
1244
 
 
1245
  msgid "https://github.com/WPGlobus/WPGlobus"
1246
  msgstr ""
1247
 
 
1248
  msgid ""
1249
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1250
  "widgets and even custom fields - in multiple languages!"
1252
  "WordPress Globalization / Plugin multilenguaje. Mensajes, páginas, menús, "
1253
  "widgets e incluso campos personalizados - en varios idiomas !"
1254
 
 
1255
  msgid "https://wpglobus.com/"
1256
  msgstr ""
languages/wpglobus-es_GT.po CHANGED
@@ -16,44 +16,25 @@ msgstr ""
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
- #: includes/admin/central/class-wpglobus-admin-central.php:122,
20
- #: includes/admin/class-wpglobus-about.php:42,
21
- #: includes/admin/class-wpglobus-about.php:117,
22
- #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr "Guía"
26
 
27
- #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
32
- #: includes/admin/central/class-wpglobus-admin-central.php:157,
33
- #: includes/admin/class-wpglobus-about.php:36,
34
- #: includes/admin/class-wpglobus-admin-menu.php:22,
35
- #: includes/admin/class-wpglobus-clean.php:606,
36
- #: includes/admin/class-wpglobus-customize-options.php:1293,
37
- #: includes/admin/class-wpglobus-customize-options.php:1261,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr "Complementos"
41
 
42
- #: includes/admin/class-wpglobus-about.php:26
43
  msgid "Quick Start"
44
  msgstr "Inicio Rápido"
45
 
46
- #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
51
- #: includes/admin/class-wpglobus-about.php:59
52
  msgid ""
53
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
54
  msgstr ""
55
 
56
- #: includes/admin/class-wpglobus-about.php:60
57
  msgid ""
58
  "The mbstring extension is required for the full UTF-8 compatibility and "
59
  "better performance. Without it, some parts of WordPress and WPGlobus may "
@@ -61,19 +42,15 @@ msgid ""
61
  "administrator."
62
  msgstr ""
63
 
64
- #: includes/admin/class-wpglobus-about.php:87
65
  msgid "Go to WPGlobus Settings"
66
  msgstr "Ir a Ajustes WPGlobus"
67
 
68
- #: includes/admin/class-wpglobus-about.php:98
69
  msgid "Easy as 1-2-3:"
70
  msgstr "Fácil en 1-2-3:"
71
 
72
- #: includes/admin/class-wpglobus-about.php:101
73
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
74
  msgstr "Ve al menú de administración WPGlobus y elege los países/idiomas;"
75
 
76
- #: includes/admin/class-wpglobus-about.php:102
77
  msgid ""
78
  "Enter the translations to the posts, pages, categories, tags and menus using "
79
  "a clean and simple interface."
@@ -81,7 +58,6 @@ msgstr ""
81
  "Introduce las traducciones a los mensajes, páginas, categorías,etiquetas y "
82
  "menús usando una interfaz limpia y simple."
83
 
84
- #: includes/admin/class-wpglobus-about.php:103
85
  msgid ""
86
  "Switch languages at the front-end using a drop-down menu with language names "
87
  "and country flags."
@@ -89,51 +65,41 @@ msgstr ""
89
  "Cambia de idioma en el front-end utilizando un menú desplegable con los "
90
  "nombres de las lenguas y banderas de los países ."
91
 
92
- #: includes/admin/class-wpglobus-about.php:111
93
  msgid "Links:"
94
  msgstr "Enlaces:"
95
 
96
- #: includes/admin/class-wpglobus-about.php:119
97
  msgid "FAQs"
98
  msgstr "Preguntas Frecuentes"
99
 
100
- #: includes/admin/class-wpglobus-about.php:121
101
  msgid "Contact Us"
102
  msgstr "Contáctanos"
103
 
104
- #: includes/admin/class-wpglobus-about.php:123
105
  msgid "Please give us 5 stars!"
106
  msgstr "Por favor danos 5 estrellas!"
107
 
108
- #: includes/admin/class-wpglobus-about.php:133
109
  msgid "WPGlobus does not translate texts automatically!"
110
  msgstr ""
111
 
112
- #: includes/admin/class-wpglobus-about.php:136
113
  msgid ""
114
  "There are many translation companies and individual translators who can help "
115
  "you write and proofread the texts."
116
  msgstr ""
117
 
118
- #: includes/admin/class-wpglobus-about.php:137
119
  msgid ""
120
  "When you choose a translator, please look at their native language, country "
121
  "of residence, specialization and knowledge of WordPress."
122
  msgstr ""
123
 
124
  #. translators: %s are used to insert HTML link. Keep them in place.
125
- #: includes/admin/class-wpglobus-about.php:143
126
  msgid ""
127
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
128
  "website. This is not an endorsement, just a courtesy. Please contact them "
129
  "directly and let us know how did it work for you!"
130
  msgstr ""
131
 
132
- #: includes/admin/class-wpglobus-about.php:154
133
  msgid "Important notes:"
134
  msgstr ""
135
 
136
- #: includes/admin/class-wpglobus-about.php:159
137
  msgid ""
138
  "WPGlobus only supports the localization URLs in the form of <code>example."
139
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
@@ -144,12 +110,10 @@ msgstr ""
144
  "subdominios <code>example.com</code> ni consultas lingüísticas <code>example."
145
  "com?lang=xx</code>."
146
 
147
- #: includes/admin/class-wpglobus-about.php:162
148
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
149
  msgstr ""
150
  "En algunos temas y plugins <strong>No está listo el multilenguaje</strong>."
151
 
152
- #: includes/admin/class-wpglobus-about.php:163
153
  msgid ""
154
  "They might display some texts with no translation, or with all languages "
155
  "mixed together."
@@ -158,7 +122,6 @@ msgstr ""
158
  "mezclados entre sí."
159
 
160
  #. translators: %s are used to insert HTML link. Keep them in place.
161
- #: includes/admin/class-wpglobus-about.php:167
162
  msgid ""
163
  "Please contact the theme / plugin author. If they are unable to assist, "
164
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
@@ -167,21 +130,15 @@ msgstr ""
167
  "ayudarte, considera % s la contratación del WPGlobus % s para escribir un "
168
  "código personalizado para tí."
169
 
170
- #: includes/admin/class-wpglobus-admin-bar-menu.php:124
171
  msgid "Language was set on your profile page"
172
  msgstr ""
173
 
174
- #: includes/admin/class-wpglobus-admin-bar-menu.php:194
175
  msgid "Add"
176
  msgstr "Añadir"
177
 
178
- #: includes/admin/class-wpglobus-admin-page.php:32,
179
- #: includes/admin/class-wpglobus-clean.php:585
180
  msgid "Multilingual Everything!"
181
  msgstr "Multilenguaje Total!"
182
 
183
- #: includes/admin/class-wpglobus-admin-page.php:34,
184
- #: includes/admin/class-wpglobus-clean.php:588
185
  msgid ""
186
  "WPGlobus is a family of WordPress plugins assisting you in making "
187
  "multilingual WordPress blogs and sites."
@@ -189,25 +146,20 @@ msgstr ""
189
  "WPGlobus es una familia de plugins de WordPress que ayudan en la traducción "
190
  "de blogs de WordPress."
191
 
192
- #: includes/admin/class-wpglobus-clean.php:232
193
  msgid "Remove the WPGlobus settings (not recommended)"
194
  msgstr ""
195
 
196
- #: includes/admin/class-wpglobus-clean.php:595
197
  msgid "Clean-up Tool"
198
  msgstr ""
199
 
200
- #: includes/admin/class-wpglobus-clean.php:609
201
  msgid "Support"
202
  msgstr "Soporte"
203
 
204
- #: includes/admin/class-wpglobus-clean.php:614
205
  msgid ""
206
  "WARNING: this operation is non-reversible. It is strongly recommended that "
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
- #: includes/admin/class-wpglobus-clean.php:619
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
@@ -217,7 +169,6 @@ msgid ""
217
  "so on."
218
  msgstr ""
219
 
220
- #: includes/admin/class-wpglobus-clean.php:622
221
  msgid ""
222
  "Make sure that your active theme does not have any code related to WPGlobus. "
223
  "Such code could be added by you or by a 3rd party developer. If that code "
@@ -226,42 +177,34 @@ msgid ""
226
  msgstr ""
227
 
228
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
229
- #: includes/admin/class-wpglobus-clean.php:630
230
  msgid ""
231
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
232
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
233
  msgstr ""
234
 
235
- #: includes/admin/class-wpglobus-clean.php:641
236
  msgid "You are about to clean the content of the following database tables:"
237
  msgstr ""
238
 
239
- #: includes/admin/class-wpglobus-clean.php:649
240
  msgid "The operations log"
241
  msgstr ""
242
 
243
- #: includes/admin/class-wpglobus-clean.php:652
244
  msgid ""
245
  "We are going to write a detailed log of all the database changes performed. "
246
  "It should help in the case you need to restore something important. The log "
247
  "will be written to the file:"
248
  msgstr ""
249
 
250
- #: includes/admin/class-wpglobus-clean.php:662
251
  msgid ""
252
  "Uncheck if you do not want to write the operations log (we recommend to keep "
253
  "it checked)"
254
  msgstr ""
255
 
256
- #: includes/admin/class-wpglobus-clean.php:667
257
  msgid "You have been warned..."
258
  msgstr ""
259
 
260
- #: includes/admin/class-wpglobus-clean.php:669
261
  msgid "Please confirm by checking the box below:"
262
  msgstr ""
263
 
264
- #: includes/admin/class-wpglobus-clean.php:671
265
  msgid ""
266
  "I have read and understood everything written on this page. I am aware that "
267
  "by using this tool I may loose some content of my website. I have made a "
@@ -269,153 +212,100 @@ msgid ""
269
  "responsible for the results."
270
  msgstr ""
271
 
272
- #: includes/admin/class-wpglobus-clean.php:674
273
  msgid "YES, I CONFIRM"
274
  msgstr ""
275
 
276
- #: includes/admin/class-wpglobus-clean.php:678
277
  msgid "Process with the Clean-up"
278
  msgstr ""
279
 
280
- #: includes/admin/class-wpglobus-customize-options.php:73,
281
- #: includes/admin/class-wpglobus-customize-options.php:100,
282
- #: includes/admin/class-wpglobus-customize-options.php:145,
283
- #: includes/admin/class-wpglobus-customize-options.php:183
284
  msgid "Default"
285
  msgstr "Predefinido"
286
 
287
- #: includes/admin/class-wpglobus-customize-options.php:264
288
  msgid "Section"
289
  msgstr ""
290
 
291
- #: includes/admin/class-wpglobus-customize-options.php:277
292
  msgid "Show all sections"
293
  msgstr ""
294
 
295
- #: includes/admin/class-wpglobus-customize-options.php:279
296
  msgid "Save &amp; Reload"
297
  msgstr ""
298
 
299
- #: includes/admin/class-wpglobus-customize-options.php:553,
300
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:585,
301
- #: includes/class-wpglobus.php:1284, wpglobus.php:12, wpglobus.php:18
302
  msgid "WPGlobus"
303
  msgstr ""
304
 
305
- #: includes/admin/class-wpglobus-customize-options.php:604
306
  msgid ""
307
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
308
  msgstr ""
309
 
310
- #: includes/admin/class-wpglobus-customize-options.php:610
311
  msgid "Fields Settings"
312
  msgstr ""
313
 
314
- #: includes/admin/class-wpglobus-customize-options.php:655
315
  msgid "WPGlobus Settings"
316
  msgstr ""
317
 
318
- #: includes/admin/class-wpglobus-customize-options.php:723
319
  msgid "Help"
320
  msgstr ""
321
 
322
- #: includes/admin/class-wpglobus-customize-options.php:745,
323
- #: includes/options/class-wpglobus-options.php:1176
324
  msgid "Languages"
325
  msgstr "Idiomas"
326
 
327
- #: includes/admin/class-wpglobus-customize-options.php:765,
328
- #: includes/options/class-wpglobus-options.php:1189
329
  msgid "Enabled Languages"
330
  msgstr "Idiomas Habilitados"
331
 
332
- #: includes/admin/class-wpglobus-customize-options.php:767,
333
- #: includes/options/class-wpglobus-options.php:1190
334
  msgid "These languages are currently enabled on your site."
335
  msgstr "Estos idiomas están habilitados actualmente en su sitio."
336
 
337
- #: includes/admin/class-wpglobus-customize-options.php:795,
338
- #: includes/options/class-wpglobus-options.php:1148
339
  msgid "Choose a language you would like to enable."
340
  msgstr ""
341
 
342
- #: includes/admin/class-wpglobus-customize-options.php:797
343
  msgid "Press the [Save & Publish] button to confirm."
344
  msgstr ""
345
 
346
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
347
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
348
- #: includes/admin/class-wpglobus-customize-options.php:801,
349
- #: includes/options/class-wpglobus-options.php:1154
350
  msgid "or Add new Language %1$s here %2$s"
351
  msgstr ""
352
 
353
- #: includes/admin/class-wpglobus-customize-options.php:813,
354
- #: includes/options/class-wpglobus-options.php:1203
355
  msgid "Add Languages"
356
  msgstr "Añadir idioma"
357
 
358
- #: includes/admin/class-wpglobus-customize-options.php:833,
359
- #: includes/options/class-wpglobus-options.php:1211
360
  msgid "Language Selector Mode"
361
  msgstr "Modo Selector de Idioma"
362
 
363
- #: includes/admin/class-wpglobus-customize-options.php:838,
364
- #: includes/options/class-wpglobus-options.php:1214
365
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
366
  msgstr "Código de la bandera en dos letras (es, en, ru, it, etc.)"
367
 
368
- #: includes/admin/class-wpglobus-customize-options.php:839,
369
- #: includes/options/class-wpglobus-options.php:1215
370
  msgid "Full Name (English, Russian, Italian, etc.)"
371
  msgstr "Nombre completo (Español, English, Russian, Italian, etc.)"
372
 
373
- #: includes/admin/class-wpglobus-customize-options.php:841,
374
- #: includes/options/class-wpglobus-options.php:1216
375
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
376
  msgstr "Nombre completo con bandera (Español, English, Russian, Italian, etc.)"
377
 
378
- #: includes/admin/class-wpglobus-customize-options.php:842,
379
- #: includes/options/class-wpglobus-options.php:1217
380
  msgid "Flags only"
381
  msgstr "Sólo banderas"
382
 
383
- #: includes/admin/class-wpglobus-customize-options.php:844,
384
- #: includes/options/class-wpglobus-options.php:1212
385
  msgid ""
386
  "Choose the way language name and country flag are shown in the drop-down menu"
387
  msgstr ""
388
  "Elige el nombre del idioma y bandera del país se muestran en el menú "
389
  "desplegable"
390
 
391
- #: includes/admin/class-wpglobus-customize-options.php:879
392
  msgid "select navigation menu"
393
  msgstr ""
394
 
395
- #: includes/admin/class-wpglobus-customize-options.php:915,
396
- #: includes/admin/class-wpglobus-customize-options.php:888,
397
- #: includes/options/class-wpglobus-options.php:1230
398
  msgid "Language Selector Menu"
399
  msgstr "Menú selector de idioma"
400
 
401
- #: includes/admin/class-wpglobus-customize-options.php:920,
402
- #: includes/admin/class-wpglobus-customize-options.php:899,
403
- #: includes/options/class-wpglobus-options.php:1231
404
  msgid "Choose the navigation menu where the language selector will be shown"
405
  msgstr ""
406
  "Selecciona el menú de navegación donde se mostrará el selector de idioma"
407
 
408
- #: includes/admin/class-wpglobus-customize-options.php:898
409
  msgid "No menus have been created yet. Create some."
410
  msgstr ""
411
 
412
- #: includes/admin/class-wpglobus-customize-options.php:940,
413
- #: includes/options/class-wpglobus-options.php:1241
414
  msgid "\"All Pages\" menus Language selector"
415
  msgstr "\"Todas las páginas\" Selector de menús Idioma"
416
 
417
- #: includes/admin/class-wpglobus-customize-options.php:943,
418
- #: includes/options/class-wpglobus-options.php:1243
419
  msgid ""
420
  "Adds language selector to the menus that automatically list all existing "
421
  "pages (using `wp_list_pages`)"
@@ -424,12 +314,9 @@ msgstr ""
424
  "automáticamente en todas las páginas existentes (utilizando ` "
425
  "wp_list_pages` )"
426
 
427
- #: includes/admin/class-wpglobus-customize-options.php:960,
428
- #: includes/options/class-wpglobus-options.php:1356
429
  msgid "Custom CSS"
430
  msgstr "Customizar CSS"
431
 
432
- #: includes/admin/class-wpglobus-customize-options.php:964
433
  msgid ""
434
  "Here you can enter the CSS rules to adjust the language selector menu for "
435
  "your theme. Look at the examples in the `style-samples.css` file."
@@ -437,99 +324,69 @@ msgstr ""
437
  "Aquí puedes introducir las reglas CSS para ajustar el menú de selección de "
438
  "idiomas para tu tema. Mira los ejemplos en el `style-samples.css` file."
439
 
440
- #: includes/admin/class-wpglobus-customize-options.php:983
441
  msgid "Post types"
442
  msgstr "Tipos de Post"
443
 
444
- #: includes/admin/class-wpglobus-customize-options.php:1091
445
  msgid "Uncheck to disable WPGlobus"
446
  msgstr "Desactiva la opción para desactivar WPGlobus"
447
 
448
- #: includes/admin/class-wpglobus-customize-options.php:1125,
449
- #: includes/options/class-wpglobus-options.php:1424
450
  msgid "Redirect"
451
  msgstr "Redirección"
452
 
453
- #: includes/admin/class-wpglobus-customize-options.php:1150,
454
- #: includes/options/class-wpglobus-options.php:1419
455
  msgid "Choose the language automatically, based on:"
456
  msgstr ""
457
 
458
- #: includes/admin/class-wpglobus-customize-options.php:1152,
459
- #: includes/options/class-wpglobus-options.php:1409
460
  msgid "Preferred language set in the browser"
461
  msgstr ""
462
 
463
- #: includes/admin/class-wpglobus-customize-options.php:1153,
464
- #: includes/options/class-wpglobus-options.php:1396
465
  msgid ""
466
  "When a user comes to the site for the first time, try to find the best "
467
  "matching language version of the page."
468
  msgstr ""
469
 
470
- #: includes/admin/class-wpglobus-customize-options.php:1214,
471
- #: includes/admin/class-wpglobus-customize-options.php:1234,
472
- #: includes/admin/class-wpglobus-customize-options.php:1192,
473
- #: includes/options/class-wpglobus-options.php:1368
474
  msgid "Custom JS Code"
475
  msgstr ""
476
 
477
- #: includes/admin/class-wpglobus-customize-options.php:1232,
478
- #: includes/admin/class-wpglobus-customize-options.php:1276
479
  msgid "Title"
480
  msgstr "Título"
481
 
482
- #: includes/admin/class-wpglobus-customize-options.php:1235
483
  msgid "(Paste your JS code here.)"
484
  msgstr ""
485
 
486
- #: includes/admin/class-wpglobus-customize-options.php:1184
487
  msgid ""
488
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
489
  "version 4.9 or later."
490
  msgstr ""
491
 
492
- #: includes/admin/class-wpglobus-customize-options.php:1186
493
  msgid "With your version of WordPress, please use the"
494
  msgstr ""
495
 
496
- #: includes/admin/class-wpglobus-customize-options.php:1188
497
  msgid "WPGlobus Settings page"
498
  msgstr ""
499
 
500
- #: includes/admin/class-wpglobus-customize-options.php:1277
501
  msgid "Label"
502
  msgstr ""
503
 
504
- #: includes/admin/class-wpglobus-customize-options.php:1281
505
  msgid "Description"
506
  msgstr "Decripción"
507
 
508
- #: includes/admin/class-wpglobus-customize-options.php:1345
509
  msgid ""
510
  "Here you can specify which fields should be considered multilingual by "
511
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
512
  msgstr ""
513
 
514
- #: includes/admin/class-wpglobus-customize-options.php:1351,
515
- #: includes/options/class-wpglobus-options.php:608
516
  msgid "Thank you for installing WPGlobus!"
517
  msgstr "Gracias por instalar WPGlobus!"
518
 
519
- #: includes/admin/class-wpglobus-customize-options.php:1355,
520
- #: includes/options/class-wpglobus-options.php:612
521
  msgid "Read About WPGlobus"
522
  msgstr "Leer sobre WPGlobus!"
523
 
524
- #: includes/admin/class-wpglobus-customize-options.php:1358
525
  msgid ""
526
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
527
  msgstr ""
528
  "Click en la <strong>[Idiomas]</strong> pestaña en la parte izquierda de "
529
  "configuración de las opciones."
530
 
531
- #: includes/admin/class-wpglobus-customize-options.php:1363,
532
- #: includes/options/class-wpglobus-options.php:648
533
  msgid ""
534
  "Should you have any questions or comments, please do not hesitate to contact "
535
  "us."
@@ -537,28 +394,19 @@ msgstr ""
537
  "Si tienes alguna pregunta o comentario, por favor no dudes en contactar con "
538
  "nosotros."
539
 
540
- #: includes/admin/class-wpglobus-customize-options.php:1367,
541
- #: includes/options/class-wpglobus-options.php:652
542
  msgid "Sincerely Yours,"
543
  msgstr "Sinceramente tuyo,"
544
 
545
- #: includes/admin/class-wpglobus-customize-options.php:1369,
546
- #: includes/options/class-wpglobus-options.php:654,
547
- #: includes/options/wpglobus-options-header.php:34
548
  msgid "The WPGlobus Team"
549
  msgstr "El Equipo WPGlobus"
550
 
551
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
552
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
553
- #: includes/admin/class-wpglobus-customize-options.php:1388,
554
- #: includes/options/class-wpglobus-options.php:689
555
  msgid ""
556
  "We would hate to see you go. If something goes wrong, do not uninstall "
557
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
558
  msgstr ""
559
 
560
- #: includes/admin/class-wpglobus-customize-options.php:1395,
561
- #: includes/options/class-wpglobus-options.php:696
562
  msgid ""
563
  "Please note that if you deactivate WPGlobus, your site will show all the "
564
  "languages together, mixed up. You will need to remove all translations, "
@@ -567,8 +415,6 @@ msgstr ""
567
 
568
  #. translators: %s: link to the Clean-up Tool
569
  #. translators: %s: link to the Clean-up Tool.
570
- #: includes/admin/class-wpglobus-customize-options.php:1400,
571
- #: includes/options/class-wpglobus-options.php:700
572
  msgid ""
573
  "If there are just a few places, you should edit them manually. To "
574
  "automatically remove all translations at once, you can use the %s. WARNING: "
@@ -578,410 +424,305 @@ msgstr ""
578
 
579
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
580
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
581
- #: includes/admin/class-wpglobus-customize-options.php:1403,
582
- #: includes/options/class-wpglobus-options.php:677
583
  msgid "%1$sClean-up Tool%2$s"
584
  msgstr ""
585
 
586
  #. translators: %s: name of current theme
587
- #: includes/admin/class-wpglobus-customize-options.php:1415
588
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
589
  msgstr ""
590
 
591
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
592
- #: includes/admin/class-wpglobus-customize-options.php:1421
593
  msgid "Please use %1$sWPGlobus options page%2$s instead."
594
  msgstr ""
595
 
596
- #: includes/admin/class-wpglobus-customize-options.php:1485
597
  msgid "Expand/Shrink"
598
  msgstr ""
599
 
600
- #: includes/admin/class-wpglobus-dashboard-news.php:43,
601
- #: includes/admin/class-wpglobus-dashboard-news.php:59
602
  msgid "WPGlobus News"
603
  msgstr ""
604
 
605
- #: includes/admin/class-wpglobus-language-edit.php:197,
606
- #: includes/admin/class-wpglobus-language-edit.php:192
607
  msgid "Options updated"
608
  msgstr "Opciones actualizadas"
609
 
610
- #: includes/admin/class-wpglobus-language-edit.php:272
611
  msgid "Please enter a language code!"
612
  msgstr "Por favor, introduce el código del idioma!"
613
 
614
- #: includes/admin/class-wpglobus-language-edit.php:276
615
  msgid "Language code already exists!"
616
  msgstr "Este código de idioma ya existe!"
617
 
618
- #: includes/admin/class-wpglobus-language-edit.php:280
619
  msgid "Please specify the language flag!"
620
  msgstr "Por favor, especifica la bandera del idioma !"
621
 
622
- #: includes/admin/class-wpglobus-language-edit.php:284
623
  msgid "Please enter the language name!"
624
  msgstr "Por favor introduce el nombre del idioma!"
625
 
626
- #: includes/admin/class-wpglobus-language-edit.php:288
627
  msgid "Please enter the language name in English!"
628
  msgstr "Por favor introduce el nombre del idioma en Inglés!"
629
 
630
- #: includes/admin/class-wpglobus-language-edit.php:292
631
  msgid "Please enter the locale!"
632
  msgstr "Por favor introduce la localización!"
633
 
634
- #: includes/admin/class-wpglobus-language-edit.php:354
635
  msgid "Add Language"
636
  msgstr "Añadir Idioma"
637
 
638
- #: includes/admin/class-wpglobus-language-edit.php:351,
639
- #: includes/admin/class-wpglobus-language-edit.php:462,
640
- #: includes/admin/class-wpglobus-language-edit.php:455
641
  msgid "Delete Language"
642
  msgstr "Eliminar Idioma"
643
 
644
- #: includes/admin/class-wpglobus-language-edit.php:349
645
  msgid "Edit Language"
646
  msgstr "Editar Idioma"
647
 
648
- #: includes/admin/class-wpglobus-language-edit.php:384
649
  msgid "Language Code"
650
  msgstr "Código del Idioma"
651
 
652
- #: includes/admin/class-wpglobus-language-edit.php:391
653
  msgid ""
654
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
655
  msgstr ""
656
  "2-Carta de códigos de idioma ISO para el idioma que deseas insertar. "
657
  "(Ejemplo : en)"
658
 
659
- #: includes/admin/class-wpglobus-language-edit.php:396
660
  msgid "Language flag"
661
  msgstr "Bandera del idioma"
662
 
663
- #: includes/admin/class-wpglobus-language-edit.php:412
664
  msgid "Name"
665
  msgstr "Nombre"
666
 
667
- #: includes/admin/class-wpglobus-language-edit.php:417
668
  msgid ""
669
  "The name of the language in its native alphabet. (Examples: English, Русский)"
670
  msgstr ""
671
  "El nombre de la lengua en su alfabeto nativo. (Ejemplos : Español, English, "
672
  "Русский )"
673
 
674
- #: includes/admin/class-wpglobus-language-edit.php:422
675
  msgid "Name in English"
676
  msgstr "Nombre en Inglés"
677
 
678
- #: includes/admin/class-wpglobus-language-edit.php:427
679
  msgid "The name of the language in English"
680
  msgstr "El nombre del idioma en Inglés"
681
 
682
- #: includes/admin/class-wpglobus-language-edit.php:432,
683
- #: includes/options/fields/table/class-wpglobus-languages-table.php:115
684
  msgid "Locale"
685
  msgstr "Local"
686
 
687
- #: includes/admin/class-wpglobus-language-edit.php:437
688
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
689
  msgstr ""
690
  "PHP / WordPress configuración regional de la lengua . (Ejemplos : en_US, "
691
  "es_ES, ru_RU)"
692
 
693
- #: includes/admin/class-wpglobus-language-edit.php:460
694
  msgid "Are you sure you want to delete?"
695
  msgstr "Estás seguro de que quieres borrarlo?"
696
 
697
- #: includes/admin/class-wpglobus-language-edit.php:447
698
  msgid "Save Changes"
699
  msgstr "Guardar Cambios"
700
 
701
- #: includes/admin/class-wpglobus-language-edit.php:470
702
  msgid "Back to the WPGlobus Settings"
703
  msgstr "Volver a Ajustes WPGlobus"
704
 
705
- #: includes/admin/class-wpglobus-plugin-install.php:308
706
  msgid "Current Version"
707
  msgstr "Versión Actual"
708
 
709
- #: includes/admin/class-wpglobus-plugin-install.php:309
710
  msgid "Get it now!"
711
  msgstr ""
712
 
713
- #: includes/admin/class-wpglobus-plugin-install.php:310
714
  msgid "Premium add-on"
715
  msgstr ""
716
 
717
- #: includes/admin/class-wpglobus-plugin-install.php:311,
718
- #: includes/options/fields/table/class-wpglobus-languages-table.php:472
719
  msgid "Installed"
720
  msgstr "Instalado"
721
 
722
  #. translators: placeholders are for the HTML tags.
723
- #: includes/admin/class-wpglobus-plugin-install.php:319
724
  msgid ""
725
  "If you have already purchased a WPGlobus premium extension, please read "
726
  "%1$sthe installation instructions here%2$s"
727
  msgstr ""
728
 
729
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
730
- #: includes/options/class-wpglobus-options.php:726
731
  msgid "Help Desk"
732
  msgstr ""
733
 
734
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:185
735
  msgid "Email not sent. Please fill in the entire form."
736
  msgstr ""
737
 
738
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:195
739
  msgid ""
740
  "Email not sent. Please verify that your name and email are entered correctly."
741
  msgstr ""
742
 
743
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:216
744
  msgid "Email sent."
745
  msgstr ""
746
 
747
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
748
  msgid "Thank you for using WPGlobus!"
749
  msgstr ""
750
 
751
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
752
  msgid "Our Support Team is here to answer your questions or concerns."
753
  msgstr ""
754
 
755
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
756
  msgid "To help us serve you better:"
757
  msgstr ""
758
 
759
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
760
  msgid ""
761
  "Please check if the problem persists if you switch to a standard WordPress "
762
  "theme."
763
  msgstr ""
764
 
765
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
766
  msgid ""
767
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
768
  msgstr ""
769
 
770
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
771
  msgid "Please fill in and submit the contact form:"
772
  msgstr ""
773
 
774
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
775
  msgid "Please make sure the email address is correct."
776
  msgstr ""
777
 
778
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
779
  msgid "Subject"
780
  msgstr ""
781
 
782
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
783
  msgid "Short description of the problem"
784
  msgstr ""
785
 
786
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
787
  msgid "Detailed description"
788
  msgstr ""
789
 
790
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
791
  msgid "Technical Information"
792
  msgstr ""
793
 
794
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
795
  msgid "This information helps us to find the problem source"
796
  msgstr ""
797
 
798
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:161
799
  msgid ""
800
  "Alternatively, please email %s. Do not forget to copy and paste the "
801
  "technical information to your email message."
802
  msgstr ""
803
 
804
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:89
805
  msgid "WPGlobus Recommends:"
806
  msgstr ""
807
 
808
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:98,
809
- #: includes/options/class-wpglobus-options.php:933
810
  msgid "WPGlobus for WooCommerce"
811
  msgstr ""
812
 
813
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:102
814
  msgid ""
815
  "Translate product titles and descriptions, product categories, tags and "
816
  "attributes."
817
  msgstr ""
818
 
819
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:107
820
  msgid "Get it now:"
821
  msgstr ""
822
 
823
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:117
824
  msgid "WooCommerce Multi-Currency"
825
  msgstr ""
826
 
827
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:121
828
  msgid "Accept multiple currencies in your online store!"
829
  msgstr ""
830
 
831
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:126,
832
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:185
833
  msgid "Check it out:"
834
  msgstr ""
835
 
836
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:195
837
  msgid "To translate permalinks, please activate the module Slug."
838
  msgstr ""
839
 
840
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:183
841
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
842
  msgstr ""
843
 
844
- #: includes/builders/class-wpglobus-builder.php:278,
845
- #: includes/class-wpglobus.php:3577
846
  msgid "Save draft before using extra language."
847
  msgstr ""
848
 
849
- #: includes/builders/class-wpglobus-builder.php:371
850
  msgid "Builder"
851
  msgstr ""
852
 
853
- #: includes/builders/class-wpglobus-builder.php:395
854
  msgid "Сompatibility Settings"
855
  msgstr ""
856
 
857
  #. translators: ON/OFF status of WPGlobus on the edit pages.
858
  #. translators: ON/OFF status of WPGlobus on the edit pages.
859
- #: includes/builders/elementor/class-wpglobus-elementor.php:255,
860
- #: includes/class-wpglobus.php:1263
861
  msgid "ON"
862
  msgstr ""
863
 
864
- #: includes/builders/elementor/class-wpglobus-elementor.php:256,
865
- #: includes/class-wpglobus.php:1264
866
  msgid "Turn off"
867
  msgstr ""
868
 
869
- #: includes/builders/elementor/class-wpglobus-elementor.php:250,
870
- #: includes/class-wpglobus.php:1258
871
  msgid "OFF"
872
  msgstr ""
873
 
874
- #: includes/builders/elementor/class-wpglobus-elementor.php:251,
875
- #: includes/class-wpglobus.php:1259
876
  msgid "Turn on"
877
  msgstr ""
878
 
879
- #: includes/builders/elementor/class-wpglobus-elementor.php:281
880
  msgid "Elementor"
881
  msgstr ""
882
 
883
- #: includes/builders/elementor/class-wpglobus-elementor.php:508
884
  msgid "WPGlobus languages"
885
  msgstr ""
886
 
887
- #: includes/builders/elementor/class-wpglobus-elementor.php:514
888
  msgid "current"
889
  msgstr ""
890
 
891
- #: includes/builders/elementor/class-wpglobus-elementor.php:675
892
  msgid ""
893
  "WPGlobus provides multilingual support for Elementor only when the option "
894
  "%1$s%2$s%3$s is set to %4$s."
895
  msgstr ""
896
 
897
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:228
898
  msgid "Before switching the language, please save draft or publish."
899
  msgstr ""
900
 
901
  #. translators: Metabox title FOR language.
902
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:318
903
  msgctxt "filter__seo_meta_box_title"
904
  msgid "for"
905
  msgstr ""
906
 
907
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:392
908
  msgid "Page is being reloaded. Please wait..."
909
  msgstr ""
910
 
911
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:393
912
  msgid ""
913
  "Before switching the language, please save draft or publish, then reload "
914
  "page."
915
  msgstr ""
916
 
917
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
918
  msgid ""
919
  "WPGlobus provides multilingual support for Elementor only when the option "
920
  "`CSS Print Method` is set to `External File`."
921
  msgstr ""
922
 
923
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
924
  msgid "Open Elementor Settings page"
925
  msgstr ""
926
 
927
- #: includes/class-wpglobus-widget.php:27
928
  msgid "WPGlobus widget"
929
  msgstr "WPGlobus widget"
930
 
931
- #: includes/class-wpglobus-widget.php:29
932
  msgid "Add language switcher"
933
  msgstr "Añadir selector de idiomas"
934
 
935
- #: includes/class-wpglobus-widget.php:32
936
  msgid "Flags"
937
  msgstr "Banderas"
938
 
939
- #: includes/class-wpglobus-widget.php:33
940
  msgid "List"
941
  msgstr "Lista"
942
 
943
- #: includes/class-wpglobus-widget.php:34
944
  msgid "List with flags"
945
  msgstr "Lista con Banderas"
946
 
947
- #: includes/class-wpglobus-widget.php:35
948
  msgid "Select"
949
  msgstr "Seleccionar"
950
 
951
- #: includes/class-wpglobus-widget.php:36
952
  msgid "Select with language code"
953
  msgstr "Seleccionar con el código de idioma"
954
 
955
- #: includes/class-wpglobus-widget.php:37
956
  msgid "Dropdown"
957
  msgstr "Desplegable"
958
 
959
- #: includes/class-wpglobus-widget.php:38
960
  msgid "Dropdown with flags"
961
  msgstr "Desplegable con banderas"
962
 
963
- #: includes/class-wpglobus-widget.php:264
964
  msgid "Selector type"
965
  msgstr "Tipo de selector"
966
 
967
- #: includes/class-wpglobus.php:1447
968
  msgid "You cannot disable the main language."
969
  msgstr "No se puede desactivar el idioma principal."
970
 
971
- #: includes/class-wpglobus.php:1672
972
  msgid "Need a multilingual slug?"
973
  msgstr ""
974
 
975
- #: includes/class-wpglobus.php:1655
976
  msgid "*) Available after the menu is saved."
977
  msgstr "No Se Puede Desactivar el director idioma."
978
 
979
- #: includes/class-wpglobus.php:4025
980
  msgid "You must enable Pretty Permalinks to use WPGlobus."
981
  msgstr ""
982
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
983
 
984
- #: includes/class-wpglobus.php:4027
985
  msgid ""
986
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
987
  "default option."
@@ -989,193 +730,150 @@ msgstr ""
989
  "Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
990
  "selecciona una opción no predeterminada ."
991
 
992
- #: includes/options/class-wpglobus-options.php:281
993
  msgid "Language Selector Menu Style"
994
  msgstr ""
995
 
996
- #: includes/options/class-wpglobus-options.php:282,
997
- #: includes/options/class-wpglobus-options.php:802,
998
- #: includes/options/class-wpglobus-options.php:871
999
  msgid "WPGlobus Plus"
1000
  msgstr ""
1001
 
1002
- #: includes/options/class-wpglobus-options.php:283
1003
  msgid "Drop-down languages menu or Flat (in one line)"
1004
  msgstr ""
1005
 
1006
- #: includes/options/class-wpglobus-options.php:286
1007
  msgid "Do not change"
1008
  msgstr ""
1009
 
1010
- #: includes/options/class-wpglobus-options.php:287
1011
  msgid "Drop-down (vertical)"
1012
  msgstr ""
1013
 
1014
- #: includes/options/class-wpglobus-options.php:288
1015
  msgid "Flat (horizontal)"
1016
  msgstr ""
1017
 
1018
- #: includes/options/class-wpglobus-options.php:343
1019
  msgid ""
1020
  "If you see this message then your browser may not display the WPGlobus "
1021
  "Settings panel properly. Please try another browser."
1022
  msgstr ""
1023
 
1024
- #: includes/options/class-wpglobus-options.php:599,
1025
- #: includes/options/class-wpglobus-options.php:1577
1026
  msgid "Сompatibility"
1027
  msgstr ""
1028
 
1029
  #. translators: placeholders for "strong" tags.
1030
- #: includes/options/class-wpglobus-options.php:616
1031
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
1032
  msgstr ""
1033
 
1034
  #. translators: placeholders for "strong" tags.
1035
- #: includes/options/class-wpglobus-options.php:619
1036
  msgid ""
1037
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
1038
  "the language attributes: name, code, flag icon, etc."
1039
  msgstr ""
1040
 
1041
- #: includes/options/class-wpglobus-options.php:622
1042
  msgid "Important notes"
1043
  msgstr ""
1044
 
1045
  #. translators: placeholders for "strong" tags.
1046
- #: includes/options/class-wpglobus-options.php:624
1047
  msgid "Version %1$s1.9.17%2$s "
1048
  msgstr ""
1049
 
1050
  #. translators: placeholders for "strong" tags.
1051
- #: includes/options/class-wpglobus-options.php:627
1052
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
1053
  msgstr ""
1054
 
1055
  #. translators: placeholders for "strong" tags; compatibility tab link.
1056
- #: includes/options/class-wpglobus-options.php:630
1057
  msgid ""
1058
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
1059
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
1060
  msgstr ""
1061
 
1062
  #. translators: placeholders for "strong" tags; compatibility tab link.
1063
- #: includes/options/class-wpglobus-options.php:633
1064
  msgid ""
1065
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
1066
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
1067
  msgstr ""
1068
 
1069
  #. translators: placeholders for "strong" tags.
1070
- #: includes/options/class-wpglobus-options.php:637
1071
  msgid "Version %1$s2.2.11%2$s "
1072
  msgstr ""
1073
 
1074
- #: includes/options/class-wpglobus-options.php:639
1075
  msgid "Starting from this version"
1076
  msgstr ""
1077
 
1078
  #. translators: placeholders for "strong" tags.
1079
- #: includes/options/class-wpglobus-options.php:642
1080
  msgid ""
1081
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
1082
  "(CPT)."
1083
  msgstr ""
1084
 
1085
  #. translators: placeholders for "strong" tags.
1086
- #: includes/options/class-wpglobus-options.php:645
1087
  msgid ""
1088
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
1089
  "the %1$s[%3$s]%2$s tab."
1090
  msgstr ""
1091
 
1092
- #: includes/options/class-wpglobus-options.php:662
1093
  msgid "Welcome!"
1094
  msgstr "Bienvenido!"
1095
 
1096
- #: includes/options/class-wpglobus-options.php:685
1097
  msgid "Deactivating / Uninstalling"
1098
  msgstr ""
1099
 
1100
- #: includes/options/class-wpglobus-options.php:711
1101
  msgid "Uninstall"
1102
  msgstr ""
1103
 
1104
- #: includes/options/class-wpglobus-options.php:741
1105
  msgid "All add-ons"
1106
  msgstr ""
1107
 
1108
- #: includes/options/class-wpglobus-options.php:756
1109
  msgid "Mobile Menu"
1110
  msgstr ""
1111
 
1112
- #: includes/options/class-wpglobus-options.php:771
1113
  msgid "Language Widgets"
1114
  msgstr ""
1115
 
1116
- #: includes/options/class-wpglobus-options.php:841
1117
  msgid "We Recommend..."
1118
  msgstr ""
1119
 
1120
- #: includes/options/class-wpglobus-options.php:873
1121
  msgid ""
1122
  "Our premium add-on, WPGlobus Plus, will add several features to your "
1123
  "website, such as:"
1124
  msgstr ""
1125
 
1126
- #: includes/options/class-wpglobus-options.php:876
1127
  msgid ""
1128
  "- Ability to write a post in one language and immediately publish it, not "
1129
  "waiting for the translation to other languages;"
1130
  msgstr ""
1131
 
1132
- #: includes/options/class-wpglobus-options.php:879
1133
  msgid "- Set different URLs for each translation;"
1134
  msgstr ""
1135
 
1136
- #: includes/options/class-wpglobus-options.php:882
1137
  msgid ""
1138
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
1139
  "for each translation;"
1140
  msgstr ""
1141
 
1142
- #: includes/options/class-wpglobus-options.php:885
1143
  msgid "- and more..."
1144
  msgstr ""
1145
 
1146
- #: includes/options/class-wpglobus-options.php:888,
1147
- #: includes/options/class-wpglobus-options.php:945,
1148
- #: includes/options/class-wpglobus-options.php:1003
1149
  msgid "Click here to download"
1150
  msgstr ""
1151
 
1152
- #: includes/options/class-wpglobus-options.php:936
1153
  msgid ""
1154
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
1155
  "translate your blog posts and pages to many languages."
1156
  msgstr ""
1157
 
1158
- #: includes/options/class-wpglobus-options.php:939
1159
  msgid "The next step is to translate your WooCommerce-based store!"
1160
  msgstr ""
1161
 
1162
- #: includes/options/class-wpglobus-options.php:942
1163
  msgid ""
1164
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
1165
  "translate product titles and descriptions, categories, tags and attributes."
1166
  msgstr ""
1167
 
1168
- #: includes/options/class-wpglobus-options.php:989
1169
  msgid "Multi-currency"
1170
  msgstr ""
1171
 
1172
- #: includes/options/class-wpglobus-options.php:992
1173
  msgid ""
1174
  "Your WooCommerce-powered store is set to show prices and accept payments in "
1175
  "a single currency only."
1176
  msgstr ""
1177
 
1178
- #: includes/options/class-wpglobus-options.php:996
1179
  msgid ""
1180
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
1181
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
@@ -1183,488 +881,370 @@ msgid ""
1183
  "positioning for global growth!"
1184
  msgstr ""
1185
 
1186
- #: includes/options/class-wpglobus-options.php:1000
1187
  msgid ""
1188
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
1189
  "re-calculating prices on-the-fly."
1190
  msgstr ""
1191
 
1192
- #: includes/options/class-wpglobus-options.php:1037
1193
  msgid "WPGlobus Premium Add-ons"
1194
  msgstr ""
1195
 
1196
- #: includes/options/class-wpglobus-options.php:1039
1197
  msgid ""
1198
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
1199
  "you will be able to:"
1200
  msgstr ""
1201
 
1202
- #: includes/options/class-wpglobus-options.php:1044
1203
  msgid ""
1204
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
1205
  "моя-страница and so on);"
1206
  msgstr ""
1207
 
1208
- #: includes/options/class-wpglobus-options.php:1047
1209
  msgid ""
1210
  "Postpone translation to some languages and <strong>publish only the "
1211
  "translated texts</strong>;"
1212
  msgstr ""
1213
 
1214
- #: includes/options/class-wpglobus-options.php:1050
1215
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
1216
  msgstr ""
1217
 
1218
- #: includes/options/class-wpglobus-options.php:1053
1219
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
1220
  msgstr ""
1221
 
1222
- #: includes/options/class-wpglobus-options.php:1056
1223
  msgid ""
1224
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
1225
  "strong>;"
1226
  msgstr ""
1227
 
1228
- #: includes/options/class-wpglobus-options.php:1060
1229
  msgid "...and more."
1230
  msgstr ""
1231
 
1232
- #: includes/options/class-wpglobus-options.php:1063
1233
  msgid "Click here to visit the WPGlobus Store"
1234
  msgstr ""
1235
 
1236
- #: includes/options/class-wpglobus-options.php:1104
1237
  msgid "Select a language"
1238
  msgstr "Seleccionar un idioma"
1239
 
1240
  #. translators: %3$s placeholder for the icon (actual picture).
1241
- #: includes/options/class-wpglobus-options.php:1133
1242
  msgid ""
1243
  "Place the %1$smain language%2$s of your site at the top of the list by "
1244
  "dragging the %3$s icons."
1245
  msgstr ""
1246
 
1247
  #. translators: placeholders for the "strong" HTML tags.
1248
- #: includes/options/class-wpglobus-options.php:1136
1249
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
1250
  msgstr ""
1251
 
1252
  #. translators: placeholders for the "strong" HTML tags.
1253
- #: includes/options/class-wpglobus-options.php:1139
1254
  msgid "%1$sAdd%2$s more languages using the section below."
1255
  msgstr ""
1256
 
1257
- #: includes/options/class-wpglobus-options.php:1140
1258
  msgid "When done, click the [Save Changes] button."
1259
  msgstr "Cuando hayas terminado, haz clic en el botón [Guardar Cambios] ."
1260
 
1261
  #. translators: %s - placeholder for the "Save Changes" button text.
1262
- #: includes/options/class-wpglobus-options.php:1151
1263
  msgid "Press the %s button to confirm."
1264
  msgstr ""
1265
 
1266
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
1267
- #: includes/options/class-wpglobus-options.php:1168
1268
  msgid "-- none --"
1269
  msgstr ""
1270
 
1271
- #: includes/options/class-wpglobus-options.php:1169
1272
  msgid "All menus"
1273
  msgstr ""
1274
 
1275
- #: includes/options/class-wpglobus-options.php:1182
1276
  msgid "Instructions:"
1277
  msgstr "Instrucciones:"
1278
 
1279
- #: includes/options/class-wpglobus-options.php:1242
1280
  msgid "(Found in some themes)"
1281
  msgstr "(Encontrado en algunos temas)"
1282
 
1283
- #: includes/options/class-wpglobus-options.php:1244
1284
  msgid "Enable"
1285
  msgstr "Habilitar"
1286
 
1287
- #: includes/options/class-wpglobus-options.php:1259
1288
  msgid "Languages table"
1289
  msgstr "Tabla de idiomas"
1290
 
1291
- #: includes/options/class-wpglobus-options.php:1265
1292
  msgid "Use this table to add, edit or delete languages."
1293
  msgstr "Utiliza esta tabla para agregar, editar o eliminar idiomas."
1294
 
1295
- #: includes/options/class-wpglobus-options.php:1266
1296
  msgid "NOTE: you cannot remove the main language."
1297
  msgstr "Nota: No se puede eliminar el idioma principal."
1298
 
1299
- #: includes/options/class-wpglobus-options.php:1314
1300
  msgid "WPGlobus is enabled on these Post Types"
1301
  msgstr ""
1302
 
1303
- #: includes/options/class-wpglobus-options.php:1315
1304
  msgid "Uncheck to disable"
1305
  msgstr ""
1306
 
1307
- #: includes/options/class-wpglobus-options.php:1316
1308
  msgid ""
1309
  "Please note that there are post types, which status is managed by other "
1310
  "plugins and cannot be changed here."
1311
  msgstr ""
1312
 
1313
- #: includes/options/class-wpglobus-options.php:1321
1314
  msgid "Post Types"
1315
  msgstr ""
1316
 
1317
- #: includes/options/class-wpglobus-options.php:1337
1318
  msgid ""
1319
  "You should put here only the code provided by WPGlobus Support. Do not write "
1320
  "anything else in the sections below as it might break the functionality of "
1321
  "your website!"
1322
  msgstr ""
1323
 
1324
- #: includes/options/class-wpglobus-options.php:1378
1325
  msgid "Custom Code"
1326
  msgstr ""
1327
 
1328
- #: includes/options/class-wpglobus-options.php:1486,
1329
- #: includes/options/class-wpglobus-options.php:1618,
1330
- #: includes/options/class-wpglobus-options.php:1729
1331
  msgid "Enabled"
1332
  msgstr ""
1333
 
1334
- #: includes/options/class-wpglobus-options.php:1499
1335
  msgid "Builders support"
1336
  msgstr ""
1337
 
1338
- #: includes/options/class-wpglobus-options.php:1551
1339
  msgid "Builder mode is enabled on these Post Types"
1340
  msgstr ""
1341
 
1342
- #: includes/options/class-wpglobus-options.php:1617
1343
  msgid "Old fashioned language switcher"
1344
  msgstr ""
1345
 
1346
- #: includes/options/class-wpglobus-options.php:1623
1347
  msgid "Block Editor"
1348
  msgstr ""
1349
 
1350
- #: includes/options/class-wpglobus-options.php:1624
1351
  msgid "Block Editor Options"
1352
  msgstr ""
1353
 
1354
- #: includes/options/class-wpglobus-options.php:1653
1355
  msgid ""
1356
  "With the current settings, you will see the following lines in the section "
1357
  "HEAD of your site pages"
1358
  msgstr ""
1359
 
1360
- #: includes/options/class-wpglobus-options.php:1655
1361
  msgid "(example for two languages)"
1362
  msgstr ""
1363
 
1364
- #: includes/options/class-wpglobus-options.php:1702
1365
  msgid ""
1366
  "Tell search engines about localized versions of your pages using the "
1367
  "hreflang tag"
1368
  msgstr ""
1369
 
1370
- #: includes/options/class-wpglobus-options.php:1711
1371
  msgid "Output the hreflang tag as"
1372
  msgstr ""
1373
 
1374
- #: includes/options/class-wpglobus-options.php:1714
1375
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1376
  msgstr ""
1377
 
1378
- #: includes/options/class-wpglobus-options.php:1715
1379
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1380
  msgstr ""
1381
 
1382
- #: includes/options/class-wpglobus-options.php:1716
1383
  msgid "Language code only (en, ru, etc.)"
1384
  msgstr ""
1385
 
1386
- #: includes/options/class-wpglobus-options.php:1728
1387
  msgid "Use the code `x-default` for the main language"
1388
  msgstr ""
1389
 
1390
- #: includes/options/class-wpglobus-options.php:1734
1391
  msgid "Multilingual SEO"
1392
  msgstr ""
1393
 
1394
- #: includes/options/class-wpglobus-options.php:1735
1395
  msgid "Multilingual SEO Options"
1396
  msgstr ""
1397
 
1398
- #: includes/options/class-wpglobus-options.php:1772
1399
  msgid ""
1400
  "With WPGlobus, you can get translations for posts and pages using REST API."
1401
  msgstr ""
1402
 
1403
- #: includes/options/class-wpglobus-options.php:1800,
1404
- #: includes/options/class-wpglobus-options.php:1808,
1405
- #: includes/options/class-wpglobus-options.php:1780,
1406
- #: includes/options/class-wpglobus-options.php:1789
1407
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1408
  msgstr ""
1409
 
1410
- #: includes/options/class-wpglobus-options.php:1777
1411
  msgid ""
1412
  "For demonstration, you can try the first post that WordPress creates at the "
1413
  "initial installation."
1414
  msgstr ""
1415
 
1416
- #: includes/options/class-wpglobus-options.php:1819
1417
  msgid ""
1418
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1419
  "information."
1420
  msgstr ""
1421
 
1422
- #: includes/options/class-wpglobus-options.php:1826
1423
  msgid ""
1424
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1425
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1426
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1427
  msgstr ""
1428
 
1429
- #: includes/options/class-wpglobus-options.php:1839
1430
  msgid "Description:"
1431
  msgstr ""
1432
 
1433
- #: includes/options/class-wpglobus-options.php:1846,
1434
- #: includes/options/class-wpglobus-options.php:1847
1435
  msgid "REST API"
1436
  msgstr ""
1437
 
1438
- #: includes/options/class-wpglobus-options.php:2180
1439
  msgid "Translate strings"
1440
  msgstr ""
1441
 
1442
- #: includes/options/fields/table/class-wpglobus-languages-table.php:66
1443
  msgid "item"
1444
  msgstr "Artículo"
1445
 
1446
- #: includes/options/fields/table/class-wpglobus-languages-table.php:68
1447
  msgid "items"
1448
  msgstr "Artículos"
1449
 
1450
- #: includes/options/fields/table/class-wpglobus-languages-table.php:88
1451
  msgid "Code"
1452
  msgstr "Código"
1453
 
1454
- #: includes/options/fields/table/class-wpglobus-languages-table.php:94
1455
  msgid "Edit"
1456
  msgstr "Editar"
1457
 
1458
- #: includes/options/fields/table/class-wpglobus-languages-table.php:99
1459
  msgid "Delete"
1460
  msgstr "Borrar"
1461
 
1462
- #: includes/options/fields/table/class-wpglobus-languages-table.php:105
1463
  msgid "File"
1464
  msgstr "Archivo"
1465
 
1466
- #: includes/options/fields/table/class-wpglobus-languages-table.php:110
1467
  msgid "Flag"
1468
  msgstr "Bandera"
1469
 
1470
- #: includes/options/fields/table/class-wpglobus-languages-table.php:120
1471
  msgid "Language name"
1472
  msgstr "Nombre del idioma"
1473
 
1474
- #: includes/options/fields/table/class-wpglobus-languages-table.php:125
1475
  msgid "English language name"
1476
  msgstr "Nombre del idioma en Inglés"
1477
 
1478
- #: includes/options/fields/table/class-wpglobus-languages-table.php:151
1479
  msgid "No items found"
1480
  msgstr "No se han encntrado artículos"
1481
 
1482
- #: includes/options/fields/table/class-wpglobus-languages-table.php:164
1483
  msgid "Add new Language"
1484
  msgstr "Añadir nuevo idioma"
1485
 
1486
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:164
1487
  msgid "No items of this type were found."
1488
  msgstr ""
1489
 
1490
- #: includes/options/fields/wpglobus_select/field_wpglobus_select.php:107
1491
  msgid "Select an item"
1492
  msgstr ""
1493
 
1494
- #: includes/options/templates/compatibility-beta.php:15
1495
  msgid "Multilingual support of this add-on is currently in Beta stage."
1496
  msgstr ""
1497
 
1498
- #: includes/options/templates/compatibility-beta.php:17
1499
  msgid "We do not recommend using it on production sites."
1500
  msgstr ""
1501
 
1502
- #: includes/options/templates/compatibility-beta.php:23
1503
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1504
  msgstr ""
1505
 
1506
- #: includes/options/templates/compatibility.php:69
1507
  msgid "WordPress version"
1508
  msgstr ""
1509
 
1510
- #: includes/options/templates/compatibility.php:44
1511
  msgid "In the WordPress core"
1512
  msgstr ""
1513
 
1514
- #: includes/options/templates/compatibility.php:46
1515
  msgid "Core"
1516
  msgstr ""
1517
 
1518
- #: includes/options/templates/compatibility.php:52,
1519
- #: includes/options/templates/compatibility.php:79
1520
  msgid "Current version"
1521
  msgstr ""
1522
 
1523
- #: includes/options/templates/compatibility.php:53,
1524
- #: includes/options/templates/compatibility.php:81
1525
  msgid "Stage"
1526
  msgstr ""
1527
 
1528
- #: includes/options/templates/compatibility.php:54,
1529
- #: includes/options/templates/compatibility.php:82
1530
  msgid "Status"
1531
  msgstr ""
1532
 
1533
- #: includes/options/templates/compatibility.php:60
1534
  msgid "Block editor"
1535
  msgstr ""
1536
 
1537
- #: includes/options/templates/compatibility.php:62
1538
  msgid "production"
1539
  msgstr ""
1540
 
1541
- #: includes/options/templates/compatibility.php:73
1542
  msgid "List of supported add-ons"
1543
  msgstr ""
1544
 
1545
- #: includes/options/templates/compatibility.php:78
1546
  msgid "Add-on"
1547
  msgstr ""
1548
 
1549
- #: includes/options/templates/compatibility.php:80
1550
  msgid "Supported minimum version"
1551
  msgstr ""
1552
 
1553
- #: includes/options/templates/compatibility.php:105
1554
  msgid "Not installed"
1555
  msgstr ""
1556
 
1557
- #: includes/options/templates/compatibility.php:102
1558
  msgid "Installed, inactive"
1559
  msgstr ""
1560
 
1561
- #: includes/options/templates/compatibility.php:100
1562
  msgid "Active"
1563
  msgstr "Activo"
1564
 
1565
- #: includes/options/templates/customize-intro.php:35
1566
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1567
  msgstr ""
1568
 
1569
- #: includes/options/templates/customize-intro.php:39
1570
  msgid "However, some themes do not follow all WordPress standards strictly."
1571
  msgstr ""
1572
 
1573
- #: includes/options/templates/customize-intro.php:41
1574
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1575
  msgstr ""
1576
 
1577
- #: includes/options/templates/customize-intro.php:45
1578
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1579
  msgstr ""
1580
 
1581
- #: includes/options/templates/customize-intro.php:53
1582
  msgid ""
1583
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1584
  "With those themes, WPGlobus Customizer is switched off by default"
1585
  msgstr ""
1586
 
1587
- #: includes/options/templates/customize-intro.php:60
1588
  msgid "The currently active theme is"
1589
  msgstr ""
1590
 
1591
- #: includes/options/templates/customize-intro.php:66
1592
  msgid "In the current version, WPGlobus Customizer does not support"
1593
  msgstr ""
1594
 
1595
- #: includes/options/templates/customize-intro.php:70
1596
  msgid "translation of the navigation menus"
1597
  msgstr ""
1598
 
1599
- #: includes/options/templates/customize-intro.php:72
1600
  msgid "to translate, please go to"
1601
  msgstr ""
1602
 
1603
- #: includes/options/templates/customize-intro.php:81
1604
  msgid "Go to Customizer"
1605
  msgstr ""
1606
 
1607
- #: includes/options/templates/customize-intro.php:88
1608
  msgid "is undefined"
1609
  msgstr ""
1610
 
1611
- #: includes/options/templates/customize-intro.php:85
1612
  msgid "is set to"
1613
  msgstr ""
1614
 
1615
- #: includes/options/templates/customize-intro.php:94
1616
  msgid "by adding to the file wp-config.php"
1617
  msgstr ""
1618
 
1619
- #: includes/options/templates/customize-intro.php:96
1620
  msgid "now"
1621
  msgstr ""
1622
 
1623
- #: includes/options/wpglobus-options-header.php:25
1624
  msgid "We rely on your support!"
1625
  msgstr ""
1626
 
1627
- #: includes/options/wpglobus-options-header.php:28
1628
  msgid "Please consider a small donation to support the future development."
1629
  msgstr ""
1630
 
1631
- #: includes/options/wpglobus-options-header.php:32
1632
  msgid "Thank you!"
1633
  msgstr "Gracias!"
1634
 
1635
- #: includes/options/wpglobus-options-header.php:55
1636
  msgid "WPGlobus Plus!"
1637
  msgstr "WPGlobus Plus!"
1638
 
1639
- #: includes/options/wpglobus-options-header.php:58
1640
  msgid ""
1641
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1642
  "separate publishing and more! "
1643
  msgstr ""
1644
 
1645
- #: includes/options/wpglobus-options-header.php:64
1646
  msgid "Get WPGlobus Plus now!"
1647
  msgstr ""
1648
 
1649
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:913
1650
  msgid ""
1651
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1652
  "the current version."
1653
  msgstr ""
1654
 
1655
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:914
1656
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1657
  msgstr ""
1658
 
1659
- #: includes/vendor/yoast-seo/class-wpglobus-yoastseo140.php:917
1660
  msgid "WPGlobus warning: "
1661
  msgstr ""
1662
 
1663
- #: wpglobus.php:13
1664
  msgid "https://github.com/WPGlobus/WPGlobus"
1665
  msgstr ""
1666
 
1667
- #: wpglobus.php:14
1668
  msgid ""
1669
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1670
  "widgets and even custom fields - in multiple languages!"
@@ -1672,6 +1252,5 @@ msgstr ""
1672
  "WordPress Globalization / Plugin multilenguaje. Mensajes, páginas, menús, "
1673
  "widgets e incluso campos personalizados - en varios idiomas !"
1674
 
1675
- #: wpglobus.php:19
1676
  msgid "https://wpglobus.com/"
1677
  msgstr ""
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
 
 
 
 
 
19
  msgid "Guide"
20
  msgstr "Guía"
21
 
 
 
22
  msgid "WPGlobus Help Desk"
23
  msgstr ""
24
 
 
 
 
 
 
 
 
25
  msgid "Add-ons"
26
  msgstr "Complementos"
27
 
 
28
  msgid "Quick Start"
29
  msgstr "Inicio Rápido"
30
 
 
 
31
  msgid "FAQ"
32
  msgstr "FAQ"
33
 
 
34
  msgid ""
35
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
36
  msgstr ""
37
 
 
38
  msgid ""
39
  "The mbstring extension is required for the full UTF-8 compatibility and "
40
  "better performance. Without it, some parts of WordPress and WPGlobus may "
42
  "administrator."
43
  msgstr ""
44
 
 
45
  msgid "Go to WPGlobus Settings"
46
  msgstr "Ir a Ajustes WPGlobus"
47
 
 
48
  msgid "Easy as 1-2-3:"
49
  msgstr "Fácil en 1-2-3:"
50
 
 
51
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
52
  msgstr "Ve al menú de administración WPGlobus y elege los países/idiomas;"
53
 
 
54
  msgid ""
55
  "Enter the translations to the posts, pages, categories, tags and menus using "
56
  "a clean and simple interface."
58
  "Introduce las traducciones a los mensajes, páginas, categorías,etiquetas y "
59
  "menús usando una interfaz limpia y simple."
60
 
 
61
  msgid ""
62
  "Switch languages at the front-end using a drop-down menu with language names "
63
  "and country flags."
65
  "Cambia de idioma en el front-end utilizando un menú desplegable con los "
66
  "nombres de las lenguas y banderas de los países ."
67
 
 
68
  msgid "Links:"
69
  msgstr "Enlaces:"
70
 
 
71
  msgid "FAQs"
72
  msgstr "Preguntas Frecuentes"
73
 
 
74
  msgid "Contact Us"
75
  msgstr "Contáctanos"
76
 
 
77
  msgid "Please give us 5 stars!"
78
  msgstr "Por favor danos 5 estrellas!"
79
 
 
80
  msgid "WPGlobus does not translate texts automatically!"
81
  msgstr ""
82
 
 
83
  msgid ""
84
  "There are many translation companies and individual translators who can help "
85
  "you write and proofread the texts."
86
  msgstr ""
87
 
 
88
  msgid ""
89
  "When you choose a translator, please look at their native language, country "
90
  "of residence, specialization and knowledge of WordPress."
91
  msgstr ""
92
 
93
  #. translators: %s are used to insert HTML link. Keep them in place.
 
94
  msgid ""
95
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
96
  "website. This is not an endorsement, just a courtesy. Please contact them "
97
  "directly and let us know how did it work for you!"
98
  msgstr ""
99
 
 
100
  msgid "Important notes:"
101
  msgstr ""
102
 
 
103
  msgid ""
104
  "WPGlobus only supports the localization URLs in the form of <code>example."
105
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
110
  "subdominios <code>example.com</code> ni consultas lingüísticas <code>example."
111
  "com?lang=xx</code>."
112
 
 
113
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
114
  msgstr ""
115
  "En algunos temas y plugins <strong>No está listo el multilenguaje</strong>."
116
 
 
117
  msgid ""
118
  "They might display some texts with no translation, or with all languages "
119
  "mixed together."
122
  "mezclados entre sí."
123
 
124
  #. translators: %s are used to insert HTML link. Keep them in place.
 
125
  msgid ""
126
  "Please contact the theme / plugin author. If they are unable to assist, "
127
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
130
  "ayudarte, considera % s la contratación del WPGlobus % s para escribir un "
131
  "código personalizado para tí."
132
 
 
133
  msgid "Language was set on your profile page"
134
  msgstr ""
135
 
 
136
  msgid "Add"
137
  msgstr "Añadir"
138
 
 
 
139
  msgid "Multilingual Everything!"
140
  msgstr "Multilenguaje Total!"
141
 
 
 
142
  msgid ""
143
  "WPGlobus is a family of WordPress plugins assisting you in making "
144
  "multilingual WordPress blogs and sites."
146
  "WPGlobus es una familia de plugins de WordPress que ayudan en la traducción "
147
  "de blogs de WordPress."
148
 
 
149
  msgid "Remove the WPGlobus settings (not recommended)"
150
  msgstr ""
151
 
 
152
  msgid "Clean-up Tool"
153
  msgstr ""
154
 
 
155
  msgid "Support"
156
  msgstr "Soporte"
157
 
 
158
  msgid ""
159
  "WARNING: this operation is non-reversible. It is strongly recommended that "
160
  "you backup your database before proceeding."
161
  msgstr ""
162
 
 
163
  msgid ""
164
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
165
  "By running it, you will remove ALL translations you have entered to your "
169
  "so on."
170
  msgstr ""
171
 
 
172
  msgid ""
173
  "Make sure that your active theme does not have any code related to WPGlobus. "
174
  "Such code could be added by you or by a 3rd party developer. If that code "
177
  msgstr ""
178
 
179
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
 
180
  msgid ""
181
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
182
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
183
  msgstr ""
184
 
 
185
  msgid "You are about to clean the content of the following database tables:"
186
  msgstr ""
187
 
 
188
  msgid "The operations log"
189
  msgstr ""
190
 
 
191
  msgid ""
192
  "We are going to write a detailed log of all the database changes performed. "
193
  "It should help in the case you need to restore something important. The log "
194
  "will be written to the file:"
195
  msgstr ""
196
 
 
197
  msgid ""
198
  "Uncheck if you do not want to write the operations log (we recommend to keep "
199
  "it checked)"
200
  msgstr ""
201
 
 
202
  msgid "You have been warned..."
203
  msgstr ""
204
 
 
205
  msgid "Please confirm by checking the box below:"
206
  msgstr ""
207
 
 
208
  msgid ""
209
  "I have read and understood everything written on this page. I am aware that "
210
  "by using this tool I may loose some content of my website. I have made a "
212
  "responsible for the results."
213
  msgstr ""
214
 
 
215
  msgid "YES, I CONFIRM"
216
  msgstr ""
217
 
 
218
  msgid "Process with the Clean-up"
219
  msgstr ""
220
 
 
 
 
 
221
  msgid "Default"
222
  msgstr "Predefinido"
223
 
 
224
  msgid "Section"
225
  msgstr ""
226
 
 
227
  msgid "Show all sections"
228
  msgstr ""
229
 
 
230
  msgid "Save &amp; Reload"
231
  msgstr ""
232
 
 
 
 
233
  msgid "WPGlobus"
234
  msgstr ""
235
 
 
236
  msgid ""
237
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
238
  msgstr ""
239
 
 
240
  msgid "Fields Settings"
241
  msgstr ""
242
 
 
243
  msgid "WPGlobus Settings"
244
  msgstr ""
245
 
 
246
  msgid "Help"
247
  msgstr ""
248
 
 
 
249
  msgid "Languages"
250
  msgstr "Idiomas"
251
 
 
 
252
  msgid "Enabled Languages"
253
  msgstr "Idiomas Habilitados"
254
 
 
 
255
  msgid "These languages are currently enabled on your site."
256
  msgstr "Estos idiomas están habilitados actualmente en su sitio."
257
 
 
 
258
  msgid "Choose a language you would like to enable."
259
  msgstr ""
260
 
 
261
  msgid "Press the [Save & Publish] button to confirm."
262
  msgstr ""
263
 
264
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
265
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
 
 
266
  msgid "or Add new Language %1$s here %2$s"
267
  msgstr ""
268
 
 
 
269
  msgid "Add Languages"
270
  msgstr "Añadir idioma"
271
 
 
 
272
  msgid "Language Selector Mode"
273
  msgstr "Modo Selector de Idioma"
274
 
 
 
275
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
276
  msgstr "Código de la bandera en dos letras (es, en, ru, it, etc.)"
277
 
 
 
278
  msgid "Full Name (English, Russian, Italian, etc.)"
279
  msgstr "Nombre completo (Español, English, Russian, Italian, etc.)"
280
 
 
 
281
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
282
  msgstr "Nombre completo con bandera (Español, English, Russian, Italian, etc.)"
283
 
 
 
284
  msgid "Flags only"
285
  msgstr "Sólo banderas"
286
 
 
 
287
  msgid ""
288
  "Choose the way language name and country flag are shown in the drop-down menu"
289
  msgstr ""
290
  "Elige el nombre del idioma y bandera del país se muestran en el menú "
291
  "desplegable"
292
 
 
293
  msgid "select navigation menu"
294
  msgstr ""
295
 
 
 
 
296
  msgid "Language Selector Menu"
297
  msgstr "Menú selector de idioma"
298
 
 
 
 
299
  msgid "Choose the navigation menu where the language selector will be shown"
300
  msgstr ""
301
  "Selecciona el menú de navegación donde se mostrará el selector de idioma"
302
 
 
303
  msgid "No menus have been created yet. Create some."
304
  msgstr ""
305
 
 
 
306
  msgid "\"All Pages\" menus Language selector"
307
  msgstr "\"Todas las páginas\" Selector de menús Idioma"
308
 
 
 
309
  msgid ""
310
  "Adds language selector to the menus that automatically list all existing "
311
  "pages (using `wp_list_pages`)"
314
  "automáticamente en todas las páginas existentes (utilizando ` "
315
  "wp_list_pages` )"
316
 
 
 
317
  msgid "Custom CSS"
318
  msgstr "Customizar CSS"
319
 
 
320
  msgid ""
321
  "Here you can enter the CSS rules to adjust the language selector menu for "
322
  "your theme. Look at the examples in the `style-samples.css` file."
324
  "Aquí puedes introducir las reglas CSS para ajustar el menú de selección de "
325
  "idiomas para tu tema. Mira los ejemplos en el `style-samples.css` file."
326
 
 
327
  msgid "Post types"
328
  msgstr "Tipos de Post"
329
 
 
330
  msgid "Uncheck to disable WPGlobus"
331
  msgstr "Desactiva la opción para desactivar WPGlobus"
332
 
 
 
333
  msgid "Redirect"
334
  msgstr "Redirección"
335
 
 
 
336
  msgid "Choose the language automatically, based on:"
337
  msgstr ""
338
 
 
 
339
  msgid "Preferred language set in the browser"
340
  msgstr ""
341
 
 
 
342
  msgid ""
343
  "When a user comes to the site for the first time, try to find the best "
344
  "matching language version of the page."
345
  msgstr ""
346
 
 
 
 
 
347
  msgid "Custom JS Code"
348
  msgstr ""
349
 
 
 
350
  msgid "Title"
351
  msgstr "Título"
352
 
 
353
  msgid "(Paste your JS code here.)"
354
  msgstr ""
355
 
 
356
  msgid ""
357
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
358
  "version 4.9 or later."
359
  msgstr ""
360
 
 
361
  msgid "With your version of WordPress, please use the"
362
  msgstr ""
363
 
 
364
  msgid "WPGlobus Settings page"
365
  msgstr ""
366
 
 
367
  msgid "Label"
368
  msgstr ""
369
 
 
370
  msgid "Description"
371
  msgstr "Decripción"
372
 
 
373
  msgid ""
374
  "Here you can specify which fields should be considered multilingual by "
375
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
376
  msgstr ""
377
 
 
 
378
  msgid "Thank you for installing WPGlobus!"
379
  msgstr "Gracias por instalar WPGlobus!"
380
 
 
 
381
  msgid "Read About WPGlobus"
382
  msgstr "Leer sobre WPGlobus!"
383
 
 
384
  msgid ""
385
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
386
  msgstr ""
387
  "Click en la <strong>[Idiomas]</strong> pestaña en la parte izquierda de "
388
  "configuración de las opciones."
389
 
 
 
390
  msgid ""
391
  "Should you have any questions or comments, please do not hesitate to contact "
392
  "us."
394
  "Si tienes alguna pregunta o comentario, por favor no dudes en contactar con "
395
  "nosotros."
396
 
 
 
397
  msgid "Sincerely Yours,"
398
  msgstr "Sinceramente tuyo,"
399
 
 
 
 
400
  msgid "The WPGlobus Team"
401
  msgstr "El Equipo WPGlobus"
402
 
403
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
404
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
405
  msgid ""
406
  "We would hate to see you go. If something goes wrong, do not uninstall "
407
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
408
  msgstr ""
409
 
 
 
410
  msgid ""
411
  "Please note that if you deactivate WPGlobus, your site will show all the "
412
  "languages together, mixed up. You will need to remove all translations, "
415
 
416
  #. translators: %s: link to the Clean-up Tool
417
  #. translators: %s: link to the Clean-up Tool.
 
 
418
  msgid ""
419
  "If there are just a few places, you should edit them manually. To "
420
  "automatically remove all translations at once, you can use the %s. WARNING: "
424
 
425
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
426
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
427
  msgid "%1$sClean-up Tool%2$s"
428
  msgstr ""
429
 
430
  #. translators: %s: name of current theme
 
431
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
432
  msgstr ""
433
 
434
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
435
  msgid "Please use %1$sWPGlobus options page%2$s instead."
436
  msgstr ""
437
 
 
438
  msgid "Expand/Shrink"
439
  msgstr ""
440
 
 
 
441
  msgid "WPGlobus News"
442
  msgstr ""
443
 
 
 
444
  msgid "Options updated"
445
  msgstr "Opciones actualizadas"
446
 
 
447
  msgid "Please enter a language code!"
448
  msgstr "Por favor, introduce el código del idioma!"
449
 
 
450
  msgid "Language code already exists!"
451
  msgstr "Este código de idioma ya existe!"
452
 
 
453
  msgid "Please specify the language flag!"
454
  msgstr "Por favor, especifica la bandera del idioma !"
455
 
 
456
  msgid "Please enter the language name!"
457
  msgstr "Por favor introduce el nombre del idioma!"
458
 
 
459
  msgid "Please enter the language name in English!"
460
  msgstr "Por favor introduce el nombre del idioma en Inglés!"
461
 
 
462
  msgid "Please enter the locale!"
463
  msgstr "Por favor introduce la localización!"
464
 
 
465
  msgid "Add Language"
466
  msgstr "Añadir Idioma"
467
 
 
 
 
468
  msgid "Delete Language"
469
  msgstr "Eliminar Idioma"
470
 
 
471
  msgid "Edit Language"
472
  msgstr "Editar Idioma"
473
 
 
474
  msgid "Language Code"
475
  msgstr "Código del Idioma"
476
 
 
477
  msgid ""
478
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
479
  msgstr ""
480
  "2-Carta de códigos de idioma ISO para el idioma que deseas insertar. "
481
  "(Ejemplo : en)"
482
 
 
483
  msgid "Language flag"
484
  msgstr "Bandera del idioma"
485
 
 
486
  msgid "Name"
487
  msgstr "Nombre"
488
 
 
489
  msgid ""
490
  "The name of the language in its native alphabet. (Examples: English, Русский)"
491
  msgstr ""
492
  "El nombre de la lengua en su alfabeto nativo. (Ejemplos : Español, English, "
493
  "Русский )"
494
 
 
495
  msgid "Name in English"
496
  msgstr "Nombre en Inglés"
497
 
 
498
  msgid "The name of the language in English"
499
  msgstr "El nombre del idioma en Inglés"
500
 
 
 
501
  msgid "Locale"
502
  msgstr "Local"
503
 
 
504
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
505
  msgstr ""
506
  "PHP / WordPress configuración regional de la lengua . (Ejemplos : en_US, "
507
  "es_ES, ru_RU)"
508
 
 
509
  msgid "Are you sure you want to delete?"
510
  msgstr "Estás seguro de que quieres borrarlo?"
511
 
 
512
  msgid "Save Changes"
513
  msgstr "Guardar Cambios"
514
 
 
515
  msgid "Back to the WPGlobus Settings"
516
  msgstr "Volver a Ajustes WPGlobus"
517
 
 
518
  msgid "Current Version"
519
  msgstr "Versión Actual"
520
 
 
521
  msgid "Get it now!"
522
  msgstr ""
523
 
 
524
  msgid "Premium add-on"
525
  msgstr ""
526
 
 
 
527
  msgid "Installed"
528
  msgstr "Instalado"
529
 
530
  #. translators: placeholders are for the HTML tags.
 
531
  msgid ""
532
  "If you have already purchased a WPGlobus premium extension, please read "
533
  "%1$sthe installation instructions here%2$s"
534
  msgstr ""
535
 
 
 
536
  msgid "Help Desk"
537
  msgstr ""
538
 
 
539
  msgid "Email not sent. Please fill in the entire form."
540
  msgstr ""
541
 
 
542
  msgid ""
543
  "Email not sent. Please verify that your name and email are entered correctly."
544
  msgstr ""
545
 
 
546
  msgid "Email sent."
547
  msgstr ""
548
 
 
549
  msgid "Thank you for using WPGlobus!"
550
  msgstr ""
551
 
 
552
  msgid "Our Support Team is here to answer your questions or concerns."
553
  msgstr ""
554
 
 
555
  msgid "To help us serve you better:"
556
  msgstr ""
557
 
 
558
  msgid ""
559
  "Please check if the problem persists if you switch to a standard WordPress "
560
  "theme."
561
  msgstr ""
562
 
 
563
  msgid ""
564
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
565
  msgstr ""
566
 
 
567
  msgid "Please fill in and submit the contact form:"
568
  msgstr ""
569
 
 
570
  msgid "Please make sure the email address is correct."
571
  msgstr ""
572
 
 
573
  msgid "Subject"
574
  msgstr ""
575
 
 
576
  msgid "Short description of the problem"
577
  msgstr ""
578
 
 
579
  msgid "Detailed description"
580
  msgstr ""
581
 
 
582
  msgid "Technical Information"
583
  msgstr ""
584
 
 
585
  msgid "This information helps us to find the problem source"
586
  msgstr ""
587
 
 
588
  msgid ""
589
  "Alternatively, please email %s. Do not forget to copy and paste the "
590
  "technical information to your email message."
591
  msgstr ""
592
 
 
593
  msgid "WPGlobus Recommends:"
594
  msgstr ""
595
 
 
 
596
  msgid "WPGlobus for WooCommerce"
597
  msgstr ""
598
 
 
599
  msgid ""
600
  "Translate product titles and descriptions, product categories, tags and "
601
  "attributes."
602
  msgstr ""
603
 
 
604
  msgid "Get it now:"
605
  msgstr ""
606
 
 
607
  msgid "WooCommerce Multi-Currency"
608
  msgstr ""
609
 
 
610
  msgid "Accept multiple currencies in your online store!"
611
  msgstr ""
612
 
 
 
613
  msgid "Check it out:"
614
  msgstr ""
615
 
 
616
  msgid "To translate permalinks, please activate the module Slug."
617
  msgstr ""
618
 
 
619
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
620
  msgstr ""
621
 
 
 
622
  msgid "Save draft before using extra language."
623
  msgstr ""
624
 
 
625
  msgid "Builder"
626
  msgstr ""
627
 
 
628
  msgid "Сompatibility Settings"
629
  msgstr ""
630
 
631
  #. translators: ON/OFF status of WPGlobus on the edit pages.
632
  #. translators: ON/OFF status of WPGlobus on the edit pages.
 
 
633
  msgid "ON"
634
  msgstr ""
635
 
 
 
636
  msgid "Turn off"
637
  msgstr ""
638
 
 
 
639
  msgid "OFF"
640
  msgstr ""
641
 
 
 
642
  msgid "Turn on"
643
  msgstr ""
644
 
 
645
  msgid "Elementor"
646
  msgstr ""
647
 
 
648
  msgid "WPGlobus languages"
649
  msgstr ""
650
 
 
651
  msgid "current"
652
  msgstr ""
653
 
 
654
  msgid ""
655
  "WPGlobus provides multilingual support for Elementor only when the option "
656
  "%1$s%2$s%3$s is set to %4$s."
657
  msgstr ""
658
 
 
659
  msgid "Before switching the language, please save draft or publish."
660
  msgstr ""
661
 
662
  #. translators: Metabox title FOR language.
 
663
  msgctxt "filter__seo_meta_box_title"
664
  msgid "for"
665
  msgstr ""
666
 
 
667
  msgid "Page is being reloaded. Please wait..."
668
  msgstr ""
669
 
 
670
  msgid ""
671
  "Before switching the language, please save draft or publish, then reload "
672
  "page."
673
  msgstr ""
674
 
 
675
  msgid ""
676
  "WPGlobus provides multilingual support for Elementor only when the option "
677
  "`CSS Print Method` is set to `External File`."
678
  msgstr ""
679
 
 
680
  msgid "Open Elementor Settings page"
681
  msgstr ""
682
 
 
683
  msgid "WPGlobus widget"
684
  msgstr "WPGlobus widget"
685
 
 
686
  msgid "Add language switcher"
687
  msgstr "Añadir selector de idiomas"
688
 
 
689
  msgid "Flags"
690
  msgstr "Banderas"
691
 
 
692
  msgid "List"
693
  msgstr "Lista"
694
 
 
695
  msgid "List with flags"
696
  msgstr "Lista con Banderas"
697
 
 
698
  msgid "Select"
699
  msgstr "Seleccionar"
700
 
 
701
  msgid "Select with language code"
702
  msgstr "Seleccionar con el código de idioma"
703
 
 
704
  msgid "Dropdown"
705
  msgstr "Desplegable"
706
 
 
707
  msgid "Dropdown with flags"
708
  msgstr "Desplegable con banderas"
709
 
 
710
  msgid "Selector type"
711
  msgstr "Tipo de selector"
712
 
 
713
  msgid "You cannot disable the main language."
714
  msgstr "No se puede desactivar el idioma principal."
715
 
 
716
  msgid "Need a multilingual slug?"
717
  msgstr ""
718
 
 
719
  msgid "*) Available after the menu is saved."
720
  msgstr "No Se Puede Desactivar el director idioma."
721
 
 
722
  msgid "You must enable Pretty Permalinks to use WPGlobus."
723
  msgstr ""
724
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
725
 
 
726
  msgid ""
727
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
728
  "default option."
730
  "Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
731
  "selecciona una opción no predeterminada ."
732
 
 
733
  msgid "Language Selector Menu Style"
734
  msgstr ""
735
 
 
 
 
736
  msgid "WPGlobus Plus"
737
  msgstr ""
738
 
 
739
  msgid "Drop-down languages menu or Flat (in one line)"
740
  msgstr ""
741
 
 
742
  msgid "Do not change"
743
  msgstr ""
744
 
 
745
  msgid "Drop-down (vertical)"
746
  msgstr ""
747
 
 
748
  msgid "Flat (horizontal)"
749
  msgstr ""
750
 
 
751
  msgid ""
752
  "If you see this message then your browser may not display the WPGlobus "
753
  "Settings panel properly. Please try another browser."
754
  msgstr ""
755
 
 
 
756
  msgid "Сompatibility"
757
  msgstr ""
758
 
759
  #. translators: placeholders for "strong" tags.
 
760
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
761
  msgstr ""
762
 
763
  #. translators: placeholders for "strong" tags.
 
764
  msgid ""
765
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
766
  "the language attributes: name, code, flag icon, etc."
767
  msgstr ""
768
 
 
769
  msgid "Important notes"
770
  msgstr ""
771
 
772
  #. translators: placeholders for "strong" tags.
 
773
  msgid "Version %1$s1.9.17%2$s "
774
  msgstr ""
775
 
776
  #. translators: placeholders for "strong" tags.
 
777
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
778
  msgstr ""
779
 
780
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
781
  msgid ""
782
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
783
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
784
  msgstr ""
785
 
786
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
787
  msgid ""
788
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
789
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
790
  msgstr ""
791
 
792
  #. translators: placeholders for "strong" tags.
 
793
  msgid "Version %1$s2.2.11%2$s "
794
  msgstr ""
795
 
 
796
  msgid "Starting from this version"
797
  msgstr ""
798
 
799
  #. translators: placeholders for "strong" tags.
 
800
  msgid ""
801
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
802
  "(CPT)."
803
  msgstr ""
804
 
805
  #. translators: placeholders for "strong" tags.
 
806
  msgid ""
807
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
808
  "the %1$s[%3$s]%2$s tab."
809
  msgstr ""
810
 
 
811
  msgid "Welcome!"
812
  msgstr "Bienvenido!"
813
 
 
814
  msgid "Deactivating / Uninstalling"
815
  msgstr ""
816
 
 
817
  msgid "Uninstall"
818
  msgstr ""
819
 
 
820
  msgid "All add-ons"
821
  msgstr ""
822
 
 
823
  msgid "Mobile Menu"
824
  msgstr ""
825
 
 
826
  msgid "Language Widgets"
827
  msgstr ""
828
 
 
829
  msgid "We Recommend..."
830
  msgstr ""
831
 
 
832
  msgid ""
833
  "Our premium add-on, WPGlobus Plus, will add several features to your "
834
  "website, such as:"
835
  msgstr ""
836
 
 
837
  msgid ""
838
  "- Ability to write a post in one language and immediately publish it, not "
839
  "waiting for the translation to other languages;"
840
  msgstr ""
841
 
 
842
  msgid "- Set different URLs for each translation;"
843
  msgstr ""
844
 
 
845
  msgid ""
846
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
847
  "for each translation;"
848
  msgstr ""
849
 
 
850
  msgid "- and more..."
851
  msgstr ""
852
 
 
 
 
853
  msgid "Click here to download"
854
  msgstr ""
855
 
 
856
  msgid ""
857
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
858
  "translate your blog posts and pages to many languages."
859
  msgstr ""
860
 
 
861
  msgid "The next step is to translate your WooCommerce-based store!"
862
  msgstr ""
863
 
 
864
  msgid ""
865
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
866
  "translate product titles and descriptions, categories, tags and attributes."
867
  msgstr ""
868
 
 
869
  msgid "Multi-currency"
870
  msgstr ""
871
 
 
872
  msgid ""
873
  "Your WooCommerce-powered store is set to show prices and accept payments in "
874
  "a single currency only."
875
  msgstr ""
876
 
 
877
  msgid ""
878
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
879
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
881
  "positioning for global growth!"
882
  msgstr ""
883
 
 
884
  msgid ""
885
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
886
  "re-calculating prices on-the-fly."
887
  msgstr ""
888
 
 
889
  msgid "WPGlobus Premium Add-ons"
890
  msgstr ""
891
 
 
892
  msgid ""
893
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
894
  "you will be able to:"
895
  msgstr ""
896
 
 
897
  msgid ""
898
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
899
  "моя-страница and so on);"
900
  msgstr ""
901
 
 
902
  msgid ""
903
  "Postpone translation to some languages and <strong>publish only the "
904
  "translated texts</strong>;"
905
  msgstr ""
906
 
 
907
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
908
  msgstr ""
909
 
 
910
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
911
  msgstr ""
912
 
 
913
  msgid ""
914
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
915
  "strong>;"
916
  msgstr ""
917
 
 
918
  msgid "...and more."
919
  msgstr ""
920
 
 
921
  msgid "Click here to visit the WPGlobus Store"
922
  msgstr ""
923
 
 
924
  msgid "Select a language"
925
  msgstr "Seleccionar un idioma"
926
 
927
  #. translators: %3$s placeholder for the icon (actual picture).
 
928
  msgid ""
929
  "Place the %1$smain language%2$s of your site at the top of the list by "
930
  "dragging the %3$s icons."
931
  msgstr ""
932
 
933
  #. translators: placeholders for the "strong" HTML tags.
 
934
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
935
  msgstr ""
936
 
937
  #. translators: placeholders for the "strong" HTML tags.
 
938
  msgid "%1$sAdd%2$s more languages using the section below."
939
  msgstr ""
940
 
 
941
  msgid "When done, click the [Save Changes] button."
942
  msgstr "Cuando hayas terminado, haz clic en el botón [Guardar Cambios] ."
943
 
944
  #. translators: %s - placeholder for the "Save Changes" button text.
 
945
  msgid "Press the %s button to confirm."
946
  msgstr ""
947
 
948
  #. translators: dropdown option meaning that none of the navigation menus should show the language selector.
 
949
  msgid "-- none --"
950
  msgstr ""
951
 
 
952
  msgid "All menus"
953
  msgstr ""
954
 
 
955
  msgid "Instructions:"
956
  msgstr "Instrucciones:"
957
 
 
958
  msgid "(Found in some themes)"
959
  msgstr "(Encontrado en algunos temas)"
960
 
 
961
  msgid "Enable"
962
  msgstr "Habilitar"
963
 
 
964
  msgid "Languages table"
965
  msgstr "Tabla de idiomas"
966
 
 
967
  msgid "Use this table to add, edit or delete languages."
968
  msgstr "Utiliza esta tabla para agregar, editar o eliminar idiomas."
969
 
 
970
  msgid "NOTE: you cannot remove the main language."
971
  msgstr "Nota: No se puede eliminar el idioma principal."
972
 
 
973
  msgid "WPGlobus is enabled on these Post Types"
974
  msgstr ""
975
 
 
976
  msgid "Uncheck to disable"
977
  msgstr ""
978
 
 
979
  msgid ""
980
  "Please note that there are post types, which status is managed by other "
981
  "plugins and cannot be changed here."
982
  msgstr ""
983
 
 
984
  msgid "Post Types"
985
  msgstr ""
986
 
 
987
  msgid ""
988
  "You should put here only the code provided by WPGlobus Support. Do not write "
989
  "anything else in the sections below as it might break the functionality of "
990
  "your website!"
991
  msgstr ""
992
 
 
993
  msgid "Custom Code"
994
  msgstr ""
995
 
 
 
 
996
  msgid "Enabled"
997
  msgstr ""
998
 
 
999
  msgid "Builders support"
1000
  msgstr ""
1001
 
 
1002
  msgid "Builder mode is enabled on these Post Types"
1003
  msgstr ""
1004
 
 
1005
  msgid "Old fashioned language switcher"
1006
  msgstr ""
1007
 
 
1008
  msgid "Block Editor"
1009
  msgstr ""
1010
 
 
1011
  msgid "Block Editor Options"
1012
  msgstr ""
1013
 
 
1014
  msgid ""
1015
  "With the current settings, you will see the following lines in the section "
1016
  "HEAD of your site pages"
1017
  msgstr ""
1018
 
 
1019
  msgid "(example for two languages)"
1020
  msgstr ""
1021
 
 
1022
  msgid ""
1023
  "Tell search engines about localized versions of your pages using the "
1024
  "hreflang tag"
1025
  msgstr ""
1026
 
 
1027
  msgid "Output the hreflang tag as"
1028
  msgstr ""
1029
 
 
1030
  msgid "Language- and region-specific (en-US, ru-RU, etc.)"
1031
  msgstr ""
1032
 
 
1033
  msgid "Language- and region-specific (en-us, ru-ru, etc.)"
1034
  msgstr ""
1035
 
 
1036
  msgid "Language code only (en, ru, etc.)"
1037
  msgstr ""
1038
 
 
1039
  msgid "Use the code `x-default` for the main language"
1040
  msgstr ""
1041
 
 
1042
  msgid "Multilingual SEO"
1043
  msgstr ""
1044
 
 
1045
  msgid "Multilingual SEO Options"
1046
  msgstr ""
1047
 
 
1048
  msgid ""
1049
  "With WPGlobus, you can get translations for posts and pages using REST API."
1050
  msgstr ""
1051
 
 
 
 
 
1052
  msgid "Go to %1$s%2$s%3$s to see the content in language: %4$s."
1053
  msgstr ""
1054
 
 
1055
  msgid ""
1056
  "For demonstration, you can try the first post that WordPress creates at the "
1057
  "initial installation."
1058
  msgstr ""
1059
 
 
1060
  msgid ""
1061
  "Please read the %1$sWordPress REST API documentation%2$s for more "
1062
  "information."
1063
  msgstr ""
1064
 
 
1065
  msgid ""
1066
  "In the REST API response, you can find the %1$stranslation%2$s field, which "
1067
  "shows whether translations exist for the fields %1$stitle%2$s, %1$scontent"
1068
  "%2$s and %1$sexcerpt%2$s or not, for each language. See the screenshot below:"
1069
  msgstr ""
1070
 
 
1071
  msgid "Description:"
1072
  msgstr ""
1073
 
 
 
1074
  msgid "REST API"
1075
  msgstr ""
1076
 
 
1077
  msgid "Translate strings"
1078
  msgstr ""
1079
 
 
1080
  msgid "item"
1081
  msgstr "Artículo"
1082
 
 
1083
  msgid "items"
1084
  msgstr "Artículos"
1085
 
 
1086
  msgid "Code"
1087
  msgstr "Código"
1088
 
 
1089
  msgid "Edit"
1090
  msgstr "Editar"
1091
 
 
1092
  msgid "Delete"
1093
  msgstr "Borrar"
1094
 
 
1095
  msgid "File"
1096
  msgstr "Archivo"
1097
 
 
1098
  msgid "Flag"
1099
  msgstr "Bandera"
1100
 
 
1101
  msgid "Language name"
1102
  msgstr "Nombre del idioma"
1103
 
 
1104
  msgid "English language name"
1105
  msgstr "Nombre del idioma en Inglés"
1106
 
 
1107
  msgid "No items found"
1108
  msgstr "No se han encntrado artículos"
1109
 
 
1110
  msgid "Add new Language"
1111
  msgstr "Añadir nuevo idioma"
1112
 
 
1113
  msgid "No items of this type were found."
1114
  msgstr ""
1115
 
 
1116
  msgid "Select an item"
1117
  msgstr ""
1118
 
 
1119
  msgid "Multilingual support of this add-on is currently in Beta stage."
1120
  msgstr ""
1121
 
 
1122
  msgid "We do not recommend using it on production sites."
1123
  msgstr ""
1124
 
 
1125
  msgid "Please report all problems to %1$sWPGlobus Technical Support%2$s."
1126
  msgstr ""
1127
 
 
1128
  msgid "WordPress version"
1129
  msgstr ""
1130
 
 
1131
  msgid "In the WordPress core"
1132
  msgstr ""
1133
 
 
1134
  msgid "Core"
1135
  msgstr ""
1136
 
 
 
1137
  msgid "Current version"
1138
  msgstr ""
1139
 
 
 
1140
  msgid "Stage"
1141
  msgstr ""
1142
 
 
 
1143
  msgid "Status"
1144
  msgstr ""
1145
 
 
1146
  msgid "Block editor"
1147
  msgstr ""
1148
 
 
1149
  msgid "production"
1150
  msgstr ""
1151
 
 
1152
  msgid "List of supported add-ons"
1153
  msgstr ""
1154
 
 
1155
  msgid "Add-on"
1156
  msgstr ""
1157
 
 
1158
  msgid "Supported minimum version"
1159
  msgstr ""
1160
 
 
1161
  msgid "Not installed"
1162
  msgstr ""
1163
 
 
1164
  msgid "Installed, inactive"
1165
  msgstr ""
1166
 
 
1167
  msgid "Active"
1168
  msgstr "Activo"
1169
 
 
1170
  msgid "WPGlobus Customizer is integrated into the Customize Theme panel"
1171
  msgstr ""
1172
 
 
1173
  msgid "However, some themes do not follow all WordPress standards strictly."
1174
  msgstr ""
1175
 
 
1176
  msgid "WPGlobus Customizer may behave incorrectly with those themes."
1177
  msgstr ""
1178
 
 
1179
  msgid "To avoid conflicts, you can switch the WPGlobus Customizer off:"
1180
  msgstr ""
1181
 
 
1182
  msgid ""
1183
  "Below is the list of themes that do not support the WPGlobus Customizer. "
1184
  "With those themes, WPGlobus Customizer is switched off by default"
1185
  msgstr ""
1186
 
 
1187
  msgid "The currently active theme is"
1188
  msgstr ""
1189
 
 
1190
  msgid "In the current version, WPGlobus Customizer does not support"
1191
  msgstr ""
1192
 
 
1193
  msgid "translation of the navigation menus"
1194
  msgstr ""
1195
 
 
1196
  msgid "to translate, please go to"
1197
  msgstr ""
1198
 
 
1199
  msgid "Go to Customizer"
1200
  msgstr ""
1201
 
 
1202
  msgid "is undefined"
1203
  msgstr ""
1204
 
 
1205
  msgid "is set to"
1206
  msgstr ""
1207
 
 
1208
  msgid "by adding to the file wp-config.php"
1209
  msgstr ""
1210
 
 
1211
  msgid "now"
1212
  msgstr ""
1213
 
 
1214
  msgid "We rely on your support!"
1215
  msgstr ""
1216
 
 
1217
  msgid "Please consider a small donation to support the future development."
1218
  msgstr ""
1219
 
 
1220
  msgid "Thank you!"
1221
  msgstr "Gracias!"
1222
 
 
1223
  msgid "WPGlobus Plus!"
1224
  msgstr "WPGlobus Plus!"
1225
 
 
1226
  msgid ""
1227
  "Advanced features and tweaks: URL translation, multilingual SEO analysis, "
1228
  "separate publishing and more! "
1229
  msgstr ""
1230
 
 
1231
  msgid "Get WPGlobus Plus now!"
1232
  msgstr ""
1233
 
 
1234
  msgid ""
1235
  "Bulk editing of the multilingual titles and descriptions is not supported by "
1236
  "the current version."
1237
  msgstr ""
1238
 
 
1239
  msgid "Therefore, to avoid any data loss, we do not recommend using this."
1240
  msgstr ""
1241
 
 
1242
  msgid "WPGlobus warning: "
1243
  msgstr ""
1244
 
 
1245
  msgid "https://github.com/WPGlobus/WPGlobus"
1246
  msgstr ""
1247
 
 
1248
  msgid ""
1249
  "A WordPress Globalization / Multilingual Plugin. Posts, pages, menus, "
1250
  "widgets and even custom fields - in multiple languages!"
1252
  "WordPress Globalization / Plugin multilenguaje. Mensajes, páginas, menús, "
1253
  "widgets e incluso campos personalizados - en varios idiomas !"
1254
 
 
1255
  msgid "https://wpglobus.com/"
1256
  msgstr ""
languages/wpglobus-es_MX.po CHANGED
@@ -16,44 +16,25 @@ msgstr ""
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
19
- #: includes/admin/central/class-wpglobus-admin-central.php:122,
20
- #: includes/admin/class-wpglobus-about.php:42,
21
- #: includes/admin/class-wpglobus-about.php:117,
22
- #: includes/admin/class-wpglobus-clean.php:600,
23
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:43
24
  msgid "Guide"
25
  msgstr "Guía"
26
 
27
- #: includes/admin/central/class-wpglobus-admin-central.php:142,
28
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:102
29
  msgid "WPGlobus Help Desk"
30
  msgstr ""
31
 
32
- #: includes/admin/central/class-wpglobus-admin-central.php:157,
33
- #: includes/admin/class-wpglobus-about.php:36,
34
- #: includes/admin/class-wpglobus-admin-menu.php:22,
35
- #: includes/admin/class-wpglobus-clean.php:606,
36
- #: includes/admin/class-wpglobus-customize-options.php:1293,
37
- #: includes/admin/class-wpglobus-customize-options.php:1261,
38
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:37
39
  msgid "Add-ons"
40
  msgstr "Complementos"
41
 
42
- #: includes/admin/class-wpglobus-about.php:26
43
  msgid "Quick Start"
44
  msgstr "Inicio Rápido"
45
 
46
- #: includes/admin/class-wpglobus-about.php:48,
47
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:49
48
  msgid "FAQ"
49
  msgstr "FAQ"
50
 
51
- #: includes/admin/class-wpglobus-about.php:59
52
  msgid ""
53
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
54
  msgstr ""
55
 
56
- #: includes/admin/class-wpglobus-about.php:60
57
  msgid ""
58
  "The mbstring extension is required for the full UTF-8 compatibility and "
59
  "better performance. Without it, some parts of WordPress and WPGlobus may "
@@ -61,19 +42,15 @@ msgid ""
61
  "administrator."
62
  msgstr ""
63
 
64
- #: includes/admin/class-wpglobus-about.php:87
65
  msgid "Go to WPGlobus Settings"
66
  msgstr "Ir a Ajustes WPGlobus"
67
 
68
- #: includes/admin/class-wpglobus-about.php:98
69
  msgid "Easy as 1-2-3:"
70
  msgstr "Fácil en 1-2-3:"
71
 
72
- #: includes/admin/class-wpglobus-about.php:101
73
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
74
  msgstr "Ve al menú de administración WPGlobus y elege los países/idiomas;"
75
 
76
- #: includes/admin/class-wpglobus-about.php:102
77
  msgid ""
78
  "Enter the translations to the posts, pages, categories, tags and menus using "
79
  "a clean and simple interface."
@@ -81,7 +58,6 @@ msgstr ""
81
  "Introduce las traducciones a los mensajes, páginas, categorías,etiquetas y "
82
  "menús usando una interfaz limpia y simple."
83
 
84
- #: includes/admin/class-wpglobus-about.php:103
85
  msgid ""
86
  "Switch languages at the front-end using a drop-down menu with language names "
87
  "and country flags."
@@ -89,51 +65,41 @@ msgstr ""
89
  "Cambia de idioma en el front-end utilizando un menú desplegable con los "
90
  "nombres de las lenguas y banderas de los países ."
91
 
92
- #: includes/admin/class-wpglobus-about.php:111
93
  msgid "Links:"
94
  msgstr "Enlaces:"
95
 
96
- #: includes/admin/class-wpglobus-about.php:119
97
  msgid "FAQs"
98
  msgstr "Preguntas Frecuentes"
99
 
100
- #: includes/admin/class-wpglobus-about.php:121
101
  msgid "Contact Us"
102
  msgstr "Contáctanos"
103
 
104
- #: includes/admin/class-wpglobus-about.php:123
105
  msgid "Please give us 5 stars!"
106
  msgstr "Por favor danos 5 estrellas!"
107
 
108
- #: includes/admin/class-wpglobus-about.php:133
109
  msgid "WPGlobus does not translate texts automatically!"
110
  msgstr ""
111
 
112
- #: includes/admin/class-wpglobus-about.php:136
113
  msgid ""
114
  "There are many translation companies and individual translators who can help "
115
  "you write and proofread the texts."
116
  msgstr ""
117
 
118
- #: includes/admin/class-wpglobus-about.php:137
119
  msgid ""
120
  "When you choose a translator, please look at their native language, country "
121
  "of residence, specialization and knowledge of WordPress."
122
  msgstr ""
123
 
124
  #. translators: %s are used to insert HTML link. Keep them in place.
125
- #: includes/admin/class-wpglobus-about.php:143
126
  msgid ""
127
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
128
  "website. This is not an endorsement, just a courtesy. Please contact them "
129
  "directly and let us know how did it work for you!"
130
  msgstr ""
131
 
132
- #: includes/admin/class-wpglobus-about.php:154
133
  msgid "Important notes:"
134
  msgstr ""
135
 
136
- #: includes/admin/class-wpglobus-about.php:159
137
  msgid ""
138
  "WPGlobus only supports the localization URLs in the form of <code>example."
139
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
@@ -144,12 +110,10 @@ msgstr ""
144
  "subdominios <code>example.com</code> ni consultas lingüísticas <code>example."
145
  "com?lang=xx</code>."
146
 
147
- #: includes/admin/class-wpglobus-about.php:162
148
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
149
  msgstr ""
150
  "En algunos temas y plugins <strong>No está listo el multilenguaje</strong>."
151
 
152
- #: includes/admin/class-wpglobus-about.php:163
153
  msgid ""
154
  "They might display some texts with no translation, or with all languages "
155
  "mixed together."
@@ -158,7 +122,6 @@ msgstr ""
158
  "mezclados entre sí."
159
 
160
  #. translators: %s are used to insert HTML link. Keep them in place.
161
- #: includes/admin/class-wpglobus-about.php:167
162
  msgid ""
163
  "Please contact the theme / plugin author. If they are unable to assist, "
164
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
@@ -167,21 +130,15 @@ msgstr ""
167
  "ayudarte, considera % s la contratación del WPGlobus % s para escribir un "
168
  "código personalizado para tí."
169
 
170
- #: includes/admin/class-wpglobus-admin-bar-menu.php:124
171
  msgid "Language was set on your profile page"
172
  msgstr ""
173
 
174
- #: includes/admin/class-wpglobus-admin-bar-menu.php:194
175
  msgid "Add"
176
  msgstr "Añadir"
177
 
178
- #: includes/admin/class-wpglobus-admin-page.php:32,
179
- #: includes/admin/class-wpglobus-clean.php:585
180
  msgid "Multilingual Everything!"
181
  msgstr "Multilenguaje Total!"
182
 
183
- #: includes/admin/class-wpglobus-admin-page.php:34,
184
- #: includes/admin/class-wpglobus-clean.php:588
185
  msgid ""
186
  "WPGlobus is a family of WordPress plugins assisting you in making "
187
  "multilingual WordPress blogs and sites."
@@ -189,25 +146,20 @@ msgstr ""
189
  "WPGlobus es una familia de plugins de WordPress que ayudan en la traducción "
190
  "de blogs de WordPress."
191
 
192
- #: includes/admin/class-wpglobus-clean.php:232
193
  msgid "Remove the WPGlobus settings (not recommended)"
194
  msgstr ""
195
 
196
- #: includes/admin/class-wpglobus-clean.php:595
197
  msgid "Clean-up Tool"
198
  msgstr ""
199
 
200
- #: includes/admin/class-wpglobus-clean.php:609
201
  msgid "Support"
202
  msgstr "Soporte"
203
 
204
- #: includes/admin/class-wpglobus-clean.php:614
205
  msgid ""
206
  "WARNING: this operation is non-reversible. It is strongly recommended that "
207
  "you backup your database before proceeding."
208
  msgstr ""
209
 
210
- #: includes/admin/class-wpglobus-clean.php:619
211
  msgid ""
212
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
213
  "By running it, you will remove ALL translations you have entered to your "
@@ -217,7 +169,6 @@ msgid ""
217
  "so on."
218
  msgstr ""
219
 
220
- #: includes/admin/class-wpglobus-clean.php:622
221
  msgid ""
222
  "Make sure that your active theme does not have any code related to WPGlobus. "
223
  "Such code could be added by you or by a 3rd party developer. If that code "
@@ -226,42 +177,34 @@ msgid ""
226
  msgstr ""
227
 
228
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
229
- #: includes/admin/class-wpglobus-clean.php:630
230
  msgid ""
231
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
232
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
233
  msgstr ""
234
 
235
- #: includes/admin/class-wpglobus-clean.php:641
236
  msgid "You are about to clean the content of the following database tables:"
237
  msgstr ""
238
 
239
- #: includes/admin/class-wpglobus-clean.php:649
240
  msgid "The operations log"
241
  msgstr ""
242
 
243
- #: includes/admin/class-wpglobus-clean.php:652
244
  msgid ""
245
  "We are going to write a detailed log of all the database changes performed. "
246
  "It should help in the case you need to restore something important. The log "
247
  "will be written to the file:"
248
  msgstr ""
249
 
250
- #: includes/admin/class-wpglobus-clean.php:662
251
  msgid ""
252
  "Uncheck if you do not want to write the operations log (we recommend to keep "
253
  "it checked)"
254
  msgstr ""
255
 
256
- #: includes/admin/class-wpglobus-clean.php:667
257
  msgid "You have been warned..."
258
  msgstr ""
259
 
260
- #: includes/admin/class-wpglobus-clean.php:669
261
  msgid "Please confirm by checking the box below:"
262
  msgstr ""
263
 
264
- #: includes/admin/class-wpglobus-clean.php:671
265
  msgid ""
266
  "I have read and understood everything written on this page. I am aware that "
267
  "by using this tool I may loose some content of my website. I have made a "
@@ -269,153 +212,100 @@ msgid ""
269
  "responsible for the results."
270
  msgstr ""
271
 
272
- #: includes/admin/class-wpglobus-clean.php:674
273
  msgid "YES, I CONFIRM"
274
  msgstr ""
275
 
276
- #: includes/admin/class-wpglobus-clean.php:678
277
  msgid "Process with the Clean-up"
278
  msgstr ""
279
 
280
- #: includes/admin/class-wpglobus-customize-options.php:73,
281
- #: includes/admin/class-wpglobus-customize-options.php:100,
282
- #: includes/admin/class-wpglobus-customize-options.php:145,
283
- #: includes/admin/class-wpglobus-customize-options.php:183
284
  msgid "Default"
285
  msgstr "Predefinido"
286
 
287
- #: includes/admin/class-wpglobus-customize-options.php:264
288
  msgid "Section"
289
  msgstr ""
290
 
291
- #: includes/admin/class-wpglobus-customize-options.php:277
292
  msgid "Show all sections"
293
  msgstr ""
294
 
295
- #: includes/admin/class-wpglobus-customize-options.php:279
296
  msgid "Save &amp; Reload"
297
  msgstr ""
298
 
299
- #: includes/admin/class-wpglobus-customize-options.php:553,
300
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:585,
301
- #: includes/class-wpglobus.php:1284, wpglobus.php:12, wpglobus.php:18
302
  msgid "WPGlobus"
303
  msgstr ""
304
 
305
- #: includes/admin/class-wpglobus-customize-options.php:604
306
  msgid ""
307
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
308
  msgstr ""
309
 
310
- #: includes/admin/class-wpglobus-customize-options.php:610
311
  msgid "Fields Settings"
312
  msgstr ""
313
 
314
- #: includes/admin/class-wpglobus-customize-options.php:655
315
  msgid "WPGlobus Settings"
316
  msgstr ""
317
 
318
- #: includes/admin/class-wpglobus-customize-options.php:723
319
  msgid "Help"
320
  msgstr "Ayuda"
321
 
322
- #: includes/admin/class-wpglobus-customize-options.php:745,
323
- #: includes/options/class-wpglobus-options.php:1176
324
  msgid "Languages"
325
  msgstr "Idiomas"
326
 
327
- #: includes/admin/class-wpglobus-customize-options.php:765,
328
- #: includes/options/class-wpglobus-options.php:1189
329
  msgid "Enabled Languages"
330
  msgstr "Idiomas Habilitados"
331
 
332
- #: includes/admin/class-wpglobus-customize-options.php:767,
333
- #: includes/options/class-wpglobus-options.php:1190
334
  msgid "These languages are currently enabled on your site."
335
  msgstr "Estos idiomas están habilitados actualmente en su sitio."
336
 
337
- #: includes/admin/class-wpglobus-customize-options.php:795,
338
- #: includes/options/class-wpglobus-options.php:1148
339
  msgid "Choose a language you would like to enable."
340
  msgstr ""
341
 
342
- #: includes/admin/class-wpglobus-customize-options.php:797
343
  msgid "Press the [Save & Publish] button to confirm."
344
  msgstr ""
345
 
346
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
347
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
348
- #: includes/admin/class-wpglobus-customize-options.php:801,
349
- #: includes/options/class-wpglobus-options.php:1154
350
  msgid "or Add new Language %1$s here %2$s"
351
  msgstr ""
352
 
353
- #: includes/admin/class-wpglobus-customize-options.php:813,
354
- #: includes/options/class-wpglobus-options.php:1203
355
  msgid "Add Languages"
356
  msgstr "Añadir idioma"
357
 
358
- #: includes/admin/class-wpglobus-customize-options.php:833,
359
- #: includes/options/class-wpglobus-options.php:1211
360
  msgid "Language Selector Mode"
361
  msgstr "Modo Selector de Idioma"
362
 
363
- #: includes/admin/class-wpglobus-customize-options.php:838,
364
- #: includes/options/class-wpglobus-options.php:1214
365
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
366
  msgstr "Código de la bandera en dos letras (es, en, ru, it, etc.)"
367
 
368
- #: includes/admin/class-wpglobus-customize-options.php:839,
369
- #: includes/options/class-wpglobus-options.php:1215
370
  msgid "Full Name (English, Russian, Italian, etc.)"
371
  msgstr "Nombre completo (Español, English, Russian, Italian, etc.)"
372
 
373
- #: includes/admin/class-wpglobus-customize-options.php:841,
374
- #: includes/options/class-wpglobus-options.php:1216
375
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
376
  msgstr "Nombre completo con bandera (Español, English, Russian, Italian, etc.)"
377
 
378
- #: includes/admin/class-wpglobus-customize-options.php:842,
379
- #: includes/options/class-wpglobus-options.php:1217
380
  msgid "Flags only"
381
  msgstr "Sólo banderas"
382
 
383
- #: includes/admin/class-wpglobus-customize-options.php:844,
384
- #: includes/options/class-wpglobus-options.php:1212
385
  msgid ""
386
  "Choose the way language name and country flag are shown in the drop-down menu"
387
  msgstr ""
388
  "Elige el nombre del idioma y bandera del país se muestran en el menú "
389
  "desplegable"
390
 
391
- #: includes/admin/class-wpglobus-customize-options.php:879
392
  msgid "select navigation menu"
393
  msgstr ""
394
 
395
- #: includes/admin/class-wpglobus-customize-options.php:915,
396
- #: includes/admin/class-wpglobus-customize-options.php:888,
397
- #: includes/options/class-wpglobus-options.php:1230
398
  msgid "Language Selector Menu"
399
  msgstr "Menú selector de idioma"
400
 
401
- #: includes/admin/class-wpglobus-customize-options.php:920,
402
- #: includes/admin/class-wpglobus-customize-options.php:899,
403
- #: includes/options/class-wpglobus-options.php:1231
404
  msgid "Choose the navigation menu where the language selector will be shown"
405
  msgstr ""
406
  "Selecciona el menú de navegación donde se mostrará el selector de idioma"
407
 
408
- #: includes/admin/class-wpglobus-customize-options.php:898
409
  msgid "No menus have been created yet. Create some."
410
  msgstr ""
411
 
412
- #: includes/admin/class-wpglobus-customize-options.php:940,
413
- #: includes/options/class-wpglobus-options.php:1241
414
  msgid "\"All Pages\" menus Language selector"
415
  msgstr "\"Todas las páginas\" Selector de menús Idioma"
416
 
417
- #: includes/admin/class-wpglobus-customize-options.php:943,
418
- #: includes/options/class-wpglobus-options.php:1243
419
  msgid ""
420
  "Adds language selector to the menus that automatically list all existing "
421
  "pages (using `wp_list_pages`)"
@@ -424,12 +314,9 @@ msgstr ""
424
  "automáticamente en todas las páginas existentes (utilizando ` "
425
  "wp_list_pages` )"
426
 
427
- #: includes/admin/class-wpglobus-customize-options.php:960,
428
- #: includes/options/class-wpglobus-options.php:1356
429
  msgid "Custom CSS"
430
  msgstr "Customizar CSS"
431
 
432
- #: includes/admin/class-wpglobus-customize-options.php:964
433
  msgid ""
434
  "Here you can enter the CSS rules to adjust the language selector menu for "
435
  "your theme. Look at the examples in the `style-samples.css` file."
@@ -437,99 +324,69 @@ msgstr ""
437
  "Aquí puedes introducir las reglas CSS para ajustar el menú de selección de "
438
  "idiomas para tu tema. Mira los ejemplos en el `style-samples.css` file."
439
 
440
- #: includes/admin/class-wpglobus-customize-options.php:983
441
  msgid "Post types"
442
  msgstr "Tipos de Post"
443
 
444
- #: includes/admin/class-wpglobus-customize-options.php:1091
445
  msgid "Uncheck to disable WPGlobus"
446
  msgstr "Desactiva la opción para desactivar WPGlobus"
447
 
448
- #: includes/admin/class-wpglobus-customize-options.php:1125,
449
- #: includes/options/class-wpglobus-options.php:1424
450
  msgid "Redirect"
451
  msgstr "Redirección"
452
 
453
- #: includes/admin/class-wpglobus-customize-options.php:1150,
454
- #: includes/options/class-wpglobus-options.php:1419
455
  msgid "Choose the language automatically, based on:"
456
  msgstr ""
457
 
458
- #: includes/admin/class-wpglobus-customize-options.php:1152,
459
- #: includes/options/class-wpglobus-options.php:1409
460
  msgid "Preferred language set in the browser"
461
  msgstr ""
462
 
463
- #: includes/admin/class-wpglobus-customize-options.php:1153,
464
- #: includes/options/class-wpglobus-options.php:1396
465
  msgid ""
466
  "When a user comes to the site for the first time, try to find the best "
467
  "matching language version of the page."
468
  msgstr ""
469
 
470
- #: includes/admin/class-wpglobus-customize-options.php:1214,
471
- #: includes/admin/class-wpglobus-customize-options.php:1234,
472
- #: includes/admin/class-wpglobus-customize-options.php:1192,
473
- #: includes/options/class-wpglobus-options.php:1368
474
  msgid "Custom JS Code"
475
  msgstr ""
476
 
477
- #: includes/admin/class-wpglobus-customize-options.php:1232,
478
- #: includes/admin/class-wpglobus-customize-options.php:1276
479
  msgid "Title"
480
  msgstr "Título"
481
 
482
- #: includes/admin/class-wpglobus-customize-options.php:1235
483
  msgid "(Paste your JS code here.)"
484
  msgstr ""
485
 
486
- #: includes/admin/class-wpglobus-customize-options.php:1184
487
  msgid ""
488
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
489
  "version 4.9 or later."
490
  msgstr ""
491
 
492
- #: includes/admin/class-wpglobus-customize-options.php:1186
493
  msgid "With your version of WordPress, please use the"
494
  msgstr ""
495
 
496
- #: includes/admin/class-wpglobus-customize-options.php:1188
497
  msgid "WPGlobus Settings page"
498
  msgstr ""
499
 
500
- #: includes/admin/class-wpglobus-customize-options.php:1277
501
  msgid "Label"
502
  msgstr ""
503
 
504
- #: includes/admin/class-wpglobus-customize-options.php:1281
505
  msgid "Description"
506
  msgstr "Decripción"
507
 
508
- #: includes/admin/class-wpglobus-customize-options.php:1345
509
  msgid ""
510
  "Here you can specify which fields should be considered multilingual by "
511
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
512
  msgstr ""
513
 
514
- #: includes/admin/class-wpglobus-customize-options.php:1351,
515
- #: includes/options/class-wpglobus-options.php:608
516
  msgid "Thank you for installing WPGlobus!"
517
  msgstr "Gracias por instalar WPGlobus!"
518
 
519
- #: includes/admin/class-wpglobus-customize-options.php:1355,
520
- #: includes/options/class-wpglobus-options.php:612
521
  msgid "Read About WPGlobus"
522
  msgstr "Leer sobre WPGlobus!"
523
 
524
- #: includes/admin/class-wpglobus-customize-options.php:1358
525
  msgid ""
526
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
527
  msgstr ""
528
  "Click en la <strong>[Idiomas]</strong> pestaña en la parte izquierda de "
529
  "configuración de las opciones."
530
 
531
- #: includes/admin/class-wpglobus-customize-options.php:1363,
532
- #: includes/options/class-wpglobus-options.php:648
533
  msgid ""
534
  "Should you have any questions or comments, please do not hesitate to contact "
535
  "us."
@@ -537,28 +394,19 @@ msgstr ""
537
  "Si tienes alguna pregunta o comentario, por favor no dudes en contactar con "
538
  "nosotros."
539
 
540
- #: includes/admin/class-wpglobus-customize-options.php:1367,
541
- #: includes/options/class-wpglobus-options.php:652
542
  msgid "Sincerely Yours,"
543
  msgstr "Sinceramente tuyo,"
544
 
545
- #: includes/admin/class-wpglobus-customize-options.php:1369,
546
- #: includes/options/class-wpglobus-options.php:654,
547
- #: includes/options/wpglobus-options-header.php:34
548
  msgid "The WPGlobus Team"
549
  msgstr "El Equipo WPGlobus"
550
 
551
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
552
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
553
- #: includes/admin/class-wpglobus-customize-options.php:1388,
554
- #: includes/options/class-wpglobus-options.php:689
555
  msgid ""
556
  "We would hate to see you go. If something goes wrong, do not uninstall "
557
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
558
  msgstr ""
559
 
560
- #: includes/admin/class-wpglobus-customize-options.php:1395,
561
- #: includes/options/class-wpglobus-options.php:696
562
  msgid ""
563
  "Please note that if you deactivate WPGlobus, your site will show all the "
564
  "languages together, mixed up. You will need to remove all translations, "
@@ -567,8 +415,6 @@ msgstr ""
567
 
568
  #. translators: %s: link to the Clean-up Tool
569
  #. translators: %s: link to the Clean-up Tool.
570
- #: includes/admin/class-wpglobus-customize-options.php:1400,
571
- #: includes/options/class-wpglobus-options.php:700
572
  msgid ""
573
  "If there are just a few places, you should edit them manually. To "
574
  "automatically remove all translations at once, you can use the %s. WARNING: "
@@ -578,410 +424,305 @@ msgstr ""
578
 
579
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
580
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
581
- #: includes/admin/class-wpglobus-customize-options.php:1403,
582
- #: includes/options/class-wpglobus-options.php:677
583
  msgid "%1$sClean-up Tool%2$s"
584
  msgstr ""
585
 
586
  #. translators: %s: name of current theme
587
- #: includes/admin/class-wpglobus-customize-options.php:1415
588
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
589
  msgstr ""
590
 
591
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
592
- #: includes/admin/class-wpglobus-customize-options.php:1421
593
  msgid "Please use %1$sWPGlobus options page%2$s instead."
594
  msgstr ""
595
 
596
- #: includes/admin/class-wpglobus-customize-options.php:1485
597
  msgid "Expand/Shrink"
598
  msgstr ""
599
 
600
- #: includes/admin/class-wpglobus-dashboard-news.php:43,
601
- #: includes/admin/class-wpglobus-dashboard-news.php:59
602
  msgid "WPGlobus News"
603
  msgstr ""
604
 
605
- #: includes/admin/class-wpglobus-language-edit.php:197,
606
- #: includes/admin/class-wpglobus-language-edit.php:192
607
  msgid "Options updated"
608
  msgstr "Opciones actualizadas"
609
 
610
- #: includes/admin/class-wpglobus-language-edit.php:272
611
  msgid "Please enter a language code!"
612
  msgstr "Por favor, introduce el código del idioma!"
613
 
614
- #: includes/admin/class-wpglobus-language-edit.php:276
615
  msgid "Language code already exists!"
616
  msgstr "Este código de idioma ya existe!"
617
 
618
- #: includes/admin/class-wpglobus-language-edit.php:280
619
  msgid "Please specify the language flag!"
620
  msgstr "Por favor, especifica la bandera del idioma !"
621
 
622
- #: includes/admin/class-wpglobus-language-edit.php:284
623
  msgid "Please enter the language name!"
624
  msgstr "Por favor introduce el nombre del idioma!"
625
 
626
- #: includes/admin/class-wpglobus-language-edit.php:288
627
  msgid "Please enter the language name in English!"
628
  msgstr "Por favor introduce el nombre del idioma en Inglés!"
629
 
630
- #: includes/admin/class-wpglobus-language-edit.php:292
631
  msgid "Please enter the locale!"
632
  msgstr "Por favor introduce la localización!"
633
 
634
- #: includes/admin/class-wpglobus-language-edit.php:354
635
  msgid "Add Language"
636
  msgstr "Añadir Idioma"
637
 
638
- #: includes/admin/class-wpglobus-language-edit.php:351,
639
- #: includes/admin/class-wpglobus-language-edit.php:462,
640
- #: includes/admin/class-wpglobus-language-edit.php:455
641
  msgid "Delete Language"
642
  msgstr "Eliminar Idioma"
643
 
644
- #: includes/admin/class-wpglobus-language-edit.php:349
645
  msgid "Edit Language"
646
  msgstr "Editar Idioma"
647
 
648
- #: includes/admin/class-wpglobus-language-edit.php:384
649
  msgid "Language Code"
650
  msgstr "Código del Idioma"
651
 
652
- #: includes/admin/class-wpglobus-language-edit.php:391
653
  msgid ""
654
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
655
  msgstr ""
656
  "2-Carta de códigos de idioma ISO para el idioma que deseas insertar. "
657
  "(Ejemplo : en)"
658
 
659
- #: includes/admin/class-wpglobus-language-edit.php:396
660
  msgid "Language flag"
661
  msgstr "Bandera del idioma"
662
 
663
- #: includes/admin/class-wpglobus-language-edit.php:412
664
  msgid "Name"
665
  msgstr "Nombre"
666
 
667
- #: includes/admin/class-wpglobus-language-edit.php:417
668
  msgid ""
669
  "The name of the language in its native alphabet. (Examples: English, Русский)"
670
  msgstr ""
671
  "El nombre de la lengua en su alfabeto nativo. (Ejemplos : Español, English, "
672
  "Русский )"
673
 
674
- #: includes/admin/class-wpglobus-language-edit.php:422
675
  msgid "Name in English"
676
  msgstr "Nombre en Inglés"
677
 
678
- #: includes/admin/class-wpglobus-language-edit.php:427
679
  msgid "The name of the language in English"
680
  msgstr "El nombre del idioma en Inglés"
681
 
682
- #: includes/admin/class-wpglobus-language-edit.php:432,
683
- #: includes/options/fields/table/class-wpglobus-languages-table.php:115
684
  msgid "Locale"
685
  msgstr "Local"
686
 
687
- #: includes/admin/class-wpglobus-language-edit.php:437
688
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
689
  msgstr ""
690
  "PHP / WordPress configuración regional de la lengua . (Ejemplos : en_US, "
691
  "es_ES, ru_RU)"
692
 
693
- #: includes/admin/class-wpglobus-language-edit.php:460
694
  msgid "Are you sure you want to delete?"
695
  msgstr "Estás seguro de que quieres borrarlo?"
696
 
697
- #: includes/admin/class-wpglobus-language-edit.php:447
698
  msgid "Save Changes"
699
  msgstr "Guardar Cambios"
700
 
701
- #: includes/admin/class-wpglobus-language-edit.php:470
702
  msgid "Back to the WPGlobus Settings"
703
  msgstr "Volver a Ajustes WPGlobus"
704
 
705
- #: includes/admin/class-wpglobus-plugin-install.php:308
706
  msgid "Current Version"
707
  msgstr "Versión Actual"
708
 
709
- #: includes/admin/class-wpglobus-plugin-install.php:309
710
  msgid "Get it now!"
711
  msgstr ""
712
 
713
- #: includes/admin/class-wpglobus-plugin-install.php:310
714
  msgid "Premium add-on"
715
  msgstr ""
716
 
717
- #: includes/admin/class-wpglobus-plugin-install.php:311,
718
- #: includes/options/fields/table/class-wpglobus-languages-table.php:472
719
  msgid "Installed"
720
  msgstr "Instalado"
721
 
722
  #. translators: placeholders are for the HTML tags.
723
- #: includes/admin/class-wpglobus-plugin-install.php:319
724
  msgid ""
725
  "If you have already purchased a WPGlobus premium extension, please read "
726
  "%1$sthe installation instructions here%2$s"
727
  msgstr ""
728
 
729
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:103,
730
- #: includes/options/class-wpglobus-options.php:726
731
  msgid "Help Desk"
732
  msgstr ""
733
 
734
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:185
735
  msgid "Email not sent. Please fill in the entire form."
736
  msgstr ""
737
 
738
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:195
739
  msgid ""
740
  "Email not sent. Please verify that your name and email are entered correctly."
741
  msgstr ""
742
 
743
- #: includes/admin/helpdesk/class-wpglobus-admin-helpdesk.php:216
744
  msgid "Email sent."
745
  msgstr ""
746
 
747
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:68
748
  msgid "Thank you for using WPGlobus!"
749
  msgstr ""
750
 
751
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:69
752
  msgid "Our Support Team is here to answer your questions or concerns."
753
  msgstr ""
754
 
755
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:71
756
  msgid "To help us serve you better:"
757
  msgstr ""
758
 
759
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:73
760
  msgid ""
761
  "Please check if the problem persists if you switch to a standard WordPress "
762
  "theme."
763
  msgstr ""
764
 
765
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:74
766
  msgid ""
767
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
768
  msgstr ""
769
 
770
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:77
771
  msgid "Please fill in and submit the contact form:"
772
  msgstr ""
773
 
774
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:97
775
  msgid "Please make sure the email address is correct."
776
  msgstr ""
777
 
778
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:103
779
  msgid "Subject"
780
  msgstr "Asunto"
781
 
782
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:108
783
  msgid "Short description of the problem"
784
  msgstr ""
785
 
786
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:113
787
  msgid "Detailed description"
788
  msgstr ""
789
 
790
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:120
791
  msgid "Technical Information"
792
  msgstr ""
793
 
794
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:127
795
  msgid "This information helps us to find the problem source"
796
  msgstr ""
797
 
798
- #: includes/admin/helpdesk/wpglobus-admin-helpdesk-page.php:161
799
  msgid ""
800
  "Alternatively, please email %s. Do not forget to copy and paste the "
801
  "technical information to your email message."
802
  msgstr ""
803
 
804
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:89
805
  msgid "WPGlobus Recommends:"
806
  msgstr ""
807
 
808
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:98,
809
- #: includes/options/class-wpglobus-options.php:933
810
  msgid "WPGlobus for WooCommerce"
811
  msgstr ""
812
 
813
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:102
814
  msgid ""
815
  "Translate product titles and descriptions, product categories, tags and "
816
  "attributes."
817
  msgstr ""
818
 
819
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:107
820
  msgid "Get it now:"
821
  msgstr ""
822
 
823
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:117
824
  msgid "WooCommerce Multi-Currency"
825
  msgstr ""
826
 
827
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:121
828
  msgid "Accept multiple currencies in your online store!"
829
  msgstr ""
830
 
831
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:126,
832
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:185
833
  msgid "Check it out:"
834
  msgstr ""
835
 
836
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:195
837
  msgid "To translate permalinks, please activate the module Slug."
838
  msgstr ""
839
 
840
- #: includes/admin/recommendations/class-wpglobus-admin-recommendations.php:183
841
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
842
  msgstr ""
843
 
844
- #: includes/builders/class-wpglobus-builder.php:278,
845
- #: includes/class-wpglobus.php:3577
846
  msgid "Save draft before using extra language."
847
  msgstr ""
848
 
849
- #: includes/builders/class-wpglobus-builder.php:371
850
  msgid "Builder"
851
  msgstr ""
852
 
853
- #: includes/builders/class-wpglobus-builder.php:395
854
  msgid "Сompatibility Settings"
855
  msgstr ""
856
 
857
  #. translators: ON/OFF status of WPGlobus on the edit pages.
858
  #. translators: ON/OFF status of WPGlobus on the edit pages.
859
- #: includes/builders/elementor/class-wpglobus-elementor.php:255,
860
- #: includes/class-wpglobus.php:1263
861
  msgid "ON"
862
  msgstr "ON"
863
 
864
- #: includes/builders/elementor/class-wpglobus-elementor.php:256,
865
- #: includes/class-wpglobus.php:1264
866
  msgid "Turn off"
867
  msgstr ""
868
 
869
- #: includes/builders/elementor/class-wpglobus-elementor.php:250,
870
- #: includes/class-wpglobus.php:1258
871
  msgid "OFF"
872
  msgstr "APAGADO"
873
 
874
- #: includes/builders/elementor/class-wpglobus-elementor.php:251,
875
- #: includes/class-wpglobus.php:1259
876
  msgid "Turn on"
877
  msgstr ""
878
 
879
- #: includes/builders/elementor/class-wpglobus-elementor.php:281
880
  msgid "Elementor"
881
  msgstr ""
882
 
883
- #: includes/builders/elementor/class-wpglobus-elementor.php:508
884
  msgid "WPGlobus languages"
885
  msgstr ""
886
 
887
- #: includes/builders/elementor/class-wpglobus-elementor.php:514
888
  msgid "current"
889
  msgstr ""
890
 
891
- #: includes/builders/elementor/class-wpglobus-elementor.php:675
892
  msgid ""
893
  "WPGlobus provides multilingual support for Elementor only when the option "
894
  "%1$s%2$s%3$s is set to %4$s."
895
  msgstr ""
896
 
897
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:228
898
  msgid "Before switching the language, please save draft or publish."
899
  msgstr ""
900
 
901
  #. translators: Metabox title FOR language.
902
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:318
903
  msgctxt "filter__seo_meta_box_title"
904
  msgid "for"
905
  msgstr ""
906
 
907
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:392
908
  msgid "Page is being reloaded. Please wait..."
909
  msgstr ""
910
 
911
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:393
912
  msgid ""
913
  "Before switching the language, please save draft or publish, then reload "
914
  "page."
915
  msgstr ""
916
 
917
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:438
918
  msgid ""
919
  "WPGlobus provides multilingual support for Elementor only when the option "
920
  "`CSS Print Method` is set to `External File`."
921
  msgstr ""
922
 
923
- #: includes/builders/gutenberg/class-wpglobus-gutenberg.php:439
924
  msgid "Open Elementor Settings page"
925
  msgstr ""
926
 
927
- #: includes/class-wpglobus-widget.php:27
928
  msgid "WPGlobus widget"
929
  msgstr "WPGlobus widget"
930
 
931
- #: includes/class-wpglobus-widget.php:29
932
  msgid "Add language switcher"
933
  msgstr "Añadir selector de idiomas"
934
 
935
- #: includes/class-wpglobus-widget.php:32
936
  msgid "Flags"
937
  msgstr "Banderas"
938
 
939
- #: includes/class-wpglobus-widget.php:33
940
  msgid "List"
941
  msgstr "Lista"
942
 
943
- #: includes/class-wpglobus-widget.php:34
944
  msgid "List with flags"
945
  msgstr "Lista con Banderas"
946
 
947
- #: includes/class-wpglobus-widget.php:35
948
  msgid "Select"
949
  msgstr "Seleccionar"
950
 
951
- #: includes/class-wpglobus-widget.php:36
952
  msgid "Select with language code"
953
  msgstr "Seleccionar con el código de idioma"
954
 
955
- #: includes/class-wpglobus-widget.php:37
956
  msgid "Dropdown"
957
  msgstr "Desplegable"
958
 
959
- #: includes/class-wpglobus-widget.php:38
960
  msgid "Dropdown with flags"
961
  msgstr "Desplegable con banderas"
962
 
963
- #: includes/class-wpglobus-widget.php:264
964
  msgid "Selector type"
965
  msgstr "Tipo de selector"
966
 
967
- #: includes/class-wpglobus.php:1447
968
  msgid "You cannot disable the main language."
969
  msgstr "No se puede desactivar el idioma principal."
970
 
971
- #: includes/class-wpglobus.php:1672
972
  msgid "Need a multilingual slug?"
973
  msgstr ""
974
 
975
- #: includes/class-wpglobus.php:1655
976
  msgid "*) Available after the menu is saved."
977
  msgstr "No Se Puede Desactivar el director idioma."
978
 
979
- #: includes/class-wpglobus.php:4025
980
  msgid "You must enable Pretty Permalinks to use WPGlobus."
981
  msgstr ""
982
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
983
 
984
- #: includes/class-wpglobus.php:4027
985
  msgid ""
986
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
987
  "default option."
@@ -989,193 +730,150 @@ msgstr ""
989
  "Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
990
  "selecciona una opción no predeterminada ."
991
 
992
- #: includes/options/class-wpglobus-options.php:281
993
  msgid "Language Selector Menu Style"
994
  msgstr ""
995
 
996
- #: includes/options/class-wpglobus-options.php:282,
997
- #: includes/options/class-wpglobus-options.php:802,
998
- #: includes/options/class-wpglobus-options.php:871
999
  msgid "WPGlobus Plus"
1000
  msgstr ""
1001
 
1002
- #: includes/options/class-wpglobus-options.php:283
1003
  msgid "Drop-down languages menu or Flat (in one line)"
1004
  msgstr ""
1005
 
1006
- #: includes/options/class-wpglobus-options.php:286
1007
  msgid "Do not change"
1008
  msgstr ""
1009
 
1010
- #: includes/options/class-wpglobus-options.php:287
1011
  msgid "Drop-down (vertical)"
1012
  msgstr ""
1013
 
1014
- #: includes/options/class-wpglobus-options.php:288
1015
  msgid "Flat (horizontal)"
1016
  msgstr ""
1017
 
1018
- #: includes/options/class-wpglobus-options.php:343
1019
  msgid ""
1020
  "If you see this message then your browser may not display the WPGlobus "
1021
  "Settings panel properly. Please try another browser."
1022
  msgstr ""
1023
 
1024
- #: includes/options/class-wpglobus-options.php:599,
1025
- #: includes/options/class-wpglobus-options.php:1577
1026
  msgid "Сompatibility"
1027
  msgstr ""
1028
 
1029
  #. translators: placeholders for "strong" tags.
1030
- #: includes/options/class-wpglobus-options.php:616
1031
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
1032
  msgstr ""
1033
 
1034
  #. translators: placeholders for "strong" tags.
1035
- #: includes/options/class-wpglobus-options.php:619
1036
  msgid ""
1037
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
1038
  "the language attributes: name, code, flag icon, etc."
1039
  msgstr ""
1040
 
1041
- #: includes/options/class-wpglobus-options.php:622
1042
  msgid "Important notes"
1043
  msgstr "Notas importantes"
1044
 
1045
  #. translators: placeholders for "strong" tags.
1046
- #: includes/options/class-wpglobus-options.php:624
1047
  msgid "Version %1$s1.9.17%2$s "
1048
  msgstr ""
1049
 
1050
  #. translators: placeholders for "strong" tags.
1051
- #: includes/options/class-wpglobus-options.php:627
1052
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
1053
  msgstr ""
1054
 
1055
  #. translators: placeholders for "strong" tags; compatibility tab link.
1056
- #: includes/options/class-wpglobus-options.php:630
1057
  msgid ""
1058
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
1059
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
1060
  msgstr ""
1061
 
1062
  #. translators: placeholders for "strong" tags; compatibility tab link.
1063
- #: includes/options/class-wpglobus-options.php:633
1064
  msgid ""
1065
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
1066
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
1067
  msgstr ""
1068
 
1069
  #. translators: placeholders for "strong" tags.
1070
- #: includes/options/class-wpglobus-options.php:637
1071
  msgid "Version %1$s2.2.11%2$s "
1072
  msgstr ""
1073
 
1074
- #: includes/options/class-wpglobus-options.php:639
1075
  msgid "Starting from this version"
1076
  msgstr ""
1077
 
1078
  #. translators: placeholders for "strong" tags.
1079
- #: includes/options/class-wpglobus-options.php:642
1080
  msgid ""
1081
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
1082
  "(CPT)."
1083
  msgstr ""
1084
 
1085
  #. translators: placeholders for "strong" tags.
1086
- #: includes/options/class-wpglobus-options.php:645
1087
  msgid ""
1088
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
1089
  "the %1$s[%3$s]%2$s tab."
1090
  msgstr ""
1091
 
1092
- #: includes/options/class-wpglobus-options.php:662
1093
  msgid "Welcome!"
1094
  msgstr "Bienvenido!"
1095
 
1096
- #: includes/options/class-wpglobus-options.php:685
1097
  msgid "Deactivating / Uninstalling"
1098
  msgstr ""
1099
 
1100
- #: includes/options/class-wpglobus-options.php:711
1101
  msgid "Uninstall"
1102
  msgstr "Desinstalar"
1103
 
1104
- #: includes/options/class-wpglobus-options.php:741
1105
  msgid "All add-ons"
1106
  msgstr ""
1107
 
1108
- #: includes/options/class-wpglobus-options.php:756
1109
  msgid "Mobile Menu"
1110
  msgstr ""
1111
 
1112
- #: includes/options/class-wpglobus-options.php:771
1113
  msgid "Language Widgets"
1114
  msgstr ""
1115
 
1116
- #: includes/options/class-wpglobus-options.php:841
1117
  msgid "We Recommend..."
1118
  msgstr ""
1119
 
1120
- #: includes/options/class-wpglobus-options.php:873
1121
  msgid ""
1122
  "Our premium add-on, WPGlobus Plus, will add several features to your "
1123
  "website, such as:"
1124
  msgstr ""
1125
 
1126
- #: includes/options/class-wpglobus-options.php:876
1127
  msgid ""
1128
  "- Ability to write a post in one language and immediately publish it, not "
1129
  "waiting for the translation to other languages;"
1130
  msgstr ""
1131
 
1132
- #: includes/options/class-wpglobus-options.php:879
1133
  msgid "- Set different URLs for each translation;"
1134
  msgstr ""
1135
 
1136
- #: includes/options/class-wpglobus-options.php:882
1137
  msgid ""
1138
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
1139
  "for each translation;"
1140
  msgstr ""
1141
 
1142
- #: includes/options/class-wpglobus-options.php:885
1143
  msgid "- and more..."
1144
  msgstr ""
1145
 
1146
- #: includes/options/class-wpglobus-options.php:888,
1147
- #: includes/options/class-wpglobus-options.php:945,
1148
- #: includes/options/class-wpglobus-options.php:1003
1149
  msgid "Click here to download"
1150
  msgstr ""
1151
 
1152
- #: includes/options/class-wpglobus-options.php:936
1153
  msgid ""
1154
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
1155
  "translate your blog posts and pages to many languages."
1156
  msgstr ""
1157
 
1158
- #: includes/options/class-wpglobus-options.php:939
1159
  msgid "The next step is to translate your WooCommerce-based store!"
1160
  msgstr ""
1161
 
1162
- #: includes/options/class-wpglobus-options.php:942
1163
  msgid ""
1164
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
1165
  "translate product titles and descriptions, categories, tags and attributes."
1166
  msgstr ""
1167
 
1168
- #: includes/options/class-wpglobus-options.php:989
1169
  msgid "Multi-currency"
1170
  msgstr ""
1171
 
1172
- #: includes/options/class-wpglobus-options.php:992
1173
  msgid ""
1174
  "Your WooCommerce-powered store is set to show prices and accept payments in "
1175
  "a single currency only."
1176
  msgstr ""
1177
 
1178
- #: includes/options/class-wpglobus-options.php:996
1179
  msgid ""
1180
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
1181
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
@@ -1183,488 +881,370 @@ msgid ""
1183
  "positioning for global growth!"
1184
  msgstr ""
1185
 
1186
- #: includes/options/class-wpglobus-options.php:1000
1187
  msgid ""
1188
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
1189
  "re-calculating prices on-the-fly."
1190
  msgstr ""
1191
 
1192
- #: includes/options/class-wpglobus-options.php:1037
1193
  msgid "WPGlobus Premium Add-ons"
1194
  msgstr ""
1195
 
1196
- #: includes/options/class-wpglobus-options.php:1039
1197
  msgid ""
1198
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
1199
  "you will be able to:"
1200
  msgstr ""
1201
 
1202
- #: includes/options/class-wpglobus-options.php:1044
1203
  msgid ""
1204
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
1205
  "моя-страница and so on);"
1206
  msgstr ""
1207
 
1208
- #: includes/options/class-wpglobus-options.php:1047
1209
  msgid ""
1210
  "Postpone translation to some languages and <strong>publish only the "
1211
  "translated texts</strong>;"
1212
  msgstr ""
1213
 
1214
- #: includes/options/class-wpglobus-options.php:1050
1215
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
1216
  msgstr ""
1217
 
1218
- #: includes/options/class-wpglobus-options.php:1053
1219
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
1220
  msgstr ""
1221
 
1222
- #: includes/options/class-wpglobus-options.php:1056
1223
  msgid ""
1224
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
1225
  "strong>;"
1226
  msgstr ""
1227
 
1228
- #: includes/options/class-wpglobus-options.php:1060
1229
  msgid "...and more."
1230
  msgstr ""
1231
 
1232
- #: includes/options/class-wpglobus-options.php:1063
1233
  msgid "Click here to visit the WPGlobus Store"
1234
  msgstr ""
1235
 
1236
- #: includes/options/class-wpglobus-options.php:1104
1237
  msgid "Select a language"
1238
  msgstr "Seleccionar un idioma"
1239
 
1240
  #. translators: %3$s placeholder for the icon (actual picture).
1241
- #: includes/options/class-wpglobus-options.php:1133
1242
  msgid ""
1243
  "Place the %1$smain language%2$s of your site at the top of the list by "
1244
  "dragging the %3$s icons."
1245
  msgstr ""
1246
 
1247
  #. translators: placeholders for the "strong" HTML tags.
1248
- #: includes/options/class-wpglobus-options.php:1136
1249
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
1250
  msgstr ""
1251
 
1252
  #. translators: placeholders for the "strong" HTML tags.
1253
- #: includes/options/class-wpglobus-options.php:1139
1254
  msgid "%1$sAdd%2$s more languages using the section below."
1255
  msgstr ""
1256
 
1257
- #: includes/options/class-wpglobus-options.php:1140
1258
  msgid "When done, click the [Save Changes] button."
1259
  msgstr "Cuando hayas terminado, haz clic en el botón [Guardar Cambios] ."
1260
 
1261
  #. translators: %s - placeholder for the "Save Changes" button text.
1262
- #: includes/options/class-wpglobus-options.php:1151
1263
  msgid "Press the %s button to confirm."
1264
  msgstr ""
1265
 
1266
 
16
  "Content-Transfer-Encoding: 8bit\n"
17
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
18
 
 
 
 
 
 
19
  msgid "Guide"
20
  msgstr "Guía"
21
 
 
 
22
  msgid "WPGlobus Help Desk"
23
  msgstr ""
24
 
 
 
 
 
 
 
 
25
  msgid "Add-ons"
26
  msgstr "Complementos"
27
 
 
28
  msgid "Quick Start"
29
  msgstr "Inicio Rápido"
30
 
 
 
31
  msgid "FAQ"
32
  msgstr "FAQ"
33
 
 
34
  msgid ""
35
  "Attention: the Multibyte String PHP extension (`mbstring`) is not loaded!"
36
  msgstr ""
37
 
 
38
  msgid ""
39
  "The mbstring extension is required for the full UTF-8 compatibility and "
40
  "better performance. Without it, some parts of WordPress and WPGlobus may "
42
  "administrator."
43
  msgstr ""
44
 
 
45
  msgid "Go to WPGlobus Settings"
46
  msgstr "Ir a Ajustes WPGlobus"
47
 
 
48
  msgid "Easy as 1-2-3:"
49
  msgstr "Fácil en 1-2-3:"
50
 
 
51
  msgid "Go to WPGlobus admin menu and choose the countries / languages;"
52
  msgstr "Ve al menú de administración WPGlobus y elege los países/idiomas;"
53
 
 
54
  msgid ""
55
  "Enter the translations to the posts, pages, categories, tags and menus using "
56
  "a clean and simple interface."
58
  "Introduce las traducciones a los mensajes, páginas, categorías,etiquetas y "
59
  "menús usando una interfaz limpia y simple."
60
 
 
61
  msgid ""
62
  "Switch languages at the front-end using a drop-down menu with language names "
63
  "and country flags."
65
  "Cambia de idioma en el front-end utilizando un menú desplegable con los "
66
  "nombres de las lenguas y banderas de los países ."
67
 
 
68
  msgid "Links:"
69
  msgstr "Enlaces:"
70
 
 
71
  msgid "FAQs"
72
  msgstr "Preguntas Frecuentes"
73
 
 
74
  msgid "Contact Us"
75
  msgstr "Contáctanos"
76
 
 
77
  msgid "Please give us 5 stars!"
78
  msgstr "Por favor danos 5 estrellas!"
79
 
 
80
  msgid "WPGlobus does not translate texts automatically!"
81
  msgstr ""
82
 
 
83
  msgid ""
84
  "There are many translation companies and individual translators who can help "
85
  "you write and proofread the texts."
86
  msgstr ""
87
 
 
88
  msgid ""
89
  "When you choose a translator, please look at their native language, country "
90
  "of residence, specialization and knowledge of WordPress."
91
  msgstr ""
92
 
93
  #. translators: %s are used to insert HTML link. Keep them in place.
 
94
  msgid ""
95
  "We are planning to maintain a %s list of translators %s on the WPGlobus "
96
  "website. This is not an endorsement, just a courtesy. Please contact them "
97
  "directly and let us know how did it work for you!"
98
  msgstr ""
99
 
 
100
  msgid "Important notes:"
101
  msgstr ""
102
 
 
103
  msgid ""
104
  "WPGlobus only supports the localization URLs in the form of <code>example."
105
  "com/xx/page/</code>. We do not plan to support subdomains <code>xx.example."
110
  "subdominios <code>example.com</code> ni consultas lingüísticas <code>example."
111
  "com?lang=xx</code>."
112
 
 
113
  msgid "Some themes and plugins are <strong>not multilingual-ready</strong>."
114
  msgstr ""
115
  "En algunos temas y plugins <strong>No está listo el multilenguaje</strong>."
116
 
 
117
  msgid ""
118
  "They might display some texts with no translation, or with all languages "
119
  "mixed together."
122
  "mezclados entre sí."
123
 
124
  #. translators: %s are used to insert HTML link. Keep them in place.
 
125
  msgid ""
126
  "Please contact the theme / plugin author. If they are unable to assist, "
127
  "consider %s hiring the WPGlobus Team %s to write a custom code for you."
130
  "ayudarte, considera % s la contratación del WPGlobus % s para escribir un "
131
  "código personalizado para tí."
132
 
 
133
  msgid "Language was set on your profile page"
134
  msgstr ""
135
 
 
136
  msgid "Add"
137
  msgstr "Añadir"
138
 
 
 
139
  msgid "Multilingual Everything!"
140
  msgstr "Multilenguaje Total!"
141
 
 
 
142
  msgid ""
143
  "WPGlobus is a family of WordPress plugins assisting you in making "
144
  "multilingual WordPress blogs and sites."
146
  "WPGlobus es una familia de plugins de WordPress que ayudan en la traducción "
147
  "de blogs de WordPress."
148
 
 
149
  msgid "Remove the WPGlobus settings (not recommended)"
150
  msgstr ""
151
 
 
152
  msgid "Clean-up Tool"
153
  msgstr ""
154
 
 
155
  msgid "Support"
156
  msgstr "Soporte"
157
 
 
158
  msgid ""
159
  "WARNING: this operation is non-reversible. It is strongly recommended that "
160
  "you backup your database before proceeding."
161
  msgstr ""
162
 
 
163
  msgid ""
164
  "This tool should be used only if you plan to completely uninstall WPGlobus. "
165
  "By running it, you will remove ALL translations you have entered to your "
169
  "so on."
170
  msgstr ""
171
 
 
172
  msgid ""
173
  "Make sure that your active theme does not have any code related to WPGlobus. "
174
  "Such code could be added by you or by a 3rd party developer. If that code "
177
  msgstr ""
178
 
179
  #. translators: %1$s - language name, %2$s - language code. Do not remove.
 
180
  msgid ""
181
  "The main language is currently set to %1$s (%2$s). ALL TEXTS THAT ARE NOT IN "
182
  "%1$s WILL BE DELETED! To change the main language, please go to {{settings}}."
183
  msgstr ""
184
 
 
185
  msgid "You are about to clean the content of the following database tables:"
186
  msgstr ""
187
 
 
188
  msgid "The operations log"
189
  msgstr ""
190
 
 
191
  msgid ""
192
  "We are going to write a detailed log of all the database changes performed. "
193
  "It should help in the case you need to restore something important. The log "
194
  "will be written to the file:"
195
  msgstr ""
196
 
 
197
  msgid ""
198
  "Uncheck if you do not want to write the operations log (we recommend to keep "
199
  "it checked)"
200
  msgstr ""
201
 
 
202
  msgid "You have been warned..."
203
  msgstr ""
204
 
 
205
  msgid "Please confirm by checking the box below:"
206
  msgstr ""
207
 
 
208
  msgid ""
209
  "I have read and understood everything written on this page. I am aware that "
210
  "by using this tool I may loose some content of my website. I have made a "
212
  "responsible for the results."
213
  msgstr ""
214
 
 
215
  msgid "YES, I CONFIRM"
216
  msgstr ""
217
 
 
218
  msgid "Process with the Clean-up"
219
  msgstr ""
220
 
 
 
 
 
221
  msgid "Default"
222
  msgstr "Predefinido"
223
 
 
224
  msgid "Section"
225
  msgstr ""
226
 
 
227
  msgid "Show all sections"
228
  msgstr ""
229
 
 
230
  msgid "Save &amp; Reload"
231
  msgstr ""
232
 
 
 
 
233
  msgid "WPGlobus"
234
  msgstr ""
235
 
 
236
  msgid ""
237
  "You need to update WordPress to 4.5 or later to get Fields Settings section"
238
  msgstr ""
239
 
 
240
  msgid "Fields Settings"
241
  msgstr ""
242
 
 
243
  msgid "WPGlobus Settings"
244
  msgstr ""
245
 
 
246
  msgid "Help"
247
  msgstr "Ayuda"
248
 
 
 
249
  msgid "Languages"
250
  msgstr "Idiomas"
251
 
 
 
252
  msgid "Enabled Languages"
253
  msgstr "Idiomas Habilitados"
254
 
 
 
255
  msgid "These languages are currently enabled on your site."
256
  msgstr "Estos idiomas están habilitados actualmente en su sitio."
257
 
 
 
258
  msgid "Choose a language you would like to enable."
259
  msgstr ""
260
 
 
261
  msgid "Press the [Save & Publish] button to confirm."
262
  msgstr ""
263
 
264
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'
265
  #. translators: %1$s and %2$s - placeholders to insert HTML link around 'here'.
 
 
266
  msgid "or Add new Language %1$s here %2$s"
267
  msgstr ""
268
 
 
 
269
  msgid "Add Languages"
270
  msgstr "Añadir idioma"
271
 
 
 
272
  msgid "Language Selector Mode"
273
  msgstr "Modo Selector de Idioma"
274
 
 
 
275
  msgid "Two-letter Code with flag (en, ru, it, etc.)"
276
  msgstr "Código de la bandera en dos letras (es, en, ru, it, etc.)"
277
 
 
 
278
  msgid "Full Name (English, Russian, Italian, etc.)"
279
  msgstr "Nombre completo (Español, English, Russian, Italian, etc.)"
280
 
 
 
281
  msgid "Full Name with flag (English, Russian, Italian, etc.)"
282
  msgstr "Nombre completo con bandera (Español, English, Russian, Italian, etc.)"
283
 
 
 
284
  msgid "Flags only"
285
  msgstr "Sólo banderas"
286
 
 
 
287
  msgid ""
288
  "Choose the way language name and country flag are shown in the drop-down menu"
289
  msgstr ""
290
  "Elige el nombre del idioma y bandera del país se muestran en el menú "
291
  "desplegable"
292
 
 
293
  msgid "select navigation menu"
294
  msgstr ""
295
 
 
 
 
296
  msgid "Language Selector Menu"
297
  msgstr "Menú selector de idioma"
298
 
 
 
 
299
  msgid "Choose the navigation menu where the language selector will be shown"
300
  msgstr ""
301
  "Selecciona el menú de navegación donde se mostrará el selector de idioma"
302
 
 
303
  msgid "No menus have been created yet. Create some."
304
  msgstr ""
305
 
 
 
306
  msgid "\"All Pages\" menus Language selector"
307
  msgstr "\"Todas las páginas\" Selector de menús Idioma"
308
 
 
 
309
  msgid ""
310
  "Adds language selector to the menus that automatically list all existing "
311
  "pages (using `wp_list_pages`)"
314
  "automáticamente en todas las páginas existentes (utilizando ` "
315
  "wp_list_pages` )"
316
 
 
 
317
  msgid "Custom CSS"
318
  msgstr "Customizar CSS"
319
 
 
320
  msgid ""
321
  "Here you can enter the CSS rules to adjust the language selector menu for "
322
  "your theme. Look at the examples in the `style-samples.css` file."
324
  "Aquí puedes introducir las reglas CSS para ajustar el menú de selección de "
325
  "idiomas para tu tema. Mira los ejemplos en el `style-samples.css` file."
326
 
 
327
  msgid "Post types"
328
  msgstr "Tipos de Post"
329
 
 
330
  msgid "Uncheck to disable WPGlobus"
331
  msgstr "Desactiva la opción para desactivar WPGlobus"
332
 
 
 
333
  msgid "Redirect"
334
  msgstr "Redirección"
335
 
 
 
336
  msgid "Choose the language automatically, based on:"
337
  msgstr ""
338
 
 
 
339
  msgid "Preferred language set in the browser"
340
  msgstr ""
341
 
 
 
342
  msgid ""
343
  "When a user comes to the site for the first time, try to find the best "
344
  "matching language version of the page."
345
  msgstr ""
346
 
 
 
 
 
347
  msgid "Custom JS Code"
348
  msgstr ""
349
 
 
 
350
  msgid "Title"
351
  msgstr "Título"
352
 
 
353
  msgid "(Paste your JS code here.)"
354
  msgstr ""
355
 
 
356
  msgid ""
357
  "To add a Custom JS Code in Customizer, you need to upgrade WordPress to "
358
  "version 4.9 or later."
359
  msgstr ""
360
 
 
361
  msgid "With your version of WordPress, please use the"
362
  msgstr ""
363
 
 
364
  msgid "WPGlobus Settings page"
365
  msgstr ""
366
 
 
367
  msgid "Label"
368
  msgstr ""
369
 
 
370
  msgid "Description"
371
  msgstr "Decripción"
372
 
 
373
  msgid ""
374
  "Here you can specify which fields should be considered multilingual by "
375
  "WPGlobus. To exclude a field, uncheck it and then press the button below."
376
  msgstr ""
377
 
 
 
378
  msgid "Thank you for installing WPGlobus!"
379
  msgstr "Gracias por instalar WPGlobus!"
380
 
 
 
381
  msgid "Read About WPGlobus"
382
  msgstr "Leer sobre WPGlobus!"
383
 
 
384
  msgid ""
385
  "Click the <strong>[Languages]</strong> tab at the left to setup the options."
386
  msgstr ""
387
  "Click en la <strong>[Idiomas]</strong> pestaña en la parte izquierda de "
388
  "configuración de las opciones."
389
 
 
 
390
  msgid ""
391
  "Should you have any questions or comments, please do not hesitate to contact "
392
  "us."
394
  "Si tienes alguna pregunta o comentario, por favor no dudes en contactar con "
395
  "nosotros."
396
 
 
 
397
  msgid "Sincerely Yours,"
398
  msgstr "Sinceramente tuyo,"
399
 
 
 
 
400
  msgid "The WPGlobus Team"
401
  msgstr "El Equipo WPGlobus"
402
 
403
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
404
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
405
  msgid ""
406
  "We would hate to see you go. If something goes wrong, do not uninstall "
407
  "WPGlobus yet. Please %1$stalk to us%2$s and let us help!"
408
  msgstr ""
409
 
 
 
410
  msgid ""
411
  "Please note that if you deactivate WPGlobus, your site will show all the "
412
  "languages together, mixed up. You will need to remove all translations, "
415
 
416
  #. translators: %s: link to the Clean-up Tool
417
  #. translators: %s: link to the Clean-up Tool.
 
 
418
  msgid ""
419
  "If there are just a few places, you should edit them manually. To "
420
  "automatically remove all translations at once, you can use the %s. WARNING: "
424
 
425
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
426
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
 
427
  msgid "%1$sClean-up Tool%2$s"
428
  msgstr ""
429
 
430
  #. translators: %s: name of current theme
 
431
  msgid "Sorry, WPGlobus customizer doesn't support current theme %s."
432
  msgstr ""
433
 
434
  #. translators: %?$s: HTML codes for hyperlink. Do not remove.
 
435
  msgid "Please use %1$sWPGlobus options page%2$s instead."
436
  msgstr ""
437
 
 
438
  msgid "Expand/Shrink"
439
  msgstr ""
440
 
 
 
441
  msgid "WPGlobus News"
442
  msgstr ""
443
 
 
 
444
  msgid "Options updated"
445
  msgstr "Opciones actualizadas"
446
 
 
447
  msgid "Please enter a language code!"
448
  msgstr "Por favor, introduce el código del idioma!"
449
 
 
450
  msgid "Language code already exists!"
451
  msgstr "Este código de idioma ya existe!"
452
 
 
453
  msgid "Please specify the language flag!"
454
  msgstr "Por favor, especifica la bandera del idioma !"
455
 
 
456
  msgid "Please enter the language name!"
457
  msgstr "Por favor introduce el nombre del idioma!"
458
 
 
459
  msgid "Please enter the language name in English!"
460
  msgstr "Por favor introduce el nombre del idioma en Inglés!"
461
 
 
462
  msgid "Please enter the locale!"
463
  msgstr "Por favor introduce la localización!"
464
 
 
465
  msgid "Add Language"
466
  msgstr "Añadir Idioma"
467
 
 
 
 
468
  msgid "Delete Language"
469
  msgstr "Eliminar Idioma"
470
 
 
471
  msgid "Edit Language"
472
  msgstr "Editar Idioma"
473
 
 
474
  msgid "Language Code"
475
  msgstr "Código del Idioma"
476
 
 
477
  msgid ""
478
  "2-Letter ISO Language Code for the Language you want to insert. (Example: en)"
479
  msgstr ""
480
  "2-Carta de códigos de idioma ISO para el idioma que deseas insertar. "
481
  "(Ejemplo : en)"
482
 
 
483
  msgid "Language flag"
484
  msgstr "Bandera del idioma"
485
 
 
486
  msgid "Name"
487
  msgstr "Nombre"
488
 
 
489
  msgid ""
490
  "The name of the language in its native alphabet. (Examples: English, Русский)"
491
  msgstr ""
492
  "El nombre de la lengua en su alfabeto nativo. (Ejemplos : Español, English, "
493
  "Русский )"
494
 
 
495
  msgid "Name in English"
496
  msgstr "Nombre en Inglés"
497
 
 
498
  msgid "The name of the language in English"
499
  msgstr "El nombre del idioma en Inglés"
500
 
 
 
501
  msgid "Locale"
502
  msgstr "Local"
503
 
 
504
  msgid "PHP/WordPress Locale of the language. (Examples: en_US, ru_RU)"
505
  msgstr ""
506
  "PHP / WordPress configuración regional de la lengua . (Ejemplos : en_US, "
507
  "es_ES, ru_RU)"
508
 
 
509
  msgid "Are you sure you want to delete?"
510
  msgstr "Estás seguro de que quieres borrarlo?"
511
 
 
512
  msgid "Save Changes"
513
  msgstr "Guardar Cambios"
514
 
 
515
  msgid "Back to the WPGlobus Settings"
516
  msgstr "Volver a Ajustes WPGlobus"
517
 
 
518
  msgid "Current Version"
519
  msgstr "Versión Actual"
520
 
 
521
  msgid "Get it now!"
522
  msgstr ""
523
 
 
524
  msgid "Premium add-on"
525
  msgstr ""
526
 
 
 
527
  msgid "Installed"
528
  msgstr "Instalado"
529
 
530
  #. translators: placeholders are for the HTML tags.
 
531
  msgid ""
532
  "If you have already purchased a WPGlobus premium extension, please read "
533
  "%1$sthe installation instructions here%2$s"
534
  msgstr ""
535
 
 
 
536
  msgid "Help Desk"
537
  msgstr ""
538
 
 
539
  msgid "Email not sent. Please fill in the entire form."
540
  msgstr ""
541
 
 
542
  msgid ""
543
  "Email not sent. Please verify that your name and email are entered correctly."
544
  msgstr ""
545
 
 
546
  msgid "Email sent."
547
  msgstr ""
548
 
 
549
  msgid "Thank you for using WPGlobus!"
550
  msgstr ""
551
 
 
552
  msgid "Our Support Team is here to answer your questions or concerns."
553
  msgstr ""
554
 
 
555
  msgid "To help us serve you better:"
556
  msgstr ""
557
 
 
558
  msgid ""
559
  "Please check if the problem persists if you switch to a standard WordPress "
560
  "theme."
561
  msgstr ""
562
 
 
563
  msgid ""
564
  "Try deactivating other plugins to see if any of them conflicts with WPGlobus."
565
  msgstr ""
566
 
 
567
  msgid "Please fill in and submit the contact form:"
568
  msgstr ""
569
 
 
570
  msgid "Please make sure the email address is correct."
571
  msgstr ""
572
 
 
573
  msgid "Subject"
574
  msgstr "Asunto"
575
 
 
576
  msgid "Short description of the problem"
577
  msgstr ""
578
 
 
579
  msgid "Detailed description"
580
  msgstr ""
581
 
 
582
  msgid "Technical Information"
583
  msgstr ""
584
 
 
585
  msgid "This information helps us to find the problem source"
586
  msgstr ""
587
 
 
588
  msgid ""
589
  "Alternatively, please email %s. Do not forget to copy and paste the "
590
  "technical information to your email message."
591
  msgstr ""
592
 
 
593
  msgid "WPGlobus Recommends:"
594
  msgstr ""
595
 
 
 
596
  msgid "WPGlobus for WooCommerce"
597
  msgstr ""
598
 
 
599
  msgid ""
600
  "Translate product titles and descriptions, product categories, tags and "
601
  "attributes."
602
  msgstr ""
603
 
 
604
  msgid "Get it now:"
605
  msgstr ""
606
 
 
607
  msgid "WooCommerce Multi-Currency"
608
  msgstr ""
609
 
 
610
  msgid "Accept multiple currencies in your online store!"
611
  msgstr ""
612
 
 
 
613
  msgid "Check it out:"
614
  msgstr ""
615
 
 
616
  msgid "To translate permalinks, please activate the module Slug."
617
  msgstr ""
618
 
 
619
  msgid "Translate permalinks with our premium add-on, WPGlobus Plus!"
620
  msgstr ""
621
 
 
 
622
  msgid "Save draft before using extra language."
623
  msgstr ""
624
 
 
625
  msgid "Builder"
626
  msgstr ""
627
 
 
628
  msgid "Сompatibility Settings"
629
  msgstr ""
630
 
631
  #. translators: ON/OFF status of WPGlobus on the edit pages.
632
  #. translators: ON/OFF status of WPGlobus on the edit pages.
 
 
633
  msgid "ON"
634
  msgstr "ON"
635
 
 
 
636
  msgid "Turn off"
637
  msgstr ""
638
 
 
 
639
  msgid "OFF"
640
  msgstr "APAGADO"
641
 
 
 
642
  msgid "Turn on"
643
  msgstr ""
644
 
 
645
  msgid "Elementor"
646
  msgstr ""
647
 
 
648
  msgid "WPGlobus languages"
649
  msgstr ""
650
 
 
651
  msgid "current"
652
  msgstr ""
653
 
 
654
  msgid ""
655
  "WPGlobus provides multilingual support for Elementor only when the option "
656
  "%1$s%2$s%3$s is set to %4$s."
657
  msgstr ""
658
 
 
659
  msgid "Before switching the language, please save draft or publish."
660
  msgstr ""
661
 
662
  #. translators: Metabox title FOR language.
 
663
  msgctxt "filter__seo_meta_box_title"
664
  msgid "for"
665
  msgstr ""
666
 
 
667
  msgid "Page is being reloaded. Please wait..."
668
  msgstr ""
669
 
 
670
  msgid ""
671
  "Before switching the language, please save draft or publish, then reload "
672
  "page."
673
  msgstr ""
674
 
 
675
  msgid ""
676
  "WPGlobus provides multilingual support for Elementor only when the option "
677
  "`CSS Print Method` is set to `External File`."
678
  msgstr ""
679
 
 
680
  msgid "Open Elementor Settings page"
681
  msgstr ""
682
 
 
683
  msgid "WPGlobus widget"
684
  msgstr "WPGlobus widget"
685
 
 
686
  msgid "Add language switcher"
687
  msgstr "Añadir selector de idiomas"
688
 
 
689
  msgid "Flags"
690
  msgstr "Banderas"
691
 
 
692
  msgid "List"
693
  msgstr "Lista"
694
 
 
695
  msgid "List with flags"
696
  msgstr "Lista con Banderas"
697
 
 
698
  msgid "Select"
699
  msgstr "Seleccionar"
700
 
 
701
  msgid "Select with language code"
702
  msgstr "Seleccionar con el código de idioma"
703
 
 
704
  msgid "Dropdown"
705
  msgstr "Desplegable"
706
 
 
707
  msgid "Dropdown with flags"
708
  msgstr "Desplegable con banderas"
709
 
 
710
  msgid "Selector type"
711
  msgstr "Tipo de selector"
712
 
 
713
  msgid "You cannot disable the main language."
714
  msgstr "No se puede desactivar el idioma principal."
715
 
 
716
  msgid "Need a multilingual slug?"
717
  msgstr ""
718
 
 
719
  msgid "*) Available after the menu is saved."
720
  msgstr "No Se Puede Desactivar el director idioma."
721
 
 
722
  msgid "You must enable Pretty Permalinks to use WPGlobus."
723
  msgstr ""
724
  "Debes habilitar los Enlaces permanentes Pretty para utilizar WPGlobus ."
725
 
 
726
  msgid ""
727
  "Please go to Settings > Permalinks > Common Settings and choose a non-"
728
  "default option."
730
  "Por favor, ve a Configuración > Enlaces permanentes > Ajustes comunes y "
731
  "selecciona una opción no predeterminada ."
732
 
 
733
  msgid "Language Selector Menu Style"
734
  msgstr ""
735
 
 
 
 
736
  msgid "WPGlobus Plus"
737
  msgstr ""
738
 
 
739
  msgid "Drop-down languages menu or Flat (in one line)"
740
  msgstr ""
741
 
 
742
  msgid "Do not change"
743
  msgstr ""
744
 
 
745
  msgid "Drop-down (vertical)"
746
  msgstr ""
747
 
 
748
  msgid "Flat (horizontal)"
749
  msgstr ""
750
 
 
751
  msgid ""
752
  "If you see this message then your browser may not display the WPGlobus "
753
  "Settings panel properly. Please try another browser."
754
  msgstr ""
755
 
 
 
756
  msgid "Сompatibility"
757
  msgstr ""
758
 
759
  #. translators: placeholders for "strong" tags.
 
760
  msgid "Click the %1$s[Languages]%2$s tab at the left to setup the options."
761
  msgstr ""
762
 
763
  #. translators: placeholders for "strong" tags.
 
764
  msgid ""
765
  "Use the %1$s[Languages Table]%2$s section to add a new language or to edit "
766
  "the language attributes: name, code, flag icon, etc."
767
  msgstr ""
768
 
 
769
  msgid "Important notes"
770
  msgstr "Notas importantes"
771
 
772
  #. translators: placeholders for "strong" tags.
 
773
  msgid "Version %1$s1.9.17%2$s "
774
  msgstr ""
775
 
776
  #. translators: placeholders for "strong" tags.
 
777
  msgid "Starting from this version, %1$sWPGlobus%2$s operates in two modes"
778
  msgstr ""
779
 
780
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
781
  msgid ""
782
  "%1$sBuilder mode%2$s: WPGlobus turns this mode on automatically when it "
783
  "discovers any of the plugins/add-ons listed on the %1$s[%3$s]%2$s tab."
784
  msgstr ""
785
 
786
  #. translators: placeholders for "strong" tags; compatibility tab link.
 
787
  msgid ""
788
  "%1$sStandard/Classic mode%2$s: is used when there are no plugins `Builder` "
789
  "or if you explicitly turned off builder support on the %1$s[%3$s]%2$s tab."
790
  msgstr ""
791
 
792
  #. translators: placeholders for "strong" tags.
 
793
  msgid "Version %1$s2.2.11%2$s "
794
  msgstr ""
795
 
 
796
  msgid "Starting from this version"
797
  msgstr ""
798
 
799
  #. translators: placeholders for "strong" tags.
 
800
  msgid ""
801
  "The %1$sBuilder mode%2$s is turned OFF by default for all custom post types "
802
  "(CPT)."
803
  msgstr ""
804
 
805
  #. translators: placeholders for "strong" tags.
 
806
  msgid ""
807
  "To turn on the %1$sBuilder mode%2$s for specific post types, please visit "
808
  "the %1$s[%3$s]%2$s tab."
809
  msgstr ""
810
 
 
811
  msgid "Welcome!"
812
  msgstr "Bienvenido!"
813
 
 
814
  msgid "Deactivating / Uninstalling"
815
  msgstr ""
816
 
 
817
  msgid "Uninstall"
818
  msgstr "Desinstalar"
819
 
 
820
  msgid "All add-ons"
821
  msgstr ""
822
 
 
823
  msgid "Mobile Menu"
824
  msgstr ""
825
 
 
826
  msgid "Language Widgets"
827
  msgstr ""
828
 
 
829
  msgid "We Recommend..."
830
  msgstr ""
831
 
 
832
  msgid ""
833
  "Our premium add-on, WPGlobus Plus, will add several features to your "
834
  "website, such as:"
835
  msgstr ""
836
 
 
837
  msgid ""
838
  "- Ability to write a post in one language and immediately publish it, not "
839
  "waiting for the translation to other languages;"
840
  msgstr ""
841
 
 
842
  msgid "- Set different URLs for each translation;"
843
  msgstr ""
844
 
 
845
  msgid ""
846
  "- In Yoast SEO, set the focus keyword and do the Page Analysis separately "
847
  "for each translation;"
848
  msgstr ""
849
 
 
850
  msgid "- and more..."
851
  msgstr ""
852
 
 
 
 
853
  msgid "Click here to download"
854
  msgstr ""
855
 
 
856
  msgid ""
857
  "Thanks for installing WPGlobus! Now you have a multilingual website and can "
858
  "translate your blog posts and pages to many languages."
859
  msgstr ""
860
 
 
861
  msgid "The next step is to translate your WooCommerce-based store!"
862
  msgstr ""
863
 
 
864
  msgid ""
865
  "With the WPGlobus for WooCommerce premium add-on, you will be able to "
866
  "translate product titles and descriptions, categories, tags and attributes."
867
  msgstr ""
868
 
 
869
  msgid "Multi-currency"
870
  msgstr ""
871
 
 
872
  msgid ""
873
  "Your WooCommerce-powered store is set to show prices and accept payments in "
874
  "a single currency only."
875
  msgstr ""
876
 
 
877
  msgid ""
878
  "With WPGlobus, you can add multiple currencies to your store and charge UK "
879
  "customers in Pounds, US customers in Dollars, Spanish clients in Euros, etc. "
881
  "positioning for global growth!"
882
  msgstr ""
883
 
 
884
  msgid ""
885
  "The WPGlobus Multi-Currency premium add-on provides switching currencies and "
886
  "re-calculating prices on-the-fly."
887
  msgstr ""
888
 
 
889
  msgid "WPGlobus Premium Add-ons"
890
  msgstr ""
891
 
 
892
  msgid ""
893
  "We have written several Premium add-ons for WPGlobus. With those add-ons, "
894
  "you will be able to:"
895
  msgstr ""
896
 
 
897
  msgid ""
898
  "<strong>Translate URLs</strong> (/my-page/ translates to /fr/ma-page, /ru/"
899
  "моя-страница and so on);"
900
  msgstr ""
901
 
 
902
  msgid ""
903
  "Postpone translation to some languages and <strong>publish only the "
904
  "translated texts</strong>;"
905
  msgstr ""
906
 
 
907
  msgid "Maintain <strong>separate menus and widgets for each language</strong>;"
908
  msgstr ""
909
 
 
910
  msgid "<strong>Translate WooCommerce</strong> products and taxonomies;"
911
  msgstr ""
912
 
 
913
  msgid ""
914
  "Enter separate focus keywords for each language in the <strong>Yoast SEO</"
915
  "strong>;"
916
  msgstr ""
917
 
 
918
  msgid "...and more."
919
  msgstr ""
920
 
 
921
  msgid "Click here to visit the WPGlobus Store"
922
  msgstr ""
923
 
 
924
  msgid "Select a language"
925
  msgstr "Seleccionar un idioma"
926
 
927
  #. translators: %3$s placeholder for the icon (actual picture).
 
928
  msgid ""
929
  "Place the %1$smain language%2$s of your site at the top of the list by "
930
  "dragging the %3$s icons."
931
  msgstr ""
932
 
933
  #. translators: placeholders for the "strong" HTML tags.
 
934
  msgid "%1$sUncheck%2$s the languages you do not plan to use."
935
  msgstr ""
936
 
937
  #. translators: placeholders for the "strong" HTML tags.
 
938
  msgid "%1$sAdd%2$s more languages using the section below."
939
  msgstr ""
940
 
 
941
  msgid "When done, click the [Save Changes] button."
942
  msgstr "Cuando hayas terminado, haz clic en el botón [Guardar Cambios] ."
943
 
944
  #. translators: %s - placeholder for the "Save Changes" button text.
 
945
  msgid "Press the %s button to confirm."
946
  msgstr ""
947
 
948