Google Captcha (reCAPTCHA) by BestWebSoft - Version 1.61

Version Description

  • 06.04.2021 =
  • Update : Settings page has been changed for better usability.
  • Update : BWS Panel section was updated.
  • Update : All functionality was updated for WordPress 5.7.
Download this release

Release Info

Developer bestwebsoft
Plugin Icon 128x128 Google Captcha (reCAPTCHA) by BestWebSoft
Version 1.61
Comparing to
See all releases

Code changes from version 1.60 to 1.61

bws_menu/bws_functions.php CHANGED
@@ -697,6 +697,7 @@ if ( ! function_exists( 'bws_enqueue_settings_scripts' ) ) {
697
  function bws_enqueue_settings_scripts() {
698
  wp_enqueue_script( 'jquery-ui-resizable' );
699
  wp_enqueue_script( 'jquery-ui-tabs' );
 
700
  }
701
  }
702
 
697
  function bws_enqueue_settings_scripts() {
698
  wp_enqueue_script( 'jquery-ui-resizable' );
699
  wp_enqueue_script( 'jquery-ui-tabs' );
700
+ wp_enqueue_style( 'bws-modal-css', bws_menu_url( 'css/modal.css' ) );
701
  }
702
  }
703
 
bws_menu/bws_menu.php CHANGED
@@ -1,7 +1,7 @@
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
- * Version: 2.3.6
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
1
  <?php
2
  /*
3
  * Function for displaying BestWebSoft menu
4
+ * Version: 2.3.7
5
  */
6
 
7
  if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
bws_menu/class-bws-settings.php CHANGED
@@ -1124,5 +1124,203 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
1124
  update_option( $this->prefix . '_options', $this->options );
1125
  }
1126
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1127
  }
1128
  }
 
 
1124
  update_option( $this->prefix . '_options', $this->options );
1125
  }
1126
  }
1127
+
1128
+ public function add_request_feature() { ?>
1129
+ <div id="bws_request_feature" class="widget-access-link">
1130
+ <button type="button" class="button" ><?php _e( 'Request a Feature', 'bestwebsoft' ); ?></button>
1131
+ </div>
1132
+ <?php $modal_html = '<div class="bws-modal bws-modal-deactivation-feedback bws-modal-request-feature">
1133
+ <div class="bws-modal-dialog">
1134
+ <div class="bws-modal-body">
1135
+ <h2>' . sprintf( __( 'How can we improve %s?', 'bestwebsoft' ), $this->plugins_info['Name'] ) . '</h2>
1136
+ <div class="bws-modal-panel active">
1137
+ <p>' . __( 'We look forward to hear your ideas.', 'bestwebsoft' ) . '</p>
1138
+ <p>
1139
+ <textarea placeholder="' . __( 'Describe your idea', 'bestwebsoft' ) . '..."></textarea>
1140
+ </p>
1141
+ <label class="bws-modal-anonymous-label">
1142
+ <input type="checkbox" /> ' . __( 'Send website data and allow to contact me back', 'bestwebsoft' ) . '
1143
+ </label>
1144
+ </div>
1145
+ </div>
1146
+ <div class="bws-modal-footer">
1147
+ <a href="#" class="button disabled bws-modal-button button-primary">' . __( 'Submit', 'bestwebsoft' ) . '</a>
1148
+ <span class="bws-modal-processing hidden">' . __( 'Processing', 'bestwebsoft' ) . '...</span>
1149
+ <span class="bws-modal-thank-you hidden">' . __( 'Thank you!', 'bestwebsoft' ) . '</span>
1150
+ <div class="clear"></div>
1151
+ </div>
1152
+ </div>
1153
+ </div>';
1154
+
1155
+ $script = "(function($) {
1156
+ var modalHtml = " . json_encode( $modal_html ) . ",
1157
+ \$modal = $( modalHtml );
1158
+
1159
+ \$modal.appendTo( $( 'body' ) );
1160
+
1161
+ $( '#bws_request_feature .button' ).on( 'click', function() {
1162
+ /* Display the dialog box.*/
1163
+ \$modal.addClass( 'active' );
1164
+ $( 'body' ).addClass( 'has-bws-modal' );
1165
+ });
1166
+
1167
+ \$modal.on( 'keypress', 'textarea', function( evt ) {
1168
+ BwsModalEnableButton();
1169
+ });
1170
+
1171
+ \$modal.on( 'click', '.bws-modal-footer .button', function( evt ) {
1172
+ evt.preventDefault();
1173
+
1174
+ if ( $( this ).hasClass( 'disabled' ) ) {
1175
+ return;
1176
+ }
1177
+ var info = \$modal.find( 'textarea' ).val();
1178
+
1179
+ if ( info.length == 0 ) {
1180
+ return;
1181
+ }
1182
+
1183
+ var _parent = $( this ).parents( '.bws-modal:first' ),
1184
+ _this = $( this );
1185
+
1186
+ var is_anonymous = ( \$modal.find( '.bws-modal-anonymous-label' ).find( 'input' ).is( ':checked' ) ) ? 0 : 1;
1187
+
1188
+ $.ajax({
1189
+ url : ajaxurl,
1190
+ method : 'POST',
1191
+ data : {
1192
+ 'action' : 'bws_submit_request_feature_action',
1193
+ 'plugin' : '" . $this->plugin_basename . "',
1194
+ 'info' : info,
1195
+ 'is_anonymous' : is_anonymous,
1196
+ 'bws_ajax_nonce' : '" . wp_create_nonce( 'bws_ajax_nonce' ) . "'
1197
+ },
1198
+ beforeSend: function() {
1199
+ _parent.find( '.bws-modal-footer .bws-modal-button' ).hide();
1200
+ _parent.find( '.bws-modal-footer .bws-modal-processing' ).show();
1201
+ _parent.find( 'textarea, input' ).attr( 'disabled', 'disabled' );
1202
+ },
1203
+ complete : function( message ) {
1204
+ _parent.find( '.bws-modal-footer .bws-modal-processing' ).hide();
1205
+ _parent.find( '.bws-modal-footer .bws-modal-thank-you' ).show();
1206
+ }
1207
+ });
1208
+ });
1209
+
1210
+ /* If the user has clicked outside the window, cancel it. */
1211
+ \$modal.on( 'click', function( evt ) {
1212
+ var \$target = $( evt.target );
1213
+
1214
+ /* If the user has clicked anywhere in the modal dialog, just return. */
1215
+ if ( \$target.hasClass( 'bws-modal-body' ) || \$target.hasClass( 'bws-modal-footer' ) ) {
1216
+ return;
1217
+ }
1218
+
1219
+ /* If the user has not clicked the close button and the clicked element is inside the modal dialog, just return. */
1220
+ if ( ! \$target.hasClass( 'bws-modal-button-close' ) && ( \$target.parents( '.bws-modal-body' ).length > 0 || \$target.parents( '.bws-modal-footer' ).length > 0 ) ) {
1221
+ return;
1222
+ }
1223
+
1224
+ /* Close the modal dialog */
1225
+ \$modal.removeClass( 'active' );
1226
+ $( 'body' ).removeClass( 'has-bws-modal' );
1227
+
1228
+ return false;
1229
+ });
1230
+
1231
+ function BwsModalEnableButton() {
1232
+ \$modal.find( '.bws-modal-button' ).removeClass( 'disabled' ).show();
1233
+ \$modal.find( '.bws-modal-processing' ).hide();
1234
+ }
1235
+
1236
+ function BwsModalDisableButton() {
1237
+ \$modal.find( '.bws-modal-button' ).addClass( 'disabled' );
1238
+ }
1239
+
1240
+ function BwsModalShowPanel() {
1241
+ \$modal.find( '.bws-modal-panel' ).addClass( 'active' );
1242
+ }
1243
+ })(jQuery);";
1244
+
1245
+ /* add script in FOOTER */
1246
+ wp_register_script( 'bws-request-feature-dialog', '', array( 'jquery' ), false, true );
1247
+ wp_enqueue_script( 'bws-request-feature-dialog' );
1248
+ wp_add_inline_script( 'bws-request-feature-dialog', sprintf( $script ) );
1249
+ }
1250
+ }
1251
+ }
1252
+
1253
+
1254
+ /**
1255
+ * Called after the user has submitted his reason for deactivating the plugin.
1256
+ *
1257
+ * @since 2.1.3
1258
+ */
1259
+ if ( ! function_exists( 'bws_submit_request_feature_action' ) ) {
1260
+ function bws_submit_request_feature_action() {
1261
+ global $bstwbsftwppdtplgns_options, $wp_version, $bstwbsftwppdtplgns_active_plugins, $current_user;
1262
+
1263
+ wp_verify_nonce( $_REQUEST['bws_ajax_nonce'], 'bws_ajax_nonce' );
1264
+
1265
+ $basename = isset( $_REQUEST['plugin'] ) ? stripcslashes( sanitize_text_field( $_REQUEST['plugin'] ) ) : '';
1266
+ $info = stripcslashes( sanitize_text_field( $_REQUEST['info'] ) );
1267
+
1268
+ if ( empty( $info ) || empty( $basename ) ) {
1269
+ exit;
1270
+ }
1271
+
1272
+ $info = substr( $info, 0, 255 );
1273
+ $is_anonymous = isset( $_REQUEST['is_anonymous'] ) && 1 == $_REQUEST['is_anonymous'];
1274
+
1275
+ $options = array(
1276
+ 'product' => $basename,
1277
+ 'info' => $info,
1278
+ );
1279
+
1280
+ if ( ! $is_anonymous ) {
1281
+ if ( ! isset( $bstwbsftwppdtplgns_options ) )
1282
+ $bstwbsftwppdtplgns_options = ( is_multisite() ) ? get_site_option( 'bstwbsftwppdtplgns_options' ) : get_option( 'bstwbsftwppdtplgns_options' );
1283
+
1284
+ if ( ! empty( $bstwbsftwppdtplgns_options['track_usage']['usage_id'] ) ) {
1285
+ $options['usage_id'] = $bstwbsftwppdtplgns_options['track_usage']['usage_id'];
1286
+ } else {
1287
+ $options['usage_id'] = false;
1288
+ $options['url'] = get_bloginfo( 'url' );
1289
+ $options['wp_version'] = $wp_version;
1290
+ $options['is_active'] = false;
1291
+ $options['version'] = $bstwbsftwppdtplgns_active_plugins[ $basename ]['Version'];
1292
+ }
1293
+
1294
+ $options['email'] = $current_user->data->user_email;
1295
+ }
1296
+
1297
+ /* send data */
1298
+ $raw_response = wp_remote_post( 'https://bestwebsoft.com/wp-content/plugins/products-statistics/request-feature/', array(
1299
+ 'method' => 'POST',
1300
+ 'body' => $options,
1301
+ 'timeout' => 15,
1302
+ ) );
1303
+
1304
+ if ( ! is_wp_error( $raw_response ) && 200 == wp_remote_retrieve_response_code( $raw_response ) ) {
1305
+ if ( ! $is_anonymous ) {
1306
+ $response = maybe_unserialize( wp_remote_retrieve_body( $raw_response ) );
1307
+
1308
+ if ( is_array( $response ) && ! empty( $response['usage_id'] ) && $response['usage_id'] != $options['usage_id'] ) {
1309
+ $bstwbsftwppdtplgns_options['track_usage']['usage_id'] = $response['usage_id'];
1310
+
1311
+ if ( is_multisite() )
1312
+ update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
1313
+ else
1314
+ update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
1315
+ }
1316
+ }
1317
+
1318
+ echo 'done';
1319
+ } else {
1320
+ echo $response->get_error_code() . ': ' . $response->get_error_message();
1321
+ }
1322
+ exit;
1323
  }
1324
  }
1325
+
1326
+ add_action( 'wp_ajax_bws_submit_request_feature_action', 'bws_submit_request_feature_action' );
bws_menu/css/general_style.css CHANGED
@@ -483,6 +483,27 @@ span.bws_code {
483
  .bws-tooltip-content a {
484
  color: #00a0d2;
485
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
486
  /*
487
  * bws shortcode insert
488
  */
483
  .bws-tooltip-content a {
484
  color: #00a0d2;
485
  }
486
+ /*
487
+ * styles for Request a Feature link near screen-meta
488
+ */
489
+ #bws_request_feature {
490
+ margin-top: 0;
491
+ }
492
+ #bws_request_feature button {
493
+ border: 1px solid #ccd0d4;
494
+ border-top: none;
495
+ height: auto;
496
+ margin-bottom: 0;
497
+ color: #fff;
498
+ border-radius: 0 0 4px 4px;
499
+ background-color: #0071a1;
500
+ line-height: 1.7;
501
+ box-shadow: 0 0 0 transparent;
502
+ transition: box-shadow .1s linear;
503
+ }
504
+ #bws_request_feature button:hover {
505
+ background-color: #00a0d2;
506
+ }
507
  /*
508
  * bws shortcode insert
509
  */
bws_menu/css/modal.css CHANGED
@@ -83,7 +83,8 @@ body.has-bws-modal {
83
  .bws-modal.bws-modal-deactivation-feedback .bws-modal-reason-input input,
84
  .bws-modal.bws-modal-deactivation-feedback .bws-modal-reason-input textarea,
85
  .bws-modal.bws-modal-deactivation-feedback .bws-modal-internal-message input,
86
- .bws-modal.bws-modal-deactivation-feedback .bws-modal-internal-message textarea {
 
87
  width: 100%;
88
  }
89
  .bws-modal.bws-modal-deactivation-feedback li.bws-modal-reason.has-internal-message .bws-modal-internal-message {
83
  .bws-modal.bws-modal-deactivation-feedback .bws-modal-reason-input input,
84
  .bws-modal.bws-modal-deactivation-feedback .bws-modal-reason-input textarea,
85
  .bws-modal.bws-modal-deactivation-feedback .bws-modal-internal-message input,
86
+ .bws-modal.bws-modal-deactivation-feedback .bws-modal-internal-message textarea,
87
+ .bws-modal.bws-modal-request-feature textarea {
88
  width: 100%;
89
  }
90
  .bws-modal.bws-modal-deactivation-feedback li.bws-modal-reason.has-internal-message .bws-modal-internal-message {
bws_menu/languages/bestwebsoft-cs_CZ.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-cs_CZ.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-03-02 10:14+0200\n"
6
- "PO-Revision-Date: 2018-03-02 10:15+0200\n"
7
  "Last-Translator: Mik013\n"
8
  "Language-Team: Mik013\n"
9
  "Language: cs_CZ\n"
@@ -13,10 +13,10 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.8.7.1\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: bws_functions.php:73 bws_functions.php:191
20
  msgid "requires"
21
  msgstr "vyžaduje"
22
 
@@ -53,7 +53,7 @@ msgstr "Ohodnoťte jej"
53
  msgid "Need help?"
54
  msgstr "Potřebujete pomoci?"
55
 
56
- #: bws_functions.php:104 bws_functions.php:919 class-bws-settings.php:1058
57
  msgid "Visit Help Center"
58
  msgstr "Navštivte Centrum pomoci"
59
 
@@ -61,7 +61,7 @@ msgstr "Navštivte Centrum pomoci"
61
  msgid "Want to support the plugin?"
62
  msgstr "Chcete podpořit plugin?"
63
 
64
- #: bws_functions.php:108 bws_menu.php:560
65
  msgid "Donate"
66
  msgstr "Darujte"
67
 
@@ -81,8 +81,8 @@ msgstr ""
81
  "stránce - Klientské zóně. Důrazně doporučujeme, aby jste tento problém "
82
  "odstranili během 24 hodin, jinak bude Pro plugin deaktivován."
83
 
84
- #: bws_functions.php:128 bws_functions.php:341 bws_menu.php:631
85
- #: class-bws-settings.php:144
86
  msgid "Learn More"
87
  msgstr "Dozvědět se více"
88
 
@@ -102,7 +102,7 @@ msgstr ""
102
  "Vaše licence vypršela. Pro přístup k top-prioritní podpoře a aktualizacím "
103
  "pluginu ji budete muset prodloužit."
104
 
105
- #: bws_functions.php:147 bws_functions.php:389 deprecated.php:586
106
  msgid "Learn more"
107
  msgstr "Dozvědět se více"
108
 
@@ -119,7 +119,37 @@ msgstr "Poznámka: Používáte zkušební Pro verzi pluginu."
119
  msgid "The Pro Trial license will expire on"
120
  msgstr "Zkušební Pro licence vyprší"
121
 
122
- #: bws_functions.php:193
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
123
  msgid ""
124
  "or higher! We do not guarantee that our plugin will work correctly. Please "
125
  "upgrade to WordPress latest version."
@@ -127,87 +157,57 @@ msgstr ""
127
  "nebo vyšší! Nezaručujeme, že náš plugin bude fungovat správně. Prosím "
128
  "aktualizujte na nejnovější verzi WordPressu."
129
 
130
- #: bws_functions.php:208
131
  #, php-format
132
  msgid "Thank you for installing %s plugin!"
133
  msgstr "Děkujeme vám za instalaci pluginu %s!"
134
 
135
- #: bws_functions.php:210
136
  msgid "Let's get started"
137
  msgstr "Začněme"
138
 
139
- #: bws_functions.php:211 bws_functions.php:244 bws_menu.php:564
140
- #: bws_menu.php:566
141
  msgid "Settings"
142
  msgstr "Nastavení"
143
 
144
- #: bws_functions.php:213 bws_menu.php:326 class-bws-settings.php:747
145
- #: class-bws-settings.php:1060 class-bws-settings.php:1070 deprecated.php:697
146
  msgid "or"
147
  msgstr "nebo"
148
 
149
- #: bws_functions.php:214 bws_functions.php:246
150
  msgid "Add New"
151
  msgstr "Přidat nový"
152
 
153
- #: bws_functions.php:218 bws_functions.php:228 bws_functions.php:332
154
- #: bws_functions.php:385 bws_functions.php:487
155
- msgid "Close notice"
156
- msgstr "Zavřít poznámku"
157
-
158
- #: bws_functions.php:233
159
  msgid "Thank you for installing plugins by BestWebSoft!"
160
  msgstr "Děkujeme vám za instalaci pluginů od BestWebSoft!"
161
 
162
- #: bws_functions.php:235
163
  msgid "More Details"
164
  msgstr "Více detailů"
165
 
166
- #: bws_functions.php:236
167
  msgid "Less Details"
168
  msgstr "Méně detailů"
169
 
170
- #: bws_functions.php:264
171
  msgid "Deprecated function(-s) is used on the site here:"
172
  msgstr "Zastaralé funkce se používají na stránkách zde:"
173
 
174
- #: bws_functions.php:278
175
  msgid ""
176
  "This function(-s) will be removed over time. Please update the product(-s)."
177
  msgstr ""
178
  "Tato funkce, bude v průběhu času odstraněna. Prosím aktualizujte produkt."
179
 
180
- #: bws_functions.php:337
181
- msgid "It’s time to upgrade your"
182
- msgstr "Je čas na aktualizaci vašeho"
183
-
184
- #: bws_functions.php:337
185
- msgid "to"
186
- msgstr "na"
187
-
188
- #: bws_functions.php:337
189
- msgid "version!"
190
- msgstr "verzi!"
191
-
192
- #: bws_functions.php:338
193
- msgid "Extend standard plugin functionality with new great options."
194
- msgstr "Rozšiřuje standardní funkce pluginu novými skvělými možnostmi."
195
-
196
- #: bws_functions.php:389
197
- #, php-format
198
- msgid ""
199
- "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
200
- "SUPPORT or UPDATES."
201
- msgstr ""
202
- "Váš licenční klíč pro %s vyprší dne %s a nebudou vám poskytovány TOP-"
203
- "PRIOROTNÍ PODPORA a AKTUALIZACE."
204
-
205
- #: bws_functions.php:482
206
  #, php-format
207
  msgid "Thank you for choosing %s plugin!"
208
  msgstr "Děkujeme, že jste si vybrali plugin %s!"
209
 
210
- #: bws_functions.php:483
211
  msgid ""
212
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
213
  "we'd love to hear about it!"
@@ -215,25 +215,24 @@ msgstr ""
215
  "Máte-li nápad, nebo doporučení na novou vlastnost, kterou by jste v pluginu "
216
  "chtěli vidět, rádi o něm uslyšíme!"
217
 
218
- #: bws_functions.php:484
219
  msgid "Suggest a Feature"
220
  msgstr "Navrhnout vlastnost"
221
 
222
- #: bws_functions.php:500 class-bws-settings.php:540 class-bws-settings.php:543
223
- #: class-bws-settings.php:595 class-bws-settings.php:598
224
  msgid "Notice"
225
  msgstr "Poznámka"
226
 
227
- #: bws_functions.php:500
228
  msgid "The plugin's settings have been changed."
229
  msgstr "Nastavení pluginu bylo změněno."
230
 
231
- #: bws_functions.php:501 class-bws-settings.php:183 class-bws-settings.php:203
232
- #: deprecated.php:642
233
  msgid "Save Changes"
234
  msgstr "Uložit změny"
235
 
236
- #: bws_functions.php:515
237
  msgid ""
238
  "You can always look at premium options by checking the \"Pro Options\" in "
239
  "the \"Misc\" tab."
@@ -241,79 +240,70 @@ msgstr ""
241
  "Vždy se můžete podívat na možnosti prémiové verze, kliknutím na \"PRO "
242
  "nastavení\" na \"Go PRO\" záložce."
243
 
244
- #: bws_functions.php:653
245
- msgid "Add BWS Shortcode"
246
- msgstr "Přidat zkrácený kód BWS"
247
-
248
- #: bws_functions.php:654
249
- msgid "Add BWS Plugins Shortcode"
250
- msgstr "Přidat zkrácený kód BWS pluginu"
251
-
252
- #: bws_functions.php:673
253
  msgid "Add shortcode"
254
  msgstr "Přidat zkrácený kód"
255
 
256
- #: bws_functions.php:673
257
  msgid "Add BestWebSoft plugins' shortcodes using this button."
258
  msgstr ""
259
  "Pomocí tohoto tlačítka můžete přidávat zkrácené kódy BestWebSoft pluginů."
260
 
261
- #: bws_functions.php:729
262
  msgid "Close"
263
  msgstr "Zavřít"
264
 
265
- #: bws_functions.php:821
266
  msgid "Are you sure you want to restore default settings?"
267
  msgstr "Jste si jisti, že chcete obnovit výchozí nastavení?"
268
 
269
- #: bws_functions.php:824
270
  msgid "Yes, restore all settings"
271
  msgstr "Ano, obnovit veškerá nastavení"
272
 
273
- #: bws_functions.php:825
274
  msgid "No, go back to the settings page"
275
  msgstr "Ne, vrátit se zpět na stránku nastavení"
276
 
277
- #: bws_functions.php:867
278
  msgid "Plugin"
279
  msgstr "Plugin"
280
 
281
- #: bws_functions.php:876
282
  msgid "Shortcode settings"
283
  msgstr "Nastavení zkrácených kódů"
284
 
285
- #: bws_functions.php:881
286
  msgid "The shortcode will be inserted"
287
  msgstr "Bude vložen zkrácený kód"
288
 
289
- #: bws_functions.php:924
290
  msgid "FAQ"
291
  msgstr ""
292
  "Časté dotazy <acronym title=\"Frequently asked questions\">(FAQ)</acronym>"
293
 
294
- #: bws_functions.php:930
295
  msgid "For more information:"
296
  msgstr "Pro více informací:"
297
 
298
- #: bws_functions.php:931
299
  msgid "Documentation"
300
  msgstr "Dokumentace"
301
 
302
- #: bws_functions.php:932
303
  msgid "Video Instructions"
304
  msgstr "Video instrukce"
305
 
306
- #: bws_functions.php:933
307
  msgid "Submit a Request"
308
  msgstr "Odeslat požadavek"
309
 
310
- #: bws_menu.php:101 class-bws-settings.php:792 deprecated.php:323
311
  msgid "Wrong license key"
312
  msgstr "Špatný licenční klíč"
313
 
314
- #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
315
- #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
316
- #: deprecated.php:353
317
  msgid ""
318
  "Something went wrong. Please try again later. If the error appears again, "
319
  "please contact us"
@@ -321,18 +311,16 @@ msgstr ""
321
  "Něco se pokazilo. Prosím zkuste to znovu později. Pokud se chyba objeví "
322
  "znovu, obraťte se na nás"
323
 
324
- #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
325
- #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
326
- #: deprecated.php:353
327
  msgid "We are sorry for inconvenience."
328
  msgstr "Omlouváme se za nepříjemnosti."
329
 
330
- #: bws_menu.php:128 class-bws-settings.php:824 class-bws-settings.php:927
331
- #: deprecated.php:139 deprecated.php:359
332
  msgid "Wrong license key."
333
  msgstr "Neplatný licenční klíč."
334
 
335
- #: bws_menu.php:130
336
  msgid ""
337
  "This license key is bound to another site. Change it via personal Client "
338
  "Area."
@@ -340,15 +328,15 @@ msgstr ""
340
  "Tento licenční klíč je přidružen k jinému webu. Změňte jej prostřednictvím "
341
  "osobní Klientské zóny."
342
 
343
- #: bws_menu.php:130
344
  msgid "Log in"
345
  msgstr "Přihlášení"
346
 
347
- #: bws_menu.php:132 bws_menu.php:332 deprecated.php:261
348
  msgid "Unfortunately, you have exceeded the number of available tries per day."
349
  msgstr "Bohužel, překročili jste dostupný počet pokusů pro daný den."
350
 
351
- #: bws_menu.php:134 deprecated.php:365
352
  #, php-format
353
  msgid ""
354
  "Unfortunately, Your license has expired. To continue getting top-priority "
@@ -357,7 +345,7 @@ msgstr ""
357
  "Bohužel, Vaše licence vypršela. Chcete-li pokračovat v získávání top-"
358
  "prioritní podpory a aktualizace pluginu měli byste ji prodloužit ve vašem %s"
359
 
360
- #: bws_menu.php:136 class-bws-settings.php:935 deprecated.php:367
361
  msgid ""
362
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
363
  "Trial license can be installed only once."
@@ -365,19 +353,19 @@ msgstr ""
365
  "Bohužel, pro tuto doménu již byla použita Pro licence. Zkušební Pro licence "
366
  "může být instalována pouze jedenkrát."
367
 
368
- #: bws_menu.php:142 class-bws-settings.php:839 deprecated.php:153
369
  msgid "The license key is valid."
370
  msgstr "Licenční klíč je platný."
371
 
372
- #: bws_menu.php:144 class-bws-settings.php:842 deprecated.php:156
373
  msgid "Your license will expire on"
374
  msgstr "Vaše licence vyprší"
375
 
376
- #: bws_menu.php:146
377
  msgid "Congratulations! Pro Membership license is activated successfully."
378
  msgstr "Gratulujeme! PRO členství bylo úspěšně aktivováno."
379
 
380
- #: bws_menu.php:153 class-bws-settings.php:1007 deprecated.php:436
381
  msgid ""
382
  "Something went wrong. Try again later or upload the plugin manually. We are "
383
  "sorry for inconvenience."
@@ -385,219 +373,221 @@ msgstr ""
385
  "Něco se pokazilo. Zkuste to později, nebo nahrajte plugin ručně. Omlouváme "
386
  "se za nepříjemnosti."
387
 
388
- #: bws_menu.php:163
389
  msgid "Please enter your license key."
390
  msgstr "Prosím vložte váš licenční klíč."
391
 
392
- #: bws_menu.php:174
393
  msgid "Not set"
394
  msgstr "Nenastaveno"
395
 
396
- #: bws_menu.php:176
397
  msgid "On"
398
  msgstr "Zapnout"
399
 
400
  # vypnout, nebo vypnuto
401
- #: bws_menu.php:176
402
  msgid "Off"
403
  msgstr "Vypnout"
404
 
405
- #: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
406
- #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
407
  msgid "N/A"
408
  msgstr "N/A"
409
 
410
- #: bws_menu.php:182
411
- msgid " Mb"
 
 
412
  msgstr " Mb"
413
 
414
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
415
  msgid "Yes"
416
  msgstr "Ano"
417
 
418
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
419
  msgid "No"
420
  msgstr "Ne"
421
 
422
- #: bws_menu.php:196
423
  msgid "WordPress Environment"
424
  msgstr "WordPress prostředí"
425
 
426
- #: bws_menu.php:198
427
  msgid "Home URL"
428
  msgstr "Domovská URL"
429
 
430
- #: bws_menu.php:199
431
  msgid "Website URL"
432
  msgstr "URL webových stránek"
433
 
434
- #: bws_menu.php:200
435
  msgid "WP Version"
436
  msgstr "WP Verze"
437
 
438
- #: bws_menu.php:201
439
  msgid "WP Multisite"
440
  msgstr "WP Multisite"
441
 
442
- #: bws_menu.php:202
443
  msgid "WP Memory Limit"
444
  msgstr "WP pamětový limit (memory limit)"
445
 
446
- #: bws_menu.php:203
447
  msgid "Active Theme"
448
  msgstr "Aktivovat šablonu"
449
 
450
- #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
451
  #, php-format
452
  msgid "by %s"
453
  msgstr "od %s"
454
 
455
- #: bws_menu.php:207
456
  msgid "Server Environment"
457
  msgstr "Prostředí"
458
 
459
- #: bws_menu.php:209
460
  msgid "Operating System"
461
  msgstr "Operační systém"
462
 
463
- #: bws_menu.php:210
464
  msgid "Server"
465
  msgstr "Server"
466
 
467
- #: bws_menu.php:211
468
  msgid "PHP Version"
469
  msgstr "PHP Verze"
470
 
471
  # copy
472
- #: bws_menu.php:212
473
  msgid "PHP Allow URL fopen"
474
  msgstr "PHP Allow URL fopen"
475
 
476
- #: bws_menu.php:213
477
  msgid "PHP Memory Limit"
478
  msgstr "PHP Limit paměti"
479
 
480
- #: bws_menu.php:214
481
  msgid "Memory Usage"
482
  msgstr "Využití paměti"
483
 
484
  # copy
485
- #: bws_menu.php:215
486
  msgid "PHP Max Upload Size"
487
  msgstr "PHP Max Upload Size"
488
 
489
  # copy
490
- #: bws_menu.php:216
491
  msgid "PHP Max Post Size"
492
  msgstr "PHP Max Post Size"
493
 
494
  # copy
495
- #: bws_menu.php:217
496
  msgid "PHP Max Script Execute Time"
497
  msgstr "PHP Max Script Execute Time"
498
 
499
- #: bws_menu.php:218
500
  msgid "PHP Exif support"
501
  msgstr "PHP podpora Exif"
502
 
503
- #: bws_menu.php:219
504
  msgid "PHP IPTC support"
505
  msgstr "PHP podpora IPTC"
506
 
507
- #: bws_menu.php:220
508
  msgid "PHP XML support"
509
  msgstr "PHP podpora XML"
510
 
511
- #: bws_menu.php:226
512
  msgid "Database"
513
  msgstr "Databáze"
514
 
515
- #: bws_menu.php:228
516
  msgid "WP DB version"
517
  msgstr "WP verze DB"
518
 
519
- #: bws_menu.php:229
520
  msgid "MySQL version"
521
  msgstr "Verze MYSQL"
522
 
523
- #: bws_menu.php:230
524
  msgid "SQL Mode"
525
  msgstr "Mód SQL"
526
 
527
- #: bws_menu.php:234
528
  msgid "Active Plugins"
529
  msgstr "Aktivní pluginy"
530
 
531
- #: bws_menu.php:239
532
  msgid "Inactive Plugins"
533
  msgstr "Neaktivní pluginy"
534
 
535
- #: bws_menu.php:260
536
  msgid "Please enter a valid email address."
537
  msgstr "Prosím vložte platnou e-mailovou adresu."
538
 
539
- #: bws_menu.php:262
540
  #, php-format
541
  msgid "Email with system info is sent to %s."
542
  msgstr "E-mail s informacemi o systému byl odeslán na %s."
543
 
544
- #: bws_menu.php:266
545
  msgid "Thank you for contacting us."
546
  msgstr "Děkujeme, že jste nás kontaktovali."
547
 
548
- #: bws_menu.php:289
549
  msgid "Sorry, email message could not be delivered."
550
  msgstr "Je nám líto, ale e-mail nemohl být doručen."
551
 
552
- #: bws_menu.php:305 bws_menu.php:309 bws_menu.php:358 deprecated.php:91
553
  msgid "Plugins"
554
  msgstr "Pluginy"
555
 
556
- #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:618 deprecated.php:92
557
  msgid "Themes"
558
  msgstr "Šablony"
559
 
560
- #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:648
561
  msgid "System status"
562
  msgstr "Stav systému"
563
 
564
- #: bws_menu.php:315
565
  msgid "Support"
566
  msgstr "Podpora"
567
 
568
- #: bws_menu.php:316
569
  msgid "Manage purchased licenses & subscriptions"
570
  msgstr "Spravovat zakoupené licence a předplatné"
571
 
572
- #: bws_menu.php:324
573
  #, php-format
574
  msgid "Get Access to %s+ Premium Plugins"
575
  msgstr "Získejte přístup k %s+ Premiovým pluginům"
576
 
577
- #: bws_menu.php:326
578
  msgid "Subscribe to Pro Membership"
579
  msgstr "Přihlaste se k PRO členství"
580
 
581
- #: bws_menu.php:334 bws_menu.php:345 class-bws-settings.php:760
582
- #: deprecated.php:227
583
  msgid "Check license key"
584
  msgstr "Zkontrolovat licenční klíč"
585
 
586
- #: bws_menu.php:337
587
  msgid "Enter your license key"
588
  msgstr "Vložte váš licenční klíč"
589
 
590
- #: bws_menu.php:343 bws_menu.php:570 bws_menu.php:579
591
- #: class-bws-settings.php:739 deprecated.php:259 deprecated.php:267
592
- #: deprecated.php:631 deprecated.php:703 deprecated.php:712
593
  msgid "Activate"
594
  msgstr "Aktivovat"
595
 
596
- #: bws_menu.php:359
597
  msgid "Upload Plugin"
598
  msgstr "Nahrát plugin"
599
 
600
- #: bws_menu.php:363
601
  #, php-format
602
  msgid ""
603
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -610,201 +600,207 @@ msgstr ""
610
  "problems with syndication feeds or other issues, pokuste se deaktivovat, "
611
  "nebo odstranit tento plugin."
612
 
613
- #: bws_menu.php:365
614
  msgid ""
615
  "Plugin could not be activated because it triggered a <strong>fatal error</"
616
  "strong>."
617
  msgstr ""
618
  "Plugin nemůže být aktivován, neboť způsobil <strong>závažnou chybu</strong>."
619
 
620
- #: bws_menu.php:368
621
  msgid "Plugin <strong>activated</strong>."
622
  msgstr "Plugin <strong>aktivován</strong>."
623
 
624
- #: bws_menu.php:375
625
- msgid "Installing Plugin"
626
- msgstr "Instalace pluginu"
 
 
627
 
628
- #: bws_menu.php:381
629
- msgid "Downloading install package from"
630
- msgstr "Stahování instalačního balíčku z"
631
 
632
- #: bws_menu.php:398 bws_menu.php:429 bws_menu.php:440 deprecated.php:388
633
- #: deprecated.php:410 deprecated.php:432
634
- msgid "Failed to download the zip archive. Please, upload the plugin manually"
635
- msgstr "Stažení zip archivu selhalo. Prosíme, nahrajte plugin ručně"
636
 
637
- #: bws_menu.php:406
638
- msgid "Unpacking the package"
639
- msgstr "Rozbalování balíčku"
640
 
641
- #: bws_menu.php:411 bws_menu.php:419
642
- msgid "Installing the plugin"
 
 
643
  msgstr "Instalace pluginu"
644
 
645
- #: bws_menu.php:415 deprecated.php:400
646
- msgid "Failed to open the zip archive. Please, upload the plugin manually"
647
- msgstr "Otevření zip archivu selhalo. Prosíme, nahrajte plugin ručně"
648
-
649
- #: bws_menu.php:422 deprecated.php:406
650
- msgid ""
651
- "Your server does not support either ZipArchive or Phar. Please, upload the "
652
- "plugin manually"
653
  msgstr ""
654
- "Váš server nepodporuje buď ZipArchive nebo Phar. Prosím, nahrajte plugin "
655
- "ručně"
656
 
657
- #: bws_menu.php:425
658
- #, php-format
659
- msgid "The plugin %s is successfully installed."
660
- msgstr "Plugin %s úspěšně nainstalován."
 
 
 
 
 
661
 
662
- #: bws_menu.php:432 deprecated.php:413
663
- msgid "UploadDir is not writable. Please, upload the plugin manually"
664
- msgstr "Nelze zapisovat do UploadDir. Prosím, nahrajte plugin ručně"
665
 
666
- #: bws_menu.php:437
667
- msgid "Activate Plugin"
668
- msgstr "Aktivovat plugin"
 
 
669
 
670
- #: bws_menu.php:437 bws_menu.php:443
671
  msgid "Return to BestWebSoft Panel"
672
  msgstr "Návrat na BestWebSoft panel"
673
 
674
- #: bws_menu.php:451 bws_menu.php:471 bws_menu.php:600
675
  msgid "All"
676
  msgstr "Vše"
677
 
678
- #: bws_menu.php:454 bws_menu.php:637
679
  msgid "Installed"
680
  msgstr "Instalováno"
681
 
682
- #: bws_menu.php:457
683
  msgid "Not Installed"
684
  msgstr "Neninstalováno"
685
 
686
- #: bws_menu.php:464
687
  msgid "Filter results"
688
  msgstr "Výsledky filtrování"
689
 
690
- #: bws_menu.php:467 bws_menu.php:596
691
  msgid "Category"
692
  msgstr "Rubriky"
693
 
694
- #: bws_menu.php:531
695
  msgid "Not installed"
696
  msgstr "Neninstalováno"
697
 
698
- #: bws_menu.php:535
699
  msgid "Renew to get updates"
700
  msgstr "Obnovit pro získání aktualizací"
701
 
702
- #: bws_menu.php:538
703
  #, php-format
704
  msgid "Update to v %s"
705
  msgstr "Aktualizovat na %s"
706
 
707
- #: bws_menu.php:550 bws_menu.php:573 bws_menu.php:582
708
- msgid "Install Now"
709
- msgstr "Instalovat nyní"
710
 
711
- #: bws_menu.php:556 class-bws-settings.php:157 class-bws-settings.php:1067
712
  msgid "Upgrade to Pro"
713
  msgstr "Aktualizovat na Pro"
714
 
715
- #: bws_menu.php:570 bws_menu.php:579
716
  msgid "Activate this plugin"
717
  msgstr "Aktivovat tento plugin"
718
 
719
- #: bws_menu.php:582
720
  msgid "Install this plugin"
721
  msgstr "Instalovat tento plugin"
722
 
723
- #: bws_menu.php:591
 
 
 
 
724
  msgid "Nothing found. Try another criteria."
725
  msgstr "Nic nenalezeno. Zkuste jiná kritéria."
726
 
727
  # podle, nebo taky od
728
- #: bws_menu.php:628
729
  #, php-format
730
  msgid "By %s"
731
  msgstr "podle %s"
732
 
733
- #: bws_menu.php:635
734
  msgid "Already Installed"
735
  msgstr "Již instalováno"
736
 
737
- #: bws_menu.php:645
738
  msgid "Browse More WordPress Themes"
739
  msgstr "Procházet další WordPress šablony"
740
 
741
- #: bws_menu.php:654
742
  msgid "Send to support"
743
  msgstr "Odeslat podpoře"
744
 
745
- #: bws_menu.php:661
746
  msgid "Send to custom email &#187;"
747
  msgstr "Odeslat na vlastní e-mail &#187;"
748
 
749
- #: class-bws-settings.php:136
750
  msgid "Information"
751
  msgstr "Informace"
752
 
753
- #: class-bws-settings.php:144
754
  msgid "Inactive"
755
  msgstr "Neaktivní"
756
 
757
- #: class-bws-settings.php:152
758
  msgid "Expired"
759
  msgstr "Expirované"
760
 
761
- #: class-bws-settings.php:155
762
  #, php-format
763
  msgid "%s day(-s) left"
764
  msgstr "%s dnů zbývá"
765
 
766
- #: class-bws-settings.php:161
767
  #, php-format
768
  msgid "Expired on %s"
769
  msgstr "Vypršela dne %s"
770
 
771
- #: class-bws-settings.php:161
772
  msgid "Renew Now"
773
  msgstr "Obnovit nyní"
774
 
775
- #: class-bws-settings.php:163
776
  msgid "Active"
777
  msgstr "Aktivní"
778
 
779
- #: class-bws-settings.php:168
780
  msgid "License"
781
  msgstr "Licence"
782
 
783
- #: class-bws-settings.php:171
784
  msgid "Status"
785
  msgstr "Stav"
786
 
787
- #: class-bws-settings.php:175
788
  msgid "Version"
789
  msgstr "Verze"
790
 
791
- #: class-bws-settings.php:285
792
  msgid "All plugin settings were restored."
793
  msgstr "Všechna nastavení pluginu byla obnovena."
794
 
795
- #: class-bws-settings.php:423
796
  msgid "Custom Code"
797
  msgstr "Vlastní kód"
798
 
799
- #: class-bws-settings.php:427 deprecated.php:498
800
  msgid "You do not have sufficient permissions to edit plugins for this site."
801
  msgstr "Nemáte dostatečná oprávnění pro úpravu pluginů tohoto webu."
802
 
803
- #: class-bws-settings.php:432 deprecated.php:620
804
  msgid "These styles will be added to the header on all pages of your site."
805
  msgstr "Tyto styly budou přidány do hlaviček všech stránek vašeho webu."
806
 
807
- #: class-bws-settings.php:435 deprecated.php:622
808
  #, php-format
809
  msgid ""
810
  "This PHP code will be hooked to the %s action and will be printed on front "
@@ -812,11 +808,11 @@ msgid ""
812
  msgstr ""
813
  "Tento PHP kód bude závislý na %s akci a bude zobrazen pouze na front endu."
814
 
815
- #: class-bws-settings.php:438
816
  msgid "These code will be added to the header on all pages of your site."
817
  msgstr "Tento kód bude přidán do záhlaví všech stránek vašeho webu."
818
 
819
- #: class-bws-settings.php:446 deprecated.php:646
820
  #, php-format
821
  msgid ""
822
  "You need to make this files writable before you can save your changes. See "
@@ -825,98 +821,83 @@ msgstr ""
825
  "Před tím, než budete moci vaše změny uložit, nastavte těmto souborům "
826
  "oprávnění pro zápis. Podívejte se %s na Kodex %s pro více informací."
827
 
828
- #: class-bws-settings.php:456 deprecated.php:628
829
  msgid "Browsing"
830
  msgstr "Procházení"
831
 
832
- #: class-bws-settings.php:461
833
  #, php-format
834
  msgid "Activate custom %s code."
835
  msgstr "Aktivovat vlastní %s kód."
836
 
837
- #: class-bws-settings.php:469 deprecated.php:635
838
  #, php-format
839
  msgid "Learn more about %s"
840
  msgstr "Dozvědět se více o %s"
841
 
842
- #: class-bws-settings.php:531
843
  msgid "Miscellaneous Settings"
844
  msgstr "Různá nastavení"
845
 
846
- #: class-bws-settings.php:540 class-bws-settings.php:595
847
  #, php-format
848
  msgid ""
849
  "It is prohibited to change %s settings on this site in the %s network "
850
  "settings."
851
  msgstr "Je zakázáno měnit nastavení %s na této stránce v %s nastavení sítě."
852
 
853
- #: class-bws-settings.php:543 class-bws-settings.php:598
854
  #, php-format
855
  msgid ""
856
  "It is prohibited to view %s settings on this site in the %s network settings."
857
  msgstr "Je zobrazit nastavení %s na této stránce v %s nastavení sítě."
858
 
859
- #: class-bws-settings.php:552
860
  msgid "Pro Options"
861
  msgstr "PRO nastavení"
862
 
863
- #: class-bws-settings.php:556
864
  msgid "Enable to display plugin Pro options."
865
  msgstr "Povolit zobrazení PRO voleb pluginu."
866
 
867
- #: class-bws-settings.php:562
868
  msgid "Track Usage"
869
  msgstr "Sběr statistik"
870
 
871
- #: class-bws-settings.php:566
872
  msgid ""
873
  "Enable to allow tracking plugin usage anonymously in order to make it better."
874
  msgstr ""
875
  "Umožnit anonymní sledování využití pluginu tak, aby mohl být dále vylepšován."
876
 
877
- #: class-bws-settings.php:571
878
  msgid "Default Settings"
879
  msgstr "Výchozí nastavení"
880
 
881
- #: class-bws-settings.php:573
882
  msgid "Restore Settings"
883
  msgstr "Obnovit nastavení"
884
 
885
- #: class-bws-settings.php:574
886
  msgid "This will restore plugin settings to defaults."
887
  msgstr "Toto obnoví veškerá nastavení pluginu na výchozí hodnoty."
888
 
889
- #: class-bws-settings.php:586
890
  msgid "Import / Export"
891
  msgstr "Import / Export"
892
 
893
- #: class-bws-settings.php:702 class-bws-settings.php:735
894
- #: class-bws-settings.php:757
895
  msgid "License Key"
896
  msgstr "Licenční klíč"
897
 
898
- #: class-bws-settings.php:725
899
- msgid "Congratulations! Pro license is activated successfully."
900
- msgstr "Gratulujeme! PRO licence byla úspěšně aktivována."
901
-
902
- #: class-bws-settings.php:726
903
- #, php-format
904
- msgid "You will be automatically redirected to the %s in %s seconds."
905
- msgstr "Budete automaticky přesměrováni na %s za %s sekund."
906
-
907
- #: class-bws-settings.php:726
908
- msgid "Settings page"
909
- msgstr "Stránka nastavení"
910
-
911
- #: class-bws-settings.php:741
912
  #, php-format
913
  msgid "Enter your license key to activate %s and get premium plugin features."
914
  msgstr ""
915
  "Vložte váš licenční klíč pro aktivaci %s a získejte tak prémiové fukcе "
916
  "pluginu."
917
 
918
- #: class-bws-settings.php:744 class-bws-settings.php:931 deprecated.php:363
919
- #: deprecated.php:706
920
  msgid ""
921
  "Unfortunately, you have exceeded the number of available tries per day. "
922
  "Please, upload the plugin manually."
@@ -924,12 +905,12 @@ msgstr ""
924
  "Bohužel, jste překročili počet dostupných pokusů za den. Prosím, nahrejte "
925
  "plugin ručně."
926
 
927
- #: class-bws-settings.php:747 deprecated.php:697
928
  #, php-format
929
  msgid "Start Your Free %s-Day Trial Now"
930
  msgstr "Vyzkoušejte %s-denní zkušební verzi zdarma nyní"
931
 
932
- #: class-bws-settings.php:762
933
  msgid ""
934
  "If necessary, you can check if the license key is correct or reenter it in "
935
  "the field below."
@@ -937,15 +918,15 @@ msgstr ""
937
  "V případě potřeby zkontrolujte, je-li licenční klíč správně zadán, případně "
938
  "jej do pole níže vložte znova."
939
 
940
- #: class-bws-settings.php:767
941
  msgid "Manage License Settings"
942
  msgstr "Správa nastavení licencí"
943
 
944
- #: class-bws-settings.php:769
945
  msgid "Login to Client Area"
946
  msgstr "Přihlášení do klientská zóny"
947
 
948
- #: class-bws-settings.php:771
949
  msgid ""
950
  "Manage active licenses, download BWS products, and view your payment history "
951
  "using BestWebSoft Client Area."
@@ -953,12 +934,11 @@ msgstr ""
953
  "Správa aktivních licencí, stahování BWS produktů a zobrazení historie plateb "
954
  "v BestWebSoft klientské zóně."
955
 
956
- #: class-bws-settings.php:826 class-bws-settings.php:929 deprecated.php:141
957
- #: deprecated.php:361
958
  msgid "This license key is bound to another site."
959
  msgstr "Tento licenční klíč je přidružen k jinému webu."
960
 
961
- #: class-bws-settings.php:828 deprecated.php:143
962
  msgid ""
963
  "This license key is valid, but Your license has expired. If you want to "
964
  "update our plugin in future, you should extend the license."
@@ -966,11 +946,11 @@ msgstr ""
966
  "Tento licenční klíč je platný, ale vaše licence vypršela. Chcete-li náš "
967
  "plugin v budoucnosti aktualizovat, měli by jste licenci prodloužit."
968
 
969
- #: class-bws-settings.php:830 deprecated.php:145
970
  msgid "Unfortunately, you have exceeded the number of available tries."
971
  msgstr "Bohužel, překročili jste dostupný počet pokusů."
972
 
973
- #: class-bws-settings.php:832 deprecated.php:147
974
  msgid ""
975
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
976
  "The Pro Trial license can be installed only once."
@@ -978,18 +958,18 @@ msgstr ""
978
  "Bohužel, tato zkušební Pro licence již pro tuto doménu byla použita. "
979
  "Zkušební Pro licence může být instalována pouze jedenkrát."
980
 
981
- #: class-bws-settings.php:837 deprecated.php:151
982
  msgid "The Pro Trial license key is valid."
983
  msgstr "Licenční klíč zkušební Pro verze je platný."
984
 
985
- #: class-bws-settings.php:845 deprecated.php:159 deprecated.php:246
986
  #, php-format
987
  msgid ""
988
  "In order to continue using the plugin it is necessary to buy a %s license."
989
  msgstr ""
990
  "Pokud chcete nadále využívat tento plugin, je nutné zakoupit %s licenci."
991
 
992
- #: class-bws-settings.php:933
993
  #, php-format
994
  msgid ""
995
  "Unfortunately, Your license has expired. To continue getting top-priority "
@@ -998,155 +978,139 @@ msgstr ""
998
  "Bohužel, Vaše licence vypršela. Chcete-li mít nadále přístup k top-prioritní "
999
  "podpoře a aktualizacím pluginu měli byste ji prodloužit ve vašem %s."
1000
 
1001
- #: class-bws-settings.php:959 class-bws-settings.php:981
1002
- #: class-bws-settings.php:1003
1003
- msgid "Failed to download the zip archive. Please, upload the plugin manually."
1004
- msgstr "Stažení zip archivu selhalo. Nahrajte prosím plugin ručně."
1005
-
1006
- #: class-bws-settings.php:971
1007
- msgid "Failed to open the zip archive. Please, upload the plugin manually."
1008
- msgstr "Otevření zip archivu selhalo. Nahrajte prosím plugin ručně."
1009
-
1010
- #: class-bws-settings.php:977
1011
- msgid ""
1012
- "Your server does not support either ZipArchive or Phar. Please, upload the "
1013
- "plugin manually."
1014
- msgstr ""
1015
- "Váš server nepodporuje buď ZipArchive nebo Phar. Prosím, nahrajte plugin "
1016
- "ručně."
1017
-
1018
- #: class-bws-settings.php:984
1019
- msgid "UploadDir is not writable. Please, upload the plugin manually."
1020
- msgstr "Nelze zapisovat do UploadDir. Prosím, nahrajte plugin ručně."
1021
-
1022
- #: class-bws-settings.php:1042 deprecated.php:464
1023
  msgid "Please, enter Your license key"
1024
  msgstr "Prosím, vložte váš licenční klíč"
1025
 
1026
- #: class-bws-settings.php:1054
1027
  msgid "Need Help?"
1028
  msgstr "Potřebujete pomoci?"
1029
 
1030
- #: class-bws-settings.php:1056
1031
  msgid "Read the Instruction"
1032
  msgstr "Přečíst si instrukce"
1033
 
1034
- #: class-bws-settings.php:1060
1035
  msgid "Watch the Video"
1036
  msgstr "Přehrát video"
1037
 
1038
- #: class-bws-settings.php:1071
1039
  msgid "Start Your Free Trial"
1040
  msgstr "Vyzkoušejte po omezenou dobu"
1041
 
1042
- #: deactivation-form.php:27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1043
  msgid "Need help? We are ready to answer your questions."
1044
  msgstr "Potřebujete pomoc? Rádi zodpovíme Vaše dotazy."
1045
 
1046
- #: deactivation-form.php:27
1047
  msgid "Contact Support"
1048
  msgstr "Kontaktujte podporu"
1049
 
1050
- #: deactivation-form.php:32
1051
  msgid "The plugin is not working"
1052
  msgstr "Plugin nefunguje"
1053
 
1054
- #: deactivation-form.php:34
1055
- msgid "Kindly share what didn't work so we can fix it in future updates..."
1056
- msgstr ""
1057
- "Dejte nám prosím vědět, co nefungovalo, abychom to v budoucích aktualizacích "
1058
- "mohli opravit..."
1059
-
1060
- #: deactivation-form.php:38
1061
  msgid "The plugin didn't work as expected"
1062
  msgstr "Plugin nefungoval podle mých očekávání"
1063
 
1064
- #: deactivation-form.php:40
1065
- msgid "What did you expect?"
1066
- msgstr "Co jste očekávali?"
1067
-
1068
- #: deactivation-form.php:44
1069
  msgid "The plugin suddenly stopped working"
1070
  msgstr "Plugin přestal náhle pracovat"
1071
 
1072
- #: deactivation-form.php:51
1073
  msgid "The plugin broke my site"
1074
  msgstr "Plugin mi rozbil web"
1075
 
1076
- #: deactivation-form.php:58
1077
  msgid "I couldn't understand how to get it work"
1078
  msgstr "Nemohl jsem pochopit, jak to zprovoznit"
1079
 
1080
- #: deactivation-form.php:65
1081
  msgid "I found a better plugin"
1082
  msgstr "Našel jsem lepší plugin"
1083
 
1084
- #: deactivation-form.php:67
1085
- msgid "What's the plugin name?"
1086
- msgstr "Jaké je jméno pluginu?"
1087
-
1088
- #: deactivation-form.php:71
1089
  msgid "The plugin is great, but I need specific feature that you don't support"
1090
  msgstr ""
1091
  "Plugin je skvělý, ale já potřebuji specifickou funkci, kterou nepodporuje"
1092
 
1093
- #: deactivation-form.php:73
1094
- msgid "What feature?"
1095
- msgstr "Jakou funkci?"
1096
-
1097
- #: deactivation-form.php:77
1098
  msgid "I no longer need the plugin"
1099
  msgstr "Nadále již tento plugin nepotřebuji"
1100
 
1101
- #: deactivation-form.php:83
1102
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1103
  msgstr "Jedná se o dočasnou deaktivaci, pouze ladím problém"
1104
 
1105
- #: deactivation-form.php:89
1106
  msgid "Other"
1107
  msgstr "Ostatní"
1108
 
1109
- #: deactivation-form.php:123
1110
  msgid "Quick Feedback"
1111
  msgstr "Rychlá zpětná vazba"
1112
 
1113
- #: deactivation-form.php:124
1114
  msgid "If you have a moment, please let us know why you are deactivating"
1115
  msgstr "Máte-li chvilku, sdělte nám důvod, proč deaktivujete tento plugin"
1116
 
1117
- #: deactivation-form.php:127
1118
- msgid "Send website data and allow to contact me back"
1119
- msgstr "Odeslat data webu a umožnit zpětně mě kontaktovat"
1120
-
1121
- #: deactivation-form.php:132
1122
- msgid "Cancel"
1123
- msgstr "Zrušit"
1124
-
1125
- #: deactivation-form.php:233
1126
- msgid "Processing"
1127
- msgstr "Zpracovává se"
1128
 
1129
- #: deactivation-form.php:262
1130
- msgid "Submit & Deactivate"
 
 
1131
  msgstr "Odeslat a vypnout"
1132
 
1133
- #: deactivation-form.php:277
1134
  msgid "Please tell us the reason so we can improve it."
1135
  msgstr "Prosím, prozraďte nám důvod, abychom jej mohli zlepšit."
1136
 
1137
- #: deactivation-form.php:345
1138
- msgid "Deactivate"
1139
- msgstr "Vypnout"
1140
-
1141
- #: deprecated.php:93
1142
  msgid "System Status"
1143
  msgstr "Stav systému"
1144
 
1145
- #: deprecated.php:204
1146
- msgid "Please, enter your license key"
1147
- msgstr "Prosím, vložte váš licenční klíč"
1148
-
1149
- #: deprecated.php:223
1150
  msgid ""
1151
  "If necessary, you can check if the license key is correct or reenter it in "
1152
  "the field below. You can find your license key on your personal page - "
@@ -1156,7 +1120,7 @@ msgstr ""
1156
  "jej do pole níže vložte znova. Váš licenční klíč najdete na vaší osobní "
1157
  "stránce - Klientská zóna - na našem webu"
1158
 
1159
- #: deprecated.php:223
1160
  msgid ""
1161
  "(your username is the email address specified during the purchase). If "
1162
  "necessary, please submit \"Lost your password?\" request."
@@ -1164,127 +1128,115 @@ msgstr ""
1164
  "(vaše uživatelské jméno je e-mailová adresa uvedena při nákupu). Pokud je to "
1165
  "nutné, prosím odešlete \"Lost your password?\" požadavek."
1166
 
1167
- #: deprecated.php:246
1168
  msgid "After that, you can activate it by entering your license key."
1169
  msgstr "Poté jej lze snadno aktivovat zadáním licenčního klíče."
1170
 
1171
- #: deprecated.php:249 deprecated.php:691
1172
  msgid "License key can be found in the"
1173
  msgstr "Licenční klíč najdete v"
1174
 
1175
- #: deprecated.php:251 deprecated.php:693
1176
  msgid "(your username is the email address specified during the purchase)."
1177
  msgstr "(vaše uživatelské jméno je e-mailová adresa uvedená při nákupu)."
1178
 
1179
- #: deprecated.php:279
1180
  msgid ""
1181
  "Congratulations! The Pro license of the plugin is activated successfully."
1182
  msgstr "Gratulujeme! PRO licence pluginu je úspěšně aktivována."
1183
 
1184
- #: deprecated.php:281 deprecated.php:672
1185
  msgid "Please, go to"
1186
  msgstr "Prosím, přejděte na"
1187
 
1188
- #: deprecated.php:281 deprecated.php:672
1189
  msgid "the setting page"
1190
  msgstr "stránka nastavení"
1191
 
1192
- #: deprecated.php:282 deprecated.php:673
1193
- msgid "You will be redirected automatically in 5 seconds."
1194
- msgstr "Budete automaticky přesměrováni za 5 sekund."
1195
-
1196
- #: deprecated.php:316
1197
- msgid "Check premium options on the plugin settings page!"
1198
- msgstr "Zkontrolujte prémiové možnosti na stránce nastavení pluginů!"
1199
-
1200
- #: deprecated.php:479
1201
  msgid "Restore all plugin settings to defaults"
1202
  msgstr "Obnovit veškerá nastavení pluginu na výchozí hodnoty"
1203
 
1204
- #: deprecated.php:481
1205
  msgid "Restore settings"
1206
  msgstr "Obnovit nastavení"
1207
 
1208
- #: deprecated.php:550 deprecated.php:577
1209
- #, php-format
1210
- msgid "File %s edited successfully."
1211
- msgstr "Soubor %s byl úspěšně upraven."
1212
-
1213
- #: deprecated.php:552 deprecated.php:579
1214
- msgid "Not enough permissions to create or update the file"
1215
- msgstr "Nedostatečná oprávnění pro vytvoření či úpravu souboru"
1216
-
1217
- #: deprecated.php:582
1218
- msgid "Not enough permissions to create the file"
1219
- msgstr "Nedostatečná oprávnění pro vytvoření souboru"
1220
-
1221
- #: deprecated.php:626
1222
- msgid "Editing"
1223
- msgstr "Úprava"
1224
-
1225
- #: deprecated.php:670
1226
  msgid ""
1227
  "Congratulations! Pro version of the plugin is installed and activated "
1228
  "successfully."
1229
  msgstr "Gratulujeme! PRO verze pluginu byla úspěšně instalována a aktivována."
1230
 
1231
- #: deprecated.php:680
1232
  msgid "Show Pro features"
1233
  msgstr "Zobrazit Pro vlastnosti"
1234
 
1235
- #: deprecated.php:687
1236
  msgid "Enter your license key to install and activate"
1237
  msgstr "Vložte váš licenční klíč pro instalaci a aktivaci"
1238
 
1239
- #: deprecated.php:689
1240
  msgid "version of the plugin."
1241
  msgstr "verze pluginu."
1242
 
1243
- #: product_list.php:7
1244
  msgid "Admin Tools"
1245
  msgstr "Administrační nástroje"
1246
 
1247
- #: product_list.php:8
1248
  msgid "Content"
1249
  msgstr "Obsah"
1250
 
1251
- #: product_list.php:9
1252
  msgid "eCommerce"
1253
  msgstr "eCommerce"
1254
 
1255
- #: product_list.php:10
1256
  msgid "Marketing"
1257
  msgstr "Marketing"
1258
 
1259
- #: product_list.php:11
1260
  msgid "Navigation"
1261
  msgstr "Navigace"
1262
 
1263
- #: product_list.php:12
1264
  msgid "Recommended"
1265
  msgstr "Doporučeno"
1266
 
1267
- #: product_list.php:13
1268
  msgid "Security"
1269
  msgstr "Bezpečnost"
1270
 
1271
- #: product_list.php:14
1272
  msgid "SEO"
1273
  msgstr "SEO"
1274
 
1275
- #: product_list.php:15
1276
  msgid "SMM"
1277
  msgstr "SMM"
1278
 
1279
- #: product_list.php:22
 
 
 
 
1280
  msgid "Best secure captcha plugin to protect your WordPress forms."
1281
  msgstr "Nejbezpečnější captcha plugin k ochraně WordPress formulářů."
1282
 
1283
- #: product_list.php:32
1284
- msgid "Create your personal car rental/booking and reservation website."
1285
- msgstr "Vytvořte si osobní rezervační web - auta/hotely."
 
 
 
 
 
 
 
 
 
1286
 
1287
- #: product_list.php:42
1288
  msgid ""
1289
  "Allow customers to reach you using secure contact form plugin any website "
1290
  "must have."
@@ -1292,37 +1244,33 @@ msgstr ""
1292
  "Umožněte zákazníkům kontaktovat vás pomocí pluginu zabezpečeného kontaktního "
1293
  "formuláře, tohle musí mít každý web."
1294
 
1295
- #: product_list.php:52
1296
  msgid "Add unlimited number of contact forms to WordPress website."
1297
  msgstr "Přidávejte neomezený počet kontaktních formulářů na WordPress web."
1298
 
1299
- #: product_list.php:62
1300
  msgid "Save and manage Contact Form messages. Never lose important data."
1301
  msgstr ""
1302
  "Ukládejte a spravujte zprávy z kontaktního formuláře. Už nikdy neztraťte "
1303
  "důležitá data."
1304
 
1305
- #: product_list.php:72
1306
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1307
  msgstr ""
1308
  "Přidávejte neomezený počet vlastních stránek do WordPress admin nástěnky."
1309
 
1310
- #: product_list.php:79
1311
- msgid "Add custom fields to WordPress website search results."
1312
- msgstr "Přidávejte vlastní pole do výsledků vyhledání na webu WordPress."
1313
-
1314
- #: product_list.php:86
1315
  msgid ""
1316
  "Add custom post types and taxonomies to WordPress website search results."
1317
  msgstr ""
1318
  "Přidávejte vlastní typy příspěvků a taxonomie do výsledků vyhledání na webu "
1319
  "WordPress."
1320
 
1321
- #: product_list.php:96
1322
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1323
  msgstr "Přidávejte darovací tlačítka PayPal a 2CO pro příjem příspěvků."
1324
 
1325
- #: product_list.php:103
1326
  msgid ""
1327
  "Get latest error log messages to diagnose website problems. Define and fix "
1328
  "issues faster."
@@ -1330,7 +1278,7 @@ msgstr ""
1330
  "Získejte nejnovější zprávy z error logu při diagnostice problémů s webem. "
1331
  "Definujte a opravte problémy rychleji."
1332
 
1333
- #: product_list.php:110
1334
  msgid ""
1335
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1336
  "widgets."
@@ -1338,7 +1286,7 @@ msgstr ""
1338
  "Přidávejte Facebooková tlačítka sledovat, to se mi líbí a sdílet do "
1339
  "WordPress příspěvků, stránek a widgetů."
1340
 
1341
- #: product_list.php:120
1342
  msgid ""
1343
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1344
  "clicks."
@@ -1346,15 +1294,7 @@ msgstr ""
1346
  "Přidávejte na váš WordPress web krásné galerie, alba a obrázky během "
1347
  "několika kliknutí."
1348
 
1349
- #: product_list.php:130
1350
- msgid ""
1351
- "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
1352
- "posts, pages and widgets."
1353
- msgstr ""
1354
- "Přidávejte Google +1 tlačítka sdílet, sledovat, Hangout a profile badge do "
1355
- "WordPress příspěvků, stránek a widgetů."
1356
-
1357
- #: product_list.php:140
1358
  msgid ""
1359
  "Stronger security solution which protects your WordPress website from hacks "
1360
  "and unauthorized login attempts."
@@ -1362,7 +1302,7 @@ msgstr ""
1362
  "Silnější bezpečnostní řešení, které chrání vaše webové stránky WordPress od "
1363
  "hacků a pokusů o neoprávněné přihlášení."
1364
 
1365
- #: product_list.php:150
1366
  msgid ""
1367
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1368
  "results, categories, tags, and widgets."
@@ -1370,26 +1310,28 @@ msgstr ""
1370
  "Přidávejte reklamy Adsense do webu WordPress, příspěvky, vlastní příspěvky, "
1371
  "výsledky vyhledávání, rubriky, štítky a widgety."
1372
 
1373
- #: product_list.php:160
1374
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1375
  msgstr ""
1376
  "Přidávejte Google Analytics kód do WordPress webu a sledujte základní "
1377
  "statistiky."
1378
 
1379
- #: product_list.php:170
1380
- msgid ""
1381
- "Protect WordPress website forms from spam entries with Google Captcha "
1382
- "(reCaptcha)."
 
 
1383
  msgstr ""
1384
  "Chraňte WordPress webové formuláře před spamem s Google Captcha (\"reCAPTCHA"
1385
  "\")."
1386
 
1387
- #: product_list.php:180
1388
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1389
  msgstr ""
1390
  "Přidávejte vlastní mapy Google do WordPress příspěvků, stránek a widgetů."
1391
 
1392
- #: product_list.php:190
1393
  msgid ""
1394
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1395
  "your blog."
@@ -1397,7 +1339,7 @@ msgstr ""
1397
  "Generujte a přidávejte sitemap.xml na vaše WordPress weby. Pomožte "
1398
  "vyhledávačům indexovat váš blog."
1399
 
1400
- #: product_list.php:200
1401
  msgid ""
1402
  "Replace external WordPress website links with Google shortlinks and track "
1403
  "click stats."
@@ -1405,7 +1347,7 @@ msgstr ""
1405
  "Nahradit externí odkazy WordPress webu pomocí Google shortlinks a sledujte "
1406
  "statistiky kliknutí."
1407
 
1408
- #: product_list.php:207
1409
  msgid ""
1410
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1411
  "hostnames, etc."
@@ -1413,7 +1355,7 @@ msgstr ""
1413
  "Chráňte WordPress web– povolte či odepřete přístup pro určité IP adresy, "
1414
  "hostnames, atd."
1415
 
1416
- #: product_list.php:217
1417
  msgid ""
1418
  "Create your personal job board and listing WordPress website. Search jobs, "
1419
  "submit CV/resumes, choose candidates."
@@ -1421,7 +1363,7 @@ msgstr ""
1421
  "Vytvořte si osobní nástěnku pracovních míst na WordPress webu. Hledání "
1422
  "zaměstnání, odeslání CV/životopisu, výběr kandidátů."
1423
 
1424
- #: product_list.php:224
1425
  msgid ""
1426
  "Protect WordPress website against brute force attacks. Limit rate of login "
1427
  "attempts."
@@ -1429,7 +1371,7 @@ msgstr ""
1429
  "Chraňte WordPress web proti útokům hrubou silou. Omezte počet pokusů o "
1430
  "přihlášení."
1431
 
1432
- #: product_list.php:234
1433
  msgid ""
1434
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1435
  "5 plugins included – profile, insider, etc."
@@ -1437,7 +1379,7 @@ msgstr ""
1437
  "Přidávejte LinkedIn tlačítka sdílet a sledovat do WordPress příspěvků, "
1438
  "stránek a widgetů. 5 pluginů zahrnuje - profil, insider, atd."
1439
 
1440
- #: product_list.php:244
1441
  msgid ""
1442
  "Translate WordPress website content to other languages manually. Create "
1443
  "multilingual pages, posts, widgets, menus, etc."
@@ -1445,7 +1387,7 @@ msgstr ""
1445
  "Přeložte manuálně obsah webu WordPress do jiných jazyků. Vytvořte "
1446
  "vícejazyčné stránky, příspěvky, widgety, menu, atd."
1447
 
1448
- #: product_list.php:254
1449
  msgid ""
1450
  "Add customizable pagination to WordPress website. Split long content to "
1451
  "multiple pages for better navigation."
@@ -1453,7 +1395,7 @@ msgstr ""
1453
  "Přidávejte nastavitelné stránkování na web WordPress. Pro lepší navigaci "
1454
  "rozdělte dlouhý obsah na více stránek."
1455
 
1456
- #: product_list.php:264
1457
  msgid ""
1458
  "Generate PDF files and print WordPress posts/pages. Customize document "
1459
  "header/footer styles and appearance."
@@ -1461,7 +1403,7 @@ msgstr ""
1461
  "Generujte PDF soubory a tiskněte WordPress příspěvky/stránky. Vlastní "
1462
  "záhlaví/zápatí dokumentu, styly a vzhled."
1463
 
1464
- #: product_list.php:274
1465
  msgid ""
1466
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1467
  "Profile) to WordPress posts, pages and widgets."
@@ -1469,7 +1411,7 @@ msgstr ""
1469
  "Přidávejte Pinterest tlačítka sledovat a připnout a profilový widget (Pin, "
1470
  "Board, Profile) do WordPress příspěvků, stránek a widgetů."
1471
 
1472
- #: product_list.php:284
1473
  msgid ""
1474
  "Create your personal portfolio WordPress website. Manage and showcase past "
1475
  "projects to get more clients."
@@ -1477,13 +1419,13 @@ msgstr ""
1477
  "Vytvořte si osobní portfolio WordPress webů. Spravujte a představte své "
1478
  "nedávné projekty a získejte více klientů."
1479
 
1480
- #: product_list.php:294
1481
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1482
  msgstr ""
1483
  "Exportujte snadno vaše WordPress příspěvky do souboru formátu CSV. "
1484
  "Konfigurujte pořadí dat."
1485
 
1486
- #: product_list.php:301
1487
  msgid ""
1488
  "Add extra fields to default WordPress user profile. The easiest way to "
1489
  "create and manage additional custom values."
@@ -1491,7 +1433,7 @@ msgstr ""
1491
  "Přidávejte další pole do výchozího profilu uživatele WordPress. "
1492
  "Nejjednodušší způsob, jak vytvořit a spravovat vlastní hodnoty."
1493
 
1494
- #: product_list.php:308
1495
  msgid ""
1496
  "Add and display HTML advertisement banner on WordPress website. Customize "
1497
  "bar styles and appearance."
@@ -1499,7 +1441,7 @@ msgstr ""
1499
  "Přidávejte a zobrazujte HTML reklamní banner na webu WordPress. Úpravte styl "
1500
  "a vzhled lišt."
1501
 
1502
- #: product_list.php:318
1503
  msgid ""
1504
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1505
  "widgets."
@@ -1507,7 +1449,7 @@ msgstr ""
1507
  "Přidávejte přizpůsobitelné nabídky a bloky s tipy do WordPress příspěvků, "
1508
  "stránek a widgetů."
1509
 
1510
- #: product_list.php:325
1511
  msgid ""
1512
  "Add rating plugin to your WordPress website to receive feedback from your "
1513
  "customers."
@@ -1515,7 +1457,7 @@ msgstr ""
1515
  "Přidávejte do vašeho WordPress webu plugin hodnocení k získání zpětné vazby "
1516
  "od vašich zákazníků."
1517
 
1518
- #: product_list.php:332
1519
  msgid ""
1520
  "Create your personal real estate WordPress website. Sell, rent and buy "
1521
  "properties. Add, search and browse listings easily."
@@ -1524,7 +1466,7 @@ msgstr ""
1524
  "pronajímejte a kupujte nemovitosti. Snadno přidejte hledání a procházení "
1525
  "seznamy."
1526
 
1527
- #: product_list.php:342
1528
  msgid ""
1529
  "Add related, featured, latest, and popular posts to your WordPress website. "
1530
  "Connect your blog readers with a relevant content."
@@ -1532,7 +1474,7 @@ msgstr ""
1532
  "Přidávejte související, nejlepší, nejnovější a populární příspěvky do vašeho "
1533
  "WordPress webu. Propojte čtenáře vašeho blogu s příslušným obsahem."
1534
 
1535
- #: product_list.php:349
1536
  msgid ""
1537
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1538
  "settings and detailed reports."
@@ -1540,7 +1482,7 @@ msgstr ""
1540
  "Odesílejte hromadné e-maily WordPress uživatelům. Vlastní šablony, rozšířené "
1541
  "nastavení a podrobné reporty."
1542
 
1543
- #: product_list.php:359
1544
  msgid ""
1545
  "The best responsive slider plugin for your WordPress website. Create "
1546
  "beautifully animated slides just in a few clicks."
@@ -1548,7 +1490,7 @@ msgstr ""
1548
  "Nejlepší responzivní slider plugin pro váše WordPress web. Vytvořte krásné "
1549
  "animované snímky během pár kliknutí."
1550
 
1551
- #: product_list.php:366
1552
  msgid ""
1553
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1554
  "Yahoo, Hotmail and other services."
@@ -1556,15 +1498,19 @@ msgstr ""
1556
  "Konfigurujte SMTP server pro příjem e-mailových zpráv z WordPress na Gmail, "
1557
  "Yahoo, Hotmail a dalších službách."
1558
 
1559
- #: product_list.php:373
 
 
 
 
1560
  msgid ""
1561
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1562
- "FB, Twitter, G+1, Pinterest, LinkedIn."
1563
  msgstr ""
1564
  "Přidávejte tlačítka sociálních sítí a widgety do WordPress příspěvků, "
1565
  "stránek a widgetů. Facebook, Twitter, G+1, Pinterest, LinkedIn."
1566
 
1567
- #: product_list.php:383
1568
  msgid ""
1569
  "Add social media login, registration, and commenting to your WordPress "
1570
  "website."
@@ -1572,7 +1518,7 @@ msgstr ""
1572
  "Přidávejte na váš WordPress web login, registraci či komentáře "
1573
  "prostřednictvím sociálních sítí."
1574
 
1575
- #: product_list.php:390
1576
  msgid ""
1577
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1578
  "Collect data and subscribe your users."
@@ -1581,7 +1527,7 @@ msgstr ""
1581
  "příspěvků, stránek a widgetů. Shromažďujte data a přihlaste k odběru vaše "
1582
  "uživatele."
1583
 
1584
- #: product_list.php:400
1585
  msgid ""
1586
  "Add testimonials and feedbacks from your customers to WordPress website "
1587
  "posts, pages, and widgets."
@@ -1589,7 +1535,7 @@ msgstr ""
1589
  "Přidávejte potvrzení a zpětnou vazbu od vašich zákazníků do WordPress "
1590
  "příspěvků, stránek a widgetů."
1591
 
1592
- #: product_list.php:407
1593
  msgid ""
1594
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1595
  "attendance and generate reports."
@@ -1597,7 +1543,7 @@ msgstr ""
1597
  "Nejlepší timesheet plugin pro WordPress. Sledujte časy zaměstnanců, "
1598
  "kontrolujte jejich přítomnost a generujte sestavy."
1599
 
1600
- #: product_list.php:417
1601
  msgid ""
1602
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1603
  "and pages."
@@ -1605,7 +1551,7 @@ msgstr ""
1605
  "Přidávejte Twitter tlačítka Sledovat, Tweetnout a Zmínit do WordPress "
1606
  "příspěvků a stránek."
1607
 
1608
- #: product_list.php:427
1609
  msgid ""
1610
  "Automatically check and update WordPress website core with all installed "
1611
  "plugins and themes to the latest versions."
@@ -1613,7 +1559,7 @@ msgstr ""
1613
  "Automaticky kontrolujte a aktualizujte na nejnovější verzi WordPress jádro i "
1614
  "všechny nainstalované pluginy a šablony."
1615
 
1616
- #: product_list.php:437
1617
  msgid ""
1618
  "Powerful user role management plugin for WordPress website. Create, edit, "
1619
  "copy, and delete user roles."
@@ -1621,7 +1567,7 @@ msgstr ""
1621
  "Plugin robustní správy užiatelů pro WordPress web. Vytvářejte, upravujte, "
1622
  "kopírujte a odstraňujte uživatelské role."
1623
 
1624
- #: product_list.php:447
1625
  msgid ""
1626
  "Display live count of online visitors who are currently browsing your "
1627
  "WordPress website."
@@ -1629,10 +1575,128 @@ msgstr ""
1629
  "Zobrazujte počet aktivních online návštěvníků, kteří dané chvíli procházejí "
1630
  "váš WordPress web."
1631
 
1632
- #: product_list.php:457
1633
  msgid ""
1634
  "Backup and export Zendesk Help Center content automatically to your "
1635
  "WordPress website database."
1636
  msgstr ""
1637
  "Automaticky zálohujte a exportujte obsah centra nápovědy Zendesk do databáze "
1638
  "vašeho WordPress webu."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-02-15 10:54+0200\n"
6
+ "PO-Revision-Date: 2021-02-15 10:54+0200\n"
7
  "Last-Translator: Mik013\n"
8
  "Language-Team: Mik013\n"
9
  "Language: cs_CZ\n"
13
  "X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 2.4.2\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: bws_functions.php:73 bws_functions.php:239
20
  msgid "requires"
21
  msgstr "vyžaduje"
22
 
53
  msgid "Need help?"
54
  msgstr "Potřebujete pomoci?"
55
 
56
+ #: bws_functions.php:104 bws_functions.php:949 class-bws-settings.php:1082
57
  msgid "Visit Help Center"
58
  msgstr "Navštivte Centrum pomoci"
59
 
61
  msgid "Want to support the plugin?"
62
  msgstr "Chcete podpořit plugin?"
63
 
64
+ #: bws_functions.php:108 bws_menu.php:529
65
  msgid "Donate"
66
  msgstr "Darujte"
67
 
81
  "stránce - Klientské zóně. Důrazně doporučujeme, aby jste tento problém "
82
  "odstranili během 24 hodin, jinak bude Pro plugin deaktivován."
83
 
84
+ #: bws_functions.php:128 bws_functions.php:208 bws_menu.php:600
85
+ #: class-bws-settings.php:179
86
  msgid "Learn More"
87
  msgstr "Dozvědět se více"
88
 
102
  "Vaše licence vypršela. Pro přístup k top-prioritní podpoře a aktualizacím "
103
  "pluginu ji budete muset prodloužit."
104
 
105
+ #: bws_functions.php:147 bws_functions.php:226
106
  msgid "Learn more"
107
  msgstr "Dozvědět se více"
108
 
119
  msgid "The Pro Trial license will expire on"
120
  msgstr "Zkušební Pro licence vyprší"
121
 
122
+ #: bws_functions.php:199 bws_functions.php:222 bws_functions.php:266
123
+ #: bws_functions.php:276 bws_functions.php:475
124
+ msgid "Close notice"
125
+ msgstr "Zavřít poznámku"
126
+
127
+ #: bws_functions.php:204
128
+ msgid "It’s time to upgrade your"
129
+ msgstr "Je čas na aktualizaci vašeho"
130
+
131
+ #: bws_functions.php:204
132
+ msgid "to"
133
+ msgstr "na"
134
+
135
+ #: bws_functions.php:204
136
+ msgid "version!"
137
+ msgstr "verzi!"
138
+
139
+ #: bws_functions.php:205
140
+ msgid "Extend standard plugin functionality with new great options."
141
+ msgstr "Rozšiřuje standardní funkce pluginu novými skvělými možnostmi."
142
+
143
+ #: bws_functions.php:226
144
+ #, php-format
145
+ msgid ""
146
+ "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
147
+ "SUPPORT or UPDATES."
148
+ msgstr ""
149
+ "Váš licenční klíč pro %s vyprší dne %s a nebudou vám poskytovány TOP-"
150
+ "PRIOROTNÍ PODPORA a AKTUALIZACE."
151
+
152
+ #: bws_functions.php:241
153
  msgid ""
154
  "or higher! We do not guarantee that our plugin will work correctly. Please "
155
  "upgrade to WordPress latest version."
157
  "nebo vyšší! Nezaručujeme, že náš plugin bude fungovat správně. Prosím "
158
  "aktualizujte na nejnovější verzi WordPressu."
159
 
160
+ #: bws_functions.php:256
161
  #, php-format
162
  msgid "Thank you for installing %s plugin!"
163
  msgstr "Děkujeme vám za instalaci pluginu %s!"
164
 
165
+ #: bws_functions.php:258
166
  msgid "Let's get started"
167
  msgstr "Začněme"
168
 
169
+ #: bws_functions.php:259 bws_functions.php:292 bws_menu.php:533
170
+ #: bws_menu.php:535
171
  msgid "Settings"
172
  msgstr "Nastavení"
173
 
174
+ #: bws_functions.php:261 bws_menu.php:327 class-bws-settings.php:809
175
+ #: class-bws-settings.php:1084 class-bws-settings.php:1094 deprecated.php:234
176
  msgid "or"
177
  msgstr "nebo"
178
 
179
+ #: bws_functions.php:262 bws_functions.php:294
180
  msgid "Add New"
181
  msgstr "Přidat nový"
182
 
183
+ #: bws_functions.php:281
 
 
 
 
 
184
  msgid "Thank you for installing plugins by BestWebSoft!"
185
  msgstr "Děkujeme vám za instalaci pluginů od BestWebSoft!"
186
 
187
+ #: bws_functions.php:283
188
  msgid "More Details"
189
  msgstr "Více detailů"
190
 
191
+ #: bws_functions.php:284
192
  msgid "Less Details"
193
  msgstr "Méně detailů"
194
 
195
+ #: bws_functions.php:312
196
  msgid "Deprecated function(-s) is used on the site here:"
197
  msgstr "Zastaralé funkce se používají na stránkách zde:"
198
 
199
+ #: bws_functions.php:326
200
  msgid ""
201
  "This function(-s) will be removed over time. Please update the product(-s)."
202
  msgstr ""
203
  "Tato funkce, bude v průběhu času odstraněna. Prosím aktualizujte produkt."
204
 
205
+ #: bws_functions.php:470
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
206
  #, php-format
207
  msgid "Thank you for choosing %s plugin!"
208
  msgstr "Děkujeme, že jste si vybrali plugin %s!"
209
 
210
+ #: bws_functions.php:471
211
  msgid ""
212
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
213
  "we'd love to hear about it!"
215
  "Máte-li nápad, nebo doporučení na novou vlastnost, kterou by jste v pluginu "
216
  "chtěli vidět, rádi o něm uslyšíme!"
217
 
218
+ #: bws_functions.php:472
219
  msgid "Suggest a Feature"
220
  msgstr "Navrhnout vlastnost"
221
 
222
+ #: bws_functions.php:488 class-bws-settings.php:580 class-bws-settings.php:583
223
+ #: class-bws-settings.php:635 class-bws-settings.php:638
224
  msgid "Notice"
225
  msgstr "Poznámka"
226
 
227
+ #: bws_functions.php:488
228
  msgid "The plugin's settings have been changed."
229
  msgstr "Nastavení pluginu bylo změněno."
230
 
231
+ #: bws_functions.php:489 class-bws-settings.php:222 class-bws-settings.php:242
 
232
  msgid "Save Changes"
233
  msgstr "Uložit změny"
234
 
235
+ #: bws_functions.php:503
236
  msgid ""
237
  "You can always look at premium options by checking the \"Pro Options\" in "
238
  "the \"Misc\" tab."
240
  "Vždy se můžete podívat na možnosti prémiové verze, kliknutím na \"PRO "
241
  "nastavení\" na \"Go PRO\" záložce."
242
 
243
+ #: bws_functions.php:679
 
 
 
 
 
 
 
 
244
  msgid "Add shortcode"
245
  msgstr "Přidat zkrácený kód"
246
 
247
+ #: bws_functions.php:679
248
  msgid "Add BestWebSoft plugins' shortcodes using this button."
249
  msgstr ""
250
  "Pomocí tohoto tlačítka můžete přidávat zkrácené kódy BestWebSoft pluginů."
251
 
252
+ #: bws_functions.php:765
253
  msgid "Close"
254
  msgstr "Zavřít"
255
 
256
+ #: bws_functions.php:851
257
  msgid "Are you sure you want to restore default settings?"
258
  msgstr "Jste si jisti, že chcete obnovit výchozí nastavení?"
259
 
260
+ #: bws_functions.php:854
261
  msgid "Yes, restore all settings"
262
  msgstr "Ano, obnovit veškerá nastavení"
263
 
264
+ #: bws_functions.php:855
265
  msgid "No, go back to the settings page"
266
  msgstr "Ne, vrátit se zpět na stránku nastavení"
267
 
268
+ #: bws_functions.php:897
269
  msgid "Plugin"
270
  msgstr "Plugin"
271
 
272
+ #: bws_functions.php:906
273
  msgid "Shortcode settings"
274
  msgstr "Nastavení zkrácených kódů"
275
 
276
+ #: bws_functions.php:911
277
  msgid "The shortcode will be inserted"
278
  msgstr "Bude vložen zkrácený kód"
279
 
280
+ #: bws_functions.php:954
281
  msgid "FAQ"
282
  msgstr ""
283
  "Časté dotazy <acronym title=\"Frequently asked questions\">(FAQ)</acronym>"
284
 
285
+ #: bws_functions.php:960
286
  msgid "For more information:"
287
  msgstr "Pro více informací:"
288
 
289
+ #: bws_functions.php:961 bws_menu.php:401 class-bws-settings.php:776
290
  msgid "Documentation"
291
  msgstr "Dokumentace"
292
 
293
+ #: bws_functions.php:962 bws_menu.php:403 class-bws-settings.php:778
294
  msgid "Video Instructions"
295
  msgstr "Video instrukce"
296
 
297
+ #: bws_functions.php:963
298
  msgid "Submit a Request"
299
  msgstr "Odeslat požadavek"
300
 
301
+ #: bws_menu.php:101 class-bws-settings.php:860
302
  msgid "Wrong license key"
303
  msgstr "Špatný licenční klíč"
304
 
305
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
306
+ #: class-bws-settings.php:1004
 
307
  msgid ""
308
  "Something went wrong. Please try again later. If the error appears again, "
309
  "please contact us"
311
  "Něco se pokazilo. Prosím zkuste to znovu později. Pokud se chyba objeví "
312
  "znovu, obraťte se na nás"
313
 
314
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
315
+ #: class-bws-settings.php:1004
 
316
  msgid "We are sorry for inconvenience."
317
  msgstr "Omlouváme se za nepříjemnosti."
318
 
319
+ #: bws_menu.php:129 class-bws-settings.php:893 class-bws-settings.php:1010
 
320
  msgid "Wrong license key."
321
  msgstr "Neplatný licenční klíč."
322
 
323
+ #: bws_menu.php:131
324
  msgid ""
325
  "This license key is bound to another site. Change it via personal Client "
326
  "Area."
328
  "Tento licenční klíč je přidružen k jinému webu. Změňte jej prostřednictvím "
329
  "osobní Klientské zóny."
330
 
331
+ #: bws_menu.php:131
332
  msgid "Log in"
333
  msgstr "Přihlášení"
334
 
335
+ #: bws_menu.php:133 bws_menu.php:333 deprecated.php:157
336
  msgid "Unfortunately, you have exceeded the number of available tries per day."
337
  msgstr "Bohužel, překročili jste dostupný počet pokusů pro daný den."
338
 
339
+ #: bws_menu.php:135
340
  #, php-format
341
  msgid ""
342
  "Unfortunately, Your license has expired. To continue getting top-priority "
345
  "Bohužel, Vaše licence vypršela. Chcete-li pokračovat v získávání top-"
346
  "prioritní podpory a aktualizace pluginu měli byste ji prodloužit ve vašem %s"
347
 
348
+ #: bws_menu.php:137 class-bws-settings.php:1018
349
  msgid ""
350
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
351
  "Trial license can be installed only once."
353
  "Bohužel, pro tuto doménu již byla použita Pro licence. Zkušební Pro licence "
354
  "může být instalována pouze jedenkrát."
355
 
356
+ #: bws_menu.php:143 class-bws-settings.php:908
357
  msgid "The license key is valid."
358
  msgstr "Licenční klíč je platný."
359
 
360
+ #: bws_menu.php:145 class-bws-settings.php:912
361
  msgid "Your license will expire on"
362
  msgstr "Vaše licence vyprší"
363
 
364
+ #: bws_menu.php:147
365
  msgid "Congratulations! Pro Membership license is activated successfully."
366
  msgstr "Gratulujeme! PRO členství bylo úspěšně aktivováno."
367
 
368
+ #: bws_menu.php:154 class-bws-settings.php:1028
369
  msgid ""
370
  "Something went wrong. Try again later or upload the plugin manually. We are "
371
  "sorry for inconvenience."
373
  "Něco se pokazilo. Zkuste to později, nebo nahrajte plugin ručně. Omlouváme "
374
  "se za nepříjemnosti."
375
 
376
+ #: bws_menu.php:164
377
  msgid "Please enter your license key."
378
  msgstr "Prosím vložte váš licenční klíč."
379
 
380
+ #: bws_menu.php:175
381
  msgid "Not set"
382
  msgstr "Nenastaveno"
383
 
384
+ #: bws_menu.php:177
385
  msgid "On"
386
  msgstr "Zapnout"
387
 
388
  # vypnout, nebo vypnuto
389
+ #: bws_menu.php:177
390
  msgid "Off"
391
  msgstr "Vypnout"
392
 
393
+ #: bws_menu.php:178 bws_menu.php:179 bws_menu.php:180 bws_menu.php:181
394
+ #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:192
395
  msgid "N/A"
396
  msgstr "N/A"
397
 
398
+ #: bws_menu.php:183
399
+ #, fuzzy
400
+ #| msgid " Mb"
401
+ msgid "Mb"
402
  msgstr " Mb"
403
 
404
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
405
  msgid "Yes"
406
  msgstr "Ano"
407
 
408
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
409
  msgid "No"
410
  msgstr "Ne"
411
 
412
+ #: bws_menu.php:197
413
  msgid "WordPress Environment"
414
  msgstr "WordPress prostředí"
415
 
416
+ #: bws_menu.php:199
417
  msgid "Home URL"
418
  msgstr "Domovská URL"
419
 
420
+ #: bws_menu.php:200
421
  msgid "Website URL"
422
  msgstr "URL webových stránek"
423
 
424
+ #: bws_menu.php:201
425
  msgid "WP Version"
426
  msgstr "WP Verze"
427
 
428
+ #: bws_menu.php:202
429
  msgid "WP Multisite"
430
  msgstr "WP Multisite"
431
 
432
+ #: bws_menu.php:203
433
  msgid "WP Memory Limit"
434
  msgstr "WP pamětový limit (memory limit)"
435
 
436
+ #: bws_menu.php:204
437
  msgid "Active Theme"
438
  msgstr "Aktivovat šablonu"
439
 
440
+ #: bws_menu.php:204 bws_menu.php:249 bws_menu.php:252
441
  #, php-format
442
  msgid "by %s"
443
  msgstr "od %s"
444
 
445
+ #: bws_menu.php:208
446
  msgid "Server Environment"
447
  msgstr "Prostředí"
448
 
449
+ #: bws_menu.php:210
450
  msgid "Operating System"
451
  msgstr "Operační systém"
452
 
453
+ #: bws_menu.php:211
454
  msgid "Server"
455
  msgstr "Server"
456
 
457
+ #: bws_menu.php:212
458
  msgid "PHP Version"
459
  msgstr "PHP Verze"
460
 
461
  # copy
462
+ #: bws_menu.php:213
463
  msgid "PHP Allow URL fopen"
464
  msgstr "PHP Allow URL fopen"
465
 
466
+ #: bws_menu.php:214
467
  msgid "PHP Memory Limit"
468
  msgstr "PHP Limit paměti"
469
 
470
+ #: bws_menu.php:215
471
  msgid "Memory Usage"
472
  msgstr "Využití paměti"
473
 
474
  # copy
475
+ #: bws_menu.php:216
476
  msgid "PHP Max Upload Size"
477
  msgstr "PHP Max Upload Size"
478
 
479
  # copy
480
+ #: bws_menu.php:217
481
  msgid "PHP Max Post Size"
482
  msgstr "PHP Max Post Size"
483
 
484
  # copy
485
+ #: bws_menu.php:218
486
  msgid "PHP Max Script Execute Time"
487
  msgstr "PHP Max Script Execute Time"
488
 
489
+ #: bws_menu.php:219
490
  msgid "PHP Exif support"
491
  msgstr "PHP podpora Exif"
492
 
493
+ #: bws_menu.php:220
494
  msgid "PHP IPTC support"
495
  msgstr "PHP podpora IPTC"
496
 
497
+ #: bws_menu.php:221
498
  msgid "PHP XML support"
499
  msgstr "PHP podpora XML"
500
 
501
+ #: bws_menu.php:227
502
  msgid "Database"
503
  msgstr "Databáze"
504
 
505
+ #: bws_menu.php:229
506
  msgid "WP DB version"
507
  msgstr "WP verze DB"
508
 
509
+ #: bws_menu.php:230
510
  msgid "MySQL version"
511
  msgstr "Verze MYSQL"
512
 
513
+ #: bws_menu.php:231
514
  msgid "SQL Mode"
515
  msgstr "Mód SQL"
516
 
517
+ #: bws_menu.php:235
518
  msgid "Active Plugins"
519
  msgstr "Aktivní pluginy"
520
 
521
+ #: bws_menu.php:240
522
  msgid "Inactive Plugins"
523
  msgstr "Neaktivní pluginy"
524
 
525
+ #: bws_menu.php:261
526
  msgid "Please enter a valid email address."
527
  msgstr "Prosím vložte platnou e-mailovou adresu."
528
 
529
+ #: bws_menu.php:263
530
  #, php-format
531
  msgid "Email with system info is sent to %s."
532
  msgstr "E-mail s informacemi o systému byl odeslán na %s."
533
 
534
+ #: bws_menu.php:267
535
  msgid "Thank you for contacting us."
536
  msgstr "Děkujeme, že jste nás kontaktovali."
537
 
538
+ #: bws_menu.php:290
539
  msgid "Sorry, email message could not be delivered."
540
  msgstr "Je nám líto, ale e-mail nemohl být doručen."
541
 
542
+ #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:359 deprecated.php:26
543
  msgid "Plugins"
544
  msgstr "Pluginy"
545
 
546
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:587 deprecated.php:27
547
  msgid "Themes"
548
  msgstr "Šablony"
549
 
550
+ #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:617
551
  msgid "System status"
552
  msgstr "Stav systému"
553
 
554
+ #: bws_menu.php:316
555
  msgid "Support"
556
  msgstr "Podpora"
557
 
558
+ #: bws_menu.php:317
559
  msgid "Manage purchased licenses & subscriptions"
560
  msgstr "Spravovat zakoupené licence a předplatné"
561
 
562
+ #: bws_menu.php:325
563
  #, php-format
564
  msgid "Get Access to %s+ Premium Plugins"
565
  msgstr "Získejte přístup k %s+ Premiovým pluginům"
566
 
567
+ #: bws_menu.php:327
568
  msgid "Subscribe to Pro Membership"
569
  msgstr "Přihlaste se k PRO členství"
570
 
571
+ #: bws_menu.php:335 bws_menu.php:346 class-bws-settings.php:822
572
+ #: deprecated.php:123
573
  msgid "Check license key"
574
  msgstr "Zkontrolovat licenční klíč"
575
 
576
+ #: bws_menu.php:338
577
  msgid "Enter your license key"
578
  msgstr "Vložte váš licenční klíč"
579
 
580
+ #: bws_menu.php:344 bws_menu.php:539 bws_menu.php:548
581
+ #: class-bws-settings.php:801 deprecated.php:155 deprecated.php:163
582
+ #: deprecated.php:240 deprecated.php:249
583
  msgid "Activate"
584
  msgstr "Aktivovat"
585
 
586
+ #: bws_menu.php:360
587
  msgid "Upload Plugin"
588
  msgstr "Nahrát plugin"
589
 
590
+ #: bws_menu.php:364
591
  #, php-format
592
  msgid ""
593
  "The plugin generated %d characters of <strong>unexpected output</strong> "
600
  "problems with syndication feeds or other issues, pokuste se deaktivovat, "
601
  "nebo odstranit tento plugin."
602
 
603
+ #: bws_menu.php:366
604
  msgid ""
605
  "Plugin could not be activated because it triggered a <strong>fatal error</"
606
  "strong>."
607
  msgstr ""
608
  "Plugin nemůže být aktivován, neboť způsobil <strong>závažnou chybu</strong>."
609
 
610
+ #: bws_menu.php:369
611
  msgid "Plugin <strong>activated</strong>."
612
  msgstr "Plugin <strong>aktivován</strong>."
613
 
614
+ #: bws_menu.php:383
615
+ #, fuzzy
616
+ #| msgid "Upload Plugin"
617
+ msgid "Download Pro Plugin"
618
+ msgstr "Nahrát plugin"
619
 
620
+ #: bws_menu.php:385 class-bws-settings.php:759
621
+ msgid "Your Pro plugin is ready"
622
+ msgstr ""
623
 
624
+ #: bws_menu.php:387 class-bws-settings.php:761
625
+ msgid "Your plugin has been zipped, and now is ready to download."
626
+ msgstr ""
 
627
 
628
+ #: bws_menu.php:390 class-bws-settings.php:764
629
+ msgid "Download Now"
630
+ msgstr ""
631
 
632
+ #: bws_menu.php:394 class-bws-settings.php:768
633
+ #, fuzzy
634
+ #| msgid "Installing the plugin"
635
+ msgid "Need help installing the plugin?"
636
  msgstr "Instalace pluginu"
637
 
638
+ #: bws_menu.php:396 class-bws-settings.php:770
639
+ msgid "How to install WordPress plugin from your admin Dashboard (ZIP archive)"
 
 
 
 
 
 
640
  msgstr ""
 
 
641
 
642
+ #: bws_menu.php:399 class-bws-settings.php:774
643
+ #, fuzzy
644
+ #| msgid "Let's get started"
645
+ msgid "Get Started"
646
+ msgstr "Začněme"
647
+
648
+ #: bws_menu.php:405 class-bws-settings.php:780
649
+ msgid "Knowledge Base"
650
+ msgstr ""
651
 
652
+ #: bws_menu.php:408
653
+ msgid "Licenses & Domains"
654
+ msgstr ""
655
 
656
+ #: bws_menu.php:411
657
+ #, fuzzy
658
+ #| msgid "Login to Client Area"
659
+ msgid "Client Area"
660
+ msgstr "Přihlášení do klientská zóny"
661
 
662
+ #: bws_menu.php:413
663
  msgid "Return to BestWebSoft Panel"
664
  msgstr "Návrat na BestWebSoft panel"
665
 
666
+ #: bws_menu.php:420 bws_menu.php:440 bws_menu.php:569
667
  msgid "All"
668
  msgstr "Vše"
669
 
670
+ #: bws_menu.php:423 bws_menu.php:606
671
  msgid "Installed"
672
  msgstr "Instalováno"
673
 
674
+ #: bws_menu.php:426
675
  msgid "Not Installed"
676
  msgstr "Neninstalováno"
677
 
678
+ #: bws_menu.php:433
679
  msgid "Filter results"
680
  msgstr "Výsledky filtrování"
681
 
682
+ #: bws_menu.php:436 bws_menu.php:565
683
  msgid "Category"
684
  msgstr "Rubriky"
685
 
686
+ #: bws_menu.php:500
687
  msgid "Not installed"
688
  msgstr "Neninstalováno"
689
 
690
+ #: bws_menu.php:504
691
  msgid "Renew to get updates"
692
  msgstr "Obnovit pro získání aktualizací"
693
 
694
+ #: bws_menu.php:507
695
  #, php-format
696
  msgid "Update to v %s"
697
  msgstr "Aktualizovat na %s"
698
 
699
+ #: bws_menu.php:519 bws_menu.php:542
700
+ msgid "Get Pro"
701
+ msgstr ""
702
 
703
+ #: bws_menu.php:525 class-bws-settings.php:192 class-bws-settings.php:1091
704
  msgid "Upgrade to Pro"
705
  msgstr "Aktualizovat na Pro"
706
 
707
+ #: bws_menu.php:539 bws_menu.php:548
708
  msgid "Activate this plugin"
709
  msgstr "Aktivovat tento plugin"
710
 
711
+ #: bws_menu.php:551
712
  msgid "Install this plugin"
713
  msgstr "Instalovat tento plugin"
714
 
715
+ #: bws_menu.php:551
716
+ msgid "Install Now"
717
+ msgstr "Instalovat nyní"
718
+
719
+ #: bws_menu.php:560
720
  msgid "Nothing found. Try another criteria."
721
  msgstr "Nic nenalezeno. Zkuste jiná kritéria."
722
 
723
  # podle, nebo taky od
724
+ #: bws_menu.php:597
725
  #, php-format
726
  msgid "By %s"
727
  msgstr "podle %s"
728
 
729
+ #: bws_menu.php:604
730
  msgid "Already Installed"
731
  msgstr "Již instalováno"
732
 
733
+ #: bws_menu.php:614
734
  msgid "Browse More WordPress Themes"
735
  msgstr "Procházet další WordPress šablony"
736
 
737
+ #: bws_menu.php:623
738
  msgid "Send to support"
739
  msgstr "Odeslat podpoře"
740
 
741
+ #: bws_menu.php:630
742
  msgid "Send to custom email &#187;"
743
  msgstr "Odeslat na vlastní e-mail &#187;"
744
 
745
+ #: class-bws-settings.php:167
746
  msgid "Information"
747
  msgstr "Informace"
748
 
749
+ #: class-bws-settings.php:179
750
  msgid "Inactive"
751
  msgstr "Neaktivní"
752
 
753
+ #: class-bws-settings.php:187
754
  msgid "Expired"
755
  msgstr "Expirované"
756
 
757
+ #: class-bws-settings.php:190
758
  #, php-format
759
  msgid "%s day(-s) left"
760
  msgstr "%s dnů zbývá"
761
 
762
+ #: class-bws-settings.php:196
763
  #, php-format
764
  msgid "Expired on %s"
765
  msgstr "Vypršela dne %s"
766
 
767
+ #: class-bws-settings.php:196
768
  msgid "Renew Now"
769
  msgstr "Obnovit nyní"
770
 
771
+ #: class-bws-settings.php:198
772
  msgid "Active"
773
  msgstr "Aktivní"
774
 
775
+ #: class-bws-settings.php:203
776
  msgid "License"
777
  msgstr "Licence"
778
 
779
+ #: class-bws-settings.php:206
780
  msgid "Status"
781
  msgstr "Stav"
782
 
783
+ #: class-bws-settings.php:210
784
  msgid "Version"
785
  msgstr "Verze"
786
 
787
+ #: class-bws-settings.php:323
788
  msgid "All plugin settings were restored."
789
  msgstr "Všechna nastavení pluginu byla obnovena."
790
 
791
+ #: class-bws-settings.php:463
792
  msgid "Custom Code"
793
  msgstr "Vlastní kód"
794
 
795
+ #: class-bws-settings.php:467
796
  msgid "You do not have sufficient permissions to edit plugins for this site."
797
  msgstr "Nemáte dostatečná oprávnění pro úpravu pluginů tohoto webu."
798
 
799
+ #: class-bws-settings.php:472
800
  msgid "These styles will be added to the header on all pages of your site."
801
  msgstr "Tyto styly budou přidány do hlaviček všech stránek vašeho webu."
802
 
803
+ #: class-bws-settings.php:475
804
  #, php-format
805
  msgid ""
806
  "This PHP code will be hooked to the %s action and will be printed on front "
808
  msgstr ""
809
  "Tento PHP kód bude závislý na %s akci a bude zobrazen pouze na front endu."
810
 
811
+ #: class-bws-settings.php:478
812
  msgid "These code will be added to the header on all pages of your site."
813
  msgstr "Tento kód bude přidán do záhlaví všech stránek vašeho webu."
814
 
815
+ #: class-bws-settings.php:486
816
  #, php-format
817
  msgid ""
818
  "You need to make this files writable before you can save your changes. See "
821
  "Před tím, než budete moci vaše změny uložit, nastavte těmto souborům "
822
  "oprávnění pro zápis. Podívejte se %s na Kodex %s pro více informací."
823
 
824
+ #: class-bws-settings.php:496
825
  msgid "Browsing"
826
  msgstr "Procházení"
827
 
828
+ #: class-bws-settings.php:501
829
  #, php-format
830
  msgid "Activate custom %s code."
831
  msgstr "Aktivovat vlastní %s kód."
832
 
833
+ #: class-bws-settings.php:509
834
  #, php-format
835
  msgid "Learn more about %s"
836
  msgstr "Dozvědět se více o %s"
837
 
838
+ #: class-bws-settings.php:571
839
  msgid "Miscellaneous Settings"
840
  msgstr "Různá nastavení"
841
 
842
+ #: class-bws-settings.php:580 class-bws-settings.php:635
843
  #, php-format
844
  msgid ""
845
  "It is prohibited to change %s settings on this site in the %s network "
846
  "settings."
847
  msgstr "Je zakázáno měnit nastavení %s na této stránce v %s nastavení sítě."
848
 
849
+ #: class-bws-settings.php:583 class-bws-settings.php:638
850
  #, php-format
851
  msgid ""
852
  "It is prohibited to view %s settings on this site in the %s network settings."
853
  msgstr "Je zobrazit nastavení %s na této stránce v %s nastavení sítě."
854
 
855
+ #: class-bws-settings.php:592
856
  msgid "Pro Options"
857
  msgstr "PRO nastavení"
858
 
859
+ #: class-bws-settings.php:596
860
  msgid "Enable to display plugin Pro options."
861
  msgstr "Povolit zobrazení PRO voleb pluginu."
862
 
863
+ #: class-bws-settings.php:602
864
  msgid "Track Usage"
865
  msgstr "Sběr statistik"
866
 
867
+ #: class-bws-settings.php:606
868
  msgid ""
869
  "Enable to allow tracking plugin usage anonymously in order to make it better."
870
  msgstr ""
871
  "Umožnit anonymní sledování využití pluginu tak, aby mohl být dále vylepšován."
872
 
873
+ #: class-bws-settings.php:611
874
  msgid "Default Settings"
875
  msgstr "Výchozí nastavení"
876
 
877
+ #: class-bws-settings.php:613
878
  msgid "Restore Settings"
879
  msgstr "Obnovit nastavení"
880
 
881
+ #: class-bws-settings.php:614
882
  msgid "This will restore plugin settings to defaults."
883
  msgstr "Toto obnoví veškerá nastavení pluginu na výchozí hodnoty."
884
 
885
+ #: class-bws-settings.php:626
886
  msgid "Import / Export"
887
  msgstr "Import / Export"
888
 
889
+ #: class-bws-settings.php:744
 
890
  msgid "License Key"
891
  msgstr "Licenční klíč"
892
 
893
+ #: class-bws-settings.php:803
 
 
 
 
 
 
 
 
 
 
 
 
 
894
  #, php-format
895
  msgid "Enter your license key to activate %s and get premium plugin features."
896
  msgstr ""
897
  "Vložte váš licenční klíč pro aktivaci %s a získejte tak prémiové fukcе "
898
  "pluginu."
899
 
900
+ #: class-bws-settings.php:806 class-bws-settings.php:1014 deprecated.php:243
 
901
  msgid ""
902
  "Unfortunately, you have exceeded the number of available tries per day. "
903
  "Please, upload the plugin manually."
905
  "Bohužel, jste překročili počet dostupných pokusů za den. Prosím, nahrejte "
906
  "plugin ručně."
907
 
908
+ #: class-bws-settings.php:809 deprecated.php:234
909
  #, php-format
910
  msgid "Start Your Free %s-Day Trial Now"
911
  msgstr "Vyzkoušejte %s-denní zkušební verzi zdarma nyní"
912
 
913
+ #: class-bws-settings.php:824
914
  msgid ""
915
  "If necessary, you can check if the license key is correct or reenter it in "
916
  "the field below."
918
  "V případě potřeby zkontrolujte, je-li licenční klíč správně zadán, případně "
919
  "jej do pole níže vložte znova."
920
 
921
+ #: class-bws-settings.php:833
922
  msgid "Manage License Settings"
923
  msgstr "Správa nastavení licencí"
924
 
925
+ #: class-bws-settings.php:835
926
  msgid "Login to Client Area"
927
  msgstr "Přihlášení do klientská zóny"
928
 
929
+ #: class-bws-settings.php:837
930
  msgid ""
931
  "Manage active licenses, download BWS products, and view your payment history "
932
  "using BestWebSoft Client Area."
934
  "Správa aktivních licencí, stahování BWS produktů a zobrazení historie plateb "
935
  "v BestWebSoft klientské zóně."
936
 
937
+ #: class-bws-settings.php:895 class-bws-settings.php:1012
 
938
  msgid "This license key is bound to another site."
939
  msgstr "Tento licenční klíč je přidružen k jinému webu."
940
 
941
+ #: class-bws-settings.php:897
942
  msgid ""
943
  "This license key is valid, but Your license has expired. If you want to "
944
  "update our plugin in future, you should extend the license."
946
  "Tento licenční klíč je platný, ale vaše licence vypršela. Chcete-li náš "
947
  "plugin v budoucnosti aktualizovat, měli by jste licenci prodloužit."
948
 
949
+ #: class-bws-settings.php:899
950
  msgid "Unfortunately, you have exceeded the number of available tries."
951
  msgstr "Bohužel, překročili jste dostupný počet pokusů."
952
 
953
+ #: class-bws-settings.php:901
954
  msgid ""
955
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
956
  "The Pro Trial license can be installed only once."
958
  "Bohužel, tato zkušební Pro licence již pro tuto doménu byla použita. "
959
  "Zkušební Pro licence může být instalována pouze jedenkrát."
960
 
961
+ #: class-bws-settings.php:906
962
  msgid "The Pro Trial license key is valid."
963
  msgstr "Licenční klíč zkušební Pro verze je platný."
964
 
965
+ #: class-bws-settings.php:919 deprecated.php:142
966
  #, php-format
967
  msgid ""
968
  "In order to continue using the plugin it is necessary to buy a %s license."
969
  msgstr ""
970
  "Pokud chcete nadále využívat tento plugin, je nutné zakoupit %s licenci."
971
 
972
+ #: class-bws-settings.php:1016
973
  #, php-format
974
  msgid ""
975
  "Unfortunately, Your license has expired. To continue getting top-priority "
978
  "Bohužel, Vaše licence vypršela. Chcete-li mít nadále přístup k top-prioritní "
979
  "podpoře a aktualizacím pluginu měli byste ji prodloužit ve vašem %s."
980
 
981
+ #: class-bws-settings.php:1065
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
982
  msgid "Please, enter Your license key"
983
  msgstr "Prosím, vložte váš licenční klíč"
984
 
985
+ #: class-bws-settings.php:1078
986
  msgid "Need Help?"
987
  msgstr "Potřebujete pomoci?"
988
 
989
+ #: class-bws-settings.php:1080
990
  msgid "Read the Instruction"
991
  msgstr "Přečíst si instrukce"
992
 
993
+ #: class-bws-settings.php:1084
994
  msgid "Watch the Video"
995
  msgstr "Přehrát video"
996
 
997
+ #: class-bws-settings.php:1095
998
  msgid "Start Your Free Trial"
999
  msgstr "Vyzkoušejte po omezenou dobu"
1000
 
1001
+ #: class-bws-settings.php:1130
1002
+ #, fuzzy
1003
+ #| msgid "Suggest a Feature"
1004
+ msgid "Request a Feature"
1005
+ msgstr "Navrhnout vlastnost"
1006
+
1007
+ #: class-bws-settings.php:1135
1008
+ #, php-format
1009
+ msgid "How can we improve %s?"
1010
+ msgstr ""
1011
+
1012
+ #: class-bws-settings.php:1137
1013
+ msgid "We look forward to hear your ideas."
1014
+ msgstr ""
1015
+
1016
+ #: class-bws-settings.php:1139
1017
+ msgid "Describe your idea"
1018
+ msgstr ""
1019
+
1020
+ #: class-bws-settings.php:1142 deactivation-form.php:120
1021
+ msgid "Send website data and allow to contact me back"
1022
+ msgstr "Odeslat data webu a umožnit zpětně mě kontaktovat"
1023
+
1024
+ #: class-bws-settings.php:1147
1025
+ msgid "Submit"
1026
+ msgstr ""
1027
+
1028
+ #: class-bws-settings.php:1148 deactivation-form.php:127
1029
+ msgid "Processing"
1030
+ msgstr "Zpracovává se"
1031
+
1032
+ #: class-bws-settings.php:1149
1033
+ msgid "Thank you!"
1034
+ msgstr ""
1035
+
1036
+ #: deactivation-form.php:22
1037
  msgid "Need help? We are ready to answer your questions."
1038
  msgstr "Potřebujete pomoc? Rádi zodpovíme Vaše dotazy."
1039
 
1040
+ #: deactivation-form.php:22
1041
  msgid "Contact Support"
1042
  msgstr "Kontaktujte podporu"
1043
 
1044
+ #: deactivation-form.php:27
1045
  msgid "The plugin is not working"
1046
  msgstr "Plugin nefunguje"
1047
 
1048
+ #: deactivation-form.php:33
 
 
 
 
 
 
1049
  msgid "The plugin didn't work as expected"
1050
  msgstr "Plugin nefungoval podle mých očekávání"
1051
 
1052
+ #: deactivation-form.php:39
 
 
 
 
1053
  msgid "The plugin suddenly stopped working"
1054
  msgstr "Plugin přestal náhle pracovat"
1055
 
1056
+ #: deactivation-form.php:46
1057
  msgid "The plugin broke my site"
1058
  msgstr "Plugin mi rozbil web"
1059
 
1060
+ #: deactivation-form.php:53
1061
  msgid "I couldn't understand how to get it work"
1062
  msgstr "Nemohl jsem pochopit, jak to zprovoznit"
1063
 
1064
+ #: deactivation-form.php:60
1065
  msgid "I found a better plugin"
1066
  msgstr "Našel jsem lepší plugin"
1067
 
1068
+ #: deactivation-form.php:66
 
 
 
 
1069
  msgid "The plugin is great, but I need specific feature that you don't support"
1070
  msgstr ""
1071
  "Plugin je skvělý, ale já potřebuji specifickou funkci, kterou nepodporuje"
1072
 
1073
+ #: deactivation-form.php:72
 
 
 
 
1074
  msgid "I no longer need the plugin"
1075
  msgstr "Nadále již tento plugin nepotřebuji"
1076
 
1077
+ #: deactivation-form.php:78
1078
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1079
  msgstr "Jedná se o dočasnou deaktivaci, pouze ladím problém"
1080
 
1081
+ #: deactivation-form.php:84
1082
  msgid "Other"
1083
  msgstr "Ostatní"
1084
 
1085
+ #: deactivation-form.php:93
1086
  msgid "Quick Feedback"
1087
  msgstr "Rychlá zpětná vazba"
1088
 
1089
+ #: deactivation-form.php:95
1090
  msgid "If you have a moment, please let us know why you are deactivating"
1091
  msgstr "Máte-li chvilku, sdělte nám důvod, proč deaktivujete tento plugin"
1092
 
1093
+ #: deactivation-form.php:125
1094
+ #, fuzzy
1095
+ #| msgid "Submit & Deactivate"
1096
+ msgid "Submit and Deactivate"
1097
+ msgstr "Odeslat a vypnout"
 
 
 
 
 
 
1098
 
1099
+ #: deactivation-form.php:126
1100
+ #, fuzzy
1101
+ #| msgid "Submit & Deactivate"
1102
+ msgid "Skip and Deactivate"
1103
  msgstr "Odeslat a vypnout"
1104
 
1105
+ #: deactivation-form.php:272
1106
  msgid "Please tell us the reason so we can improve it."
1107
  msgstr "Prosím, prozraďte nám důvod, abychom jej mohli zlepšit."
1108
 
1109
+ #: deprecated.php:28
 
 
 
 
1110
  msgid "System Status"
1111
  msgstr "Stav systému"
1112
 
1113
+ #: deprecated.php:119
 
 
 
 
1114
  msgid ""
1115
  "If necessary, you can check if the license key is correct or reenter it in "
1116
  "the field below. You can find your license key on your personal page - "
1120
  "jej do pole níže vložte znova. Váš licenční klíč najdete na vaší osobní "
1121
  "stránce - Klientská zóna - na našem webu"
1122
 
1123
+ #: deprecated.php:119
1124
  msgid ""
1125
  "(your username is the email address specified during the purchase). If "
1126
  "necessary, please submit \"Lost your password?\" request."
1128
  "(vaše uživatelské jméno je e-mailová adresa uvedena při nákupu). Pokud je to "
1129
  "nutné, prosím odešlete \"Lost your password?\" požadavek."
1130
 
1131
+ #: deprecated.php:142
1132
  msgid "After that, you can activate it by entering your license key."
1133
  msgstr "Poté jej lze snadno aktivovat zadáním licenčního klíče."
1134
 
1135
+ #: deprecated.php:145 deprecated.php:228
1136
  msgid "License key can be found in the"
1137
  msgstr "Licenční klíč najdete v"
1138
 
1139
+ #: deprecated.php:147 deprecated.php:230
1140
  msgid "(your username is the email address specified during the purchase)."
1141
  msgstr "(vaše uživatelské jméno je e-mailová adresa uvedená při nákupu)."
1142
 
1143
+ #: deprecated.php:170
1144
  msgid ""
1145
  "Congratulations! The Pro license of the plugin is activated successfully."
1146
  msgstr "Gratulujeme! PRO licence pluginu je úspěšně aktivována."
1147
 
1148
+ #: deprecated.php:172 deprecated.php:210
1149
  msgid "Please, go to"
1150
  msgstr "Prosím, přejděte na"
1151
 
1152
+ #: deprecated.php:172 deprecated.php:210
1153
  msgid "the setting page"
1154
  msgstr "stránka nastavení"
1155
 
1156
+ #: deprecated.php:187
 
 
 
 
 
 
 
 
1157
  msgid "Restore all plugin settings to defaults"
1158
  msgstr "Obnovit veškerá nastavení pluginu na výchozí hodnoty"
1159
 
1160
+ #: deprecated.php:189
1161
  msgid "Restore settings"
1162
  msgstr "Obnovit nastavení"
1163
 
1164
+ #: deprecated.php:208
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1165
  msgid ""
1166
  "Congratulations! Pro version of the plugin is installed and activated "
1167
  "successfully."
1168
  msgstr "Gratulujeme! PRO verze pluginu byla úspěšně instalována a aktivována."
1169
 
1170
+ #: deprecated.php:217
1171
  msgid "Show Pro features"
1172
  msgstr "Zobrazit Pro vlastnosti"
1173
 
1174
+ #: deprecated.php:224
1175
  msgid "Enter your license key to install and activate"
1176
  msgstr "Vložte váš licenční klíč pro instalaci a aktivaci"
1177
 
1178
+ #: deprecated.php:226
1179
  msgid "version of the plugin."
1180
  msgstr "verze pluginu."
1181
 
1182
+ #: product_list.php:8
1183
  msgid "Admin Tools"
1184
  msgstr "Administrační nástroje"
1185
 
1186
+ #: product_list.php:9
1187
  msgid "Content"
1188
  msgstr "Obsah"
1189
 
1190
+ #: product_list.php:10
1191
  msgid "eCommerce"
1192
  msgstr "eCommerce"
1193
 
1194
+ #: product_list.php:11
1195
  msgid "Marketing"
1196
  msgstr "Marketing"
1197
 
1198
+ #: product_list.php:12
1199
  msgid "Navigation"
1200
  msgstr "Navigace"
1201
 
1202
+ #: product_list.php:13
1203
  msgid "Recommended"
1204
  msgstr "Doporučeno"
1205
 
1206
+ #: product_list.php:14
1207
  msgid "Security"
1208
  msgstr "Bezpečnost"
1209
 
1210
+ #: product_list.php:15
1211
  msgid "SEO"
1212
  msgstr "SEO"
1213
 
1214
+ #: product_list.php:16
1215
  msgid "SMM"
1216
  msgstr "SMM"
1217
 
1218
+ #: product_list.php:23
1219
+ msgid "Give a birth for your bike rental and booking WordPress website."
1220
+ msgstr ""
1221
+
1222
+ #: product_list.php:35
1223
  msgid "Best secure captcha plugin to protect your WordPress forms."
1224
  msgstr "Nejbezpečnější captcha plugin k ochraně WordPress formulářů."
1225
 
1226
+ #: product_list.php:45
1227
+ msgid "Create your own rental website for car renting and booking."
1228
+ msgstr ""
1229
+
1230
+ #: product_list.php:57
1231
+ #, fuzzy
1232
+ #| msgid "Add customized Google maps to WordPress posts, pages and widgets."
1233
+ msgid ""
1234
+ "Add columns with custom content to WordPress website pages, posts, widgets, "
1235
+ "etc."
1236
+ msgstr ""
1237
+ "Přidávejte vlastní mapy Google do WordPress příspěvků, stránek a widgetů."
1238
 
1239
+ #: product_list.php:64
1240
  msgid ""
1241
  "Allow customers to reach you using secure contact form plugin any website "
1242
  "must have."
1244
  "Umožněte zákazníkům kontaktovat vás pomocí pluginu zabezpečeného kontaktního "
1245
  "formuláře, tohle musí mít každý web."
1246
 
1247
+ #: product_list.php:74
1248
  msgid "Add unlimited number of contact forms to WordPress website."
1249
  msgstr "Přidávejte neomezený počet kontaktních formulářů na WordPress web."
1250
 
1251
+ #: product_list.php:84
1252
  msgid "Save and manage Contact Form messages. Never lose important data."
1253
  msgstr ""
1254
  "Ukládejte a spravujte zprávy z kontaktního formuláře. Už nikdy neztraťte "
1255
  "důležitá data."
1256
 
1257
+ #: product_list.php:94
1258
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1259
  msgstr ""
1260
  "Přidávejte neomezený počet vlastních stránek do WordPress admin nástěnky."
1261
 
1262
+ #: product_list.php:104
 
 
 
 
1263
  msgid ""
1264
  "Add custom post types and taxonomies to WordPress website search results."
1265
  msgstr ""
1266
  "Přidávejte vlastní typy příspěvků a taxonomie do výsledků vyhledání na webu "
1267
  "WordPress."
1268
 
1269
+ #: product_list.php:114
1270
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1271
  msgstr "Přidávejte darovací tlačítka PayPal a 2CO pro příjem příspěvků."
1272
 
1273
+ #: product_list.php:121
1274
  msgid ""
1275
  "Get latest error log messages to diagnose website problems. Define and fix "
1276
  "issues faster."
1278
  "Získejte nejnovější zprávy z error logu při diagnostice problémů s webem. "
1279
  "Definujte a opravte problémy rychleji."
1280
 
1281
+ #: product_list.php:128
1282
  msgid ""
1283
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1284
  "widgets."
1286
  "Přidávejte Facebooková tlačítka sledovat, to se mi líbí a sdílet do "
1287
  "WordPress příspěvků, stránek a widgetů."
1288
 
1289
+ #: product_list.php:138
1290
  msgid ""
1291
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1292
  "clicks."
1294
  "Přidávejte na váš WordPress web krásné galerie, alba a obrázky během "
1295
  "několika kliknutí."
1296
 
1297
+ #: product_list.php:148
 
 
 
 
 
 
 
 
1298
  msgid ""
1299
  "Stronger security solution which protects your WordPress website from hacks "
1300
  "and unauthorized login attempts."
1302
  "Silnější bezpečnostní řešení, které chrání vaše webové stránky WordPress od "
1303
  "hacků a pokusů o neoprávněné přihlášení."
1304
 
1305
+ #: product_list.php:158
1306
  msgid ""
1307
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1308
  "results, categories, tags, and widgets."
1310
  "Přidávejte reklamy Adsense do webu WordPress, příspěvky, vlastní příspěvky, "
1311
  "výsledky vyhledávání, rubriky, štítky a widgety."
1312
 
1313
+ #: product_list.php:168
1314
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1315
  msgstr ""
1316
  "Přidávejte Google Analytics kód do WordPress webu a sledujte základní "
1317
  "statistiky."
1318
 
1319
+ #: product_list.php:178
1320
+ #, fuzzy
1321
+ #| msgid ""
1322
+ #| "Protect WordPress website forms from spam entries with Google Captcha "
1323
+ #| "(reCaptcha)."
1324
+ msgid "Protect WordPress website forms from spam entries with reCaptcha."
1325
  msgstr ""
1326
  "Chraňte WordPress webové formuláře před spamem s Google Captcha (\"reCAPTCHA"
1327
  "\")."
1328
 
1329
+ #: product_list.php:188
1330
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1331
  msgstr ""
1332
  "Přidávejte vlastní mapy Google do WordPress příspěvků, stránek a widgetů."
1333
 
1334
+ #: product_list.php:198
1335
  msgid ""
1336
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1337
  "your blog."
1339
  "Generujte a přidávejte sitemap.xml na vaše WordPress weby. Pomožte "
1340
  "vyhledávačům indexovat váš blog."
1341
 
1342
+ #: product_list.php:208
1343
  msgid ""
1344
  "Replace external WordPress website links with Google shortlinks and track "
1345
  "click stats."
1347
  "Nahradit externí odkazy WordPress webu pomocí Google shortlinks a sledujte "
1348
  "statistiky kliknutí."
1349
 
1350
+ #: product_list.php:215
1351
  msgid ""
1352
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1353
  "hostnames, etc."
1355
  "Chráňte WordPress web– povolte či odepřete přístup pro určité IP adresy, "
1356
  "hostnames, atd."
1357
 
1358
+ #: product_list.php:225
1359
  msgid ""
1360
  "Create your personal job board and listing WordPress website. Search jobs, "
1361
  "submit CV/resumes, choose candidates."
1363
  "Vytvořte si osobní nástěnku pracovních míst na WordPress webu. Hledání "
1364
  "zaměstnání, odeslání CV/životopisu, výběr kandidátů."
1365
 
1366
+ #: product_list.php:232
1367
  msgid ""
1368
  "Protect WordPress website against brute force attacks. Limit rate of login "
1369
  "attempts."
1371
  "Chraňte WordPress web proti útokům hrubou silou. Omezte počet pokusů o "
1372
  "přihlášení."
1373
 
1374
+ #: product_list.php:242
1375
  msgid ""
1376
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1377
  "5 plugins included – profile, insider, etc."
1379
  "Přidávejte LinkedIn tlačítka sdílet a sledovat do WordPress příspěvků, "
1380
  "stránek a widgetů. 5 pluginů zahrnuje - profil, insider, atd."
1381
 
1382
+ #: product_list.php:252
1383
  msgid ""
1384
  "Translate WordPress website content to other languages manually. Create "
1385
  "multilingual pages, posts, widgets, menus, etc."
1387
  "Přeložte manuálně obsah webu WordPress do jiných jazyků. Vytvořte "
1388
  "vícejazyčné stránky, příspěvky, widgety, menu, atd."
1389
 
1390
+ #: product_list.php:262
1391
  msgid ""
1392
  "Add customizable pagination to WordPress website. Split long content to "
1393
  "multiple pages for better navigation."
1395
  "Přidávejte nastavitelné stránkování na web WordPress. Pro lepší navigaci "
1396
  "rozdělte dlouhý obsah na více stránek."
1397
 
1398
+ #: product_list.php:272
1399
  msgid ""
1400
  "Generate PDF files and print WordPress posts/pages. Customize document "
1401
  "header/footer styles and appearance."
1403
  "Generujte PDF soubory a tiskněte WordPress příspěvky/stránky. Vlastní "
1404
  "záhlaví/zápatí dokumentu, styly a vzhled."
1405
 
1406
+ #: product_list.php:282
1407
  msgid ""
1408
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1409
  "Profile) to WordPress posts, pages and widgets."
1411
  "Přidávejte Pinterest tlačítka sledovat a připnout a profilový widget (Pin, "
1412
  "Board, Profile) do WordPress příspěvků, stránek a widgetů."
1413
 
1414
+ #: product_list.php:292
1415
  msgid ""
1416
  "Create your personal portfolio WordPress website. Manage and showcase past "
1417
  "projects to get more clients."
1419
  "Vytvořte si osobní portfolio WordPress webů. Spravujte a představte své "
1420
  "nedávné projekty a získejte více klientů."
1421
 
1422
+ #: product_list.php:302
1423
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1424
  msgstr ""
1425
  "Exportujte snadno vaše WordPress příspěvky do souboru formátu CSV. "
1426
  "Konfigurujte pořadí dat."
1427
 
1428
+ #: product_list.php:312
1429
  msgid ""
1430
  "Add extra fields to default WordPress user profile. The easiest way to "
1431
  "create and manage additional custom values."
1433
  "Přidávejte další pole do výchozího profilu uživatele WordPress. "
1434
  "Nejjednodušší způsob, jak vytvořit a spravovat vlastní hodnoty."
1435
 
1436
+ #: product_list.php:322
1437
  msgid ""
1438
  "Add and display HTML advertisement banner on WordPress website. Customize "
1439
  "bar styles and appearance."
1441
  "Přidávejte a zobrazujte HTML reklamní banner na webu WordPress. Úpravte styl "
1442
  "a vzhled lišt."
1443
 
1444
+ #: product_list.php:332
1445
  msgid ""
1446
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1447
  "widgets."
1449
  "Přidávejte přizpůsobitelné nabídky a bloky s tipy do WordPress příspěvků, "
1450
  "stránek a widgetů."
1451
 
1452
+ #: product_list.php:339
1453
  msgid ""
1454
  "Add rating plugin to your WordPress website to receive feedback from your "
1455
  "customers."
1457
  "Přidávejte do vašeho WordPress webu plugin hodnocení k získání zpětné vazby "
1458
  "od vašich zákazníků."
1459
 
1460
+ #: product_list.php:349
1461
  msgid ""
1462
  "Create your personal real estate WordPress website. Sell, rent and buy "
1463
  "properties. Add, search and browse listings easily."
1466
  "pronajímejte a kupujte nemovitosti. Snadno přidejte hledání a procházení "
1467
  "seznamy."
1468
 
1469
+ #: product_list.php:359
1470
  msgid ""
1471
  "Add related, featured, latest, and popular posts to your WordPress website. "
1472
  "Connect your blog readers with a relevant content."
1474
  "Přidávejte související, nejlepší, nejnovější a populární příspěvky do vašeho "
1475
  "WordPress webu. Propojte čtenáře vašeho blogu s příslušným obsahem."
1476
 
1477
+ #: product_list.php:366
1478
  msgid ""
1479
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1480
  "settings and detailed reports."
1482
  "Odesílejte hromadné e-maily WordPress uživatelům. Vlastní šablony, rozšířené "
1483
  "nastavení a podrobné reporty."
1484
 
1485
+ #: product_list.php:376
1486
  msgid ""
1487
  "The best responsive slider plugin for your WordPress website. Create "
1488
  "beautifully animated slides just in a few clicks."
1490
  "Nejlepší responzivní slider plugin pro váše WordPress web. Vytvořte krásné "
1491
  "animované snímky během pár kliknutí."
1492
 
1493
+ #: product_list.php:383
1494
  msgid ""
1495
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1496
  "Yahoo, Hotmail and other services."
1498
  "Konfigurujte SMTP server pro příjem e-mailových zpráv z WordPress na Gmail, "
1499
  "Yahoo, Hotmail a dalších službách."
1500
 
1501
+ #: product_list.php:390
1502
+ #, fuzzy
1503
+ #| msgid ""
1504
+ #| "Add social media buttons and widgets to WordPress posts, pages and "
1505
+ #| "widgets. FB, Twitter, G+1, Pinterest, LinkedIn."
1506
  msgid ""
1507
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1508
+ "FB, Twitter, Pinterest, LinkedIn."
1509
  msgstr ""
1510
  "Přidávejte tlačítka sociálních sítí a widgety do WordPress příspěvků, "
1511
  "stránek a widgetů. Facebook, Twitter, G+1, Pinterest, LinkedIn."
1512
 
1513
+ #: product_list.php:400
1514
  msgid ""
1515
  "Add social media login, registration, and commenting to your WordPress "
1516
  "website."
1518
  "Přidávejte na váš WordPress web login, registraci či komentáře "
1519
  "prostřednictvím sociálních sítí."
1520
 
1521
+ #: product_list.php:407
1522
  msgid ""
1523
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1524
  "Collect data and subscribe your users."
1527
  "příspěvků, stránek a widgetů. Shromažďujte data a přihlaste k odběru vaše "
1528
  "uživatele."
1529
 
1530
+ #: product_list.php:417
1531
  msgid ""
1532
  "Add testimonials and feedbacks from your customers to WordPress website "
1533
  "posts, pages, and widgets."
1535
  "Přidávejte potvrzení a zpětnou vazbu od vašich zákazníků do WordPress "
1536
  "příspěvků, stránek a widgetů."
1537
 
1538
+ #: product_list.php:424
1539
  msgid ""
1540
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1541
  "attendance and generate reports."
1543
  "Nejlepší timesheet plugin pro WordPress. Sledujte časy zaměstnanců, "
1544
  "kontrolujte jejich přítomnost a generujte sestavy."
1545
 
1546
+ #: product_list.php:434
1547
  msgid ""
1548
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1549
  "and pages."
1551
  "Přidávejte Twitter tlačítka Sledovat, Tweetnout a Zmínit do WordPress "
1552
  "příspěvků a stránek."
1553
 
1554
+ #: product_list.php:444
1555
  msgid ""
1556
  "Automatically check and update WordPress website core with all installed "
1557
  "plugins and themes to the latest versions."
1559
  "Automaticky kontrolujte a aktualizujte na nejnovější verzi WordPress jádro i "
1560
  "všechny nainstalované pluginy a šablony."
1561
 
1562
+ #: product_list.php:454
1563
  msgid ""
1564
  "Powerful user role management plugin for WordPress website. Create, edit, "
1565
  "copy, and delete user roles."
1567
  "Plugin robustní správy užiatelů pro WordPress web. Vytvářejte, upravujte, "
1568
  "kopírujte a odstraňujte uživatelské role."
1569
 
1570
+ #: product_list.php:464
1571
  msgid ""
1572
  "Display live count of online visitors who are currently browsing your "
1573
  "WordPress website."
1575
  "Zobrazujte počet aktivních online návštěvníků, kteří dané chvíli procházejí "
1576
  "váš WordPress web."
1577
 
1578
+ #: product_list.php:474
1579
  msgid ""
1580
  "Backup and export Zendesk Help Center content automatically to your "
1581
  "WordPress website database."
1582
  msgstr ""
1583
  "Automaticky zálohujte a exportujte obsah centra nápovědy Zendesk do databáze "
1584
  "vašeho WordPress webu."
1585
+
1586
+ #~ msgid "Add BWS Shortcode"
1587
+ #~ msgstr "Přidat zkrácený kód BWS"
1588
+
1589
+ #~ msgid "Add BWS Plugins Shortcode"
1590
+ #~ msgstr "Přidat zkrácený kód BWS pluginu"
1591
+
1592
+ #~ msgid "Installing Plugin"
1593
+ #~ msgstr "Instalace pluginu"
1594
+
1595
+ #~ msgid "Downloading install package from"
1596
+ #~ msgstr "Stahování instalačního balíčku z"
1597
+
1598
+ #~ msgid ""
1599
+ #~ "Failed to download the zip archive. Please, upload the plugin manually"
1600
+ #~ msgstr "Stažení zip archivu selhalo. Prosíme, nahrajte plugin ručně"
1601
+
1602
+ #~ msgid "Unpacking the package"
1603
+ #~ msgstr "Rozbalování balíčku"
1604
+
1605
+ #~ msgid "Failed to open the zip archive. Please, upload the plugin manually"
1606
+ #~ msgstr "Otevření zip archivu selhalo. Prosíme, nahrajte plugin ručně"
1607
+
1608
+ #~ msgid ""
1609
+ #~ "Your server does not support either ZipArchive or Phar. Please, upload "
1610
+ #~ "the plugin manually"
1611
+ #~ msgstr ""
1612
+ #~ "Váš server nepodporuje buď ZipArchive nebo Phar. Prosím, nahrajte plugin "
1613
+ #~ "ručně"
1614
+
1615
+ #~ msgid "The plugin %s is successfully installed."
1616
+ #~ msgstr "Plugin %s úspěšně nainstalován."
1617
+
1618
+ #~ msgid "UploadDir is not writable. Please, upload the plugin manually"
1619
+ #~ msgstr "Nelze zapisovat do UploadDir. Prosím, nahrajte plugin ručně"
1620
+
1621
+ #~ msgid "Activate Plugin"
1622
+ #~ msgstr "Aktivovat plugin"
1623
+
1624
+ #~ msgid "Congratulations! Pro license is activated successfully."
1625
+ #~ msgstr "Gratulujeme! PRO licence byla úspěšně aktivována."
1626
+
1627
+ #~ msgid "You will be automatically redirected to the %s in %s seconds."
1628
+ #~ msgstr "Budete automaticky přesměrováni na %s za %s sekund."
1629
+
1630
+ #~ msgid "Settings page"
1631
+ #~ msgstr "Stránka nastavení"
1632
+
1633
+ #~ msgid ""
1634
+ #~ "Failed to download the zip archive. Please, upload the plugin manually."
1635
+ #~ msgstr "Stažení zip archivu selhalo. Nahrajte prosím plugin ručně."
1636
+
1637
+ #~ msgid "Failed to open the zip archive. Please, upload the plugin manually."
1638
+ #~ msgstr "Otevření zip archivu selhalo. Nahrajte prosím plugin ručně."
1639
+
1640
+ #~ msgid ""
1641
+ #~ "Your server does not support either ZipArchive or Phar. Please, upload "
1642
+ #~ "the plugin manually."
1643
+ #~ msgstr ""
1644
+ #~ "Váš server nepodporuje buď ZipArchive nebo Phar. Prosím, nahrajte plugin "
1645
+ #~ "ručně."
1646
+
1647
+ #~ msgid "UploadDir is not writable. Please, upload the plugin manually."
1648
+ #~ msgstr "Nelze zapisovat do UploadDir. Prosím, nahrajte plugin ručně."
1649
+
1650
+ #~ msgid "Kindly share what didn't work so we can fix it in future updates..."
1651
+ #~ msgstr ""
1652
+ #~ "Dejte nám prosím vědět, co nefungovalo, abychom to v budoucích "
1653
+ #~ "aktualizacích mohli opravit..."
1654
+
1655
+ #~ msgid "What did you expect?"
1656
+ #~ msgstr "Co jste očekávali?"
1657
+
1658
+ #~ msgid "What's the plugin name?"
1659
+ #~ msgstr "Jaké je jméno pluginu?"
1660
+
1661
+ #~ msgid "What feature?"
1662
+ #~ msgstr "Jakou funkci?"
1663
+
1664
+ #~ msgid "Cancel"
1665
+ #~ msgstr "Zrušit"
1666
+
1667
+ #~ msgid "Deactivate"
1668
+ #~ msgstr "Vypnout"
1669
+
1670
+ #~ msgid "Please, enter your license key"
1671
+ #~ msgstr "Prosím, vložte váš licenční klíč"
1672
+
1673
+ #~ msgid "You will be redirected automatically in 5 seconds."
1674
+ #~ msgstr "Budete automaticky přesměrováni za 5 sekund."
1675
+
1676
+ #~ msgid "Check premium options on the plugin settings page!"
1677
+ #~ msgstr "Zkontrolujte prémiové možnosti na stránce nastavení pluginů!"
1678
+
1679
+ #~ msgid "File %s edited successfully."
1680
+ #~ msgstr "Soubor %s byl úspěšně upraven."
1681
+
1682
+ #~ msgid "Not enough permissions to create or update the file"
1683
+ #~ msgstr "Nedostatečná oprávnění pro vytvoření či úpravu souboru"
1684
+
1685
+ #~ msgid "Not enough permissions to create the file"
1686
+ #~ msgstr "Nedostatečná oprávnění pro vytvoření souboru"
1687
+
1688
+ #~ msgid "Editing"
1689
+ #~ msgstr "Úprava"
1690
+
1691
+ #~ msgid "Create your personal car rental/booking and reservation website."
1692
+ #~ msgstr "Vytvořte si osobní rezervační web - auta/hotely."
1693
+
1694
+ #~ msgid "Add custom fields to WordPress website search results."
1695
+ #~ msgstr "Přidávejte vlastní pole do výsledků vyhledání na webu WordPress."
1696
+
1697
+ #~ msgid ""
1698
+ #~ "Add Google +1, Share, Follow, Hangout buttons and profile badge to "
1699
+ #~ "WordPress posts, pages and widgets."
1700
+ #~ msgstr ""
1701
+ #~ "Přidávejte Google +1 tlačítka sdílet, sledovat, Hangout a profile badge "
1702
+ #~ "do WordPress příspěvků, stránek a widgetů."
bws_menu/languages/bestwebsoft-es_ES.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-es_ES.po CHANGED
@@ -3,21 +3,21 @@
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: bestwebsoft\n"
6
- "POT-Creation-Date: 2020-03-05 15:21+0200\n"
7
- "PO-Revision-Date: 2020-03-05 15:21+0200\n"
8
  "Last-Translator: \n"
9
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
10
  "Language: es\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
- "X-Generator: Poedit 2.3\n"
15
  "X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: bws_functions.php:73 bws_functions.php:231
21
  msgid "requires"
22
  msgstr "requiere"
23
 
@@ -54,7 +54,7 @@ msgstr "Valorar"
54
  msgid "Need help?"
55
  msgstr "¿Necesitas ayuda?"
56
 
57
- #: bws_functions.php:104 bws_functions.php:940 class-bws-settings.php:1055
58
  msgid "Visit Help Center"
59
  msgstr "Visita el Centro de Ayuda"
60
 
@@ -62,7 +62,7 @@ msgstr "Visita el Centro de Ayuda"
62
  msgid "Want to support the plugin?"
63
  msgstr "¿Quieres apoyar al plugin?"
64
 
65
- #: bws_functions.php:108 bws_menu.php:528
66
  msgid "Donate"
67
  msgstr "Donar"
68
 
@@ -78,8 +78,8 @@ msgid ""
78
  "otherwise the Pro plugin will be deactivated."
79
  msgstr ""
80
 
81
- #: bws_functions.php:128 bws_functions.php:200 bws_menu.php:599
82
- #: class-bws-settings.php:161
83
  msgid "Learn More"
84
  msgstr "Aprende más"
85
 
@@ -99,7 +99,7 @@ msgstr ""
99
  "Para seguir recibiendo soporte prioritario y actualizaciones de plugin debes "
100
  "extenderla."
101
 
102
- #: bws_functions.php:147 bws_functions.php:218
103
  msgid "Learn more"
104
  msgstr "Aprende más"
105
 
@@ -116,29 +116,29 @@ msgstr "Aviso: Estás usando la licencia Pro Trial del plugin."
116
  msgid "The Pro Trial license will expire on"
117
  msgstr "La licencia Pro Trial expirará el"
118
 
119
- #: bws_functions.php:191 bws_functions.php:214 bws_functions.php:258
120
- #: bws_functions.php:268 bws_functions.php:467
121
  msgid "Close notice"
122
  msgstr "Descartar"
123
 
124
- #: bws_functions.php:196
125
  msgid "It’s time to upgrade your"
126
  msgstr "¡Ahora es el tiempo de actualizar tu"
127
 
128
- #: bws_functions.php:196
129
  msgid "to"
130
  msgstr "a"
131
 
132
- #: bws_functions.php:196
133
  msgid "version!"
134
  msgstr "versión!"
135
 
136
- #: bws_functions.php:197
137
  msgid "Extend standard plugin functionality with new great options."
138
  msgstr ""
139
  "Amplía la funcionalidad del plugin estándar con nuevas excelentes opciones."
140
 
141
- #: bws_functions.php:218
142
  #, php-format
143
  msgid ""
144
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
@@ -147,7 +147,7 @@ msgstr ""
147
  "Tu clave de licencia para %s expirará el %s y no vas a recibir el SOPORTE "
148
  "PRIORITARIO O ACTUALIZACIONES."
149
 
150
- #: bws_functions.php:233
151
  msgid ""
152
  "or higher! We do not guarantee that our plugin will work correctly. Please "
153
  "upgrade to WordPress latest version."
@@ -155,58 +155,58 @@ msgstr ""
155
  "o superior! No garantizamos que nuestro plugin funcionará correctamente. Por "
156
  "favor, actualiza a la última versión de WordPress."
157
 
158
- #: bws_functions.php:248
159
  #, php-format
160
  msgid "Thank you for installing %s plugin!"
161
  msgstr "¡Gracias por haber instalado plugin de %s!"
162
 
163
- #: bws_functions.php:250
164
  msgid "Let's get started"
165
  msgstr "¡Empecemos!"
166
 
167
- #: bws_functions.php:251 bws_functions.php:284 bws_menu.php:532
168
- #: bws_menu.php:534
169
  msgid "Settings"
170
  msgstr "Ajustes"
171
 
172
- #: bws_functions.php:253 bws_menu.php:326 class-bws-settings.php:791
173
- #: class-bws-settings.php:1057 class-bws-settings.php:1067 deprecated.php:234
174
  msgid "or"
175
  msgstr "o"
176
 
177
- #: bws_functions.php:254 bws_functions.php:286
178
  msgid "Add New"
179
  msgstr "Añadir nuevo"
180
 
181
- #: bws_functions.php:273
182
  msgid "Thank you for installing plugins by BestWebSoft!"
183
  msgstr "¡Gracias por haber instalado los plugins de BestWebSoft!"
184
 
185
- #: bws_functions.php:275
186
  msgid "More Details"
187
  msgstr "Más detalles"
188
 
189
- #: bws_functions.php:276
190
  msgid "Less Details"
191
  msgstr "Menos detalles"
192
 
193
- #: bws_functions.php:304
194
  msgid "Deprecated function(-s) is used on the site here:"
195
  msgstr "Función(-es) obsoleta(-s) se utiliza(-n) en el sitio aquí:"
196
 
197
- #: bws_functions.php:318
198
  msgid ""
199
  "This function(-s) will be removed over time. Please update the product(-s)."
200
  msgstr ""
201
  "Esta(-s) función(-es) se eliminará(-n) con el tiempo. Actualiza el(los) "
202
  "producto(-s)."
203
 
204
- #: bws_functions.php:462
205
  #, php-format
206
  msgid "Thank you for choosing %s plugin!"
207
  msgstr "¡Gracias por haber elegido plugin de %s!"
208
 
209
- #: bws_functions.php:463
210
  msgid ""
211
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
212
  "we'd love to hear about it!"
@@ -214,24 +214,24 @@ msgstr ""
214
  "Si tienes una función, sugerencia o idea que te gustaría ver en el plugin, "
215
  "nos encantaría saberlo."
216
 
217
- #: bws_functions.php:464
218
  msgid "Suggest a Feature"
219
  msgstr "Ofrecer una función"
220
 
221
- #: bws_functions.php:480 class-bws-settings.php:559 class-bws-settings.php:562
222
- #: class-bws-settings.php:614 class-bws-settings.php:617
223
  msgid "Notice"
224
  msgstr "Aviso"
225
 
226
- #: bws_functions.php:480
227
  msgid "The plugin's settings have been changed."
228
  msgstr "Se han cambiado los ajustes del plugin."
229
 
230
- #: bws_functions.php:481 class-bws-settings.php:200 class-bws-settings.php:220
231
  msgid "Save Changes"
232
  msgstr "Guardar cambios"
233
 
234
- #: bws_functions.php:495
235
  msgid ""
236
  "You can always look at premium options by checking the \"Pro Options\" in "
237
  "the \"Misc\" tab."
@@ -239,69 +239,69 @@ msgstr ""
239
  "Siempre puedes ver las opciones premium haciendo clic en las \"Opciones Pro"
240
  "\" en la ficha \"Varios\"."
241
 
242
- #: bws_functions.php:671
243
  msgid "Add shortcode"
244
  msgstr "Añadir shortcode"
245
 
246
- #: bws_functions.php:671
247
  msgid "Add BestWebSoft plugins' shortcodes using this button."
248
  msgstr "Añadir los shortcodes de los plugins de BestWebSoft usando este botón."
249
 
250
- #: bws_functions.php:756
251
  msgid "Close"
252
  msgstr "Descartar"
253
 
254
- #: bws_functions.php:842
255
  msgid "Are you sure you want to restore default settings?"
256
  msgstr ""
257
  "¿Estás seguro de que deseas restaurar los ajustes de plugin por defecto?"
258
 
259
- #: bws_functions.php:845
260
  msgid "Yes, restore all settings"
261
  msgstr "Sí, restaurar todos los ajustes"
262
 
263
- #: bws_functions.php:846
264
  msgid "No, go back to the settings page"
265
  msgstr "No, volver a la página de ajustes"
266
 
267
- #: bws_functions.php:888
268
  msgid "Plugin"
269
  msgstr "Plugin"
270
 
271
- #: bws_functions.php:897
272
  msgid "Shortcode settings"
273
  msgstr "Ajustes de shortcode"
274
 
275
- #: bws_functions.php:902
276
  msgid "The shortcode will be inserted"
277
  msgstr "El shortcode se insertará"
278
 
279
- #: bws_functions.php:945
280
  msgid "FAQ"
281
  msgstr "FAQ"
282
 
283
- #: bws_functions.php:951
284
  msgid "For more information:"
285
  msgstr "Más información"
286
 
287
- #: bws_functions.php:952 bws_menu.php:400 class-bws-settings.php:755
288
  msgid "Documentation"
289
  msgstr "Documentación"
290
 
291
- #: bws_functions.php:953 bws_menu.php:402 class-bws-settings.php:757
292
  msgid "Video Instructions"
293
  msgstr "Video instrucciones"
294
 
295
- #: bws_functions.php:954
296
  msgid "Submit a Request"
297
  msgstr "Presentar una solicitud"
298
 
299
- #: bws_menu.php:101 class-bws-settings.php:841
300
  msgid "Wrong license key"
301
  msgstr "Clave de licencia incorrecta"
302
 
303
- #: bws_menu.php:122 class-bws-settings.php:868 class-bws-settings.php:939
304
- #: class-bws-settings.php:977
305
  msgid ""
306
  "Something went wrong. Please try again later. If the error appears again, "
307
  "please contact us"
@@ -309,12 +309,12 @@ msgstr ""
309
  "Algo salió mal. Por favor, inténtalo de nuevo más tarde. Si el error aparece "
310
  "de nuevo, ponte en contacto con nosotros"
311
 
312
- #: bws_menu.php:122 class-bws-settings.php:868 class-bws-settings.php:939
313
- #: class-bws-settings.php:977
314
  msgid "We are sorry for inconvenience."
315
  msgstr "Lo siento para la inconveniencia causada."
316
 
317
- #: bws_menu.php:129 class-bws-settings.php:874 class-bws-settings.php:983
318
  msgid "Wrong license key."
319
  msgstr "Clave de licencia incorrecta."
320
 
@@ -330,7 +330,7 @@ msgstr ""
330
  msgid "Log in"
331
  msgstr "Acceder"
332
 
333
- #: bws_menu.php:133 bws_menu.php:332 deprecated.php:157
334
  msgid "Unfortunately, you have exceeded the number of available tries per day."
335
  msgstr "Por desgracia, has excedido el número de intentos por hoy."
336
 
@@ -343,7 +343,7 @@ msgstr ""
343
  "Por desgracia, tu licencia ha expirado. Para seguir recibiendo soporte "
344
  "prioritario y actualizaciones de plugin debes extenderla en tu %s"
345
 
346
- #: bws_menu.php:137 class-bws-settings.php:991
347
  msgid ""
348
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
349
  "Trial license can be installed only once."
@@ -351,19 +351,19 @@ msgstr ""
351
  "Por desgracia, la licencia Pro ha estado ya instalada en este dominio. La "
352
  "licencia Pro Trial puede estar instalada una sola vez."
353
 
354
- #: bws_menu.php:142 class-bws-settings.php:889
355
  msgid "The license key is valid."
356
  msgstr "La clave de licencia está válida."
357
 
358
- #: bws_menu.php:144 class-bws-settings.php:893
359
  msgid "Your license will expire on"
360
  msgstr "Tu licencia expirará el"
361
 
362
- #: bws_menu.php:146
363
  msgid "Congratulations! Pro Membership license is activated successfully."
364
  msgstr ""
365
 
366
- #: bws_menu.php:153 class-bws-settings.php:1001
367
  msgid ""
368
  "Something went wrong. Try again later or upload the plugin manually. We are "
369
  "sorry for inconvenience."
@@ -371,216 +371,216 @@ msgstr ""
371
  "Algo salió mal. Por favor, inténtalo de nuevo más tarde o sube el plugin "
372
  "manualmente. Lo siento para la inconveniencia causada."
373
 
374
- #: bws_menu.php:163
375
  msgid "Please enter your license key."
376
  msgstr "Por favor, introduce tu clave de licencia."
377
 
378
- #: bws_menu.php:174
379
  msgid "Not set"
380
  msgstr "No definido"
381
 
382
- #: bws_menu.php:176
383
  msgid "On"
384
  msgstr "Activado"
385
 
386
- #: bws_menu.php:176
387
  msgid "Off"
388
  msgstr "Desactivado"
389
 
390
- #: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
391
- #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
392
  msgid "N/A"
393
  msgstr "N/A"
394
 
395
- #: bws_menu.php:182
396
  #, fuzzy
397
  #| msgid " Mb"
398
  msgid "Mb"
399
  msgstr "Mb"
400
 
401
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
402
  msgid "Yes"
403
  msgstr "Sí"
404
 
405
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
406
  msgid "No"
407
  msgstr "No"
408
 
409
- #: bws_menu.php:196
410
  msgid "WordPress Environment"
411
  msgstr "Entorno de WordPress"
412
 
413
- #: bws_menu.php:198
414
  msgid "Home URL"
415
  msgstr "URL del inicio"
416
 
417
- #: bws_menu.php:199
418
  msgid "Website URL"
419
  msgstr "URL del sitio"
420
 
421
- #: bws_menu.php:200
422
  msgid "WP Version"
423
  msgstr "Versión WP"
424
 
425
- #: bws_menu.php:201
426
  msgid "WP Multisite"
427
  msgstr "Multisite WP"
428
 
429
- #: bws_menu.php:202
430
  msgid "WP Memory Limit"
431
  msgstr "Límite de memoria WP"
432
 
433
- #: bws_menu.php:203
434
  msgid "Active Theme"
435
  msgstr "Tema activo"
436
 
437
- #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
438
  #, php-format
439
  msgid "by %s"
440
  msgstr "por %s"
441
 
442
- #: bws_menu.php:207
443
  msgid "Server Environment"
444
  msgstr "Entorno de Servidor"
445
 
446
- #: bws_menu.php:209
447
  msgid "Operating System"
448
  msgstr "Sistema operativo"
449
 
450
- #: bws_menu.php:210
451
  msgid "Server"
452
  msgstr "Servidor"
453
 
454
- #: bws_menu.php:211
455
  msgid "PHP Version"
456
  msgstr "Versión de PHP"
457
 
458
- #: bws_menu.php:212
459
  msgid "PHP Allow URL fopen"
460
  msgstr "PHP permite URL fopen"
461
 
462
- #: bws_menu.php:213
463
  msgid "PHP Memory Limit"
464
  msgstr "Límite de memoria PHP"
465
 
466
- #: bws_menu.php:214
467
  msgid "Memory Usage"
468
  msgstr "Uso de memória"
469
 
470
- #: bws_menu.php:215
471
  msgid "PHP Max Upload Size"
472
  msgstr "Tamaño máximo de archivo PHP"
473
 
474
- #: bws_menu.php:216
475
  msgid "PHP Max Post Size"
476
  msgstr "Tamaño máximo de entrada PHP"
477
 
478
- #: bws_menu.php:217
479
  msgid "PHP Max Script Execute Time"
480
  msgstr "Tiempo máximo de ejecución de scripts PHP"
481
 
482
- #: bws_menu.php:218
483
  msgid "PHP Exif support"
484
  msgstr "Soporte PHP Exif"
485
 
486
- #: bws_menu.php:219
487
  msgid "PHP IPTC support"
488
  msgstr "Soporte PHP IPTC"
489
 
490
- #: bws_menu.php:220
491
  msgid "PHP XML support"
492
  msgstr "Soporte PHP XML"
493
 
494
- #: bws_menu.php:226
495
  msgid "Database"
496
  msgstr "Base de Datos"
497
 
498
- #: bws_menu.php:228
499
  msgid "WP DB version"
500
  msgstr "Versión de WP DB"
501
 
502
- #: bws_menu.php:229
503
  msgid "MySQL version"
504
  msgstr "Versión de MySQL"
505
 
506
- #: bws_menu.php:230
507
  msgid "SQL Mode"
508
  msgstr "Modo SQL"
509
 
510
- #: bws_menu.php:234
511
  msgid "Active Plugins"
512
  msgstr "Plugins Activos"
513
 
514
- #: bws_menu.php:239
515
  msgid "Inactive Plugins"
516
  msgstr "Plugins Inactivos"
517
 
518
- #: bws_menu.php:260
519
  msgid "Please enter a valid email address."
520
  msgstr "Por favor, introduce la dirección de correo electrónico válida."
521
 
522
- #: bws_menu.php:262
523
  #, php-format
524
  msgid "Email with system info is sent to %s."
525
  msgstr ""
526
 
527
- #: bws_menu.php:266
528
  msgid "Thank you for contacting us."
529
  msgstr "¡Gracias por haber contactado con nosotros!"
530
 
531
- #: bws_menu.php:289
532
  msgid "Sorry, email message could not be delivered."
533
  msgstr "Lo siento, el mensaje de correo electrónico no se pudo enviar."
534
 
535
- #: bws_menu.php:305 bws_menu.php:309 bws_menu.php:358 deprecated.php:26
536
  msgid "Plugins"
537
  msgstr "Plugins"
538
 
539
- #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:586 deprecated.php:27
540
  msgid "Themes"
541
  msgstr "Temas"
542
 
543
- #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:616
544
  msgid "System status"
545
  msgstr "Información de sistema"
546
 
547
- #: bws_menu.php:315
548
  msgid "Support"
549
  msgstr "Soporte"
550
 
551
- #: bws_menu.php:316
552
  msgid "Manage purchased licenses & subscriptions"
553
  msgstr "Gestionar licencias y suscripciones adquiridas"
554
 
555
- #: bws_menu.php:324
556
  #, php-format
557
  msgid "Get Access to %s+ Premium Plugins"
558
  msgstr "Obtener acceso a %s+ Premium plugins"
559
 
560
- #: bws_menu.php:326
561
  msgid "Subscribe to Pro Membership"
562
  msgstr "Suscribirse a Pro Membership"
563
 
564
- #: bws_menu.php:334 bws_menu.php:345 class-bws-settings.php:804
565
  #: deprecated.php:123
566
  msgid "Check license key"
567
  msgstr "Comprueba la clave de licencia"
568
 
569
- #: bws_menu.php:337
570
  msgid "Enter your license key"
571
  msgstr "Introduce tu clave de licencia"
572
 
573
- #: bws_menu.php:343 bws_menu.php:538 bws_menu.php:547
574
- #: class-bws-settings.php:783 deprecated.php:155 deprecated.php:163
575
  #: deprecated.php:240 deprecated.php:249
576
  msgid "Activate"
577
  msgstr "Activar"
578
 
579
- #: bws_menu.php:359
580
  msgid "Upload Plugin"
581
  msgstr "Subir plugin"
582
 
583
- #: bws_menu.php:363
584
  #, php-format
585
  msgid ""
586
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -593,207 +593,207 @@ msgstr ""
593
  "problemas con los feeds de sindicación u otras cuestiones, prueba desactivar "
594
  "o borrar este plugin."
595
 
596
- #: bws_menu.php:365
597
  msgid ""
598
  "Plugin could not be activated because it triggered a <strong>fatal error</"
599
  "strong>."
600
  msgstr ""
601
  "No se pudo activar el plugin porque provocó un <strong>error fatal</ strong>."
602
 
603
- #: bws_menu.php:368
604
  msgid "Plugin <strong>activated</strong>."
605
  msgstr "Plugin <strong>activado</strong>."
606
 
607
- #: bws_menu.php:382
608
  #, fuzzy
609
  #| msgid "Upload Plugin"
610
  msgid "Download Pro Plugin"
611
  msgstr "Subir plugin"
612
 
613
- #: bws_menu.php:384 class-bws-settings.php:738
614
  msgid "Your Pro plugin is ready"
615
  msgstr ""
616
 
617
- #: bws_menu.php:386 class-bws-settings.php:740
618
  msgid "Your plugin has been zipped, and now is ready to download."
619
  msgstr ""
620
 
621
- #: bws_menu.php:389 class-bws-settings.php:743
622
  msgid "Download Now"
623
  msgstr ""
624
 
625
- #: bws_menu.php:393 class-bws-settings.php:747
626
  #, fuzzy
627
  #| msgid "Installing the plugin"
628
  msgid "Need help installing the plugin?"
629
  msgstr "Instalando el plugin"
630
 
631
- #: bws_menu.php:395 class-bws-settings.php:749
632
  msgid "How to install WordPress plugin from your admin Dashboard (ZIP archive)"
633
  msgstr ""
634
 
635
- #: bws_menu.php:398 class-bws-settings.php:753
636
  #, fuzzy
637
  #| msgid "Let's get started"
638
  msgid "Get Started"
639
  msgstr "¡Empecemos!"
640
 
641
- #: bws_menu.php:404 class-bws-settings.php:759
642
  msgid "Knowledge Base"
643
  msgstr ""
644
 
645
- #: bws_menu.php:407
646
  msgid "Licenses & Domains"
647
  msgstr ""
648
 
649
- #: bws_menu.php:410
650
  #, fuzzy
651
  #| msgid "Client Secret"
652
  msgid "Client Area"
653
  msgstr "Secreto del cliente"
654
 
655
- #: bws_menu.php:412
656
  msgid "Return to BestWebSoft Panel"
657
  msgstr "Volver a Panel de BestWebSoft"
658
 
659
- #: bws_menu.php:419 bws_menu.php:439 bws_menu.php:568
660
  msgid "All"
661
  msgstr "Todo"
662
 
663
- #: bws_menu.php:422 bws_menu.php:605
664
  msgid "Installed"
665
  msgstr "Instalado"
666
 
667
- #: bws_menu.php:425
668
  msgid "Not Installed"
669
  msgstr "No instalado"
670
 
671
- #: bws_menu.php:432
672
  msgid "Filter results"
673
  msgstr "Filtrar resultados"
674
 
675
- #: bws_menu.php:435 bws_menu.php:564
676
  msgid "Category"
677
  msgstr "Categoría"
678
 
679
- #: bws_menu.php:499
680
  msgid "Not installed"
681
  msgstr "No instalado"
682
 
683
- #: bws_menu.php:503
684
  msgid "Renew to get updates"
685
  msgstr "Renovar para obtener actualizaciones"
686
 
687
- #: bws_menu.php:506
688
  #, php-format
689
  msgid "Update to v %s"
690
  msgstr "Actualizar a v %s"
691
 
692
- #: bws_menu.php:518 bws_menu.php:541
693
  msgid "Get Pro"
694
  msgstr ""
695
 
696
- #: bws_menu.php:524 class-bws-settings.php:174 class-bws-settings.php:1064
697
  msgid "Upgrade to Pro"
698
  msgstr "Actualizar a Pro"
699
 
700
- #: bws_menu.php:538 bws_menu.php:547
701
  msgid "Activate this plugin"
702
  msgstr "Activar el plugin"
703
 
704
- #: bws_menu.php:550
705
  msgid "Install this plugin"
706
  msgstr "Instalar el plugin"
707
 
708
- #: bws_menu.php:550
709
  msgid "Install Now"
710
  msgstr "Instalar"
711
 
712
- #: bws_menu.php:559
713
  msgid "Nothing found. Try another criteria."
714
  msgstr "Nada encontrado. Prueba otro criterio."
715
 
716
- #: bws_menu.php:596
717
  #, php-format
718
  msgid "By %s"
719
  msgstr "Por %s"
720
 
721
- #: bws_menu.php:603
722
  msgid "Already Installed"
723
  msgstr "Ya instalado"
724
 
725
- #: bws_menu.php:613
726
  msgid "Browse More WordPress Themes"
727
  msgstr ""
728
 
729
- #: bws_menu.php:622
730
  msgid "Send to support"
731
  msgstr "Enviar al soporte técnico"
732
 
733
- #: bws_menu.php:629
734
  msgid "Send to custom email &#187;"
735
  msgstr "Enviar al correo electrónico personalizado &#187;"
736
 
737
- #: class-bws-settings.php:153
738
  msgid "Information"
739
  msgstr "Información"
740
 
741
- #: class-bws-settings.php:161
742
  msgid "Inactive"
743
  msgstr "Inactiva"
744
 
745
- #: class-bws-settings.php:169
746
  msgid "Expired"
747
  msgstr "Expirada"
748
 
749
- #: class-bws-settings.php:172
750
  #, php-format
751
  msgid "%s day(-s) left"
752
  msgstr "%s día(-s) quedan"
753
 
754
- #: class-bws-settings.php:178
755
  #, php-format
756
  msgid "Expired on %s"
757
  msgstr "Expiró el %s"
758
 
759
- #: class-bws-settings.php:178
760
  msgid "Renew Now"
761
  msgstr "Renovar"
762
 
763
- #: class-bws-settings.php:180
764
  msgid "Active"
765
  msgstr "Activa"
766
 
767
- #: class-bws-settings.php:185
768
  msgid "License"
769
  msgstr "Licencia"
770
 
771
- #: class-bws-settings.php:188
772
  msgid "Status"
773
  msgstr "Estado"
774
 
775
- #: class-bws-settings.php:192
776
  msgid "Version"
777
  msgstr "Versión"
778
 
779
- #: class-bws-settings.php:302
780
  msgid "All plugin settings were restored."
781
  msgstr "Se restauraron todos los ajustes del plugin."
782
 
783
- #: class-bws-settings.php:442
784
  msgid "Custom Code"
785
  msgstr "Código personalizado"
786
 
787
- #: class-bws-settings.php:446
788
  msgid "You do not have sufficient permissions to edit plugins for this site."
789
  msgstr "No tienes suficientes permisos para editar plugins de este sitio."
790
 
791
- #: class-bws-settings.php:451
792
  msgid "These styles will be added to the header on all pages of your site."
793
  msgstr ""
794
  "Estos estilos se agregarán a la cabecera en todas las páginas de tu sitio."
795
 
796
- #: class-bws-settings.php:454
797
  #, php-format
798
  msgid ""
799
  "This PHP code will be hooked to the %s action and will be printed on front "
@@ -802,12 +802,12 @@ msgstr ""
802
  "Este código PHP se enganchará a la acción %s y se agregará sólo en el front-"
803
  "end."
804
 
805
- #: class-bws-settings.php:457
806
  msgid "These code will be added to the header on all pages of your site."
807
  msgstr ""
808
  "Este código se agregará a la cabecera en todas las páginas de tu sitio."
809
 
810
- #: class-bws-settings.php:465
811
  #, php-format
812
  msgid ""
813
  "You need to make this files writable before you can save your changes. See "
@@ -816,25 +816,25 @@ msgstr ""
816
  "Es necesario que estos archivos sean editables antes de poder guardar los "
817
  "cambios. Consulta %s el Codex %s para obtener más información."
818
 
819
- #: class-bws-settings.php:475
820
  msgid "Browsing"
821
  msgstr "Navegar"
822
 
823
- #: class-bws-settings.php:480
824
  #, php-format
825
  msgid "Activate custom %s code."
826
  msgstr "Activar código personalizado de %s."
827
 
828
- #: class-bws-settings.php:488
829
  #, php-format
830
  msgid "Learn more about %s"
831
  msgstr "Aprende más de %s"
832
 
833
- #: class-bws-settings.php:550
834
  msgid "Miscellaneous Settings"
835
  msgstr "Ajustes varios"
836
 
837
- #: class-bws-settings.php:559 class-bws-settings.php:614
838
  #, php-format
839
  msgid ""
840
  "It is prohibited to change %s settings on this site in the %s network "
@@ -843,7 +843,7 @@ msgstr ""
843
  "Está prohibido cambiar la configuración de %s en este sitio por los "
844
  "parámetros de la red de %s."
845
 
846
- #: class-bws-settings.php:562 class-bws-settings.php:617
847
  #, php-format
848
  msgid ""
849
  "It is prohibited to view %s settings on this site in the %s network settings."
@@ -851,53 +851,53 @@ msgstr ""
851
  "Está prohibido ver la configuración de %s en este sitio por los "
852
  "parámetros de la red de %s."
853
 
854
- #: class-bws-settings.php:571
855
  msgid "Pro Options"
856
  msgstr "Opciones Pro"
857
 
858
- #: class-bws-settings.php:575
859
  msgid "Enable to display plugin Pro options."
860
  msgstr "Activar muestro de las opciones Pro del plugin."
861
 
862
- #: class-bws-settings.php:581
863
  msgid "Track Usage"
864
  msgstr "Seguir el uso"
865
 
866
- #: class-bws-settings.php:585
867
  msgid ""
868
  "Enable to allow tracking plugin usage anonymously in order to make it better."
869
  msgstr ""
870
  "Activar permiso de seguir el uso de plugin de forma anónima con el fin de "
871
  "hacerlo mejor."
872
 
873
- #: class-bws-settings.php:590
874
  msgid "Default Settings"
875
  msgstr "Ajustes por defecto"
876
 
877
- #: class-bws-settings.php:592
878
  msgid "Restore Settings"
879
  msgstr "Restaurar ajustes"
880
 
881
- #: class-bws-settings.php:593
882
  msgid "This will restore plugin settings to defaults."
883
  msgstr "Esto restaurará los ajustes de plugin por defecto."
884
 
885
- #: class-bws-settings.php:605
886
  msgid "Import / Export"
887
  msgstr "Importar / Exportar"
888
 
889
- #: class-bws-settings.php:723
890
  msgid "License Key"
891
  msgstr "Clave de licencia"
892
 
893
- #: class-bws-settings.php:785
894
  #, php-format
895
  msgid "Enter your license key to activate %s and get premium plugin features."
896
  msgstr ""
897
  "Introduce tu clave de licencia para activar %s y obtener funciones premium "
898
  "del plugin."
899
 
900
- #: class-bws-settings.php:788 class-bws-settings.php:987 deprecated.php:243
901
  msgid ""
902
  "Unfortunately, you have exceeded the number of available tries per day. "
903
  "Please, upload the plugin manually."
@@ -905,12 +905,12 @@ msgstr ""
905
  "Por desgracia, has excedido el número de intentos por hoy. Por favor, sube "
906
  "el plugin manualmente."
907
 
908
- #: class-bws-settings.php:791 deprecated.php:234
909
  #, php-format
910
  msgid "Start Your Free %s-Day Trial Now"
911
  msgstr "Comienza tu prueba gratuita de %s días"
912
 
913
- #: class-bws-settings.php:806
914
  msgid ""
915
  "If necessary, you can check if the license key is correct or reenter it in "
916
  "the field below."
@@ -918,15 +918,15 @@ msgstr ""
918
  "Si es necesario, puedes comprobar si la clave de licencia es correcta o "
919
  "introducirla otra vez en el campo abajo."
920
 
921
- #: class-bws-settings.php:815
922
  msgid "Manage License Settings"
923
  msgstr "Gestionar ajustes de licencias"
924
 
925
- #: class-bws-settings.php:817
926
  msgid "Login to Client Area"
927
  msgstr "Acceder al Área de Cliente"
928
 
929
- #: class-bws-settings.php:819
930
  msgid ""
931
  "Manage active licenses, download BWS products, and view your payment history "
932
  "using BestWebSoft Client Area."
@@ -934,11 +934,11 @@ msgstr ""
934
  "Gestiona licencias activas, descarga productos BWS y ve la historia de pagos "
935
  "con Área de Cliente de BestWebSoft."
936
 
937
- #: class-bws-settings.php:876 class-bws-settings.php:985
938
  msgid "This license key is bound to another site."
939
  msgstr "Esta clave de licencia está enlazada al otro sitio."
940
 
941
- #: class-bws-settings.php:878
942
  msgid ""
943
  "This license key is valid, but Your license has expired. If you want to "
944
  "update our plugin in future, you should extend the license."
@@ -946,11 +946,11 @@ msgstr ""
946
  "Esta clave de licencia está válida, pero tu licencia ha expirado. Si deseas "
947
  "actualizar nuestro plugin en el futuro debes extender la licencia."
948
 
949
- #: class-bws-settings.php:880
950
  msgid "Unfortunately, you have exceeded the number of available tries."
951
  msgstr "Por desgracia, has excedido el número de intentos."
952
 
953
- #: class-bws-settings.php:882
954
  msgid ""
955
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
956
  "The Pro Trial license can be installed only once."
@@ -958,43 +958,78 @@ msgstr ""
958
  "Por desgracia, la licencia Pro Trial ha estado ya instalada en este dominio. "
959
  "La licencia Pro Trial puede estar instalada una sola vez."
960
 
961
- #: class-bws-settings.php:887
962
  msgid "The Pro Trial license key is valid."
963
  msgstr "La licencia Pro Trial está válida."
964
 
965
- #: class-bws-settings.php:897 deprecated.php:142
966
  #, php-format
967
  msgid ""
968
  "In order to continue using the plugin it is necessary to buy a %s license."
969
  msgstr "Para seguir usando el plugin es necesario comprar una licencia de %s."
970
 
971
- #: class-bws-settings.php:989
972
  #, php-format
973
  msgid ""
974
  "Unfortunately, Your license has expired. To continue getting top-priority "
975
  "support and plugin updates, you should extend it in your %s."
976
  msgstr ""
977
 
978
- #: class-bws-settings.php:1038
979
  msgid "Please, enter Your license key"
980
  msgstr "Por favor, introduce tu clave de licencia"
981
 
982
- #: class-bws-settings.php:1051
983
  msgid "Need Help?"
984
  msgstr "¿Necesitas ayuda?"
985
 
986
- #: class-bws-settings.php:1053
987
  msgid "Read the Instruction"
988
  msgstr "Lee las instrucciones"
989
 
990
- #: class-bws-settings.php:1057
991
  msgid "Watch the Video"
992
  msgstr "Ve el vídeo"
993
 
994
- #: class-bws-settings.php:1068
995
  msgid "Start Your Free Trial"
996
  msgstr "Comienza tu prueba gratuita"
997
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
998
  #: deactivation-form.php:22
999
  msgid "Need help? We are ready to answer your questions."
1000
  msgstr ""
@@ -1051,24 +1086,16 @@ msgstr ""
1051
  msgid "If you have a moment, please let us know why you are deactivating"
1052
  msgstr ""
1053
 
1054
- #: deactivation-form.php:120
1055
- msgid "Send website data and allow to contact me back"
1056
- msgstr ""
1057
-
1058
- #: deactivation-form.php:225
1059
- msgid "Processing"
1060
- msgstr ""
1061
-
1062
- #: deactivation-form.php:254
1063
  msgid "Submit and Deactivate"
1064
  msgstr ""
1065
 
1066
- #: deactivation-form.php:269
1067
- msgid "Please tell us the reason so we can improve it."
1068
  msgstr ""
1069
 
1070
- #: deactivation-form.php:334
1071
- msgid "Skip and Deactivate"
1072
  msgstr ""
1073
 
1074
  #: deprecated.php:28
@@ -1147,51 +1174,55 @@ msgstr "Introduce tu clave de licencia para instalar y activar"
1147
  msgid "version of the plugin."
1148
  msgstr "la versión del plugin."
1149
 
1150
- #: product_list.php:7
1151
  msgid "Admin Tools"
1152
  msgstr "Herramientas"
1153
 
1154
- #: product_list.php:8
1155
  msgid "Content"
1156
  msgstr "Contenido"
1157
 
1158
- #: product_list.php:9
1159
  msgid "eCommerce"
1160
  msgstr "Comercio electrónico"
1161
 
1162
- #: product_list.php:10
1163
  msgid "Marketing"
1164
  msgstr "Márketing"
1165
 
1166
- #: product_list.php:11
1167
  msgid "Navigation"
1168
  msgstr "Navegación"
1169
 
1170
- #: product_list.php:12
1171
  msgid "Recommended"
1172
  msgstr "Recomendado"
1173
 
1174
- #: product_list.php:13
1175
  msgid "Security"
1176
  msgstr "Seguridad"
1177
 
1178
- #: product_list.php:14
1179
  msgid "SEO"
1180
  msgstr "SEO"
1181
 
1182
- #: product_list.php:15
1183
  msgid "SMM"
1184
  msgstr "SMM"
1185
 
1186
- #: product_list.php:22
 
 
 
 
1187
  msgid "Best secure captcha plugin to protect your WordPress forms."
1188
  msgstr ""
1189
 
1190
- #: product_list.php:32
1191
  msgid "Create your own rental website for car renting and booking."
1192
  msgstr ""
1193
 
1194
- #: product_list.php:44
1195
  #, fuzzy
1196
  #| msgid "Add customized Google maps to WordPress posts, pages and widgets."
1197
  msgid ""
@@ -1201,7 +1232,7 @@ msgstr ""
1201
  "Añade los mapas de Google personalizados a las entradas, páginas y widgets "
1202
  "de WordPress."
1203
 
1204
- #: product_list.php:51
1205
  msgid ""
1206
  "Allow customers to reach you using secure contact form plugin any website "
1207
  "must have."
@@ -1209,36 +1240,36 @@ msgstr ""
1209
  "Permite a los clientes ponerse en contacto contigo usando el plugin seguro "
1210
  "del formulario de contacto que debe tener cualquier sitio."
1211
 
1212
- #: product_list.php:61
1213
  msgid "Add unlimited number of contact forms to WordPress website."
1214
  msgstr ""
1215
  "Añade el número ilimitado de formularios de contacto al sitio de WordPress."
1216
 
1217
- #: product_list.php:71
1218
  msgid "Save and manage Contact Form messages. Never lose important data."
1219
  msgstr ""
1220
  "Guarda y gestiona los mensajes de Contact Form plugin. Nunca pierde datos "
1221
  "importantes."
1222
 
1223
- #: product_list.php:81
1224
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1225
  msgstr ""
1226
  "Añade el número ilimitado de páginas personalizadas al escritorio de "
1227
  "WordPress."
1228
 
1229
- #: product_list.php:91
1230
  msgid ""
1231
  "Add custom post types and taxonomies to WordPress website search results."
1232
  msgstr ""
1233
  "Añade los tipos de contenido personalizados y taxonomías a los resultados de "
1234
  "búsqueda en el sitio de WordPress."
1235
 
1236
- #: product_list.php:101
1237
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1238
  msgstr ""
1239
  "Añade los botones de donación PayPal y 2CO para recibir pagos benéficos."
1240
 
1241
- #: product_list.php:108
1242
  msgid ""
1243
  "Get latest error log messages to diagnose website problems. Define and fix "
1244
  "issues faster."
@@ -1246,7 +1277,7 @@ msgstr ""
1246
  "Recibe más recientes mensajes del registro de errores para diagnosticar los "
1247
  "problemas del sitio. Define y corrige los problemas más rápido."
1248
 
1249
- #: product_list.php:115
1250
  msgid ""
1251
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1252
  "widgets."
@@ -1254,7 +1285,7 @@ msgstr ""
1254
  "Añade los botones de Facebook Seguir, Me gusta y Compartir a las entradas, "
1255
  "páginas y widgets de WordPress."
1256
 
1257
- #: product_list.php:125
1258
  msgid ""
1259
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1260
  "clicks."
@@ -1262,7 +1293,7 @@ msgstr ""
1262
  "Añade las hermosas galerías, álbumes, imágenes y categorías de galería a tu "
1263
  "sitio de WordPress en unos pocos clics."
1264
 
1265
- #: product_list.php:135
1266
  msgid ""
1267
  "Stronger security solution which protects your WordPress website from hacks "
1268
  "and unauthorized login attempts."
@@ -1270,7 +1301,7 @@ msgstr ""
1270
  "Potente solución de seguridad que protege tu sitio de WordPress de los "
1271
  "hackeos y intentos no autorizados de acceder."
1272
 
1273
- #: product_list.php:145
1274
  msgid ""
1275
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1276
  "results, categories, tags, and widgets."
@@ -1279,25 +1310,25 @@ msgstr ""
1279
  "entradas personalizadas, resultados de búsqueda, categorías, etiquetas y "
1280
  "widgets en el sitio de WordPress, ."
1281
 
1282
- #: product_list.php:155
1283
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1284
  msgstr ""
1285
  "Añade el código de Google Analytics al sitio de WordPress y sigue las "
1286
  "estadísticas básicas."
1287
 
1288
- #: product_list.php:165
1289
  msgid "Protect WordPress website forms from spam entries with reCaptcha."
1290
  msgstr ""
1291
  "Protege los formularios en sitio de WordPress de las entradas de spam con "
1292
  "reCaptcha."
1293
 
1294
- #: product_list.php:175
1295
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1296
  msgstr ""
1297
  "Añade los mapas de Google personalizados a las entradas, páginas y widgets "
1298
  "de WordPress."
1299
 
1300
- #: product_list.php:185
1301
  msgid ""
1302
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1303
  "your blog."
@@ -1305,7 +1336,7 @@ msgstr ""
1305
  "Genera y añade los archivos de XML sitemap al sitio de WordPress. Ayuda a "
1306
  "los buscadores a indexar tu blog."
1307
 
1308
- #: product_list.php:195
1309
  msgid ""
1310
  "Replace external WordPress website links with Google shortlinks and track "
1311
  "click stats."
@@ -1313,7 +1344,7 @@ msgstr ""
1313
  "Reemplaza los enlaces externos con los enlaces cortos de Google en el sitio "
1314
  "de WordPress y sigue las estadísticas de clics."
1315
 
1316
- #: product_list.php:202
1317
  msgid ""
1318
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1319
  "hostnames, etc."
@@ -1321,7 +1352,7 @@ msgstr ""
1321
  "Protege el sitio de WordPress - permite y impide el acceso para determinadas "
1322
  "direcciones IP, nombres de host, etc."
1323
 
1324
- #: product_list.php:212
1325
  msgid ""
1326
  "Create your personal job board and listing WordPress website. Search jobs, "
1327
  "submit CV/resumes, choose candidates."
@@ -1329,7 +1360,7 @@ msgstr ""
1329
  "Crea tu tablero personal con la lista de trabajos en el sitio de WordPress. "
1330
  "Busca trabajos, envía CV, elija candidatos."
1331
 
1332
- #: product_list.php:219
1333
  msgid ""
1334
  "Protect WordPress website against brute force attacks. Limit rate of login "
1335
  "attempts."
@@ -1337,7 +1368,7 @@ msgstr ""
1337
  "Protege el sitio de WordPress contra ataques de fuerza bruta. Limita el "
1338
  "número de intentos de acceder."
1339
 
1340
- #: product_list.php:229
1341
  msgid ""
1342
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1343
  "5 plugins included – profile, insider, etc."
@@ -1345,7 +1376,7 @@ msgstr ""
1345
  "Añade los botones de LinkedIn Compartir y Seguir a las entradas, páginas y "
1346
  "widgets de WordPress. 5 plugins incluidos - perfil, insider, etc."
1347
 
1348
- #: product_list.php:239
1349
  msgid ""
1350
  "Translate WordPress website content to other languages manually. Create "
1351
  "multilingual pages, posts, widgets, menus, etc."
@@ -1354,7 +1385,7 @@ msgstr ""
1354
  "Crea páginas multilingües, asi como entradas, widgets, menús, etc. en varios "
1355
  "idiomas."
1356
 
1357
- #: product_list.php:249
1358
  msgid ""
1359
  "Add customizable pagination to WordPress website. Split long content to "
1360
  "multiple pages for better navigation."
@@ -1362,7 +1393,7 @@ msgstr ""
1362
  "Añade la paginación personalizable al sitio de WordPress. Divide contenido "
1363
  "largo en varias páginas para mejorar la navegación."
1364
 
1365
- #: product_list.php:259
1366
  msgid ""
1367
  "Generate PDF files and print WordPress posts/pages. Customize document "
1368
  "header/footer styles and appearance."
@@ -1371,7 +1402,7 @@ msgstr ""
1371
  "Personaliza los estilos de la cabecera/pie de la página del documento y su "
1372
  "apariencia."
1373
 
1374
- #: product_list.php:269
1375
  msgid ""
1376
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1377
  "Profile) to WordPress posts, pages and widgets."
@@ -1379,7 +1410,7 @@ msgstr ""
1379
  "Añade los botones de Pinterest Segiur, Guardar y widgets de perfil (Pines, "
1380
  "Tablero, Perfil) a las entradas, páginas y widgets de WordPress."
1381
 
1382
- #: product_list.php:279
1383
  msgid ""
1384
  "Create your personal portfolio WordPress website. Manage and showcase past "
1385
  "projects to get more clients."
@@ -1387,13 +1418,13 @@ msgstr ""
1387
  "Crea tu cartera personal en el sitio de WordPress. Gestiona y muestra los "
1388
  "proyectos anteriores para obtener más clientes."
1389
 
1390
- #: product_list.php:289
1391
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1392
  msgstr ""
1393
  "Exporta las entradas de WordPress en formato de archivo CSV fácilmente. "
1394
  "Configura el orden de los datos."
1395
 
1396
- #: product_list.php:299
1397
  msgid ""
1398
  "Add extra fields to default WordPress user profile. The easiest way to "
1399
  "create and manage additional custom values."
@@ -1401,7 +1432,7 @@ msgstr ""
1401
  "Añade los campos adicionales al perfil estándar del usuario de WordPress. La "
1402
  "forma más fácil de crear y gestionar los valores personalizados adicionales."
1403
 
1404
- #: product_list.php:309
1405
  msgid ""
1406
  "Add and display HTML advertisement banner on WordPress website. Customize "
1407
  "bar styles and appearance."
@@ -1409,7 +1440,7 @@ msgstr ""
1409
  "Añade y muestra los anuncios publicitarios de HTML en el sitio de WordPress. "
1410
  "Personaliza los estilos y la apariencia de la barra."
1411
 
1412
- #: product_list.php:319
1413
  msgid ""
1414
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1415
  "widgets."
@@ -1417,7 +1448,7 @@ msgstr ""
1417
  "Añade las citas personalizables y bloques de consejos a las entradas, "
1418
  "páginas y widgets de WordPress."
1419
 
1420
- #: product_list.php:326
1421
  msgid ""
1422
  "Add rating plugin to your WordPress website to receive feedback from your "
1423
  "customers."
@@ -1425,7 +1456,7 @@ msgstr ""
1425
  "Añade el plugin de valoración a tu sitio de WordPress para recibir "
1426
  "comentarios de tus clientes."
1427
 
1428
- #: product_list.php:336
1429
  msgid ""
1430
  "Create your personal real estate WordPress website. Sell, rent and buy "
1431
  "properties. Add, search and browse listings easily."
@@ -1434,7 +1465,7 @@ msgstr ""
1434
  "alquila y compra las propiedades. Añade, busca y navega las listas "
1435
  "fácilmente."
1436
 
1437
- #: product_list.php:346
1438
  msgid ""
1439
  "Add related, featured, latest, and popular posts to your WordPress website. "
1440
  "Connect your blog readers with a relevant content."
@@ -1443,7 +1474,7 @@ msgstr ""
1443
  "sitio de WordPress. Conecta a tus lectores de blog con el contenido "
1444
  "relevante."
1445
 
1446
- #: product_list.php:353
1447
  msgid ""
1448
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1449
  "settings and detailed reports."
@@ -1451,7 +1482,7 @@ msgstr ""
1451
  "Envía mensajes de correo masivo a los usuarios de WordPress. Plantillas "
1452
  "personalizadas, ajustes avanzados e informes detallados."
1453
 
1454
- #: product_list.php:363
1455
  msgid ""
1456
  "The best responsive slider plugin for your WordPress website. Create "
1457
  "beautifully animated slides just in a few clicks."
@@ -1459,7 +1490,7 @@ msgstr ""
1459
  "El mejor adaptable carrusel plugin para tu sitio de WordPress. Crea las "
1460
  "diapositivas maravillosamente animadas con sólo unos clics."
1461
 
1462
- #: product_list.php:370
1463
  msgid ""
1464
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1465
  "Yahoo, Hotmail and other services."
@@ -1467,7 +1498,7 @@ msgstr ""
1467
  "Configura el servidor SMTP para recibir mensajes de correo electrónico de "
1468
  "WordPress en Gmail, Yahoo, Hotmail y otros servicios."
1469
 
1470
- #: product_list.php:377
1471
  #, fuzzy
1472
  #| msgid ""
1473
  #| "Add social media buttons and widgets to WordPress posts, pages and "
@@ -1480,7 +1511,7 @@ msgstr ""
1480
  "entradas, páginas y widgets de WordPress. FB, Twitter, G+1, Pinterest, "
1481
  "LinkedIn."
1482
 
1483
- #: product_list.php:387
1484
  msgid ""
1485
  "Add social media login, registration, and commenting to your WordPress "
1486
  "website."
@@ -1488,7 +1519,7 @@ msgstr ""
1488
  "Añade el acceso, registro y comentarios a los medios de comunicación social "
1489
  "a tu sitio de WordPress."
1490
 
1491
- #: product_list.php:394
1492
  msgid ""
1493
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1494
  "Collect data and subscribe your users."
@@ -1497,7 +1528,7 @@ msgstr ""
1497
  "páginas y widgets de WordPress. Recoge los datos y suscribe a tus usuarios a "
1498
  "las noticias."
1499
 
1500
- #: product_list.php:404
1501
  msgid ""
1502
  "Add testimonials and feedbacks from your customers to WordPress website "
1503
  "posts, pages, and widgets."
@@ -1505,7 +1536,7 @@ msgstr ""
1505
  "Añade los testimonios y comentarios de tus clientes a las entradas, páginas "
1506
  "y widgets en el sitio de WordPress."
1507
 
1508
- #: product_list.php:411
1509
  msgid ""
1510
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1511
  "attendance and generate reports."
@@ -1514,7 +1545,7 @@ msgstr ""
1514
  "laboral de los empleados, optimiza el horario de trabajo en la oficina y "
1515
  "crea informes generales."
1516
 
1517
- #: product_list.php:421
1518
  msgid ""
1519
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1520
  "and pages."
@@ -1522,7 +1553,7 @@ msgstr ""
1522
  "Añade los botones de Twitter Seguir, Twittear, Hashtag y Mencionar a las "
1523
  "entradas y páginas de WordPress."
1524
 
1525
- #: product_list.php:431
1526
  msgid ""
1527
  "Automatically check and update WordPress website core with all installed "
1528
  "plugins and themes to the latest versions."
@@ -1530,7 +1561,7 @@ msgstr ""
1530
  "Compruebа y actualiza automáticamente el núcleo de sitio de WordPress a las "
1531
  "últimas versiones con todos plugins y temas que tienes instalados."
1532
 
1533
- #: product_list.php:441
1534
  msgid ""
1535
  "Powerful user role management plugin for WordPress website. Create, edit, "
1536
  "copy, and delete user roles."
@@ -1538,7 +1569,7 @@ msgstr ""
1538
  "Poderoso plugin de gestión de funciones para el sitio de WordPress. Crea, "
1539
  "edita, copia y borra los perfiles de usuarios."
1540
 
1541
- #: product_list.php:451
1542
  msgid ""
1543
  "Display live count of online visitors who are currently browsing your "
1544
  "WordPress website."
@@ -1546,7 +1577,7 @@ msgstr ""
1546
  "Lleva la cuenta de los visitantes en línea que están hojeando tu sitio de "
1547
  "WordPress en ese momento."
1548
 
1549
- #: product_list.php:461
1550
  msgid ""
1551
  "Backup and export Zendesk Help Center content automatically to your "
1552
  "WordPress website database."
3
  msgid ""
4
  msgstr ""
5
  "Project-Id-Version: bestwebsoft\n"
6
+ "POT-Creation-Date: 2021-02-15 10:54+0200\n"
7
+ "PO-Revision-Date: 2021-02-15 10:54+0200\n"
8
  "Last-Translator: \n"
9
  "Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
10
  "Language: es\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
+ "X-Generator: Poedit 2.4.2\n"
15
  "X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
16
  "X-Poedit-Basepath: ..\n"
17
  "X-Poedit-SourceCharset: UTF-8\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: bws_functions.php:73 bws_functions.php:239
21
  msgid "requires"
22
  msgstr "requiere"
23
 
54
  msgid "Need help?"
55
  msgstr "¿Necesitas ayuda?"
56
 
57
+ #: bws_functions.php:104 bws_functions.php:949 class-bws-settings.php:1082
58
  msgid "Visit Help Center"
59
  msgstr "Visita el Centro de Ayuda"
60
 
62
  msgid "Want to support the plugin?"
63
  msgstr "¿Quieres apoyar al plugin?"
64
 
65
+ #: bws_functions.php:108 bws_menu.php:529
66
  msgid "Donate"
67
  msgstr "Donar"
68
 
78
  "otherwise the Pro plugin will be deactivated."
79
  msgstr ""
80
 
81
+ #: bws_functions.php:128 bws_functions.php:208 bws_menu.php:600
82
+ #: class-bws-settings.php:179
83
  msgid "Learn More"
84
  msgstr "Aprende más"
85
 
99
  "Para seguir recibiendo soporte prioritario y actualizaciones de plugin debes "
100
  "extenderla."
101
 
102
+ #: bws_functions.php:147 bws_functions.php:226
103
  msgid "Learn more"
104
  msgstr "Aprende más"
105
 
116
  msgid "The Pro Trial license will expire on"
117
  msgstr "La licencia Pro Trial expirará el"
118
 
119
+ #: bws_functions.php:199 bws_functions.php:222 bws_functions.php:266
120
+ #: bws_functions.php:276 bws_functions.php:475
121
  msgid "Close notice"
122
  msgstr "Descartar"
123
 
124
+ #: bws_functions.php:204
125
  msgid "It’s time to upgrade your"
126
  msgstr "¡Ahora es el tiempo de actualizar tu"
127
 
128
+ #: bws_functions.php:204
129
  msgid "to"
130
  msgstr "a"
131
 
132
+ #: bws_functions.php:204
133
  msgid "version!"
134
  msgstr "versión!"
135
 
136
+ #: bws_functions.php:205
137
  msgid "Extend standard plugin functionality with new great options."
138
  msgstr ""
139
  "Amplía la funcionalidad del plugin estándar con nuevas excelentes opciones."
140
 
141
+ #: bws_functions.php:226
142
  #, php-format
143
  msgid ""
144
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
147
  "Tu clave de licencia para %s expirará el %s y no vas a recibir el SOPORTE "
148
  "PRIORITARIO O ACTUALIZACIONES."
149
 
150
+ #: bws_functions.php:241
151
  msgid ""
152
  "or higher! We do not guarantee that our plugin will work correctly. Please "
153
  "upgrade to WordPress latest version."
155
  "o superior! No garantizamos que nuestro plugin funcionará correctamente. Por "
156
  "favor, actualiza a la última versión de WordPress."
157
 
158
+ #: bws_functions.php:256
159
  #, php-format
160
  msgid "Thank you for installing %s plugin!"
161
  msgstr "¡Gracias por haber instalado plugin de %s!"
162
 
163
+ #: bws_functions.php:258
164
  msgid "Let's get started"
165
  msgstr "¡Empecemos!"
166
 
167
+ #: bws_functions.php:259 bws_functions.php:292 bws_menu.php:533
168
+ #: bws_menu.php:535
169
  msgid "Settings"
170
  msgstr "Ajustes"
171
 
172
+ #: bws_functions.php:261 bws_menu.php:327 class-bws-settings.php:809
173
+ #: class-bws-settings.php:1084 class-bws-settings.php:1094 deprecated.php:234
174
  msgid "or"
175
  msgstr "o"
176
 
177
+ #: bws_functions.php:262 bws_functions.php:294
178
  msgid "Add New"
179
  msgstr "Añadir nuevo"
180
 
181
+ #: bws_functions.php:281
182
  msgid "Thank you for installing plugins by BestWebSoft!"
183
  msgstr "¡Gracias por haber instalado los plugins de BestWebSoft!"
184
 
185
+ #: bws_functions.php:283
186
  msgid "More Details"
187
  msgstr "Más detalles"
188
 
189
+ #: bws_functions.php:284
190
  msgid "Less Details"
191
  msgstr "Menos detalles"
192
 
193
+ #: bws_functions.php:312
194
  msgid "Deprecated function(-s) is used on the site here:"
195
  msgstr "Función(-es) obsoleta(-s) se utiliza(-n) en el sitio aquí:"
196
 
197
+ #: bws_functions.php:326
198
  msgid ""
199
  "This function(-s) will be removed over time. Please update the product(-s)."
200
  msgstr ""
201
  "Esta(-s) función(-es) se eliminará(-n) con el tiempo. Actualiza el(los) "
202
  "producto(-s)."
203
 
204
+ #: bws_functions.php:470
205
  #, php-format
206
  msgid "Thank you for choosing %s plugin!"
207
  msgstr "¡Gracias por haber elegido plugin de %s!"
208
 
209
+ #: bws_functions.php:471
210
  msgid ""
211
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
212
  "we'd love to hear about it!"
214
  "Si tienes una función, sugerencia o idea que te gustaría ver en el plugin, "
215
  "nos encantaría saberlo."
216
 
217
+ #: bws_functions.php:472
218
  msgid "Suggest a Feature"
219
  msgstr "Ofrecer una función"
220
 
221
+ #: bws_functions.php:488 class-bws-settings.php:580 class-bws-settings.php:583
222
+ #: class-bws-settings.php:635 class-bws-settings.php:638
223
  msgid "Notice"
224
  msgstr "Aviso"
225
 
226
+ #: bws_functions.php:488
227
  msgid "The plugin's settings have been changed."
228
  msgstr "Se han cambiado los ajustes del plugin."
229
 
230
+ #: bws_functions.php:489 class-bws-settings.php:222 class-bws-settings.php:242
231
  msgid "Save Changes"
232
  msgstr "Guardar cambios"
233
 
234
+ #: bws_functions.php:503
235
  msgid ""
236
  "You can always look at premium options by checking the \"Pro Options\" in "
237
  "the \"Misc\" tab."
239
  "Siempre puedes ver las opciones premium haciendo clic en las \"Opciones Pro"
240
  "\" en la ficha \"Varios\"."
241
 
242
+ #: bws_functions.php:679
243
  msgid "Add shortcode"
244
  msgstr "Añadir shortcode"
245
 
246
+ #: bws_functions.php:679
247
  msgid "Add BestWebSoft plugins' shortcodes using this button."
248
  msgstr "Añadir los shortcodes de los plugins de BestWebSoft usando este botón."
249
 
250
+ #: bws_functions.php:765
251
  msgid "Close"
252
  msgstr "Descartar"
253
 
254
+ #: bws_functions.php:851
255
  msgid "Are you sure you want to restore default settings?"
256
  msgstr ""
257
  "¿Estás seguro de que deseas restaurar los ajustes de plugin por defecto?"
258
 
259
+ #: bws_functions.php:854
260
  msgid "Yes, restore all settings"
261
  msgstr "Sí, restaurar todos los ajustes"
262
 
263
+ #: bws_functions.php:855
264
  msgid "No, go back to the settings page"
265
  msgstr "No, volver a la página de ajustes"
266
 
267
+ #: bws_functions.php:897
268
  msgid "Plugin"
269
  msgstr "Plugin"
270
 
271
+ #: bws_functions.php:906
272
  msgid "Shortcode settings"
273
  msgstr "Ajustes de shortcode"
274
 
275
+ #: bws_functions.php:911
276
  msgid "The shortcode will be inserted"
277
  msgstr "El shortcode se insertará"
278
 
279
+ #: bws_functions.php:954
280
  msgid "FAQ"
281
  msgstr "FAQ"
282
 
283
+ #: bws_functions.php:960
284
  msgid "For more information:"
285
  msgstr "Más información"
286
 
287
+ #: bws_functions.php:961 bws_menu.php:401 class-bws-settings.php:776
288
  msgid "Documentation"
289
  msgstr "Documentación"
290
 
291
+ #: bws_functions.php:962 bws_menu.php:403 class-bws-settings.php:778
292
  msgid "Video Instructions"
293
  msgstr "Video instrucciones"
294
 
295
+ #: bws_functions.php:963
296
  msgid "Submit a Request"
297
  msgstr "Presentar una solicitud"
298
 
299
+ #: bws_menu.php:101 class-bws-settings.php:860
300
  msgid "Wrong license key"
301
  msgstr "Clave de licencia incorrecta"
302
 
303
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
304
+ #: class-bws-settings.php:1004
305
  msgid ""
306
  "Something went wrong. Please try again later. If the error appears again, "
307
  "please contact us"
309
  "Algo salió mal. Por favor, inténtalo de nuevo más tarde. Si el error aparece "
310
  "de nuevo, ponte en contacto con nosotros"
311
 
312
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
313
+ #: class-bws-settings.php:1004
314
  msgid "We are sorry for inconvenience."
315
  msgstr "Lo siento para la inconveniencia causada."
316
 
317
+ #: bws_menu.php:129 class-bws-settings.php:893 class-bws-settings.php:1010
318
  msgid "Wrong license key."
319
  msgstr "Clave de licencia incorrecta."
320
 
330
  msgid "Log in"
331
  msgstr "Acceder"
332
 
333
+ #: bws_menu.php:133 bws_menu.php:333 deprecated.php:157
334
  msgid "Unfortunately, you have exceeded the number of available tries per day."
335
  msgstr "Por desgracia, has excedido el número de intentos por hoy."
336
 
343
  "Por desgracia, tu licencia ha expirado. Para seguir recibiendo soporte "
344
  "prioritario y actualizaciones de plugin debes extenderla en tu %s"
345
 
346
+ #: bws_menu.php:137 class-bws-settings.php:1018
347
  msgid ""
348
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
349
  "Trial license can be installed only once."
351
  "Por desgracia, la licencia Pro ha estado ya instalada en este dominio. La "
352
  "licencia Pro Trial puede estar instalada una sola vez."
353
 
354
+ #: bws_menu.php:143 class-bws-settings.php:908
355
  msgid "The license key is valid."
356
  msgstr "La clave de licencia está válida."
357
 
358
+ #: bws_menu.php:145 class-bws-settings.php:912
359
  msgid "Your license will expire on"
360
  msgstr "Tu licencia expirará el"
361
 
362
+ #: bws_menu.php:147
363
  msgid "Congratulations! Pro Membership license is activated successfully."
364
  msgstr ""
365
 
366
+ #: bws_menu.php:154 class-bws-settings.php:1028
367
  msgid ""
368
  "Something went wrong. Try again later or upload the plugin manually. We are "
369
  "sorry for inconvenience."
371
  "Algo salió mal. Por favor, inténtalo de nuevo más tarde o sube el plugin "
372
  "manualmente. Lo siento para la inconveniencia causada."
373
 
374
+ #: bws_menu.php:164
375
  msgid "Please enter your license key."
376
  msgstr "Por favor, introduce tu clave de licencia."
377
 
378
+ #: bws_menu.php:175
379
  msgid "Not set"
380
  msgstr "No definido"
381
 
382
+ #: bws_menu.php:177
383
  msgid "On"
384
  msgstr "Activado"
385
 
386
+ #: bws_menu.php:177
387
  msgid "Off"
388
  msgstr "Desactivado"
389
 
390
+ #: bws_menu.php:178 bws_menu.php:179 bws_menu.php:180 bws_menu.php:181
391
+ #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:192
392
  msgid "N/A"
393
  msgstr "N/A"
394
 
395
+ #: bws_menu.php:183
396
  #, fuzzy
397
  #| msgid " Mb"
398
  msgid "Mb"
399
  msgstr "Mb"
400
 
401
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
402
  msgid "Yes"
403
  msgstr "Sí"
404
 
405
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
406
  msgid "No"
407
  msgstr "No"
408
 
409
+ #: bws_menu.php:197
410
  msgid "WordPress Environment"
411
  msgstr "Entorno de WordPress"
412
 
413
+ #: bws_menu.php:199
414
  msgid "Home URL"
415
  msgstr "URL del inicio"
416
 
417
+ #: bws_menu.php:200
418
  msgid "Website URL"
419
  msgstr "URL del sitio"
420
 
421
+ #: bws_menu.php:201
422
  msgid "WP Version"
423
  msgstr "Versión WP"
424
 
425
+ #: bws_menu.php:202
426
  msgid "WP Multisite"
427
  msgstr "Multisite WP"
428
 
429
+ #: bws_menu.php:203
430
  msgid "WP Memory Limit"
431
  msgstr "Límite de memoria WP"
432
 
433
+ #: bws_menu.php:204
434
  msgid "Active Theme"
435
  msgstr "Tema activo"
436
 
437
+ #: bws_menu.php:204 bws_menu.php:249 bws_menu.php:252
438
  #, php-format
439
  msgid "by %s"
440
  msgstr "por %s"
441
 
442
+ #: bws_menu.php:208
443
  msgid "Server Environment"
444
  msgstr "Entorno de Servidor"
445
 
446
+ #: bws_menu.php:210
447
  msgid "Operating System"
448
  msgstr "Sistema operativo"
449
 
450
+ #: bws_menu.php:211
451
  msgid "Server"
452
  msgstr "Servidor"
453
 
454
+ #: bws_menu.php:212
455
  msgid "PHP Version"
456
  msgstr "Versión de PHP"
457
 
458
+ #: bws_menu.php:213
459
  msgid "PHP Allow URL fopen"
460
  msgstr "PHP permite URL fopen"
461
 
462
+ #: bws_menu.php:214
463
  msgid "PHP Memory Limit"
464
  msgstr "Límite de memoria PHP"
465
 
466
+ #: bws_menu.php:215
467
  msgid "Memory Usage"
468
  msgstr "Uso de memória"
469
 
470
+ #: bws_menu.php:216
471
  msgid "PHP Max Upload Size"
472
  msgstr "Tamaño máximo de archivo PHP"
473
 
474
+ #: bws_menu.php:217
475
  msgid "PHP Max Post Size"
476
  msgstr "Tamaño máximo de entrada PHP"
477
 
478
+ #: bws_menu.php:218
479
  msgid "PHP Max Script Execute Time"
480
  msgstr "Tiempo máximo de ejecución de scripts PHP"
481
 
482
+ #: bws_menu.php:219
483
  msgid "PHP Exif support"
484
  msgstr "Soporte PHP Exif"
485
 
486
+ #: bws_menu.php:220
487
  msgid "PHP IPTC support"
488
  msgstr "Soporte PHP IPTC"
489
 
490
+ #: bws_menu.php:221
491
  msgid "PHP XML support"
492
  msgstr "Soporte PHP XML"
493
 
494
+ #: bws_menu.php:227
495
  msgid "Database"
496
  msgstr "Base de Datos"
497
 
498
+ #: bws_menu.php:229
499
  msgid "WP DB version"
500
  msgstr "Versión de WP DB"
501
 
502
+ #: bws_menu.php:230
503
  msgid "MySQL version"
504
  msgstr "Versión de MySQL"
505
 
506
+ #: bws_menu.php:231
507
  msgid "SQL Mode"
508
  msgstr "Modo SQL"
509
 
510
+ #: bws_menu.php:235
511
  msgid "Active Plugins"
512
  msgstr "Plugins Activos"
513
 
514
+ #: bws_menu.php:240
515
  msgid "Inactive Plugins"
516
  msgstr "Plugins Inactivos"
517
 
518
+ #: bws_menu.php:261
519
  msgid "Please enter a valid email address."
520
  msgstr "Por favor, introduce la dirección de correo electrónico válida."
521
 
522
+ #: bws_menu.php:263
523
  #, php-format
524
  msgid "Email with system info is sent to %s."
525
  msgstr ""
526
 
527
+ #: bws_menu.php:267
528
  msgid "Thank you for contacting us."
529
  msgstr "¡Gracias por haber contactado con nosotros!"
530
 
531
+ #: bws_menu.php:290
532
  msgid "Sorry, email message could not be delivered."
533
  msgstr "Lo siento, el mensaje de correo electrónico no se pudo enviar."
534
 
535
+ #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:359 deprecated.php:26
536
  msgid "Plugins"
537
  msgstr "Plugins"
538
 
539
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:587 deprecated.php:27
540
  msgid "Themes"
541
  msgstr "Temas"
542
 
543
+ #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:617
544
  msgid "System status"
545
  msgstr "Información de sistema"
546
 
547
+ #: bws_menu.php:316
548
  msgid "Support"
549
  msgstr "Soporte"
550
 
551
+ #: bws_menu.php:317
552
  msgid "Manage purchased licenses & subscriptions"
553
  msgstr "Gestionar licencias y suscripciones adquiridas"
554
 
555
+ #: bws_menu.php:325
556
  #, php-format
557
  msgid "Get Access to %s+ Premium Plugins"
558
  msgstr "Obtener acceso a %s+ Premium plugins"
559
 
560
+ #: bws_menu.php:327
561
  msgid "Subscribe to Pro Membership"
562
  msgstr "Suscribirse a Pro Membership"
563
 
564
+ #: bws_menu.php:335 bws_menu.php:346 class-bws-settings.php:822
565
  #: deprecated.php:123
566
  msgid "Check license key"
567
  msgstr "Comprueba la clave de licencia"
568
 
569
+ #: bws_menu.php:338
570
  msgid "Enter your license key"
571
  msgstr "Introduce tu clave de licencia"
572
 
573
+ #: bws_menu.php:344 bws_menu.php:539 bws_menu.php:548
574
+ #: class-bws-settings.php:801 deprecated.php:155 deprecated.php:163
575
  #: deprecated.php:240 deprecated.php:249
576
  msgid "Activate"
577
  msgstr "Activar"
578
 
579
+ #: bws_menu.php:360
580
  msgid "Upload Plugin"
581
  msgstr "Subir plugin"
582
 
583
+ #: bws_menu.php:364
584
  #, php-format
585
  msgid ""
586
  "The plugin generated %d characters of <strong>unexpected output</strong> "
593
  "problemas con los feeds de sindicación u otras cuestiones, prueba desactivar "
594
  "o borrar este plugin."
595
 
596
+ #: bws_menu.php:366
597
  msgid ""
598
  "Plugin could not be activated because it triggered a <strong>fatal error</"
599
  "strong>."
600
  msgstr ""
601
  "No se pudo activar el plugin porque provocó un <strong>error fatal</ strong>."
602
 
603
+ #: bws_menu.php:369
604
  msgid "Plugin <strong>activated</strong>."
605
  msgstr "Plugin <strong>activado</strong>."
606
 
607
+ #: bws_menu.php:383
608
  #, fuzzy
609
  #| msgid "Upload Plugin"
610
  msgid "Download Pro Plugin"
611
  msgstr "Subir plugin"
612
 
613
+ #: bws_menu.php:385 class-bws-settings.php:759
614
  msgid "Your Pro plugin is ready"
615
  msgstr ""
616
 
617
+ #: bws_menu.php:387 class-bws-settings.php:761
618
  msgid "Your plugin has been zipped, and now is ready to download."
619
  msgstr ""
620
 
621
+ #: bws_menu.php:390 class-bws-settings.php:764
622
  msgid "Download Now"
623
  msgstr ""
624
 
625
+ #: bws_menu.php:394 class-bws-settings.php:768
626
  #, fuzzy
627
  #| msgid "Installing the plugin"
628
  msgid "Need help installing the plugin?"
629
  msgstr "Instalando el plugin"
630
 
631
+ #: bws_menu.php:396 class-bws-settings.php:770
632
  msgid "How to install WordPress plugin from your admin Dashboard (ZIP archive)"
633
  msgstr ""
634
 
635
+ #: bws_menu.php:399 class-bws-settings.php:774
636
  #, fuzzy
637
  #| msgid "Let's get started"
638
  msgid "Get Started"
639
  msgstr "¡Empecemos!"
640
 
641
+ #: bws_menu.php:405 class-bws-settings.php:780
642
  msgid "Knowledge Base"
643
  msgstr ""
644
 
645
+ #: bws_menu.php:408
646
  msgid "Licenses & Domains"
647
  msgstr ""
648
 
649
+ #: bws_menu.php:411
650
  #, fuzzy
651
  #| msgid "Client Secret"
652
  msgid "Client Area"
653
  msgstr "Secreto del cliente"
654
 
655
+ #: bws_menu.php:413
656
  msgid "Return to BestWebSoft Panel"
657
  msgstr "Volver a Panel de BestWebSoft"
658
 
659
+ #: bws_menu.php:420 bws_menu.php:440 bws_menu.php:569
660
  msgid "All"
661
  msgstr "Todo"
662
 
663
+ #: bws_menu.php:423 bws_menu.php:606
664
  msgid "Installed"
665
  msgstr "Instalado"
666
 
667
+ #: bws_menu.php:426
668
  msgid "Not Installed"
669
  msgstr "No instalado"
670
 
671
+ #: bws_menu.php:433
672
  msgid "Filter results"
673
  msgstr "Filtrar resultados"
674
 
675
+ #: bws_menu.php:436 bws_menu.php:565
676
  msgid "Category"
677
  msgstr "Categoría"
678
 
679
+ #: bws_menu.php:500
680
  msgid "Not installed"
681
  msgstr "No instalado"
682
 
683
+ #: bws_menu.php:504
684
  msgid "Renew to get updates"
685
  msgstr "Renovar para obtener actualizaciones"
686
 
687
+ #: bws_menu.php:507
688
  #, php-format
689
  msgid "Update to v %s"
690
  msgstr "Actualizar a v %s"
691
 
692
+ #: bws_menu.php:519 bws_menu.php:542
693
  msgid "Get Pro"
694
  msgstr ""
695
 
696
+ #: bws_menu.php:525 class-bws-settings.php:192 class-bws-settings.php:1091
697
  msgid "Upgrade to Pro"
698
  msgstr "Actualizar a Pro"
699
 
700
+ #: bws_menu.php:539 bws_menu.php:548
701
  msgid "Activate this plugin"
702
  msgstr "Activar el plugin"
703
 
704
+ #: bws_menu.php:551
705
  msgid "Install this plugin"
706
  msgstr "Instalar el plugin"
707
 
708
+ #: bws_menu.php:551
709
  msgid "Install Now"
710
  msgstr "Instalar"
711
 
712
+ #: bws_menu.php:560
713
  msgid "Nothing found. Try another criteria."
714
  msgstr "Nada encontrado. Prueba otro criterio."
715
 
716
+ #: bws_menu.php:597
717
  #, php-format
718
  msgid "By %s"
719
  msgstr "Por %s"
720
 
721
+ #: bws_menu.php:604
722
  msgid "Already Installed"
723
  msgstr "Ya instalado"
724
 
725
+ #: bws_menu.php:614
726
  msgid "Browse More WordPress Themes"
727
  msgstr ""
728
 
729
+ #: bws_menu.php:623
730
  msgid "Send to support"
731
  msgstr "Enviar al soporte técnico"
732
 
733
+ #: bws_menu.php:630
734
  msgid "Send to custom email &#187;"
735
  msgstr "Enviar al correo electrónico personalizado &#187;"
736
 
737
+ #: class-bws-settings.php:167
738
  msgid "Information"
739
  msgstr "Información"
740
 
741
+ #: class-bws-settings.php:179
742
  msgid "Inactive"
743
  msgstr "Inactiva"
744
 
745
+ #: class-bws-settings.php:187
746
  msgid "Expired"
747
  msgstr "Expirada"
748
 
749
+ #: class-bws-settings.php:190
750
  #, php-format
751
  msgid "%s day(-s) left"
752
  msgstr "%s día(-s) quedan"
753
 
754
+ #: class-bws-settings.php:196
755
  #, php-format
756
  msgid "Expired on %s"
757
  msgstr "Expiró el %s"
758
 
759
+ #: class-bws-settings.php:196
760
  msgid "Renew Now"
761
  msgstr "Renovar"
762
 
763
+ #: class-bws-settings.php:198
764
  msgid "Active"
765
  msgstr "Activa"
766
 
767
+ #: class-bws-settings.php:203
768
  msgid "License"
769
  msgstr "Licencia"
770
 
771
+ #: class-bws-settings.php:206
772
  msgid "Status"
773
  msgstr "Estado"
774
 
775
+ #: class-bws-settings.php:210
776
  msgid "Version"
777
  msgstr "Versión"
778
 
779
+ #: class-bws-settings.php:323
780
  msgid "All plugin settings were restored."
781
  msgstr "Se restauraron todos los ajustes del plugin."
782
 
783
+ #: class-bws-settings.php:463
784
  msgid "Custom Code"
785
  msgstr "Código personalizado"
786
 
787
+ #: class-bws-settings.php:467
788
  msgid "You do not have sufficient permissions to edit plugins for this site."
789
  msgstr "No tienes suficientes permisos para editar plugins de este sitio."
790
 
791
+ #: class-bws-settings.php:472
792
  msgid "These styles will be added to the header on all pages of your site."
793
  msgstr ""
794
  "Estos estilos se agregarán a la cabecera en todas las páginas de tu sitio."
795
 
796
+ #: class-bws-settings.php:475
797
  #, php-format
798
  msgid ""
799
  "This PHP code will be hooked to the %s action and will be printed on front "
802
  "Este código PHP se enganchará a la acción %s y se agregará sólo en el front-"
803
  "end."
804
 
805
+ #: class-bws-settings.php:478
806
  msgid "These code will be added to the header on all pages of your site."
807
  msgstr ""
808
  "Este código se agregará a la cabecera en todas las páginas de tu sitio."
809
 
810
+ #: class-bws-settings.php:486
811
  #, php-format
812
  msgid ""
813
  "You need to make this files writable before you can save your changes. See "
816
  "Es necesario que estos archivos sean editables antes de poder guardar los "
817
  "cambios. Consulta %s el Codex %s para obtener más información."
818
 
819
+ #: class-bws-settings.php:496
820
  msgid "Browsing"
821
  msgstr "Navegar"
822
 
823
+ #: class-bws-settings.php:501
824
  #, php-format
825
  msgid "Activate custom %s code."
826
  msgstr "Activar código personalizado de %s."
827
 
828
+ #: class-bws-settings.php:509
829
  #, php-format
830
  msgid "Learn more about %s"
831
  msgstr "Aprende más de %s"
832
 
833
+ #: class-bws-settings.php:571
834
  msgid "Miscellaneous Settings"
835
  msgstr "Ajustes varios"
836
 
837
+ #: class-bws-settings.php:580 class-bws-settings.php:635
838
  #, php-format
839
  msgid ""
840
  "It is prohibited to change %s settings on this site in the %s network "
843
  "Está prohibido cambiar la configuración de %s en este sitio por los "
844
  "parámetros de la red de %s."
845
 
846
+ #: class-bws-settings.php:583 class-bws-settings.php:638
847
  #, php-format
848
  msgid ""
849
  "It is prohibited to view %s settings on this site in the %s network settings."
851
  "Está prohibido ver la configuración de %s en este sitio por los "
852
  "parámetros de la red de %s."
853
 
854
+ #: class-bws-settings.php:592
855
  msgid "Pro Options"
856
  msgstr "Opciones Pro"
857
 
858
+ #: class-bws-settings.php:596
859
  msgid "Enable to display plugin Pro options."
860
  msgstr "Activar muestro de las opciones Pro del plugin."
861
 
862
+ #: class-bws-settings.php:602
863
  msgid "Track Usage"
864
  msgstr "Seguir el uso"
865
 
866
+ #: class-bws-settings.php:606
867
  msgid ""
868
  "Enable to allow tracking plugin usage anonymously in order to make it better."
869
  msgstr ""
870
  "Activar permiso de seguir el uso de plugin de forma anónima con el fin de "
871
  "hacerlo mejor."
872
 
873
+ #: class-bws-settings.php:611
874
  msgid "Default Settings"
875
  msgstr "Ajustes por defecto"
876
 
877
+ #: class-bws-settings.php:613
878
  msgid "Restore Settings"
879
  msgstr "Restaurar ajustes"
880
 
881
+ #: class-bws-settings.php:614
882
  msgid "This will restore plugin settings to defaults."
883
  msgstr "Esto restaurará los ajustes de plugin por defecto."
884
 
885
+ #: class-bws-settings.php:626
886
  msgid "Import / Export"
887
  msgstr "Importar / Exportar"
888
 
889
+ #: class-bws-settings.php:744
890
  msgid "License Key"
891
  msgstr "Clave de licencia"
892
 
893
+ #: class-bws-settings.php:803
894
  #, php-format
895
  msgid "Enter your license key to activate %s and get premium plugin features."
896
  msgstr ""
897
  "Introduce tu clave de licencia para activar %s y obtener funciones premium "
898
  "del plugin."
899
 
900
+ #: class-bws-settings.php:806 class-bws-settings.php:1014 deprecated.php:243
901
  msgid ""
902
  "Unfortunately, you have exceeded the number of available tries per day. "
903
  "Please, upload the plugin manually."
905
  "Por desgracia, has excedido el número de intentos por hoy. Por favor, sube "
906
  "el plugin manualmente."
907
 
908
+ #: class-bws-settings.php:809 deprecated.php:234
909
  #, php-format
910
  msgid "Start Your Free %s-Day Trial Now"
911
  msgstr "Comienza tu prueba gratuita de %s días"
912
 
913
+ #: class-bws-settings.php:824
914
  msgid ""
915
  "If necessary, you can check if the license key is correct or reenter it in "
916
  "the field below."
918
  "Si es necesario, puedes comprobar si la clave de licencia es correcta o "
919
  "introducirla otra vez en el campo abajo."
920
 
921
+ #: class-bws-settings.php:833
922
  msgid "Manage License Settings"
923
  msgstr "Gestionar ajustes de licencias"
924
 
925
+ #: class-bws-settings.php:835
926
  msgid "Login to Client Area"
927
  msgstr "Acceder al Área de Cliente"
928
 
929
+ #: class-bws-settings.php:837
930
  msgid ""
931
  "Manage active licenses, download BWS products, and view your payment history "
932
  "using BestWebSoft Client Area."
934
  "Gestiona licencias activas, descarga productos BWS y ve la historia de pagos "
935
  "con Área de Cliente de BestWebSoft."
936
 
937
+ #: class-bws-settings.php:895 class-bws-settings.php:1012
938
  msgid "This license key is bound to another site."
939
  msgstr "Esta clave de licencia está enlazada al otro sitio."
940
 
941
+ #: class-bws-settings.php:897
942
  msgid ""
943
  "This license key is valid, but Your license has expired. If you want to "
944
  "update our plugin in future, you should extend the license."
946
  "Esta clave de licencia está válida, pero tu licencia ha expirado. Si deseas "
947
  "actualizar nuestro plugin en el futuro debes extender la licencia."
948
 
949
+ #: class-bws-settings.php:899
950
  msgid "Unfortunately, you have exceeded the number of available tries."
951
  msgstr "Por desgracia, has excedido el número de intentos."
952
 
953
+ #: class-bws-settings.php:901
954
  msgid ""
955
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
956
  "The Pro Trial license can be installed only once."
958
  "Por desgracia, la licencia Pro Trial ha estado ya instalada en este dominio. "
959
  "La licencia Pro Trial puede estar instalada una sola vez."
960
 
961
+ #: class-bws-settings.php:906
962
  msgid "The Pro Trial license key is valid."
963
  msgstr "La licencia Pro Trial está válida."
964
 
965
+ #: class-bws-settings.php:919 deprecated.php:142
966
  #, php-format
967
  msgid ""
968
  "In order to continue using the plugin it is necessary to buy a %s license."
969
  msgstr "Para seguir usando el plugin es necesario comprar una licencia de %s."
970
 
971
+ #: class-bws-settings.php:1016
972
  #, php-format
973
  msgid ""
974
  "Unfortunately, Your license has expired. To continue getting top-priority "
975
  "support and plugin updates, you should extend it in your %s."
976
  msgstr ""
977
 
978
+ #: class-bws-settings.php:1065
979
  msgid "Please, enter Your license key"
980
  msgstr "Por favor, introduce tu clave de licencia"
981
 
982
+ #: class-bws-settings.php:1078
983
  msgid "Need Help?"
984
  msgstr "¿Necesitas ayuda?"
985
 
986
+ #: class-bws-settings.php:1080
987
  msgid "Read the Instruction"
988
  msgstr "Lee las instrucciones"
989
 
990
+ #: class-bws-settings.php:1084
991
  msgid "Watch the Video"
992
  msgstr "Ve el vídeo"
993
 
994
+ #: class-bws-settings.php:1095
995
  msgid "Start Your Free Trial"
996
  msgstr "Comienza tu prueba gratuita"
997
 
998
+ #: class-bws-settings.php:1130
999
+ #, fuzzy
1000
+ #| msgid "Suggest a Feature"
1001
+ msgid "Request a Feature"
1002
+ msgstr "Ofrecer una función"
1003
+
1004
+ #: class-bws-settings.php:1135
1005
+ #, php-format
1006
+ msgid "How can we improve %s?"
1007
+ msgstr ""
1008
+
1009
+ #: class-bws-settings.php:1137
1010
+ msgid "We look forward to hear your ideas."
1011
+ msgstr ""
1012
+
1013
+ #: class-bws-settings.php:1139
1014
+ msgid "Describe your idea"
1015
+ msgstr ""
1016
+
1017
+ #: class-bws-settings.php:1142 deactivation-form.php:120
1018
+ msgid "Send website data and allow to contact me back"
1019
+ msgstr ""
1020
+
1021
+ #: class-bws-settings.php:1147
1022
+ msgid "Submit"
1023
+ msgstr ""
1024
+
1025
+ #: class-bws-settings.php:1148 deactivation-form.php:127
1026
+ msgid "Processing"
1027
+ msgstr ""
1028
+
1029
+ #: class-bws-settings.php:1149
1030
+ msgid "Thank you!"
1031
+ msgstr ""
1032
+
1033
  #: deactivation-form.php:22
1034
  msgid "Need help? We are ready to answer your questions."
1035
  msgstr ""
1086
  msgid "If you have a moment, please let us know why you are deactivating"
1087
  msgstr ""
1088
 
1089
+ #: deactivation-form.php:125
 
 
 
 
 
 
 
 
1090
  msgid "Submit and Deactivate"
1091
  msgstr ""
1092
 
1093
+ #: deactivation-form.php:126
1094
+ msgid "Skip and Deactivate"
1095
  msgstr ""
1096
 
1097
+ #: deactivation-form.php:272
1098
+ msgid "Please tell us the reason so we can improve it."
1099
  msgstr ""
1100
 
1101
  #: deprecated.php:28
1174
  msgid "version of the plugin."
1175
  msgstr "la versión del plugin."
1176
 
1177
+ #: product_list.php:8
1178
  msgid "Admin Tools"
1179
  msgstr "Herramientas"
1180
 
1181
+ #: product_list.php:9
1182
  msgid "Content"
1183
  msgstr "Contenido"
1184
 
1185
+ #: product_list.php:10
1186
  msgid "eCommerce"
1187
  msgstr "Comercio electrónico"
1188
 
1189
+ #: product_list.php:11
1190
  msgid "Marketing"
1191
  msgstr "Márketing"
1192
 
1193
+ #: product_list.php:12
1194
  msgid "Navigation"
1195
  msgstr "Navegación"
1196
 
1197
+ #: product_list.php:13
1198
  msgid "Recommended"
1199
  msgstr "Recomendado"
1200
 
1201
+ #: product_list.php:14
1202
  msgid "Security"
1203
  msgstr "Seguridad"
1204
 
1205
+ #: product_list.php:15
1206
  msgid "SEO"
1207
  msgstr "SEO"
1208
 
1209
+ #: product_list.php:16
1210
  msgid "SMM"
1211
  msgstr "SMM"
1212
 
1213
+ #: product_list.php:23
1214
+ msgid "Give a birth for your bike rental and booking WordPress website."
1215
+ msgstr ""
1216
+
1217
+ #: product_list.php:35
1218
  msgid "Best secure captcha plugin to protect your WordPress forms."
1219
  msgstr ""
1220
 
1221
+ #: product_list.php:45
1222
  msgid "Create your own rental website for car renting and booking."
1223
  msgstr ""
1224
 
1225
+ #: product_list.php:57
1226
  #, fuzzy
1227
  #| msgid "Add customized Google maps to WordPress posts, pages and widgets."
1228
  msgid ""
1232
  "Añade los mapas de Google personalizados a las entradas, páginas y widgets "
1233
  "de WordPress."
1234
 
1235
+ #: product_list.php:64
1236
  msgid ""
1237
  "Allow customers to reach you using secure contact form plugin any website "
1238
  "must have."
1240
  "Permite a los clientes ponerse en contacto contigo usando el plugin seguro "
1241
  "del formulario de contacto que debe tener cualquier sitio."
1242
 
1243
+ #: product_list.php:74
1244
  msgid "Add unlimited number of contact forms to WordPress website."
1245
  msgstr ""
1246
  "Añade el número ilimitado de formularios de contacto al sitio de WordPress."
1247
 
1248
+ #: product_list.php:84
1249
  msgid "Save and manage Contact Form messages. Never lose important data."
1250
  msgstr ""
1251
  "Guarda y gestiona los mensajes de Contact Form plugin. Nunca pierde datos "
1252
  "importantes."
1253
 
1254
+ #: product_list.php:94
1255
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1256
  msgstr ""
1257
  "Añade el número ilimitado de páginas personalizadas al escritorio de "
1258
  "WordPress."
1259
 
1260
+ #: product_list.php:104
1261
  msgid ""
1262
  "Add custom post types and taxonomies to WordPress website search results."
1263
  msgstr ""
1264
  "Añade los tipos de contenido personalizados y taxonomías a los resultados de "
1265
  "búsqueda en el sitio de WordPress."
1266
 
1267
+ #: product_list.php:114
1268
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1269
  msgstr ""
1270
  "Añade los botones de donación PayPal y 2CO para recibir pagos benéficos."
1271
 
1272
+ #: product_list.php:121
1273
  msgid ""
1274
  "Get latest error log messages to diagnose website problems. Define and fix "
1275
  "issues faster."
1277
  "Recibe más recientes mensajes del registro de errores para diagnosticar los "
1278
  "problemas del sitio. Define y corrige los problemas más rápido."
1279
 
1280
+ #: product_list.php:128
1281
  msgid ""
1282
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1283
  "widgets."
1285
  "Añade los botones de Facebook Seguir, Me gusta y Compartir a las entradas, "
1286
  "páginas y widgets de WordPress."
1287
 
1288
+ #: product_list.php:138
1289
  msgid ""
1290
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1291
  "clicks."
1293
  "Añade las hermosas galerías, álbumes, imágenes y categorías de galería a tu "
1294
  "sitio de WordPress en unos pocos clics."
1295
 
1296
+ #: product_list.php:148
1297
  msgid ""
1298
  "Stronger security solution which protects your WordPress website from hacks "
1299
  "and unauthorized login attempts."
1301
  "Potente solución de seguridad que protege tu sitio de WordPress de los "
1302
  "hackeos y intentos no autorizados de acceder."
1303
 
1304
+ #: product_list.php:158
1305
  msgid ""
1306
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1307
  "results, categories, tags, and widgets."
1310
  "entradas personalizadas, resultados de búsqueda, categorías, etiquetas y "
1311
  "widgets en el sitio de WordPress, ."
1312
 
1313
+ #: product_list.php:168
1314
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1315
  msgstr ""
1316
  "Añade el código de Google Analytics al sitio de WordPress y sigue las "
1317
  "estadísticas básicas."
1318
 
1319
+ #: product_list.php:178
1320
  msgid "Protect WordPress website forms from spam entries with reCaptcha."
1321
  msgstr ""
1322
  "Protege los formularios en sitio de WordPress de las entradas de spam con "
1323
  "reCaptcha."
1324
 
1325
+ #: product_list.php:188
1326
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1327
  msgstr ""
1328
  "Añade los mapas de Google personalizados a las entradas, páginas y widgets "
1329
  "de WordPress."
1330
 
1331
+ #: product_list.php:198
1332
  msgid ""
1333
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1334
  "your blog."
1336
  "Genera y añade los archivos de XML sitemap al sitio de WordPress. Ayuda a "
1337
  "los buscadores a indexar tu blog."
1338
 
1339
+ #: product_list.php:208
1340
  msgid ""
1341
  "Replace external WordPress website links with Google shortlinks and track "
1342
  "click stats."
1344
  "Reemplaza los enlaces externos con los enlaces cortos de Google en el sitio "
1345
  "de WordPress y sigue las estadísticas de clics."
1346
 
1347
+ #: product_list.php:215
1348
  msgid ""
1349
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1350
  "hostnames, etc."
1352
  "Protege el sitio de WordPress - permite y impide el acceso para determinadas "
1353
  "direcciones IP, nombres de host, etc."
1354
 
1355
+ #: product_list.php:225
1356
  msgid ""
1357
  "Create your personal job board and listing WordPress website. Search jobs, "
1358
  "submit CV/resumes, choose candidates."
1360
  "Crea tu tablero personal con la lista de trabajos en el sitio de WordPress. "
1361
  "Busca trabajos, envía CV, elija candidatos."
1362
 
1363
+ #: product_list.php:232
1364
  msgid ""
1365
  "Protect WordPress website against brute force attacks. Limit rate of login "
1366
  "attempts."
1368
  "Protege el sitio de WordPress contra ataques de fuerza bruta. Limita el "
1369
  "número de intentos de acceder."
1370
 
1371
+ #: product_list.php:242
1372
  msgid ""
1373
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1374
  "5 plugins included – profile, insider, etc."
1376
  "Añade los botones de LinkedIn Compartir y Seguir a las entradas, páginas y "
1377
  "widgets de WordPress. 5 plugins incluidos - perfil, insider, etc."
1378
 
1379
+ #: product_list.php:252
1380
  msgid ""
1381
  "Translate WordPress website content to other languages manually. Create "
1382
  "multilingual pages, posts, widgets, menus, etc."
1385
  "Crea páginas multilingües, asi como entradas, widgets, menús, etc. en varios "
1386
  "idiomas."
1387
 
1388
+ #: product_list.php:262
1389
  msgid ""
1390
  "Add customizable pagination to WordPress website. Split long content to "
1391
  "multiple pages for better navigation."
1393
  "Añade la paginación personalizable al sitio de WordPress. Divide contenido "
1394
  "largo en varias páginas para mejorar la navegación."
1395
 
1396
+ #: product_list.php:272
1397
  msgid ""
1398
  "Generate PDF files and print WordPress posts/pages. Customize document "
1399
  "header/footer styles and appearance."
1402
  "Personaliza los estilos de la cabecera/pie de la página del documento y su "
1403
  "apariencia."
1404
 
1405
+ #: product_list.php:282
1406
  msgid ""
1407
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1408
  "Profile) to WordPress posts, pages and widgets."
1410
  "Añade los botones de Pinterest Segiur, Guardar y widgets de perfil (Pines, "
1411
  "Tablero, Perfil) a las entradas, páginas y widgets de WordPress."
1412
 
1413
+ #: product_list.php:292
1414
  msgid ""
1415
  "Create your personal portfolio WordPress website. Manage and showcase past "
1416
  "projects to get more clients."
1418
  "Crea tu cartera personal en el sitio de WordPress. Gestiona y muestra los "
1419
  "proyectos anteriores para obtener más clientes."
1420
 
1421
+ #: product_list.php:302
1422
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1423
  msgstr ""
1424
  "Exporta las entradas de WordPress en formato de archivo CSV fácilmente. "
1425
  "Configura el orden de los datos."
1426
 
1427
+ #: product_list.php:312
1428
  msgid ""
1429
  "Add extra fields to default WordPress user profile. The easiest way to "
1430
  "create and manage additional custom values."
1432
  "Añade los campos adicionales al perfil estándar del usuario de WordPress. La "
1433
  "forma más fácil de crear y gestionar los valores personalizados adicionales."
1434
 
1435
+ #: product_list.php:322
1436
  msgid ""
1437
  "Add and display HTML advertisement banner on WordPress website. Customize "
1438
  "bar styles and appearance."
1440
  "Añade y muestra los anuncios publicitarios de HTML en el sitio de WordPress. "
1441
  "Personaliza los estilos y la apariencia de la barra."
1442
 
1443
+ #: product_list.php:332
1444
  msgid ""
1445
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1446
  "widgets."
1448
  "Añade las citas personalizables y bloques de consejos a las entradas, "
1449
  "páginas y widgets de WordPress."
1450
 
1451
+ #: product_list.php:339
1452
  msgid ""
1453
  "Add rating plugin to your WordPress website to receive feedback from your "
1454
  "customers."
1456
  "Añade el plugin de valoración a tu sitio de WordPress para recibir "
1457
  "comentarios de tus clientes."
1458
 
1459
+ #: product_list.php:349
1460
  msgid ""
1461
  "Create your personal real estate WordPress website. Sell, rent and buy "
1462
  "properties. Add, search and browse listings easily."
1465
  "alquila y compra las propiedades. Añade, busca y navega las listas "
1466
  "fácilmente."
1467
 
1468
+ #: product_list.php:359
1469
  msgid ""
1470
  "Add related, featured, latest, and popular posts to your WordPress website. "
1471
  "Connect your blog readers with a relevant content."
1474
  "sitio de WordPress. Conecta a tus lectores de blog con el contenido "
1475
  "relevante."
1476
 
1477
+ #: product_list.php:366
1478
  msgid ""
1479
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1480
  "settings and detailed reports."
1482
  "Envía mensajes de correo masivo a los usuarios de WordPress. Plantillas "
1483
  "personalizadas, ajustes avanzados e informes detallados."
1484
 
1485
+ #: product_list.php:376
1486
  msgid ""
1487
  "The best responsive slider plugin for your WordPress website. Create "
1488
  "beautifully animated slides just in a few clicks."
1490
  "El mejor adaptable carrusel plugin para tu sitio de WordPress. Crea las "
1491
  "diapositivas maravillosamente animadas con sólo unos clics."
1492
 
1493
+ #: product_list.php:383
1494
  msgid ""
1495
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1496
  "Yahoo, Hotmail and other services."
1498
  "Configura el servidor SMTP para recibir mensajes de correo electrónico de "
1499
  "WordPress en Gmail, Yahoo, Hotmail y otros servicios."
1500
 
1501
+ #: product_list.php:390
1502
  #, fuzzy
1503
  #| msgid ""
1504
  #| "Add social media buttons and widgets to WordPress posts, pages and "
1511
  "entradas, páginas y widgets de WordPress. FB, Twitter, G+1, Pinterest, "
1512
  "LinkedIn."
1513
 
1514
+ #: product_list.php:400
1515
  msgid ""
1516
  "Add social media login, registration, and commenting to your WordPress "
1517
  "website."
1519
  "Añade el acceso, registro y comentarios a los medios de comunicación social "
1520
  "a tu sitio de WordPress."
1521
 
1522
+ #: product_list.php:407
1523
  msgid ""
1524
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1525
  "Collect data and subscribe your users."
1528
  "páginas y widgets de WordPress. Recoge los datos y suscribe a tus usuarios a "
1529
  "las noticias."
1530
 
1531
+ #: product_list.php:417
1532
  msgid ""
1533
  "Add testimonials and feedbacks from your customers to WordPress website "
1534
  "posts, pages, and widgets."
1536
  "Añade los testimonios y comentarios de tus clientes a las entradas, páginas "
1537
  "y widgets en el sitio de WordPress."
1538
 
1539
+ #: product_list.php:424
1540
  msgid ""
1541
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1542
  "attendance and generate reports."
1545
  "laboral de los empleados, optimiza el horario de trabajo en la oficina y "
1546
  "crea informes generales."
1547
 
1548
+ #: product_list.php:434
1549
  msgid ""
1550
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1551
  "and pages."
1553
  "Añade los botones de Twitter Seguir, Twittear, Hashtag y Mencionar a las "
1554
  "entradas y páginas de WordPress."
1555
 
1556
+ #: product_list.php:444
1557
  msgid ""
1558
  "Automatically check and update WordPress website core with all installed "
1559
  "plugins and themes to the latest versions."
1561
  "Compruebа y actualiza automáticamente el núcleo de sitio de WordPress a las "
1562
  "últimas versiones con todos plugins y temas que tienes instalados."
1563
 
1564
+ #: product_list.php:454
1565
  msgid ""
1566
  "Powerful user role management plugin for WordPress website. Create, edit, "
1567
  "copy, and delete user roles."
1569
  "Poderoso plugin de gestión de funciones para el sitio de WordPress. Crea, "
1570
  "edita, copia y borra los perfiles de usuarios."
1571
 
1572
+ #: product_list.php:464
1573
  msgid ""
1574
  "Display live count of online visitors who are currently browsing your "
1575
  "WordPress website."
1577
  "Lleva la cuenta de los visitantes en línea que están hojeando tu sitio de "
1578
  "WordPress en ese momento."
1579
 
1580
+ #: product_list.php:474
1581
  msgid ""
1582
  "Backup and export Zendesk Help Center content automatically to your "
1583
  "WordPress website database."
bws_menu/languages/bestwebsoft-fr_FR.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-fr_FR.po CHANGED
@@ -2,28 +2,32 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2018-01-26 12:09+0100\n"
6
- "PO-Revision-Date: 2018-03-02 10:06+0200\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "Language: fr_FR\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=2;plural=n>2;\n"
17
- "X-Generator: Poedit 1.8.7.1\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: bws_functions.php:73 bws_functions.php:191
21
  msgid "requires"
22
  msgstr "obligatoire"
23
 
24
  #: bws_functions.php:75
25
- msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
26
- msgstr "ou supérieure, c&rsquo;est pourquoi il a été désactivé&nbsp;! Merci de faire la mise à jour de WordPress puis de ré-essayer."
 
 
 
 
27
 
28
  #: bws_functions.php:76
29
  msgid "Back to the WordPress"
@@ -50,7 +54,7 @@ msgstr "Notez là"
50
  msgid "Need help?"
51
  msgstr "Besoin d&rsquo;aide&nbsp;?"
52
 
53
- #: bws_functions.php:104 bws_functions.php:919 class-bws-settings.php:1058
54
  msgid "Visit Help Center"
55
  msgstr "Visiter le site du support"
56
 
@@ -58,7 +62,7 @@ msgstr "Visiter le site du support"
58
  msgid "Want to support the plugin?"
59
  msgstr "Voter pour l&rsquo;extension"
60
 
61
- #: bws_functions.php:108 bws_menu.php:560
62
  msgid "Donate"
63
  msgstr "Don"
64
 
@@ -67,1259 +71,1672 @@ msgid "WARNING: Illegal use notification"
67
  msgstr "AVERTISSEMENT&nbsp;: Notification d&rsquo;utilisation abusive"
68
 
69
  #: bws_functions.php:128
70
- msgid "You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using your personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
71
- msgstr "Vous ne pouvez utilisez qu&rsquo;une licence de la version Pro de l&rsquo;extension pour un seul domaine. Merci de vérifier et de modifier votre licence ou votre domaine si nécessaire en utilisant votre zone client. Nous vous recommandons de résoudre ce problème dans les 24 heures, sinon l&rsquo;extension sera rendue inactive."
72
-
73
- #: bws_functions.php:128 bws_functions.php:341 bws_menu.php:631
74
- #: class-bws-settings.php:144
 
 
 
 
 
 
 
 
 
75
  msgid "Learn More"
76
  msgstr "En savoir plus"
77
 
78
  #: bws_functions.php:145
79
- msgid "Notice: Your Pro Trial license has expired. To continue using the plugin, you should buy a Pro license"
80
- msgstr "Information&nbsp;:Votre licence d&rsquo;évaluation est terminée. Pour continuer à utiliser cette extension, vous devez acheter une licence PRO."
 
 
 
 
81
 
82
  #: bws_functions.php:147
83
- msgid "Your license has expired. To continue getting top-priority support and plugin updates, you should extend it."
84
- msgstr "Votre licence est terminée. Pour continuer à disposer du support rapide et des mises à jour de l&rsquo;extension vous devez la renouveler."
 
 
 
 
85
 
86
- #: bws_functions.php:147 bws_functions.php:389 deprecated.php:586
87
  msgid "Learn more"
88
  msgstr "En savoir plus"
89
 
90
  #: bws_functions.php:165
91
  #, php-format
92
  msgid "Notice: You are using the Pro Trial license of %s plugin."
93
- msgstr "Avertissement&nbsp;: vous utilisez la version d&rsquo;évaluation de l&rsquo;extension %s."
 
 
94
 
95
  #: bws_functions.php:167
96
  msgid "Notice: You are using the Pro Trial license of plugin."
97
- msgstr "Avertissement&nbsp;: vous utilisez la version d&rsquo;évaluation de l&rsquo;extension."
 
 
98
 
99
  #: bws_functions.php:170
100
  msgid "The Pro Trial license will expire on"
101
  msgstr "La licence PRO d&rsquo;évaluation expirera le"
102
 
103
- #: bws_functions.php:193
104
- msgid "or higher! We do not guarantee that our plugin will work correctly. Please upgrade to WordPress latest version."
105
- msgstr "ou plus&nbsp;! Nous ne garantissons pas que notre extension fonctionne correctement. Merci de mettre à jour WordPress avec la dernière version."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
106
 
107
- #: bws_functions.php:208
108
  #, php-format
109
  msgid "Thank you for installing %s plugin!"
110
  msgstr "Merci d&rsquo;avoir installé l&rsquo;extension %s&nbsp;!"
111
 
112
- #: bws_functions.php:210
113
  msgid "Let's get started"
114
  msgstr "Démarrer"
115
 
116
- #: bws_functions.php:211 bws_functions.php:244 bws_menu.php:564
117
- #: bws_menu.php:566
118
  msgid "Settings"
119
  msgstr "Paramètres"
120
 
121
- #: bws_functions.php:213 bws_menu.php:326 class-bws-settings.php:747
122
- #: class-bws-settings.php:1060 class-bws-settings.php:1070 deprecated.php:697
123
  msgid "or"
124
  msgstr "ou"
125
 
126
- #: bws_functions.php:214 bws_functions.php:246
127
  msgid "Add New"
128
  msgstr "Ajouter"
129
 
130
- #: bws_functions.php:218 bws_functions.php:228 bws_functions.php:332
131
- #: bws_functions.php:385 bws_functions.php:487
132
- msgid "Close notice"
133
- msgstr "Effacer l&rsquo;avertissement"
134
-
135
- #: bws_functions.php:233
136
  msgid "Thank you for installing plugins by BestWebSoft!"
137
  msgstr "Merci d&rsquo;avoir installé des extensions de BestWebSoft&nbsp;!"
138
 
139
- #: bws_functions.php:235
140
  msgid "More Details"
141
  msgstr "Plus de détails"
142
 
143
- #: bws_functions.php:236
144
  msgid "Less Details"
145
  msgstr "Moins de détails"
146
 
147
- #: bws_functions.php:264
148
  msgid "Deprecated function(-s) is used on the site here:"
149
  msgstr "Une ou des fonction(s) obsolètes sont utilisées sur ce site ici&nbsp;:"
150
 
151
- #: bws_functions.php:278
152
- msgid "This function(-s) will be removed over time. Please update the product(-s)."
153
- msgstr "Ces fonctions seront supprimées rapidement. Merci de mettre à jour vos produits."
154
-
155
- #: bws_functions.php:337
156
- msgid "It’s time to upgrade your"
157
- msgstr "C&rsquo;est le moment de mettre à jour votre "
158
-
159
- #: bws_functions.php:337
160
- msgid "to"
161
- msgstr "à"
162
-
163
- #: bws_functions.php:337
164
- msgid "version!"
165
- msgstr "version&nbsp;!"
166
-
167
- #: bws_functions.php:338
168
- msgid "Extend standard plugin functionality with new great options."
169
- msgstr "Étend les fonctionnalités classiques de l&rsquo;extension avec des nouvelles options."
170
-
171
- #: bws_functions.php:389
172
- #, php-format
173
- msgid "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
174
- msgstr "Votre clé de licence pour %s est terminée le %s et vous ne disposerez plus du support rapide et des mises à jour."
175
 
176
- #: bws_functions.php:482
177
  #, php-format
178
  msgid "Thank you for choosing %s plugin!"
179
  msgstr "Merci d&rsquo;avoir choisi l&rsquo;extension %s&nbsp;!"
180
 
181
- #: bws_functions.php:483
182
- msgid "If you have a feature, suggestion or idea you'd like to see in the plugin, we'd love to hear about it!"
183
- msgstr "Si vous avez une fonctionnalité, une suggestion ou une idée que vous souhaitez pour cette extension, nous serons ravis d&rsquo;en parler avec vous&nbsp;!"
 
 
 
 
 
184
 
185
- #: bws_functions.php:484
186
  msgid "Suggest a Feature"
187
  msgstr "Proposer une fonctionnalité"
188
 
189
- #: bws_functions.php:500 class-bws-settings.php:540 class-bws-settings.php:543
190
- #: class-bws-settings.php:595 class-bws-settings.php:598
191
  msgid "Notice"
192
  msgstr "Avertissement"
193
 
194
- #: bws_functions.php:500
195
  msgid "The plugin's settings have been changed."
196
  msgstr "Les paramètres de l&rsquo;extension ont été modifiés."
197
 
198
- #: bws_functions.php:501 class-bws-settings.php:183 class-bws-settings.php:203
199
- #: deprecated.php:642
200
  msgid "Save Changes"
201
  msgstr "Enregistrer les modifications"
202
 
203
- #: bws_functions.php:515
204
- msgid "You can always look at premium options by checking the \"Pro Options\" in the \"Misc\" tab."
205
- msgstr "Vous pouvez toujours consulter les options premium en cliquant sur le lien \"Voir les fonctionnalités de la version PRO\" dans l&rsquo;onglet divers."
 
 
 
 
206
 
207
- #: bws_functions.php:673
208
  msgid "Add shortcode"
209
  msgstr "Ajouter le code court"
210
 
211
- #: bws_functions.php:673
212
  msgid "Add BestWebSoft plugins' shortcodes using this button."
213
  msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
214
 
215
- #: bws_functions.php:729
216
  msgid "Close"
217
  msgstr "Fermer"
218
 
219
- #: bws_functions.php:821
220
  msgid "Are you sure you want to restore default settings?"
221
  msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut&nbsp;?"
222
 
223
- #: bws_functions.php:824
224
  msgid "Yes, restore all settings"
225
  msgstr "Oui, remettre les valeurs par défaut"
226
 
227
- #: bws_functions.php:825
228
  msgid "No, go back to the settings page"
229
  msgstr "Non, retourner à la page des paramètres"
230
 
231
- #: bws_functions.php:867
232
  msgid "Plugin"
233
  msgstr "Extension"
234
 
235
- #: bws_functions.php:876
236
  msgid "Shortcode settings"
237
  msgstr "Paramètres du code court"
238
 
239
- #: bws_functions.php:881
240
  msgid "The shortcode will be inserted"
241
  msgstr "Le code court sera inséré"
242
 
243
- #: bws_functions.php:924
244
  msgid "FAQ"
245
  msgstr "FAQ"
246
 
247
- #: bws_functions.php:930
248
  msgid "For more information:"
249
  msgstr "Pour plus d&rsquo;informations&nbsp;:"
250
 
251
- #: bws_functions.php:931
252
  msgid "Documentation"
253
  msgstr "Documentation"
254
 
255
- #: bws_functions.php:932
256
  msgid "Video Instructions"
257
  msgstr "Vidéo explicative"
258
 
259
- #: bws_functions.php:933
260
  msgid "Submit a Request"
261
  msgstr "Soumettre une requête"
262
 
263
- #: bws_menu.php:101 class-bws-settings.php:792 deprecated.php:323
264
  msgid "Wrong license key"
265
  msgstr "Clé de licence incorrecte"
266
 
267
- #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
268
- #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
269
- #: deprecated.php:353
270
- msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
271
- msgstr "Il est survenu une erreur. Essayer de nouveau. Si l&rsquo;erreur se produit de nouveau, merci de contacter <a href=http://support.bestwebsoft.com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
 
 
 
 
272
 
273
- #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
274
- #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
275
- #: deprecated.php:353
276
  msgid "We are sorry for inconvenience."
277
  msgstr "Nous sommes désolés pour le désagrément."
278
 
279
- #: bws_menu.php:128 class-bws-settings.php:824 class-bws-settings.php:927
280
- #: deprecated.php:139 deprecated.php:359
281
  msgid "Wrong license key."
282
  msgstr "Clé de licence incorrecte."
283
 
284
- #: bws_menu.php:130
285
- msgid "This license key is bound to another site. Change it via personal Client Area."
286
- msgstr "La clé de licence correspond à un autre site. Modifier au travers de votre espace client."
 
 
 
 
287
 
288
- #: bws_menu.php:130
289
  msgid "Log in"
290
  msgstr "Connexion"
291
 
292
- #: bws_menu.php:132 bws_menu.php:332 deprecated.php:261
293
  msgid "Unfortunately, you have exceeded the number of available tries per day."
294
- msgstr "Désoler mais vous avez dépassé le nombre d&rsquo;essai de la journée. Merci de télécharger l&rsquo;extension manuellement."
 
 
295
 
296
- #: bws_menu.php:134 deprecated.php:365
297
  #, php-format
298
- msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates, you should extend it in your %s"
299
- msgstr "Désoler, votre licence est terminée. Pour continuer à disposer du support rapide et des mises à jour de l&rsquo;extension vous devez la renouveler dans votre %s"
 
 
 
 
 
300
 
301
- #: bws_menu.php:136 class-bws-settings.php:935 deprecated.php:367
302
- msgid "Unfortunately, the Pro licence was already installed to this domain. The Pro Trial license can be installed only once."
303
- msgstr "Une licence a déjà été installée sur ce domaine. La licence d&rsquo;évaluation ne peut-être installée qu&rsquo;une seule fois."
 
 
 
 
304
 
305
- #: bws_menu.php:142 class-bws-settings.php:839 deprecated.php:153
306
  msgid "The license key is valid."
307
  msgstr "La clé de licence est valide."
308
 
309
- #: bws_menu.php:144 class-bws-settings.php:842 deprecated.php:156
310
  msgid "Your license will expire on"
311
  msgstr "Votre licence se termine le "
312
 
313
- #: bws_menu.php:146
314
  msgid "Congratulations! Pro Membership license is activated successfully."
315
- msgstr "Félicitations&nbsp;! La version PRO de cette extension a été activée avec succès."
 
 
316
 
317
- #: bws_menu.php:153 class-bws-settings.php:1007 deprecated.php:436
318
- msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
319
- msgstr "Il est survenu une erreur. Essayer de nouveau ou bien télécharger l&rsquo;extension manuellement.Nous sommes désolés pour le désagrément."
 
 
 
 
320
 
321
- #: bws_menu.php:163
322
  msgid "Please enter your license key."
323
  msgstr "Merci de saisir votre clé de licence."
324
 
325
- #: bws_menu.php:174
326
  msgid "Not set"
327
  msgstr "Not set"
328
 
329
- #: bws_menu.php:176
330
  msgid "On"
331
  msgstr "On"
332
 
333
- #: bws_menu.php:176
334
  msgid "Off"
335
  msgstr "Off"
336
 
337
- #: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
338
- #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
339
  msgid "N/A"
340
  msgstr "N/A"
341
 
342
- #: bws_menu.php:182
343
- msgid " Mb"
 
 
344
  msgstr " Mb"
345
 
346
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
347
  msgid "Yes"
348
  msgstr "Yes"
349
 
350
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
351
  msgid "No"
352
  msgstr "No"
353
 
354
- #: bws_menu.php:196
355
  msgid "WordPress Environment"
356
  msgstr "Environnent WordPress"
357
 
358
- #: bws_menu.php:198
359
  msgid "Home URL"
360
  msgstr "Home URL"
361
 
362
- #: bws_menu.php:199
363
  msgid "Website URL"
364
  msgstr "Site URL"
365
 
366
- #: bws_menu.php:200
367
  msgid "WP Version"
368
  msgstr "WP Version"
369
 
370
- #: bws_menu.php:201
371
  msgid "WP Multisite"
372
  msgstr "WP Multisite"
373
 
374
- #: bws_menu.php:202
375
  msgid "WP Memory Limit"
376
  msgstr "WP Memory Limit"
377
 
378
- #: bws_menu.php:203
379
  msgid "Active Theme"
380
  msgstr "Active Theme"
381
 
382
- #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
383
  #, php-format
384
  msgid "by %s"
385
  msgstr "par %s"
386
 
387
- #: bws_menu.php:207
388
  msgid "Server Environment"
389
  msgstr "Environnent serveur"
390
 
391
- #: bws_menu.php:209
392
  msgid "Operating System"
393
  msgstr "Operating System"
394
 
395
- #: bws_menu.php:210
396
  msgid "Server"
397
  msgstr "Server"
398
 
399
- #: bws_menu.php:211
400
  msgid "PHP Version"
401
  msgstr "PHP Version"
402
 
403
- #: bws_menu.php:212
404
  msgid "PHP Allow URL fopen"
405
  msgstr "PHP Allow URL fopen"
406
 
407
- #: bws_menu.php:213
408
  msgid "PHP Memory Limit"
409
  msgstr "PHP Memory Limit"
410
 
411
- #: bws_menu.php:214
412
  msgid "Memory Usage"
413
  msgstr "Memory usage"
414
 
415
- #: bws_menu.php:215
416
  msgid "PHP Max Upload Size"
417
  msgstr "PHP Max Upload Size"
418
 
419
- #: bws_menu.php:216
420
  msgid "PHP Max Post Size"
421
  msgstr "PHP Max Post Size"
422
 
423
- #: bws_menu.php:217
424
  msgid "PHP Max Script Execute Time"
425
  msgstr "PHP Max Script Execute Time"
426
 
427
- #: bws_menu.php:218
428
  msgid "PHP Exif support"
429
  msgstr "PHP Exif support"
430
 
431
- #: bws_menu.php:219
432
  msgid "PHP IPTC support"
433
  msgstr "PHP IPTC support"
434
 
435
- #: bws_menu.php:220
436
  msgid "PHP XML support"
437
  msgstr "PHP XML support"
438
 
439
- #: bws_menu.php:226
440
  msgid "Database"
441
  msgstr "Base de données"
442
 
443
- #: bws_menu.php:228
444
  msgid "WP DB version"
445
  msgstr "WordPress DB Version"
446
 
447
- #: bws_menu.php:229
448
  msgid "MySQL version"
449
  msgstr "MYSQL Version"
450
 
451
- #: bws_menu.php:230
452
  msgid "SQL Mode"
453
  msgstr "SQL Mode"
454
 
455
- #: bws_menu.php:234
456
  msgid "Active Plugins"
457
  msgstr "Extensions actives"
458
 
459
- #: bws_menu.php:239
460
  msgid "Inactive Plugins"
461
  msgstr "Extensions inactives"
462
 
463
- #: bws_menu.php:260
464
  msgid "Please enter a valid email address."
465
  msgstr "Merci de saisir une adresse e-mail valide."
466
 
467
- #: bws_menu.php:262
468
  #, php-format
469
  msgid "Email with system info is sent to %s."
470
  msgstr "Le courriel avec les informations système est envoyé à %s."
471
 
472
- #: bws_menu.php:266
473
  msgid "Thank you for contacting us."
474
  msgstr "Merci de nous avoir contacté."
475
 
476
- #: bws_menu.php:289
477
  msgid "Sorry, email message could not be delivered."
478
  msgstr "Désolé, votre e-mail n&rsquo;a pas pu être envoyé."
479
 
480
- #: bws_menu.php:305 bws_menu.php:309 bws_menu.php:358 deprecated.php:91
481
  msgid "Plugins"
482
  msgstr "Extensions"
483
 
484
- #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:618 deprecated.php:92
485
  msgid "Themes"
486
  msgstr "Thèmes"
487
 
488
- #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:648
489
  msgid "System status"
490
  msgstr "Etat du système"
491
 
492
- #: bws_menu.php:315
493
  msgid "Support"
494
  msgstr "Support"
495
 
496
- #: bws_menu.php:316
497
  msgid "Manage purchased licenses & subscriptions"
498
  msgstr "Gérer les licences et les inscriptions"
499
 
500
- #: bws_menu.php:324
501
  #, php-format
502
  msgid "Get Access to %s+ Premium Plugins"
503
  msgstr "Accéder à plus de %s extensions premiums"
504
 
505
- #: bws_menu.php:326
506
  msgid "Subscribe to Pro Membership"
507
  msgstr "Souscrire une adhésion PRO"
508
 
509
- #: bws_menu.php:334 bws_menu.php:345 class-bws-settings.php:760
510
- #: deprecated.php:227
511
  msgid "Check license key"
512
  msgstr "Vérifier la clé de licence"
513
 
514
- #: bws_menu.php:337
515
  msgid "Enter your license key"
516
  msgstr "Merci de saisir votre clé de licence"
517
 
518
- #: bws_menu.php:343 bws_menu.php:570 bws_menu.php:579
519
- #: class-bws-settings.php:739 deprecated.php:259 deprecated.php:267
520
- #: deprecated.php:631 deprecated.php:703 deprecated.php:712
521
  msgid "Activate"
522
  msgstr "Activé"
523
 
524
- #: bws_menu.php:359
525
  msgid "Upload Plugin"
526
  msgstr "Charger l&rsquo;extension"
527
 
528
- #: bws_menu.php:363
529
  #, php-format
530
- msgid "The plugin generated %d characters of <strong>unexpected output</strong> during activation. If you notice &#8220;headers already sent&#8221; messages, problems with syndication feeds or other issues, try deactivating or removing this plugin."
531
- msgstr "Cette extension a produit %d caractères <strong>inattendus</strong> durant l&rsquo;activation. Si vous constatez le message &#8220;headers already sent&#8221;, des problèmes avec les flux de syndication ou autres, essayez de désactiver l&rsquo;extension ou supprimer l&rsquo;extension."
 
 
 
 
 
 
 
 
532
 
533
- #: bws_menu.php:365
534
- msgid "Plugin could not be activated because it triggered a <strong>fatal error</strong>."
535
- msgstr "L&rsquo;extension ne peut pas être activée car une <strong>erreur fatale</strong> a été détectée."
 
 
 
 
536
 
537
- #: bws_menu.php:368
538
  msgid "Plugin <strong>activated</strong>."
539
  msgstr "Extension <strong>activée</strong>."
540
 
541
- #: bws_menu.php:375
542
- msgid "Installing Plugin"
543
- msgstr "Extension installée"
 
 
544
 
545
- #: bws_menu.php:381
546
- msgid "Downloading install package from"
547
- msgstr "Télécharger le paquet d&rsquo;installation depuis"
548
 
549
- #: bws_menu.php:398 bws_menu.php:429 bws_menu.php:440 deprecated.php:388
550
- #: deprecated.php:410 deprecated.php:432
551
- msgid "Failed to download the zip archive. Please, upload the plugin manually"
552
- msgstr "Erreur de téléchargement de l&rsquo;archive ZIP. Merci de télécharger l&rsquo;extension manuellement."
553
 
554
- #: bws_menu.php:406
555
- msgid "Unpacking the package"
556
- msgstr "Décompresser le paquet"
557
 
558
- #: bws_menu.php:411 bws_menu.php:419
559
- msgid "Installing the plugin"
 
 
560
  msgstr "Installer l&rsquo;extension"
561
 
562
- #: bws_menu.php:415 deprecated.php:400
563
- msgid "Failed to open the zip archive. Please, upload the plugin manually"
564
- msgstr "Erreur d&rsquo;ouverture de l&rsquo;archive zip. Merci de télécharger l&rsquo;extension manuellement."
565
 
566
- #: bws_menu.php:422 deprecated.php:406
567
- msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
568
- msgstr "Votre serveur n&rsquo;a pas le support du format des archives ZIP ou Phar. Merci de télécharger l&rsquo;extension manuellement."
 
 
569
 
570
- #: bws_menu.php:425
571
- #, php-format
572
- msgid "The plugin %s is successfully installed."
573
- msgstr "L&rsquo;extension %s a été installée avec succès."
574
 
575
- #: bws_menu.php:432 deprecated.php:413
576
- msgid "UploadDir is not writable. Please, upload the plugin manually"
577
- msgstr "Erreur d&rsquo;ouverture de l&rsquo;archive zip. Merci de télécharger l&rsquo;extension manuellement."
578
 
579
- #: bws_menu.php:437
580
- msgid "Activate Plugin"
581
- msgstr "Activer l&rsquo;extension"
 
 
582
 
583
- #: bws_menu.php:437 bws_menu.php:443
584
  msgid "Return to BestWebSoft Panel"
585
  msgstr "Retourner à l&rsquo;administration BestWebSoft"
586
 
587
- #: bws_menu.php:451 bws_menu.php:471 bws_menu.php:600
588
  msgid "All"
589
  msgstr "Tous"
590
 
591
- #: bws_menu.php:454 bws_menu.php:637
592
  msgid "Installed"
593
  msgstr "Installé"
594
 
595
- #: bws_menu.php:457
596
  msgid "Not Installed"
597
  msgstr "Non installé"
598
 
599
- #: bws_menu.php:464
600
  msgid "Filter results"
601
  msgstr "Filtrer les résultats"
602
 
603
- #: bws_menu.php:467 bws_menu.php:596
604
  msgid "Category"
605
  msgstr "Catégorie"
606
 
607
- #: bws_menu.php:531
608
  msgid "Not installed"
609
  msgstr "Non installé"
610
 
611
- #: bws_menu.php:535
612
  msgid "Renew to get updates"
613
  msgstr "Se réabonner pour avoir les mises à jour"
614
 
615
- #: bws_menu.php:538
616
  #, php-format
617
  msgid "Update to v %s"
618
  msgstr "Mettre à jour avec la version %s"
619
 
620
- #: bws_menu.php:550 bws_menu.php:573 bws_menu.php:582
621
- msgid "Install Now"
622
- msgstr "Installer maintenant"
623
 
624
- #: bws_menu.php:556 class-bws-settings.php:157 class-bws-settings.php:1067
625
  msgid "Upgrade to Pro"
626
  msgstr "Passer à la version PRO"
627
 
628
- #: bws_menu.php:570 bws_menu.php:579
629
  msgid "Activate this plugin"
630
  msgstr "Activer cette extension"
631
 
632
- #: bws_menu.php:582
633
  msgid "Install this plugin"
634
  msgstr "Installer cette extension"
635
 
636
- #: bws_menu.php:591
 
 
 
 
637
  msgid "Nothing found. Try another criteria."
638
  msgstr "Pas de réponse. Essayer d&rsquo;autres critères."
639
 
640
- #: bws_menu.php:628
641
  #, php-format
642
  msgid "By %s"
643
  msgstr "Par %s"
644
 
645
- #: bws_menu.php:635
646
  msgid "Already Installed"
647
  msgstr "Déjà installé"
648
 
649
- #: bws_menu.php:645
650
  msgid "Browse More WordPress Themes"
651
  msgstr "Parcourir les thèmes gratuits pour WordPress"
652
 
653
- #: bws_menu.php:654
654
  msgid "Send to support"
655
  msgstr "Envoyé au support"
656
 
657
- #: bws_menu.php:661
658
  msgid "Send to custom email &#187;"
659
  msgstr "Envoyer un e-mail spécifique &#187;"
660
 
661
- #: class-bws-settings.php:136
662
  msgid "Information"
663
  msgstr "Information"
664
 
665
- #: class-bws-settings.php:144
666
  msgid "Inactive"
667
  msgstr "Inactive"
668
 
669
- #: class-bws-settings.php:152
670
  msgid "Expired"
671
  msgstr "Expiré"
672
 
673
- #: class-bws-settings.php:155
674
  #, php-format
675
  msgid "%s day(-s) left"
676
  msgstr "%s jour(s) restant"
677
 
678
- #: class-bws-settings.php:161
679
  #, php-format
680
  msgid "Expired on %s"
681
  msgstr "Terminer le %s"
682
 
683
- #: class-bws-settings.php:161
684
  msgid "Renew Now"
685
  msgstr "Renouveler maintenant"
686
 
687
- #: class-bws-settings.php:163
688
  msgid "Active"
689
  msgstr "Activé"
690
 
691
- #: class-bws-settings.php:168
692
  msgid "License"
693
  msgstr "Licence"
694
 
695
- #: class-bws-settings.php:171
696
  msgid "Status"
697
  msgstr "Etat"
698
 
699
- #: class-bws-settings.php:175
700
  msgid "Version"
701
  msgstr "Version"
702
 
703
- #: class-bws-settings.php:285
704
  msgid "All plugin settings were restored."
705
- msgstr "Les paramètres de l&rsquo;extension ont été remis aux valeurs d&rsquo;origine."
 
 
706
 
707
- #: class-bws-settings.php:423
708
  msgid "Custom Code"
709
  msgstr "Code personnalisé"
710
 
711
- #: class-bws-settings.php:427 deprecated.php:498
712
  msgid "You do not have sufficient permissions to edit plugins for this site."
713
- msgstr "Vous n&rsquo;avez pas assez de droits pour modifier l&rsquo;extension pour ce site."
 
 
714
 
715
- #: class-bws-settings.php:432 deprecated.php:620
716
  msgid "These styles will be added to the header on all pages of your site."
717
- msgstr "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
 
718
 
719
- #: class-bws-settings.php:435 deprecated.php:622
720
  #, php-format
721
- msgid "This PHP code will be hooked to the %s action and will be printed on front end only."
722
- msgstr "Ce code PHP sera rattaché à l&rsquo;action %s et sera affiché uniquement sur la partie publique."
 
 
 
 
723
 
724
- #: class-bws-settings.php:438
725
  msgid "These code will be added to the header on all pages of your site."
726
  msgstr "Ce code sera ajouté aux entêtes sur tous les pages de votre site."
727
 
728
- #: class-bws-settings.php:446 deprecated.php:646
729
  #, php-format
730
- msgid "You need to make this files writable before you can save your changes. See %s the Codex %s for more information."
731
- msgstr "Vous devez rendre ce fichier modifiable avant de pouvoir enregistrer vos modifications. Regarder %s du Codex %s pour plus d&rsquo;informations."
 
 
 
 
732
 
733
- #: class-bws-settings.php:456 deprecated.php:628
734
  msgid "Browsing"
735
  msgstr "Parcourir"
736
 
737
- #: class-bws-settings.php:461
738
  #, php-format
739
  msgid "Activate custom %s code."
740
  msgstr "Activer le code personnalisé %s."
741
 
742
- #: class-bws-settings.php:469 deprecated.php:635
743
  #, php-format
744
  msgid "Learn more about %s"
745
  msgstr "En savoir plus sur %s"
746
 
747
- #: class-bws-settings.php:531
748
  msgid "Miscellaneous Settings"
749
  msgstr "Paramètres divers"
750
 
751
- #: class-bws-settings.php:540 class-bws-settings.php:595
752
  #, php-format
753
- msgid "It is prohibited to change %s settings on this site in the %s network settings."
754
- msgstr "Il est interdit de changer le paramètre %s sur ce site dans les paramètres %s du réseau."
 
 
 
 
755
 
756
- #: class-bws-settings.php:543 class-bws-settings.php:598
757
  #, php-format
758
- msgid "It is prohibited to view %s settings on this site in the %s network settings."
759
- msgstr "Il est interdit de voir le paramètre %s sur ce site dans les paramètres %s du réseau."
 
 
 
760
 
761
- #: class-bws-settings.php:552
762
  msgid "Pro Options"
763
  msgstr "Options Pro"
764
 
765
- #: class-bws-settings.php:556
766
  msgid "Enable to display plugin Pro options."
767
  msgstr "Activer pour voir les options PRO de l&rsquo;extension."
768
 
769
- #: class-bws-settings.php:562
770
  msgid "Track Usage"
771
  msgstr "Suivi de l&rsquo;utilisation"
772
 
773
- #: class-bws-settings.php:566
774
- msgid "Enable to allow tracking plugin usage anonymously in order to make it better."
775
- msgstr "Activer pour autoriser le suivi de l&rsquo;utilisation de l&rsquo;extension de manière anonyme afin de la rendre meilleure."
 
 
 
776
 
777
- #: class-bws-settings.php:571
778
  msgid "Default Settings"
779
  msgstr "Réglages par défaut"
780
 
781
- #: class-bws-settings.php:573
782
  msgid "Restore Settings"
783
  msgstr "Remettre les paramètres"
784
 
785
- #: class-bws-settings.php:574
786
  msgid "This will restore plugin settings to defaults."
787
  msgstr "Remettre les valeurs par défaut des paramètres de l&rsquo;extension."
788
 
789
- #: class-bws-settings.php:586
790
  msgid "Import / Export"
791
  msgstr "Importer / Exporter"
792
 
793
- #: class-bws-settings.php:702 class-bws-settings.php:735
794
- #: class-bws-settings.php:757
795
  msgid "License Key"
796
  msgstr "Clé de licence"
797
 
798
- #: class-bws-settings.php:725
799
- msgid "Congratulations! Pro license is activated successfully."
800
- msgstr "Félicitations&nbsp;! La version PRO de cette extension a été activée avec succès."
801
-
802
- #: class-bws-settings.php:726
803
- #, php-format
804
- msgid "You will be automatically redirected to the %s in %s seconds."
805
- msgstr "Vous allez être redirigé automatiquement vers %s dans %s secondes."
806
-
807
- #: class-bws-settings.php:726
808
- msgid "Settings page"
809
- msgstr "Page des paramètres"
810
-
811
- #: class-bws-settings.php:741
812
  #, php-format
813
  msgid "Enter your license key to activate %s and get premium plugin features."
814
- msgstr "Saisir votre clé de licence pour activer %s et obtenir les fonctionnalités premium."
 
 
815
 
816
- #: class-bws-settings.php:744 class-bws-settings.php:931 deprecated.php:363
817
- #: deprecated.php:706
818
- msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
819
- msgstr "Désoler mais vous avez dépassé le nombre d&rsquo;essai de la journée. Merci de télécharger l&rsquo;extension manuellement."
 
 
 
820
 
821
- #: class-bws-settings.php:747 deprecated.php:697
822
  #, php-format
823
  msgid "Start Your Free %s-Day Trial Now"
824
  msgstr "Débuter votre licence d&rsquo;évaluation gratuite de %s jours"
825
 
826
- #: class-bws-settings.php:762
827
- msgid "If necessary, you can check if the license key is correct or reenter it in the field below."
828
- msgstr "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la saisir de nouveau dans le champ ci-dessous."
 
 
 
 
829
 
830
- #: class-bws-settings.php:767
831
  msgid "Manage License Settings"
832
  msgstr "Gérer les paramètres de licence"
833
 
834
- #: class-bws-settings.php:769
835
  msgid "Login to Client Area"
836
  msgstr "Se connecter à l&rsquo;espace client"
837
 
838
- #: class-bws-settings.php:771
839
- msgid "Manage active licenses, download BWS products, and view your payment history using BestWebSoft Client Area."
840
- msgstr "Gérer les licences actives, télécharger les produits BWS, et voir l&rsquo;historique de vos règlements dans l&rsquo;interface client de BestWebSoft."
 
 
 
 
841
 
842
- #: class-bws-settings.php:826 class-bws-settings.php:929 deprecated.php:141
843
- #: deprecated.php:361
844
  msgid "This license key is bound to another site."
845
  msgstr "La clé de licence correspond à un autre site."
846
 
847
- #: class-bws-settings.php:828 deprecated.php:143
848
- msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
849
- msgstr "La clé de licence est valide mais votre durée de validité est passée. Pour continuer à disposer du support rapide et des mises à jour de l&rsquo;extension vous devez la renouveller."
 
 
 
 
 
850
 
851
- #: class-bws-settings.php:830 deprecated.php:145
852
  msgid "Unfortunately, you have exceeded the number of available tries."
853
- msgstr "Désoler mais vous avez dépassé le nombre d&rsquo;essai de la journée. Merci de télécharger l&rsquo;extension manuellement."
 
 
854
 
855
- #: class-bws-settings.php:832 deprecated.php:147
856
- msgid "Unfortunately, the Pro Trial licence was already installed to this domain. The Pro Trial license can be installed only once."
857
- msgstr "Une licence a déjà été installée sur ce domaine. La licence d&rsquo;évaluation ne peut-être installée qu&rsquo;une seule fois."
 
 
 
 
858
 
859
- #: class-bws-settings.php:837 deprecated.php:151
860
  msgid "The Pro Trial license key is valid."
861
  msgstr "La clé de licence d&rsquo;évaluation est valide."
862
 
863
- #: class-bws-settings.php:845 deprecated.php:159 deprecated.php:246
864
  #, php-format
865
- msgid "In order to continue using the plugin it is necessary to buy a %s license."
866
- msgstr "Afin de pouvoir continuer à utiliser cette extension il est nécessaire d&rsquo;acheter une licence %s."
 
 
 
867
 
868
- #: class-bws-settings.php:933
869
  #, php-format
870
- msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates, you should extend it in your %s."
871
- msgstr "Désoler, votre licence est terminée. Pour continuer à disposer du support rapide et des mises à jour de l&rsquo;extension vous devez la renouveler dans votre %s."
872
-
873
- #: class-bws-settings.php:959 class-bws-settings.php:981
874
- #: class-bws-settings.php:1003
875
- msgid "Failed to download the zip archive. Please, upload the plugin manually."
876
- msgstr "Erreur de téléchargement de l&rsquo;archive ZIP. Merci de télécharger l&rsquo;extension manuellement."
877
-
878
- #: class-bws-settings.php:971
879
- msgid "Failed to open the zip archive. Please, upload the plugin manually."
880
- msgstr "Erreur d&rsquo;ouverture de l&rsquo;archive zip. Merci de télécharger l&rsquo;extension manuellement."
881
-
882
- #: class-bws-settings.php:977
883
- msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually."
884
- msgstr "Votre serveur n&rsquo;a pas le support du format des archives ZIP ou Phar. Merci de télécharger l&rsquo;extension manuellement."
885
-
886
- #: class-bws-settings.php:984
887
- msgid "UploadDir is not writable. Please, upload the plugin manually."
888
- msgstr "Le répertoire de destination n&rsquo;est pas disponible en écriture. Merci de télécharger l&rsquo;extension manuellement."
889
 
890
- #: class-bws-settings.php:1042 deprecated.php:464
891
  msgid "Please, enter Your license key"
892
  msgstr "Merci de saisir votre clé de licence"
893
 
894
- #: class-bws-settings.php:1054
895
  msgid "Need Help?"
896
  msgstr "Besoin d&rsquo;aide&nbsp;?"
897
 
898
- #: class-bws-settings.php:1056
899
  msgid "Read the Instruction"
900
  msgstr "Lire les instructions"
901
 
902
- #: class-bws-settings.php:1060
903
  msgid "Watch the Video"
904
  msgstr "Regarder la vidéo"
905
 
906
- #: class-bws-settings.php:1071
907
  msgid "Start Your Free Trial"
908
  msgstr "Débuter votre licence d&rsquo;évaluation gratuite"
909
 
910
- #: deactivation-form.php:27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
911
  msgid "Need help? We are ready to answer your questions."
912
- msgstr "Besoin d&rsquo;aide&nbsp;? Nous sommes prêts à répondre à vos questions."
 
913
 
914
- #: deactivation-form.php:27
915
  msgid "Contact Support"
916
  msgstr "Contacter le support"
917
 
918
- #: deactivation-form.php:32
919
  msgid "The plugin is not working"
920
  msgstr "L&rsquo;extension ne fonctionna pas"
921
 
922
- #: deactivation-form.php:34
923
- msgid "Kindly share what didn't work so we can fix it in future updates..."
924
- msgstr "Merci de partager ce qui ne fonctionne pas afin que nous puissions le corriger dans une prochaine version..."
925
-
926
- #: deactivation-form.php:38
927
  msgid "The plugin didn't work as expected"
928
  msgstr "L&rsquo;extension ne fonctionne pas comme prévue"
929
 
930
- #: deactivation-form.php:40
931
- msgid "What did you expect?"
932
- msgstr "Quel est le fonctionnement attendu&nbsp;?"
933
-
934
- #: deactivation-form.php:44
935
  msgid "The plugin suddenly stopped working"
936
  msgstr "L&rsquo;extension a subitement cessé de fonctionner"
937
 
938
- #: deactivation-form.php:51
939
  msgid "The plugin broke my site"
940
  msgstr "L&rsquo;extension a cassé mon site"
941
 
942
- #: deactivation-form.php:58
943
  msgid "I couldn't understand how to get it work"
944
  msgstr "Je n&rsquo;arrive pas à comprendre commen la faire fonctionner"
945
 
946
- #: deactivation-form.php:65
947
  msgid "I found a better plugin"
948
  msgstr "J&rsquo;ai trouvé une meuilleure extension"
949
 
950
- #: deactivation-form.php:67
951
- msgid "What's the plugin name?"
952
- msgstr "Quel est le nom de l&rsquo;extension&nbsp;?"
953
-
954
- #: deactivation-form.php:71
955
  msgid "The plugin is great, but I need specific feature that you don't support"
956
- msgstr "L&rsquo;extension est magnifique, mais j&rsquo;ai besoin d&rsquo;une fonctionnalité spécifique que vous n&rsquo;offrez pas"
957
-
958
- #: deactivation-form.php:73
959
- msgid "What feature?"
960
- msgstr "Quelle fonctionalité&nbsp;?"
961
 
962
- #: deactivation-form.php:77
963
  msgid "I no longer need the plugin"
964
  msgstr "Je n&rsquo;ai plus besoin de cette extension"
965
 
966
- #: deactivation-form.php:83
967
  msgid "It's a temporary deactivation, I'm just debugging an issue"
968
- msgstr "C&rsquo;est une désactivation temporaire, je suis entrain de résoudre un problème"
 
 
969
 
970
- #: deactivation-form.php:89
971
  msgid "Other"
972
  msgstr "Autre"
973
 
974
- #: deactivation-form.php:123
975
  msgid "Quick Feedback"
976
  msgstr "Retour rapide"
977
 
978
- #: deactivation-form.php:124
979
  msgid "If you have a moment, please let us know why you are deactivating"
980
- msgstr "Si vous avez quelques instants, merci de nous dire pourquoi vous désactivez l&rsquo;extension"
981
-
982
- #: deactivation-form.php:127
983
- msgid "Send website data and allow to contact me back"
984
- msgstr "Envoyer les informations sur le site et autorisez un contact en retour"
985
-
986
- #: deactivation-form.php:132
987
- msgid "Cancel"
988
- msgstr "Annuler"
989
 
990
- #: deactivation-form.php:233
991
- msgid "Processing"
992
- msgstr "En cours"
 
 
993
 
994
- #: deactivation-form.php:262
995
- msgid "Submit & Deactivate"
 
 
996
  msgstr "Envoyer et désactiver"
997
 
998
- #: deactivation-form.php:277
999
  msgid "Please tell us the reason so we can improve it."
1000
- msgstr "Merci de nous en dire la raison afin que nous puission l&rsquo;améliorer."
1001
-
1002
- #: deactivation-form.php:345
1003
- msgid "Deactivate"
1004
- msgstr "Désactivé"
1005
 
1006
- #: deprecated.php:93
1007
  msgid "System Status"
1008
  msgstr "Etat du système"
1009
 
1010
- #: deprecated.php:204
1011
- msgid "Please, enter your license key"
1012
- msgstr "Merci de saisir votre clé de licence"
1013
-
1014
- #: deprecated.php:223
1015
- msgid "If necessary, you can check if the license key is correct or reenter it in the field below. You can find your license key on your personal page - Client Area - on our website"
1016
- msgstr "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre clé de licence sur votre page personnelle (zone client) sur notre site web."
 
 
1017
 
1018
- #: deprecated.php:223
1019
- msgid "(your username is the email address specified during the purchase). If necessary, please submit \"Lost your password?\" request."
1020
- msgstr "(votre nom d&rsquo;utilisateur est l&rsquo;adresse e-mail que vous avez donnée lors de l&rsquo;achat de l&rsquo;extension). Si nécessaire, utilisez la fonction de demande de mot de passe perdu."
 
 
 
 
 
1021
 
1022
- #: deprecated.php:246
1023
  msgid "After that, you can activate it by entering your license key."
1024
- msgstr " Après vous pouvez activer cette extension en donnant votre clé de licence."
 
1025
 
1026
- #: deprecated.php:249 deprecated.php:691
1027
  msgid "License key can be found in the"
1028
  msgstr "La clé de licence peut être trouvée dans "
1029
 
1030
- #: deprecated.php:251 deprecated.php:693
1031
  msgid "(your username is the email address specified during the purchase)."
1032
- msgstr "(votre nom d&rsquo;utilisateur est l&rsquo;adresse e-mail que vous avez donnée lors de l&rsquo;achat de l&rsquo;extension)."
 
 
1033
 
1034
- #: deprecated.php:279
1035
- msgid "Congratulations! The Pro license of the plugin is activated successfully."
1036
- msgstr "Félicitations&nbsp;! La version PRO de cette extension a été activée avec succès."
 
 
 
1037
 
1038
- #: deprecated.php:281 deprecated.php:672
1039
  msgid "Please, go to"
1040
  msgstr "Merci d&rsquo;aller à"
1041
 
1042
- #: deprecated.php:281 deprecated.php:672
1043
  msgid "the setting page"
1044
  msgstr "Options supplémentaires"
1045
 
1046
- #: deprecated.php:282 deprecated.php:673
1047
- msgid "You will be redirected automatically in 5 seconds."
1048
- msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
1049
-
1050
- #: deprecated.php:316
1051
- msgid "Check premium options on the plugin settings page!"
1052
- msgstr "Vérifier les options premium sur la page des paramètres de l&rsquo;extension&nbsp;!"
1053
-
1054
- #: deprecated.php:479
1055
  msgid "Restore all plugin settings to defaults"
1056
  msgstr "Remettre les valeurs par défaut des paramètres de l&rsquo;extension"
1057
 
1058
- #: deprecated.php:481
1059
  msgid "Restore settings"
1060
  msgstr "Remettre les paramètres"
1061
 
1062
- #: deprecated.php:550 deprecated.php:577
1063
- #, php-format
1064
- msgid "File %s edited successfully."
1065
- msgstr "Le fichier %s a été modifié avec succès."
1066
-
1067
- #: deprecated.php:552 deprecated.php:579
1068
- msgid "Not enough permissions to create or update the file"
1069
- msgstr "Pas assez de droits pour créer ou modifier le fichier"
1070
-
1071
- #: deprecated.php:582
1072
- msgid "Not enough permissions to create the file"
1073
- msgstr "Pas assez de droits pour créer le fichier"
1074
-
1075
- #: deprecated.php:626
1076
- msgid "Editing"
1077
- msgstr "Modifier"
1078
-
1079
- #: deprecated.php:670
1080
- msgid "Congratulations! Pro version of the plugin is installed and activated successfully."
1081
- msgstr "Félicitations&nbsp;! La version PRO de cette extension a été téléchargée et activée avec succès."
1082
 
1083
- #: deprecated.php:680
1084
  msgid "Show Pro features"
1085
  msgstr "Voir les fonctionnalités de la version PRO"
1086
 
1087
- #: deprecated.php:687
1088
  msgid "Enter your license key to install and activate"
1089
  msgstr "Saisir votre clé de licence pour installer et activer"
1090
 
1091
- #: deprecated.php:689
1092
  msgid "version of the plugin."
1093
  msgstr "version de l&rsquo;extension."
1094
 
1095
- #: product_list.php:7
1096
  msgid "Admin Tools"
1097
  msgstr "Outils d&rsquo;administration"
1098
 
1099
- #: product_list.php:8
1100
  msgid "Content"
1101
  msgstr "Contenu"
1102
 
1103
- #: product_list.php:9
1104
  msgid "eCommerce"
1105
  msgstr "eCommerce"
1106
 
1107
- #: product_list.php:10
1108
  msgid "Marketing"
1109
  msgstr "Marketing"
1110
 
1111
- #: product_list.php:11
1112
  msgid "Navigation"
1113
  msgstr "Navigation"
1114
 
1115
- #: product_list.php:12
1116
  msgid "Recommended"
1117
  msgstr "Recommandé"
1118
 
1119
- #: product_list.php:13
1120
  msgid "Security"
1121
  msgstr "Sécurité"
1122
 
1123
- #: product_list.php:14
1124
  msgid "SEO"
1125
  msgstr "SEO"
1126
 
1127
- #: product_list.php:15
1128
  msgid "SMM"
1129
  msgstr "SMM"
1130
 
1131
- #: product_list.php:22
 
 
 
 
1132
  msgid "Best secure captcha plugin to protect your WordPress forms."
1133
- msgstr "Extension de Captach meuilleure et plus sécurisée pour vos formulaires."
 
1134
 
1135
- #: product_list.php:32
1136
- msgid "Create your personal car rental/booking and reservation website."
1137
- msgstr "Créer votre site personnel de vente/location de voitures."
1138
 
1139
- #: product_list.php:42
1140
- msgid "Allow customers to reach you using secure contact form plugin any website must have."
1141
- msgstr "Permet à vos clients de vous joindre en utilisant un formulaire de contact sécurisé que tout site doit avoir."
 
 
 
 
1142
 
1143
- #: product_list.php:52
 
 
 
 
 
 
 
 
1144
  msgid "Add unlimited number of contact forms to WordPress website."
1145
  msgstr "Ajoute une nombre illimité de formulaires de contact."
1146
 
1147
- #: product_list.php:62
1148
  msgid "Save and manage Contact Form messages. Never lose important data."
1149
- msgstr "Enregistrer et gérer les messages issu du formulaire de contact. Permet de ne pas perdre des informations importantes."
 
 
1150
 
1151
- #: product_list.php:72
1152
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1153
  msgstr "Ajouter un nombre illimté de pages dans l&rsquo;administration."
1154
 
1155
- #: product_list.php:79
1156
- msgid "Add custom fields to WordPress website search results."
1157
- msgstr "Ajouter des champs personalisés dans le résultats de la recherche."
1158
-
1159
- #: product_list.php:86
1160
- msgid "Add custom post types and taxonomies to WordPress website search results."
1161
- msgstr "Ajouter des types d&rsquo;articles personalisés et des taxonomies dans le résultat de la recherche."
1162
 
1163
- #: product_list.php:96
1164
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1165
- msgstr "Ajouter des boutons de dons avec PayPal et 2CO pour recevoir des donations."
 
1166
 
1167
- #: product_list.php:103
1168
- msgid "Get latest error log messages to diagnose website problems. Define and fix issues faster."
1169
- msgstr "Obtenir les derniers messages d&rsquo;erreur pour diagnostiquer les problèmes du site. Permet de corriger plus rapidement."
 
 
 
 
1170
 
1171
- #: product_list.php:110
1172
- msgid "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and widgets."
1173
- msgstr "Ajouter les boutons Suivre, Aimer et Partager pour FaceBook aux articles, pages et widgets."
 
 
 
 
1174
 
1175
- #: product_list.php:120
1176
- msgid "Add beautiful galleries, albums & images to your WordPress website in a few clicks."
 
 
1177
  msgstr "Ajouter des galeries, albums et images en quelques clics."
1178
 
1179
- #: product_list.php:130
1180
- msgid "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress posts, pages and widgets."
1181
- msgstr "Ajouter les boutons Partager, Suivre, Particciper et le profile de Google +1 aux articles, pages et widgets."
1182
-
1183
- #: product_list.php:140
1184
- msgid "Stronger security solution which protects your WordPress website from hacks and unauthorized login attempts."
1185
- msgstr "Solution forte de sécurité qui protège votre site des attaques et des tentatives de connexions."
1186
 
1187
- #: product_list.php:150
1188
- msgid "Add Adsense ads to WordPress website pages, posts, custom posts, search results, categories, tags, and widgets."
1189
- msgstr "Ajouter les publicités Adsense aux pages, articles, types personalisés, résultats de recherche, catégories, tags, widgets."
 
 
 
 
1190
 
1191
- #: product_list.php:160
1192
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1193
- msgstr "Ajouter le code Google Analytics et permet de suivre les statistiques basiques."
1194
-
1195
- #: product_list.php:170
1196
- msgid "Protect WordPress website forms from spam entries with Google Captcha (reCaptcha)."
 
 
 
 
 
 
1197
  msgstr "Protéger vos formulaires avec Google Captcha (reCaptcha)."
1198
 
1199
- #: product_list.php:180
1200
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1201
  msgstr "Ajouter des cartes de Google maps aux articles, pages et widgets."
1202
 
1203
- #: product_list.php:190
1204
- msgid "Generate and add XML sitemap to WordPress website. Help search engines index your blog."
1205
- msgstr "Générer et ajouter un fichier XML de sitemap. Aide les moteurs de recherche à parcourir votre site."
 
 
 
 
1206
 
1207
- #: product_list.php:200
1208
- msgid "Replace external WordPress website links with Google shortlinks and track click stats."
1209
- msgstr "Remplacer les liens externes dans votre site par des liens courts de Google et disposer de statistiques."
 
 
 
 
1210
 
1211
- #: product_list.php:207
1212
- msgid "Protect WordPress website – allow and deny access for certain IP addresses, hostnames, etc."
1213
- msgstr "Protéger votre site en autorisant ou interdissant certaines adresses IP, nom de machine, ..."
 
 
 
 
1214
 
1215
- #: product_list.php:217
1216
- msgid "Create your personal job board and listing WordPress website. Search jobs, submit CV/resumes, choose candidates."
1217
- msgstr "Créer votre site d&rsquo;offres d&rsquo;emploies. Rechercher des emplois, envoyer des CV/des candidatures."
 
 
 
 
1218
 
1219
- #: product_list.php:224
1220
- msgid "Protect WordPress website against brute force attacks. Limit rate of login attempts."
1221
- msgstr "Protéger le site contre les attaques de brute force. Limite la fréquence des tentatives de connexions."
 
 
 
 
1222
 
1223
- #: product_list.php:234
1224
- msgid "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. 5 plugins included – profile, insider, etc."
1225
- msgstr "Ajouter les boutons partager et suivre de LinkedIn aux articles, pages et widgets. 5 extensions incluses (profile, insider, etc.)"
 
 
 
 
1226
 
1227
- #: product_list.php:244
1228
- msgid "Translate WordPress website content to other languages manually. Create multilingual pages, posts, widgets, menus, etc."
1229
- msgstr "Traduire le contenu du site dans d&rsquo;autres langues manuellement. Créer des pages, des articles, des widgets, des menus, etc dans plusieurs langues."
 
 
 
 
1230
 
1231
- #: product_list.php:254
1232
- msgid "Add customizable pagination to WordPress website. Split long content to multiple pages for better navigation."
1233
- msgstr "Ajouter une pagination presonalisée. Découper un contenu long en plusieurs pages pour une meuilleure navigation."
 
 
 
 
1234
 
1235
- #: product_list.php:264
1236
- msgid "Generate PDF files and print WordPress posts/pages. Customize document header/footer styles and appearance."
1237
- msgstr "Générer des fichiers PDF pour des pages ou des articles. Personaliser l&rsquo;en-tête/pied de page, les styles et l&rsquo;apparence."
 
 
 
 
1238
 
1239
- #: product_list.php:274
1240
- msgid "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, Profile) to WordPress posts, pages and widgets."
1241
- msgstr "Ajouter les boutons Suivre, Epingler et le widget de profile (Epingle, Tableau de bord, profile) pour Pinterest aux articles, pages et widgets."
 
 
 
 
1242
 
1243
- #: product_list.php:284
1244
- msgid "Create your personal portfolio WordPress website. Manage and showcase past projects to get more clients."
1245
- msgstr "Créer votre site de portfolio. Gérer et présenter vos anciens projets pour acquérir de nouveaux clients."
 
 
 
 
1246
 
1247
- #: product_list.php:294
1248
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1249
- msgstr "Exporter vos articles dans un format CSV facilement. Configurer l&rsquo;ordre des données."
1250
-
1251
- #: product_list.php:301
1252
- msgid "Add extra fields to default WordPress user profile. The easiest way to create and manage additional custom values."
1253
- msgstr "Ajouter des champs personalisés au profil utilisateur. La façon la plus simple de créer et gérer des informations supplémentaires."
1254
-
1255
- #: product_list.php:308
1256
- msgid "Add and display HTML advertisement banner on WordPress website. Customize bar styles and appearance."
1257
- msgstr "Ajouter et afficher une bannière de publicité en HTML. Personaliser le style et l&rsquo;apparence de la barre."
1258
 
1259
- #: product_list.php:318
1260
- msgid "Add customizable quotes and tips blocks to WordPress posts, pages and widgets."
1261
- msgstr "Ajouter des blocs d&rsquo;avis et d&rsquo;astuces sur vos pages, articles et widgets."
 
 
 
 
1262
 
1263
- #: product_list.php:325
1264
- msgid "Add rating plugin to your WordPress website to receive feedback from your customers."
1265
- msgstr "Ajouter une notation pour avoir un retour de vos utilisateurs/clients."
 
 
 
 
1266
 
1267
  #: product_list.php:332
1268
- msgid "Create your personal real estate WordPress website. Sell, rent and buy properties. Add, search and browse listings easily."
1269
- msgstr "Créer votre site d&rsquo;annonces immobilières. Vendre, louer et acheter des biens. Recherche et catalogue facilement mis en place."
 
 
 
 
1270
 
1271
- #: product_list.php:342
1272
- msgid "Add related, featured, latest, and popular posts to your WordPress website. Connect your blog readers with a relevant content."
1273
- msgstr "Ajouter des informations sur les articles en relations, mis en avant, populaires. Fournisser à vos lecteurs un contenu passionant."
 
 
1274
 
1275
  #: product_list.php:349
1276
- msgid "Send bulk email messages to WordPress users. Custom templates, advanced settings and detailed reports."
1277
- msgstr "Envoyer des messages e-mail en masse à vos utilisateurs. Modèles personalisables, paramétrage avancé et reporting complet."
 
 
 
 
1278
 
1279
  #: product_list.php:359
1280
- msgid "The best responsive slider plugin for your WordPress website. Create beautifully animated slides just in a few clicks."
1281
- msgstr "Extension pour mettre en place des diaporamas responsive. Créer des diaporamas animés en quelques clics."
 
 
 
 
1282
 
1283
  #: product_list.php:366
1284
- msgid "Configure SMTP server to receive email messages from WordPress to Gmail, Yahoo, Hotmail and other services."
1285
- msgstr "Configurer un serveur SMTP pour envoyer des e-mails vers Gmail, Yahoo, Hotmail et d&rsquo;autres services."
 
 
 
 
1286
 
1287
- #: product_list.php:373
1288
- msgid "Add social media buttons and widgets to WordPress posts, pages and widgets. FB, Twitter, G+1, Pinterest, LinkedIn."
1289
- msgstr "Ajouter des boutons pour les réseaux sociaux FB, Twitter, G+1, Pinterest, LinkedIn aux articles, pages et widgets."
 
 
 
 
1290
 
1291
  #: product_list.php:383
1292
- msgid "Add social media login, registration, and commenting to your WordPress website."
1293
- msgstr "Ajouter la connection, l&rsquo;enregistrement et la rédaction de commentaires pour vos réseaux sociaux."
 
 
 
 
1294
 
1295
  #: product_list.php:390
1296
- msgid "Add email newsletter sign up form to WordPress posts, pages and widgets. Collect data and subscribe your users."
1297
- msgstr "Ajouter un formulaire d&rsquo;inscription à votre lettre d&rsquo;information sur vos pages, articles et widgets. Récolter les inscriptions et les données de vos utilisateurs."
 
 
 
 
 
 
 
 
1298
 
1299
  #: product_list.php:400
1300
- msgid "Add testimonials and feedbacks from your customers to WordPress website posts, pages, and widgets."
1301
- msgstr "Ajouter des témoignages et des retours de vos clients aux articles, pages et widgets."
 
 
 
 
1302
 
1303
  #: product_list.php:407
1304
- msgid "Best timesheet plugin for WordPress. Track employee time, streamline attendance and generate reports."
1305
- msgstr "La meuilleure extension de suivi du temps. Suiver le temps de vos employés, le temps de présence et créer des rapports."
 
 
 
 
 
1306
 
1307
  #: product_list.php:417
1308
- msgid "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts and pages."
1309
- msgstr "Ajouter les boutons Suivre, Tweet, Hastag pour Twitter aux articles, pages et widgets."
 
 
 
 
1310
 
1311
- #: product_list.php:427
1312
- msgid "Automatically check and update WordPress website core with all installed plugins and themes to the latest versions."
1313
- msgstr "Mettre à jour automatiquement votre site pour WordPress, les extensions et les thèmes."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1314
 
1315
- #: product_list.php:437
1316
- msgid "Powerful user role management plugin for WordPress website. Create, edit, copy, and delete user roles."
1317
- msgstr "Gestion des droits des utilisateurs. Créer, modifier et supprimer des droits utilisateurs."
 
 
 
 
1318
 
1319
- #: product_list.php:447
1320
- msgid "Display live count of online visitors who are currently browsing your WordPress website."
 
 
1321
  msgstr "Afficher en direct le compteur des visiteurs sur votre site."
1322
 
1323
- #: product_list.php:457
1324
- msgid "Backup and export Zendesk Help Center content automatically to your WordPress website database."
1325
- msgstr "Sauvegarder et exporter le contenu de votre Zendesk Help Center vers votre site."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-02-15 10:54+0200\n"
6
+ "PO-Revision-Date: 2021-02-15 10:54+0200\n"
7
  "Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
+ "Language: fr_FR\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
 
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=2;plural=n>2;\n"
17
+ "X-Generator: Poedit 2.4.2\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: bws_functions.php:73 bws_functions.php:239
21
  msgid "requires"
22
  msgstr "obligatoire"
23
 
24
  #: bws_functions.php:75
25
+ msgid ""
26
+ "or higher, that is why it has been deactivated! Please upgrade WordPress and "
27
+ "try again."
28
+ msgstr ""
29
+ "ou supérieure, c&rsquo;est pourquoi il a été désactivé&nbsp;! Merci de faire "
30
+ "la mise à jour de WordPress puis de ré-essayer."
31
 
32
  #: bws_functions.php:76
33
  msgid "Back to the WordPress"
54
  msgid "Need help?"
55
  msgstr "Besoin d&rsquo;aide&nbsp;?"
56
 
57
+ #: bws_functions.php:104 bws_functions.php:949 class-bws-settings.php:1082
58
  msgid "Visit Help Center"
59
  msgstr "Visiter le site du support"
60
 
62
  msgid "Want to support the plugin?"
63
  msgstr "Voter pour l&rsquo;extension"
64
 
65
+ #: bws_functions.php:108 bws_menu.php:529
66
  msgid "Donate"
67
  msgstr "Don"
68
 
71
  msgstr "AVERTISSEMENT&nbsp;: Notification d&rsquo;utilisation abusive"
72
 
73
  #: bws_functions.php:128
74
+ msgid ""
75
+ "You can use one license of the Pro plugin for one domain only. Please check "
76
+ "and edit your license or domain if necessary using your personal Client "
77
+ "Area. We strongly recommend you to solve the problem within 24 hours, "
78
+ "otherwise the Pro plugin will be deactivated."
79
+ msgstr ""
80
+ "Vous ne pouvez utilisez qu&rsquo;une licence de la version Pro de l&rsquo;"
81
+ "extension pour un seul domaine. Merci de vérifier et de modifier votre "
82
+ "licence ou votre domaine si nécessaire en utilisant votre zone client. Nous "
83
+ "vous recommandons de résoudre ce problème dans les 24 heures, sinon l&rsquo;"
84
+ "extension sera rendue inactive."
85
+
86
+ #: bws_functions.php:128 bws_functions.php:208 bws_menu.php:600
87
+ #: class-bws-settings.php:179
88
  msgid "Learn More"
89
  msgstr "En savoir plus"
90
 
91
  #: bws_functions.php:145
92
+ msgid ""
93
+ "Notice: Your Pro Trial license has expired. To continue using the plugin, "
94
+ "you should buy a Pro license"
95
+ msgstr ""
96
+ "Information&nbsp;:Votre licence d&rsquo;évaluation est terminée. Pour "
97
+ "continuer à utiliser cette extension, vous devez acheter une licence PRO."
98
 
99
  #: bws_functions.php:147
100
+ msgid ""
101
+ "Your license has expired. To continue getting top-priority support and "
102
+ "plugin updates, you should extend it."
103
+ msgstr ""
104
+ "Votre licence est terminée. Pour continuer à disposer du support rapide et "
105
+ "des mises à jour de l&rsquo;extension vous devez la renouveler."
106
 
107
+ #: bws_functions.php:147 bws_functions.php:226
108
  msgid "Learn more"
109
  msgstr "En savoir plus"
110
 
111
  #: bws_functions.php:165
112
  #, php-format
113
  msgid "Notice: You are using the Pro Trial license of %s plugin."
114
+ msgstr ""
115
+ "Avertissement&nbsp;: vous utilisez la version d&rsquo;évaluation de l&rsquo;"
116
+ "extension %s."
117
 
118
  #: bws_functions.php:167
119
  msgid "Notice: You are using the Pro Trial license of plugin."
120
+ msgstr ""
121
+ "Avertissement&nbsp;: vous utilisez la version d&rsquo;évaluation de l&rsquo;"
122
+ "extension."
123
 
124
  #: bws_functions.php:170
125
  msgid "The Pro Trial license will expire on"
126
  msgstr "La licence PRO d&rsquo;évaluation expirera le"
127
 
128
+ #: bws_functions.php:199 bws_functions.php:222 bws_functions.php:266
129
+ #: bws_functions.php:276 bws_functions.php:475
130
+ msgid "Close notice"
131
+ msgstr "Effacer l&rsquo;avertissement"
132
+
133
+ #: bws_functions.php:204
134
+ msgid "It’s time to upgrade your"
135
+ msgstr "C&rsquo;est le moment de mettre à jour votre "
136
+
137
+ #: bws_functions.php:204
138
+ msgid "to"
139
+ msgstr "à"
140
+
141
+ #: bws_functions.php:204
142
+ msgid "version!"
143
+ msgstr "version&nbsp;!"
144
+
145
+ #: bws_functions.php:205
146
+ msgid "Extend standard plugin functionality with new great options."
147
+ msgstr ""
148
+ "Étend les fonctionnalités classiques de l&rsquo;extension avec des nouvelles "
149
+ "options."
150
+
151
+ #: bws_functions.php:226
152
+ #, php-format
153
+ msgid ""
154
+ "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
155
+ "SUPPORT or UPDATES."
156
+ msgstr ""
157
+ "Votre clé de licence pour %s est terminée le %s et vous ne disposerez plus "
158
+ "du support rapide et des mises à jour."
159
+
160
+ #: bws_functions.php:241
161
+ msgid ""
162
+ "or higher! We do not guarantee that our plugin will work correctly. Please "
163
+ "upgrade to WordPress latest version."
164
+ msgstr ""
165
+ "ou plus&nbsp;! Nous ne garantissons pas que notre extension fonctionne "
166
+ "correctement. Merci de mettre à jour WordPress avec la dernière version."
167
 
168
+ #: bws_functions.php:256
169
  #, php-format
170
  msgid "Thank you for installing %s plugin!"
171
  msgstr "Merci d&rsquo;avoir installé l&rsquo;extension %s&nbsp;!"
172
 
173
+ #: bws_functions.php:258
174
  msgid "Let's get started"
175
  msgstr "Démarrer"
176
 
177
+ #: bws_functions.php:259 bws_functions.php:292 bws_menu.php:533
178
+ #: bws_menu.php:535
179
  msgid "Settings"
180
  msgstr "Paramètres"
181
 
182
+ #: bws_functions.php:261 bws_menu.php:327 class-bws-settings.php:809
183
+ #: class-bws-settings.php:1084 class-bws-settings.php:1094 deprecated.php:234
184
  msgid "or"
185
  msgstr "ou"
186
 
187
+ #: bws_functions.php:262 bws_functions.php:294
188
  msgid "Add New"
189
  msgstr "Ajouter"
190
 
191
+ #: bws_functions.php:281
 
 
 
 
 
192
  msgid "Thank you for installing plugins by BestWebSoft!"
193
  msgstr "Merci d&rsquo;avoir installé des extensions de BestWebSoft&nbsp;!"
194
 
195
+ #: bws_functions.php:283
196
  msgid "More Details"
197
  msgstr "Plus de détails"
198
 
199
+ #: bws_functions.php:284
200
  msgid "Less Details"
201
  msgstr "Moins de détails"
202
 
203
+ #: bws_functions.php:312
204
  msgid "Deprecated function(-s) is used on the site here:"
205
  msgstr "Une ou des fonction(s) obsolètes sont utilisées sur ce site ici&nbsp;:"
206
 
207
+ #: bws_functions.php:326
208
+ msgid ""
209
+ "This function(-s) will be removed over time. Please update the product(-s)."
210
+ msgstr ""
211
+ "Ces fonctions seront supprimées rapidement. Merci de mettre à jour vos "
212
+ "produits."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
213
 
214
+ #: bws_functions.php:470
215
  #, php-format
216
  msgid "Thank you for choosing %s plugin!"
217
  msgstr "Merci d&rsquo;avoir choisi l&rsquo;extension %s&nbsp;!"
218
 
219
+ #: bws_functions.php:471
220
+ msgid ""
221
+ "If you have a feature, suggestion or idea you'd like to see in the plugin, "
222
+ "we'd love to hear about it!"
223
+ msgstr ""
224
+ "Si vous avez une fonctionnalité, une suggestion ou une idée que vous "
225
+ "souhaitez pour cette extension, nous serons ravis d&rsquo;en parler avec "
226
+ "vous&nbsp;!"
227
 
228
+ #: bws_functions.php:472
229
  msgid "Suggest a Feature"
230
  msgstr "Proposer une fonctionnalité"
231
 
232
+ #: bws_functions.php:488 class-bws-settings.php:580 class-bws-settings.php:583
233
+ #: class-bws-settings.php:635 class-bws-settings.php:638
234
  msgid "Notice"
235
  msgstr "Avertissement"
236
 
237
+ #: bws_functions.php:488
238
  msgid "The plugin's settings have been changed."
239
  msgstr "Les paramètres de l&rsquo;extension ont été modifiés."
240
 
241
+ #: bws_functions.php:489 class-bws-settings.php:222 class-bws-settings.php:242
 
242
  msgid "Save Changes"
243
  msgstr "Enregistrer les modifications"
244
 
245
+ #: bws_functions.php:503
246
+ msgid ""
247
+ "You can always look at premium options by checking the \"Pro Options\" in "
248
+ "the \"Misc\" tab."
249
+ msgstr ""
250
+ "Vous pouvez toujours consulter les options premium en cliquant sur le lien "
251
+ "\"Voir les fonctionnalités de la version PRO\" dans l&rsquo;onglet divers."
252
 
253
+ #: bws_functions.php:679
254
  msgid "Add shortcode"
255
  msgstr "Ajouter le code court"
256
 
257
+ #: bws_functions.php:679
258
  msgid "Add BestWebSoft plugins' shortcodes using this button."
259
  msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
260
 
261
+ #: bws_functions.php:765
262
  msgid "Close"
263
  msgstr "Fermer"
264
 
265
+ #: bws_functions.php:851
266
  msgid "Are you sure you want to restore default settings?"
267
  msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut&nbsp;?"
268
 
269
+ #: bws_functions.php:854
270
  msgid "Yes, restore all settings"
271
  msgstr "Oui, remettre les valeurs par défaut"
272
 
273
+ #: bws_functions.php:855
274
  msgid "No, go back to the settings page"
275
  msgstr "Non, retourner à la page des paramètres"
276
 
277
+ #: bws_functions.php:897
278
  msgid "Plugin"
279
  msgstr "Extension"
280
 
281
+ #: bws_functions.php:906
282
  msgid "Shortcode settings"
283
  msgstr "Paramètres du code court"
284
 
285
+ #: bws_functions.php:911
286
  msgid "The shortcode will be inserted"
287
  msgstr "Le code court sera inséré"
288
 
289
+ #: bws_functions.php:954
290
  msgid "FAQ"
291
  msgstr "FAQ"
292
 
293
+ #: bws_functions.php:960
294
  msgid "For more information:"
295
  msgstr "Pour plus d&rsquo;informations&nbsp;:"
296
 
297
+ #: bws_functions.php:961 bws_menu.php:401 class-bws-settings.php:776
298
  msgid "Documentation"
299
  msgstr "Documentation"
300
 
301
+ #: bws_functions.php:962 bws_menu.php:403 class-bws-settings.php:778
302
  msgid "Video Instructions"
303
  msgstr "Vidéo explicative"
304
 
305
+ #: bws_functions.php:963
306
  msgid "Submit a Request"
307
  msgstr "Soumettre une requête"
308
 
309
+ #: bws_menu.php:101 class-bws-settings.php:860
310
  msgid "Wrong license key"
311
  msgstr "Clé de licence incorrecte"
312
 
313
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
314
+ #: class-bws-settings.php:1004
315
+ msgid ""
316
+ "Something went wrong. Please try again later. If the error appears again, "
317
+ "please contact us"
318
+ msgstr ""
319
+ "Il est survenu une erreur. Essayer de nouveau. Si l&rsquo;erreur se produit "
320
+ "de nouveau, merci de contacter <a href=http://support.bestwebsoft."
321
+ "com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
322
 
323
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
324
+ #: class-bws-settings.php:1004
 
325
  msgid "We are sorry for inconvenience."
326
  msgstr "Nous sommes désolés pour le désagrément."
327
 
328
+ #: bws_menu.php:129 class-bws-settings.php:893 class-bws-settings.php:1010
 
329
  msgid "Wrong license key."
330
  msgstr "Clé de licence incorrecte."
331
 
332
+ #: bws_menu.php:131
333
+ msgid ""
334
+ "This license key is bound to another site. Change it via personal Client "
335
+ "Area."
336
+ msgstr ""
337
+ "La clé de licence correspond à un autre site. Modifier là au travers de "
338
+ "votre espace client."
339
 
340
+ #: bws_menu.php:131
341
  msgid "Log in"
342
  msgstr "Connexion"
343
 
344
+ #: bws_menu.php:133 bws_menu.php:333 deprecated.php:157
345
  msgid "Unfortunately, you have exceeded the number of available tries per day."
346
+ msgstr ""
347
+ "Désoler mais vous avez dépassé le nombre d&rsquo;essai de la journée. Merci "
348
+ "de télécharger l&rsquo;extension manuellement."
349
 
350
+ #: bws_menu.php:135
351
  #, php-format
352
+ msgid ""
353
+ "Unfortunately, Your license has expired. To continue getting top-priority "
354
+ "support and plugin updates, you should extend it in your %s"
355
+ msgstr ""
356
+ "Désoler, votre licence est terminée. Pour continuer à disposer du support "
357
+ "rapide et des mises à jour de l&rsquo;extension vous devez la renouveler "
358
+ "dans votre %s"
359
 
360
+ #: bws_menu.php:137 class-bws-settings.php:1018
361
+ msgid ""
362
+ "Unfortunately, the Pro licence was already installed to this domain. The Pro "
363
+ "Trial license can be installed only once."
364
+ msgstr ""
365
+ "Une licence a déjà été installée sur ce domaine. La licence d&rsquo;"
366
+ "évaluation ne peut-être installée qu&rsquo;une seule fois."
367
 
368
+ #: bws_menu.php:143 class-bws-settings.php:908
369
  msgid "The license key is valid."
370
  msgstr "La clé de licence est valide."
371
 
372
+ #: bws_menu.php:145 class-bws-settings.php:912
373
  msgid "Your license will expire on"
374
  msgstr "Votre licence se termine le "
375
 
376
+ #: bws_menu.php:147
377
  msgid "Congratulations! Pro Membership license is activated successfully."
378
+ msgstr ""
379
+ "Félicitations&nbsp;! La version PRO de cette extension a été activée avec "
380
+ "succès."
381
 
382
+ #: bws_menu.php:154 class-bws-settings.php:1028
383
+ msgid ""
384
+ "Something went wrong. Try again later or upload the plugin manually. We are "
385
+ "sorry for inconvenience."
386
+ msgstr ""
387
+ "Il est survenu une erreur. Essayer de nouveau ou bien télécharger l&rsquo;"
388
+ "extension manuellement.Nous sommes désolés pour le désagrément."
389
 
390
+ #: bws_menu.php:164
391
  msgid "Please enter your license key."
392
  msgstr "Merci de saisir votre clé de licence."
393
 
394
+ #: bws_menu.php:175
395
  msgid "Not set"
396
  msgstr "Not set"
397
 
398
+ #: bws_menu.php:177
399
  msgid "On"
400
  msgstr "On"
401
 
402
+ #: bws_menu.php:177
403
  msgid "Off"
404
  msgstr "Off"
405
 
406
+ #: bws_menu.php:178 bws_menu.php:179 bws_menu.php:180 bws_menu.php:181
407
+ #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:192
408
  msgid "N/A"
409
  msgstr "N/A"
410
 
411
+ #: bws_menu.php:183
412
+ #, fuzzy
413
+ #| msgid " Mb"
414
+ msgid "Mb"
415
  msgstr " Mb"
416
 
417
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
418
  msgid "Yes"
419
  msgstr "Yes"
420
 
421
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
422
  msgid "No"
423
  msgstr "No"
424
 
425
+ #: bws_menu.php:197
426
  msgid "WordPress Environment"
427
  msgstr "Environnent WordPress"
428
 
429
+ #: bws_menu.php:199
430
  msgid "Home URL"
431
  msgstr "Home URL"
432
 
433
+ #: bws_menu.php:200
434
  msgid "Website URL"
435
  msgstr "Site URL"
436
 
437
+ #: bws_menu.php:201
438
  msgid "WP Version"
439
  msgstr "WP Version"
440
 
441
+ #: bws_menu.php:202
442
  msgid "WP Multisite"
443
  msgstr "WP Multisite"
444
 
445
+ #: bws_menu.php:203
446
  msgid "WP Memory Limit"
447
  msgstr "WP Memory Limit"
448
 
449
+ #: bws_menu.php:204
450
  msgid "Active Theme"
451
  msgstr "Active Theme"
452
 
453
+ #: bws_menu.php:204 bws_menu.php:249 bws_menu.php:252
454
  #, php-format
455
  msgid "by %s"
456
  msgstr "par %s"
457
 
458
+ #: bws_menu.php:208
459
  msgid "Server Environment"
460
  msgstr "Environnent serveur"
461
 
462
+ #: bws_menu.php:210
463
  msgid "Operating System"
464
  msgstr "Operating System"
465
 
466
+ #: bws_menu.php:211
467
  msgid "Server"
468
  msgstr "Server"
469
 
470
+ #: bws_menu.php:212
471
  msgid "PHP Version"
472
  msgstr "PHP Version"
473
 
474
+ #: bws_menu.php:213
475
  msgid "PHP Allow URL fopen"
476
  msgstr "PHP Allow URL fopen"
477
 
478
+ #: bws_menu.php:214
479
  msgid "PHP Memory Limit"
480
  msgstr "PHP Memory Limit"
481
 
482
+ #: bws_menu.php:215
483
  msgid "Memory Usage"
484
  msgstr "Memory usage"
485
 
486
+ #: bws_menu.php:216
487
  msgid "PHP Max Upload Size"
488
  msgstr "PHP Max Upload Size"
489
 
490
+ #: bws_menu.php:217
491
  msgid "PHP Max Post Size"
492
  msgstr "PHP Max Post Size"
493
 
494
+ #: bws_menu.php:218
495
  msgid "PHP Max Script Execute Time"
496
  msgstr "PHP Max Script Execute Time"
497
 
498
+ #: bws_menu.php:219
499
  msgid "PHP Exif support"
500
  msgstr "PHP Exif support"
501
 
502
+ #: bws_menu.php:220
503
  msgid "PHP IPTC support"
504
  msgstr "PHP IPTC support"
505
 
506
+ #: bws_menu.php:221
507
  msgid "PHP XML support"
508
  msgstr "PHP XML support"
509
 
510
+ #: bws_menu.php:227
511
  msgid "Database"
512
  msgstr "Base de données"
513
 
514
+ #: bws_menu.php:229
515
  msgid "WP DB version"
516
  msgstr "WordPress DB Version"
517
 
518
+ #: bws_menu.php:230
519
  msgid "MySQL version"
520
  msgstr "MYSQL Version"
521
 
522
+ #: bws_menu.php:231
523
  msgid "SQL Mode"
524
  msgstr "SQL Mode"
525
 
526
+ #: bws_menu.php:235
527
  msgid "Active Plugins"
528
  msgstr "Extensions actives"
529
 
530
+ #: bws_menu.php:240
531
  msgid "Inactive Plugins"
532
  msgstr "Extensions inactives"
533
 
534
+ #: bws_menu.php:261
535
  msgid "Please enter a valid email address."
536
  msgstr "Merci de saisir une adresse e-mail valide."
537
 
538
+ #: bws_menu.php:263
539
  #, php-format
540
  msgid "Email with system info is sent to %s."
541
  msgstr "Le courriel avec les informations système est envoyé à %s."
542
 
543
+ #: bws_menu.php:267
544
  msgid "Thank you for contacting us."
545
  msgstr "Merci de nous avoir contacté."
546
 
547
+ #: bws_menu.php:290
548
  msgid "Sorry, email message could not be delivered."
549
  msgstr "Désolé, votre e-mail n&rsquo;a pas pu être envoyé."
550
 
551
+ #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:359 deprecated.php:26
552
  msgid "Plugins"
553
  msgstr "Extensions"
554
 
555
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:587 deprecated.php:27
556
  msgid "Themes"
557
  msgstr "Thèmes"
558
 
559
+ #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:617
560
  msgid "System status"
561
  msgstr "Etat du système"
562
 
563
+ #: bws_menu.php:316
564
  msgid "Support"
565
  msgstr "Support"
566
 
567
+ #: bws_menu.php:317
568
  msgid "Manage purchased licenses & subscriptions"
569
  msgstr "Gérer les licences et les inscriptions"
570
 
571
+ #: bws_menu.php:325
572
  #, php-format
573
  msgid "Get Access to %s+ Premium Plugins"
574
  msgstr "Accéder à plus de %s extensions premiums"
575
 
576
+ #: bws_menu.php:327
577
  msgid "Subscribe to Pro Membership"
578
  msgstr "Souscrire une adhésion PRO"
579
 
580
+ #: bws_menu.php:335 bws_menu.php:346 class-bws-settings.php:822
581
+ #: deprecated.php:123
582
  msgid "Check license key"
583
  msgstr "Vérifier la clé de licence"
584
 
585
+ #: bws_menu.php:338
586
  msgid "Enter your license key"
587
  msgstr "Merci de saisir votre clé de licence"
588
 
589
+ #: bws_menu.php:344 bws_menu.php:539 bws_menu.php:548
590
+ #: class-bws-settings.php:801 deprecated.php:155 deprecated.php:163
591
+ #: deprecated.php:240 deprecated.php:249
592
  msgid "Activate"
593
  msgstr "Activé"
594
 
595
+ #: bws_menu.php:360
596
  msgid "Upload Plugin"
597
  msgstr "Charger l&rsquo;extension"
598
 
599
+ #: bws_menu.php:364
600
  #, php-format
601
+ msgid ""
602
+ "The plugin generated %d characters of <strong>unexpected output</strong> "
603
+ "during activation. If you notice &#8220;headers already sent&#8221; "
604
+ "messages, problems with syndication feeds or other issues, try deactivating "
605
+ "or removing this plugin."
606
+ msgstr ""
607
+ "Cette extension a produit %d caractères <strong>inattendus</strong> durant "
608
+ "l&rsquo;activation. Si vous constatez le message &#8220;headers already "
609
+ "sent&#8221;, des problèmes avec les flux de syndication ou autres, essayez "
610
+ "de désactiver l&rsquo;extension ou supprimer l&rsquo;extension."
611
 
612
+ #: bws_menu.php:366
613
+ msgid ""
614
+ "Plugin could not be activated because it triggered a <strong>fatal error</"
615
+ "strong>."
616
+ msgstr ""
617
+ "L&rsquo;extension ne peut pas être activée car une <strong>erreur fatale</"
618
+ "strong> a été détectée."
619
 
620
+ #: bws_menu.php:369
621
  msgid "Plugin <strong>activated</strong>."
622
  msgstr "Extension <strong>activée</strong>."
623
 
624
+ #: bws_menu.php:383
625
+ #, fuzzy
626
+ #| msgid "Upload Plugin"
627
+ msgid "Download Pro Plugin"
628
+ msgstr "Charger l&rsquo;extension"
629
 
630
+ #: bws_menu.php:385 class-bws-settings.php:759
631
+ msgid "Your Pro plugin is ready"
632
+ msgstr ""
633
 
634
+ #: bws_menu.php:387 class-bws-settings.php:761
635
+ msgid "Your plugin has been zipped, and now is ready to download."
636
+ msgstr ""
 
637
 
638
+ #: bws_menu.php:390 class-bws-settings.php:764
639
+ msgid "Download Now"
640
+ msgstr ""
641
 
642
+ #: bws_menu.php:394 class-bws-settings.php:768
643
+ #, fuzzy
644
+ #| msgid "Installing the plugin"
645
+ msgid "Need help installing the plugin?"
646
  msgstr "Installer l&rsquo;extension"
647
 
648
+ #: bws_menu.php:396 class-bws-settings.php:770
649
+ msgid "How to install WordPress plugin from your admin Dashboard (ZIP archive)"
650
+ msgstr ""
651
 
652
+ #: bws_menu.php:399 class-bws-settings.php:774
653
+ #, fuzzy
654
+ #| msgid "Let's get started"
655
+ msgid "Get Started"
656
+ msgstr "Démarrer"
657
 
658
+ #: bws_menu.php:405 class-bws-settings.php:780
659
+ msgid "Knowledge Base"
660
+ msgstr ""
 
661
 
662
+ #: bws_menu.php:408
663
+ msgid "Licenses & Domains"
664
+ msgstr ""
665
 
666
+ #: bws_menu.php:411
667
+ #, fuzzy
668
+ #| msgid "Login to Client Area"
669
+ msgid "Client Area"
670
+ msgstr "Se connecter à l&rsquo;espace client"
671
 
672
+ #: bws_menu.php:413
673
  msgid "Return to BestWebSoft Panel"
674
  msgstr "Retourner à l&rsquo;administration BestWebSoft"
675
 
676
+ #: bws_menu.php:420 bws_menu.php:440 bws_menu.php:569
677
  msgid "All"
678
  msgstr "Tous"
679
 
680
+ #: bws_menu.php:423 bws_menu.php:606
681
  msgid "Installed"
682
  msgstr "Installé"
683
 
684
+ #: bws_menu.php:426
685
  msgid "Not Installed"
686
  msgstr "Non installé"
687
 
688
+ #: bws_menu.php:433
689
  msgid "Filter results"
690
  msgstr "Filtrer les résultats"
691
 
692
+ #: bws_menu.php:436 bws_menu.php:565
693
  msgid "Category"
694
  msgstr "Catégorie"
695
 
696
+ #: bws_menu.php:500
697
  msgid "Not installed"
698
  msgstr "Non installé"
699
 
700
+ #: bws_menu.php:504
701
  msgid "Renew to get updates"
702
  msgstr "Se réabonner pour avoir les mises à jour"
703
 
704
+ #: bws_menu.php:507
705
  #, php-format
706
  msgid "Update to v %s"
707
  msgstr "Mettre à jour avec la version %s"
708
 
709
+ #: bws_menu.php:519 bws_menu.php:542
710
+ msgid "Get Pro"
711
+ msgstr ""
712
 
713
+ #: bws_menu.php:525 class-bws-settings.php:192 class-bws-settings.php:1091
714
  msgid "Upgrade to Pro"
715
  msgstr "Passer à la version PRO"
716
 
717
+ #: bws_menu.php:539 bws_menu.php:548
718
  msgid "Activate this plugin"
719
  msgstr "Activer cette extension"
720
 
721
+ #: bws_menu.php:551
722
  msgid "Install this plugin"
723
  msgstr "Installer cette extension"
724
 
725
+ #: bws_menu.php:551
726
+ msgid "Install Now"
727
+ msgstr "Installer maintenant"
728
+
729
+ #: bws_menu.php:560
730
  msgid "Nothing found. Try another criteria."
731
  msgstr "Pas de réponse. Essayer d&rsquo;autres critères."
732
 
733
+ #: bws_menu.php:597
734
  #, php-format
735
  msgid "By %s"
736
  msgstr "Par %s"
737
 
738
+ #: bws_menu.php:604
739
  msgid "Already Installed"
740
  msgstr "Déjà installé"
741
 
742
+ #: bws_menu.php:614
743
  msgid "Browse More WordPress Themes"
744
  msgstr "Parcourir les thèmes gratuits pour WordPress"
745
 
746
+ #: bws_menu.php:623
747
  msgid "Send to support"
748
  msgstr "Envoyé au support"
749
 
750
+ #: bws_menu.php:630
751
  msgid "Send to custom email &#187;"
752
  msgstr "Envoyer un e-mail spécifique &#187;"
753
 
754
+ #: class-bws-settings.php:167
755
  msgid "Information"
756
  msgstr "Information"
757
 
758
+ #: class-bws-settings.php:179
759
  msgid "Inactive"
760
  msgstr "Inactive"
761
 
762
+ #: class-bws-settings.php:187
763
  msgid "Expired"
764
  msgstr "Expiré"
765
 
766
+ #: class-bws-settings.php:190
767
  #, php-format
768
  msgid "%s day(-s) left"
769
  msgstr "%s jour(s) restant"
770
 
771
+ #: class-bws-settings.php:196
772
  #, php-format
773
  msgid "Expired on %s"
774
  msgstr "Terminer le %s"
775
 
776
+ #: class-bws-settings.php:196
777
  msgid "Renew Now"
778
  msgstr "Renouveler maintenant"
779
 
780
+ #: class-bws-settings.php:198
781
  msgid "Active"
782
  msgstr "Activé"
783
 
784
+ #: class-bws-settings.php:203
785
  msgid "License"
786
  msgstr "Licence"
787
 
788
+ #: class-bws-settings.php:206
789
  msgid "Status"
790
  msgstr "Etat"
791
 
792
+ #: class-bws-settings.php:210
793
  msgid "Version"
794
  msgstr "Version"
795
 
796
+ #: class-bws-settings.php:323
797
  msgid "All plugin settings were restored."
798
+ msgstr ""
799
+ "Les paramètres de l&rsquo;extension ont été remis aux valeurs d&rsquo;"
800
+ "origine."
801
 
802
+ #: class-bws-settings.php:463
803
  msgid "Custom Code"
804
  msgstr "Code personnalisé"
805
 
806
+ #: class-bws-settings.php:467
807
  msgid "You do not have sufficient permissions to edit plugins for this site."
808
+ msgstr ""
809
+ "Vous n&rsquo;avez pas assez de droits pour modifier l&rsquo;extension pour "
810
+ "ce site."
811
 
812
+ #: class-bws-settings.php:472
813
  msgid "These styles will be added to the header on all pages of your site."
814
+ msgstr ""
815
+ "Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
816
 
817
+ #: class-bws-settings.php:475
818
  #, php-format
819
+ msgid ""
820
+ "This PHP code will be hooked to the %s action and will be printed on front "
821
+ "end only."
822
+ msgstr ""
823
+ "Ce code PHP sera rattaché à l&rsquo;action %s et sera affiché uniquement sur "
824
+ "la partie publique."
825
 
826
+ #: class-bws-settings.php:478
827
  msgid "These code will be added to the header on all pages of your site."
828
  msgstr "Ce code sera ajouté aux entêtes sur tous les pages de votre site."
829
 
830
+ #: class-bws-settings.php:486
831
  #, php-format
832
+ msgid ""
833
+ "You need to make this files writable before you can save your changes. See "
834
+ "%s the Codex %s for more information."
835
+ msgstr ""
836
+ "Vous devez rendre ce fichier modifiable avant de pouvoir enregistrer vos "
837
+ "modifications. Regarder %s du Codex %s pour plus d&rsquo;informations."
838
 
839
+ #: class-bws-settings.php:496
840
  msgid "Browsing"
841
  msgstr "Parcourir"
842
 
843
+ #: class-bws-settings.php:501
844
  #, php-format
845
  msgid "Activate custom %s code."
846
  msgstr "Activer le code personnalisé %s."
847
 
848
+ #: class-bws-settings.php:509
849
  #, php-format
850
  msgid "Learn more about %s"
851
  msgstr "En savoir plus sur %s"
852
 
853
+ #: class-bws-settings.php:571
854
  msgid "Miscellaneous Settings"
855
  msgstr "Paramètres divers"
856
 
857
+ #: class-bws-settings.php:580 class-bws-settings.php:635
858
  #, php-format
859
+ msgid ""
860
+ "It is prohibited to change %s settings on this site in the %s network "
861
+ "settings."
862
+ msgstr ""
863
+ "Il est interdit de changer le paramètre %s sur ce site dans les paramètres "
864
+ "%s du réseau."
865
 
866
+ #: class-bws-settings.php:583 class-bws-settings.php:638
867
  #, php-format
868
+ msgid ""
869
+ "It is prohibited to view %s settings on this site in the %s network settings."
870
+ msgstr ""
871
+ "Il est interdit de voir le paramètre %s sur ce site dans les paramètres %s "
872
+ "du réseau."
873
 
874
+ #: class-bws-settings.php:592
875
  msgid "Pro Options"
876
  msgstr "Options Pro"
877
 
878
+ #: class-bws-settings.php:596
879
  msgid "Enable to display plugin Pro options."
880
  msgstr "Activer pour voir les options PRO de l&rsquo;extension."
881
 
882
+ #: class-bws-settings.php:602
883
  msgid "Track Usage"
884
  msgstr "Suivi de l&rsquo;utilisation"
885
 
886
+ #: class-bws-settings.php:606
887
+ msgid ""
888
+ "Enable to allow tracking plugin usage anonymously in order to make it better."
889
+ msgstr ""
890
+ "Activer pour autoriser le suivi de l&rsquo;utilisation de l&rsquo;extension "
891
+ "de manière anonyme afin de la rendre meilleure."
892
 
893
+ #: class-bws-settings.php:611
894
  msgid "Default Settings"
895
  msgstr "Réglages par défaut"
896
 
897
+ #: class-bws-settings.php:613
898
  msgid "Restore Settings"
899
  msgstr "Remettre les paramètres"
900
 
901
+ #: class-bws-settings.php:614
902
  msgid "This will restore plugin settings to defaults."
903
  msgstr "Remettre les valeurs par défaut des paramètres de l&rsquo;extension."
904
 
905
+ #: class-bws-settings.php:626
906
  msgid "Import / Export"
907
  msgstr "Importer / Exporter"
908
 
909
+ #: class-bws-settings.php:744
 
910
  msgid "License Key"
911
  msgstr "Clé de licence"
912
 
913
+ #: class-bws-settings.php:803
 
 
 
 
 
 
 
 
 
 
 
 
 
914
  #, php-format
915
  msgid "Enter your license key to activate %s and get premium plugin features."
916
+ msgstr ""
917
+ "Saisir votre clé de licence pour activer %s et obtenir les fonctionnalités "
918
+ "premium."
919
 
920
+ #: class-bws-settings.php:806 class-bws-settings.php:1014 deprecated.php:243
921
+ msgid ""
922
+ "Unfortunately, you have exceeded the number of available tries per day. "
923
+ "Please, upload the plugin manually."
924
+ msgstr ""
925
+ "Désoler mais vous avez dépassé le nombre d&rsquo;essai de la journée. Merci "
926
+ "de télécharger l&rsquo;extension manuellement."
927
 
928
+ #: class-bws-settings.php:809 deprecated.php:234
929
  #, php-format
930
  msgid "Start Your Free %s-Day Trial Now"
931
  msgstr "Débuter votre licence d&rsquo;évaluation gratuite de %s jours"
932
 
933
+ #: class-bws-settings.php:824
934
+ msgid ""
935
+ "If necessary, you can check if the license key is correct or reenter it in "
936
+ "the field below."
937
+ msgstr ""
938
+ "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la "
939
+ "saisir de nouveau dans le champ ci-dessous."
940
 
941
+ #: class-bws-settings.php:833
942
  msgid "Manage License Settings"
943
  msgstr "Gérer les paramètres de licence"
944
 
945
+ #: class-bws-settings.php:835
946
  msgid "Login to Client Area"
947
  msgstr "Se connecter à l&rsquo;espace client"
948
 
949
+ #: class-bws-settings.php:837
950
+ msgid ""
951
+ "Manage active licenses, download BWS products, and view your payment history "
952
+ "using BestWebSoft Client Area."
953
+ msgstr ""
954
+ "Gérer les licences actives, télécharger les produits BWS, et voir l&rsquo;"
955
+ "historique de vos règlements dans l&rsquo;interface client de BestWebSoft."
956
 
957
+ #: class-bws-settings.php:895 class-bws-settings.php:1012
 
958
  msgid "This license key is bound to another site."
959
  msgstr "La clé de licence correspond à un autre site."
960
 
961
+ #: class-bws-settings.php:897
962
+ msgid ""
963
+ "This license key is valid, but Your license has expired. If you want to "
964
+ "update our plugin in future, you should extend the license."
965
+ msgstr ""
966
+ "La clé de licence est valide mais votre durée de validité est passée. Pour "
967
+ "continuer à disposer du support rapide et des mises à jour de l&rsquo;"
968
+ "extension vous devez la renouveller."
969
 
970
+ #: class-bws-settings.php:899
971
  msgid "Unfortunately, you have exceeded the number of available tries."
972
+ msgstr ""
973
+ "Désoler mais vous avez dépassé le nombre d&rsquo;essai de la journée. Merci "
974
+ "de télécharger l&rsquo;extension manuellement."
975
 
976
+ #: class-bws-settings.php:901
977
+ msgid ""
978
+ "Unfortunately, the Pro Trial licence was already installed to this domain. "
979
+ "The Pro Trial license can be installed only once."
980
+ msgstr ""
981
+ "Une licence a déjà été installée sur ce domaine. La licence d&rsquo;"
982
+ "évaluation ne peut-être installée qu&rsquo;une seule fois."
983
 
984
+ #: class-bws-settings.php:906
985
  msgid "The Pro Trial license key is valid."
986
  msgstr "La clé de licence d&rsquo;évaluation est valide."
987
 
988
+ #: class-bws-settings.php:919 deprecated.php:142
989
  #, php-format
990
+ msgid ""
991
+ "In order to continue using the plugin it is necessary to buy a %s license."
992
+ msgstr ""
993
+ "Afin de pouvoir continuer à utiliser cette extension il est nécessaire "
994
+ "d&rsquo;acheter une licence %s."
995
 
996
+ #: class-bws-settings.php:1016
997
  #, php-format
998
+ msgid ""
999
+ "Unfortunately, Your license has expired. To continue getting top-priority "
1000
+ "support and plugin updates, you should extend it in your %s."
1001
+ msgstr ""
1002
+ "Désoler, votre licence est terminée. Pour continuer à disposer du support "
1003
+ "rapide et des mises à jour de l&rsquo;extension vous devez la renouveler "
1004
+ "dans votre %s."
 
 
 
 
 
 
 
 
 
 
 
 
1005
 
1006
+ #: class-bws-settings.php:1065
1007
  msgid "Please, enter Your license key"
1008
  msgstr "Merci de saisir votre clé de licence"
1009
 
1010
+ #: class-bws-settings.php:1078
1011
  msgid "Need Help?"
1012
  msgstr "Besoin d&rsquo;aide&nbsp;?"
1013
 
1014
+ #: class-bws-settings.php:1080
1015
  msgid "Read the Instruction"
1016
  msgstr "Lire les instructions"
1017
 
1018
+ #: class-bws-settings.php:1084
1019
  msgid "Watch the Video"
1020
  msgstr "Regarder la vidéo"
1021
 
1022
+ #: class-bws-settings.php:1095
1023
  msgid "Start Your Free Trial"
1024
  msgstr "Débuter votre licence d&rsquo;évaluation gratuite"
1025
 
1026
+ #: class-bws-settings.php:1130
1027
+ #, fuzzy
1028
+ #| msgid "Suggest a Feature"
1029
+ msgid "Request a Feature"
1030
+ msgstr "Proposer une fonctionnalité"
1031
+
1032
+ #: class-bws-settings.php:1135
1033
+ #, php-format
1034
+ msgid "How can we improve %s?"
1035
+ msgstr ""
1036
+
1037
+ #: class-bws-settings.php:1137
1038
+ msgid "We look forward to hear your ideas."
1039
+ msgstr ""
1040
+
1041
+ #: class-bws-settings.php:1139
1042
+ msgid "Describe your idea"
1043
+ msgstr ""
1044
+
1045
+ #: class-bws-settings.php:1142 deactivation-form.php:120
1046
+ msgid "Send website data and allow to contact me back"
1047
+ msgstr "Envoyer les informations sur le site et autorisez un contact en retour"
1048
+
1049
+ #: class-bws-settings.php:1147
1050
+ msgid "Submit"
1051
+ msgstr ""
1052
+
1053
+ #: class-bws-settings.php:1148 deactivation-form.php:127
1054
+ msgid "Processing"
1055
+ msgstr "En cours"
1056
+
1057
+ #: class-bws-settings.php:1149
1058
+ msgid "Thank you!"
1059
+ msgstr ""
1060
+
1061
+ #: deactivation-form.php:22
1062
  msgid "Need help? We are ready to answer your questions."
1063
+ msgstr ""
1064
+ "Besoin d&rsquo;aide&nbsp;? Nous sommes prêts à répondre à vos questions."
1065
 
1066
+ #: deactivation-form.php:22
1067
  msgid "Contact Support"
1068
  msgstr "Contacter le support"
1069
 
1070
+ #: deactivation-form.php:27
1071
  msgid "The plugin is not working"
1072
  msgstr "L&rsquo;extension ne fonctionna pas"
1073
 
1074
+ #: deactivation-form.php:33
 
 
 
 
1075
  msgid "The plugin didn't work as expected"
1076
  msgstr "L&rsquo;extension ne fonctionne pas comme prévue"
1077
 
1078
+ #: deactivation-form.php:39
 
 
 
 
1079
  msgid "The plugin suddenly stopped working"
1080
  msgstr "L&rsquo;extension a subitement cessé de fonctionner"
1081
 
1082
+ #: deactivation-form.php:46
1083
  msgid "The plugin broke my site"
1084
  msgstr "L&rsquo;extension a cassé mon site"
1085
 
1086
+ #: deactivation-form.php:53
1087
  msgid "I couldn't understand how to get it work"
1088
  msgstr "Je n&rsquo;arrive pas à comprendre commen la faire fonctionner"
1089
 
1090
+ #: deactivation-form.php:60
1091
  msgid "I found a better plugin"
1092
  msgstr "J&rsquo;ai trouvé une meuilleure extension"
1093
 
1094
+ #: deactivation-form.php:66
 
 
 
 
1095
  msgid "The plugin is great, but I need specific feature that you don't support"
1096
+ msgstr ""
1097
+ "L&rsquo;extension est magnifique, mais j&rsquo;ai besoin d&rsquo;une "
1098
+ "fonctionnalité spécifique que vous n&rsquo;offrez pas"
 
 
1099
 
1100
+ #: deactivation-form.php:72
1101
  msgid "I no longer need the plugin"
1102
  msgstr "Je n&rsquo;ai plus besoin de cette extension"
1103
 
1104
+ #: deactivation-form.php:78
1105
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1106
+ msgstr ""
1107
+ "C&rsquo;est une désactivation temporaire, je suis entrain de résoudre un "
1108
+ "problème"
1109
 
1110
+ #: deactivation-form.php:84
1111
  msgid "Other"
1112
  msgstr "Autre"
1113
 
1114
+ #: deactivation-form.php:93
1115
  msgid "Quick Feedback"
1116
  msgstr "Retour rapide"
1117
 
1118
+ #: deactivation-form.php:95
1119
  msgid "If you have a moment, please let us know why you are deactivating"
1120
+ msgstr ""
1121
+ "Si vous avez quelques instants, merci de nous dire pourquoi vous désactivez "
1122
+ "l&rsquo;extension"
 
 
 
 
 
 
1123
 
1124
+ #: deactivation-form.php:125
1125
+ #, fuzzy
1126
+ #| msgid "Submit & Deactivate"
1127
+ msgid "Submit and Deactivate"
1128
+ msgstr "Envoyer et désactiver"
1129
 
1130
+ #: deactivation-form.php:126
1131
+ #, fuzzy
1132
+ #| msgid "Submit & Deactivate"
1133
+ msgid "Skip and Deactivate"
1134
  msgstr "Envoyer et désactiver"
1135
 
1136
+ #: deactivation-form.php:272
1137
  msgid "Please tell us the reason so we can improve it."
1138
+ msgstr ""
1139
+ "Merci de nous en dire la raison afin que nous puission l&rsquo;améliorer."
 
 
 
1140
 
1141
+ #: deprecated.php:28
1142
  msgid "System Status"
1143
  msgstr "Etat du système"
1144
 
1145
+ #: deprecated.php:119
1146
+ msgid ""
1147
+ "If necessary, you can check if the license key is correct or reenter it in "
1148
+ "the field below. You can find your license key on your personal page - "
1149
+ "Client Area - on our website"
1150
+ msgstr ""
1151
+ "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la "
1152
+ "saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre clé de "
1153
+ "licence sur votre page personnelle (zone client) sur notre site web."
1154
 
1155
+ #: deprecated.php:119
1156
+ msgid ""
1157
+ "(your username is the email address specified during the purchase). If "
1158
+ "necessary, please submit \"Lost your password?\" request."
1159
+ msgstr ""
1160
+ "(votre nom d&rsquo;utilisateur est l&rsquo;adresse e-mail que vous avez "
1161
+ "donnée lors de l&rsquo;achat de l&rsquo;extension). Si nécessaire, utilisez "
1162
+ "la fonction de demande de mot de passe perdu."
1163
 
1164
+ #: deprecated.php:142
1165
  msgid "After that, you can activate it by entering your license key."
1166
+ msgstr ""
1167
+ " Après vous pouvez activer cette extension en donnant votre clé de licence."
1168
 
1169
+ #: deprecated.php:145 deprecated.php:228
1170
  msgid "License key can be found in the"
1171
  msgstr "La clé de licence peut être trouvée dans "
1172
 
1173
+ #: deprecated.php:147 deprecated.php:230
1174
  msgid "(your username is the email address specified during the purchase)."
1175
+ msgstr ""
1176
+ "(votre nom d&rsquo;utilisateur est l&rsquo;adresse e-mail que vous avez "
1177
+ "donnée lors de l&rsquo;achat de l&rsquo;extension)."
1178
 
1179
+ #: deprecated.php:170
1180
+ msgid ""
1181
+ "Congratulations! The Pro license of the plugin is activated successfully."
1182
+ msgstr ""
1183
+ "Félicitations&nbsp;! La version PRO de cette extension a été activée avec "
1184
+ "succès."
1185
 
1186
+ #: deprecated.php:172 deprecated.php:210
1187
  msgid "Please, go to"
1188
  msgstr "Merci d&rsquo;aller à"
1189
 
1190
+ #: deprecated.php:172 deprecated.php:210
1191
  msgid "the setting page"
1192
  msgstr "Options supplémentaires"
1193
 
1194
+ #: deprecated.php:187
 
 
 
 
 
 
 
 
1195
  msgid "Restore all plugin settings to defaults"
1196
  msgstr "Remettre les valeurs par défaut des paramètres de l&rsquo;extension"
1197
 
1198
+ #: deprecated.php:189
1199
  msgid "Restore settings"
1200
  msgstr "Remettre les paramètres"
1201
 
1202
+ #: deprecated.php:208
1203
+ msgid ""
1204
+ "Congratulations! Pro version of the plugin is installed and activated "
1205
+ "successfully."
1206
+ msgstr ""
1207
+ "Félicitations&nbsp;! La version PRO de cette extension a été téléchargée et "
1208
+ "activée avec succès."
 
 
 
 
 
 
 
 
 
 
 
 
 
1209
 
1210
+ #: deprecated.php:217
1211
  msgid "Show Pro features"
1212
  msgstr "Voir les fonctionnalités de la version PRO"
1213
 
1214
+ #: deprecated.php:224
1215
  msgid "Enter your license key to install and activate"
1216
  msgstr "Saisir votre clé de licence pour installer et activer"
1217
 
1218
+ #: deprecated.php:226
1219
  msgid "version of the plugin."
1220
  msgstr "version de l&rsquo;extension."
1221
 
1222
+ #: product_list.php:8
1223
  msgid "Admin Tools"
1224
  msgstr "Outils d&rsquo;administration"
1225
 
1226
+ #: product_list.php:9
1227
  msgid "Content"
1228
  msgstr "Contenu"
1229
 
1230
+ #: product_list.php:10
1231
  msgid "eCommerce"
1232
  msgstr "eCommerce"
1233
 
1234
+ #: product_list.php:11
1235
  msgid "Marketing"
1236
  msgstr "Marketing"
1237
 
1238
+ #: product_list.php:12
1239
  msgid "Navigation"
1240
  msgstr "Navigation"
1241
 
1242
+ #: product_list.php:13
1243
  msgid "Recommended"
1244
  msgstr "Recommandé"
1245
 
1246
+ #: product_list.php:14
1247
  msgid "Security"
1248
  msgstr "Sécurité"
1249
 
1250
+ #: product_list.php:15
1251
  msgid "SEO"
1252
  msgstr "SEO"
1253
 
1254
+ #: product_list.php:16
1255
  msgid "SMM"
1256
  msgstr "SMM"
1257
 
1258
+ #: product_list.php:23
1259
+ msgid "Give a birth for your bike rental and booking WordPress website."
1260
+ msgstr ""
1261
+
1262
+ #: product_list.php:35
1263
  msgid "Best secure captcha plugin to protect your WordPress forms."
1264
+ msgstr ""
1265
+ "Extension de Captach meuilleure et plus sécurisée pour vos formulaires."
1266
 
1267
+ #: product_list.php:45
1268
+ msgid "Create your own rental website for car renting and booking."
1269
+ msgstr ""
1270
 
1271
+ #: product_list.php:57
1272
+ #, fuzzy
1273
+ #| msgid "Add customized Google maps to WordPress posts, pages and widgets."
1274
+ msgid ""
1275
+ "Add columns with custom content to WordPress website pages, posts, widgets, "
1276
+ "etc."
1277
+ msgstr "Ajouter des cartes de Google maps aux articles, pages et widgets."
1278
 
1279
+ #: product_list.php:64
1280
+ msgid ""
1281
+ "Allow customers to reach you using secure contact form plugin any website "
1282
+ "must have."
1283
+ msgstr ""
1284
+ "Permet à vos clients de vous joindre en utilisant un formulaire de contact "
1285
+ "sécurisé que tout site doit avoir."
1286
+
1287
+ #: product_list.php:74
1288
  msgid "Add unlimited number of contact forms to WordPress website."
1289
  msgstr "Ajoute une nombre illimité de formulaires de contact."
1290
 
1291
+ #: product_list.php:84
1292
  msgid "Save and manage Contact Form messages. Never lose important data."
1293
+ msgstr ""
1294
+ "Enregistrer et gérer les messages issu du formulaire de contact. Permet de "
1295
+ "ne pas perdre des informations importantes."
1296
 
1297
+ #: product_list.php:94
1298
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1299
  msgstr "Ajouter un nombre illimté de pages dans l&rsquo;administration."
1300
 
1301
+ #: product_list.php:104
1302
+ msgid ""
1303
+ "Add custom post types and taxonomies to WordPress website search results."
1304
+ msgstr ""
1305
+ "Ajouter des types d&rsquo;articles personalisés et des taxonomies dans le "
1306
+ "résultat de la recherche."
 
1307
 
1308
+ #: product_list.php:114
1309
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1310
+ msgstr ""
1311
+ "Ajouter des boutons de dons avec PayPal et 2CO pour recevoir des donations."
1312
 
1313
+ #: product_list.php:121
1314
+ msgid ""
1315
+ "Get latest error log messages to diagnose website problems. Define and fix "
1316
+ "issues faster."
1317
+ msgstr ""
1318
+ "Obtenir les derniers messages d&rsquo;erreur pour diagnostiquer les "
1319
+ "problèmes du site. Permet de corriger plus rapidement."
1320
 
1321
+ #: product_list.php:128
1322
+ msgid ""
1323
+ "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1324
+ "widgets."
1325
+ msgstr ""
1326
+ "Ajouter les boutons Suivre, Aimer et Partager pour FaceBook aux articles, "
1327
+ "pages et widgets."
1328
 
1329
+ #: product_list.php:138
1330
+ msgid ""
1331
+ "Add beautiful galleries, albums & images to your WordPress website in a few "
1332
+ "clicks."
1333
  msgstr "Ajouter des galeries, albums et images en quelques clics."
1334
 
1335
+ #: product_list.php:148
1336
+ msgid ""
1337
+ "Stronger security solution which protects your WordPress website from hacks "
1338
+ "and unauthorized login attempts."
1339
+ msgstr ""
1340
+ "Solution forte de sécurité qui protège votre site des attaques et des "
1341
+ "tentatives de connexions."
1342
 
1343
+ #: product_list.php:158
1344
+ msgid ""
1345
+ "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1346
+ "results, categories, tags, and widgets."
1347
+ msgstr ""
1348
+ "Ajouter les publicités Adsense aux pages, articles, types personalisés, "
1349
+ "résultats de recherche, catégories, tags, widgets."
1350
 
1351
+ #: product_list.php:168
1352
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1353
+ msgstr ""
1354
+ "Ajouter le code Google Analytics et permet de suivre les statistiques "
1355
+ "basiques."
1356
+
1357
+ #: product_list.php:178
1358
+ #, fuzzy
1359
+ #| msgid ""
1360
+ #| "Protect WordPress website forms from spam entries with Google Captcha "
1361
+ #| "(reCaptcha)."
1362
+ msgid "Protect WordPress website forms from spam entries with reCaptcha."
1363
  msgstr "Protéger vos formulaires avec Google Captcha (reCaptcha)."
1364
 
1365
+ #: product_list.php:188
1366
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1367
  msgstr "Ajouter des cartes de Google maps aux articles, pages et widgets."
1368
 
1369
+ #: product_list.php:198
1370
+ msgid ""
1371
+ "Generate and add XML sitemap to WordPress website. Help search engines index "
1372
+ "your blog."
1373
+ msgstr ""
1374
+ "Générer et ajouter un fichier XML de sitemap. Aide les moteurs de recherche "
1375
+ "à parcourir votre site."
1376
 
1377
+ #: product_list.php:208
1378
+ msgid ""
1379
+ "Replace external WordPress website links with Google shortlinks and track "
1380
+ "click stats."
1381
+ msgstr ""
1382
+ "Remplacer les liens externes dans votre site par des liens courts de Google "
1383
+ "et disposer de statistiques."
1384
 
1385
+ #: product_list.php:215
1386
+ msgid ""
1387
+ "Protect WordPress website allow and deny access for certain IP addresses, "
1388
+ "hostnames, etc."
1389
+ msgstr ""
1390
+ "Protéger votre site en autorisant ou interdissant certaines adresses IP, nom "
1391
+ "de machine, ..."
1392
 
1393
+ #: product_list.php:225
1394
+ msgid ""
1395
+ "Create your personal job board and listing WordPress website. Search jobs, "
1396
+ "submit CV/resumes, choose candidates."
1397
+ msgstr ""
1398
+ "Créer votre site d&rsquo;offres d&rsquo;emploies. Rechercher des emplois, "
1399
+ "envoyer des CV/des candidatures."
1400
 
1401
+ #: product_list.php:232
1402
+ msgid ""
1403
+ "Protect WordPress website against brute force attacks. Limit rate of login "
1404
+ "attempts."
1405
+ msgstr ""
1406
+ "Protéger le site contre les attaques de brute force. Limite la fréquence des "
1407
+ "tentatives de connexions."
1408
 
1409
+ #: product_list.php:242
1410
+ msgid ""
1411
+ "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1412
+ "5 plugins included – profile, insider, etc."
1413
+ msgstr ""
1414
+ "Ajouter les boutons partager et suivre de LinkedIn aux articles, pages et "
1415
+ "widgets. 5 extensions incluses (profile, insider, etc.)"
1416
 
1417
+ #: product_list.php:252
1418
+ msgid ""
1419
+ "Translate WordPress website content to other languages manually. Create "
1420
+ "multilingual pages, posts, widgets, menus, etc."
1421
+ msgstr ""
1422
+ "Traduire le contenu du site dans d&rsquo;autres langues manuellement. Créer "
1423
+ "des pages, des articles, des widgets, des menus, etc dans plusieurs langues."
1424
 
1425
+ #: product_list.php:262
1426
+ msgid ""
1427
+ "Add customizable pagination to WordPress website. Split long content to "
1428
+ "multiple pages for better navigation."
1429
+ msgstr ""
1430
+ "Ajouter une pagination presonalisée. Découper un contenu long en plusieurs "
1431
+ "pages pour une meuilleure navigation."
1432
 
1433
+ #: product_list.php:272
1434
+ msgid ""
1435
+ "Generate PDF files and print WordPress posts/pages. Customize document "
1436
+ "header/footer styles and appearance."
1437
+ msgstr ""
1438
+ "Générer des fichiers PDF pour des pages ou des articles. Personaliser "
1439
+ "l&rsquo;en-tête/pied de page, les styles et l&rsquo;apparence."
1440
 
1441
+ #: product_list.php:282
1442
+ msgid ""
1443
+ "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1444
+ "Profile) to WordPress posts, pages and widgets."
1445
+ msgstr ""
1446
+ "Ajouter les boutons Suivre, Epingler et le widget de profile (Epingle, "
1447
+ "Tableau de bord, profile) pour Pinterest aux articles, pages et widgets."
1448
 
1449
+ #: product_list.php:292
1450
+ msgid ""
1451
+ "Create your personal portfolio WordPress website. Manage and showcase past "
1452
+ "projects to get more clients."
1453
+ msgstr ""
1454
+ "Créer votre site de portfolio. Gérer et présenter vos anciens projets pour "
1455
+ "acquérir de nouveaux clients."
1456
 
1457
+ #: product_list.php:302
1458
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1459
+ msgstr ""
1460
+ "Exporter vos articles dans un format CSV facilement. Configurer l&rsquo;"
1461
+ "ordre des données."
 
 
 
 
 
 
1462
 
1463
+ #: product_list.php:312
1464
+ msgid ""
1465
+ "Add extra fields to default WordPress user profile. The easiest way to "
1466
+ "create and manage additional custom values."
1467
+ msgstr ""
1468
+ "Ajouter des champs personalisés au profil utilisateur. La façon la plus "
1469
+ "simple de créer et gérer des informations supplémentaires."
1470
 
1471
+ #: product_list.php:322
1472
+ msgid ""
1473
+ "Add and display HTML advertisement banner on WordPress website. Customize "
1474
+ "bar styles and appearance."
1475
+ msgstr ""
1476
+ "Ajouter et afficher une bannière de publicité en HTML. Personaliser le style "
1477
+ "et l&rsquo;apparence de la barre."
1478
 
1479
  #: product_list.php:332
1480
+ msgid ""
1481
+ "Add customizable quotes and tips blocks to WordPress posts, pages and "
1482
+ "widgets."
1483
+ msgstr ""
1484
+ "Ajouter des blocs d&rsquo;avis et d&rsquo;astuces sur vos pages, articles et "
1485
+ "widgets."
1486
 
1487
+ #: product_list.php:339
1488
+ msgid ""
1489
+ "Add rating plugin to your WordPress website to receive feedback from your "
1490
+ "customers."
1491
+ msgstr "Ajouter une notation pour avoir un retour de vos utilisateurs/clients."
1492
 
1493
  #: product_list.php:349
1494
+ msgid ""
1495
+ "Create your personal real estate WordPress website. Sell, rent and buy "
1496
+ "properties. Add, search and browse listings easily."
1497
+ msgstr ""
1498
+ "Créer votre site d&rsquo;annonces immobilières. Vendre, louer et acheter des "
1499
+ "biens. Recherche et catalogue facilement mis en place."
1500
 
1501
  #: product_list.php:359
1502
+ msgid ""
1503
+ "Add related, featured, latest, and popular posts to your WordPress website. "
1504
+ "Connect your blog readers with a relevant content."
1505
+ msgstr ""
1506
+ "Ajouter des informations sur les articles en relations, mis en avant, "
1507
+ "populaires. Fournisser à vos lecteurs un contenu passionant."
1508
 
1509
  #: product_list.php:366
1510
+ msgid ""
1511
+ "Send bulk email messages to WordPress users. Custom templates, advanced "
1512
+ "settings and detailed reports."
1513
+ msgstr ""
1514
+ "Envoyer des messages e-mail en masse à vos utilisateurs. Modèles "
1515
+ "personalisables, paramétrage avancé et reporting complet."
1516
 
1517
+ #: product_list.php:376
1518
+ msgid ""
1519
+ "The best responsive slider plugin for your WordPress website. Create "
1520
+ "beautifully animated slides just in a few clicks."
1521
+ msgstr ""
1522
+ "Extension pour mettre en place des diaporamas responsive. Créer des "
1523
+ "diaporamas animés en quelques clics."
1524
 
1525
  #: product_list.php:383
1526
+ msgid ""
1527
+ "Configure SMTP server to receive email messages from WordPress to Gmail, "
1528
+ "Yahoo, Hotmail and other services."
1529
+ msgstr ""
1530
+ "Configurer un serveur SMTP pour envoyer des e-mails vers Gmail, Yahoo, "
1531
+ "Hotmail et d&rsquo;autres services."
1532
 
1533
  #: product_list.php:390
1534
+ #, fuzzy
1535
+ #| msgid ""
1536
+ #| "Add social media buttons and widgets to WordPress posts, pages and "
1537
+ #| "widgets. FB, Twitter, G+1, Pinterest, LinkedIn."
1538
+ msgid ""
1539
+ "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1540
+ "FB, Twitter, Pinterest, LinkedIn."
1541
+ msgstr ""
1542
+ "Ajouter des boutons pour les réseaux sociaux FB, Twitter, G+1, Pinterest, "
1543
+ "LinkedIn aux articles, pages et widgets."
1544
 
1545
  #: product_list.php:400
1546
+ msgid ""
1547
+ "Add social media login, registration, and commenting to your WordPress "
1548
+ "website."
1549
+ msgstr ""
1550
+ "Ajouter la connection, l&rsquo;enregistrement et la rédaction de "
1551
+ "commentaires pour vos réseaux sociaux."
1552
 
1553
  #: product_list.php:407
1554
+ msgid ""
1555
+ "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1556
+ "Collect data and subscribe your users."
1557
+ msgstr ""
1558
+ "Ajouter un formulaire d&rsquo;inscription à votre lettre d&rsquo;information "
1559
+ "sur vos pages, articles et widgets. Récolter les inscriptions et les données "
1560
+ "de vos utilisateurs."
1561
 
1562
  #: product_list.php:417
1563
+ msgid ""
1564
+ "Add testimonials and feedbacks from your customers to WordPress website "
1565
+ "posts, pages, and widgets."
1566
+ msgstr ""
1567
+ "Ajouter des témoignages et des retours de vos clients aux articles, pages et "
1568
+ "widgets."
1569
 
1570
+ #: product_list.php:424
1571
+ msgid ""
1572
+ "Best timesheet plugin for WordPress. Track employee time, streamline "
1573
+ "attendance and generate reports."
1574
+ msgstr ""
1575
+ "La meuilleure extension de suivi du temps. Suiver le temps de vos employés, "
1576
+ "le temps de présence et créer des rapports."
1577
+
1578
+ #: product_list.php:434
1579
+ msgid ""
1580
+ "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1581
+ "and pages."
1582
+ msgstr ""
1583
+ "Ajouter les boutons Suivre, Tweet, Hastag pour Twitter aux articles, pages "
1584
+ "et widgets."
1585
+
1586
+ #: product_list.php:444
1587
+ msgid ""
1588
+ "Automatically check and update WordPress website core with all installed "
1589
+ "plugins and themes to the latest versions."
1590
+ msgstr ""
1591
+ "Mettre à jour automatiquement votre site pour WordPress, les extensions et "
1592
+ "les thèmes."
1593
 
1594
+ #: product_list.php:454
1595
+ msgid ""
1596
+ "Powerful user role management plugin for WordPress website. Create, edit, "
1597
+ "copy, and delete user roles."
1598
+ msgstr ""
1599
+ "Gestion des droits des utilisateurs. Créer, modifier et supprimer des droits "
1600
+ "utilisateurs."
1601
 
1602
+ #: product_list.php:464
1603
+ msgid ""
1604
+ "Display live count of online visitors who are currently browsing your "
1605
+ "WordPress website."
1606
  msgstr "Afficher en direct le compteur des visiteurs sur votre site."
1607
 
1608
+ #: product_list.php:474
1609
+ msgid ""
1610
+ "Backup and export Zendesk Help Center content automatically to your "
1611
+ "WordPress website database."
1612
+ msgstr ""
1613
+ "Sauvegarder et exporter le contenu de votre Zendesk Help Center vers votre "
1614
+ "site."
1615
+
1616
+ #~ msgid "Installing Plugin"
1617
+ #~ msgstr "Extension installée"
1618
+
1619
+ #~ msgid "Downloading install package from"
1620
+ #~ msgstr "Télécharger le paquet d&rsquo;installation depuis"
1621
+
1622
+ #~ msgid ""
1623
+ #~ "Failed to download the zip archive. Please, upload the plugin manually"
1624
+ #~ msgstr ""
1625
+ #~ "Erreur de téléchargement de l&rsquo;archive ZIP. Merci de télécharger "
1626
+ #~ "l&rsquo;extension manuellement."
1627
+
1628
+ #~ msgid "Unpacking the package"
1629
+ #~ msgstr "Décompresser le paquet"
1630
+
1631
+ #~ msgid "Failed to open the zip archive. Please, upload the plugin manually"
1632
+ #~ msgstr ""
1633
+ #~ "Erreur d&rsquo;ouverture de l&rsquo;archive zip. Merci de télécharger "
1634
+ #~ "l&rsquo;extension manuellement."
1635
+
1636
+ #~ msgid ""
1637
+ #~ "Your server does not support either ZipArchive or Phar. Please, upload "
1638
+ #~ "the plugin manually"
1639
+ #~ msgstr ""
1640
+ #~ "Votre serveur n&rsquo;a pas le support du format des archives ZIP ou "
1641
+ #~ "Phar. Merci de télécharger l&rsquo;extension manuellement."
1642
+
1643
+ #~ msgid "The plugin %s is successfully installed."
1644
+ #~ msgstr "L&rsquo;extension %s a été installée avec succès."
1645
+
1646
+ #~ msgid "UploadDir is not writable. Please, upload the plugin manually"
1647
+ #~ msgstr ""
1648
+ #~ "Erreur d&rsquo;ouverture de l&rsquo;archive zip. Merci de télécharger "
1649
+ #~ "l&rsquo;extension manuellement."
1650
+
1651
+ #~ msgid "Activate Plugin"
1652
+ #~ msgstr "Activer l&rsquo;extension"
1653
+
1654
+ #~ msgid "Congratulations! Pro license is activated successfully."
1655
+ #~ msgstr ""
1656
+ #~ "Félicitations&nbsp;! La version PRO de cette extension a été activée avec "
1657
+ #~ "succès."
1658
+
1659
+ #~ msgid "You will be automatically redirected to the %s in %s seconds."
1660
+ #~ msgstr "Vous allez être redirigé automatiquement vers %s dans %s secondes."
1661
+
1662
+ #~ msgid "Settings page"
1663
+ #~ msgstr "Page des paramètres"
1664
+
1665
+ #~ msgid ""
1666
+ #~ "Failed to download the zip archive. Please, upload the plugin manually."
1667
+ #~ msgstr ""
1668
+ #~ "Erreur de téléchargement de l&rsquo;archive ZIP. Merci de télécharger "
1669
+ #~ "l&rsquo;extension manuellement."
1670
+
1671
+ #~ msgid "Failed to open the zip archive. Please, upload the plugin manually."
1672
+ #~ msgstr ""
1673
+ #~ "Erreur d&rsquo;ouverture de l&rsquo;archive zip. Merci de télécharger "
1674
+ #~ "l&rsquo;extension manuellement."
1675
+
1676
+ #~ msgid ""
1677
+ #~ "Your server does not support either ZipArchive or Phar. Please, upload "
1678
+ #~ "the plugin manually."
1679
+ #~ msgstr ""
1680
+ #~ "Votre serveur n&rsquo;a pas le support du format des archives ZIP ou "
1681
+ #~ "Phar. Merci de télécharger l&rsquo;extension manuellement."
1682
+
1683
+ #~ msgid "UploadDir is not writable. Please, upload the plugin manually."
1684
+ #~ msgstr ""
1685
+ #~ "Le répertoire de destination n&rsquo;est pas disponible en écriture. "
1686
+ #~ "Merci de télécharger l&rsquo;extension manuellement."
1687
+
1688
+ #~ msgid "Kindly share what didn't work so we can fix it in future updates..."
1689
+ #~ msgstr ""
1690
+ #~ "Merci de partager ce qui ne fonctionne pas afin que nous puissions le "
1691
+ #~ "corriger dans une prochaine version..."
1692
+
1693
+ #~ msgid "What did you expect?"
1694
+ #~ msgstr "Quel est le fonctionnement attendu&nbsp;?"
1695
+
1696
+ #~ msgid "What's the plugin name?"
1697
+ #~ msgstr "Quel est le nom de l&rsquo;extension&nbsp;?"
1698
+
1699
+ #~ msgid "What feature?"
1700
+ #~ msgstr "Quelle fonctionalité&nbsp;?"
1701
+
1702
+ #~ msgid "Cancel"
1703
+ #~ msgstr "Annuler"
1704
+
1705
+ #~ msgid "Deactivate"
1706
+ #~ msgstr "Désactivé"
1707
+
1708
+ #~ msgid "Please, enter your license key"
1709
+ #~ msgstr "Merci de saisir votre clé de licence"
1710
+
1711
+ #~ msgid "You will be redirected automatically in 5 seconds."
1712
+ #~ msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
1713
+
1714
+ #~ msgid "Check premium options on the plugin settings page!"
1715
+ #~ msgstr ""
1716
+ #~ "Vérifier les options premium sur la page des paramètres de l&rsquo;"
1717
+ #~ "extension&nbsp;!"
1718
+
1719
+ #~ msgid "File %s edited successfully."
1720
+ #~ msgstr "Le fichier %s a été modifié avec succès."
1721
+
1722
+ #~ msgid "Not enough permissions to create or update the file"
1723
+ #~ msgstr "Pas assez de droits pour créer ou modifier le fichier"
1724
+
1725
+ #~ msgid "Not enough permissions to create the file"
1726
+ #~ msgstr "Pas assez de droits pour créer le fichier"
1727
+
1728
+ #~ msgid "Editing"
1729
+ #~ msgstr "Modifier"
1730
+
1731
+ #~ msgid "Create your personal car rental/booking and reservation website."
1732
+ #~ msgstr "Créer votre site personnel de vente/location de voitures."
1733
+
1734
+ #~ msgid "Add custom fields to WordPress website search results."
1735
+ #~ msgstr "Ajouter des champs personalisés dans le résultats de la recherche."
1736
+
1737
+ #~ msgid ""
1738
+ #~ "Add Google +1, Share, Follow, Hangout buttons and profile badge to "
1739
+ #~ "WordPress posts, pages and widgets."
1740
+ #~ msgstr ""
1741
+ #~ "Ajouter les boutons Partager, Suivre, Particciper et le profile de Google "
1742
+ #~ "+1 aux articles, pages et widgets."
bws_menu/languages/bestwebsoft-id_ID.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-id_ID.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-09-11 16:42+0300\n"
6
- "PO-Revision-Date: 2017-09-11 16:42+0300\n"
7
  "Last-Translator: Jordan Silaen <jordan.silaen@chameleonjohn.com>\n"
8
  "Language-Team: chameleonjohn.com <jordan.silaen@chameleonjohn.com>\n"
9
  "Language: id\n"
@@ -14,10 +14,10 @@ msgstr ""
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=1; plural=0;\n"
17
- "X-Generator: Poedit 1.8.7.1\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #: bws_functions.php:73 bws_functions.php:191
21
  msgid "requires"
22
  msgstr "membutuhkan"
23
 
@@ -54,7 +54,7 @@ msgstr "Menilai itu"
54
  msgid "Need help?"
55
  msgstr "Butuh bantuan?"
56
 
57
- #: bws_functions.php:104 bws_functions.php:917 class-bws-settings.php:1058
58
  msgid "Visit Help Center"
59
  msgstr "Kunjungi Pusat Bantuan"
60
 
@@ -62,7 +62,7 @@ msgstr "Kunjungi Pusat Bantuan"
62
  msgid "Want to support the plugin?"
63
  msgstr "Ingin mendukung plugin?"
64
 
65
- #: bws_functions.php:108 bws_menu.php:560
66
  msgid "Donate"
67
  msgstr "Menyumbangkan"
68
 
@@ -78,8 +78,8 @@ msgid ""
78
  "otherwise the Pro plugin will be deactivated."
79
  msgstr ""
80
 
81
- #: bws_functions.php:128 bws_functions.php:341 bws_menu.php:631
82
- #: class-bws-settings.php:144
83
  msgid "Learn More"
84
  msgstr "Belajarlah lagi"
85
 
@@ -99,7 +99,7 @@ msgstr ""
99
  "lisensi Anda telah berakhir. Untuk terus mendapatkan dukungan top-prioritas "
100
  "dan update Plugin, Anda harus memperpanjang."
101
 
102
- #: bws_functions.php:147 bws_functions.php:389 deprecated.php:586
103
  msgid "Learn more"
104
  msgstr "Belajarlah lagi"
105
 
@@ -116,7 +116,37 @@ msgstr "Perhatikan: Anda menggunakan lisensi Percobaan Pro plugin."
116
  msgid "The Pro Trial license will expire on"
117
  msgstr "Lisensi Percobaan Pro akan berakhir pada"
118
 
119
- #: bws_functions.php:193
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
120
  msgid ""
121
  "or higher! We do not guarantee that our plugin will work correctly. Please "
122
  "upgrade to WordPress latest version."
@@ -124,87 +154,57 @@ msgstr ""
124
  "atau lebih tinggi! Kami tidak menjamin bahwa plugin kami akan bekerja dengan "
125
  "benar. Silakan upgrade ke WordPress versi terbaru."
126
 
127
- #: bws_functions.php:208
128
  #, php-format
129
  msgid "Thank you for installing %s plugin!"
130
  msgstr ""
131
 
132
- #: bws_functions.php:210
133
  msgid "Let's get started"
134
  msgstr "Mari kita mulai"
135
 
136
- #: bws_functions.php:211 bws_functions.php:244 bws_menu.php:564
137
- #: bws_menu.php:566
138
  msgid "Settings"
139
  msgstr "pengaturan"
140
 
141
- #: bws_functions.php:213 bws_menu.php:326 class-bws-settings.php:747
142
- #: class-bws-settings.php:1060 class-bws-settings.php:1070 deprecated.php:697
143
  msgid "or"
144
  msgstr "atau"
145
 
146
- #: bws_functions.php:214 bws_functions.php:246
147
  msgid "Add New"
148
  msgstr "Tambah baru"
149
 
150
- #: bws_functions.php:218 bws_functions.php:228 bws_functions.php:332
151
- #: bws_functions.php:385 bws_functions.php:487
152
- msgid "Close notice"
153
- msgstr "Tutup pemberitahuan"
154
-
155
- #: bws_functions.php:233
156
  msgid "Thank you for installing plugins by BestWebSoft!"
157
  msgstr "Terima kasih untuk menginstal plugin dengan BestWebSoft!"
158
 
159
- #: bws_functions.php:235
160
  msgid "More Details"
161
  msgstr "Keterangan lebih lanjut"
162
 
163
- #: bws_functions.php:236
164
  msgid "Less Details"
165
  msgstr "Kurang Detail"
166
 
167
- #: bws_functions.php:264
168
  msgid "Deprecated function(-s) is used on the site here:"
169
  msgstr "Fungsi usang (-s) digunakan di situs di sini:"
170
 
171
- #: bws_functions.php:278
172
  msgid ""
173
  "This function(-s) will be removed over time. Please update the product(-s)."
174
  msgstr ""
175
  "Fungsi ini (-s) akan dihapus dari waktu ke waktu. Perbarui produk (-s)."
176
 
177
- #: bws_functions.php:337
178
- msgid "It’s time to upgrade your"
179
- msgstr "Saatnya untuk meng-upgrade Anda"
180
-
181
- #: bws_functions.php:337
182
- msgid "to"
183
- msgstr "untuk"
184
-
185
- #: bws_functions.php:337
186
- msgid "version!"
187
- msgstr "versi!"
188
-
189
- #: bws_functions.php:338
190
- msgid "Extend standard plugin functionality with new great options."
191
- msgstr "Memperluas fungsi Plugin standar dengan pilihan besar baru."
192
-
193
- #: bws_functions.php:389
194
- #, php-format
195
- msgid ""
196
- "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
197
- "SUPPORT or UPDATES."
198
- msgstr ""
199
- "Kunci lisensi untuk %s berakhir pada %s dan Anda tidak akan diberikan TOP-"
200
- "PRIORITAS DUKUNGAN atau PEMBARUAN."
201
-
202
- #: bws_functions.php:482
203
  #, php-format
204
  msgid "Thank you for choosing %s plugin!"
205
  msgstr ""
206
 
207
- #: bws_functions.php:483
208
  msgid ""
209
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
210
  "we'd love to hear about it!"
@@ -212,25 +212,24 @@ msgstr ""
212
  "Jika Anda memiliki fitur, saran atau ide yang ingin Anda lihat di plugin, "
213
  "kami akan senang mendengar tentang hal itu!"
214
 
215
- #: bws_functions.php:484
216
  msgid "Suggest a Feature"
217
  msgstr "Sarankan Fitur sebuah"
218
 
219
- #: bws_functions.php:500 class-bws-settings.php:540 class-bws-settings.php:543
220
- #: class-bws-settings.php:595 class-bws-settings.php:598
221
  msgid "Notice"
222
  msgstr "Melihat"
223
 
224
- #: bws_functions.php:500
225
  msgid "The plugin's settings have been changed."
226
  msgstr "pengaturan plugin ini telah berubah."
227
 
228
- #: bws_functions.php:501 class-bws-settings.php:183 class-bws-settings.php:203
229
- #: deprecated.php:642
230
  msgid "Save Changes"
231
  msgstr "Simpan perubahan"
232
 
233
- #: bws_functions.php:515
234
  msgid ""
235
  "You can always look at premium options by checking the \"Pro Options\" in "
236
  "the \"Misc\" tab."
@@ -238,77 +237,68 @@ msgstr ""
238
  "Anda selalu dapat melihat pilihan premium dengan memeriksa \\ \"Pro Options "
239
  "\" di \\ tab \"Misc \"."
240
 
241
- #: bws_functions.php:653
242
- msgid "Add BWS Shortcode"
243
- msgstr ""
244
-
245
- #: bws_functions.php:654
246
- msgid "Add BWS Plugins Shortcode"
247
- msgstr "Tambahkan BWS Plugin pendek"
248
-
249
- #: bws_functions.php:673
250
  msgid "Add shortcode"
251
  msgstr "Tambahkan shortcode"
252
 
253
- #: bws_functions.php:673
254
  msgid "Add BestWebSoft plugins' shortcodes using this button."
255
  msgstr "Tambahkan shortcode BestWebSoft plugin 'menggunakan tombol ini."
256
 
257
- #: bws_functions.php:729
258
  msgid "Close"
259
  msgstr "Dekat"
260
 
261
- #: bws_functions.php:821
262
  msgid "Are you sure you want to restore default settings?"
263
  msgstr "Apakah Anda yakin ingin mengembalikan pengaturan default?"
264
 
265
- #: bws_functions.php:824
266
  msgid "Yes, restore all settings"
267
  msgstr "Ya, mengembalikan semua pengaturan"
268
 
269
- #: bws_functions.php:825
270
  msgid "No, go back to the settings page"
271
  msgstr "Tidak, kembali ke halaman pengaturan"
272
 
273
- #: bws_functions.php:867
274
  msgid "Plugin"
275
  msgstr "Plugin"
276
 
277
- #: bws_functions.php:876
278
  msgid "Shortcode settings"
279
  msgstr "pengaturan shortcode"
280
 
281
- #: bws_functions.php:881
282
  msgid "The shortcode will be inserted"
283
  msgstr "shortcode akan dimasukkan"
284
 
285
- #: bws_functions.php:922
286
  msgid "FAQ"
287
  msgstr "FAQ"
288
 
289
- #: bws_functions.php:928
290
  msgid "For more information:"
291
  msgstr "Untuk informasi lebih lanjut:"
292
 
293
- #: bws_functions.php:929
294
  msgid "Documentation"
295
  msgstr "Dokumentasi"
296
 
297
- #: bws_functions.php:930
298
  msgid "Video Instructions"
299
  msgstr "Petunjuk Video"
300
 
301
- #: bws_functions.php:931
302
  msgid "Submit a Request"
303
  msgstr "Mengajukan permohonan"
304
 
305
- #: bws_menu.php:101 class-bws-settings.php:792 deprecated.php:323
306
  msgid "Wrong license key"
307
  msgstr "kunci lisensi yang salah"
308
 
309
- #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
310
- #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
311
- #: deprecated.php:353
312
  msgid ""
313
  "Something went wrong. Please try again later. If the error appears again, "
314
  "please contact us"
@@ -316,18 +306,16 @@ msgstr ""
316
  "Ada yang salah. Silakan coba lagi nanti. Jika kesalahan muncul lagi, "
317
  "silahkan hubungi kami"
318
 
319
- #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
320
- #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
321
- #: deprecated.php:353
322
  msgid "We are sorry for inconvenience."
323
  msgstr "Kami mohon maaf atas ketidaknyamanan."
324
 
325
- #: bws_menu.php:128 class-bws-settings.php:824 class-bws-settings.php:927
326
- #: deprecated.php:139 deprecated.php:359
327
  msgid "Wrong license key."
328
  msgstr "kunci lisensi yang salah."
329
 
330
- #: bws_menu.php:130
331
  msgid ""
332
  "This license key is bound to another site. Change it via personal Client "
333
  "Area."
@@ -335,15 +323,15 @@ msgstr ""
335
  "kunci lisensi ini terikat ke situs lain. Mengubahnya melalui personal Area "
336
  "Klien."
337
 
338
- #: bws_menu.php:130
339
  msgid "Log in"
340
  msgstr "Masuk"
341
 
342
- #: bws_menu.php:132 bws_menu.php:332 deprecated.php:261
343
  msgid "Unfortunately, you have exceeded the number of available tries per day."
344
  msgstr "Sayangnya, Anda telah melebihi jumlah mencoba tersedia per hari."
345
 
346
- #: bws_menu.php:134 deprecated.php:365
347
  #, php-format
348
  msgid ""
349
  "Unfortunately, Your license has expired. To continue getting top-priority "
@@ -352,7 +340,7 @@ msgstr ""
352
  "Sayangnya, lisensi Anda telah kedaluwarsa. Untuk terus mendapatkan dukungan "
353
  "top-prioritas dan Plugin update, Anda harus memperpanjang di Anda %s"
354
 
355
- #: bws_menu.php:136 class-bws-settings.php:935 deprecated.php:367
356
  msgid ""
357
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
358
  "Trial license can be installed only once."
@@ -360,19 +348,19 @@ msgstr ""
360
  "Sayangnya, lisensi Pro sudah dipasang untuk domain ini. Lisensi Percobaan "
361
  "Pro dapat diinstal hanya sekali."
362
 
363
- #: bws_menu.php:142 class-bws-settings.php:839 deprecated.php:153
364
  msgid "The license key is valid."
365
  msgstr "Kunci lisensi berlaku."
366
 
367
- #: bws_menu.php:144 class-bws-settings.php:842 deprecated.php:156
368
  msgid "Your license will expire on"
369
  msgstr "lisensi Anda akan berakhir pada"
370
 
371
- #: bws_menu.php:146
372
  msgid "Congratulations! Pro Membership license is activated successfully."
373
  msgstr ""
374
 
375
- #: bws_menu.php:153 class-bws-settings.php:1007 deprecated.php:436
376
  msgid ""
377
  "Something went wrong. Try again later or upload the plugin manually. We are "
378
  "sorry for inconvenience."
@@ -380,214 +368,216 @@ msgstr ""
380
  "Ada yang salah. Coba lagi nanti atau meng-upload plugin secara manual. Kami "
381
  "mohon maaf atas ketidaknyamanan."
382
 
383
- #: bws_menu.php:163
384
  msgid "Please enter your license key."
385
  msgstr "Masukkan kunci lisensi Anda."
386
 
387
- #: bws_menu.php:174
388
  msgid "Not set"
389
  msgstr "Tidak diatur"
390
 
391
- #: bws_menu.php:176
392
  msgid "On"
393
  msgstr "Di"
394
 
395
- #: bws_menu.php:176
396
  msgid "Off"
397
  msgstr "Mati"
398
 
399
- #: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
400
- #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
401
  msgid "N/A"
402
  msgstr "N / A"
403
 
404
- #: bws_menu.php:182
405
- msgid " Mb"
 
 
406
  msgstr " Mb"
407
 
408
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
409
  msgid "Yes"
410
  msgstr "iya nih"
411
 
412
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
413
  msgid "No"
414
  msgstr "Tidak"
415
 
416
- #: bws_menu.php:196
417
  msgid "WordPress Environment"
418
  msgstr "WordPress Lingkungan"
419
 
420
- #: bws_menu.php:198
421
  msgid "Home URL"
422
  msgstr "URL rumah"
423
 
424
- #: bws_menu.php:199
425
  msgid "Website URL"
426
  msgstr "alamat situs web"
427
 
428
- #: bws_menu.php:200
429
  msgid "WP Version"
430
  msgstr "WP Versi"
431
 
432
- #: bws_menu.php:201
433
  msgid "WP Multisite"
434
  msgstr "WP Multisite"
435
 
436
- #: bws_menu.php:202
437
  msgid "WP Memory Limit"
438
  msgstr "WP Memory Limit"
439
 
440
- #: bws_menu.php:203
441
  msgid "Active Theme"
442
  msgstr "Tema aktif"
443
 
444
- #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
445
  #, php-format
446
  msgid "by %s"
447
  msgstr "oleh %s"
448
 
449
- #: bws_menu.php:207
450
  msgid "Server Environment"
451
  msgstr "Server Lingkungan"
452
 
453
- #: bws_menu.php:209
454
  msgid "Operating System"
455
  msgstr "Sistem operasi"
456
 
457
- #: bws_menu.php:210
458
  msgid "Server"
459
  msgstr "Server"
460
 
461
- #: bws_menu.php:211
462
  msgid "PHP Version"
463
  msgstr "PHP Versi"
464
 
465
- #: bws_menu.php:212
466
  msgid "PHP Allow URL fopen"
467
  msgstr "PHP Izinkan URL fopen"
468
 
469
- #: bws_menu.php:213
470
  msgid "PHP Memory Limit"
471
  msgstr "PHP Memory Limit"
472
 
473
- #: bws_menu.php:214
474
  msgid "Memory Usage"
475
  msgstr "memory Usage"
476
 
477
- #: bws_menu.php:215
478
  msgid "PHP Max Upload Size"
479
  msgstr "Ukuran PHP Max Upload"
480
 
481
- #: bws_menu.php:216
482
  msgid "PHP Max Post Size"
483
  msgstr "PHP Max Pos Ukuran"
484
 
485
- #: bws_menu.php:217
486
  msgid "PHP Max Script Execute Time"
487
  msgstr "PHP Max Script Jalankan Waktu"
488
 
489
- #: bws_menu.php:218
490
  msgid "PHP Exif support"
491
  msgstr "dukungan PHP Exif"
492
 
493
- #: bws_menu.php:219
494
  msgid "PHP IPTC support"
495
  msgstr "dukungan PHP IPTC"
496
 
497
- #: bws_menu.php:220
498
  msgid "PHP XML support"
499
  msgstr "dukungan XML PHP"
500
 
501
- #: bws_menu.php:226
502
  msgid "Database"
503
  msgstr "database"
504
 
505
- #: bws_menu.php:228
506
  msgid "WP DB version"
507
  msgstr "Versi WP DB"
508
 
509
- #: bws_menu.php:229
510
  msgid "MySQL version"
511
  msgstr "versi MySQL"
512
 
513
- #: bws_menu.php:230
514
  msgid "SQL Mode"
515
  msgstr "SQL Modus"
516
 
517
- #: bws_menu.php:234
518
  msgid "Active Plugins"
519
  msgstr "Plugin aktif"
520
 
521
- #: bws_menu.php:239
522
  msgid "Inactive Plugins"
523
  msgstr "Plugin tidak aktif"
524
 
525
- #: bws_menu.php:260
526
  msgid "Please enter a valid email address."
527
  msgstr "Silakan isi alamat email."
528
 
529
- #: bws_menu.php:262
530
  #, php-format
531
  msgid "Email with system info is sent to %s."
532
  msgstr ""
533
 
534
- #: bws_menu.php:266
535
  msgid "Thank you for contacting us."
536
  msgstr "Terima kasih sudah menghubungi kami."
537
 
538
- #: bws_menu.php:289
539
  msgid "Sorry, email message could not be delivered."
540
  msgstr "Maaf, pesan email tidak dapat disampaikan."
541
 
542
- #: bws_menu.php:305 bws_menu.php:309 bws_menu.php:358 deprecated.php:91
543
  msgid "Plugins"
544
  msgstr "plugin"
545
 
546
- #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:618 deprecated.php:92
547
  msgid "Themes"
548
  msgstr "tema"
549
 
550
- #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:648
551
  msgid "System status"
552
  msgstr "Status sistem"
553
 
554
- #: bws_menu.php:315
555
  msgid "Support"
556
  msgstr "Mendukung"
557
 
558
- #: bws_menu.php:316
559
  msgid "Manage purchased licenses & subscriptions"
560
  msgstr "Mengelola membeli lisensi & langganan"
561
 
562
- #: bws_menu.php:324
563
  #, php-format
564
  msgid "Get Access to %s+ Premium Plugins"
565
  msgstr "Dapatkan Akses ke %s + Premium Plugin"
566
 
567
- #: bws_menu.php:326
568
  msgid "Subscribe to Pro Membership"
569
  msgstr "Berlangganan Pro Keanggotaan"
570
 
571
- #: bws_menu.php:334 bws_menu.php:345 class-bws-settings.php:760
572
- #: deprecated.php:227
573
  msgid "Check license key"
574
  msgstr "Periksa kunci lisensi"
575
 
576
- #: bws_menu.php:337
577
  msgid "Enter your license key"
578
  msgstr "Masukkan kunci lisensi Anda"
579
 
580
- #: bws_menu.php:343 bws_menu.php:570 bws_menu.php:579
581
- #: class-bws-settings.php:739 deprecated.php:259 deprecated.php:267
582
- #: deprecated.php:631 deprecated.php:703 deprecated.php:712
583
  msgid "Activate"
584
  msgstr "Mengaktifkan"
585
 
586
- #: bws_menu.php:359
587
  msgid "Upload Plugin"
588
  msgstr "Upload Plugin"
589
 
590
- #: bws_menu.php:363
591
  #, php-format
592
  msgid ""
593
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -600,7 +590,7 @@ msgstr ""
600
  "# 8221; pesan, masalah dengan feed sindikasi atau masalah lain, coba "
601
  "menonaktifkan atau menghapus plugin ini."
602
 
603
- #: bws_menu.php:365
604
  msgid ""
605
  "Plugin could not be activated because it triggered a <strong>fatal error</"
606
  "strong>."
@@ -608,194 +598,200 @@ msgstr ""
608
  "Plugin tidak dapat diaktifkan karena memicu <strong> kesalahan fatal </ "
609
  "strong>."
610
 
611
- #: bws_menu.php:368
612
  msgid "Plugin <strong>activated</strong>."
613
  msgstr "Plugin <strong> diaktifkan </ strong>."
614
 
615
- #: bws_menu.php:375
616
- msgid "Installing Plugin"
617
- msgstr "Instalasi Plugin"
 
 
618
 
619
- #: bws_menu.php:381
620
- msgid "Downloading install package from"
621
- msgstr "Men-download menginstal paket dari"
622
 
623
- #: bws_menu.php:398 bws_menu.php:429 bws_menu.php:440 deprecated.php:388
624
- #: deprecated.php:410 deprecated.php:432
625
- msgid "Failed to download the zip archive. Please, upload the plugin manually"
626
- msgstr "Gagal mengunduh arsip zip. Silakan, upload plugin secara manual"
627
 
628
- #: bws_menu.php:406
629
- msgid "Unpacking the package"
630
- msgstr "Membuka paket"
 
 
631
 
632
- #: bws_menu.php:411 bws_menu.php:419
633
- msgid "Installing the plugin"
 
 
634
  msgstr "Instalasi plugin"
635
 
636
- #: bws_menu.php:415 deprecated.php:400
637
- msgid "Failed to open the zip archive. Please, upload the plugin manually"
638
- msgstr "Gagal membuka arsip zip. Silakan, upload plugin secara manual"
639
-
640
- #: bws_menu.php:422 deprecated.php:406
641
- msgid ""
642
- "Your server does not support either ZipArchive or Phar. Please, upload the "
643
- "plugin manually"
644
  msgstr ""
645
- "server Anda tidak mendukung baik ZipArchive atau Phar. Silakan, upload "
646
- "plugin secara manual"
647
 
648
- #: bws_menu.php:425
649
- #, php-format
650
- msgid "The plugin %s is successfully installed."
651
- msgstr "Plugin %s berhasil diinstal."
 
 
 
 
 
652
 
653
- #: bws_menu.php:432 deprecated.php:413
654
- msgid "UploadDir is not writable. Please, upload the plugin manually"
655
- msgstr "UploadDir tidak dapat ditulis. Silakan, upload plugin secara manual"
656
 
657
- #: bws_menu.php:437
658
- msgid "Activate Plugin"
659
- msgstr "Aktifkan Plugin"
660
 
661
- #: bws_menu.php:437 bws_menu.php:443
662
  msgid "Return to BestWebSoft Panel"
663
  msgstr "Kembali ke BestWebSoft Panel"
664
 
665
- #: bws_menu.php:451 bws_menu.php:471 bws_menu.php:600
666
  msgid "All"
667
  msgstr "Semua"
668
 
669
- #: bws_menu.php:454 bws_menu.php:637
670
  msgid "Installed"
671
  msgstr "dipasang"
672
 
673
- #: bws_menu.php:457
674
  msgid "Not Installed"
675
  msgstr "Tidak terpasang"
676
 
677
- #: bws_menu.php:464
678
  msgid "Filter results"
679
  msgstr "Filter hasil"
680
 
681
- #: bws_menu.php:467 bws_menu.php:596
682
  msgid "Category"
683
  msgstr "Kategori"
684
 
685
- #: bws_menu.php:531
686
  msgid "Not installed"
687
  msgstr "Tidak terpasang"
688
 
689
- #: bws_menu.php:535
690
  msgid "Renew to get updates"
691
  msgstr "Renew untuk mendapatkan update"
692
 
693
- #: bws_menu.php:538
694
  #, php-format
695
  msgid "Update to v %s"
696
  msgstr "Update untuk v %s"
697
 
698
- #: bws_menu.php:550 bws_menu.php:573 bws_menu.php:582
699
- msgid "Install Now"
700
- msgstr "Pasang sekarang"
701
 
702
- #: bws_menu.php:556 class-bws-settings.php:157 class-bws-settings.php:1067
703
  msgid "Upgrade to Pro"
704
  msgstr "Upgrade ke yang lebih baik"
705
 
706
- #: bws_menu.php:570 bws_menu.php:579
707
  msgid "Activate this plugin"
708
  msgstr "Aktifkan plugin ini"
709
 
710
- #: bws_menu.php:582
711
  msgid "Install this plugin"
712
  msgstr "Menginstal plugin ini"
713
 
714
- #: bws_menu.php:591
 
 
 
 
715
  msgid "Nothing found. Try another criteria."
716
  msgstr "Tidak ada yang ditemukan. Coba kriteria lain."
717
 
718
- #: bws_menu.php:628
719
  #, php-format
720
  msgid "By %s"
721
  msgstr "Oleh %s"
722
 
723
- #: bws_menu.php:635
724
  msgid "Already Installed"
725
  msgstr "sudah Dipasang"
726
 
727
- #: bws_menu.php:645
728
  msgid "Browse More WordPress Themes"
729
  msgstr ""
730
 
731
- #: bws_menu.php:654
732
  msgid "Send to support"
733
  msgstr "Kirim untuk mendukung"
734
 
735
- #: bws_menu.php:661
736
  msgid "Send to custom email &#187;"
737
  msgstr "Kirim ke email khusus & # 187;"
738
 
739
- #: class-bws-settings.php:136
740
  msgid "Information"
741
  msgstr "Informasi"
742
 
743
- #: class-bws-settings.php:144
744
  msgid "Inactive"
745
  msgstr "non-aktif"
746
 
747
- #: class-bws-settings.php:152
748
  msgid "Expired"
749
  msgstr "kedaluwarsa"
750
 
751
- #: class-bws-settings.php:155
752
  #, php-format
753
  msgid "%s day(-s) left"
754
  msgstr "%s hari (-s) kiri"
755
 
756
- #: class-bws-settings.php:161
757
  #, php-format
758
  msgid "Expired on %s"
759
  msgstr "Berakhir pada %s"
760
 
761
- #: class-bws-settings.php:161
762
  msgid "Renew Now"
763
  msgstr "Perbarui sekarang"
764
 
765
- #: class-bws-settings.php:163
766
  msgid "Active"
767
  msgstr "Aktif"
768
 
769
- #: class-bws-settings.php:168
770
  msgid "License"
771
  msgstr "Lisensi"
772
 
773
- #: class-bws-settings.php:171
774
  msgid "Status"
775
  msgstr "Status"
776
 
777
- #: class-bws-settings.php:175
778
  msgid "Version"
779
  msgstr "Versi"
780
 
781
- #: class-bws-settings.php:285
782
  msgid "All plugin settings were restored."
783
  msgstr "Semua pengaturan Plugin dipulihkan."
784
 
785
- #: class-bws-settings.php:423
786
  msgid "Custom Code"
787
  msgstr "Kode kustom"
788
 
789
- #: class-bws-settings.php:427 deprecated.php:498
790
  msgid "You do not have sufficient permissions to edit plugins for this site."
791
  msgstr ""
792
  "Anda tidak memiliki cukup izin untuk menyunting plugin untuk situs ini."
793
 
794
- #: class-bws-settings.php:432 deprecated.php:620
795
  msgid "These styles will be added to the header on all pages of your site."
796
  msgstr "Gaya ini akan ditambahkan ke header pada semua halaman situs Anda."
797
 
798
- #: class-bws-settings.php:435 deprecated.php:622
799
  #, php-format
800
  msgid ""
801
  "This PHP code will be hooked to the %s action and will be printed on front "
@@ -804,11 +800,11 @@ msgstr ""
804
  "Kode PHP ini akan ketagihan untuk %s tindakan dan akan dicetak pada ujung "
805
  "depan saja."
806
 
807
- #: class-bws-settings.php:438
808
  msgid "These code will be added to the header on all pages of your site."
809
  msgstr "Kode ini akan ditambahkan ke header pada semua halaman situs Anda."
810
 
811
- #: class-bws-settings.php:446 deprecated.php:646
812
  #, php-format
813
  msgid ""
814
  "You need to make this files writable before you can save your changes. See "
@@ -817,25 +813,25 @@ msgstr ""
817
  "Anda perlu membuat file ini ditulis sebelum Anda dapat menyimpan perubahan. "
818
  "Lihat %s Codex %s untuk informasi lebih lanjut."
819
 
820
- #: class-bws-settings.php:456 deprecated.php:628
821
  msgid "Browsing"
822
  msgstr "Browsing"
823
 
824
- #: class-bws-settings.php:461
825
  #, php-format
826
  msgid "Activate custom %s code."
827
  msgstr "Aktifkan kustom %s kode."
828
 
829
- #: class-bws-settings.php:469 deprecated.php:635
830
  #, php-format
831
  msgid "Learn more about %s"
832
  msgstr "Pelajari lebih lanjut tentang %s"
833
 
834
- #: class-bws-settings.php:531
835
  msgid "Miscellaneous Settings"
836
  msgstr "Pengaturan Miscellaneous"
837
 
838
- #: class-bws-settings.php:540 class-bws-settings.php:595
839
  #, php-format
840
  msgid ""
841
  "It is prohibited to change %s settings on this site in the %s network "
@@ -843,74 +839,59 @@ msgid ""
843
  msgstr ""
844
  "Dilarang mengubah %s pengaturan di situs ini di %s pengaturan jaringan."
845
 
846
- #: class-bws-settings.php:543 class-bws-settings.php:598
847
  #, php-format
848
  msgid ""
849
  "It is prohibited to view %s settings on this site in the %s network settings."
850
  msgstr "Dilarang melihat %s pengaturan di situs ini di %s pengaturan jaringan."
851
 
852
- #: class-bws-settings.php:552
853
  msgid "Pro Options"
854
  msgstr "Pro Pilihan"
855
 
856
- #: class-bws-settings.php:556
857
  msgid "Enable to display plugin Pro options."
858
  msgstr "Memungkinkan untuk menampilkan opsi Pro Plugin."
859
 
860
- #: class-bws-settings.php:562
861
  msgid "Track Usage"
862
  msgstr "track Penggunaan"
863
 
864
- #: class-bws-settings.php:566
865
  msgid ""
866
  "Enable to allow tracking plugin usage anonymously in order to make it better."
867
  msgstr ""
868
  "Aktifkan untuk memungkinkan pelacakan penggunaan Plugin anonim untuk "
869
  "membuatnya lebih baik."
870
 
871
- #: class-bws-settings.php:571
872
  msgid "Default Settings"
873
  msgstr "Pengaturan default"
874
 
875
- #: class-bws-settings.php:573
876
  msgid "Restore Settings"
877
  msgstr "Kembalikan Pengaturan"
878
 
879
- #: class-bws-settings.php:574
880
  msgid "This will restore plugin settings to defaults."
881
  msgstr "Ini akan mengembalikan pengaturan plugin untuk default."
882
 
883
- #: class-bws-settings.php:586
884
  msgid "Import / Export"
885
  msgstr "Ekspor Impor"
886
 
887
- #: class-bws-settings.php:702 class-bws-settings.php:735
888
- #: class-bws-settings.php:757
889
  msgid "License Key"
890
  msgstr "Kunci lisensi"
891
 
892
- #: class-bws-settings.php:725
893
- msgid "Congratulations! Pro license is activated successfully."
894
- msgstr "Selamat! lisensi Pro berhasil diaktifkan."
895
-
896
- #: class-bws-settings.php:726
897
- #, php-format
898
- msgid "You will be automatically redirected to the %s in %s seconds."
899
- msgstr ""
900
-
901
- #: class-bws-settings.php:726
902
- msgid "Settings page"
903
- msgstr "halaman pengaturan"
904
-
905
- #: class-bws-settings.php:741
906
  #, php-format
907
  msgid "Enter your license key to activate %s and get premium plugin features."
908
  msgstr ""
909
  "Masukkan kunci lisensi Anda untuk mengaktifkan %s dan mendapatkan fitur "
910
  "Plugin premium."
911
 
912
- #: class-bws-settings.php:744 class-bws-settings.php:931 deprecated.php:363
913
- #: deprecated.php:706
914
  msgid ""
915
  "Unfortunately, you have exceeded the number of available tries per day. "
916
  "Please, upload the plugin manually."
@@ -918,12 +899,12 @@ msgstr ""
918
  "Sayangnya, Anda telah melebihi jumlah mencoba tersedia per hari. Silakan, "
919
  "upload plugin secara manual."
920
 
921
- #: class-bws-settings.php:747 deprecated.php:697
922
  #, php-format
923
  msgid "Start Your Free %s-Day Trial Now"
924
  msgstr "Mulai Anda gratis %s -Day Percobaan Sekarang"
925
 
926
- #: class-bws-settings.php:762
927
  msgid ""
928
  "If necessary, you can check if the license key is correct or reenter it in "
929
  "the field below."
@@ -931,15 +912,15 @@ msgstr ""
931
  "Jika perlu, Anda dapat memeriksa apakah kunci lisensi benar atau masuk "
932
  "kembali ke dalam bidang di bawah."
933
 
934
- #: class-bws-settings.php:767
935
  msgid "Manage License Settings"
936
  msgstr "Kelola Setelan License"
937
 
938
- #: class-bws-settings.php:769
939
  msgid "Login to Client Area"
940
  msgstr "Login ke Area Klien"
941
 
942
- #: class-bws-settings.php:771
943
  msgid ""
944
  "Manage active licenses, download BWS products, and view your payment history "
945
  "using BestWebSoft Client Area."
@@ -947,12 +928,11 @@ msgstr ""
947
  "Mengelola lisensi aktif, men-download produk BWS, dan melihat riwayat "
948
  "pembayaran Anda menggunakan BestWebSoft Client Area."
949
 
950
- #: class-bws-settings.php:826 class-bws-settings.php:929 deprecated.php:141
951
- #: deprecated.php:361
952
  msgid "This license key is bound to another site."
953
  msgstr "kunci lisensi ini terikat ke situs lain."
954
 
955
- #: class-bws-settings.php:828 deprecated.php:143
956
  msgid ""
957
  "This license key is valid, but Your license has expired. If you want to "
958
  "update our plugin in future, you should extend the license."
@@ -961,11 +941,11 @@ msgstr ""
961
  "ingin memperbarui plugin kami di masa depan, Anda harus memperpanjang "
962
  "lisensi."
963
 
964
- #: class-bws-settings.php:830 deprecated.php:145
965
  msgid "Unfortunately, you have exceeded the number of available tries."
966
  msgstr "Sayangnya, Anda telah melebihi jumlah mencoba tersedia."
967
 
968
- #: class-bws-settings.php:832 deprecated.php:147
969
  msgid ""
970
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
971
  "The Pro Trial license can be installed only once."
@@ -973,168 +953,152 @@ msgstr ""
973
  "Sayangnya, lisensi Percobaan Pro sudah dipasang untuk domain ini. Lisensi "
974
  "Percobaan Pro dapat diinstal hanya sekali."
975
 
976
- #: class-bws-settings.php:837 deprecated.php:151
977
  msgid "The Pro Trial license key is valid."
978
  msgstr "Kunci lisensi Percobaan Pro berlaku."
979
 
980
- #: class-bws-settings.php:845 deprecated.php:159 deprecated.php:246
981
  #, php-format
982
  msgid ""
983
  "In order to continue using the plugin it is necessary to buy a %s license."
984
  msgstr ""
985
  "Dalam rangka untuk terus menggunakan plugin perlu untuk membeli %s lisensi."
986
 
987
- #: class-bws-settings.php:933
988
  #, php-format
989
  msgid ""
990
  "Unfortunately, Your license has expired. To continue getting top-priority "
991
  "support and plugin updates, you should extend it in your %s."
992
  msgstr ""
993
 
994
- #: class-bws-settings.php:959 class-bws-settings.php:981
995
- #: class-bws-settings.php:1003
996
- msgid "Failed to download the zip archive. Please, upload the plugin manually."
997
- msgstr ""
998
-
999
- #: class-bws-settings.php:971
1000
- msgid "Failed to open the zip archive. Please, upload the plugin manually."
1001
- msgstr ""
1002
-
1003
- #: class-bws-settings.php:977
1004
- msgid ""
1005
- "Your server does not support either ZipArchive or Phar. Please, upload the "
1006
- "plugin manually."
1007
- msgstr ""
1008
-
1009
- #: class-bws-settings.php:984
1010
- msgid "UploadDir is not writable. Please, upload the plugin manually."
1011
- msgstr ""
1012
-
1013
- #: class-bws-settings.php:1042 deprecated.php:464
1014
  msgid "Please, enter Your license key"
1015
  msgstr "Silakan, masukkan kunci lisensi Anda"
1016
 
1017
- #: class-bws-settings.php:1054
1018
  msgid "Need Help?"
1019
  msgstr "Butuh bantuan?"
1020
 
1021
- #: class-bws-settings.php:1056
1022
  msgid "Read the Instruction"
1023
  msgstr "Baca Instruksi"
1024
 
1025
- #: class-bws-settings.php:1060
1026
  msgid "Watch the Video"
1027
  msgstr "Saksikan Video"
1028
 
1029
- #: class-bws-settings.php:1071
1030
  msgid "Start Your Free Trial"
1031
  msgstr "Mulai Uji Coba Gratis"
1032
 
1033
- #: deactivation-form.php:27
1034
- msgid "Need help? We are ready to answer your questions."
 
 
 
 
 
 
 
1035
  msgstr ""
1036
 
1037
- #: deactivation-form.php:27
1038
- msgid "Contact Support"
1039
  msgstr ""
1040
 
1041
- #: deactivation-form.php:32
1042
- msgid "The plugin is not working"
1043
  msgstr ""
1044
 
1045
- #: deactivation-form.php:34
1046
- msgid "Kindly share what didn't work so we can fix it in future updates..."
1047
  msgstr ""
1048
 
1049
- #: deactivation-form.php:38
1050
- msgid "The plugin didn't work as expected"
 
 
 
 
1051
  msgstr ""
1052
 
1053
- #: deactivation-form.php:40
1054
- msgid "What did you expect?"
1055
  msgstr ""
1056
 
1057
- #: deactivation-form.php:44
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1058
  msgid "The plugin suddenly stopped working"
1059
  msgstr ""
1060
 
1061
- #: deactivation-form.php:51
1062
  msgid "The plugin broke my site"
1063
  msgstr ""
1064
 
1065
- #: deactivation-form.php:58
1066
  msgid "I couldn't understand how to get it work"
1067
  msgstr ""
1068
 
1069
- #: deactivation-form.php:65
1070
  msgid "I found a better plugin"
1071
  msgstr ""
1072
 
1073
- #: deactivation-form.php:67
1074
- msgid "What's the plugin name?"
1075
- msgstr ""
1076
-
1077
- #: deactivation-form.php:71
1078
  msgid "The plugin is great, but I need specific feature that you don't support"
1079
  msgstr ""
1080
 
1081
- #: deactivation-form.php:73
1082
- msgid "What feature?"
1083
- msgstr ""
1084
-
1085
- #: deactivation-form.php:77
1086
  msgid "I no longer need the plugin"
1087
  msgstr ""
1088
 
1089
- #: deactivation-form.php:83
1090
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1091
  msgstr ""
1092
 
1093
- #: deactivation-form.php:89
1094
  msgid "Other"
1095
  msgstr "Lain"
1096
 
1097
- #: deactivation-form.php:123
1098
  msgid "Quick Feedback"
1099
  msgstr ""
1100
 
1101
- #: deactivation-form.php:124
1102
  msgid "If you have a moment, please let us know why you are deactivating"
1103
  msgstr ""
1104
 
1105
- #: deactivation-form.php:127
1106
- msgid "Send website data and allow to contact me back"
1107
- msgstr ""
1108
-
1109
- #: deactivation-form.php:132
1110
- msgid "Cancel"
1111
- msgstr ""
1112
-
1113
- #: deactivation-form.php:233
1114
- msgid "Processing"
1115
  msgstr ""
1116
 
1117
- #: deactivation-form.php:262
1118
- msgid "Submit & Deactivate"
1119
  msgstr ""
1120
 
1121
- #: deactivation-form.php:277
1122
  msgid "Please tell us the reason so we can improve it."
1123
  msgstr ""
1124
 
1125
- #: deactivation-form.php:345
1126
- msgid "Deactivate"
1127
- msgstr ""
1128
-
1129
- #: deprecated.php:93
1130
  msgid "System Status"
1131
  msgstr "Status sistem"
1132
 
1133
- #: deprecated.php:204
1134
- msgid "Please, enter your license key"
1135
- msgstr "Silakan, masukkan kunci lisensi Anda"
1136
-
1137
- #: deprecated.php:223
1138
  msgid ""
1139
  "If necessary, you can check if the license key is correct or reenter it in "
1140
  "the field below. You can find your license key on your personal page - "
@@ -1144,7 +1108,7 @@ msgstr ""
1144
  "kembali ke dalam bidang di bawah. Anda dapat menemukan kunci lisensi Anda "
1145
  "pada halaman pribadi Anda - Area Klien - di website kami"
1146
 
1147
- #: deprecated.php:223
1148
  msgid ""
1149
  "(your username is the email address specified during the purchase). If "
1150
  "necessary, please submit \"Lost your password?\" request."
@@ -1152,392 +1116,427 @@ msgstr ""
1152
  "(Nama pengguna adalah alamat email yang ditentukan selama pembelian). Jika "
1153
  "perlu, silahkan pilih \\ \"Kehilangan kata sandi Anda? \" Permintaan."
1154
 
1155
- #: deprecated.php:246
1156
  msgid "After that, you can activate it by entering your license key."
1157
  msgstr ""
1158
  "Setelah itu, Anda dapat mengaktifkannya dengan memasukkan kunci lisensi Anda."
1159
 
1160
- #: deprecated.php:249 deprecated.php:691
1161
  msgid "License key can be found in the"
1162
  msgstr "kunci lisensi dapat ditemukan di"
1163
 
1164
- #: deprecated.php:251 deprecated.php:693
1165
  msgid "(your username is the email address specified during the purchase)."
1166
  msgstr "(Nama pengguna adalah alamat email yang ditentukan selama pembelian)."
1167
 
1168
- #: deprecated.php:279
1169
  msgid ""
1170
  "Congratulations! The Pro license of the plugin is activated successfully."
1171
  msgstr "Selamat! Lisensi Pro plugin tersebut berhasil diaktifkan."
1172
 
1173
- #: deprecated.php:281 deprecated.php:672
1174
  msgid "Please, go to"
1175
  msgstr "Tolong, pergi ke"
1176
 
1177
- #: deprecated.php:281 deprecated.php:672
1178
  msgid "the setting page"
1179
  msgstr "halaman pengaturan"
1180
 
1181
- #: deprecated.php:282 deprecated.php:673
1182
- msgid "You will be redirected automatically in 5 seconds."
1183
- msgstr "Anda akan diarahkan secara otomatis dalam 5 detik."
1184
-
1185
- #: deprecated.php:316
1186
- msgid "Check premium options on the plugin settings page!"
1187
- msgstr "Periksa pilihan premium di halaman pengaturan plugin!"
1188
-
1189
- #: deprecated.php:479
1190
  msgid "Restore all plugin settings to defaults"
1191
  msgstr "Mengembalikan semua pengaturan plugin untuk default"
1192
 
1193
- #: deprecated.php:481
1194
  msgid "Restore settings"
1195
  msgstr "mengembalikan pengaturan"
1196
 
1197
- #: deprecated.php:550 deprecated.php:577
1198
- #, php-format
1199
- msgid "File %s edited successfully."
1200
- msgstr "File %s berhasil diedit."
1201
-
1202
- #: deprecated.php:552 deprecated.php:579
1203
- msgid "Not enough permissions to create or update the file"
1204
- msgstr "Tidak cukup izin untuk membuat atau memperbarui file"
1205
-
1206
- #: deprecated.php:582
1207
- msgid "Not enough permissions to create the file"
1208
- msgstr "Tidak cukup izin untuk membuat file"
1209
-
1210
- #: deprecated.php:626
1211
- msgid "Editing"
1212
- msgstr "editing"
1213
-
1214
- #: deprecated.php:670
1215
  msgid ""
1216
  "Congratulations! Pro version of the plugin is installed and activated "
1217
  "successfully."
1218
  msgstr "Selamat! Versi Pro plugin diinstal dan diaktifkan berhasil."
1219
 
1220
- #: deprecated.php:680
1221
  msgid "Show Pro features"
1222
  msgstr "Tampilkan fitur Pro"
1223
 
1224
- #: deprecated.php:687
1225
  msgid "Enter your license key to install and activate"
1226
  msgstr "Masukkan kunci lisensi Anda untuk menginstal dan mengaktifkan"
1227
 
1228
- #: deprecated.php:689
1229
  msgid "version of the plugin."
1230
  msgstr "versi plugin."
1231
 
1232
- #: product_list.php:7
1233
  msgid "Admin Tools"
1234
  msgstr ""
1235
 
1236
- #: product_list.php:8
1237
  msgid "Content"
1238
  msgstr ""
1239
 
1240
- #: product_list.php:9
1241
  msgid "eCommerce"
1242
  msgstr ""
1243
 
1244
- #: product_list.php:10
1245
  msgid "Marketing"
1246
  msgstr ""
1247
 
1248
- #: product_list.php:11
1249
  msgid "Navigation"
1250
  msgstr ""
1251
 
1252
- #: product_list.php:12
1253
  msgid "Recommended"
1254
  msgstr "Direkomendasikan"
1255
 
1256
- #: product_list.php:13
1257
  msgid "Security"
1258
  msgstr "Keamanan"
1259
 
1260
- #: product_list.php:14
1261
  msgid "SEO"
1262
  msgstr ""
1263
 
1264
- #: product_list.php:15
1265
  msgid "SMM"
1266
  msgstr ""
1267
 
1268
- #: product_list.php:22
 
 
 
 
1269
  msgid "Best secure captcha plugin to protect your WordPress forms."
1270
  msgstr ""
1271
 
1272
- #: product_list.php:32
1273
- msgid "Create your personal car rental/booking and reservation website."
1274
  msgstr ""
1275
 
1276
- #: product_list.php:42
 
 
 
 
 
 
1277
  msgid ""
1278
  "Allow customers to reach you using secure contact form plugin any website "
1279
  "must have."
1280
  msgstr ""
1281
 
1282
- #: product_list.php:52
1283
  msgid "Add unlimited number of contact forms to WordPress website."
1284
  msgstr ""
1285
 
1286
- #: product_list.php:62
1287
  msgid "Save and manage Contact Form messages. Never lose important data."
1288
  msgstr ""
1289
 
1290
- #: product_list.php:72
1291
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1292
  msgstr ""
1293
 
1294
- #: product_list.php:79
1295
- msgid "Add custom fields to WordPress website search results."
1296
- msgstr ""
1297
-
1298
- #: product_list.php:86
1299
  msgid ""
1300
  "Add custom post types and taxonomies to WordPress website search results."
1301
  msgstr ""
1302
 
1303
- #: product_list.php:96
1304
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1305
  msgstr ""
1306
 
1307
- #: product_list.php:103
1308
  msgid ""
1309
  "Get latest error log messages to diagnose website problems. Define and fix "
1310
  "issues faster."
1311
  msgstr ""
1312
 
1313
- #: product_list.php:110
1314
  msgid ""
1315
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1316
  "widgets."
1317
  msgstr ""
1318
 
1319
- #: product_list.php:120
1320
  msgid ""
1321
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1322
  "clicks."
1323
  msgstr ""
1324
 
1325
- #: product_list.php:130
1326
- msgid ""
1327
- "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
1328
- "posts, pages and widgets."
1329
- msgstr ""
1330
-
1331
- #: product_list.php:140
1332
  msgid ""
1333
  "Stronger security solution which protects your WordPress website from hacks "
1334
  "and unauthorized login attempts."
1335
  msgstr ""
1336
 
1337
- #: product_list.php:150
1338
  msgid ""
1339
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1340
  "results, categories, tags, and widgets."
1341
  msgstr ""
1342
 
1343
- #: product_list.php:160
1344
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1345
  msgstr ""
1346
 
1347
- #: product_list.php:170
1348
- msgid ""
1349
- "Protect WordPress website forms from spam entries with Google Captcha "
1350
- "(reCaptcha)."
1351
  msgstr ""
1352
 
1353
- #: product_list.php:180
1354
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1355
  msgstr ""
1356
 
1357
- #: product_list.php:190
1358
  msgid ""
1359
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1360
  "your blog."
1361
  msgstr ""
1362
 
1363
- #: product_list.php:200
1364
  msgid ""
1365
  "Replace external WordPress website links with Google shortlinks and track "
1366
  "click stats."
1367
  msgstr ""
1368
 
1369
- #: product_list.php:207
1370
  msgid ""
1371
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1372
  "hostnames, etc."
1373
  msgstr ""
1374
 
1375
- #: product_list.php:217
1376
  msgid ""
1377
  "Create your personal job board and listing WordPress website. Search jobs, "
1378
  "submit CV/resumes, choose candidates."
1379
  msgstr ""
1380
 
1381
- #: product_list.php:224
1382
  msgid ""
1383
  "Protect WordPress website against brute force attacks. Limit rate of login "
1384
  "attempts."
1385
  msgstr ""
1386
 
1387
- #: product_list.php:234
1388
  msgid ""
1389
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1390
  "5 plugins included – profile, insider, etc."
1391
  msgstr ""
1392
 
1393
- #: product_list.php:244
1394
  msgid ""
1395
  "Translate WordPress website content to other languages manually. Create "
1396
  "multilingual pages, posts, widgets, menus, etc."
1397
  msgstr ""
1398
 
1399
- #: product_list.php:254
1400
  msgid ""
1401
  "Add customizable pagination to WordPress website. Split long content to "
1402
  "multiple pages for better navigation."
1403
  msgstr ""
1404
 
1405
- #: product_list.php:264
1406
  msgid ""
1407
  "Generate PDF files and print WordPress posts/pages. Customize document "
1408
  "header/footer styles and appearance."
1409
  msgstr ""
1410
 
1411
- #: product_list.php:274
1412
  msgid ""
1413
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1414
  "Profile) to WordPress posts, pages and widgets."
1415
  msgstr ""
1416
 
1417
- #: product_list.php:284
1418
  msgid ""
1419
  "Create your personal portfolio WordPress website. Manage and showcase past "
1420
  "projects to get more clients."
1421
  msgstr ""
1422
 
1423
- #: product_list.php:294
1424
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1425
  msgstr ""
1426
 
1427
- #: product_list.php:301
1428
  msgid ""
1429
  "Add extra fields to default WordPress user profile. The easiest way to "
1430
  "create and manage additional custom values."
1431
  msgstr ""
1432
 
1433
- #: product_list.php:308
1434
  msgid ""
1435
  "Add and display HTML advertisement banner on WordPress website. Customize "
1436
  "bar styles and appearance."
1437
  msgstr ""
1438
 
1439
- #: product_list.php:318
1440
  msgid ""
1441
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1442
  "widgets."
1443
  msgstr ""
1444
 
1445
- #: product_list.php:325
1446
  msgid ""
1447
  "Add rating plugin to your WordPress website to receive feedback from your "
1448
  "customers."
1449
  msgstr ""
1450
 
1451
- #: product_list.php:332
1452
  msgid ""
1453
  "Create your personal real estate WordPress website. Sell, rent and buy "
1454
  "properties. Add, search and browse listings easily."
1455
  msgstr ""
1456
 
1457
- #: product_list.php:342
1458
  msgid ""
1459
  "Add related, featured, latest, and popular posts to your WordPress website. "
1460
  "Connect your blog readers with a relevant content."
1461
  msgstr ""
1462
 
1463
- #: product_list.php:349
1464
  msgid ""
1465
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1466
  "settings and detailed reports."
1467
  msgstr ""
1468
 
1469
- #: product_list.php:359
1470
  msgid ""
1471
  "The best responsive slider plugin for your WordPress website. Create "
1472
  "beautifully animated slides just in a few clicks."
1473
  msgstr ""
1474
 
1475
- #: product_list.php:366
1476
  msgid ""
1477
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1478
  "Yahoo, Hotmail and other services."
1479
  msgstr ""
1480
 
1481
- #: product_list.php:373
1482
  msgid ""
1483
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1484
- "FB, Twitter, G+1, Pinterest, LinkedIn."
1485
  msgstr ""
1486
 
1487
- #: product_list.php:383
1488
  msgid ""
1489
  "Add social media login, registration, and commenting to your WordPress "
1490
  "website."
1491
  msgstr ""
1492
 
1493
- #: product_list.php:390
1494
  msgid ""
1495
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1496
  "Collect data and subscribe your users."
1497
  msgstr ""
1498
 
1499
- #: product_list.php:400
1500
  msgid ""
1501
  "Add testimonials and feedbacks from your customers to WordPress website "
1502
  "posts, pages, and widgets."
1503
  msgstr ""
1504
 
1505
- #: product_list.php:407
1506
  msgid ""
1507
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1508
  "attendance and generate reports."
1509
  msgstr ""
1510
 
1511
- #: product_list.php:417
1512
  msgid ""
1513
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1514
  "and pages."
1515
  msgstr ""
1516
 
1517
- #: product_list.php:427
1518
  msgid ""
1519
  "Automatically check and update WordPress website core with all installed "
1520
  "plugins and themes to the latest versions."
1521
  msgstr ""
1522
 
1523
- #: product_list.php:437
1524
  msgid ""
1525
  "Powerful user role management plugin for WordPress website. Create, edit, "
1526
  "copy, and delete user roles."
1527
  msgstr ""
1528
 
1529
- #: product_list.php:447
1530
  msgid ""
1531
  "Display live count of online visitors who are currently browsing your "
1532
  "WordPress website."
1533
  msgstr ""
1534
 
1535
- #: product_list.php:457
1536
  msgid ""
1537
  "Backup and export Zendesk Help Center content automatically to your "
1538
  "WordPress website database."
1539
  msgstr ""
1540
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1541
  #~ msgid "Congratulations! Pro Membership license is activated successfully."
1542
  #~ msgstr "Selamat! lisensi Keanggotaan Pro berhasil diaktifkan."
1543
 
@@ -1607,9 +1606,6 @@ msgstr ""
1607
  #~ msgid "Please, go to %s"
1608
  #~ msgstr "Silakan, pergi ke %s"
1609
 
1610
- #~ msgid "Client Area"
1611
- #~ msgstr "area klien"
1612
-
1613
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
1614
  #~ msgstr ""
1615
  #~ "Jika Anda menikmati plugin kami, silakan memberikan 5 bintang pada "
@@ -1709,9 +1705,6 @@ msgstr ""
1709
  #~ msgid "Free plugins"
1710
  #~ msgstr "plugin gratis"
1711
 
1712
- #~ msgid "Download"
1713
- #~ msgstr "Download"
1714
-
1715
  #~ msgid "Install now from wordpress.org"
1716
  #~ msgstr "Instal sekarang dari wordpress.org"
1717
 
@@ -1766,9 +1759,6 @@ msgstr ""
1766
  #~ msgid "Send me a copy"
1767
  #~ msgstr "Kirimkan saya salinan"
1768
 
1769
- #~ msgid "Submit"
1770
- #~ msgstr "Menyerahkan"
1771
-
1772
  #~ msgid "Your name is required."
1773
  #~ msgstr "Nama Anda diperlukan."
1774
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-02-15 10:54+0200\n"
6
+ "PO-Revision-Date: 2021-02-15 10:54+0200\n"
7
  "Last-Translator: Jordan Silaen <jordan.silaen@chameleonjohn.com>\n"
8
  "Language-Team: chameleonjohn.com <jordan.silaen@chameleonjohn.com>\n"
9
  "Language: id\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
  "Plural-Forms: nplurals=1; plural=0;\n"
17
+ "X-Generator: Poedit 2.4.2\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
+ #: bws_functions.php:73 bws_functions.php:239
21
  msgid "requires"
22
  msgstr "membutuhkan"
23
 
54
  msgid "Need help?"
55
  msgstr "Butuh bantuan?"
56
 
57
+ #: bws_functions.php:104 bws_functions.php:949 class-bws-settings.php:1082
58
  msgid "Visit Help Center"
59
  msgstr "Kunjungi Pusat Bantuan"
60
 
62
  msgid "Want to support the plugin?"
63
  msgstr "Ingin mendukung plugin?"
64
 
65
+ #: bws_functions.php:108 bws_menu.php:529
66
  msgid "Donate"
67
  msgstr "Menyumbangkan"
68
 
78
  "otherwise the Pro plugin will be deactivated."
79
  msgstr ""
80
 
81
+ #: bws_functions.php:128 bws_functions.php:208 bws_menu.php:600
82
+ #: class-bws-settings.php:179
83
  msgid "Learn More"
84
  msgstr "Belajarlah lagi"
85
 
99
  "lisensi Anda telah berakhir. Untuk terus mendapatkan dukungan top-prioritas "
100
  "dan update Plugin, Anda harus memperpanjang."
101
 
102
+ #: bws_functions.php:147 bws_functions.php:226
103
  msgid "Learn more"
104
  msgstr "Belajarlah lagi"
105
 
116
  msgid "The Pro Trial license will expire on"
117
  msgstr "Lisensi Percobaan Pro akan berakhir pada"
118
 
119
+ #: bws_functions.php:199 bws_functions.php:222 bws_functions.php:266
120
+ #: bws_functions.php:276 bws_functions.php:475
121
+ msgid "Close notice"
122
+ msgstr "Tutup pemberitahuan"
123
+
124
+ #: bws_functions.php:204
125
+ msgid "It’s time to upgrade your"
126
+ msgstr "Saatnya untuk meng-upgrade Anda"
127
+
128
+ #: bws_functions.php:204
129
+ msgid "to"
130
+ msgstr "untuk"
131
+
132
+ #: bws_functions.php:204
133
+ msgid "version!"
134
+ msgstr "versi!"
135
+
136
+ #: bws_functions.php:205
137
+ msgid "Extend standard plugin functionality with new great options."
138
+ msgstr "Memperluas fungsi Plugin standar dengan pilihan besar baru."
139
+
140
+ #: bws_functions.php:226
141
+ #, php-format
142
+ msgid ""
143
+ "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
144
+ "SUPPORT or UPDATES."
145
+ msgstr ""
146
+ "Kunci lisensi untuk %s berakhir pada %s dan Anda tidak akan diberikan TOP-"
147
+ "PRIORITAS DUKUNGAN atau PEMBARUAN."
148
+
149
+ #: bws_functions.php:241
150
  msgid ""
151
  "or higher! We do not guarantee that our plugin will work correctly. Please "
152
  "upgrade to WordPress latest version."
154
  "atau lebih tinggi! Kami tidak menjamin bahwa plugin kami akan bekerja dengan "
155
  "benar. Silakan upgrade ke WordPress versi terbaru."
156
 
157
+ #: bws_functions.php:256
158
  #, php-format
159
  msgid "Thank you for installing %s plugin!"
160
  msgstr ""
161
 
162
+ #: bws_functions.php:258
163
  msgid "Let's get started"
164
  msgstr "Mari kita mulai"
165
 
166
+ #: bws_functions.php:259 bws_functions.php:292 bws_menu.php:533
167
+ #: bws_menu.php:535
168
  msgid "Settings"
169
  msgstr "pengaturan"
170
 
171
+ #: bws_functions.php:261 bws_menu.php:327 class-bws-settings.php:809
172
+ #: class-bws-settings.php:1084 class-bws-settings.php:1094 deprecated.php:234
173
  msgid "or"
174
  msgstr "atau"
175
 
176
+ #: bws_functions.php:262 bws_functions.php:294
177
  msgid "Add New"
178
  msgstr "Tambah baru"
179
 
180
+ #: bws_functions.php:281
 
 
 
 
 
181
  msgid "Thank you for installing plugins by BestWebSoft!"
182
  msgstr "Terima kasih untuk menginstal plugin dengan BestWebSoft!"
183
 
184
+ #: bws_functions.php:283
185
  msgid "More Details"
186
  msgstr "Keterangan lebih lanjut"
187
 
188
+ #: bws_functions.php:284
189
  msgid "Less Details"
190
  msgstr "Kurang Detail"
191
 
192
+ #: bws_functions.php:312
193
  msgid "Deprecated function(-s) is used on the site here:"
194
  msgstr "Fungsi usang (-s) digunakan di situs di sini:"
195
 
196
+ #: bws_functions.php:326
197
  msgid ""
198
  "This function(-s) will be removed over time. Please update the product(-s)."
199
  msgstr ""
200
  "Fungsi ini (-s) akan dihapus dari waktu ke waktu. Perbarui produk (-s)."
201
 
202
+ #: bws_functions.php:470
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
203
  #, php-format
204
  msgid "Thank you for choosing %s plugin!"
205
  msgstr ""
206
 
207
+ #: bws_functions.php:471
208
  msgid ""
209
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
210
  "we'd love to hear about it!"
212
  "Jika Anda memiliki fitur, saran atau ide yang ingin Anda lihat di plugin, "
213
  "kami akan senang mendengar tentang hal itu!"
214
 
215
+ #: bws_functions.php:472
216
  msgid "Suggest a Feature"
217
  msgstr "Sarankan Fitur sebuah"
218
 
219
+ #: bws_functions.php:488 class-bws-settings.php:580 class-bws-settings.php:583
220
+ #: class-bws-settings.php:635 class-bws-settings.php:638
221
  msgid "Notice"
222
  msgstr "Melihat"
223
 
224
+ #: bws_functions.php:488
225
  msgid "The plugin's settings have been changed."
226
  msgstr "pengaturan plugin ini telah berubah."
227
 
228
+ #: bws_functions.php:489 class-bws-settings.php:222 class-bws-settings.php:242
 
229
  msgid "Save Changes"
230
  msgstr "Simpan perubahan"
231
 
232
+ #: bws_functions.php:503
233
  msgid ""
234
  "You can always look at premium options by checking the \"Pro Options\" in "
235
  "the \"Misc\" tab."
237
  "Anda selalu dapat melihat pilihan premium dengan memeriksa \\ \"Pro Options "
238
  "\" di \\ tab \"Misc \"."
239
 
240
+ #: bws_functions.php:679
 
 
 
 
 
 
 
 
241
  msgid "Add shortcode"
242
  msgstr "Tambahkan shortcode"
243
 
244
+ #: bws_functions.php:679
245
  msgid "Add BestWebSoft plugins' shortcodes using this button."
246
  msgstr "Tambahkan shortcode BestWebSoft plugin 'menggunakan tombol ini."
247
 
248
+ #: bws_functions.php:765
249
  msgid "Close"
250
  msgstr "Dekat"
251
 
252
+ #: bws_functions.php:851
253
  msgid "Are you sure you want to restore default settings?"
254
  msgstr "Apakah Anda yakin ingin mengembalikan pengaturan default?"
255
 
256
+ #: bws_functions.php:854
257
  msgid "Yes, restore all settings"
258
  msgstr "Ya, mengembalikan semua pengaturan"
259
 
260
+ #: bws_functions.php:855
261
  msgid "No, go back to the settings page"
262
  msgstr "Tidak, kembali ke halaman pengaturan"
263
 
264
+ #: bws_functions.php:897
265
  msgid "Plugin"
266
  msgstr "Plugin"
267
 
268
+ #: bws_functions.php:906
269
  msgid "Shortcode settings"
270
  msgstr "pengaturan shortcode"
271
 
272
+ #: bws_functions.php:911
273
  msgid "The shortcode will be inserted"
274
  msgstr "shortcode akan dimasukkan"
275
 
276
+ #: bws_functions.php:954
277
  msgid "FAQ"
278
  msgstr "FAQ"
279
 
280
+ #: bws_functions.php:960
281
  msgid "For more information:"
282
  msgstr "Untuk informasi lebih lanjut:"
283
 
284
+ #: bws_functions.php:961 bws_menu.php:401 class-bws-settings.php:776
285
  msgid "Documentation"
286
  msgstr "Dokumentasi"
287
 
288
+ #: bws_functions.php:962 bws_menu.php:403 class-bws-settings.php:778
289
  msgid "Video Instructions"
290
  msgstr "Petunjuk Video"
291
 
292
+ #: bws_functions.php:963
293
  msgid "Submit a Request"
294
  msgstr "Mengajukan permohonan"
295
 
296
+ #: bws_menu.php:101 class-bws-settings.php:860
297
  msgid "Wrong license key"
298
  msgstr "kunci lisensi yang salah"
299
 
300
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
301
+ #: class-bws-settings.php:1004
 
302
  msgid ""
303
  "Something went wrong. Please try again later. If the error appears again, "
304
  "please contact us"
306
  "Ada yang salah. Silakan coba lagi nanti. Jika kesalahan muncul lagi, "
307
  "silahkan hubungi kami"
308
 
309
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
310
+ #: class-bws-settings.php:1004
 
311
  msgid "We are sorry for inconvenience."
312
  msgstr "Kami mohon maaf atas ketidaknyamanan."
313
 
314
+ #: bws_menu.php:129 class-bws-settings.php:893 class-bws-settings.php:1010
 
315
  msgid "Wrong license key."
316
  msgstr "kunci lisensi yang salah."
317
 
318
+ #: bws_menu.php:131
319
  msgid ""
320
  "This license key is bound to another site. Change it via personal Client "
321
  "Area."
323
  "kunci lisensi ini terikat ke situs lain. Mengubahnya melalui personal Area "
324
  "Klien."
325
 
326
+ #: bws_menu.php:131
327
  msgid "Log in"
328
  msgstr "Masuk"
329
 
330
+ #: bws_menu.php:133 bws_menu.php:333 deprecated.php:157
331
  msgid "Unfortunately, you have exceeded the number of available tries per day."
332
  msgstr "Sayangnya, Anda telah melebihi jumlah mencoba tersedia per hari."
333
 
334
+ #: bws_menu.php:135
335
  #, php-format
336
  msgid ""
337
  "Unfortunately, Your license has expired. To continue getting top-priority "
340
  "Sayangnya, lisensi Anda telah kedaluwarsa. Untuk terus mendapatkan dukungan "
341
  "top-prioritas dan Plugin update, Anda harus memperpanjang di Anda %s"
342
 
343
+ #: bws_menu.php:137 class-bws-settings.php:1018
344
  msgid ""
345
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
346
  "Trial license can be installed only once."
348
  "Sayangnya, lisensi Pro sudah dipasang untuk domain ini. Lisensi Percobaan "
349
  "Pro dapat diinstal hanya sekali."
350
 
351
+ #: bws_menu.php:143 class-bws-settings.php:908
352
  msgid "The license key is valid."
353
  msgstr "Kunci lisensi berlaku."
354
 
355
+ #: bws_menu.php:145 class-bws-settings.php:912
356
  msgid "Your license will expire on"
357
  msgstr "lisensi Anda akan berakhir pada"
358
 
359
+ #: bws_menu.php:147
360
  msgid "Congratulations! Pro Membership license is activated successfully."
361
  msgstr ""
362
 
363
+ #: bws_menu.php:154 class-bws-settings.php:1028
364
  msgid ""
365
  "Something went wrong. Try again later or upload the plugin manually. We are "
366
  "sorry for inconvenience."
368
  "Ada yang salah. Coba lagi nanti atau meng-upload plugin secara manual. Kami "
369
  "mohon maaf atas ketidaknyamanan."
370
 
371
+ #: bws_menu.php:164
372
  msgid "Please enter your license key."
373
  msgstr "Masukkan kunci lisensi Anda."
374
 
375
+ #: bws_menu.php:175
376
  msgid "Not set"
377
  msgstr "Tidak diatur"
378
 
379
+ #: bws_menu.php:177
380
  msgid "On"
381
  msgstr "Di"
382
 
383
+ #: bws_menu.php:177
384
  msgid "Off"
385
  msgstr "Mati"
386
 
387
+ #: bws_menu.php:178 bws_menu.php:179 bws_menu.php:180 bws_menu.php:181
388
+ #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:192
389
  msgid "N/A"
390
  msgstr "N / A"
391
 
392
+ #: bws_menu.php:183
393
+ #, fuzzy
394
+ #| msgid " Mb"
395
+ msgid "Mb"
396
  msgstr " Mb"
397
 
398
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
399
  msgid "Yes"
400
  msgstr "iya nih"
401
 
402
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
403
  msgid "No"
404
  msgstr "Tidak"
405
 
406
+ #: bws_menu.php:197
407
  msgid "WordPress Environment"
408
  msgstr "WordPress Lingkungan"
409
 
410
+ #: bws_menu.php:199
411
  msgid "Home URL"
412
  msgstr "URL rumah"
413
 
414
+ #: bws_menu.php:200
415
  msgid "Website URL"
416
  msgstr "alamat situs web"
417
 
418
+ #: bws_menu.php:201
419
  msgid "WP Version"
420
  msgstr "WP Versi"
421
 
422
+ #: bws_menu.php:202
423
  msgid "WP Multisite"
424
  msgstr "WP Multisite"
425
 
426
+ #: bws_menu.php:203
427
  msgid "WP Memory Limit"
428
  msgstr "WP Memory Limit"
429
 
430
+ #: bws_menu.php:204
431
  msgid "Active Theme"
432
  msgstr "Tema aktif"
433
 
434
+ #: bws_menu.php:204 bws_menu.php:249 bws_menu.php:252
435
  #, php-format
436
  msgid "by %s"
437
  msgstr "oleh %s"
438
 
439
+ #: bws_menu.php:208
440
  msgid "Server Environment"
441
  msgstr "Server Lingkungan"
442
 
443
+ #: bws_menu.php:210
444
  msgid "Operating System"
445
  msgstr "Sistem operasi"
446
 
447
+ #: bws_menu.php:211
448
  msgid "Server"
449
  msgstr "Server"
450
 
451
+ #: bws_menu.php:212
452
  msgid "PHP Version"
453
  msgstr "PHP Versi"
454
 
455
+ #: bws_menu.php:213
456
  msgid "PHP Allow URL fopen"
457
  msgstr "PHP Izinkan URL fopen"
458
 
459
+ #: bws_menu.php:214
460
  msgid "PHP Memory Limit"
461
  msgstr "PHP Memory Limit"
462
 
463
+ #: bws_menu.php:215
464
  msgid "Memory Usage"
465
  msgstr "memory Usage"
466
 
467
+ #: bws_menu.php:216
468
  msgid "PHP Max Upload Size"
469
  msgstr "Ukuran PHP Max Upload"
470
 
471
+ #: bws_menu.php:217
472
  msgid "PHP Max Post Size"
473
  msgstr "PHP Max Pos Ukuran"
474
 
475
+ #: bws_menu.php:218
476
  msgid "PHP Max Script Execute Time"
477
  msgstr "PHP Max Script Jalankan Waktu"
478
 
479
+ #: bws_menu.php:219
480
  msgid "PHP Exif support"
481
  msgstr "dukungan PHP Exif"
482
 
483
+ #: bws_menu.php:220
484
  msgid "PHP IPTC support"
485
  msgstr "dukungan PHP IPTC"
486
 
487
+ #: bws_menu.php:221
488
  msgid "PHP XML support"
489
  msgstr "dukungan XML PHP"
490
 
491
+ #: bws_menu.php:227
492
  msgid "Database"
493
  msgstr "database"
494
 
495
+ #: bws_menu.php:229
496
  msgid "WP DB version"
497
  msgstr "Versi WP DB"
498
 
499
+ #: bws_menu.php:230
500
  msgid "MySQL version"
501
  msgstr "versi MySQL"
502
 
503
+ #: bws_menu.php:231
504
  msgid "SQL Mode"
505
  msgstr "SQL Modus"
506
 
507
+ #: bws_menu.php:235
508
  msgid "Active Plugins"
509
  msgstr "Plugin aktif"
510
 
511
+ #: bws_menu.php:240
512
  msgid "Inactive Plugins"
513
  msgstr "Plugin tidak aktif"
514
 
515
+ #: bws_menu.php:261
516
  msgid "Please enter a valid email address."
517
  msgstr "Silakan isi alamat email."
518
 
519
+ #: bws_menu.php:263
520
  #, php-format
521
  msgid "Email with system info is sent to %s."
522
  msgstr ""
523
 
524
+ #: bws_menu.php:267
525
  msgid "Thank you for contacting us."
526
  msgstr "Terima kasih sudah menghubungi kami."
527
 
528
+ #: bws_menu.php:290
529
  msgid "Sorry, email message could not be delivered."
530
  msgstr "Maaf, pesan email tidak dapat disampaikan."
531
 
532
+ #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:359 deprecated.php:26
533
  msgid "Plugins"
534
  msgstr "plugin"
535
 
536
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:587 deprecated.php:27
537
  msgid "Themes"
538
  msgstr "tema"
539
 
540
+ #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:617
541
  msgid "System status"
542
  msgstr "Status sistem"
543
 
544
+ #: bws_menu.php:316
545
  msgid "Support"
546
  msgstr "Mendukung"
547
 
548
+ #: bws_menu.php:317
549
  msgid "Manage purchased licenses & subscriptions"
550
  msgstr "Mengelola membeli lisensi & langganan"
551
 
552
+ #: bws_menu.php:325
553
  #, php-format
554
  msgid "Get Access to %s+ Premium Plugins"
555
  msgstr "Dapatkan Akses ke %s + Premium Plugin"
556
 
557
+ #: bws_menu.php:327
558
  msgid "Subscribe to Pro Membership"
559
  msgstr "Berlangganan Pro Keanggotaan"
560
 
561
+ #: bws_menu.php:335 bws_menu.php:346 class-bws-settings.php:822
562
+ #: deprecated.php:123
563
  msgid "Check license key"
564
  msgstr "Periksa kunci lisensi"
565
 
566
+ #: bws_menu.php:338
567
  msgid "Enter your license key"
568
  msgstr "Masukkan kunci lisensi Anda"
569
 
570
+ #: bws_menu.php:344 bws_menu.php:539 bws_menu.php:548
571
+ #: class-bws-settings.php:801 deprecated.php:155 deprecated.php:163
572
+ #: deprecated.php:240 deprecated.php:249
573
  msgid "Activate"
574
  msgstr "Mengaktifkan"
575
 
576
+ #: bws_menu.php:360
577
  msgid "Upload Plugin"
578
  msgstr "Upload Plugin"
579
 
580
+ #: bws_menu.php:364
581
  #, php-format
582
  msgid ""
583
  "The plugin generated %d characters of <strong>unexpected output</strong> "
590
  "# 8221; pesan, masalah dengan feed sindikasi atau masalah lain, coba "
591
  "menonaktifkan atau menghapus plugin ini."
592
 
593
+ #: bws_menu.php:366
594
  msgid ""
595
  "Plugin could not be activated because it triggered a <strong>fatal error</"
596
  "strong>."
598
  "Plugin tidak dapat diaktifkan karena memicu <strong> kesalahan fatal </ "
599
  "strong>."
600
 
601
+ #: bws_menu.php:369
602
  msgid "Plugin <strong>activated</strong>."
603
  msgstr "Plugin <strong> diaktifkan </ strong>."
604
 
605
+ #: bws_menu.php:383
606
+ #, fuzzy
607
+ #| msgid "Upload Plugin"
608
+ msgid "Download Pro Plugin"
609
+ msgstr "Upload Plugin"
610
 
611
+ #: bws_menu.php:385 class-bws-settings.php:759
612
+ msgid "Your Pro plugin is ready"
613
+ msgstr ""
614
 
615
+ #: bws_menu.php:387 class-bws-settings.php:761
616
+ msgid "Your plugin has been zipped, and now is ready to download."
617
+ msgstr ""
 
618
 
619
+ #: bws_menu.php:390 class-bws-settings.php:764
620
+ #, fuzzy
621
+ #| msgid "Download"
622
+ msgid "Download Now"
623
+ msgstr "Download"
624
 
625
+ #: bws_menu.php:394 class-bws-settings.php:768
626
+ #, fuzzy
627
+ #| msgid "Installing the plugin"
628
+ msgid "Need help installing the plugin?"
629
  msgstr "Instalasi plugin"
630
 
631
+ #: bws_menu.php:396 class-bws-settings.php:770
632
+ msgid "How to install WordPress plugin from your admin Dashboard (ZIP archive)"
 
 
 
 
 
 
633
  msgstr ""
 
 
634
 
635
+ #: bws_menu.php:399 class-bws-settings.php:774
636
+ #, fuzzy
637
+ #| msgid "Let's get started"
638
+ msgid "Get Started"
639
+ msgstr "Mari kita mulai"
640
+
641
+ #: bws_menu.php:405 class-bws-settings.php:780
642
+ msgid "Knowledge Base"
643
+ msgstr ""
644
 
645
+ #: bws_menu.php:408
646
+ msgid "Licenses & Domains"
647
+ msgstr ""
648
 
649
+ #: bws_menu.php:411
650
+ msgid "Client Area"
651
+ msgstr "area klien"
652
 
653
+ #: bws_menu.php:413
654
  msgid "Return to BestWebSoft Panel"
655
  msgstr "Kembali ke BestWebSoft Panel"
656
 
657
+ #: bws_menu.php:420 bws_menu.php:440 bws_menu.php:569
658
  msgid "All"
659
  msgstr "Semua"
660
 
661
+ #: bws_menu.php:423 bws_menu.php:606
662
  msgid "Installed"
663
  msgstr "dipasang"
664
 
665
+ #: bws_menu.php:426
666
  msgid "Not Installed"
667
  msgstr "Tidak terpasang"
668
 
669
+ #: bws_menu.php:433
670
  msgid "Filter results"
671
  msgstr "Filter hasil"
672
 
673
+ #: bws_menu.php:436 bws_menu.php:565
674
  msgid "Category"
675
  msgstr "Kategori"
676
 
677
+ #: bws_menu.php:500
678
  msgid "Not installed"
679
  msgstr "Tidak terpasang"
680
 
681
+ #: bws_menu.php:504
682
  msgid "Renew to get updates"
683
  msgstr "Renew untuk mendapatkan update"
684
 
685
+ #: bws_menu.php:507
686
  #, php-format
687
  msgid "Update to v %s"
688
  msgstr "Update untuk v %s"
689
 
690
+ #: bws_menu.php:519 bws_menu.php:542
691
+ msgid "Get Pro"
692
+ msgstr ""
693
 
694
+ #: bws_menu.php:525 class-bws-settings.php:192 class-bws-settings.php:1091
695
  msgid "Upgrade to Pro"
696
  msgstr "Upgrade ke yang lebih baik"
697
 
698
+ #: bws_menu.php:539 bws_menu.php:548
699
  msgid "Activate this plugin"
700
  msgstr "Aktifkan plugin ini"
701
 
702
+ #: bws_menu.php:551
703
  msgid "Install this plugin"
704
  msgstr "Menginstal plugin ini"
705
 
706
+ #: bws_menu.php:551
707
+ msgid "Install Now"
708
+ msgstr "Pasang sekarang"
709
+
710
+ #: bws_menu.php:560
711
  msgid "Nothing found. Try another criteria."
712
  msgstr "Tidak ada yang ditemukan. Coba kriteria lain."
713
 
714
+ #: bws_menu.php:597
715
  #, php-format
716
  msgid "By %s"
717
  msgstr "Oleh %s"
718
 
719
+ #: bws_menu.php:604
720
  msgid "Already Installed"
721
  msgstr "sudah Dipasang"
722
 
723
+ #: bws_menu.php:614
724
  msgid "Browse More WordPress Themes"
725
  msgstr ""
726
 
727
+ #: bws_menu.php:623
728
  msgid "Send to support"
729
  msgstr "Kirim untuk mendukung"
730
 
731
+ #: bws_menu.php:630
732
  msgid "Send to custom email &#187;"
733
  msgstr "Kirim ke email khusus & # 187;"
734
 
735
+ #: class-bws-settings.php:167
736
  msgid "Information"
737
  msgstr "Informasi"
738
 
739
+ #: class-bws-settings.php:179
740
  msgid "Inactive"
741
  msgstr "non-aktif"
742
 
743
+ #: class-bws-settings.php:187
744
  msgid "Expired"
745
  msgstr "kedaluwarsa"
746
 
747
+ #: class-bws-settings.php:190
748
  #, php-format
749
  msgid "%s day(-s) left"
750
  msgstr "%s hari (-s) kiri"
751
 
752
+ #: class-bws-settings.php:196
753
  #, php-format
754
  msgid "Expired on %s"
755
  msgstr "Berakhir pada %s"
756
 
757
+ #: class-bws-settings.php:196
758
  msgid "Renew Now"
759
  msgstr "Perbarui sekarang"
760
 
761
+ #: class-bws-settings.php:198
762
  msgid "Active"
763
  msgstr "Aktif"
764
 
765
+ #: class-bws-settings.php:203
766
  msgid "License"
767
  msgstr "Lisensi"
768
 
769
+ #: class-bws-settings.php:206
770
  msgid "Status"
771
  msgstr "Status"
772
 
773
+ #: class-bws-settings.php:210
774
  msgid "Version"
775
  msgstr "Versi"
776
 
777
+ #: class-bws-settings.php:323
778
  msgid "All plugin settings were restored."
779
  msgstr "Semua pengaturan Plugin dipulihkan."
780
 
781
+ #: class-bws-settings.php:463
782
  msgid "Custom Code"
783
  msgstr "Kode kustom"
784
 
785
+ #: class-bws-settings.php:467
786
  msgid "You do not have sufficient permissions to edit plugins for this site."
787
  msgstr ""
788
  "Anda tidak memiliki cukup izin untuk menyunting plugin untuk situs ini."
789
 
790
+ #: class-bws-settings.php:472
791
  msgid "These styles will be added to the header on all pages of your site."
792
  msgstr "Gaya ini akan ditambahkan ke header pada semua halaman situs Anda."
793
 
794
+ #: class-bws-settings.php:475
795
  #, php-format
796
  msgid ""
797
  "This PHP code will be hooked to the %s action and will be printed on front "
800
  "Kode PHP ini akan ketagihan untuk %s tindakan dan akan dicetak pada ujung "
801
  "depan saja."
802
 
803
+ #: class-bws-settings.php:478
804
  msgid "These code will be added to the header on all pages of your site."
805
  msgstr "Kode ini akan ditambahkan ke header pada semua halaman situs Anda."
806
 
807
+ #: class-bws-settings.php:486
808
  #, php-format
809
  msgid ""
810
  "You need to make this files writable before you can save your changes. See "
813
  "Anda perlu membuat file ini ditulis sebelum Anda dapat menyimpan perubahan. "
814
  "Lihat %s Codex %s untuk informasi lebih lanjut."
815
 
816
+ #: class-bws-settings.php:496
817
  msgid "Browsing"
818
  msgstr "Browsing"
819
 
820
+ #: class-bws-settings.php:501
821
  #, php-format
822
  msgid "Activate custom %s code."
823
  msgstr "Aktifkan kustom %s kode."
824
 
825
+ #: class-bws-settings.php:509
826
  #, php-format
827
  msgid "Learn more about %s"
828
  msgstr "Pelajari lebih lanjut tentang %s"
829
 
830
+ #: class-bws-settings.php:571
831
  msgid "Miscellaneous Settings"
832
  msgstr "Pengaturan Miscellaneous"
833
 
834
+ #: class-bws-settings.php:580 class-bws-settings.php:635
835
  #, php-format
836
  msgid ""
837
  "It is prohibited to change %s settings on this site in the %s network "
839
  msgstr ""
840
  "Dilarang mengubah %s pengaturan di situs ini di %s pengaturan jaringan."
841
 
842
+ #: class-bws-settings.php:583 class-bws-settings.php:638
843
  #, php-format
844
  msgid ""
845
  "It is prohibited to view %s settings on this site in the %s network settings."
846
  msgstr "Dilarang melihat %s pengaturan di situs ini di %s pengaturan jaringan."
847
 
848
+ #: class-bws-settings.php:592
849
  msgid "Pro Options"
850
  msgstr "Pro Pilihan"
851
 
852
+ #: class-bws-settings.php:596
853
  msgid "Enable to display plugin Pro options."
854
  msgstr "Memungkinkan untuk menampilkan opsi Pro Plugin."
855
 
856
+ #: class-bws-settings.php:602
857
  msgid "Track Usage"
858
  msgstr "track Penggunaan"
859
 
860
+ #: class-bws-settings.php:606
861
  msgid ""
862
  "Enable to allow tracking plugin usage anonymously in order to make it better."
863
  msgstr ""
864
  "Aktifkan untuk memungkinkan pelacakan penggunaan Plugin anonim untuk "
865
  "membuatnya lebih baik."
866
 
867
+ #: class-bws-settings.php:611
868
  msgid "Default Settings"
869
  msgstr "Pengaturan default"
870
 
871
+ #: class-bws-settings.php:613
872
  msgid "Restore Settings"
873
  msgstr "Kembalikan Pengaturan"
874
 
875
+ #: class-bws-settings.php:614
876
  msgid "This will restore plugin settings to defaults."
877
  msgstr "Ini akan mengembalikan pengaturan plugin untuk default."
878
 
879
+ #: class-bws-settings.php:626
880
  msgid "Import / Export"
881
  msgstr "Ekspor Impor"
882
 
883
+ #: class-bws-settings.php:744
 
884
  msgid "License Key"
885
  msgstr "Kunci lisensi"
886
 
887
+ #: class-bws-settings.php:803
 
 
 
 
 
 
 
 
 
 
 
 
 
888
  #, php-format
889
  msgid "Enter your license key to activate %s and get premium plugin features."
890
  msgstr ""
891
  "Masukkan kunci lisensi Anda untuk mengaktifkan %s dan mendapatkan fitur "
892
  "Plugin premium."
893
 
894
+ #: class-bws-settings.php:806 class-bws-settings.php:1014 deprecated.php:243
 
895
  msgid ""
896
  "Unfortunately, you have exceeded the number of available tries per day. "
897
  "Please, upload the plugin manually."
899
  "Sayangnya, Anda telah melebihi jumlah mencoba tersedia per hari. Silakan, "
900
  "upload plugin secara manual."
901
 
902
+ #: class-bws-settings.php:809 deprecated.php:234
903
  #, php-format
904
  msgid "Start Your Free %s-Day Trial Now"
905
  msgstr "Mulai Anda gratis %s -Day Percobaan Sekarang"
906
 
907
+ #: class-bws-settings.php:824
908
  msgid ""
909
  "If necessary, you can check if the license key is correct or reenter it in "
910
  "the field below."
912
  "Jika perlu, Anda dapat memeriksa apakah kunci lisensi benar atau masuk "
913
  "kembali ke dalam bidang di bawah."
914
 
915
+ #: class-bws-settings.php:833
916
  msgid "Manage License Settings"
917
  msgstr "Kelola Setelan License"
918
 
919
+ #: class-bws-settings.php:835
920
  msgid "Login to Client Area"
921
  msgstr "Login ke Area Klien"
922
 
923
+ #: class-bws-settings.php:837
924
  msgid ""
925
  "Manage active licenses, download BWS products, and view your payment history "
926
  "using BestWebSoft Client Area."
928
  "Mengelola lisensi aktif, men-download produk BWS, dan melihat riwayat "
929
  "pembayaran Anda menggunakan BestWebSoft Client Area."
930
 
931
+ #: class-bws-settings.php:895 class-bws-settings.php:1012
 
932
  msgid "This license key is bound to another site."
933
  msgstr "kunci lisensi ini terikat ke situs lain."
934
 
935
+ #: class-bws-settings.php:897
936
  msgid ""
937
  "This license key is valid, but Your license has expired. If you want to "
938
  "update our plugin in future, you should extend the license."
941
  "ingin memperbarui plugin kami di masa depan, Anda harus memperpanjang "
942
  "lisensi."
943
 
944
+ #: class-bws-settings.php:899
945
  msgid "Unfortunately, you have exceeded the number of available tries."
946
  msgstr "Sayangnya, Anda telah melebihi jumlah mencoba tersedia."
947
 
948
+ #: class-bws-settings.php:901
949
  msgid ""
950
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
951
  "The Pro Trial license can be installed only once."
953
  "Sayangnya, lisensi Percobaan Pro sudah dipasang untuk domain ini. Lisensi "
954
  "Percobaan Pro dapat diinstal hanya sekali."
955
 
956
+ #: class-bws-settings.php:906
957
  msgid "The Pro Trial license key is valid."
958
  msgstr "Kunci lisensi Percobaan Pro berlaku."
959
 
960
+ #: class-bws-settings.php:919 deprecated.php:142
961
  #, php-format
962
  msgid ""
963
  "In order to continue using the plugin it is necessary to buy a %s license."
964
  msgstr ""
965
  "Dalam rangka untuk terus menggunakan plugin perlu untuk membeli %s lisensi."
966
 
967
+ #: class-bws-settings.php:1016
968
  #, php-format
969
  msgid ""
970
  "Unfortunately, Your license has expired. To continue getting top-priority "
971
  "support and plugin updates, you should extend it in your %s."
972
  msgstr ""
973
 
974
+ #: class-bws-settings.php:1065
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
975
  msgid "Please, enter Your license key"
976
  msgstr "Silakan, masukkan kunci lisensi Anda"
977
 
978
+ #: class-bws-settings.php:1078
979
  msgid "Need Help?"
980
  msgstr "Butuh bantuan?"
981
 
982
+ #: class-bws-settings.php:1080
983
  msgid "Read the Instruction"
984
  msgstr "Baca Instruksi"
985
 
986
+ #: class-bws-settings.php:1084
987
  msgid "Watch the Video"
988
  msgstr "Saksikan Video"
989
 
990
+ #: class-bws-settings.php:1095
991
  msgid "Start Your Free Trial"
992
  msgstr "Mulai Uji Coba Gratis"
993
 
994
+ #: class-bws-settings.php:1130
995
+ #, fuzzy
996
+ #| msgid "Suggest a Feature"
997
+ msgid "Request a Feature"
998
+ msgstr "Sarankan Fitur sebuah"
999
+
1000
+ #: class-bws-settings.php:1135
1001
+ #, php-format
1002
+ msgid "How can we improve %s?"
1003
  msgstr ""
1004
 
1005
+ #: class-bws-settings.php:1137
1006
+ msgid "We look forward to hear your ideas."
1007
  msgstr ""
1008
 
1009
+ #: class-bws-settings.php:1139
1010
+ msgid "Describe your idea"
1011
  msgstr ""
1012
 
1013
+ #: class-bws-settings.php:1142 deactivation-form.php:120
1014
+ msgid "Send website data and allow to contact me back"
1015
  msgstr ""
1016
 
1017
+ #: class-bws-settings.php:1147
1018
+ msgid "Submit"
1019
+ msgstr "Menyerahkan"
1020
+
1021
+ #: class-bws-settings.php:1148 deactivation-form.php:127
1022
+ msgid "Processing"
1023
  msgstr ""
1024
 
1025
+ #: class-bws-settings.php:1149
1026
+ msgid "Thank you!"
1027
  msgstr ""
1028
 
1029
+ #: deactivation-form.php:22
1030
+ msgid "Need help? We are ready to answer your questions."
1031
+ msgstr ""
1032
+
1033
+ #: deactivation-form.php:22
1034
+ msgid "Contact Support"
1035
+ msgstr ""
1036
+
1037
+ #: deactivation-form.php:27
1038
+ msgid "The plugin is not working"
1039
+ msgstr ""
1040
+
1041
+ #: deactivation-form.php:33
1042
+ msgid "The plugin didn't work as expected"
1043
+ msgstr ""
1044
+
1045
+ #: deactivation-form.php:39
1046
  msgid "The plugin suddenly stopped working"
1047
  msgstr ""
1048
 
1049
+ #: deactivation-form.php:46
1050
  msgid "The plugin broke my site"
1051
  msgstr ""
1052
 
1053
+ #: deactivation-form.php:53
1054
  msgid "I couldn't understand how to get it work"
1055
  msgstr ""
1056
 
1057
+ #: deactivation-form.php:60
1058
  msgid "I found a better plugin"
1059
  msgstr ""
1060
 
1061
+ #: deactivation-form.php:66
 
 
 
 
1062
  msgid "The plugin is great, but I need specific feature that you don't support"
1063
  msgstr ""
1064
 
1065
+ #: deactivation-form.php:72
 
 
 
 
1066
  msgid "I no longer need the plugin"
1067
  msgstr ""
1068
 
1069
+ #: deactivation-form.php:78
1070
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1071
  msgstr ""
1072
 
1073
+ #: deactivation-form.php:84
1074
  msgid "Other"
1075
  msgstr "Lain"
1076
 
1077
+ #: deactivation-form.php:93
1078
  msgid "Quick Feedback"
1079
  msgstr ""
1080
 
1081
+ #: deactivation-form.php:95
1082
  msgid "If you have a moment, please let us know why you are deactivating"
1083
  msgstr ""
1084
 
1085
+ #: deactivation-form.php:125
1086
+ msgid "Submit and Deactivate"
 
 
 
 
 
 
 
 
1087
  msgstr ""
1088
 
1089
+ #: deactivation-form.php:126
1090
+ msgid "Skip and Deactivate"
1091
  msgstr ""
1092
 
1093
+ #: deactivation-form.php:272
1094
  msgid "Please tell us the reason so we can improve it."
1095
  msgstr ""
1096
 
1097
+ #: deprecated.php:28
 
 
 
 
1098
  msgid "System Status"
1099
  msgstr "Status sistem"
1100
 
1101
+ #: deprecated.php:119
 
 
 
 
1102
  msgid ""
1103
  "If necessary, you can check if the license key is correct or reenter it in "
1104
  "the field below. You can find your license key on your personal page - "
1108
  "kembali ke dalam bidang di bawah. Anda dapat menemukan kunci lisensi Anda "
1109
  "pada halaman pribadi Anda - Area Klien - di website kami"
1110
 
1111
+ #: deprecated.php:119
1112
  msgid ""
1113
  "(your username is the email address specified during the purchase). If "
1114
  "necessary, please submit \"Lost your password?\" request."
1116
  "(Nama pengguna adalah alamat email yang ditentukan selama pembelian). Jika "
1117
  "perlu, silahkan pilih \\ \"Kehilangan kata sandi Anda? \" Permintaan."
1118
 
1119
+ #: deprecated.php:142
1120
  msgid "After that, you can activate it by entering your license key."
1121
  msgstr ""
1122
  "Setelah itu, Anda dapat mengaktifkannya dengan memasukkan kunci lisensi Anda."
1123
 
1124
+ #: deprecated.php:145 deprecated.php:228
1125
  msgid "License key can be found in the"
1126
  msgstr "kunci lisensi dapat ditemukan di"
1127
 
1128
+ #: deprecated.php:147 deprecated.php:230
1129
  msgid "(your username is the email address specified during the purchase)."
1130
  msgstr "(Nama pengguna adalah alamat email yang ditentukan selama pembelian)."
1131
 
1132
+ #: deprecated.php:170
1133
  msgid ""
1134
  "Congratulations! The Pro license of the plugin is activated successfully."
1135
  msgstr "Selamat! Lisensi Pro plugin tersebut berhasil diaktifkan."
1136
 
1137
+ #: deprecated.php:172 deprecated.php:210
1138
  msgid "Please, go to"
1139
  msgstr "Tolong, pergi ke"
1140
 
1141
+ #: deprecated.php:172 deprecated.php:210
1142
  msgid "the setting page"
1143
  msgstr "halaman pengaturan"
1144
 
1145
+ #: deprecated.php:187
 
 
 
 
 
 
 
 
1146
  msgid "Restore all plugin settings to defaults"
1147
  msgstr "Mengembalikan semua pengaturan plugin untuk default"
1148
 
1149
+ #: deprecated.php:189
1150
  msgid "Restore settings"
1151
  msgstr "mengembalikan pengaturan"
1152
 
1153
+ #: deprecated.php:208
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1154
  msgid ""
1155
  "Congratulations! Pro version of the plugin is installed and activated "
1156
  "successfully."
1157
  msgstr "Selamat! Versi Pro plugin diinstal dan diaktifkan berhasil."
1158
 
1159
+ #: deprecated.php:217
1160
  msgid "Show Pro features"
1161
  msgstr "Tampilkan fitur Pro"
1162
 
1163
+ #: deprecated.php:224
1164
  msgid "Enter your license key to install and activate"
1165
  msgstr "Masukkan kunci lisensi Anda untuk menginstal dan mengaktifkan"
1166
 
1167
+ #: deprecated.php:226
1168
  msgid "version of the plugin."
1169
  msgstr "versi plugin."
1170
 
1171
+ #: product_list.php:8
1172
  msgid "Admin Tools"
1173
  msgstr ""
1174
 
1175
+ #: product_list.php:9
1176
  msgid "Content"
1177
  msgstr ""
1178
 
1179
+ #: product_list.php:10
1180
  msgid "eCommerce"
1181
  msgstr ""
1182
 
1183
+ #: product_list.php:11
1184
  msgid "Marketing"
1185
  msgstr ""
1186
 
1187
+ #: product_list.php:12
1188
  msgid "Navigation"
1189
  msgstr ""
1190
 
1191
+ #: product_list.php:13
1192
  msgid "Recommended"
1193
  msgstr "Direkomendasikan"
1194
 
1195
+ #: product_list.php:14
1196
  msgid "Security"
1197
  msgstr "Keamanan"
1198
 
1199
+ #: product_list.php:15
1200
  msgid "SEO"
1201
  msgstr ""
1202
 
1203
+ #: product_list.php:16
1204
  msgid "SMM"
1205
  msgstr ""
1206
 
1207
+ #: product_list.php:23
1208
+ msgid "Give a birth for your bike rental and booking WordPress website."
1209
+ msgstr ""
1210
+
1211
+ #: product_list.php:35
1212
  msgid "Best secure captcha plugin to protect your WordPress forms."
1213
  msgstr ""
1214
 
1215
+ #: product_list.php:45
1216
+ msgid "Create your own rental website for car renting and booking."
1217
  msgstr ""
1218
 
1219
+ #: product_list.php:57
1220
+ msgid ""
1221
+ "Add columns with custom content to WordPress website pages, posts, widgets, "
1222
+ "etc."
1223
+ msgstr ""
1224
+
1225
+ #: product_list.php:64
1226
  msgid ""
1227
  "Allow customers to reach you using secure contact form plugin any website "
1228
  "must have."
1229
  msgstr ""
1230
 
1231
+ #: product_list.php:74
1232
  msgid "Add unlimited number of contact forms to WordPress website."
1233
  msgstr ""
1234
 
1235
+ #: product_list.php:84
1236
  msgid "Save and manage Contact Form messages. Never lose important data."
1237
  msgstr ""
1238
 
1239
+ #: product_list.php:94
1240
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1241
  msgstr ""
1242
 
1243
+ #: product_list.php:104
 
 
 
 
1244
  msgid ""
1245
  "Add custom post types and taxonomies to WordPress website search results."
1246
  msgstr ""
1247
 
1248
+ #: product_list.php:114
1249
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1250
  msgstr ""
1251
 
1252
+ #: product_list.php:121
1253
  msgid ""
1254
  "Get latest error log messages to diagnose website problems. Define and fix "
1255
  "issues faster."
1256
  msgstr ""
1257
 
1258
+ #: product_list.php:128
1259
  msgid ""
1260
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1261
  "widgets."
1262
  msgstr ""
1263
 
1264
+ #: product_list.php:138
1265
  msgid ""
1266
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1267
  "clicks."
1268
  msgstr ""
1269
 
1270
+ #: product_list.php:148
 
 
 
 
 
 
1271
  msgid ""
1272
  "Stronger security solution which protects your WordPress website from hacks "
1273
  "and unauthorized login attempts."
1274
  msgstr ""
1275
 
1276
+ #: product_list.php:158
1277
  msgid ""
1278
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1279
  "results, categories, tags, and widgets."
1280
  msgstr ""
1281
 
1282
+ #: product_list.php:168
1283
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1284
  msgstr ""
1285
 
1286
+ #: product_list.php:178
1287
+ msgid "Protect WordPress website forms from spam entries with reCaptcha."
 
 
1288
  msgstr ""
1289
 
1290
+ #: product_list.php:188
1291
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1292
  msgstr ""
1293
 
1294
+ #: product_list.php:198
1295
  msgid ""
1296
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1297
  "your blog."
1298
  msgstr ""
1299
 
1300
+ #: product_list.php:208
1301
  msgid ""
1302
  "Replace external WordPress website links with Google shortlinks and track "
1303
  "click stats."
1304
  msgstr ""
1305
 
1306
+ #: product_list.php:215
1307
  msgid ""
1308
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1309
  "hostnames, etc."
1310
  msgstr ""
1311
 
1312
+ #: product_list.php:225
1313
  msgid ""
1314
  "Create your personal job board and listing WordPress website. Search jobs, "
1315
  "submit CV/resumes, choose candidates."
1316
  msgstr ""
1317
 
1318
+ #: product_list.php:232
1319
  msgid ""
1320
  "Protect WordPress website against brute force attacks. Limit rate of login "
1321
  "attempts."
1322
  msgstr ""
1323
 
1324
+ #: product_list.php:242
1325
  msgid ""
1326
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1327
  "5 plugins included – profile, insider, etc."
1328
  msgstr ""
1329
 
1330
+ #: product_list.php:252
1331
  msgid ""
1332
  "Translate WordPress website content to other languages manually. Create "
1333
  "multilingual pages, posts, widgets, menus, etc."
1334
  msgstr ""
1335
 
1336
+ #: product_list.php:262
1337
  msgid ""
1338
  "Add customizable pagination to WordPress website. Split long content to "
1339
  "multiple pages for better navigation."
1340
  msgstr ""
1341
 
1342
+ #: product_list.php:272
1343
  msgid ""
1344
  "Generate PDF files and print WordPress posts/pages. Customize document "
1345
  "header/footer styles and appearance."
1346
  msgstr ""
1347
 
1348
+ #: product_list.php:282
1349
  msgid ""
1350
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1351
  "Profile) to WordPress posts, pages and widgets."
1352
  msgstr ""
1353
 
1354
+ #: product_list.php:292
1355
  msgid ""
1356
  "Create your personal portfolio WordPress website. Manage and showcase past "
1357
  "projects to get more clients."
1358
  msgstr ""
1359
 
1360
+ #: product_list.php:302
1361
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1362
  msgstr ""
1363
 
1364
+ #: product_list.php:312
1365
  msgid ""
1366
  "Add extra fields to default WordPress user profile. The easiest way to "
1367
  "create and manage additional custom values."
1368
  msgstr ""
1369
 
1370
+ #: product_list.php:322
1371
  msgid ""
1372
  "Add and display HTML advertisement banner on WordPress website. Customize "
1373
  "bar styles and appearance."
1374
  msgstr ""
1375
 
1376
+ #: product_list.php:332
1377
  msgid ""
1378
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1379
  "widgets."
1380
  msgstr ""
1381
 
1382
+ #: product_list.php:339
1383
  msgid ""
1384
  "Add rating plugin to your WordPress website to receive feedback from your "
1385
  "customers."
1386
  msgstr ""
1387
 
1388
+ #: product_list.php:349
1389
  msgid ""
1390
  "Create your personal real estate WordPress website. Sell, rent and buy "
1391
  "properties. Add, search and browse listings easily."
1392
  msgstr ""
1393
 
1394
+ #: product_list.php:359
1395
  msgid ""
1396
  "Add related, featured, latest, and popular posts to your WordPress website. "
1397
  "Connect your blog readers with a relevant content."
1398
  msgstr ""
1399
 
1400
+ #: product_list.php:366
1401
  msgid ""
1402
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1403
  "settings and detailed reports."
1404
  msgstr ""
1405
 
1406
+ #: product_list.php:376
1407
  msgid ""
1408
  "The best responsive slider plugin for your WordPress website. Create "
1409
  "beautifully animated slides just in a few clicks."
1410
  msgstr ""
1411
 
1412
+ #: product_list.php:383
1413
  msgid ""
1414
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1415
  "Yahoo, Hotmail and other services."
1416
  msgstr ""
1417
 
1418
+ #: product_list.php:390
1419
  msgid ""
1420
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1421
+ "FB, Twitter, Pinterest, LinkedIn."
1422
  msgstr ""
1423
 
1424
+ #: product_list.php:400
1425
  msgid ""
1426
  "Add social media login, registration, and commenting to your WordPress "
1427
  "website."
1428
  msgstr ""
1429
 
1430
+ #: product_list.php:407
1431
  msgid ""
1432
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1433
  "Collect data and subscribe your users."
1434
  msgstr ""
1435
 
1436
+ #: product_list.php:417
1437
  msgid ""
1438
  "Add testimonials and feedbacks from your customers to WordPress website "
1439
  "posts, pages, and widgets."
1440
  msgstr ""
1441
 
1442
+ #: product_list.php:424
1443
  msgid ""
1444
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1445
  "attendance and generate reports."
1446
  msgstr ""
1447
 
1448
+ #: product_list.php:434
1449
  msgid ""
1450
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1451
  "and pages."
1452
  msgstr ""
1453
 
1454
+ #: product_list.php:444
1455
  msgid ""
1456
  "Automatically check and update WordPress website core with all installed "
1457
  "plugins and themes to the latest versions."
1458
  msgstr ""
1459
 
1460
+ #: product_list.php:454
1461
  msgid ""
1462
  "Powerful user role management plugin for WordPress website. Create, edit, "
1463
  "copy, and delete user roles."
1464
  msgstr ""
1465
 
1466
+ #: product_list.php:464
1467
  msgid ""
1468
  "Display live count of online visitors who are currently browsing your "
1469
  "WordPress website."
1470
  msgstr ""
1471
 
1472
+ #: product_list.php:474
1473
  msgid ""
1474
  "Backup and export Zendesk Help Center content automatically to your "
1475
  "WordPress website database."
1476
  msgstr ""
1477
 
1478
+ #~ msgid "Add BWS Plugins Shortcode"
1479
+ #~ msgstr "Tambahkan BWS Plugin pendek"
1480
+
1481
+ #~ msgid "Installing Plugin"
1482
+ #~ msgstr "Instalasi Plugin"
1483
+
1484
+ #~ msgid "Downloading install package from"
1485
+ #~ msgstr "Men-download menginstal paket dari"
1486
+
1487
+ #~ msgid ""
1488
+ #~ "Failed to download the zip archive. Please, upload the plugin manually"
1489
+ #~ msgstr "Gagal mengunduh arsip zip. Silakan, upload plugin secara manual"
1490
+
1491
+ #~ msgid "Unpacking the package"
1492
+ #~ msgstr "Membuka paket"
1493
+
1494
+ #~ msgid "Failed to open the zip archive. Please, upload the plugin manually"
1495
+ #~ msgstr "Gagal membuka arsip zip. Silakan, upload plugin secara manual"
1496
+
1497
+ #~ msgid ""
1498
+ #~ "Your server does not support either ZipArchive or Phar. Please, upload "
1499
+ #~ "the plugin manually"
1500
+ #~ msgstr ""
1501
+ #~ "server Anda tidak mendukung baik ZipArchive atau Phar. Silakan, upload "
1502
+ #~ "plugin secara manual"
1503
+
1504
+ #~ msgid "The plugin %s is successfully installed."
1505
+ #~ msgstr "Plugin %s berhasil diinstal."
1506
+
1507
+ #~ msgid "UploadDir is not writable. Please, upload the plugin manually"
1508
+ #~ msgstr "UploadDir tidak dapat ditulis. Silakan, upload plugin secara manual"
1509
+
1510
+ #~ msgid "Activate Plugin"
1511
+ #~ msgstr "Aktifkan Plugin"
1512
+
1513
+ #~ msgid "Congratulations! Pro license is activated successfully."
1514
+ #~ msgstr "Selamat! lisensi Pro berhasil diaktifkan."
1515
+
1516
+ #~ msgid "Settings page"
1517
+ #~ msgstr "halaman pengaturan"
1518
+
1519
+ #~ msgid "Please, enter your license key"
1520
+ #~ msgstr "Silakan, masukkan kunci lisensi Anda"
1521
+
1522
+ #~ msgid "You will be redirected automatically in 5 seconds."
1523
+ #~ msgstr "Anda akan diarahkan secara otomatis dalam 5 detik."
1524
+
1525
+ #~ msgid "Check premium options on the plugin settings page!"
1526
+ #~ msgstr "Periksa pilihan premium di halaman pengaturan plugin!"
1527
+
1528
+ #~ msgid "File %s edited successfully."
1529
+ #~ msgstr "File %s berhasil diedit."
1530
+
1531
+ #~ msgid "Not enough permissions to create or update the file"
1532
+ #~ msgstr "Tidak cukup izin untuk membuat atau memperbarui file"
1533
+
1534
+ #~ msgid "Not enough permissions to create the file"
1535
+ #~ msgstr "Tidak cukup izin untuk membuat file"
1536
+
1537
+ #~ msgid "Editing"
1538
+ #~ msgstr "editing"
1539
+
1540
  #~ msgid "Congratulations! Pro Membership license is activated successfully."
1541
  #~ msgstr "Selamat! lisensi Keanggotaan Pro berhasil diaktifkan."
1542
 
1606
  #~ msgid "Please, go to %s"
1607
  #~ msgstr "Silakan, pergi ke %s"
1608
 
 
 
 
1609
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
1610
  #~ msgstr ""
1611
  #~ "Jika Anda menikmati plugin kami, silakan memberikan 5 bintang pada "
1705
  #~ msgid "Free plugins"
1706
  #~ msgstr "plugin gratis"
1707
 
 
 
 
1708
  #~ msgid "Install now from wordpress.org"
1709
  #~ msgstr "Instal sekarang dari wordpress.org"
1710
 
1759
  #~ msgid "Send me a copy"
1760
  #~ msgstr "Kirimkan saya salinan"
1761
 
 
 
 
1762
  #~ msgid "Your name is required."
1763
  #~ msgstr "Nama Anda diperlukan."
1764
 
bws_menu/languages/bestwebsoft-nl_NL.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-nl_NL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-09-11 16:43+0300\n"
6
- "PO-Revision-Date: 2017-09-11 16:43+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
9
  "Language: nl_NL\n"
@@ -13,10 +13,10 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.8.7.1\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: bws_functions.php:73 bws_functions.php:191
20
  msgid "requires"
21
  msgstr "benodigd"
22
 
@@ -53,7 +53,7 @@ msgstr "Rate it"
53
  msgid "Need help?"
54
  msgstr "Hulp nodig?"
55
 
56
- #: bws_functions.php:104 bws_functions.php:917 class-bws-settings.php:1058
57
  msgid "Visit Help Center"
58
  msgstr "Bezoek het Helpcentrum"
59
 
@@ -61,7 +61,7 @@ msgstr "Bezoek het Helpcentrum"
61
  msgid "Want to support the plugin?"
62
  msgstr "Geef ondersteuning aan de plug-in?"
63
 
64
- #: bws_functions.php:108 bws_menu.php:560
65
  msgid "Donate"
66
  msgstr "Doneer"
67
 
@@ -77,8 +77,8 @@ msgid ""
77
  "otherwise the Pro plugin will be deactivated."
78
  msgstr ""
79
 
80
- #: bws_functions.php:128 bws_functions.php:341 bws_menu.php:631
81
- #: class-bws-settings.php:144
82
  msgid "Learn More"
83
  msgstr "Leer meer"
84
 
@@ -98,7 +98,7 @@ msgstr ""
98
  "Uw licentie is verlopen. Om voort te gaan met ondersteuning voor top-"
99
  "prioriteit en plugin-updates, moet u het uitbreiden."
100
 
101
- #: bws_functions.php:147 bws_functions.php:389 deprecated.php:586
102
  msgid "Learn more"
103
  msgstr "Leer meer"
104
 
@@ -115,7 +115,38 @@ msgstr "Opmerking: U gebruikt de Pro Trial licentie van de plugin."
115
  msgid "The Pro Trial license will expire on"
116
  msgstr "De Pro Trial licentie vervalt op"
117
 
118
- #: bws_functions.php:193
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
119
  msgid ""
120
  "or higher! We do not guarantee that our plugin will work correctly. Please "
121
  "upgrade to WordPress latest version."
@@ -123,89 +154,58 @@ msgstr ""
123
  "of hoger! Wij garanderen niet dat onze plugin correct blijft werken. Upgrade "
124
  "nu naar de nieuwste versie van WordPress."
125
 
126
- #: bws_functions.php:208
127
  #, php-format
128
  msgid "Thank you for installing %s plugin!"
129
  msgstr "Dank u voor het installeren van %s plugin!"
130
 
131
- #: bws_functions.php:210
132
  msgid "Let's get started"
133
  msgstr "Laten we aan de slag gaan"
134
 
135
- #: bws_functions.php:211 bws_functions.php:244 bws_menu.php:564
136
- #: bws_menu.php:566
137
  msgid "Settings"
138
  msgstr "Settings"
139
 
140
- #: bws_functions.php:213 bws_menu.php:326 class-bws-settings.php:747
141
- #: class-bws-settings.php:1060 class-bws-settings.php:1070 deprecated.php:697
142
  msgid "or"
143
  msgstr "of"
144
 
145
- #: bws_functions.php:214 bws_functions.php:246
146
  msgid "Add New"
147
  msgstr "Nieuwe toevoegen"
148
 
149
- #: bws_functions.php:218 bws_functions.php:228 bws_functions.php:332
150
- #: bws_functions.php:385 bws_functions.php:487
151
- msgid "Close notice"
152
- msgstr "Opmerking sluiten"
153
-
154
- #: bws_functions.php:233
155
  msgid "Thank you for installing plugins by BestWebSoft!"
156
  msgstr "Dank u voor het installeren van een plugin van BestWebSoft!"
157
 
158
- #: bws_functions.php:235
159
  msgid "More Details"
160
  msgstr "Meer details"
161
 
162
- #: bws_functions.php:236
163
  msgid "Less Details"
164
  msgstr "Minder details"
165
 
166
- #: bws_functions.php:264
167
  msgid "Deprecated function(-s) is used on the site here:"
168
  msgstr "Deprecated functie(-s) word hier op de site gebruikt:"
169
 
170
- #: bws_functions.php:278
171
  msgid ""
172
  "This function(-s) will be removed over time. Please update the product(-s)."
173
  msgstr ""
174
  "Deze function(-s) zal mettertijd worden verwijderd. Update het product of "
175
  "producten."
176
 
177
- #: bws_functions.php:337
178
- msgid "It’s time to upgrade your"
179
- msgstr "Het is tijd om te upgraden, "
180
-
181
- #: bws_functions.php:337
182
- msgid "to"
183
- msgstr "aan"
184
-
185
- #: bws_functions.php:337
186
- msgid "version!"
187
- msgstr "versie!"
188
-
189
- #: bws_functions.php:338
190
- msgid "Extend standard plugin functionality with new great options."
191
- msgstr ""
192
- "Verleng de standaard plugin functionaliteit met nieuwe geweldige opties."
193
-
194
- #: bws_functions.php:389
195
- #, php-format
196
- msgid ""
197
- "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
198
- "SUPPORT or UPDATES."
199
- msgstr ""
200
- "Uw licentiesleutel voor %s verloopt uit op %s en u krijgt geen TOP-"
201
- "PRIORITEIT SUPPORT of UPDATES."
202
-
203
- #: bws_functions.php:482
204
  #, php-format
205
  msgid "Thank you for choosing %s plugin!"
206
  msgstr "Bedankt voor het kiezen van %s plugin!"
207
 
208
- #: bws_functions.php:483
209
  msgid ""
210
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
211
  "we'd love to hear about it!"
@@ -213,25 +213,24 @@ msgstr ""
213
  "Als u een feature, suggestie of idee hebt dat u graag wilt zien in de "
214
  "plugin, zouden we het graag willen horen!"
215
 
216
- #: bws_functions.php:484
217
  msgid "Suggest a Feature"
218
  msgstr "Deel een idee"
219
 
220
- #: bws_functions.php:500 class-bws-settings.php:540 class-bws-settings.php:543
221
- #: class-bws-settings.php:595 class-bws-settings.php:598
222
  msgid "Notice"
223
  msgstr "Opmerking"
224
 
225
- #: bws_functions.php:500
226
  msgid "The plugin's settings have been changed."
227
  msgstr "De instellingen van de plugin zijn gewijzigd."
228
 
229
- #: bws_functions.php:501 class-bws-settings.php:183 class-bws-settings.php:203
230
- #: deprecated.php:642
231
  msgid "Save Changes"
232
  msgstr "Bewerkingen opslaan"
233
 
234
- #: bws_functions.php:515
235
  msgid ""
236
  "You can always look at premium options by checking the \"Pro Options\" in "
237
  "the \"Misc\" tab."
@@ -239,77 +238,68 @@ msgstr ""
239
  "U kunt altijd premium opties bekijken door de \"Pro Options\" in het tabblad "
240
  "\"Misc\" te controleren."
241
 
242
- #: bws_functions.php:653
243
- msgid "Add BWS Shortcode"
244
- msgstr ""
245
-
246
- #: bws_functions.php:654
247
- msgid "Add BWS Plugins Shortcode"
248
- msgstr ""
249
-
250
- #: bws_functions.php:673
251
  msgid "Add shortcode"
252
  msgstr "Shortcode toevoegen"
253
 
254
- #: bws_functions.php:673
255
  msgid "Add BestWebSoft plugins' shortcodes using this button."
256
  msgstr "Voeg BestWebSoft plugins shortcodes toe aan deze knop."
257
 
258
- #: bws_functions.php:729
259
  msgid "Close"
260
  msgstr "Sluiten"
261
 
262
- #: bws_functions.php:821
263
  msgid "Are you sure you want to restore default settings?"
264
  msgstr "Weet u zeker dat u de standaardinstellingen wilt herstellen?"
265
 
266
- #: bws_functions.php:824
267
  msgid "Yes, restore all settings"
268
  msgstr "Ja, herstel alle instellingen"
269
 
270
- #: bws_functions.php:825
271
  msgid "No, go back to the settings page"
272
  msgstr "Nee, ga terug naar de instellingen"
273
 
274
- #: bws_functions.php:867
275
  msgid "Plugin"
276
  msgstr "Plugin"
277
 
278
- #: bws_functions.php:876
279
  msgid "Shortcode settings"
280
  msgstr "Shortcode instellingen"
281
 
282
- #: bws_functions.php:881
283
  msgid "The shortcode will be inserted"
284
  msgstr "De shortcode wordt ingevoegd"
285
 
286
- #: bws_functions.php:922
287
  msgid "FAQ"
288
  msgstr "FAQ"
289
 
290
- #: bws_functions.php:928
291
  msgid "For more information:"
292
  msgstr "Voor meer informatie:"
293
 
294
- #: bws_functions.php:929
295
  msgid "Documentation"
296
  msgstr "Documentatie"
297
 
298
- #: bws_functions.php:930
299
  msgid "Video Instructions"
300
  msgstr "Video Instructies"
301
 
302
- #: bws_functions.php:931
303
  msgid "Submit a Request"
304
  msgstr "Verzend een verzoek"
305
 
306
- #: bws_menu.php:101 class-bws-settings.php:792 deprecated.php:323
307
  msgid "Wrong license key"
308
  msgstr "Incorrecte licentiesleutel"
309
 
310
- #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
311
- #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
312
- #: deprecated.php:353
313
  msgid ""
314
  "Something went wrong. Please try again later. If the error appears again, "
315
  "please contact us"
@@ -317,18 +307,16 @@ msgstr ""
317
  "Er is iets fout gegaan. Probeer het later nogmaals. Als de fout zich blijft "
318
  "voordoen, neem dan contact met ons op"
319
 
320
- #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
321
- #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
322
- #: deprecated.php:353
323
  msgid "We are sorry for inconvenience."
324
  msgstr "Het spijt ons voor het ongemak."
325
 
326
- #: bws_menu.php:128 class-bws-settings.php:824 class-bws-settings.php:927
327
- #: deprecated.php:139 deprecated.php:359
328
  msgid "Wrong license key."
329
  msgstr "Verkeerde licentiesleutel."
330
 
331
- #: bws_menu.php:130
332
  msgid ""
333
  "This license key is bound to another site. Change it via personal Client "
334
  "Area."
@@ -336,15 +324,15 @@ msgstr ""
336
  "Deze licentiesleutel is gebonden aan een andere website. Verander het via je "
337
  "persoonlijke beheeromgeving."
338
 
339
- #: bws_menu.php:130
340
  msgid "Log in"
341
  msgstr "Log in"
342
 
343
- #: bws_menu.php:132 bws_menu.php:332 deprecated.php:261
344
  msgid "Unfortunately, you have exceeded the number of available tries per day."
345
  msgstr "Helaas heb je het aantal beschikbare pogingen per dag overschreden."
346
 
347
- #: bws_menu.php:134 deprecated.php:365
348
  #, php-format
349
  msgid ""
350
  "Unfortunately, Your license has expired. To continue getting top-priority "
@@ -353,7 +341,7 @@ msgstr ""
353
  "Helaas is uw licentie verlopen. Om voort te gaan met ondersteuning voor top-"
354
  "prioriteit en plugin-updates, moet u deze uitbreiden in uw %s"
355
 
356
- #: bws_menu.php:136 class-bws-settings.php:935 deprecated.php:367
357
  msgid ""
358
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
359
  "Trial license can be installed only once."
@@ -361,19 +349,19 @@ msgstr ""
361
  "Helaas is de Pro licentie al geïnstalleerd op dit domein. De Pro Trial "
362
  "licentie kan slechts één keer geïnstalleerd worden."
363
 
364
- #: bws_menu.php:142 class-bws-settings.php:839 deprecated.php:153
365
  msgid "The license key is valid."
366
  msgstr "De licentiesleutel is geldig."
367
 
368
- #: bws_menu.php:144 class-bws-settings.php:842 deprecated.php:156
369
  msgid "Your license will expire on"
370
  msgstr "Uw licentie vervalt op"
371
 
372
- #: bws_menu.php:146
373
  msgid "Congratulations! Pro Membership license is activated successfully."
374
  msgstr ""
375
 
376
- #: bws_menu.php:153 class-bws-settings.php:1007 deprecated.php:436
377
  msgid ""
378
  "Something went wrong. Try again later or upload the plugin manually. We are "
379
  "sorry for inconvenience."
@@ -381,214 +369,216 @@ msgstr ""
381
  "Er is iets fout gegaan. Probeer het later opnieuw of upload de plugin "
382
  "handmatig. Het spijt ons voor ongemak."
383
 
384
- #: bws_menu.php:163
385
  msgid "Please enter your license key."
386
  msgstr "Vul alstublieft uw licentiesleutel in."
387
 
388
- #: bws_menu.php:174
389
  msgid "Not set"
390
  msgstr "Niet ingesteld"
391
 
392
- #: bws_menu.php:176
393
  msgid "On"
394
  msgstr "Aan"
395
 
396
- #: bws_menu.php:176
397
  msgid "Off"
398
  msgstr "Uit"
399
 
400
- #: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
401
- #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
402
  msgid "N/A"
403
  msgstr "N/A"
404
 
405
- #: bws_menu.php:182
406
- msgid " Mb"
 
 
407
  msgstr "Mb"
408
 
409
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
410
  msgid "Yes"
411
  msgstr "Ja"
412
 
413
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
414
  msgid "No"
415
  msgstr "Nee"
416
 
417
- #: bws_menu.php:196
418
  msgid "WordPress Environment"
419
  msgstr "WordPress Omgeving"
420
 
421
- #: bws_menu.php:198
422
  msgid "Home URL"
423
  msgstr "Home URL"
424
 
425
- #: bws_menu.php:199
426
  msgid "Website URL"
427
  msgstr "Website URL"
428
 
429
- #: bws_menu.php:200
430
  msgid "WP Version"
431
  msgstr "WP Versiie"
432
 
433
- #: bws_menu.php:201
434
  msgid "WP Multisite"
435
  msgstr "WP Multisite"
436
 
437
- #: bws_menu.php:202
438
  msgid "WP Memory Limit"
439
  msgstr "WP Memory Limit"
440
 
441
- #: bws_menu.php:203
442
  msgid "Active Theme"
443
  msgstr "Activeer Thema"
444
 
445
- #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
446
  #, php-format
447
  msgid "by %s"
448
  msgstr "by %s"
449
 
450
- #: bws_menu.php:207
451
  msgid "Server Environment"
452
  msgstr "Server Omgeving"
453
 
454
- #: bws_menu.php:209
455
  msgid "Operating System"
456
  msgstr "Besturingssysteem"
457
 
458
- #: bws_menu.php:210
459
  msgid "Server"
460
  msgstr "Server"
461
 
462
- #: bws_menu.php:211
463
  msgid "PHP Version"
464
  msgstr "PHP Versiie"
465
 
466
- #: bws_menu.php:212
467
  msgid "PHP Allow URL fopen"
468
  msgstr "PHP Allow URL fopen"
469
 
470
- #: bws_menu.php:213
471
  msgid "PHP Memory Limit"
472
  msgstr "PHP Memory Limit"
473
 
474
- #: bws_menu.php:214
475
  msgid "Memory Usage"
476
  msgstr "Memory Usage"
477
 
478
- #: bws_menu.php:215
479
  msgid "PHP Max Upload Size"
480
  msgstr "PHP Max Upload Size"
481
 
482
- #: bws_menu.php:216
483
  msgid "PHP Max Post Size"
484
  msgstr "PHP Max Post Size"
485
 
486
- #: bws_menu.php:217
487
  msgid "PHP Max Script Execute Time"
488
  msgstr "PHP Max Script Execute Time"
489
 
490
- #: bws_menu.php:218
491
  msgid "PHP Exif support"
492
  msgstr "PHP Exif support"
493
 
494
- #: bws_menu.php:219
495
  msgid "PHP IPTC support"
496
  msgstr "PHP IPTC support"
497
 
498
- #: bws_menu.php:220
499
  msgid "PHP XML support"
500
  msgstr "PHP XML support"
501
 
502
- #: bws_menu.php:226
503
  msgid "Database"
504
  msgstr "Database"
505
 
506
- #: bws_menu.php:228
507
  msgid "WP DB version"
508
  msgstr "WP DB version"
509
 
510
- #: bws_menu.php:229
511
  msgid "MySQL version"
512
  msgstr "MySQL version"
513
 
514
- #: bws_menu.php:230
515
  msgid "SQL Mode"
516
  msgstr "SQL Mode"
517
 
518
- #: bws_menu.php:234
519
  msgid "Active Plugins"
520
  msgstr "Active Plugins"
521
 
522
- #: bws_menu.php:239
523
  msgid "Inactive Plugins"
524
  msgstr "Inactive Plugins"
525
 
526
- #: bws_menu.php:260
527
  msgid "Please enter a valid email address."
528
  msgstr "Gelieve een geldig e-mailadres in te geven."
529
 
530
- #: bws_menu.php:262
531
  #, php-format
532
  msgid "Email with system info is sent to %s."
533
  msgstr ""
534
 
535
- #: bws_menu.php:266
536
  msgid "Thank you for contacting us."
537
  msgstr "Bedankt voor het contact met ons opnemen."
538
 
539
- #: bws_menu.php:289
540
  msgid "Sorry, email message could not be delivered."
541
  msgstr "Sorry, e-mailbericht kon niet worden geleverd."
542
 
543
- #: bws_menu.php:305 bws_menu.php:309 bws_menu.php:358 deprecated.php:91
544
  msgid "Plugins"
545
  msgstr "Plugins"
546
 
547
- #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:618 deprecated.php:92
548
  msgid "Themes"
549
  msgstr "Thema's"
550
 
551
- #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:648
552
  msgid "System status"
553
  msgstr "Systeem status"
554
 
555
- #: bws_menu.php:315
556
  msgid "Support"
557
  msgstr "Support"
558
 
559
- #: bws_menu.php:316
560
  msgid "Manage purchased licenses & subscriptions"
561
  msgstr "Beheerde licenties en abonnementen beheren"
562
 
563
- #: bws_menu.php:324
564
  #, php-format
565
  msgid "Get Access to %s+ Premium Plugins"
566
  msgstr "Krijg toegang tot %s+ Premium plugins"
567
 
568
- #: bws_menu.php:326
569
  msgid "Subscribe to Pro Membership"
570
  msgstr "Abonneer je op de Pro Membership"
571
 
572
- #: bws_menu.php:334 bws_menu.php:345 class-bws-settings.php:760
573
- #: deprecated.php:227
574
  msgid "Check license key"
575
  msgstr "Controleer de licentiesleutel"
576
 
577
- #: bws_menu.php:337
578
  msgid "Enter your license key"
579
  msgstr "Vul uw licentiesleutel in"
580
 
581
- #: bws_menu.php:343 bws_menu.php:570 bws_menu.php:579
582
- #: class-bws-settings.php:739 deprecated.php:259 deprecated.php:267
583
- #: deprecated.php:631 deprecated.php:703 deprecated.php:712
584
  msgid "Activate"
585
  msgstr "Activateer"
586
 
587
- #: bws_menu.php:359
588
  msgid "Upload Plugin"
589
  msgstr "Upload Plugin"
590
 
591
- #: bws_menu.php:363
592
  #, php-format
593
  msgid ""
594
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -601,7 +591,7 @@ msgstr ""
601
  "met syndicationfeeds of andere problemen zijn; probeer deze plugin uit te "
602
  "schakelen of te verwijderen."
603
 
604
- #: bws_menu.php:365
605
  msgid ""
606
  "Plugin could not be activated because it triggered a <strong>fatal error</"
607
  "strong>."
@@ -609,201 +599,202 @@ msgstr ""
609
  "Plugin kan niet geactiveerd worden omdat het er <strong>fatal error</strong> "
610
  "zich voordoet."
611
 
612
- #: bws_menu.php:368
613
  msgid "Plugin <strong>activated</strong>."
614
  msgstr "Plugin <strong>geactiveerd</strong>."
615
 
616
- #: bws_menu.php:375
617
- msgid "Installing Plugin"
618
- msgstr "Installatie Plugin bezig"
 
 
619
 
620
- #: bws_menu.php:381
621
- msgid "Downloading install package from"
622
- msgstr "Installatiepakket downloaden vanaf"
623
 
624
- #: bws_menu.php:398 bws_menu.php:429 bws_menu.php:440 deprecated.php:388
625
- #: deprecated.php:410 deprecated.php:432
626
- msgid "Failed to download the zip archive. Please, upload the plugin manually"
627
  msgstr ""
628
- "Het ziparchief kon niet worden geladen. Gelieve de plugin handmatig te "
629
- "uploaden"
630
 
631
- #: bws_menu.php:406
632
- msgid "Unpacking the package"
633
- msgstr "Uitpakken van het pakket"
634
 
635
- #: bws_menu.php:411 bws_menu.php:419
636
- msgid "Installing the plugin"
 
 
637
  msgstr "De plugin installeren"
638
 
639
- #: bws_menu.php:415 deprecated.php:400
640
- msgid "Failed to open the zip archive. Please, upload the plugin manually"
641
  msgstr ""
642
- "Kan het zip-bestand niet openen. Gelieve de plugin handmatig te uploaden"
643
 
644
- #: bws_menu.php:422 deprecated.php:406
645
- msgid ""
646
- "Your server does not support either ZipArchive or Phar. Please, upload the "
647
- "plugin manually"
648
- msgstr ""
649
- "Uw server ondersteunt geen ZipArchive of Phar. Gelieve de plugin handmatig "
650
- "te uploaden"
651
 
652
- #: bws_menu.php:425
653
- #, php-format
654
- msgid "The plugin %s is successfully installed."
655
- msgstr "De plugin %s is succesvol geïnstalleerd."
656
 
657
- #: bws_menu.php:432 deprecated.php:413
658
- msgid "UploadDir is not writable. Please, upload the plugin manually"
659
  msgstr ""
660
- "UploadDir is kan niet worden weggeschreven. Gelieve de plugin handmatig te "
661
- "uploaden"
662
 
663
- #: bws_menu.php:437
664
- msgid "Activate Plugin"
665
- msgstr "Activateer Plugin"
 
 
666
 
667
- #: bws_menu.php:437 bws_menu.php:443
668
  msgid "Return to BestWebSoft Panel"
669
  msgstr "Terug naar het BestWebSoft Paneel"
670
 
671
- #: bws_menu.php:451 bws_menu.php:471 bws_menu.php:600
672
  msgid "All"
673
  msgstr "Alle"
674
 
675
- #: bws_menu.php:454 bws_menu.php:637
676
  msgid "Installed"
677
  msgstr "Geinstalleerd"
678
 
679
- #: bws_menu.php:457
680
  msgid "Not Installed"
681
  msgstr "Niet geinstalleerd"
682
 
683
- #: bws_menu.php:464
684
  msgid "Filter results"
685
  msgstr "Filter resultaten"
686
 
687
- #: bws_menu.php:467 bws_menu.php:596
688
  msgid "Category"
689
  msgstr "Categorieen"
690
 
691
- #: bws_menu.php:531
692
  msgid "Not installed"
693
  msgstr "Niet geinstalleerd"
694
 
695
- #: bws_menu.php:535
696
  msgid "Renew to get updates"
697
  msgstr "Vernieuw om updates te verkrijgen"
698
 
699
- #: bws_menu.php:538
700
  #, php-format
701
  msgid "Update to v %s"
702
  msgstr "Update naar v %s"
703
 
704
- #: bws_menu.php:550 bws_menu.php:573 bws_menu.php:582
705
- msgid "Install Now"
706
- msgstr "Installeer nu"
707
 
708
- #: bws_menu.php:556 class-bws-settings.php:157 class-bws-settings.php:1067
709
  msgid "Upgrade to Pro"
710
  msgstr "Upgrade naar Pro"
711
 
712
- #: bws_menu.php:570 bws_menu.php:579
713
  msgid "Activate this plugin"
714
  msgstr "Activateer deze plugin"
715
 
716
- #: bws_menu.php:582
717
  msgid "Install this plugin"
718
  msgstr "Installeer deze plugin"
719
 
720
- #: bws_menu.php:591
 
 
 
 
721
  msgid "Nothing found. Try another criteria."
722
  msgstr "Niks gevonden. Probeer een ander criteria."
723
 
724
- #: bws_menu.php:628
725
  #, php-format
726
  msgid "By %s"
727
  msgstr "By %s"
728
 
729
- #: bws_menu.php:635
730
  msgid "Already Installed"
731
  msgstr "Reeds geinstalleerd"
732
 
733
- #: bws_menu.php:645
734
  msgid "Browse More WordPress Themes"
735
  msgstr ""
736
 
737
- #: bws_menu.php:654
738
  msgid "Send to support"
739
  msgstr "Stuur uw vraag"
740
 
741
- #: bws_menu.php:661
742
  msgid "Send to custom email &#187;"
743
  msgstr "Verzend naar aangepaste e-mail &#187;"
744
 
745
- #: class-bws-settings.php:136
746
  msgid "Information"
747
  msgstr "Informatie"
748
 
749
- #: class-bws-settings.php:144
750
  msgid "Inactive"
751
  msgstr "Inactief"
752
 
753
- #: class-bws-settings.php:152
754
  msgid "Expired"
755
  msgstr "Verlopen"
756
 
757
- #: class-bws-settings.php:155
758
  #, php-format
759
  msgid "%s day(-s) left"
760
  msgstr "%s dag(-en) over"
761
 
762
- #: class-bws-settings.php:161
763
  #, php-format
764
  msgid "Expired on %s"
765
  msgstr "Verlopen op %s"
766
 
767
- #: class-bws-settings.php:161
768
  msgid "Renew Now"
769
  msgstr "Vernieuw nu"
770
 
771
- #: class-bws-settings.php:163
772
  msgid "Active"
773
  msgstr "Actief"
774
 
775
- #: class-bws-settings.php:168
776
  msgid "License"
777
  msgstr "Licentie"
778
 
779
- #: class-bws-settings.php:171
780
  msgid "Status"
781
  msgstr "Status"
782
 
783
- #: class-bws-settings.php:175
784
  msgid "Version"
785
  msgstr "Versiie"
786
 
787
- #: class-bws-settings.php:285
788
  msgid "All plugin settings were restored."
789
  msgstr "Alle plugin-instellingen zijn hersteld."
790
 
791
- #: class-bws-settings.php:423
792
  msgid "Custom Code"
793
  msgstr "Maatwerk Code"
794
 
795
- #: class-bws-settings.php:427 deprecated.php:498
796
  msgid "You do not have sufficient permissions to edit plugins for this site."
797
  msgstr ""
798
  "U heeft niet voldoende permissies om plugins voor deze website te bewerken."
799
 
800
- #: class-bws-settings.php:432 deprecated.php:620
801
  msgid "These styles will be added to the header on all pages of your site."
802
  msgstr ""
803
  "Deze stijlen worden toegevoegd aan de koptekst op alle pagina's van uw "
804
  "website."
805
 
806
- #: class-bws-settings.php:435 deprecated.php:622
807
  #, php-format
808
  msgid ""
809
  "This PHP code will be hooked to the %s action and will be printed on front "
@@ -812,12 +803,12 @@ msgstr ""
812
  "Deze PHP-code wordt aangesloten op de %s actie en zal alleen op de website "
813
  "worden getoond."
814
 
815
- #: class-bws-settings.php:438
816
  msgid "These code will be added to the header on all pages of your site."
817
  msgstr ""
818
  "Deze code wordt toegevoegd aan de koptekst op alle pagina's van uw website."
819
 
820
- #: class-bws-settings.php:446 deprecated.php:646
821
  #, php-format
822
  msgid ""
823
  "You need to make this files writable before you can save your changes. See "
@@ -826,25 +817,25 @@ msgstr ""
826
  "U moet deze bestanden schrijfrechten geven voordat u de wijzigingen kunt "
827
  "opslaan. Zie %s de Codex %s voor meer informatie."
828
 
829
- #: class-bws-settings.php:456 deprecated.php:628
830
  msgid "Browsing"
831
  msgstr "Browsing"
832
 
833
- #: class-bws-settings.php:461
834
  #, php-format
835
  msgid "Activate custom %s code."
836
  msgstr "Activateer maatwerk %s code."
837
 
838
- #: class-bws-settings.php:469 deprecated.php:635
839
  #, php-format
840
  msgid "Learn more about %s"
841
  msgstr "Leer meer over %s"
842
 
843
- #: class-bws-settings.php:531
844
  msgid "Miscellaneous Settings"
845
  msgstr "Diversen instellingen"
846
 
847
- #: class-bws-settings.php:540 class-bws-settings.php:595
848
  #, php-format
849
  msgid ""
850
  "It is prohibited to change %s settings on this site in the %s network "
@@ -853,7 +844,7 @@ msgstr ""
853
  "Het is verboden om %s instellingen op deze website te wijzigen in de %s "
854
  "netwerkinstellingen."
855
 
856
- #: class-bws-settings.php:543 class-bws-settings.php:598
857
  #, php-format
858
  msgid ""
859
  "It is prohibited to view %s settings on this site in the %s network settings."
@@ -861,69 +852,54 @@ msgstr ""
861
  "Het is verboden om %s instellingen op deze website te bekijken in de %s "
862
  "netwerkinstellingen."
863
 
864
- #: class-bws-settings.php:552
865
  msgid "Pro Options"
866
  msgstr "Pro Opties"
867
 
868
- #: class-bws-settings.php:556
869
  msgid "Enable to display plugin Pro options."
870
  msgstr "Schakel in om plugin Pro opties te zien."
871
 
872
- #: class-bws-settings.php:562
873
  msgid "Track Usage"
874
  msgstr "Track gebruik"
875
 
876
- #: class-bws-settings.php:566
877
  msgid ""
878
  "Enable to allow tracking plugin usage anonymously in order to make it better."
879
  msgstr ""
880
  "Activeer het gebruik van anonieme tracking van de bijbehorende plug-in, om "
881
  "het product beter te maken."
882
 
883
- #: class-bws-settings.php:571
884
  msgid "Default Settings"
885
  msgstr "Standaard instellingen"
886
 
887
- #: class-bws-settings.php:573
888
  msgid "Restore Settings"
889
  msgstr "Instellingen herstellen"
890
 
891
- #: class-bws-settings.php:574
892
  msgid "This will restore plugin settings to defaults."
893
  msgstr ""
894
  "Dit zal de plugininstellingen herstellen naar de standaardinstellingen."
895
 
896
- #: class-bws-settings.php:586
897
  msgid "Import / Export"
898
  msgstr "Import / Export"
899
 
900
- #: class-bws-settings.php:702 class-bws-settings.php:735
901
- #: class-bws-settings.php:757
902
  msgid "License Key"
903
  msgstr "Licentiesleutel"
904
 
905
- #: class-bws-settings.php:725
906
- msgid "Congratulations! Pro license is activated successfully."
907
- msgstr "Hartelijk gefeliciteerd! De Pro licentie is succesvol geactiveerd."
908
-
909
- #: class-bws-settings.php:726
910
- #, php-format
911
- msgid "You will be automatically redirected to the %s in %s seconds."
912
- msgstr "U wordt automatisch doorgestuurd naar %s in %s seconden."
913
-
914
- #: class-bws-settings.php:726
915
- msgid "Settings page"
916
- msgstr "Instellingen"
917
-
918
- #: class-bws-settings.php:741
919
  #, php-format
920
  msgid "Enter your license key to activate %s and get premium plugin features."
921
  msgstr ""
922
  "Voer uw licentiesleutel in om %s te activeren en premium-pluginfuncties te "
923
  "krijgen."
924
 
925
- #: class-bws-settings.php:744 class-bws-settings.php:931 deprecated.php:363
926
- #: deprecated.php:706
927
  msgid ""
928
  "Unfortunately, you have exceeded the number of available tries per day. "
929
  "Please, upload the plugin manually."
@@ -931,12 +907,12 @@ msgstr ""
931
  "Helaas heeft u het aantal beschikbare pogingen per dag overschreden. Gelieve "
932
  "de plugin handmatig te uploaden."
933
 
934
- #: class-bws-settings.php:747 deprecated.php:697
935
  #, php-format
936
  msgid "Start Your Free %s-Day Trial Now"
937
  msgstr "Start nu uw gratis %s dag trial"
938
 
939
- #: class-bws-settings.php:762
940
  msgid ""
941
  "If necessary, you can check if the license key is correct or reenter it in "
942
  "the field below."
@@ -944,15 +920,15 @@ msgstr ""
944
  "Indien nodig kunt u controleren of de licentiesleutel juist is of u voert "
945
  "het opnieuw in het onderstaande veld."
946
 
947
- #: class-bws-settings.php:767
948
  msgid "Manage License Settings"
949
  msgstr "Beheer licentie instellingen"
950
 
951
- #: class-bws-settings.php:769
952
  msgid "Login to Client Area"
953
  msgstr "Inloggen op client gebied"
954
 
955
- #: class-bws-settings.php:771
956
  msgid ""
957
  "Manage active licenses, download BWS products, and view your payment history "
958
  "using BestWebSoft Client Area."
@@ -960,12 +936,11 @@ msgstr ""
960
  "Beheer actieve licenties, download BWS-producten en bekijk uw de "
961
  "betalingsgeschiedenis met behulp van de BestWebSoft Klanten Omgeving."
962
 
963
- #: class-bws-settings.php:826 class-bws-settings.php:929 deprecated.php:141
964
- #: deprecated.php:361
965
  msgid "This license key is bound to another site."
966
  msgstr "Deze licentiesleutel is gebonden aan een andere website."
967
 
968
- #: class-bws-settings.php:828 deprecated.php:143
969
  msgid ""
970
  "This license key is valid, but Your license has expired. If you want to "
971
  "update our plugin in future, you should extend the license."
@@ -973,11 +948,11 @@ msgstr ""
973
  "Deze licentiesleutel is geldig, maar uw licentie is verlopen. Als u onze "
974
  "plugin in de toekomst wilt bijwerken, moet u de licentie verlengen."
975
 
976
- #: class-bws-settings.php:830 deprecated.php:145
977
  msgid "Unfortunately, you have exceeded the number of available tries."
978
  msgstr "Helaas heeft u het aantal beschikbare pogingen overschreden."
979
 
980
- #: class-bws-settings.php:832 deprecated.php:147
981
  msgid ""
982
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
983
  "The Pro Trial license can be installed only once."
@@ -985,168 +960,152 @@ msgstr ""
985
  "Helaas, de Pro Trial licentie was al geïnstalleerd op dit domein. De Pro "
986
  "Trial License kan helaas maar eenmalig gebruikt worden."
987
 
988
- #: class-bws-settings.php:837 deprecated.php:151
989
  msgid "The Pro Trial license key is valid."
990
  msgstr "De Pro Trial licentiesleutel is geldig."
991
 
992
- #: class-bws-settings.php:845 deprecated.php:159 deprecated.php:246
993
  #, php-format
994
  msgid ""
995
  "In order to continue using the plugin it is necessary to buy a %s license."
996
  msgstr ""
997
  "Om door te gaan met de plugin is het nodig om een %s licentie te kopen."
998
 
999
- #: class-bws-settings.php:933
1000
  #, php-format
1001
  msgid ""
1002
  "Unfortunately, Your license has expired. To continue getting top-priority "
1003
  "support and plugin updates, you should extend it in your %s."
1004
  msgstr ""
1005
 
1006
- #: class-bws-settings.php:959 class-bws-settings.php:981
1007
- #: class-bws-settings.php:1003
1008
- msgid "Failed to download the zip archive. Please, upload the plugin manually."
1009
- msgstr ""
1010
-
1011
- #: class-bws-settings.php:971
1012
- msgid "Failed to open the zip archive. Please, upload the plugin manually."
1013
- msgstr ""
1014
-
1015
- #: class-bws-settings.php:977
1016
- msgid ""
1017
- "Your server does not support either ZipArchive or Phar. Please, upload the "
1018
- "plugin manually."
1019
- msgstr ""
1020
-
1021
- #: class-bws-settings.php:984
1022
- msgid "UploadDir is not writable. Please, upload the plugin manually."
1023
- msgstr ""
1024
-
1025
- #: class-bws-settings.php:1042 deprecated.php:464
1026
  msgid "Please, enter Your license key"
1027
  msgstr "Vul alstublieft uw licentiesleutel in"
1028
 
1029
- #: class-bws-settings.php:1054
1030
  msgid "Need Help?"
1031
  msgstr "Hulp nodig?"
1032
 
1033
- #: class-bws-settings.php:1056
1034
  msgid "Read the Instruction"
1035
  msgstr "Lees de instructie"
1036
 
1037
- #: class-bws-settings.php:1060
1038
  msgid "Watch the Video"
1039
  msgstr "Bekijk de Video"
1040
 
1041
- #: class-bws-settings.php:1071
1042
  msgid "Start Your Free Trial"
1043
  msgstr "Begin uw gratis proefperiode"
1044
 
1045
- #: deactivation-form.php:27
1046
- msgid "Need help? We are ready to answer your questions."
 
 
 
 
 
 
 
1047
  msgstr ""
1048
 
1049
- #: deactivation-form.php:27
1050
- msgid "Contact Support"
1051
  msgstr ""
1052
 
1053
- #: deactivation-form.php:32
1054
- msgid "The plugin is not working"
1055
  msgstr ""
1056
 
1057
- #: deactivation-form.php:34
1058
- msgid "Kindly share what didn't work so we can fix it in future updates..."
1059
  msgstr ""
1060
 
1061
- #: deactivation-form.php:38
1062
- msgid "The plugin didn't work as expected"
 
 
 
 
1063
  msgstr ""
1064
 
1065
- #: deactivation-form.php:40
1066
- msgid "What did you expect?"
1067
  msgstr ""
1068
 
1069
- #: deactivation-form.php:44
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1070
  msgid "The plugin suddenly stopped working"
1071
  msgstr ""
1072
 
1073
- #: deactivation-form.php:51
1074
  msgid "The plugin broke my site"
1075
  msgstr ""
1076
 
1077
- #: deactivation-form.php:58
1078
  msgid "I couldn't understand how to get it work"
1079
  msgstr ""
1080
 
1081
- #: deactivation-form.php:65
1082
  msgid "I found a better plugin"
1083
  msgstr ""
1084
 
1085
- #: deactivation-form.php:67
1086
- msgid "What's the plugin name?"
1087
- msgstr ""
1088
-
1089
- #: deactivation-form.php:71
1090
  msgid "The plugin is great, but I need specific feature that you don't support"
1091
  msgstr ""
1092
 
1093
- #: deactivation-form.php:73
1094
- msgid "What feature?"
1095
- msgstr ""
1096
-
1097
- #: deactivation-form.php:77
1098
  msgid "I no longer need the plugin"
1099
  msgstr ""
1100
 
1101
- #: deactivation-form.php:83
1102
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1103
  msgstr ""
1104
 
1105
- #: deactivation-form.php:89
1106
  msgid "Other"
1107
  msgstr "Anders"
1108
 
1109
- #: deactivation-form.php:123
1110
  msgid "Quick Feedback"
1111
  msgstr ""
1112
 
1113
- #: deactivation-form.php:124
1114
  msgid "If you have a moment, please let us know why you are deactivating"
1115
  msgstr ""
1116
 
1117
- #: deactivation-form.php:127
1118
- msgid "Send website data and allow to contact me back"
1119
- msgstr ""
1120
-
1121
- #: deactivation-form.php:132
1122
- msgid "Cancel"
1123
- msgstr ""
1124
-
1125
- #: deactivation-form.php:233
1126
- msgid "Processing"
1127
  msgstr ""
1128
 
1129
- #: deactivation-form.php:262
1130
- msgid "Submit & Deactivate"
1131
  msgstr ""
1132
 
1133
- #: deactivation-form.php:277
1134
  msgid "Please tell us the reason so we can improve it."
1135
  msgstr ""
1136
 
1137
- #: deactivation-form.php:345
1138
- msgid "Deactivate"
1139
- msgstr ""
1140
-
1141
- #: deprecated.php:93
1142
  msgid "System Status"
1143
  msgstr "Systeem status"
1144
 
1145
- #: deprecated.php:204
1146
- msgid "Please, enter your license key"
1147
- msgstr "Vul alstublieft uw licentiesleutel in"
1148
-
1149
- #: deprecated.php:223
1150
  msgid ""
1151
  "If necessary, you can check if the license key is correct or reenter it in "
1152
  "the field below. You can find your license key on your personal page - "
@@ -1156,7 +1115,7 @@ msgstr ""
1156
  "het opnieuw in het onderstaande veld. U vindt uw licentiesleutel op uw "
1157
  "persoonlijke omgeving - Klanten Omgeving - via onze website"
1158
 
1159
- #: deprecated.php:223
1160
  msgid ""
1161
  "(your username is the email address specified during the purchase). If "
1162
  "necessary, please submit \"Lost your password?\" request."
@@ -1164,68 +1123,43 @@ msgstr ""
1164
  "(Uw gebruikersnaam is het e-mailadres dat is opgegeven tijdens de aankoop). "
1165
  "Indien nodig, verstuur alstublieft \"Verstuur uw wachtwoord?\" Verzoek."
1166
 
1167
- #: deprecated.php:246
1168
  msgid "After that, you can activate it by entering your license key."
1169
  msgstr "Daarna kunt u activeren door uw licentiesleutel in te voeren."
1170
 
1171
- #: deprecated.php:249 deprecated.php:691
1172
  msgid "License key can be found in the"
1173
  msgstr "Licentiesleutel is te vinden in de"
1174
 
1175
- #: deprecated.php:251 deprecated.php:693
1176
  msgid "(your username is the email address specified during the purchase)."
1177
  msgstr ""
1178
  "(Uw gebruikersnaam is het e-mailadres dat is opgegeven tijdens de aankoop)."
1179
 
1180
- #: deprecated.php:279
1181
  msgid ""
1182
  "Congratulations! The Pro license of the plugin is activated successfully."
1183
  msgstr ""
1184
  "Hartelijk gefeliciteerd! De Pro-licentie van de plugin is succesvol "
1185
  "geactiveerd."
1186
 
1187
- #: deprecated.php:281 deprecated.php:672
1188
  msgid "Please, go to"
1189
  msgstr "Ga aub naar"
1190
 
1191
- #: deprecated.php:281 deprecated.php:672
1192
  msgid "the setting page"
1193
  msgstr "de instellingen"
1194
 
1195
- #: deprecated.php:282 deprecated.php:673
1196
- msgid "You will be redirected automatically in 5 seconds."
1197
- msgstr "U wordt na 5 seconden automatisch doorverwezen."
1198
-
1199
- #: deprecated.php:316
1200
- msgid "Check premium options on the plugin settings page!"
1201
- msgstr "Controleer de premiumopties op de pagina met Plugin-instellingen!"
1202
-
1203
- #: deprecated.php:479
1204
  msgid "Restore all plugin settings to defaults"
1205
  msgstr "Herstel alle plugin-instellingen naar de standaardinstellingen"
1206
 
1207
- #: deprecated.php:481
1208
  msgid "Restore settings"
1209
  msgstr "Herstel instellingen"
1210
 
1211
- #: deprecated.php:550 deprecated.php:577
1212
- #, php-format
1213
- msgid "File %s edited successfully."
1214
- msgstr "Bestand %s is succesvol bewerkt"
1215
-
1216
- #: deprecated.php:552 deprecated.php:579
1217
- msgid "Not enough permissions to create or update the file"
1218
- msgstr "Niet genoeg rechten om het bestand te maken of aan te passen"
1219
-
1220
- #: deprecated.php:582
1221
- msgid "Not enough permissions to create the file"
1222
- msgstr "Niet genoeg rechten om het bestand te maken"
1223
-
1224
- #: deprecated.php:626
1225
- msgid "Editing"
1226
- msgstr "Bewerken"
1227
-
1228
- #: deprecated.php:670
1229
  msgid ""
1230
  "Congratulations! Pro version of the plugin is installed and activated "
1231
  "successfully."
@@ -1233,327 +1167,392 @@ msgstr ""
1233
  "Hartelijk gefeliciteerd! De Pro-versie van de plugin is succesvol "
1234
  "geïnstalleerd en geactiveerd."
1235
 
1236
- #: deprecated.php:680
1237
  msgid "Show Pro features"
1238
  msgstr "Toon de Pro functies"
1239
 
1240
- #: deprecated.php:687
1241
  msgid "Enter your license key to install and activate"
1242
  msgstr "Voer uw licentiesleutel in om te installeren en te activeren"
1243
 
1244
- #: deprecated.php:689
1245
  msgid "version of the plugin."
1246
  msgstr "versie van de plugin."
1247
 
1248
- #: product_list.php:7
1249
  msgid "Admin Tools"
1250
  msgstr ""
1251
 
1252
- #: product_list.php:8
1253
  msgid "Content"
1254
  msgstr ""
1255
 
1256
- #: product_list.php:9
1257
  msgid "eCommerce"
1258
  msgstr ""
1259
 
1260
- #: product_list.php:10
1261
  msgid "Marketing"
1262
  msgstr ""
1263
 
1264
- #: product_list.php:11
1265
  msgid "Navigation"
1266
  msgstr ""
1267
 
1268
- #: product_list.php:12
1269
  msgid "Recommended"
1270
  msgstr "Aanbevolen"
1271
 
1272
- #: product_list.php:13
1273
  msgid "Security"
1274
  msgstr "Veiligheid"
1275
 
1276
- #: product_list.php:14
1277
  msgid "SEO"
1278
  msgstr ""
1279
 
1280
- #: product_list.php:15
1281
  msgid "SMM"
1282
  msgstr ""
1283
 
1284
- #: product_list.php:22
 
 
 
 
1285
  msgid "Best secure captcha plugin to protect your WordPress forms."
1286
  msgstr ""
1287
 
1288
- #: product_list.php:32
1289
- msgid "Create your personal car rental/booking and reservation website."
1290
  msgstr ""
1291
 
1292
- #: product_list.php:42
 
 
 
 
 
 
1293
  msgid ""
1294
  "Allow customers to reach you using secure contact form plugin any website "
1295
  "must have."
1296
  msgstr ""
1297
 
1298
- #: product_list.php:52
1299
  msgid "Add unlimited number of contact forms to WordPress website."
1300
  msgstr ""
1301
 
1302
- #: product_list.php:62
1303
  msgid "Save and manage Contact Form messages. Never lose important data."
1304
  msgstr ""
1305
 
1306
- #: product_list.php:72
1307
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1308
  msgstr ""
1309
 
1310
- #: product_list.php:79
1311
- msgid "Add custom fields to WordPress website search results."
1312
- msgstr ""
1313
-
1314
- #: product_list.php:86
1315
  msgid ""
1316
  "Add custom post types and taxonomies to WordPress website search results."
1317
  msgstr ""
1318
 
1319
- #: product_list.php:96
1320
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1321
  msgstr ""
1322
 
1323
- #: product_list.php:103
1324
  msgid ""
1325
  "Get latest error log messages to diagnose website problems. Define and fix "
1326
  "issues faster."
1327
  msgstr ""
1328
 
1329
- #: product_list.php:110
1330
  msgid ""
1331
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1332
  "widgets."
1333
  msgstr ""
1334
 
1335
- #: product_list.php:120
1336
  msgid ""
1337
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1338
  "clicks."
1339
  msgstr ""
1340
 
1341
- #: product_list.php:130
1342
- msgid ""
1343
- "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
1344
- "posts, pages and widgets."
1345
- msgstr ""
1346
-
1347
- #: product_list.php:140
1348
  msgid ""
1349
  "Stronger security solution which protects your WordPress website from hacks "
1350
  "and unauthorized login attempts."
1351
  msgstr ""
1352
 
1353
- #: product_list.php:150
1354
  msgid ""
1355
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1356
  "results, categories, tags, and widgets."
1357
  msgstr ""
1358
 
1359
- #: product_list.php:160
1360
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1361
  msgstr ""
1362
 
1363
- #: product_list.php:170
1364
- msgid ""
1365
- "Protect WordPress website forms from spam entries with Google Captcha "
1366
- "(reCaptcha)."
1367
  msgstr ""
1368
 
1369
- #: product_list.php:180
1370
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1371
  msgstr ""
1372
 
1373
- #: product_list.php:190
1374
  msgid ""
1375
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1376
  "your blog."
1377
  msgstr ""
1378
 
1379
- #: product_list.php:200
1380
  msgid ""
1381
  "Replace external WordPress website links with Google shortlinks and track "
1382
  "click stats."
1383
  msgstr ""
1384
 
1385
- #: product_list.php:207
1386
  msgid ""
1387
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1388
  "hostnames, etc."
1389
  msgstr ""
1390
 
1391
- #: product_list.php:217
1392
  msgid ""
1393
  "Create your personal job board and listing WordPress website. Search jobs, "
1394
  "submit CV/resumes, choose candidates."
1395
  msgstr ""
1396
 
1397
- #: product_list.php:224
1398
  msgid ""
1399
  "Protect WordPress website against brute force attacks. Limit rate of login "
1400
  "attempts."
1401
  msgstr ""
1402
 
1403
- #: product_list.php:234
1404
  msgid ""
1405
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1406
  "5 plugins included – profile, insider, etc."
1407
  msgstr ""
1408
 
1409
- #: product_list.php:244
1410
  msgid ""
1411
  "Translate WordPress website content to other languages manually. Create "
1412
  "multilingual pages, posts, widgets, menus, etc."
1413
  msgstr ""
1414
 
1415
- #: product_list.php:254
1416
  msgid ""
1417
  "Add customizable pagination to WordPress website. Split long content to "
1418
  "multiple pages for better navigation."
1419
  msgstr ""
1420
 
1421
- #: product_list.php:264
1422
  msgid ""
1423
  "Generate PDF files and print WordPress posts/pages. Customize document "
1424
  "header/footer styles and appearance."
1425
  msgstr ""
1426
 
1427
- #: product_list.php:274
1428
  msgid ""
1429
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1430
  "Profile) to WordPress posts, pages and widgets."
1431
  msgstr ""
1432
 
1433
- #: product_list.php:284
1434
  msgid ""
1435
  "Create your personal portfolio WordPress website. Manage and showcase past "
1436
  "projects to get more clients."
1437
  msgstr ""
1438
 
1439
- #: product_list.php:294
1440
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1441
  msgstr ""
1442
 
1443
- #: product_list.php:301
1444
  msgid ""
1445
  "Add extra fields to default WordPress user profile. The easiest way to "
1446
  "create and manage additional custom values."
1447
  msgstr ""
1448
 
1449
- #: product_list.php:308
1450
  msgid ""
1451
  "Add and display HTML advertisement banner on WordPress website. Customize "
1452
  "bar styles and appearance."
1453
  msgstr ""
1454
 
1455
- #: product_list.php:318
1456
  msgid ""
1457
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1458
  "widgets."
1459
  msgstr ""
1460
 
1461
- #: product_list.php:325
1462
  msgid ""
1463
  "Add rating plugin to your WordPress website to receive feedback from your "
1464
  "customers."
1465
  msgstr ""
1466
 
1467
- #: product_list.php:332
1468
  msgid ""
1469
  "Create your personal real estate WordPress website. Sell, rent and buy "
1470
  "properties. Add, search and browse listings easily."
1471
  msgstr ""
1472
 
1473
- #: product_list.php:342
1474
  msgid ""
1475
  "Add related, featured, latest, and popular posts to your WordPress website. "
1476
  "Connect your blog readers with a relevant content."
1477
  msgstr ""
1478
 
1479
- #: product_list.php:349
1480
  msgid ""
1481
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1482
  "settings and detailed reports."
1483
  msgstr ""
1484
 
1485
- #: product_list.php:359
1486
  msgid ""
1487
  "The best responsive slider plugin for your WordPress website. Create "
1488
  "beautifully animated slides just in a few clicks."
1489
  msgstr ""
1490
 
1491
- #: product_list.php:366
1492
  msgid ""
1493
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1494
  "Yahoo, Hotmail and other services."
1495
  msgstr ""
1496
 
1497
- #: product_list.php:373
1498
  msgid ""
1499
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1500
- "FB, Twitter, G+1, Pinterest, LinkedIn."
1501
  msgstr ""
1502
 
1503
- #: product_list.php:383
1504
  msgid ""
1505
  "Add social media login, registration, and commenting to your WordPress "
1506
  "website."
1507
  msgstr ""
1508
 
1509
- #: product_list.php:390
1510
  msgid ""
1511
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1512
  "Collect data and subscribe your users."
1513
  msgstr ""
1514
 
1515
- #: product_list.php:400
1516
  msgid ""
1517
  "Add testimonials and feedbacks from your customers to WordPress website "
1518
  "posts, pages, and widgets."
1519
  msgstr ""
1520
 
1521
- #: product_list.php:407
1522
  msgid ""
1523
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1524
  "attendance and generate reports."
1525
  msgstr ""
1526
 
1527
- #: product_list.php:417
1528
  msgid ""
1529
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1530
  "and pages."
1531
  msgstr ""
1532
 
1533
- #: product_list.php:427
1534
  msgid ""
1535
  "Automatically check and update WordPress website core with all installed "
1536
  "plugins and themes to the latest versions."
1537
  msgstr ""
1538
 
1539
- #: product_list.php:437
1540
  msgid ""
1541
  "Powerful user role management plugin for WordPress website. Create, edit, "
1542
  "copy, and delete user roles."
1543
  msgstr ""
1544
 
1545
- #: product_list.php:447
1546
  msgid ""
1547
  "Display live count of online visitors who are currently browsing your "
1548
  "WordPress website."
1549
  msgstr ""
1550
 
1551
- #: product_list.php:457
1552
  msgid ""
1553
  "Backup and export Zendesk Help Center content automatically to your "
1554
  "WordPress website database."
1555
  msgstr ""
1556
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1557
  #~ msgid "Congratulations! Pro Membership license is activated successfully."
1558
  #~ msgstr ""
1559
  #~ "Hartelijk gefeliciteerd! Uw Pro Membership licentie is succesvol "
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-02-15 10:54+0200\n"
6
+ "PO-Revision-Date: 2021-02-15 10:54+0200\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
9
  "Language: nl_NL\n"
13
  "X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 2.4.2\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: bws_functions.php:73 bws_functions.php:239
20
  msgid "requires"
21
  msgstr "benodigd"
22
 
53
  msgid "Need help?"
54
  msgstr "Hulp nodig?"
55
 
56
+ #: bws_functions.php:104 bws_functions.php:949 class-bws-settings.php:1082
57
  msgid "Visit Help Center"
58
  msgstr "Bezoek het Helpcentrum"
59
 
61
  msgid "Want to support the plugin?"
62
  msgstr "Geef ondersteuning aan de plug-in?"
63
 
64
+ #: bws_functions.php:108 bws_menu.php:529
65
  msgid "Donate"
66
  msgstr "Doneer"
67
 
77
  "otherwise the Pro plugin will be deactivated."
78
  msgstr ""
79
 
80
+ #: bws_functions.php:128 bws_functions.php:208 bws_menu.php:600
81
+ #: class-bws-settings.php:179
82
  msgid "Learn More"
83
  msgstr "Leer meer"
84
 
98
  "Uw licentie is verlopen. Om voort te gaan met ondersteuning voor top-"
99
  "prioriteit en plugin-updates, moet u het uitbreiden."
100
 
101
+ #: bws_functions.php:147 bws_functions.php:226
102
  msgid "Learn more"
103
  msgstr "Leer meer"
104
 
115
  msgid "The Pro Trial license will expire on"
116
  msgstr "De Pro Trial licentie vervalt op"
117
 
118
+ #: bws_functions.php:199 bws_functions.php:222 bws_functions.php:266
119
+ #: bws_functions.php:276 bws_functions.php:475
120
+ msgid "Close notice"
121
+ msgstr "Opmerking sluiten"
122
+
123
+ #: bws_functions.php:204
124
+ msgid "It’s time to upgrade your"
125
+ msgstr "Het is tijd om te upgraden, "
126
+
127
+ #: bws_functions.php:204
128
+ msgid "to"
129
+ msgstr "aan"
130
+
131
+ #: bws_functions.php:204
132
+ msgid "version!"
133
+ msgstr "versie!"
134
+
135
+ #: bws_functions.php:205
136
+ msgid "Extend standard plugin functionality with new great options."
137
+ msgstr ""
138
+ "Verleng de standaard plugin functionaliteit met nieuwe geweldige opties."
139
+
140
+ #: bws_functions.php:226
141
+ #, php-format
142
+ msgid ""
143
+ "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
144
+ "SUPPORT or UPDATES."
145
+ msgstr ""
146
+ "Uw licentiesleutel voor %s verloopt uit op %s en u krijgt geen TOP-"
147
+ "PRIORITEIT SUPPORT of UPDATES."
148
+
149
+ #: bws_functions.php:241
150
  msgid ""
151
  "or higher! We do not guarantee that our plugin will work correctly. Please "
152
  "upgrade to WordPress latest version."
154
  "of hoger! Wij garanderen niet dat onze plugin correct blijft werken. Upgrade "
155
  "nu naar de nieuwste versie van WordPress."
156
 
157
+ #: bws_functions.php:256
158
  #, php-format
159
  msgid "Thank you for installing %s plugin!"
160
  msgstr "Dank u voor het installeren van %s plugin!"
161
 
162
+ #: bws_functions.php:258
163
  msgid "Let's get started"
164
  msgstr "Laten we aan de slag gaan"
165
 
166
+ #: bws_functions.php:259 bws_functions.php:292 bws_menu.php:533
167
+ #: bws_menu.php:535
168
  msgid "Settings"
169
  msgstr "Settings"
170
 
171
+ #: bws_functions.php:261 bws_menu.php:327 class-bws-settings.php:809
172
+ #: class-bws-settings.php:1084 class-bws-settings.php:1094 deprecated.php:234
173
  msgid "or"
174
  msgstr "of"
175
 
176
+ #: bws_functions.php:262 bws_functions.php:294
177
  msgid "Add New"
178
  msgstr "Nieuwe toevoegen"
179
 
180
+ #: bws_functions.php:281
 
 
 
 
 
181
  msgid "Thank you for installing plugins by BestWebSoft!"
182
  msgstr "Dank u voor het installeren van een plugin van BestWebSoft!"
183
 
184
+ #: bws_functions.php:283
185
  msgid "More Details"
186
  msgstr "Meer details"
187
 
188
+ #: bws_functions.php:284
189
  msgid "Less Details"
190
  msgstr "Minder details"
191
 
192
+ #: bws_functions.php:312
193
  msgid "Deprecated function(-s) is used on the site here:"
194
  msgstr "Deprecated functie(-s) word hier op de site gebruikt:"
195
 
196
+ #: bws_functions.php:326
197
  msgid ""
198
  "This function(-s) will be removed over time. Please update the product(-s)."
199
  msgstr ""
200
  "Deze function(-s) zal mettertijd worden verwijderd. Update het product of "
201
  "producten."
202
 
203
+ #: bws_functions.php:470
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
204
  #, php-format
205
  msgid "Thank you for choosing %s plugin!"
206
  msgstr "Bedankt voor het kiezen van %s plugin!"
207
 
208
+ #: bws_functions.php:471
209
  msgid ""
210
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
211
  "we'd love to hear about it!"
213
  "Als u een feature, suggestie of idee hebt dat u graag wilt zien in de "
214
  "plugin, zouden we het graag willen horen!"
215
 
216
+ #: bws_functions.php:472
217
  msgid "Suggest a Feature"
218
  msgstr "Deel een idee"
219
 
220
+ #: bws_functions.php:488 class-bws-settings.php:580 class-bws-settings.php:583
221
+ #: class-bws-settings.php:635 class-bws-settings.php:638
222
  msgid "Notice"
223
  msgstr "Opmerking"
224
 
225
+ #: bws_functions.php:488
226
  msgid "The plugin's settings have been changed."
227
  msgstr "De instellingen van de plugin zijn gewijzigd."
228
 
229
+ #: bws_functions.php:489 class-bws-settings.php:222 class-bws-settings.php:242
 
230
  msgid "Save Changes"
231
  msgstr "Bewerkingen opslaan"
232
 
233
+ #: bws_functions.php:503
234
  msgid ""
235
  "You can always look at premium options by checking the \"Pro Options\" in "
236
  "the \"Misc\" tab."
238
  "U kunt altijd premium opties bekijken door de \"Pro Options\" in het tabblad "
239
  "\"Misc\" te controleren."
240
 
241
+ #: bws_functions.php:679
 
 
 
 
 
 
 
 
242
  msgid "Add shortcode"
243
  msgstr "Shortcode toevoegen"
244
 
245
+ #: bws_functions.php:679
246
  msgid "Add BestWebSoft plugins' shortcodes using this button."
247
  msgstr "Voeg BestWebSoft plugins shortcodes toe aan deze knop."
248
 
249
+ #: bws_functions.php:765
250
  msgid "Close"
251
  msgstr "Sluiten"
252
 
253
+ #: bws_functions.php:851
254
  msgid "Are you sure you want to restore default settings?"
255
  msgstr "Weet u zeker dat u de standaardinstellingen wilt herstellen?"
256
 
257
+ #: bws_functions.php:854
258
  msgid "Yes, restore all settings"
259
  msgstr "Ja, herstel alle instellingen"
260
 
261
+ #: bws_functions.php:855
262
  msgid "No, go back to the settings page"
263
  msgstr "Nee, ga terug naar de instellingen"
264
 
265
+ #: bws_functions.php:897
266
  msgid "Plugin"
267
  msgstr "Plugin"
268
 
269
+ #: bws_functions.php:906
270
  msgid "Shortcode settings"
271
  msgstr "Shortcode instellingen"
272
 
273
+ #: bws_functions.php:911
274
  msgid "The shortcode will be inserted"
275
  msgstr "De shortcode wordt ingevoegd"
276
 
277
+ #: bws_functions.php:954
278
  msgid "FAQ"
279
  msgstr "FAQ"
280
 
281
+ #: bws_functions.php:960
282
  msgid "For more information:"
283
  msgstr "Voor meer informatie:"
284
 
285
+ #: bws_functions.php:961 bws_menu.php:401 class-bws-settings.php:776
286
  msgid "Documentation"
287
  msgstr "Documentatie"
288
 
289
+ #: bws_functions.php:962 bws_menu.php:403 class-bws-settings.php:778
290
  msgid "Video Instructions"
291
  msgstr "Video Instructies"
292
 
293
+ #: bws_functions.php:963
294
  msgid "Submit a Request"
295
  msgstr "Verzend een verzoek"
296
 
297
+ #: bws_menu.php:101 class-bws-settings.php:860
298
  msgid "Wrong license key"
299
  msgstr "Incorrecte licentiesleutel"
300
 
301
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
302
+ #: class-bws-settings.php:1004
 
303
  msgid ""
304
  "Something went wrong. Please try again later. If the error appears again, "
305
  "please contact us"
307
  "Er is iets fout gegaan. Probeer het later nogmaals. Als de fout zich blijft "
308
  "voordoen, neem dan contact met ons op"
309
 
310
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
311
+ #: class-bws-settings.php:1004
 
312
  msgid "We are sorry for inconvenience."
313
  msgstr "Het spijt ons voor het ongemak."
314
 
315
+ #: bws_menu.php:129 class-bws-settings.php:893 class-bws-settings.php:1010
 
316
  msgid "Wrong license key."
317
  msgstr "Verkeerde licentiesleutel."
318
 
319
+ #: bws_menu.php:131
320
  msgid ""
321
  "This license key is bound to another site. Change it via personal Client "
322
  "Area."
324
  "Deze licentiesleutel is gebonden aan een andere website. Verander het via je "
325
  "persoonlijke beheeromgeving."
326
 
327
+ #: bws_menu.php:131
328
  msgid "Log in"
329
  msgstr "Log in"
330
 
331
+ #: bws_menu.php:133 bws_menu.php:333 deprecated.php:157
332
  msgid "Unfortunately, you have exceeded the number of available tries per day."
333
  msgstr "Helaas heb je het aantal beschikbare pogingen per dag overschreden."
334
 
335
+ #: bws_menu.php:135
336
  #, php-format
337
  msgid ""
338
  "Unfortunately, Your license has expired. To continue getting top-priority "
341
  "Helaas is uw licentie verlopen. Om voort te gaan met ondersteuning voor top-"
342
  "prioriteit en plugin-updates, moet u deze uitbreiden in uw %s"
343
 
344
+ #: bws_menu.php:137 class-bws-settings.php:1018
345
  msgid ""
346
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
347
  "Trial license can be installed only once."
349
  "Helaas is de Pro licentie al geïnstalleerd op dit domein. De Pro Trial "
350
  "licentie kan slechts één keer geïnstalleerd worden."
351
 
352
+ #: bws_menu.php:143 class-bws-settings.php:908
353
  msgid "The license key is valid."
354
  msgstr "De licentiesleutel is geldig."
355
 
356
+ #: bws_menu.php:145 class-bws-settings.php:912
357
  msgid "Your license will expire on"
358
  msgstr "Uw licentie vervalt op"
359
 
360
+ #: bws_menu.php:147
361
  msgid "Congratulations! Pro Membership license is activated successfully."
362
  msgstr ""
363
 
364
+ #: bws_menu.php:154 class-bws-settings.php:1028
365
  msgid ""
366
  "Something went wrong. Try again later or upload the plugin manually. We are "
367
  "sorry for inconvenience."
369
  "Er is iets fout gegaan. Probeer het later opnieuw of upload de plugin "
370
  "handmatig. Het spijt ons voor ongemak."
371
 
372
+ #: bws_menu.php:164
373
  msgid "Please enter your license key."
374
  msgstr "Vul alstublieft uw licentiesleutel in."
375
 
376
+ #: bws_menu.php:175
377
  msgid "Not set"
378
  msgstr "Niet ingesteld"
379
 
380
+ #: bws_menu.php:177
381
  msgid "On"
382
  msgstr "Aan"
383
 
384
+ #: bws_menu.php:177
385
  msgid "Off"
386
  msgstr "Uit"
387
 
388
+ #: bws_menu.php:178 bws_menu.php:179 bws_menu.php:180 bws_menu.php:181
389
+ #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:192
390
  msgid "N/A"
391
  msgstr "N/A"
392
 
393
+ #: bws_menu.php:183
394
+ #, fuzzy
395
+ #| msgid " Mb"
396
+ msgid "Mb"
397
  msgstr "Mb"
398
 
399
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
400
  msgid "Yes"
401
  msgstr "Ja"
402
 
403
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
404
  msgid "No"
405
  msgstr "Nee"
406
 
407
+ #: bws_menu.php:197
408
  msgid "WordPress Environment"
409
  msgstr "WordPress Omgeving"
410
 
411
+ #: bws_menu.php:199
412
  msgid "Home URL"
413
  msgstr "Home URL"
414
 
415
+ #: bws_menu.php:200
416
  msgid "Website URL"
417
  msgstr "Website URL"
418
 
419
+ #: bws_menu.php:201
420
  msgid "WP Version"
421
  msgstr "WP Versiie"
422
 
423
+ #: bws_menu.php:202
424
  msgid "WP Multisite"
425
  msgstr "WP Multisite"
426
 
427
+ #: bws_menu.php:203
428
  msgid "WP Memory Limit"
429
  msgstr "WP Memory Limit"
430
 
431
+ #: bws_menu.php:204
432
  msgid "Active Theme"
433
  msgstr "Activeer Thema"
434
 
435
+ #: bws_menu.php:204 bws_menu.php:249 bws_menu.php:252
436
  #, php-format
437
  msgid "by %s"
438
  msgstr "by %s"
439
 
440
+ #: bws_menu.php:208
441
  msgid "Server Environment"
442
  msgstr "Server Omgeving"
443
 
444
+ #: bws_menu.php:210
445
  msgid "Operating System"
446
  msgstr "Besturingssysteem"
447
 
448
+ #: bws_menu.php:211
449
  msgid "Server"
450
  msgstr "Server"
451
 
452
+ #: bws_menu.php:212
453
  msgid "PHP Version"
454
  msgstr "PHP Versiie"
455
 
456
+ #: bws_menu.php:213
457
  msgid "PHP Allow URL fopen"
458
  msgstr "PHP Allow URL fopen"
459
 
460
+ #: bws_menu.php:214
461
  msgid "PHP Memory Limit"
462
  msgstr "PHP Memory Limit"
463
 
464
+ #: bws_menu.php:215
465
  msgid "Memory Usage"
466
  msgstr "Memory Usage"
467
 
468
+ #: bws_menu.php:216
469
  msgid "PHP Max Upload Size"
470
  msgstr "PHP Max Upload Size"
471
 
472
+ #: bws_menu.php:217
473
  msgid "PHP Max Post Size"
474
  msgstr "PHP Max Post Size"
475
 
476
+ #: bws_menu.php:218
477
  msgid "PHP Max Script Execute Time"
478
  msgstr "PHP Max Script Execute Time"
479
 
480
+ #: bws_menu.php:219
481
  msgid "PHP Exif support"
482
  msgstr "PHP Exif support"
483
 
484
+ #: bws_menu.php:220
485
  msgid "PHP IPTC support"
486
  msgstr "PHP IPTC support"
487
 
488
+ #: bws_menu.php:221
489
  msgid "PHP XML support"
490
  msgstr "PHP XML support"
491
 
492
+ #: bws_menu.php:227
493
  msgid "Database"
494
  msgstr "Database"
495
 
496
+ #: bws_menu.php:229
497
  msgid "WP DB version"
498
  msgstr "WP DB version"
499
 
500
+ #: bws_menu.php:230
501
  msgid "MySQL version"
502
  msgstr "MySQL version"
503
 
504
+ #: bws_menu.php:231
505
  msgid "SQL Mode"
506
  msgstr "SQL Mode"
507
 
508
+ #: bws_menu.php:235
509
  msgid "Active Plugins"
510
  msgstr "Active Plugins"
511
 
512
+ #: bws_menu.php:240
513
  msgid "Inactive Plugins"
514
  msgstr "Inactive Plugins"
515
 
516
+ #: bws_menu.php:261
517
  msgid "Please enter a valid email address."
518
  msgstr "Gelieve een geldig e-mailadres in te geven."
519
 
520
+ #: bws_menu.php:263
521
  #, php-format
522
  msgid "Email with system info is sent to %s."
523
  msgstr ""
524
 
525
+ #: bws_menu.php:267
526
  msgid "Thank you for contacting us."
527
  msgstr "Bedankt voor het contact met ons opnemen."
528
 
529
+ #: bws_menu.php:290
530
  msgid "Sorry, email message could not be delivered."
531
  msgstr "Sorry, e-mailbericht kon niet worden geleverd."
532
 
533
+ #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:359 deprecated.php:26
534
  msgid "Plugins"
535
  msgstr "Plugins"
536
 
537
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:587 deprecated.php:27
538
  msgid "Themes"
539
  msgstr "Thema's"
540
 
541
+ #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:617
542
  msgid "System status"
543
  msgstr "Systeem status"
544
 
545
+ #: bws_menu.php:316
546
  msgid "Support"
547
  msgstr "Support"
548
 
549
+ #: bws_menu.php:317
550
  msgid "Manage purchased licenses & subscriptions"
551
  msgstr "Beheerde licenties en abonnementen beheren"
552
 
553
+ #: bws_menu.php:325
554
  #, php-format
555
  msgid "Get Access to %s+ Premium Plugins"
556
  msgstr "Krijg toegang tot %s+ Premium plugins"
557
 
558
+ #: bws_menu.php:327
559
  msgid "Subscribe to Pro Membership"
560
  msgstr "Abonneer je op de Pro Membership"
561
 
562
+ #: bws_menu.php:335 bws_menu.php:346 class-bws-settings.php:822
563
+ #: deprecated.php:123
564
  msgid "Check license key"
565
  msgstr "Controleer de licentiesleutel"
566
 
567
+ #: bws_menu.php:338
568
  msgid "Enter your license key"
569
  msgstr "Vul uw licentiesleutel in"
570
 
571
+ #: bws_menu.php:344 bws_menu.php:539 bws_menu.php:548
572
+ #: class-bws-settings.php:801 deprecated.php:155 deprecated.php:163
573
+ #: deprecated.php:240 deprecated.php:249
574
  msgid "Activate"
575
  msgstr "Activateer"
576
 
577
+ #: bws_menu.php:360
578
  msgid "Upload Plugin"
579
  msgstr "Upload Plugin"
580
 
581
+ #: bws_menu.php:364
582
  #, php-format
583
  msgid ""
584
  "The plugin generated %d characters of <strong>unexpected output</strong> "
591
  "met syndicationfeeds of andere problemen zijn; probeer deze plugin uit te "
592
  "schakelen of te verwijderen."
593
 
594
+ #: bws_menu.php:366
595
  msgid ""
596
  "Plugin could not be activated because it triggered a <strong>fatal error</"
597
  "strong>."
599
  "Plugin kan niet geactiveerd worden omdat het er <strong>fatal error</strong> "
600
  "zich voordoet."
601
 
602
+ #: bws_menu.php:369
603
  msgid "Plugin <strong>activated</strong>."
604
  msgstr "Plugin <strong>geactiveerd</strong>."
605
 
606
+ #: bws_menu.php:383
607
+ #, fuzzy
608
+ #| msgid "Upload Plugin"
609
+ msgid "Download Pro Plugin"
610
+ msgstr "Upload Plugin"
611
 
612
+ #: bws_menu.php:385 class-bws-settings.php:759
613
+ msgid "Your Pro plugin is ready"
614
+ msgstr ""
615
 
616
+ #: bws_menu.php:387 class-bws-settings.php:761
617
+ msgid "Your plugin has been zipped, and now is ready to download."
 
618
  msgstr ""
 
 
619
 
620
+ #: bws_menu.php:390 class-bws-settings.php:764
621
+ msgid "Download Now"
622
+ msgstr ""
623
 
624
+ #: bws_menu.php:394 class-bws-settings.php:768
625
+ #, fuzzy
626
+ #| msgid "Installing the plugin"
627
+ msgid "Need help installing the plugin?"
628
  msgstr "De plugin installeren"
629
 
630
+ #: bws_menu.php:396 class-bws-settings.php:770
631
+ msgid "How to install WordPress plugin from your admin Dashboard (ZIP archive)"
632
  msgstr ""
 
633
 
634
+ #: bws_menu.php:399 class-bws-settings.php:774
635
+ #, fuzzy
636
+ #| msgid "Let's get started"
637
+ msgid "Get Started"
638
+ msgstr "Laten we aan de slag gaan"
 
 
639
 
640
+ #: bws_menu.php:405 class-bws-settings.php:780
641
+ msgid "Knowledge Base"
642
+ msgstr ""
 
643
 
644
+ #: bws_menu.php:408
645
+ msgid "Licenses & Domains"
646
  msgstr ""
 
 
647
 
648
+ #: bws_menu.php:411
649
+ #, fuzzy
650
+ #| msgid "Login to Client Area"
651
+ msgid "Client Area"
652
+ msgstr "Inloggen op client gebied"
653
 
654
+ #: bws_menu.php:413
655
  msgid "Return to BestWebSoft Panel"
656
  msgstr "Terug naar het BestWebSoft Paneel"
657
 
658
+ #: bws_menu.php:420 bws_menu.php:440 bws_menu.php:569
659
  msgid "All"
660
  msgstr "Alle"
661
 
662
+ #: bws_menu.php:423 bws_menu.php:606
663
  msgid "Installed"
664
  msgstr "Geinstalleerd"
665
 
666
+ #: bws_menu.php:426
667
  msgid "Not Installed"
668
  msgstr "Niet geinstalleerd"
669
 
670
+ #: bws_menu.php:433
671
  msgid "Filter results"
672
  msgstr "Filter resultaten"
673
 
674
+ #: bws_menu.php:436 bws_menu.php:565
675
  msgid "Category"
676
  msgstr "Categorieen"
677
 
678
+ #: bws_menu.php:500
679
  msgid "Not installed"
680
  msgstr "Niet geinstalleerd"
681
 
682
+ #: bws_menu.php:504
683
  msgid "Renew to get updates"
684
  msgstr "Vernieuw om updates te verkrijgen"
685
 
686
+ #: bws_menu.php:507
687
  #, php-format
688
  msgid "Update to v %s"
689
  msgstr "Update naar v %s"
690
 
691
+ #: bws_menu.php:519 bws_menu.php:542
692
+ msgid "Get Pro"
693
+ msgstr ""
694
 
695
+ #: bws_menu.php:525 class-bws-settings.php:192 class-bws-settings.php:1091
696
  msgid "Upgrade to Pro"
697
  msgstr "Upgrade naar Pro"
698
 
699
+ #: bws_menu.php:539 bws_menu.php:548
700
  msgid "Activate this plugin"
701
  msgstr "Activateer deze plugin"
702
 
703
+ #: bws_menu.php:551
704
  msgid "Install this plugin"
705
  msgstr "Installeer deze plugin"
706
 
707
+ #: bws_menu.php:551
708
+ msgid "Install Now"
709
+ msgstr "Installeer nu"
710
+
711
+ #: bws_menu.php:560
712
  msgid "Nothing found. Try another criteria."
713
  msgstr "Niks gevonden. Probeer een ander criteria."
714
 
715
+ #: bws_menu.php:597
716
  #, php-format
717
  msgid "By %s"
718
  msgstr "By %s"
719
 
720
+ #: bws_menu.php:604
721
  msgid "Already Installed"
722
  msgstr "Reeds geinstalleerd"
723
 
724
+ #: bws_menu.php:614
725
  msgid "Browse More WordPress Themes"
726
  msgstr ""
727
 
728
+ #: bws_menu.php:623
729
  msgid "Send to support"
730
  msgstr "Stuur uw vraag"
731
 
732
+ #: bws_menu.php:630
733
  msgid "Send to custom email &#187;"
734
  msgstr "Verzend naar aangepaste e-mail &#187;"
735
 
736
+ #: class-bws-settings.php:167
737
  msgid "Information"
738
  msgstr "Informatie"
739
 
740
+ #: class-bws-settings.php:179
741
  msgid "Inactive"
742
  msgstr "Inactief"
743
 
744
+ #: class-bws-settings.php:187
745
  msgid "Expired"
746
  msgstr "Verlopen"
747
 
748
+ #: class-bws-settings.php:190
749
  #, php-format
750
  msgid "%s day(-s) left"
751
  msgstr "%s dag(-en) over"
752
 
753
+ #: class-bws-settings.php:196
754
  #, php-format
755
  msgid "Expired on %s"
756
  msgstr "Verlopen op %s"
757
 
758
+ #: class-bws-settings.php:196
759
  msgid "Renew Now"
760
  msgstr "Vernieuw nu"
761
 
762
+ #: class-bws-settings.php:198
763
  msgid "Active"
764
  msgstr "Actief"
765
 
766
+ #: class-bws-settings.php:203
767
  msgid "License"
768
  msgstr "Licentie"
769
 
770
+ #: class-bws-settings.php:206
771
  msgid "Status"
772
  msgstr "Status"
773
 
774
+ #: class-bws-settings.php:210
775
  msgid "Version"
776
  msgstr "Versiie"
777
 
778
+ #: class-bws-settings.php:323
779
  msgid "All plugin settings were restored."
780
  msgstr "Alle plugin-instellingen zijn hersteld."
781
 
782
+ #: class-bws-settings.php:463
783
  msgid "Custom Code"
784
  msgstr "Maatwerk Code"
785
 
786
+ #: class-bws-settings.php:467
787
  msgid "You do not have sufficient permissions to edit plugins for this site."
788
  msgstr ""
789
  "U heeft niet voldoende permissies om plugins voor deze website te bewerken."
790
 
791
+ #: class-bws-settings.php:472
792
  msgid "These styles will be added to the header on all pages of your site."
793
  msgstr ""
794
  "Deze stijlen worden toegevoegd aan de koptekst op alle pagina's van uw "
795
  "website."
796
 
797
+ #: class-bws-settings.php:475
798
  #, php-format
799
  msgid ""
800
  "This PHP code will be hooked to the %s action and will be printed on front "
803
  "Deze PHP-code wordt aangesloten op de %s actie en zal alleen op de website "
804
  "worden getoond."
805
 
806
+ #: class-bws-settings.php:478
807
  msgid "These code will be added to the header on all pages of your site."
808
  msgstr ""
809
  "Deze code wordt toegevoegd aan de koptekst op alle pagina's van uw website."
810
 
811
+ #: class-bws-settings.php:486
812
  #, php-format
813
  msgid ""
814
  "You need to make this files writable before you can save your changes. See "
817
  "U moet deze bestanden schrijfrechten geven voordat u de wijzigingen kunt "
818
  "opslaan. Zie %s de Codex %s voor meer informatie."
819
 
820
+ #: class-bws-settings.php:496
821
  msgid "Browsing"
822
  msgstr "Browsing"
823
 
824
+ #: class-bws-settings.php:501
825
  #, php-format
826
  msgid "Activate custom %s code."
827
  msgstr "Activateer maatwerk %s code."
828
 
829
+ #: class-bws-settings.php:509
830
  #, php-format
831
  msgid "Learn more about %s"
832
  msgstr "Leer meer over %s"
833
 
834
+ #: class-bws-settings.php:571
835
  msgid "Miscellaneous Settings"
836
  msgstr "Diversen instellingen"
837
 
838
+ #: class-bws-settings.php:580 class-bws-settings.php:635
839
  #, php-format
840
  msgid ""
841
  "It is prohibited to change %s settings on this site in the %s network "
844
  "Het is verboden om %s instellingen op deze website te wijzigen in de %s "
845
  "netwerkinstellingen."
846
 
847
+ #: class-bws-settings.php:583 class-bws-settings.php:638
848
  #, php-format
849
  msgid ""
850
  "It is prohibited to view %s settings on this site in the %s network settings."
852
  "Het is verboden om %s instellingen op deze website te bekijken in de %s "
853
  "netwerkinstellingen."
854
 
855
+ #: class-bws-settings.php:592
856
  msgid "Pro Options"
857
  msgstr "Pro Opties"
858
 
859
+ #: class-bws-settings.php:596
860
  msgid "Enable to display plugin Pro options."
861
  msgstr "Schakel in om plugin Pro opties te zien."
862
 
863
+ #: class-bws-settings.php:602
864
  msgid "Track Usage"
865
  msgstr "Track gebruik"
866
 
867
+ #: class-bws-settings.php:606
868
  msgid ""
869
  "Enable to allow tracking plugin usage anonymously in order to make it better."
870
  msgstr ""
871
  "Activeer het gebruik van anonieme tracking van de bijbehorende plug-in, om "
872
  "het product beter te maken."
873
 
874
+ #: class-bws-settings.php:611
875
  msgid "Default Settings"
876
  msgstr "Standaard instellingen"
877
 
878
+ #: class-bws-settings.php:613
879
  msgid "Restore Settings"
880
  msgstr "Instellingen herstellen"
881
 
882
+ #: class-bws-settings.php:614
883
  msgid "This will restore plugin settings to defaults."
884
  msgstr ""
885
  "Dit zal de plugininstellingen herstellen naar de standaardinstellingen."
886
 
887
+ #: class-bws-settings.php:626
888
  msgid "Import / Export"
889
  msgstr "Import / Export"
890
 
891
+ #: class-bws-settings.php:744
 
892
  msgid "License Key"
893
  msgstr "Licentiesleutel"
894
 
895
+ #: class-bws-settings.php:803
 
 
 
 
 
 
 
 
 
 
 
 
 
896
  #, php-format
897
  msgid "Enter your license key to activate %s and get premium plugin features."
898
  msgstr ""
899
  "Voer uw licentiesleutel in om %s te activeren en premium-pluginfuncties te "
900
  "krijgen."
901
 
902
+ #: class-bws-settings.php:806 class-bws-settings.php:1014 deprecated.php:243
 
903
  msgid ""
904
  "Unfortunately, you have exceeded the number of available tries per day. "
905
  "Please, upload the plugin manually."
907
  "Helaas heeft u het aantal beschikbare pogingen per dag overschreden. Gelieve "
908
  "de plugin handmatig te uploaden."
909
 
910
+ #: class-bws-settings.php:809 deprecated.php:234
911
  #, php-format
912
  msgid "Start Your Free %s-Day Trial Now"
913
  msgstr "Start nu uw gratis %s dag trial"
914
 
915
+ #: class-bws-settings.php:824
916
  msgid ""
917
  "If necessary, you can check if the license key is correct or reenter it in "
918
  "the field below."
920
  "Indien nodig kunt u controleren of de licentiesleutel juist is of u voert "
921
  "het opnieuw in het onderstaande veld."
922
 
923
+ #: class-bws-settings.php:833
924
  msgid "Manage License Settings"
925
  msgstr "Beheer licentie instellingen"
926
 
927
+ #: class-bws-settings.php:835
928
  msgid "Login to Client Area"
929
  msgstr "Inloggen op client gebied"
930
 
931
+ #: class-bws-settings.php:837
932
  msgid ""
933
  "Manage active licenses, download BWS products, and view your payment history "
934
  "using BestWebSoft Client Area."
936
  "Beheer actieve licenties, download BWS-producten en bekijk uw de "
937
  "betalingsgeschiedenis met behulp van de BestWebSoft Klanten Omgeving."
938
 
939
+ #: class-bws-settings.php:895 class-bws-settings.php:1012
 
940
  msgid "This license key is bound to another site."
941
  msgstr "Deze licentiesleutel is gebonden aan een andere website."
942
 
943
+ #: class-bws-settings.php:897
944
  msgid ""
945
  "This license key is valid, but Your license has expired. If you want to "
946
  "update our plugin in future, you should extend the license."
948
  "Deze licentiesleutel is geldig, maar uw licentie is verlopen. Als u onze "
949
  "plugin in de toekomst wilt bijwerken, moet u de licentie verlengen."
950
 
951
+ #: class-bws-settings.php:899
952
  msgid "Unfortunately, you have exceeded the number of available tries."
953
  msgstr "Helaas heeft u het aantal beschikbare pogingen overschreden."
954
 
955
+ #: class-bws-settings.php:901
956
  msgid ""
957
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
958
  "The Pro Trial license can be installed only once."
960
  "Helaas, de Pro Trial licentie was al geïnstalleerd op dit domein. De Pro "
961
  "Trial License kan helaas maar eenmalig gebruikt worden."
962
 
963
+ #: class-bws-settings.php:906
964
  msgid "The Pro Trial license key is valid."
965
  msgstr "De Pro Trial licentiesleutel is geldig."
966
 
967
+ #: class-bws-settings.php:919 deprecated.php:142
968
  #, php-format
969
  msgid ""
970
  "In order to continue using the plugin it is necessary to buy a %s license."
971
  msgstr ""
972
  "Om door te gaan met de plugin is het nodig om een %s licentie te kopen."
973
 
974
+ #: class-bws-settings.php:1016
975
  #, php-format
976
  msgid ""
977
  "Unfortunately, Your license has expired. To continue getting top-priority "
978
  "support and plugin updates, you should extend it in your %s."
979
  msgstr ""
980
 
981
+ #: class-bws-settings.php:1065
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
982
  msgid "Please, enter Your license key"
983
  msgstr "Vul alstublieft uw licentiesleutel in"
984
 
985
+ #: class-bws-settings.php:1078
986
  msgid "Need Help?"
987
  msgstr "Hulp nodig?"
988
 
989
+ #: class-bws-settings.php:1080
990
  msgid "Read the Instruction"
991
  msgstr "Lees de instructie"
992
 
993
+ #: class-bws-settings.php:1084
994
  msgid "Watch the Video"
995
  msgstr "Bekijk de Video"
996
 
997
+ #: class-bws-settings.php:1095
998
  msgid "Start Your Free Trial"
999
  msgstr "Begin uw gratis proefperiode"
1000
 
1001
+ #: class-bws-settings.php:1130
1002
+ #, fuzzy
1003
+ #| msgid "Suggest a Feature"
1004
+ msgid "Request a Feature"
1005
+ msgstr "Deel een idee"
1006
+
1007
+ #: class-bws-settings.php:1135
1008
+ #, php-format
1009
+ msgid "How can we improve %s?"
1010
  msgstr ""
1011
 
1012
+ #: class-bws-settings.php:1137
1013
+ msgid "We look forward to hear your ideas."
1014
  msgstr ""
1015
 
1016
+ #: class-bws-settings.php:1139
1017
+ msgid "Describe your idea"
1018
  msgstr ""
1019
 
1020
+ #: class-bws-settings.php:1142 deactivation-form.php:120
1021
+ msgid "Send website data and allow to contact me back"
1022
  msgstr ""
1023
 
1024
+ #: class-bws-settings.php:1147
1025
+ msgid "Submit"
1026
+ msgstr ""
1027
+
1028
+ #: class-bws-settings.php:1148 deactivation-form.php:127
1029
+ msgid "Processing"
1030
  msgstr ""
1031
 
1032
+ #: class-bws-settings.php:1149
1033
+ msgid "Thank you!"
1034
  msgstr ""
1035
 
1036
+ #: deactivation-form.php:22
1037
+ msgid "Need help? We are ready to answer your questions."
1038
+ msgstr ""
1039
+
1040
+ #: deactivation-form.php:22
1041
+ msgid "Contact Support"
1042
+ msgstr ""
1043
+
1044
+ #: deactivation-form.php:27
1045
+ msgid "The plugin is not working"
1046
+ msgstr ""
1047
+
1048
+ #: deactivation-form.php:33
1049
+ msgid "The plugin didn't work as expected"
1050
+ msgstr ""
1051
+
1052
+ #: deactivation-form.php:39
1053
  msgid "The plugin suddenly stopped working"
1054
  msgstr ""
1055
 
1056
+ #: deactivation-form.php:46
1057
  msgid "The plugin broke my site"
1058
  msgstr ""
1059
 
1060
+ #: deactivation-form.php:53
1061
  msgid "I couldn't understand how to get it work"
1062
  msgstr ""
1063
 
1064
+ #: deactivation-form.php:60
1065
  msgid "I found a better plugin"
1066
  msgstr ""
1067
 
1068
+ #: deactivation-form.php:66
 
 
 
 
1069
  msgid "The plugin is great, but I need specific feature that you don't support"
1070
  msgstr ""
1071
 
1072
+ #: deactivation-form.php:72
 
 
 
 
1073
  msgid "I no longer need the plugin"
1074
  msgstr ""
1075
 
1076
+ #: deactivation-form.php:78
1077
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1078
  msgstr ""
1079
 
1080
+ #: deactivation-form.php:84
1081
  msgid "Other"
1082
  msgstr "Anders"
1083
 
1084
+ #: deactivation-form.php:93
1085
  msgid "Quick Feedback"
1086
  msgstr ""
1087
 
1088
+ #: deactivation-form.php:95
1089
  msgid "If you have a moment, please let us know why you are deactivating"
1090
  msgstr ""
1091
 
1092
+ #: deactivation-form.php:125
1093
+ msgid "Submit and Deactivate"
 
 
 
 
 
 
 
 
1094
  msgstr ""
1095
 
1096
+ #: deactivation-form.php:126
1097
+ msgid "Skip and Deactivate"
1098
  msgstr ""
1099
 
1100
+ #: deactivation-form.php:272
1101
  msgid "Please tell us the reason so we can improve it."
1102
  msgstr ""
1103
 
1104
+ #: deprecated.php:28
 
 
 
 
1105
  msgid "System Status"
1106
  msgstr "Systeem status"
1107
 
1108
+ #: deprecated.php:119
 
 
 
 
1109
  msgid ""
1110
  "If necessary, you can check if the license key is correct or reenter it in "
1111
  "the field below. You can find your license key on your personal page - "
1115
  "het opnieuw in het onderstaande veld. U vindt uw licentiesleutel op uw "
1116
  "persoonlijke omgeving - Klanten Omgeving - via onze website"
1117
 
1118
+ #: deprecated.php:119
1119
  msgid ""
1120
  "(your username is the email address specified during the purchase). If "
1121
  "necessary, please submit \"Lost your password?\" request."
1123
  "(Uw gebruikersnaam is het e-mailadres dat is opgegeven tijdens de aankoop). "
1124
  "Indien nodig, verstuur alstublieft \"Verstuur uw wachtwoord?\" Verzoek."
1125
 
1126
+ #: deprecated.php:142
1127
  msgid "After that, you can activate it by entering your license key."
1128
  msgstr "Daarna kunt u activeren door uw licentiesleutel in te voeren."
1129
 
1130
+ #: deprecated.php:145 deprecated.php:228
1131
  msgid "License key can be found in the"
1132
  msgstr "Licentiesleutel is te vinden in de"
1133
 
1134
+ #: deprecated.php:147 deprecated.php:230
1135
  msgid "(your username is the email address specified during the purchase)."
1136
  msgstr ""
1137
  "(Uw gebruikersnaam is het e-mailadres dat is opgegeven tijdens de aankoop)."
1138
 
1139
+ #: deprecated.php:170
1140
  msgid ""
1141
  "Congratulations! The Pro license of the plugin is activated successfully."
1142
  msgstr ""
1143
  "Hartelijk gefeliciteerd! De Pro-licentie van de plugin is succesvol "
1144
  "geactiveerd."
1145
 
1146
+ #: deprecated.php:172 deprecated.php:210
1147
  msgid "Please, go to"
1148
  msgstr "Ga aub naar"
1149
 
1150
+ #: deprecated.php:172 deprecated.php:210
1151
  msgid "the setting page"
1152
  msgstr "de instellingen"
1153
 
1154
+ #: deprecated.php:187
 
 
 
 
 
 
 
 
1155
  msgid "Restore all plugin settings to defaults"
1156
  msgstr "Herstel alle plugin-instellingen naar de standaardinstellingen"
1157
 
1158
+ #: deprecated.php:189
1159
  msgid "Restore settings"
1160
  msgstr "Herstel instellingen"
1161
 
1162
+ #: deprecated.php:208
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1163
  msgid ""
1164
  "Congratulations! Pro version of the plugin is installed and activated "
1165
  "successfully."
1167
  "Hartelijk gefeliciteerd! De Pro-versie van de plugin is succesvol "
1168
  "geïnstalleerd en geactiveerd."
1169
 
1170
+ #: deprecated.php:217
1171
  msgid "Show Pro features"
1172
  msgstr "Toon de Pro functies"
1173
 
1174
+ #: deprecated.php:224
1175
  msgid "Enter your license key to install and activate"
1176
  msgstr "Voer uw licentiesleutel in om te installeren en te activeren"
1177
 
1178
+ #: deprecated.php:226
1179
  msgid "version of the plugin."
1180
  msgstr "versie van de plugin."
1181
 
1182
+ #: product_list.php:8
1183
  msgid "Admin Tools"
1184
  msgstr ""
1185
 
1186
+ #: product_list.php:9
1187
  msgid "Content"
1188
  msgstr ""
1189
 
1190
+ #: product_list.php:10
1191
  msgid "eCommerce"
1192
  msgstr ""
1193
 
1194
+ #: product_list.php:11
1195
  msgid "Marketing"
1196
  msgstr ""
1197
 
1198
+ #: product_list.php:12
1199
  msgid "Navigation"
1200
  msgstr ""
1201
 
1202
+ #: product_list.php:13
1203
  msgid "Recommended"
1204
  msgstr "Aanbevolen"
1205
 
1206
+ #: product_list.php:14
1207
  msgid "Security"
1208
  msgstr "Veiligheid"
1209
 
1210
+ #: product_list.php:15
1211
  msgid "SEO"
1212
  msgstr ""
1213
 
1214
+ #: product_list.php:16
1215
  msgid "SMM"
1216
  msgstr ""
1217
 
1218
+ #: product_list.php:23
1219
+ msgid "Give a birth for your bike rental and booking WordPress website."
1220
+ msgstr ""
1221
+
1222
+ #: product_list.php:35
1223
  msgid "Best secure captcha plugin to protect your WordPress forms."
1224
  msgstr ""
1225
 
1226
+ #: product_list.php:45
1227
+ msgid "Create your own rental website for car renting and booking."
1228
  msgstr ""
1229
 
1230
+ #: product_list.php:57
1231
+ msgid ""
1232
+ "Add columns with custom content to WordPress website pages, posts, widgets, "
1233
+ "etc."
1234
+ msgstr ""
1235
+
1236
+ #: product_list.php:64
1237
  msgid ""
1238
  "Allow customers to reach you using secure contact form plugin any website "
1239
  "must have."
1240
  msgstr ""
1241
 
1242
+ #: product_list.php:74
1243
  msgid "Add unlimited number of contact forms to WordPress website."
1244
  msgstr ""
1245
 
1246
+ #: product_list.php:84
1247
  msgid "Save and manage Contact Form messages. Never lose important data."
1248
  msgstr ""
1249
 
1250
+ #: product_list.php:94
1251
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1252
  msgstr ""
1253
 
1254
+ #: product_list.php:104
 
 
 
 
1255
  msgid ""
1256
  "Add custom post types and taxonomies to WordPress website search results."
1257
  msgstr ""
1258
 
1259
+ #: product_list.php:114
1260
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1261
  msgstr ""
1262
 
1263
+ #: product_list.php:121
1264
  msgid ""
1265
  "Get latest error log messages to diagnose website problems. Define and fix "
1266
  "issues faster."
1267
  msgstr ""
1268
 
1269
+ #: product_list.php:128
1270
  msgid ""
1271
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1272
  "widgets."
1273
  msgstr ""
1274
 
1275
+ #: product_list.php:138
1276
  msgid ""
1277
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1278
  "clicks."
1279
  msgstr ""
1280
 
1281
+ #: product_list.php:148
 
 
 
 
 
 
1282
  msgid ""
1283
  "Stronger security solution which protects your WordPress website from hacks "
1284
  "and unauthorized login attempts."
1285
  msgstr ""
1286
 
1287
+ #: product_list.php:158
1288
  msgid ""
1289
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1290
  "results, categories, tags, and widgets."
1291
  msgstr ""
1292
 
1293
+ #: product_list.php:168
1294
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1295
  msgstr ""
1296
 
1297
+ #: product_list.php:178
1298
+ msgid "Protect WordPress website forms from spam entries with reCaptcha."
 
 
1299
  msgstr ""
1300
 
1301
+ #: product_list.php:188
1302
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1303
  msgstr ""
1304
 
1305
+ #: product_list.php:198
1306
  msgid ""
1307
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1308
  "your blog."
1309
  msgstr ""
1310
 
1311
+ #: product_list.php:208
1312
  msgid ""
1313
  "Replace external WordPress website links with Google shortlinks and track "
1314
  "click stats."
1315
  msgstr ""
1316
 
1317
+ #: product_list.php:215
1318
  msgid ""
1319
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1320
  "hostnames, etc."
1321
  msgstr ""
1322
 
1323
+ #: product_list.php:225
1324
  msgid ""
1325
  "Create your personal job board and listing WordPress website. Search jobs, "
1326
  "submit CV/resumes, choose candidates."
1327
  msgstr ""
1328
 
1329
+ #: product_list.php:232
1330
  msgid ""
1331
  "Protect WordPress website against brute force attacks. Limit rate of login "
1332
  "attempts."
1333
  msgstr ""
1334
 
1335
+ #: product_list.php:242
1336
  msgid ""
1337
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1338
  "5 plugins included – profile, insider, etc."
1339
  msgstr ""
1340
 
1341
+ #: product_list.php:252
1342
  msgid ""
1343
  "Translate WordPress website content to other languages manually. Create "
1344
  "multilingual pages, posts, widgets, menus, etc."
1345
  msgstr ""
1346
 
1347
+ #: product_list.php:262
1348
  msgid ""
1349
  "Add customizable pagination to WordPress website. Split long content to "
1350
  "multiple pages for better navigation."
1351
  msgstr ""
1352
 
1353
+ #: product_list.php:272
1354
  msgid ""
1355
  "Generate PDF files and print WordPress posts/pages. Customize document "
1356
  "header/footer styles and appearance."
1357
  msgstr ""
1358
 
1359
+ #: product_list.php:282
1360
  msgid ""
1361
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1362
  "Profile) to WordPress posts, pages and widgets."
1363
  msgstr ""
1364
 
1365
+ #: product_list.php:292
1366
  msgid ""
1367
  "Create your personal portfolio WordPress website. Manage and showcase past "
1368
  "projects to get more clients."
1369
  msgstr ""
1370
 
1371
+ #: product_list.php:302
1372
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1373
  msgstr ""
1374
 
1375
+ #: product_list.php:312
1376
  msgid ""
1377
  "Add extra fields to default WordPress user profile. The easiest way to "
1378
  "create and manage additional custom values."
1379
  msgstr ""
1380
 
1381
+ #: product_list.php:322
1382
  msgid ""
1383
  "Add and display HTML advertisement banner on WordPress website. Customize "
1384
  "bar styles and appearance."
1385
  msgstr ""
1386
 
1387
+ #: product_list.php:332
1388
  msgid ""
1389
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1390
  "widgets."
1391
  msgstr ""
1392
 
1393
+ #: product_list.php:339
1394
  msgid ""
1395
  "Add rating plugin to your WordPress website to receive feedback from your "
1396
  "customers."
1397
  msgstr ""
1398
 
1399
+ #: product_list.php:349
1400
  msgid ""
1401
  "Create your personal real estate WordPress website. Sell, rent and buy "
1402
  "properties. Add, search and browse listings easily."
1403
  msgstr ""
1404
 
1405
+ #: product_list.php:359
1406
  msgid ""
1407
  "Add related, featured, latest, and popular posts to your WordPress website. "
1408
  "Connect your blog readers with a relevant content."
1409
  msgstr ""
1410
 
1411
+ #: product_list.php:366
1412
  msgid ""
1413
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1414
  "settings and detailed reports."
1415
  msgstr ""
1416
 
1417
+ #: product_list.php:376
1418
  msgid ""
1419
  "The best responsive slider plugin for your WordPress website. Create "
1420
  "beautifully animated slides just in a few clicks."
1421
  msgstr ""
1422
 
1423
+ #: product_list.php:383
1424
  msgid ""
1425
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1426
  "Yahoo, Hotmail and other services."
1427
  msgstr ""
1428
 
1429
+ #: product_list.php:390
1430
  msgid ""
1431
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1432
+ "FB, Twitter, Pinterest, LinkedIn."
1433
  msgstr ""
1434
 
1435
+ #: product_list.php:400
1436
  msgid ""
1437
  "Add social media login, registration, and commenting to your WordPress "
1438
  "website."
1439
  msgstr ""
1440
 
1441
+ #: product_list.php:407
1442
  msgid ""
1443
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1444
  "Collect data and subscribe your users."
1445
  msgstr ""
1446
 
1447
+ #: product_list.php:417
1448
  msgid ""
1449
  "Add testimonials and feedbacks from your customers to WordPress website "
1450
  "posts, pages, and widgets."
1451
  msgstr ""
1452
 
1453
+ #: product_list.php:424
1454
  msgid ""
1455
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1456
  "attendance and generate reports."
1457
  msgstr ""
1458
 
1459
+ #: product_list.php:434
1460
  msgid ""
1461
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1462
  "and pages."
1463
  msgstr ""
1464
 
1465
+ #: product_list.php:444
1466
  msgid ""
1467
  "Automatically check and update WordPress website core with all installed "
1468
  "plugins and themes to the latest versions."
1469
  msgstr ""
1470
 
1471
+ #: product_list.php:454
1472
  msgid ""
1473
  "Powerful user role management plugin for WordPress website. Create, edit, "
1474
  "copy, and delete user roles."
1475
  msgstr ""
1476
 
1477
+ #: product_list.php:464
1478
  msgid ""
1479
  "Display live count of online visitors who are currently browsing your "
1480
  "WordPress website."
1481
  msgstr ""
1482
 
1483
+ #: product_list.php:474
1484
  msgid ""
1485
  "Backup and export Zendesk Help Center content automatically to your "
1486
  "WordPress website database."
1487
  msgstr ""
1488
 
1489
+ #~ msgid "Installing Plugin"
1490
+ #~ msgstr "Installatie Plugin bezig"
1491
+
1492
+ #~ msgid "Downloading install package from"
1493
+ #~ msgstr "Installatiepakket downloaden vanaf"
1494
+
1495
+ #~ msgid ""
1496
+ #~ "Failed to download the zip archive. Please, upload the plugin manually"
1497
+ #~ msgstr ""
1498
+ #~ "Het ziparchief kon niet worden geladen. Gelieve de plugin handmatig te "
1499
+ #~ "uploaden"
1500
+
1501
+ #~ msgid "Unpacking the package"
1502
+ #~ msgstr "Uitpakken van het pakket"
1503
+
1504
+ #~ msgid "Failed to open the zip archive. Please, upload the plugin manually"
1505
+ #~ msgstr ""
1506
+ #~ "Kan het zip-bestand niet openen. Gelieve de plugin handmatig te uploaden"
1507
+
1508
+ #~ msgid ""
1509
+ #~ "Your server does not support either ZipArchive or Phar. Please, upload "
1510
+ #~ "the plugin manually"
1511
+ #~ msgstr ""
1512
+ #~ "Uw server ondersteunt geen ZipArchive of Phar. Gelieve de plugin "
1513
+ #~ "handmatig te uploaden"
1514
+
1515
+ #~ msgid "The plugin %s is successfully installed."
1516
+ #~ msgstr "De plugin %s is succesvol geïnstalleerd."
1517
+
1518
+ #~ msgid "UploadDir is not writable. Please, upload the plugin manually"
1519
+ #~ msgstr ""
1520
+ #~ "UploadDir is kan niet worden weggeschreven. Gelieve de plugin handmatig "
1521
+ #~ "te uploaden"
1522
+
1523
+ #~ msgid "Activate Plugin"
1524
+ #~ msgstr "Activateer Plugin"
1525
+
1526
+ #~ msgid "Congratulations! Pro license is activated successfully."
1527
+ #~ msgstr "Hartelijk gefeliciteerd! De Pro licentie is succesvol geactiveerd."
1528
+
1529
+ #~ msgid "You will be automatically redirected to the %s in %s seconds."
1530
+ #~ msgstr "U wordt automatisch doorgestuurd naar %s in %s seconden."
1531
+
1532
+ #~ msgid "Settings page"
1533
+ #~ msgstr "Instellingen"
1534
+
1535
+ #~ msgid "Please, enter your license key"
1536
+ #~ msgstr "Vul alstublieft uw licentiesleutel in"
1537
+
1538
+ #~ msgid "You will be redirected automatically in 5 seconds."
1539
+ #~ msgstr "U wordt na 5 seconden automatisch doorverwezen."
1540
+
1541
+ #~ msgid "Check premium options on the plugin settings page!"
1542
+ #~ msgstr "Controleer de premiumopties op de pagina met Plugin-instellingen!"
1543
+
1544
+ #~ msgid "File %s edited successfully."
1545
+ #~ msgstr "Bestand %s is succesvol bewerkt"
1546
+
1547
+ #~ msgid "Not enough permissions to create or update the file"
1548
+ #~ msgstr "Niet genoeg rechten om het bestand te maken of aan te passen"
1549
+
1550
+ #~ msgid "Not enough permissions to create the file"
1551
+ #~ msgstr "Niet genoeg rechten om het bestand te maken"
1552
+
1553
+ #~ msgid "Editing"
1554
+ #~ msgstr "Bewerken"
1555
+
1556
  #~ msgid "Congratulations! Pro Membership license is activated successfully."
1557
  #~ msgstr ""
1558
  #~ "Hartelijk gefeliciteerd! Uw Pro Membership licentie is succesvol "
bws_menu/languages/bestwebsoft-pl_PL.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-pl_PL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2017-09-05 14:58+0300\n"
6
- "PO-Revision-Date: 2017-09-05 14:58+0300\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Damian Dąbrowski <contact@codester.pl>\n"
9
  "Language: pl_PL\n"
@@ -13,12 +13,12 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 1.8.7.1\n"
17
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
18
  "|| n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
- #: bws_functions.php:73 bws_functions.php:191
22
  msgid "requires"
23
  msgstr "wymaga wersja"
24
 
@@ -56,7 +56,7 @@ msgstr ""
56
  msgid "Need help?"
57
  msgstr "Potrzebujesz pomocy?"
58
 
59
- #: bws_functions.php:104 bws_functions.php:917 class-bws-settings.php:1058
60
  msgid "Visit Help Center"
61
  msgstr ""
62
 
@@ -65,7 +65,7 @@ msgstr ""
65
  msgid "Want to support the plugin?"
66
  msgstr "Oceń wtyczkę"
67
 
68
- #: bws_functions.php:108 bws_menu.php:560
69
  msgid "Donate"
70
  msgstr ""
71
 
@@ -81,8 +81,8 @@ msgid ""
81
  "otherwise the Pro plugin will be deactivated."
82
  msgstr ""
83
 
84
- #: bws_functions.php:128 bws_functions.php:341 bws_menu.php:631
85
- #: class-bws-settings.php:144
86
  msgid "Learn More"
87
  msgstr "Dowiedz się więcej"
88
 
@@ -104,7 +104,7 @@ msgstr ""
104
  "Twoja licencja wygasła. Aby podtrzymać szybki dostęp do pomocy i "
105
  "aktualizacji powinieneś przedłużyć licencję."
106
 
107
- #: bws_functions.php:147 bws_functions.php:389 deprecated.php:586
108
  msgid "Learn more"
109
  msgstr "Dowiedz się więcej"
110
 
@@ -121,7 +121,37 @@ msgstr "Uwaga: Wykorzystywana jest próbna licencja wtyczki."
121
  msgid "The Pro Trial license will expire on"
122
  msgstr "Licencja próbna wygaśnie"
123
 
124
- #: bws_functions.php:193
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
125
  msgid ""
126
  "or higher! We do not guarantee that our plugin will work correctly. Please "
127
  "upgrade to WordPress latest version."
@@ -129,113 +159,82 @@ msgstr ""
129
  "lub nowsza! Nie gwarantujemy, że nasza wtyczka będzie działała poprawnie. "
130
  "Proszę zaktualizować WordPress do najnowszej wersji."
131
 
132
- #: bws_functions.php:208
133
  #, php-format
134
  msgid "Thank you for installing %s plugin!"
135
  msgstr ""
136
 
137
- #: bws_functions.php:210
138
  msgid "Let's get started"
139
  msgstr "Zaczynajmny"
140
 
141
- #: bws_functions.php:211 bws_functions.php:244 bws_menu.php:564
142
- #: bws_menu.php:566
143
  msgid "Settings"
144
  msgstr "Ustawienia"
145
 
146
- #: bws_functions.php:213 bws_menu.php:326 class-bws-settings.php:747
147
- #: class-bws-settings.php:1060 class-bws-settings.php:1070 deprecated.php:697
148
  msgid "or"
149
  msgstr "lub"
150
 
151
- #: bws_functions.php:214 bws_functions.php:246
152
  msgid "Add New"
153
  msgstr "Dodaj nowy"
154
 
155
- #: bws_functions.php:218 bws_functions.php:228 bws_functions.php:332
156
- #: bws_functions.php:385 bws_functions.php:487
157
- msgid "Close notice"
158
- msgstr "Zamknij powiadomienie"
159
-
160
- #: bws_functions.php:233
161
  #, fuzzy
162
  msgid "Thank you for installing plugins by BestWebSoft!"
163
  msgstr "Dziękujemy za instalację"
164
 
165
- #: bws_functions.php:235
166
  #, fuzzy
167
  msgid "More Details"
168
  msgstr "Szczegóły"
169
 
170
- #: bws_functions.php:236
171
  #, fuzzy
172
  msgid "Less Details"
173
  msgstr "Szczegóły"
174
 
175
- #: bws_functions.php:264
176
  msgid "Deprecated function(-s) is used on the site here:"
177
  msgstr ""
178
 
179
- #: bws_functions.php:278
180
  msgid ""
181
  "This function(-s) will be removed over time. Please update the product(-s)."
182
  msgstr ""
183
 
184
- #: bws_functions.php:337
185
- msgid "It’s time to upgrade your"
186
- msgstr "Czas by zaktualizować"
187
-
188
- #: bws_functions.php:337
189
- msgid "to"
190
- msgstr "do"
191
-
192
- #: bws_functions.php:337
193
- msgid "version!"
194
- msgstr "wersji!"
195
-
196
- #: bws_functions.php:338
197
- msgid "Extend standard plugin functionality with new great options."
198
- msgstr "Rozszerz podstawowe funkcje wtyczki o nowe wspaniałe opcje."
199
-
200
- #: bws_functions.php:389
201
- #, fuzzy, php-format
202
- msgid ""
203
- "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
204
- "SUPPORT or UPDATES."
205
- msgstr ""
206
- "zostaniesz wówczas pozbawiony SZYBKIEGO DOSTĘDO DO SUPPORTU oraz "
207
- "AKTUALIZACJI."
208
-
209
- #: bws_functions.php:482
210
  #, php-format
211
  msgid "Thank you for choosing %s plugin!"
212
  msgstr ""
213
 
214
- #: bws_functions.php:483
215
  msgid ""
216
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
217
  "we'd love to hear about it!"
218
  msgstr ""
219
 
220
- #: bws_functions.php:484
221
  msgid "Suggest a Feature"
222
  msgstr ""
223
 
224
- #: bws_functions.php:500 class-bws-settings.php:540 class-bws-settings.php:543
225
- #: class-bws-settings.php:595 class-bws-settings.php:598
226
  msgid "Notice"
227
  msgstr "Uwaga"
228
 
229
- #: bws_functions.php:500
230
  msgid "The plugin's settings have been changed."
231
  msgstr "Ustawienia wtyczki zostały zmienione."
232
 
233
- #: bws_functions.php:501 class-bws-settings.php:183 class-bws-settings.php:203
234
- #: deprecated.php:642
235
  msgid "Save Changes"
236
  msgstr "Zapisz zmiany"
237
 
238
- #: bws_functions.php:515
239
  #, fuzzy
240
  msgid ""
241
  "You can always look at premium options by checking the \"Pro Options\" in "
@@ -244,82 +243,73 @@ msgstr ""
244
  "Zawsze możesz sprawdzić funkcje premium poprzez kliknięcie \"Pokaż funkcje "
245
  "PRO\" w zakładce \"Go PRO\""
246
 
247
- #: bws_functions.php:653
248
- msgid "Add BWS Shortcode"
249
- msgstr ""
250
-
251
- #: bws_functions.php:654
252
- msgid "Add BWS Plugins Shortcode"
253
- msgstr "Dodaj BWS Shortcode"
254
-
255
- #: bws_functions.php:673
256
  #, fuzzy
257
  msgid "Add shortcode"
258
  msgstr "Dodaj BWS Shortcode"
259
 
260
- #: bws_functions.php:673
261
  msgid "Add BestWebSoft plugins' shortcodes using this button."
262
  msgstr ""
263
 
264
- #: bws_functions.php:729
265
  msgid "Close"
266
  msgstr "Zamknij"
267
 
268
- #: bws_functions.php:821
269
  #, fuzzy
270
  msgid "Are you sure you want to restore default settings?"
271
  msgstr ""
272
  "Czy jesteś pewien, że chcesz przywrócić wszystkie ustawienia do wartości "
273
  "domyślnych?"
274
 
275
- #: bws_functions.php:824
276
  msgid "Yes, restore all settings"
277
  msgstr "Tak, przywróć wszystkie ustawienia"
278
 
279
- #: bws_functions.php:825
280
  msgid "No, go back to the settings page"
281
  msgstr "Nie, wróć do ustawień"
282
 
283
- #: bws_functions.php:867
284
  msgid "Plugin"
285
  msgstr "Wtyczka"
286
 
287
- #: bws_functions.php:876
288
  msgid "Shortcode settings"
289
  msgstr "Ustawienia shortcode"
290
 
291
- #: bws_functions.php:881
292
  msgid "The shortcode will be inserted"
293
  msgstr "Shortcode zostanie umieszczony"
294
 
295
- #: bws_functions.php:922
296
  msgid "FAQ"
297
  msgstr "FAQ"
298
 
299
- #: bws_functions.php:928
300
  msgid "For more information:"
301
  msgstr ""
302
 
303
- #: bws_functions.php:929
304
  msgid "Documentation"
305
  msgstr ""
306
 
307
- #: bws_functions.php:930
308
  msgid "Video Instructions"
309
  msgstr ""
310
 
311
- #: bws_functions.php:931
312
  #, fuzzy
313
  msgid "Submit a Request"
314
  msgstr "送信ボタン"
315
 
316
- #: bws_menu.php:101 class-bws-settings.php:792 deprecated.php:323
317
  msgid "Wrong license key"
318
  msgstr "Niepoprawny klucz licencji"
319
 
320
- #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
321
- #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
322
- #: deprecated.php:353
323
  msgid ""
324
  "Something went wrong. Please try again later. If the error appears again, "
325
  "please contact us"
@@ -327,33 +317,31 @@ msgstr ""
327
  "Coś poszło nie tak. Spróbuj ponownie później. Jeśli błąd pojawi się ponownie "
328
  "proszę skontaktować się z nami"
329
 
330
- #: bws_menu.php:122 class-bws-settings.php:818 class-bws-settings.php:885
331
- #: class-bws-settings.php:921 deprecated.php:133 deprecated.php:199
332
- #: deprecated.php:353
333
  msgid "We are sorry for inconvenience."
334
  msgstr "Przepraszamy za niedogodności."
335
 
336
- #: bws_menu.php:128 class-bws-settings.php:824 class-bws-settings.php:927
337
- #: deprecated.php:139 deprecated.php:359
338
  msgid "Wrong license key."
339
  msgstr "Niepoprawny klucz licencji"
340
 
341
- #: bws_menu.php:130
342
  #, fuzzy
343
  msgid ""
344
  "This license key is bound to another site. Change it via personal Client "
345
  "Area."
346
  msgstr "Klucz licencji został przypisany do innej strony."
347
 
348
- #: bws_menu.php:130
349
  msgid "Log in"
350
  msgstr ""
351
 
352
- #: bws_menu.php:132 bws_menu.php:332 deprecated.php:261
353
  msgid "Unfortunately, you have exceeded the number of available tries per day."
354
  msgstr "Niestety, przekroczono dzienną liczbę dostępnych prób."
355
 
356
- #: bws_menu.php:134 deprecated.php:365
357
  #, fuzzy, php-format
358
  msgid ""
359
  "Unfortunately, Your license has expired. To continue getting top-priority "
@@ -362,7 +350,7 @@ msgstr ""
362
  "Niestety, Twoja licencja wygasła. By nadal korzystać z szybkiego dostępu do "
363
  "wsparcia oraz aktualizacji powinieneś przedłużyć licencję."
364
 
365
- #: bws_menu.php:136 class-bws-settings.php:935 deprecated.php:367
366
  msgid ""
367
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
368
  "Trial license can be installed only once."
@@ -370,19 +358,19 @@ msgstr ""
370
  "Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
371
  "może być wykorzystana tylko raz."
372
 
373
- #: bws_menu.php:142 class-bws-settings.php:839 deprecated.php:153
374
  msgid "The license key is valid."
375
  msgstr "Klucz licencji jest poprawny"
376
 
377
- #: bws_menu.php:144 class-bws-settings.php:842 deprecated.php:156
378
  msgid "Your license will expire on"
379
  msgstr "Twoja licencja wygaśnie"
380
 
381
- #: bws_menu.php:146
382
  msgid "Congratulations! Pro Membership license is activated successfully."
383
  msgstr ""
384
 
385
- #: bws_menu.php:153 class-bws-settings.php:1007 deprecated.php:436
386
  msgid ""
387
  "Something went wrong. Try again later or upload the plugin manually. We are "
388
  "sorry for inconvenience."
@@ -390,227 +378,229 @@ msgstr ""
390
  "Coś poszło nie tak. Spróbuj ponowie później lub dodaj wtyczkę manualnie. "
391
  "Przepraszamy za niedogodności."
392
 
393
- #: bws_menu.php:163
394
  #, fuzzy
395
  msgid "Please enter your license key."
396
  msgstr "Podaj klucz licencji"
397
 
398
- #: bws_menu.php:174
399
  msgid "Not set"
400
  msgstr "Nie ustawiono"
401
 
402
- #: bws_menu.php:176
403
  msgid "On"
404
  msgstr "Włączone"
405
 
406
- #: bws_menu.php:176
407
  msgid "Off"
408
  msgstr "Wyłączone"
409
 
410
- #: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
411
- #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
412
  msgid "N/A"
413
  msgstr "Brak danych"
414
 
415
- #: bws_menu.php:182
416
- msgid " Mb"
 
 
417
  msgstr " Mb"
418
 
419
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
420
  msgid "Yes"
421
  msgstr "Tak"
422
 
423
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
424
  msgid "No"
425
  msgstr "Nie"
426
 
427
- #: bws_menu.php:196
428
  #, fuzzy
429
  msgid "WordPress Environment"
430
  msgstr "Środowisko"
431
 
432
- #: bws_menu.php:198
433
  msgid "Home URL"
434
  msgstr "Adres strony głównej:"
435
 
436
- #: bws_menu.php:199
437
  #, fuzzy
438
  msgid "Website URL"
439
  msgstr "Adres strony:"
440
 
441
- #: bws_menu.php:200
442
  #, fuzzy
443
  msgid "WP Version"
444
  msgstr "Wersja PHP"
445
 
446
- #: bws_menu.php:201
447
  #, fuzzy
448
  msgid "WP Multisite"
449
  msgstr "Multisite"
450
 
451
- #: bws_menu.php:202
452
  #, fuzzy
453
  msgid "WP Memory Limit"
454
  msgstr "PHP Limit pamięci"
455
 
456
- #: bws_menu.php:203
457
  msgid "Active Theme"
458
  msgstr "Aktywny motyw"
459
 
460
- #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
461
  #, fuzzy, php-format
462
  msgid "by %s"
463
  msgstr "Od %s"
464
 
465
- #: bws_menu.php:207
466
  #, fuzzy
467
  msgid "Server Environment"
468
  msgstr "Środowisko"
469
 
470
- #: bws_menu.php:209
471
  msgid "Operating System"
472
  msgstr "System operacyjny"
473
 
474
- #: bws_menu.php:210
475
  msgid "Server"
476
  msgstr "Serwer"
477
 
478
- #: bws_menu.php:211
479
  msgid "PHP Version"
480
  msgstr "Wersja PHP"
481
 
482
- #: bws_menu.php:212
483
  msgid "PHP Allow URL fopen"
484
  msgstr "Zezwól na PHP fopen"
485
 
486
- #: bws_menu.php:213
487
  msgid "PHP Memory Limit"
488
  msgstr "PHP Limit pamięci"
489
 
490
- #: bws_menu.php:214
491
  #, fuzzy
492
  msgid "Memory Usage"
493
  msgstr "Wykorzystanie pamięci"
494
 
495
- #: bws_menu.php:215
496
  msgid "PHP Max Upload Size"
497
  msgstr "PHP Max rozmiar przesyłanego pliku"
498
 
499
- #: bws_menu.php:216
500
  msgid "PHP Max Post Size"
501
  msgstr "PHP Max rozmiar przesyłania POST"
502
 
503
- #: bws_menu.php:217
504
  msgid "PHP Max Script Execute Time"
505
  msgstr "PHP Max czas przetwarzania skryptu"
506
 
507
- #: bws_menu.php:218
508
  msgid "PHP Exif support"
509
  msgstr "PHP Wsparcie Exif"
510
 
511
- #: bws_menu.php:219
512
  msgid "PHP IPTC support"
513
  msgstr "PHP Wsparcie IPTC"
514
 
515
- #: bws_menu.php:220
516
  msgid "PHP XML support"
517
  msgstr "PHP Wsparcie XML"
518
 
519
- #: bws_menu.php:226
520
  msgid "Database"
521
  msgstr ""
522
 
523
- #: bws_menu.php:228
524
  #, fuzzy
525
  msgid "WP DB version"
526
  msgstr "Wersja Bazy Danych dla WordPress"
527
 
528
- #: bws_menu.php:229
529
  #, fuzzy
530
  msgid "MySQL version"
531
  msgstr "Wersja MySQL"
532
 
533
- #: bws_menu.php:230
534
  msgid "SQL Mode"
535
  msgstr "Tryb SQL"
536
 
537
- #: bws_menu.php:234
538
  msgid "Active Plugins"
539
  msgstr "Aktywne wtyczki"
540
 
541
- #: bws_menu.php:239
542
  msgid "Inactive Plugins"
543
  msgstr "Nieaktywne wtyczki"
544
 
545
- #: bws_menu.php:260
546
  msgid "Please enter a valid email address."
547
  msgstr "Podaj poprawny adres email"
548
 
549
- #: bws_menu.php:262
550
  #, php-format
551
  msgid "Email with system info is sent to %s."
552
  msgstr ""
553
 
554
- #: bws_menu.php:266
555
  msgid "Thank you for contacting us."
556
  msgstr "Dziękujemy za kontakt."
557
 
558
- #: bws_menu.php:289
559
  msgid "Sorry, email message could not be delivered."
560
  msgstr "Przepraszamy, wiadomość nie została dostarczona."
561
 
562
- #: bws_menu.php:305 bws_menu.php:309 bws_menu.php:358 deprecated.php:91
563
  msgid "Plugins"
564
  msgstr "Wtyczki"
565
 
566
- #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:618 deprecated.php:92
567
  msgid "Themes"
568
  msgstr "Motywy"
569
 
570
- #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:648
571
  msgid "System status"
572
  msgstr "Status systemu"
573
 
574
- #: bws_menu.php:315
575
  msgid "Support"
576
  msgstr "サポート"
577
 
578
- #: bws_menu.php:316
579
  msgid "Manage purchased licenses & subscriptions"
580
  msgstr ""
581
 
582
- #: bws_menu.php:324
583
  #, php-format
584
  msgid "Get Access to %s+ Premium Plugins"
585
  msgstr ""
586
 
587
- #: bws_menu.php:326
588
  #, fuzzy
589
  msgid "Subscribe to Pro Membership"
590
  msgstr "有効なテーマ"
591
 
592
- #: bws_menu.php:334 bws_menu.php:345 class-bws-settings.php:760
593
- #: deprecated.php:227
594
  msgid "Check license key"
595
  msgstr "Sprawdź klucz licencji"
596
 
597
- #: bws_menu.php:337
598
  #, fuzzy
599
  msgid "Enter your license key"
600
  msgstr "Podaj klucz licencji"
601
 
602
- #: bws_menu.php:343 bws_menu.php:570 bws_menu.php:579
603
- #: class-bws-settings.php:739 deprecated.php:259 deprecated.php:267
604
- #: deprecated.php:631 deprecated.php:703 deprecated.php:712
605
  msgid "Activate"
606
  msgstr "Aktywuj"
607
 
608
- #: bws_menu.php:359
609
  #, fuzzy
610
  msgid "Upload Plugin"
611
  msgstr "Wtyczka"
612
 
613
- #: bws_menu.php:363
614
  #, php-format
615
  msgid ""
616
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -619,329 +609,310 @@ msgid ""
619
  "or removing this plugin."
620
  msgstr ""
621
 
622
- #: bws_menu.php:365
623
  msgid ""
624
  "Plugin could not be activated because it triggered a <strong>fatal error</"
625
  "strong>."
626
  msgstr ""
627
 
628
- #: bws_menu.php:368
629
  msgid "Plugin <strong>activated</strong>."
630
  msgstr ""
631
 
632
- #: bws_menu.php:375
633
  #, fuzzy
634
- msgid "Installing Plugin"
635
- msgstr "Zainstalowane"
636
 
637
- #: bws_menu.php:381
638
- msgid "Downloading install package from"
639
  msgstr ""
640
 
641
- #: bws_menu.php:398 bws_menu.php:429 bws_menu.php:440 deprecated.php:388
642
- #: deprecated.php:410 deprecated.php:432
643
- msgid "Failed to download the zip archive. Please, upload the plugin manually"
644
  msgstr ""
645
- "Pobieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
646
- "manualnie"
647
 
648
- #: bws_menu.php:406
649
- msgid "Unpacking the package"
650
- msgstr ""
 
 
651
 
652
- #: bws_menu.php:411 bws_menu.php:419
653
  #, fuzzy
654
- msgid "Installing the plugin"
655
  msgstr "Zainstalowane"
656
 
657
- #: bws_menu.php:415 deprecated.php:400
658
- msgid "Failed to open the zip archive. Please, upload the plugin manually"
659
  msgstr ""
660
- "Otwieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
661
- "manualnie"
662
 
663
- #: bws_menu.php:422 deprecated.php:406
664
- msgid ""
665
- "Your server does not support either ZipArchive or Phar. Please, upload the "
666
- "plugin manually"
667
- msgstr ""
668
- "Twój serwer nie wspiera ZipAcrchive lub Phar. Proszę dodać wtyczkę manualnie"
669
 
670
- #: bws_menu.php:425
671
- #, php-format
672
- msgid "The plugin %s is successfully installed."
673
  msgstr ""
674
 
675
- #: bws_menu.php:432 deprecated.php:413
676
- msgid "UploadDir is not writable. Please, upload the plugin manually"
677
  msgstr ""
678
- "Folder uploadu jest chroniony przez zapisem. Proszę dodać wtyczkę manualnie"
679
 
680
- #: bws_menu.php:437
681
  #, fuzzy
682
- msgid "Activate Plugin"
683
- msgstr "Aktywne wtyczki"
684
 
685
- #: bws_menu.php:437 bws_menu.php:443
686
  msgid "Return to BestWebSoft Panel"
687
  msgstr ""
688
 
689
- #: bws_menu.php:451 bws_menu.php:471 bws_menu.php:600
690
  msgid "All"
691
  msgstr "Wszystko"
692
 
693
- #: bws_menu.php:454 bws_menu.php:637
694
  msgid "Installed"
695
  msgstr "Zainstalowane"
696
 
697
- #: bws_menu.php:457
698
  #, fuzzy
699
  msgid "Not Installed"
700
  msgstr "Zainstalowane"
701
 
702
- #: bws_menu.php:464
703
  msgid "Filter results"
704
  msgstr ""
705
 
706
- #: bws_menu.php:467 bws_menu.php:596
707
  msgid "Category"
708
  msgstr ""
709
 
710
- #: bws_menu.php:531
711
  #, fuzzy
712
  msgid "Not installed"
713
  msgstr "Zainstalowane"
714
 
715
- #: bws_menu.php:535
716
  #, fuzzy
717
  msgid "Renew to get updates"
718
  msgstr "ページに転送"
719
 
720
- #: bws_menu.php:538
721
  #, fuzzy, php-format
722
  msgid "Update to v %s"
723
  msgstr "Aktualizuj do wersji %s"
724
 
725
- #: bws_menu.php:550 bws_menu.php:573 bws_menu.php:582
726
- msgid "Install Now"
727
- msgstr "Instaluj teraz"
728
 
729
- #: bws_menu.php:556 class-bws-settings.php:157 class-bws-settings.php:1067
730
  msgid "Upgrade to Pro"
731
  msgstr ""
732
 
733
- #: bws_menu.php:570 bws_menu.php:579
734
  msgid "Activate this plugin"
735
  msgstr "Aktywuj wtyczkę"
736
 
737
- #: bws_menu.php:582
738
  #, fuzzy
739
  msgid "Install this plugin"
740
  msgstr "Zainstalowane"
741
 
742
- #: bws_menu.php:591
 
 
 
 
743
  msgid "Nothing found. Try another criteria."
744
  msgstr ""
745
 
746
- #: bws_menu.php:628
747
  #, php-format
748
  msgid "By %s"
749
  msgstr "Od %s"
750
 
751
- #: bws_menu.php:635
752
  msgid "Already Installed"
753
  msgstr "Zainstalowane"
754
 
755
- #: bws_menu.php:645
756
  msgid "Browse More WordPress Themes"
757
  msgstr ""
758
 
759
- #: bws_menu.php:654
760
  msgid "Send to support"
761
  msgstr "Wyślij do supportu"
762
 
763
- #: bws_menu.php:661
764
  msgid "Send to custom email &#187;"
765
  msgstr "Prześlij na własny adres &#187;"
766
 
767
- #: class-bws-settings.php:136
768
  msgid "Information"
769
  msgstr ""
770
 
771
- #: class-bws-settings.php:144
772
  #, fuzzy
773
  msgid "Inactive"
774
  msgstr "Nieaktywne wtyczki"
775
 
776
- #: class-bws-settings.php:152
777
  msgid "Expired"
778
  msgstr ""
779
 
780
- #: class-bws-settings.php:155
781
  #, php-format
782
  msgid "%s day(-s) left"
783
  msgstr ""
784
 
785
- #: class-bws-settings.php:161
786
  #, fuzzy, php-format
787
  msgid "Expired on %s"
788
  msgstr "wygasa"
789
 
790
- #: class-bws-settings.php:161
791
  msgid "Renew Now"
792
  msgstr ""
793
 
794
- #: class-bws-settings.php:163
795
  #, fuzzy
796
  msgid "Active"
797
  msgstr "Aktywuj"
798
 
799
- #: class-bws-settings.php:168
800
  #, fuzzy
801
  msgid "License"
802
  msgstr "Niepoprawny klucz licencji"
803
 
804
- #: class-bws-settings.php:171
805
  #, fuzzy
806
  msgid "Status"
807
  msgstr "Status systemu"
808
 
809
- #: class-bws-settings.php:175
810
  #, fuzzy
811
  msgid "Version"
812
  msgstr "wersji!"
813
 
814
- #: class-bws-settings.php:285
815
  #, fuzzy
816
  msgid "All plugin settings were restored."
817
  msgstr "Ustawienia wtyczki zostały zmienione."
818
 
819
- #: class-bws-settings.php:423
820
  msgid "Custom Code"
821
  msgstr ""
822
 
823
- #: class-bws-settings.php:427 deprecated.php:498
824
  msgid "You do not have sufficient permissions to edit plugins for this site."
825
  msgstr ""
826
 
827
- #: class-bws-settings.php:432 deprecated.php:620
828
  msgid "These styles will be added to the header on all pages of your site."
829
  msgstr ""
830
 
831
- #: class-bws-settings.php:435 deprecated.php:622
832
  #, php-format
833
  msgid ""
834
  "This PHP code will be hooked to the %s action and will be printed on front "
835
  "end only."
836
  msgstr ""
837
 
838
- #: class-bws-settings.php:438
839
  msgid "These code will be added to the header on all pages of your site."
840
  msgstr ""
841
 
842
- #: class-bws-settings.php:446 deprecated.php:646
843
  #, php-format
844
  msgid ""
845
  "You need to make this files writable before you can save your changes. See "
846
  "%s the Codex %s for more information."
847
  msgstr ""
848
 
849
- #: class-bws-settings.php:456 deprecated.php:628
850
  msgid "Browsing"
851
  msgstr ""
852
 
853
- #: class-bws-settings.php:461
854
  #, php-format
855
  msgid "Activate custom %s code."
856
  msgstr ""
857
 
858
- #: class-bws-settings.php:469 deprecated.php:635
859
  #, fuzzy, php-format
860
  msgid "Learn more about %s"
861
  msgstr "Dowiedz się więcej"
862
 
863
- #: class-bws-settings.php:531
864
  msgid "Miscellaneous Settings"
865
  msgstr ""
866
 
867
- #: class-bws-settings.php:540 class-bws-settings.php:595
868
  #, php-format
869
  msgid ""
870
  "It is prohibited to change %s settings on this site in the %s network "
871
  "settings."
872
  msgstr ""
873
 
874
- #: class-bws-settings.php:543 class-bws-settings.php:598
875
  #, php-format
876
  msgid ""
877
  "It is prohibited to view %s settings on this site in the %s network settings."
878
  msgstr ""
879
 
880
- #: class-bws-settings.php:552
881
  #, fuzzy
882
  msgid "Pro Options"
883
  msgstr "Pro Plugins"
884
 
885
- #: class-bws-settings.php:556
886
  msgid "Enable to display plugin Pro options."
887
  msgstr ""
888
 
889
- #: class-bws-settings.php:562
890
  msgid "Track Usage"
891
  msgstr ""
892
 
893
- #: class-bws-settings.php:566
894
  msgid ""
895
  "Enable to allow tracking plugin usage anonymously in order to make it better."
896
  msgstr ""
897
 
898
- #: class-bws-settings.php:571
899
  #, fuzzy
900
  msgid "Default Settings"
901
  msgstr "Ustawienia"
902
 
903
- #: class-bws-settings.php:573
904
  #, fuzzy
905
  msgid "Restore Settings"
906
  msgstr "Przywróć ustawienia"
907
 
908
- #: class-bws-settings.php:574
909
  #, fuzzy
910
  msgid "This will restore plugin settings to defaults."
911
  msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
912
 
913
- #: class-bws-settings.php:586
914
  msgid "Import / Export"
915
  msgstr ""
916
 
917
- #: class-bws-settings.php:702 class-bws-settings.php:735
918
- #: class-bws-settings.php:757
919
  #, fuzzy
920
  msgid "License Key"
921
  msgstr "Niepoprawny klucz licencji"
922
 
923
- #: class-bws-settings.php:725
924
- #, fuzzy
925
- msgid "Congratulations! Pro license is activated successfully."
926
- msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
927
-
928
- #: class-bws-settings.php:726
929
- #, php-format
930
- msgid "You will be automatically redirected to the %s in %s seconds."
931
- msgstr ""
932
-
933
- #: class-bws-settings.php:726
934
- #, fuzzy
935
- msgid "Settings page"
936
- msgstr "設定保存."
937
-
938
- #: class-bws-settings.php:741
939
  #, php-format
940
  msgid "Enter your license key to activate %s and get premium plugin features."
941
  msgstr ""
942
 
943
- #: class-bws-settings.php:744 class-bws-settings.php:931 deprecated.php:363
944
- #: deprecated.php:706
945
  msgid ""
946
  "Unfortunately, you have exceeded the number of available tries per day. "
947
  "Please, upload the plugin manually."
@@ -949,12 +920,12 @@ msgstr ""
949
  "Niestety, przekroczono liczb dostępnych prób na dziś. Proszę dodać wtyczkę "
950
  "manualnie."
951
 
952
- #: class-bws-settings.php:747 deprecated.php:697
953
  #, php-format
954
  msgid "Start Your Free %s-Day Trial Now"
955
  msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
956
 
957
- #: class-bws-settings.php:762
958
  #, fuzzy
959
  msgid ""
960
  "If necessary, you can check if the license key is correct or reenter it in "
@@ -964,28 +935,27 @@ msgstr ""
964
  "w polu poniżej. Możesz znaleźć swój klucz na naszej stronie w strefie - "
965
  "Panel Klienta"
966
 
967
- #: class-bws-settings.php:767
968
  msgid "Manage License Settings"
969
  msgstr ""
970
 
971
- #: class-bws-settings.php:769
972
  #, fuzzy
973
  msgid "Login to Client Area"
974
  msgstr "Panel Klienta"
975
 
976
- #: class-bws-settings.php:771
977
  msgid ""
978
  "Manage active licenses, download BWS products, and view your payment history "
979
  "using BestWebSoft Client Area."
980
  msgstr ""
981
 
982
- #: class-bws-settings.php:826 class-bws-settings.php:929 deprecated.php:141
983
- #: deprecated.php:361
984
  #, fuzzy
985
  msgid "This license key is bound to another site."
986
  msgstr "Klucz licencji został przypisany do innej strony."
987
 
988
- #: class-bws-settings.php:828 deprecated.php:143
989
  msgid ""
990
  "This license key is valid, but Your license has expired. If you want to "
991
  "update our plugin in future, you should extend the license."
@@ -993,11 +963,11 @@ msgstr ""
993
  "Klucz jest poprawny, jednak Twoja licencja wygasła. Jeśli chcesz "
994
  "aktualizować naszą wtyczkę w przyszłości powinieneś przedłużyć licencję."
995
 
996
- #: class-bws-settings.php:830 deprecated.php:145
997
  msgid "Unfortunately, you have exceeded the number of available tries."
998
  msgstr "Niestety, przekroczono liczbę dostępnych prób."
999
 
1000
- #: class-bws-settings.php:832 deprecated.php:147
1001
  msgid ""
1002
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
1003
  "The Pro Trial license can be installed only once."
@@ -1005,11 +975,11 @@ msgstr ""
1005
  "Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
1006
  "może być wykorzystana tylko raz."
1007
 
1008
- #: class-bws-settings.php:837 deprecated.php:151
1009
  msgid "The Pro Trial license key is valid."
1010
  msgstr "Klucz licencji do testowej wersji PRO jest poprawny."
1011
 
1012
- #: class-bws-settings.php:845 deprecated.php:159 deprecated.php:246
1013
  #, php-format
1014
  msgid ""
1015
  "In order to continue using the plugin it is necessary to buy a %s license."
@@ -1017,160 +987,142 @@ msgstr ""
1017
  "W celu dalszego wykorzystywania wtyczki niezbędne jest wykupienie licencji "
1018
  "%s."
1019
 
1020
- #: class-bws-settings.php:933
1021
  #, php-format
1022
  msgid ""
1023
  "Unfortunately, Your license has expired. To continue getting top-priority "
1024
  "support and plugin updates, you should extend it in your %s."
1025
  msgstr ""
1026
 
1027
- #: class-bws-settings.php:959 class-bws-settings.php:981
1028
- #: class-bws-settings.php:1003
1029
- msgid "Failed to download the zip archive. Please, upload the plugin manually."
1030
- msgstr ""
1031
-
1032
- #: class-bws-settings.php:971
1033
- msgid "Failed to open the zip archive. Please, upload the plugin manually."
1034
- msgstr ""
1035
-
1036
- #: class-bws-settings.php:977
1037
- msgid ""
1038
- "Your server does not support either ZipArchive or Phar. Please, upload the "
1039
- "plugin manually."
1040
- msgstr ""
1041
-
1042
- #: class-bws-settings.php:984
1043
- msgid "UploadDir is not writable. Please, upload the plugin manually."
1044
- msgstr ""
1045
-
1046
- #: class-bws-settings.php:1042 deprecated.php:464
1047
  msgid "Please, enter Your license key"
1048
  msgstr "Proszę podać klucz licencji."
1049
 
1050
- #: class-bws-settings.php:1054
1051
  #, fuzzy
1052
  msgid "Need Help?"
1053
  msgstr "Potrzebujesz pomocy?"
1054
 
1055
- #: class-bws-settings.php:1056
1056
  msgid "Read the Instruction"
1057
  msgstr ""
1058
 
1059
- #: class-bws-settings.php:1060
1060
  msgid "Watch the Video"
1061
  msgstr ""
1062
 
1063
- #: class-bws-settings.php:1071
1064
  #, fuzzy
1065
  msgid "Start Your Free Trial"
1066
  msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
1067
 
1068
- #: deactivation-form.php:27
1069
- msgid "Need help? We are ready to answer your questions."
1070
  msgstr ""
1071
 
1072
- #: deactivation-form.php:27
1073
- msgid "Contact Support"
 
1074
  msgstr ""
1075
 
1076
- #: deactivation-form.php:32
1077
- msgid "The plugin is not working"
1078
  msgstr ""
1079
 
1080
- #: deactivation-form.php:34
1081
- msgid "Kindly share what didn't work so we can fix it in future updates..."
1082
  msgstr ""
1083
 
1084
- #: deactivation-form.php:38
1085
- msgid "The plugin didn't work as expected"
 
 
 
 
 
 
 
 
1086
  msgstr ""
1087
 
1088
- #: deactivation-form.php:40
1089
- msgid "What did you expect?"
1090
  msgstr ""
1091
 
1092
- #: deactivation-form.php:44
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1093
  msgid "The plugin suddenly stopped working"
1094
  msgstr ""
1095
 
1096
- #: deactivation-form.php:51
1097
  msgid "The plugin broke my site"
1098
  msgstr ""
1099
 
1100
- #: deactivation-form.php:58
1101
  msgid "I couldn't understand how to get it work"
1102
  msgstr ""
1103
 
1104
- #: deactivation-form.php:65
1105
  msgid "I found a better plugin"
1106
  msgstr ""
1107
 
1108
- #: deactivation-form.php:67
1109
- msgid "What's the plugin name?"
1110
- msgstr ""
1111
-
1112
- #: deactivation-form.php:71
1113
  msgid "The plugin is great, but I need specific feature that you don't support"
1114
  msgstr ""
1115
 
1116
- #: deactivation-form.php:73
1117
- msgid "What feature?"
1118
- msgstr ""
1119
-
1120
- #: deactivation-form.php:77
1121
  msgid "I no longer need the plugin"
1122
  msgstr ""
1123
 
1124
- #: deactivation-form.php:83
1125
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1126
  msgstr ""
1127
 
1128
- #: deactivation-form.php:89
1129
  msgid "Other"
1130
  msgstr ""
1131
 
1132
- #: deactivation-form.php:123
1133
  msgid "Quick Feedback"
1134
  msgstr ""
1135
 
1136
- #: deactivation-form.php:124
1137
  msgid "If you have a moment, please let us know why you are deactivating"
1138
  msgstr ""
1139
 
1140
- #: deactivation-form.php:129
1141
- msgid "Anonymous feedback"
1142
  msgstr ""
1143
 
1144
- #: deactivation-form.php:131
1145
- msgid "Cancel"
1146
  msgstr ""
1147
 
1148
- #: deactivation-form.php:229
1149
- msgid "Processing"
1150
- msgstr ""
1151
-
1152
- #: deactivation-form.php:258
1153
- msgid "Submit & Deactivate"
1154
- msgstr ""
1155
-
1156
- #: deactivation-form.php:273
1157
  msgid "Please tell us the reason so we can improve it."
1158
  msgstr ""
1159
 
1160
- #: deactivation-form.php:341
1161
- msgid "Deactivate"
1162
- msgstr ""
1163
-
1164
- #: deprecated.php:93
1165
  #, fuzzy
1166
  msgid "System Status"
1167
  msgstr "Status systemu"
1168
 
1169
- #: deprecated.php:204
1170
- msgid "Please, enter your license key"
1171
- msgstr "Podaj klucz licencji"
1172
-
1173
- #: deprecated.php:223
1174
  #, fuzzy
1175
  msgid ""
1176
  "If necessary, you can check if the license key is correct or reenter it in "
@@ -1181,7 +1133,7 @@ msgstr ""
1181
  "w polu poniżej. Możesz znaleźć swój klucz na naszej stronie w strefie - "
1182
  "Panel Klienta"
1183
 
1184
- #: deprecated.php:223
1185
  #, fuzzy
1186
  msgid ""
1187
  "(your username is the email address specified during the purchase). If "
@@ -1190,397 +1142,420 @@ msgstr ""
1190
  "(login to adres email podany przy zakupie). Jeśli to koniczne użyj opcji "
1191
  "\"Zgubiłeś swoje hasło?\"."
1192
 
1193
- #: deprecated.php:246
1194
  #, fuzzy
1195
  msgid "After that, you can activate it by entering your license key."
1196
  msgstr "Po wszystkim możesz aktywować wtyczkę poprzez podanie klucza licencji."
1197
 
1198
- #: deprecated.php:249 deprecated.php:691
1199
  msgid "License key can be found in the"
1200
  msgstr ""
1201
 
1202
- #: deprecated.php:251 deprecated.php:693
1203
  #, fuzzy
1204
  msgid "(your username is the email address specified during the purchase)."
1205
  msgstr "(twoja nazwa użytkownika to email podany podczas zakupu)."
1206
 
1207
- #: deprecated.php:279
1208
  #, fuzzy
1209
  msgid ""
1210
  "Congratulations! The Pro license of the plugin is activated successfully."
1211
  msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
1212
 
1213
- #: deprecated.php:281 deprecated.php:672
1214
  msgid "Please, go to"
1215
  msgstr "Proszę przejść do"
1216
 
1217
- #: deprecated.php:281 deprecated.php:672
1218
  msgid "the setting page"
1219
  msgstr "ustawień"
1220
 
1221
- #: deprecated.php:282 deprecated.php:673
1222
- msgid "You will be redirected automatically in 5 seconds."
1223
- msgstr "Zostaniesz automatycznie przekierowany w ciągu 5 sekund."
1224
-
1225
- #: deprecated.php:316
1226
- msgid "Check premium options on the plugin settings page!"
1227
- msgstr "Sprawdź dodatkowe opcje premium w ustawieniach wtyczki."
1228
-
1229
- #: deprecated.php:479
1230
  msgid "Restore all plugin settings to defaults"
1231
  msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
1232
 
1233
- #: deprecated.php:481
1234
  msgid "Restore settings"
1235
  msgstr "Przywróć ustawienia"
1236
 
1237
- #: deprecated.php:550 deprecated.php:577
1238
- #, php-format
1239
- msgid "File %s edited successfully."
1240
- msgstr ""
1241
-
1242
- #: deprecated.php:552 deprecated.php:579
1243
- msgid "Not enough permissions to create or update the file"
1244
- msgstr ""
1245
-
1246
- #: deprecated.php:582
1247
- msgid "Not enough permissions to create the file"
1248
- msgstr ""
1249
-
1250
- #: deprecated.php:626
1251
- msgid "Editing"
1252
- msgstr ""
1253
-
1254
- #: deprecated.php:670
1255
  #, fuzzy
1256
  msgid ""
1257
  "Congratulations! Pro version of the plugin is installed and activated "
1258
  "successfully."
1259
  msgstr "Gratulacje! Wersja PRO została pobrana i aktywowana pomyślnie."
1260
 
1261
- #: deprecated.php:680
1262
  msgid "Show Pro features"
1263
  msgstr "Pokaż funkcje PRO"
1264
 
1265
- #: deprecated.php:687
1266
  msgid "Enter your license key to install and activate"
1267
  msgstr ""
1268
 
1269
- #: deprecated.php:689
1270
  #, fuzzy
1271
  msgid "version of the plugin."
1272
  msgstr "Oceń wtyczkę"
1273
 
1274
- #: product_list.php:7
1275
  msgid "Admin Tools"
1276
  msgstr ""
1277
 
1278
- #: product_list.php:8
1279
  msgid "Content"
1280
  msgstr ""
1281
 
1282
- #: product_list.php:9
1283
  msgid "eCommerce"
1284
  msgstr ""
1285
 
1286
- #: product_list.php:10
1287
  msgid "Marketing"
1288
  msgstr ""
1289
 
1290
- #: product_list.php:11
1291
  msgid "Navigation"
1292
  msgstr ""
1293
 
1294
- #: product_list.php:12
1295
  msgid "Recommended"
1296
  msgstr "Polecane"
1297
 
1298
- #: product_list.php:13
1299
  msgid "Security"
1300
  msgstr ""
1301
 
1302
- #: product_list.php:14
1303
  msgid "SEO"
1304
  msgstr ""
1305
 
1306
- #: product_list.php:15
1307
  msgid "SMM"
1308
  msgstr ""
1309
 
1310
  #: product_list.php:23
1311
- msgid ""
1312
- "Protect WordPress website forms from spam entries by means of math logic."
1313
  msgstr ""
1314
 
1315
  #: product_list.php:35
1316
- msgid "Create your personal car rental/booking and reservation website."
1317
  msgstr ""
1318
 
1319
  #: product_list.php:45
 
 
 
 
 
 
 
 
 
 
1320
  msgid ""
1321
  "Allow customers to reach you using secure contact form plugin any website "
1322
  "must have."
1323
  msgstr ""
1324
 
1325
- #: product_list.php:55
1326
  msgid "Add unlimited number of contact forms to WordPress website."
1327
  msgstr ""
1328
 
1329
- #: product_list.php:65
1330
  msgid "Save and manage Contact Form messages. Never lose important data."
1331
  msgstr ""
1332
 
1333
- #: product_list.php:75
1334
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1335
  msgstr ""
1336
 
1337
- #: product_list.php:82
1338
- msgid "Add custom fields to WordPress website search results."
1339
- msgstr ""
1340
-
1341
- #: product_list.php:89
1342
  msgid ""
1343
  "Add custom post types and taxonomies to WordPress website search results."
1344
  msgstr ""
1345
 
1346
- #: product_list.php:99
1347
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1348
  msgstr ""
1349
 
1350
- #: product_list.php:106
1351
  msgid ""
1352
  "Get latest error log messages to diagnose website problems. Define and fix "
1353
  "issues faster."
1354
  msgstr ""
1355
 
1356
- #: product_list.php:113
1357
  msgid ""
1358
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1359
  "widgets."
1360
  msgstr ""
1361
 
1362
- #: product_list.php:123
1363
  msgid ""
1364
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1365
  "clicks."
1366
  msgstr ""
1367
 
1368
- #: product_list.php:133
1369
- msgid ""
1370
- "Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
1371
- "posts, pages and widgets."
1372
- msgstr ""
1373
-
1374
- #: product_list.php:143
1375
  msgid ""
1376
  "Stronger security solution which protects your WordPress website from hacks "
1377
  "and unauthorized login attempts."
1378
  msgstr ""
1379
 
1380
- #: product_list.php:153
1381
  msgid ""
1382
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1383
  "results, categories, tags, and widgets."
1384
  msgstr ""
1385
 
1386
- #: product_list.php:163
1387
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1388
  msgstr ""
1389
 
1390
- #: product_list.php:173
1391
- msgid ""
1392
- "Protect WordPress website forms from spam entries with Google Captcha "
1393
- "(reCaptcha)."
1394
  msgstr ""
1395
 
1396
- #: product_list.php:183
1397
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1398
  msgstr ""
1399
 
1400
- #: product_list.php:193
1401
  msgid ""
1402
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1403
  "your blog."
1404
  msgstr ""
1405
 
1406
- #: product_list.php:203
1407
  msgid ""
1408
  "Replace external WordPress website links with Google shortlinks and track "
1409
  "click stats."
1410
  msgstr ""
1411
 
1412
- #: product_list.php:210
1413
  msgid ""
1414
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1415
  "hostnames, etc."
1416
  msgstr ""
1417
 
1418
- #: product_list.php:220
1419
  msgid ""
1420
  "Create your personal job board and listing WordPress website. Search jobs, "
1421
  "submit CV/resumes, choose candidates."
1422
  msgstr ""
1423
 
1424
- #: product_list.php:227
1425
  msgid ""
1426
  "Protect WordPress website against brute force attacks. Limit rate of login "
1427
  "attempts."
1428
  msgstr ""
1429
 
1430
- #: product_list.php:237
1431
  msgid ""
1432
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1433
  "5 plugins included – profile, insider, etc."
1434
  msgstr ""
1435
 
1436
- #: product_list.php:247
1437
  msgid ""
1438
  "Translate WordPress website content to other languages manually. Create "
1439
  "multilingual pages, posts, widgets, menus, etc."
1440
  msgstr ""
1441
 
1442
- #: product_list.php:257
1443
  msgid ""
1444
  "Add customizable pagination to WordPress website. Split long content to "
1445
  "multiple pages for better navigation."
1446
  msgstr ""
1447
 
1448
- #: product_list.php:267
1449
  msgid ""
1450
  "Generate PDF files and print WordPress posts/pages. Customize document "
1451
  "header/footer styles and appearance."
1452
  msgstr ""
1453
 
1454
- #: product_list.php:277
1455
  msgid ""
1456
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1457
  "Profile) to WordPress posts, pages and widgets."
1458
  msgstr ""
1459
 
1460
- #: product_list.php:287
1461
  msgid ""
1462
  "Create your personal portfolio WordPress website. Manage and showcase past "
1463
  "projects to get more clients."
1464
  msgstr ""
1465
 
1466
- #: product_list.php:297
1467
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1468
  msgstr ""
1469
 
1470
- #: product_list.php:304
1471
  msgid ""
1472
  "Add extra fields to default WordPress user profile. The easiest way to "
1473
  "create and manage additional custom values."
1474
  msgstr ""
1475
 
1476
- #: product_list.php:311
1477
  msgid ""
1478
  "Add and display HTML advertisement banner on WordPress website. Customize "
1479
  "bar styles and appearance."
1480
  msgstr ""
1481
 
1482
- #: product_list.php:321
1483
  msgid ""
1484
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1485
  "widgets."
1486
  msgstr ""
1487
 
1488
- #: product_list.php:328
1489
  msgid ""
1490
  "Add rating plugin to your WordPress website to receive feedback from your "
1491
  "customers."
1492
  msgstr ""
1493
 
1494
- #: product_list.php:335
1495
  msgid ""
1496
  "Create your personal real estate WordPress website. Sell, rent and buy "
1497
  "properties. Add, search and browse listings easily."
1498
  msgstr ""
1499
 
1500
- #: product_list.php:345
1501
  msgid ""
1502
  "Add related, featured, latest, and popular posts to your WordPress website. "
1503
  "Connect your blog readers with a relevant content."
1504
  msgstr ""
1505
 
1506
- #: product_list.php:352
1507
  msgid ""
1508
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1509
  "settings and detailed reports."
1510
  msgstr ""
1511
 
1512
- #: product_list.php:362
1513
  msgid ""
1514
  "The best responsive slider plugin for your WordPress website. Create "
1515
  "beautifully animated slides just in a few clicks."
1516
  msgstr ""
1517
 
1518
- #: product_list.php:369
1519
  msgid ""
1520
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1521
  "Yahoo, Hotmail and other services."
1522
  msgstr ""
1523
 
1524
- #: product_list.php:376
1525
  msgid ""
1526
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1527
- "FB, Twitter, G+1, Pinterest, LinkedIn."
1528
  msgstr ""
1529
 
1530
- #: product_list.php:386
1531
  msgid ""
1532
  "Add social media login, registration, and commenting to your WordPress "
1533
  "website."
1534
  msgstr ""
1535
 
1536
- #: product_list.php:393
1537
  msgid ""
1538
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1539
  "Collect data and subscribe your users."
1540
  msgstr ""
1541
 
1542
- #: product_list.php:403
1543
  msgid ""
1544
  "Add testimonials and feedbacks from your customers to WordPress website "
1545
  "posts, pages, and widgets."
1546
  msgstr ""
1547
 
1548
- #: product_list.php:410
1549
  msgid ""
1550
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1551
  "attendance and generate reports."
1552
  msgstr ""
1553
 
1554
- #: product_list.php:420
1555
  msgid ""
1556
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1557
  "and pages."
1558
  msgstr ""
1559
 
1560
- #: product_list.php:430
1561
  msgid ""
1562
  "Automatically check and update WordPress website core with all installed "
1563
  "plugins and themes to the latest versions."
1564
  msgstr ""
1565
 
1566
- #: product_list.php:440
1567
  msgid ""
1568
  "Powerful user role management plugin for WordPress website. Create, edit, "
1569
  "copy, and delete user roles."
1570
  msgstr ""
1571
 
1572
- #: product_list.php:450
1573
  msgid ""
1574
  "Display live count of online visitors who are currently browsing your "
1575
  "WordPress website."
1576
  msgstr ""
1577
 
1578
- #: product_list.php:460
1579
  msgid ""
1580
  "Backup and export Zendesk Help Center content automatically to your "
1581
  "WordPress website database."
1582
  msgstr ""
1583
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1584
  #, fuzzy
1585
  #~ msgid "Congratulations! Pro Membership license is activated successfully."
1586
  #~ msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
@@ -1638,10 +1613,6 @@ msgstr ""
1638
  #~ msgid "Please, go to %s"
1639
  #~ msgstr "Proszę przejść do"
1640
 
1641
- #, fuzzy
1642
- #~ msgid "Client Area"
1643
- #~ msgstr "Panel Klienta"
1644
-
1645
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
1646
  #~ msgstr "Jeśli polubiłeś naszą wtyczkę daj nam 5 gwiazdek"
1647
 
@@ -1709,9 +1680,6 @@ msgstr ""
1709
  #~ msgid "Free plugins"
1710
  #~ msgstr "無料プラグイン"
1711
 
1712
- #~ msgid "Download"
1713
- #~ msgstr "ダウンロード"
1714
-
1715
  #~ msgid "Install now from wordpress.org"
1716
  #~ msgstr "wordpress.org から直ぐに導入"
1717
 
@@ -1760,9 +1728,6 @@ msgstr ""
1760
  #~ msgid "Send me a copy"
1761
  #~ msgstr "コピーを自分に送る"
1762
 
1763
- #~ msgid "Submit"
1764
- #~ msgstr "送信"
1765
-
1766
  #~ msgid "Your name is required."
1767
  #~ msgstr "名前は必須です。"
1768
 
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-02-15 10:54+0200\n"
6
+ "PO-Revision-Date: 2021-02-15 10:54+0200\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: Damian Dąbrowski <contact@codester.pl>\n"
9
  "Language: pl_PL\n"
13
  "X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 2.4.2\n"
17
  "Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
18
  "|| n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: bws_functions.php:73 bws_functions.php:239
22
  msgid "requires"
23
  msgstr "wymaga wersja"
24
 
56
  msgid "Need help?"
57
  msgstr "Potrzebujesz pomocy?"
58
 
59
+ #: bws_functions.php:104 bws_functions.php:949 class-bws-settings.php:1082
60
  msgid "Visit Help Center"
61
  msgstr ""
62
 
65
  msgid "Want to support the plugin?"
66
  msgstr "Oceń wtyczkę"
67
 
68
+ #: bws_functions.php:108 bws_menu.php:529
69
  msgid "Donate"
70
  msgstr ""
71
 
81
  "otherwise the Pro plugin will be deactivated."
82
  msgstr ""
83
 
84
+ #: bws_functions.php:128 bws_functions.php:208 bws_menu.php:600
85
+ #: class-bws-settings.php:179
86
  msgid "Learn More"
87
  msgstr "Dowiedz się więcej"
88
 
104
  "Twoja licencja wygasła. Aby podtrzymać szybki dostęp do pomocy i "
105
  "aktualizacji powinieneś przedłużyć licencję."
106
 
107
+ #: bws_functions.php:147 bws_functions.php:226
108
  msgid "Learn more"
109
  msgstr "Dowiedz się więcej"
110
 
121
  msgid "The Pro Trial license will expire on"
122
  msgstr "Licencja próbna wygaśnie"
123
 
124
+ #: bws_functions.php:199 bws_functions.php:222 bws_functions.php:266
125
+ #: bws_functions.php:276 bws_functions.php:475
126
+ msgid "Close notice"
127
+ msgstr "Zamknij powiadomienie"
128
+
129
+ #: bws_functions.php:204
130
+ msgid "It’s time to upgrade your"
131
+ msgstr "Czas by zaktualizować"
132
+
133
+ #: bws_functions.php:204
134
+ msgid "to"
135
+ msgstr "do"
136
+
137
+ #: bws_functions.php:204
138
+ msgid "version!"
139
+ msgstr "wersji!"
140
+
141
+ #: bws_functions.php:205
142
+ msgid "Extend standard plugin functionality with new great options."
143
+ msgstr "Rozszerz podstawowe funkcje wtyczki o nowe wspaniałe opcje."
144
+
145
+ #: bws_functions.php:226
146
+ #, fuzzy, php-format
147
+ msgid ""
148
+ "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
149
+ "SUPPORT or UPDATES."
150
+ msgstr ""
151
+ "zostaniesz wówczas pozbawiony SZYBKIEGO DOSTĘDO DO SUPPORTU oraz "
152
+ "AKTUALIZACJI."
153
+
154
+ #: bws_functions.php:241
155
  msgid ""
156
  "or higher! We do not guarantee that our plugin will work correctly. Please "
157
  "upgrade to WordPress latest version."
159
  "lub nowsza! Nie gwarantujemy, że nasza wtyczka będzie działała poprawnie. "
160
  "Proszę zaktualizować WordPress do najnowszej wersji."
161
 
162
+ #: bws_functions.php:256
163
  #, php-format
164
  msgid "Thank you for installing %s plugin!"
165
  msgstr ""
166
 
167
+ #: bws_functions.php:258
168
  msgid "Let's get started"
169
  msgstr "Zaczynajmny"
170
 
171
+ #: bws_functions.php:259 bws_functions.php:292 bws_menu.php:533
172
+ #: bws_menu.php:535
173
  msgid "Settings"
174
  msgstr "Ustawienia"
175
 
176
+ #: bws_functions.php:261 bws_menu.php:327 class-bws-settings.php:809
177
+ #: class-bws-settings.php:1084 class-bws-settings.php:1094 deprecated.php:234
178
  msgid "or"
179
  msgstr "lub"
180
 
181
+ #: bws_functions.php:262 bws_functions.php:294
182
  msgid "Add New"
183
  msgstr "Dodaj nowy"
184
 
185
+ #: bws_functions.php:281
 
 
 
 
 
186
  #, fuzzy
187
  msgid "Thank you for installing plugins by BestWebSoft!"
188
  msgstr "Dziękujemy za instalację"
189
 
190
+ #: bws_functions.php:283
191
  #, fuzzy
192
  msgid "More Details"
193
  msgstr "Szczegóły"
194
 
195
+ #: bws_functions.php:284
196
  #, fuzzy
197
  msgid "Less Details"
198
  msgstr "Szczegóły"
199
 
200
+ #: bws_functions.php:312
201
  msgid "Deprecated function(-s) is used on the site here:"
202
  msgstr ""
203
 
204
+ #: bws_functions.php:326
205
  msgid ""
206
  "This function(-s) will be removed over time. Please update the product(-s)."
207
  msgstr ""
208
 
209
+ #: bws_functions.php:470
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
210
  #, php-format
211
  msgid "Thank you for choosing %s plugin!"
212
  msgstr ""
213
 
214
+ #: bws_functions.php:471
215
  msgid ""
216
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
217
  "we'd love to hear about it!"
218
  msgstr ""
219
 
220
+ #: bws_functions.php:472
221
  msgid "Suggest a Feature"
222
  msgstr ""
223
 
224
+ #: bws_functions.php:488 class-bws-settings.php:580 class-bws-settings.php:583
225
+ #: class-bws-settings.php:635 class-bws-settings.php:638
226
  msgid "Notice"
227
  msgstr "Uwaga"
228
 
229
+ #: bws_functions.php:488
230
  msgid "The plugin's settings have been changed."
231
  msgstr "Ustawienia wtyczki zostały zmienione."
232
 
233
+ #: bws_functions.php:489 class-bws-settings.php:222 class-bws-settings.php:242
 
234
  msgid "Save Changes"
235
  msgstr "Zapisz zmiany"
236
 
237
+ #: bws_functions.php:503
238
  #, fuzzy
239
  msgid ""
240
  "You can always look at premium options by checking the \"Pro Options\" in "
243
  "Zawsze możesz sprawdzić funkcje premium poprzez kliknięcie \"Pokaż funkcje "
244
  "PRO\" w zakładce \"Go PRO\""
245
 
246
+ #: bws_functions.php:679
 
 
 
 
 
 
 
 
247
  #, fuzzy
248
  msgid "Add shortcode"
249
  msgstr "Dodaj BWS Shortcode"
250
 
251
+ #: bws_functions.php:679
252
  msgid "Add BestWebSoft plugins' shortcodes using this button."
253
  msgstr ""
254
 
255
+ #: bws_functions.php:765
256
  msgid "Close"
257
  msgstr "Zamknij"
258
 
259
+ #: bws_functions.php:851
260
  #, fuzzy
261
  msgid "Are you sure you want to restore default settings?"
262
  msgstr ""
263
  "Czy jesteś pewien, że chcesz przywrócić wszystkie ustawienia do wartości "
264
  "domyślnych?"
265
 
266
+ #: bws_functions.php:854
267
  msgid "Yes, restore all settings"
268
  msgstr "Tak, przywróć wszystkie ustawienia"
269
 
270
+ #: bws_functions.php:855
271
  msgid "No, go back to the settings page"
272
  msgstr "Nie, wróć do ustawień"
273
 
274
+ #: bws_functions.php:897
275
  msgid "Plugin"
276
  msgstr "Wtyczka"
277
 
278
+ #: bws_functions.php:906
279
  msgid "Shortcode settings"
280
  msgstr "Ustawienia shortcode"
281
 
282
+ #: bws_functions.php:911
283
  msgid "The shortcode will be inserted"
284
  msgstr "Shortcode zostanie umieszczony"
285
 
286
+ #: bws_functions.php:954
287
  msgid "FAQ"
288
  msgstr "FAQ"
289
 
290
+ #: bws_functions.php:960
291
  msgid "For more information:"
292
  msgstr ""
293
 
294
+ #: bws_functions.php:961 bws_menu.php:401 class-bws-settings.php:776
295
  msgid "Documentation"
296
  msgstr ""
297
 
298
+ #: bws_functions.php:962 bws_menu.php:403 class-bws-settings.php:778
299
  msgid "Video Instructions"
300
  msgstr ""
301
 
302
+ #: bws_functions.php:963
303
  #, fuzzy
304
  msgid "Submit a Request"
305
  msgstr "送信ボタン"
306
 
307
+ #: bws_menu.php:101 class-bws-settings.php:860
308
  msgid "Wrong license key"
309
  msgstr "Niepoprawny klucz licencji"
310
 
311
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
312
+ #: class-bws-settings.php:1004
 
313
  msgid ""
314
  "Something went wrong. Please try again later. If the error appears again, "
315
  "please contact us"
317
  "Coś poszło nie tak. Spróbuj ponownie później. Jeśli błąd pojawi się ponownie "
318
  "proszę skontaktować się z nami"
319
 
320
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
321
+ #: class-bws-settings.php:1004
 
322
  msgid "We are sorry for inconvenience."
323
  msgstr "Przepraszamy za niedogodności."
324
 
325
+ #: bws_menu.php:129 class-bws-settings.php:893 class-bws-settings.php:1010
 
326
  msgid "Wrong license key."
327
  msgstr "Niepoprawny klucz licencji"
328
 
329
+ #: bws_menu.php:131
330
  #, fuzzy
331
  msgid ""
332
  "This license key is bound to another site. Change it via personal Client "
333
  "Area."
334
  msgstr "Klucz licencji został przypisany do innej strony."
335
 
336
+ #: bws_menu.php:131
337
  msgid "Log in"
338
  msgstr ""
339
 
340
+ #: bws_menu.php:133 bws_menu.php:333 deprecated.php:157
341
  msgid "Unfortunately, you have exceeded the number of available tries per day."
342
  msgstr "Niestety, przekroczono dzienną liczbę dostępnych prób."
343
 
344
+ #: bws_menu.php:135
345
  #, fuzzy, php-format
346
  msgid ""
347
  "Unfortunately, Your license has expired. To continue getting top-priority "
350
  "Niestety, Twoja licencja wygasła. By nadal korzystać z szybkiego dostępu do "
351
  "wsparcia oraz aktualizacji powinieneś przedłużyć licencję."
352
 
353
+ #: bws_menu.php:137 class-bws-settings.php:1018
354
  msgid ""
355
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
356
  "Trial license can be installed only once."
358
  "Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
359
  "może być wykorzystana tylko raz."
360
 
361
+ #: bws_menu.php:143 class-bws-settings.php:908
362
  msgid "The license key is valid."
363
  msgstr "Klucz licencji jest poprawny"
364
 
365
+ #: bws_menu.php:145 class-bws-settings.php:912
366
  msgid "Your license will expire on"
367
  msgstr "Twoja licencja wygaśnie"
368
 
369
+ #: bws_menu.php:147
370
  msgid "Congratulations! Pro Membership license is activated successfully."
371
  msgstr ""
372
 
373
+ #: bws_menu.php:154 class-bws-settings.php:1028
374
  msgid ""
375
  "Something went wrong. Try again later or upload the plugin manually. We are "
376
  "sorry for inconvenience."
378
  "Coś poszło nie tak. Spróbuj ponowie później lub dodaj wtyczkę manualnie. "
379
  "Przepraszamy za niedogodności."
380
 
381
+ #: bws_menu.php:164
382
  #, fuzzy
383
  msgid "Please enter your license key."
384
  msgstr "Podaj klucz licencji"
385
 
386
+ #: bws_menu.php:175
387
  msgid "Not set"
388
  msgstr "Nie ustawiono"
389
 
390
+ #: bws_menu.php:177
391
  msgid "On"
392
  msgstr "Włączone"
393
 
394
+ #: bws_menu.php:177
395
  msgid "Off"
396
  msgstr "Wyłączone"
397
 
398
+ #: bws_menu.php:178 bws_menu.php:179 bws_menu.php:180 bws_menu.php:181
399
+ #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:192
400
  msgid "N/A"
401
  msgstr "Brak danych"
402
 
403
+ #: bws_menu.php:183
404
+ #, fuzzy
405
+ #| msgid " Mb"
406
+ msgid "Mb"
407
  msgstr " Mb"
408
 
409
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
410
  msgid "Yes"
411
  msgstr "Tak"
412
 
413
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
414
  msgid "No"
415
  msgstr "Nie"
416
 
417
+ #: bws_menu.php:197
418
  #, fuzzy
419
  msgid "WordPress Environment"
420
  msgstr "Środowisko"
421
 
422
+ #: bws_menu.php:199
423
  msgid "Home URL"
424
  msgstr "Adres strony głównej:"
425
 
426
+ #: bws_menu.php:200
427
  #, fuzzy
428
  msgid "Website URL"
429
  msgstr "Adres strony:"
430
 
431
+ #: bws_menu.php:201
432
  #, fuzzy
433
  msgid "WP Version"
434
  msgstr "Wersja PHP"
435
 
436
+ #: bws_menu.php:202
437
  #, fuzzy
438
  msgid "WP Multisite"
439
  msgstr "Multisite"
440
 
441
+ #: bws_menu.php:203
442
  #, fuzzy
443
  msgid "WP Memory Limit"
444
  msgstr "PHP Limit pamięci"
445
 
446
+ #: bws_menu.php:204
447
  msgid "Active Theme"
448
  msgstr "Aktywny motyw"
449
 
450
+ #: bws_menu.php:204 bws_menu.php:249 bws_menu.php:252
451
  #, fuzzy, php-format
452
  msgid "by %s"
453
  msgstr "Od %s"
454
 
455
+ #: bws_menu.php:208
456
  #, fuzzy
457
  msgid "Server Environment"
458
  msgstr "Środowisko"
459
 
460
+ #: bws_menu.php:210
461
  msgid "Operating System"
462
  msgstr "System operacyjny"
463
 
464
+ #: bws_menu.php:211
465
  msgid "Server"
466
  msgstr "Serwer"
467
 
468
+ #: bws_menu.php:212
469
  msgid "PHP Version"
470
  msgstr "Wersja PHP"
471
 
472
+ #: bws_menu.php:213
473
  msgid "PHP Allow URL fopen"
474
  msgstr "Zezwól na PHP fopen"
475
 
476
+ #: bws_menu.php:214
477
  msgid "PHP Memory Limit"
478
  msgstr "PHP Limit pamięci"
479
 
480
+ #: bws_menu.php:215
481
  #, fuzzy
482
  msgid "Memory Usage"
483
  msgstr "Wykorzystanie pamięci"
484
 
485
+ #: bws_menu.php:216
486
  msgid "PHP Max Upload Size"
487
  msgstr "PHP Max rozmiar przesyłanego pliku"
488
 
489
+ #: bws_menu.php:217
490
  msgid "PHP Max Post Size"
491
  msgstr "PHP Max rozmiar przesyłania POST"
492
 
493
+ #: bws_menu.php:218
494
  msgid "PHP Max Script Execute Time"
495
  msgstr "PHP Max czas przetwarzania skryptu"
496
 
497
+ #: bws_menu.php:219
498
  msgid "PHP Exif support"
499
  msgstr "PHP Wsparcie Exif"
500
 
501
+ #: bws_menu.php:220
502
  msgid "PHP IPTC support"
503
  msgstr "PHP Wsparcie IPTC"
504
 
505
+ #: bws_menu.php:221
506
  msgid "PHP XML support"
507
  msgstr "PHP Wsparcie XML"
508
 
509
+ #: bws_menu.php:227
510
  msgid "Database"
511
  msgstr ""
512
 
513
+ #: bws_menu.php:229
514
  #, fuzzy
515
  msgid "WP DB version"
516
  msgstr "Wersja Bazy Danych dla WordPress"
517
 
518
+ #: bws_menu.php:230
519
  #, fuzzy
520
  msgid "MySQL version"
521
  msgstr "Wersja MySQL"
522
 
523
+ #: bws_menu.php:231
524
  msgid "SQL Mode"
525
  msgstr "Tryb SQL"
526
 
527
+ #: bws_menu.php:235
528
  msgid "Active Plugins"
529
  msgstr "Aktywne wtyczki"
530
 
531
+ #: bws_menu.php:240
532
  msgid "Inactive Plugins"
533
  msgstr "Nieaktywne wtyczki"
534
 
535
+ #: bws_menu.php:261
536
  msgid "Please enter a valid email address."
537
  msgstr "Podaj poprawny adres email"
538
 
539
+ #: bws_menu.php:263
540
  #, php-format
541
  msgid "Email with system info is sent to %s."
542
  msgstr ""
543
 
544
+ #: bws_menu.php:267
545
  msgid "Thank you for contacting us."
546
  msgstr "Dziękujemy za kontakt."
547
 
548
+ #: bws_menu.php:290
549
  msgid "Sorry, email message could not be delivered."
550
  msgstr "Przepraszamy, wiadomość nie została dostarczona."
551
 
552
+ #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:359 deprecated.php:26
553
  msgid "Plugins"
554
  msgstr "Wtyczki"
555
 
556
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:587 deprecated.php:27
557
  msgid "Themes"
558
  msgstr "Motywy"
559
 
560
+ #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:617
561
  msgid "System status"
562
  msgstr "Status systemu"
563
 
564
+ #: bws_menu.php:316
565
  msgid "Support"
566
  msgstr "サポート"
567
 
568
+ #: bws_menu.php:317
569
  msgid "Manage purchased licenses & subscriptions"
570
  msgstr ""
571
 
572
+ #: bws_menu.php:325
573
  #, php-format
574
  msgid "Get Access to %s+ Premium Plugins"
575
  msgstr ""
576
 
577
+ #: bws_menu.php:327
578
  #, fuzzy
579
  msgid "Subscribe to Pro Membership"
580
  msgstr "有効なテーマ"
581
 
582
+ #: bws_menu.php:335 bws_menu.php:346 class-bws-settings.php:822
583
+ #: deprecated.php:123
584
  msgid "Check license key"
585
  msgstr "Sprawdź klucz licencji"
586
 
587
+ #: bws_menu.php:338
588
  #, fuzzy
589
  msgid "Enter your license key"
590
  msgstr "Podaj klucz licencji"
591
 
592
+ #: bws_menu.php:344 bws_menu.php:539 bws_menu.php:548
593
+ #: class-bws-settings.php:801 deprecated.php:155 deprecated.php:163
594
+ #: deprecated.php:240 deprecated.php:249
595
  msgid "Activate"
596
  msgstr "Aktywuj"
597
 
598
+ #: bws_menu.php:360
599
  #, fuzzy
600
  msgid "Upload Plugin"
601
  msgstr "Wtyczka"
602
 
603
+ #: bws_menu.php:364
604
  #, php-format
605
  msgid ""
606
  "The plugin generated %d characters of <strong>unexpected output</strong> "
609
  "or removing this plugin."
610
  msgstr ""
611
 
612
+ #: bws_menu.php:366
613
  msgid ""
614
  "Plugin could not be activated because it triggered a <strong>fatal error</"
615
  "strong>."
616
  msgstr ""
617
 
618
+ #: bws_menu.php:369
619
  msgid "Plugin <strong>activated</strong>."
620
  msgstr ""
621
 
622
+ #: bws_menu.php:383
623
  #, fuzzy
624
+ msgid "Download Pro Plugin"
625
+ msgstr "Wtyczka"
626
 
627
+ #: bws_menu.php:385 class-bws-settings.php:759
628
+ msgid "Your Pro plugin is ready"
629
  msgstr ""
630
 
631
+ #: bws_menu.php:387 class-bws-settings.php:761
632
+ msgid "Your plugin has been zipped, and now is ready to download."
 
633
  msgstr ""
 
 
634
 
635
+ #: bws_menu.php:390 class-bws-settings.php:764
636
+ #, fuzzy
637
+ #| msgid "Download"
638
+ msgid "Download Now"
639
+ msgstr "ダウンロード"
640
 
641
+ #: bws_menu.php:394 class-bws-settings.php:768
642
  #, fuzzy
643
+ msgid "Need help installing the plugin?"
644
  msgstr "Zainstalowane"
645
 
646
+ #: bws_menu.php:396 class-bws-settings.php:770
647
+ msgid "How to install WordPress plugin from your admin Dashboard (ZIP archive)"
648
  msgstr ""
 
 
649
 
650
+ #: bws_menu.php:399 class-bws-settings.php:774
651
+ #, fuzzy
652
+ #| msgid "Let's get started"
653
+ msgid "Get Started"
654
+ msgstr "Zaczynajmny"
 
655
 
656
+ #: bws_menu.php:405 class-bws-settings.php:780
657
+ msgid "Knowledge Base"
 
658
  msgstr ""
659
 
660
+ #: bws_menu.php:408
661
+ msgid "Licenses & Domains"
662
  msgstr ""
 
663
 
664
+ #: bws_menu.php:411
665
  #, fuzzy
666
+ msgid "Client Area"
667
+ msgstr "Panel Klienta"
668
 
669
+ #: bws_menu.php:413
670
  msgid "Return to BestWebSoft Panel"
671
  msgstr ""
672
 
673
+ #: bws_menu.php:420 bws_menu.php:440 bws_menu.php:569
674
  msgid "All"
675
  msgstr "Wszystko"
676
 
677
+ #: bws_menu.php:423 bws_menu.php:606
678
  msgid "Installed"
679
  msgstr "Zainstalowane"
680
 
681
+ #: bws_menu.php:426
682
  #, fuzzy
683
  msgid "Not Installed"
684
  msgstr "Zainstalowane"
685
 
686
+ #: bws_menu.php:433
687
  msgid "Filter results"
688
  msgstr ""
689
 
690
+ #: bws_menu.php:436 bws_menu.php:565
691
  msgid "Category"
692
  msgstr ""
693
 
694
+ #: bws_menu.php:500
695
  #, fuzzy
696
  msgid "Not installed"
697
  msgstr "Zainstalowane"
698
 
699
+ #: bws_menu.php:504
700
  #, fuzzy
701
  msgid "Renew to get updates"
702
  msgstr "ページに転送"
703
 
704
+ #: bws_menu.php:507
705
  #, fuzzy, php-format
706
  msgid "Update to v %s"
707
  msgstr "Aktualizuj do wersji %s"
708
 
709
+ #: bws_menu.php:519 bws_menu.php:542
710
+ msgid "Get Pro"
711
+ msgstr ""
712
 
713
+ #: bws_menu.php:525 class-bws-settings.php:192 class-bws-settings.php:1091
714
  msgid "Upgrade to Pro"
715
  msgstr ""
716
 
717
+ #: bws_menu.php:539 bws_menu.php:548
718
  msgid "Activate this plugin"
719
  msgstr "Aktywuj wtyczkę"
720
 
721
+ #: bws_menu.php:551
722
  #, fuzzy
723
  msgid "Install this plugin"
724
  msgstr "Zainstalowane"
725
 
726
+ #: bws_menu.php:551
727
+ msgid "Install Now"
728
+ msgstr "Instaluj teraz"
729
+
730
+ #: bws_menu.php:560
731
  msgid "Nothing found. Try another criteria."
732
  msgstr ""
733
 
734
+ #: bws_menu.php:597
735
  #, php-format
736
  msgid "By %s"
737
  msgstr "Od %s"
738
 
739
+ #: bws_menu.php:604
740
  msgid "Already Installed"
741
  msgstr "Zainstalowane"
742
 
743
+ #: bws_menu.php:614
744
  msgid "Browse More WordPress Themes"
745
  msgstr ""
746
 
747
+ #: bws_menu.php:623
748
  msgid "Send to support"
749
  msgstr "Wyślij do supportu"
750
 
751
+ #: bws_menu.php:630
752
  msgid "Send to custom email &#187;"
753
  msgstr "Prześlij na własny adres &#187;"
754
 
755
+ #: class-bws-settings.php:167
756
  msgid "Information"
757
  msgstr ""
758
 
759
+ #: class-bws-settings.php:179
760
  #, fuzzy
761
  msgid "Inactive"
762
  msgstr "Nieaktywne wtyczki"
763
 
764
+ #: class-bws-settings.php:187
765
  msgid "Expired"
766
  msgstr ""
767
 
768
+ #: class-bws-settings.php:190
769
  #, php-format
770
  msgid "%s day(-s) left"
771
  msgstr ""
772
 
773
+ #: class-bws-settings.php:196
774
  #, fuzzy, php-format
775
  msgid "Expired on %s"
776
  msgstr "wygasa"
777
 
778
+ #: class-bws-settings.php:196
779
  msgid "Renew Now"
780
  msgstr ""
781
 
782
+ #: class-bws-settings.php:198
783
  #, fuzzy
784
  msgid "Active"
785
  msgstr "Aktywuj"
786
 
787
+ #: class-bws-settings.php:203
788
  #, fuzzy
789
  msgid "License"
790
  msgstr "Niepoprawny klucz licencji"
791
 
792
+ #: class-bws-settings.php:206
793
  #, fuzzy
794
  msgid "Status"
795
  msgstr "Status systemu"
796
 
797
+ #: class-bws-settings.php:210
798
  #, fuzzy
799
  msgid "Version"
800
  msgstr "wersji!"
801
 
802
+ #: class-bws-settings.php:323
803
  #, fuzzy
804
  msgid "All plugin settings were restored."
805
  msgstr "Ustawienia wtyczki zostały zmienione."
806
 
807
+ #: class-bws-settings.php:463
808
  msgid "Custom Code"
809
  msgstr ""
810
 
811
+ #: class-bws-settings.php:467
812
  msgid "You do not have sufficient permissions to edit plugins for this site."
813
  msgstr ""
814
 
815
+ #: class-bws-settings.php:472
816
  msgid "These styles will be added to the header on all pages of your site."
817
  msgstr ""
818
 
819
+ #: class-bws-settings.php:475
820
  #, php-format
821
  msgid ""
822
  "This PHP code will be hooked to the %s action and will be printed on front "
823
  "end only."
824
  msgstr ""
825
 
826
+ #: class-bws-settings.php:478
827
  msgid "These code will be added to the header on all pages of your site."
828
  msgstr ""
829
 
830
+ #: class-bws-settings.php:486
831
  #, php-format
832
  msgid ""
833
  "You need to make this files writable before you can save your changes. See "
834
  "%s the Codex %s for more information."
835
  msgstr ""
836
 
837
+ #: class-bws-settings.php:496
838
  msgid "Browsing"
839
  msgstr ""
840
 
841
+ #: class-bws-settings.php:501
842
  #, php-format
843
  msgid "Activate custom %s code."
844
  msgstr ""
845
 
846
+ #: class-bws-settings.php:509
847
  #, fuzzy, php-format
848
  msgid "Learn more about %s"
849
  msgstr "Dowiedz się więcej"
850
 
851
+ #: class-bws-settings.php:571
852
  msgid "Miscellaneous Settings"
853
  msgstr ""
854
 
855
+ #: class-bws-settings.php:580 class-bws-settings.php:635
856
  #, php-format
857
  msgid ""
858
  "It is prohibited to change %s settings on this site in the %s network "
859
  "settings."
860
  msgstr ""
861
 
862
+ #: class-bws-settings.php:583 class-bws-settings.php:638
863
  #, php-format
864
  msgid ""
865
  "It is prohibited to view %s settings on this site in the %s network settings."
866
  msgstr ""
867
 
868
+ #: class-bws-settings.php:592
869
  #, fuzzy
870
  msgid "Pro Options"
871
  msgstr "Pro Plugins"
872
 
873
+ #: class-bws-settings.php:596
874
  msgid "Enable to display plugin Pro options."
875
  msgstr ""
876
 
877
+ #: class-bws-settings.php:602
878
  msgid "Track Usage"
879
  msgstr ""
880
 
881
+ #: class-bws-settings.php:606
882
  msgid ""
883
  "Enable to allow tracking plugin usage anonymously in order to make it better."
884
  msgstr ""
885
 
886
+ #: class-bws-settings.php:611
887
  #, fuzzy
888
  msgid "Default Settings"
889
  msgstr "Ustawienia"
890
 
891
+ #: class-bws-settings.php:613
892
  #, fuzzy
893
  msgid "Restore Settings"
894
  msgstr "Przywróć ustawienia"
895
 
896
+ #: class-bws-settings.php:614
897
  #, fuzzy
898
  msgid "This will restore plugin settings to defaults."
899
  msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
900
 
901
+ #: class-bws-settings.php:626
902
  msgid "Import / Export"
903
  msgstr ""
904
 
905
+ #: class-bws-settings.php:744
 
906
  #, fuzzy
907
  msgid "License Key"
908
  msgstr "Niepoprawny klucz licencji"
909
 
910
+ #: class-bws-settings.php:803
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
911
  #, php-format
912
  msgid "Enter your license key to activate %s and get premium plugin features."
913
  msgstr ""
914
 
915
+ #: class-bws-settings.php:806 class-bws-settings.php:1014 deprecated.php:243
 
916
  msgid ""
917
  "Unfortunately, you have exceeded the number of available tries per day. "
918
  "Please, upload the plugin manually."
920
  "Niestety, przekroczono liczb dostępnych prób na dziś. Proszę dodać wtyczkę "
921
  "manualnie."
922
 
923
+ #: class-bws-settings.php:809 deprecated.php:234
924
  #, php-format
925
  msgid "Start Your Free %s-Day Trial Now"
926
  msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
927
 
928
+ #: class-bws-settings.php:824
929
  #, fuzzy
930
  msgid ""
931
  "If necessary, you can check if the license key is correct or reenter it in "
935
  "w polu poniżej. Możesz znaleźć swój klucz na naszej stronie w strefie - "
936
  "Panel Klienta"
937
 
938
+ #: class-bws-settings.php:833
939
  msgid "Manage License Settings"
940
  msgstr ""
941
 
942
+ #: class-bws-settings.php:835
943
  #, fuzzy
944
  msgid "Login to Client Area"
945
  msgstr "Panel Klienta"
946
 
947
+ #: class-bws-settings.php:837
948
  msgid ""
949
  "Manage active licenses, download BWS products, and view your payment history "
950
  "using BestWebSoft Client Area."
951
  msgstr ""
952
 
953
+ #: class-bws-settings.php:895 class-bws-settings.php:1012
 
954
  #, fuzzy
955
  msgid "This license key is bound to another site."
956
  msgstr "Klucz licencji został przypisany do innej strony."
957
 
958
+ #: class-bws-settings.php:897
959
  msgid ""
960
  "This license key is valid, but Your license has expired. If you want to "
961
  "update our plugin in future, you should extend the license."
963
  "Klucz jest poprawny, jednak Twoja licencja wygasła. Jeśli chcesz "
964
  "aktualizować naszą wtyczkę w przyszłości powinieneś przedłużyć licencję."
965
 
966
+ #: class-bws-settings.php:899
967
  msgid "Unfortunately, you have exceeded the number of available tries."
968
  msgstr "Niestety, przekroczono liczbę dostępnych prób."
969
 
970
+ #: class-bws-settings.php:901
971
  msgid ""
972
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
973
  "The Pro Trial license can be installed only once."
975
  "Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
976
  "może być wykorzystana tylko raz."
977
 
978
+ #: class-bws-settings.php:906
979
  msgid "The Pro Trial license key is valid."
980
  msgstr "Klucz licencji do testowej wersji PRO jest poprawny."
981
 
982
+ #: class-bws-settings.php:919 deprecated.php:142
983
  #, php-format
984
  msgid ""
985
  "In order to continue using the plugin it is necessary to buy a %s license."
987
  "W celu dalszego wykorzystywania wtyczki niezbędne jest wykupienie licencji "
988
  "%s."
989
 
990
+ #: class-bws-settings.php:1016
991
  #, php-format
992
  msgid ""
993
  "Unfortunately, Your license has expired. To continue getting top-priority "
994
  "support and plugin updates, you should extend it in your %s."
995
  msgstr ""
996
 
997
+ #: class-bws-settings.php:1065
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
998
  msgid "Please, enter Your license key"
999
  msgstr "Proszę podać klucz licencji."
1000
 
1001
+ #: class-bws-settings.php:1078
1002
  #, fuzzy
1003
  msgid "Need Help?"
1004
  msgstr "Potrzebujesz pomocy?"
1005
 
1006
+ #: class-bws-settings.php:1080
1007
  msgid "Read the Instruction"
1008
  msgstr ""
1009
 
1010
+ #: class-bws-settings.php:1084
1011
  msgid "Watch the Video"
1012
  msgstr ""
1013
 
1014
+ #: class-bws-settings.php:1095
1015
  #, fuzzy
1016
  msgid "Start Your Free Trial"
1017
  msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
1018
 
1019
+ #: class-bws-settings.php:1130
1020
+ msgid "Request a Feature"
1021
  msgstr ""
1022
 
1023
+ #: class-bws-settings.php:1135
1024
+ #, php-format
1025
+ msgid "How can we improve %s?"
1026
  msgstr ""
1027
 
1028
+ #: class-bws-settings.php:1137
1029
+ msgid "We look forward to hear your ideas."
1030
  msgstr ""
1031
 
1032
+ #: class-bws-settings.php:1139
1033
+ msgid "Describe your idea"
1034
  msgstr ""
1035
 
1036
+ #: class-bws-settings.php:1142 deactivation-form.php:120
1037
+ msgid "Send website data and allow to contact me back"
1038
+ msgstr ""
1039
+
1040
+ #: class-bws-settings.php:1147
1041
+ msgid "Submit"
1042
+ msgstr "送信"
1043
+
1044
+ #: class-bws-settings.php:1148 deactivation-form.php:127
1045
+ msgid "Processing"
1046
  msgstr ""
1047
 
1048
+ #: class-bws-settings.php:1149
1049
+ msgid "Thank you!"
1050
  msgstr ""
1051
 
1052
+ #: deactivation-form.php:22
1053
+ msgid "Need help? We are ready to answer your questions."
1054
+ msgstr ""
1055
+
1056
+ #: deactivation-form.php:22
1057
+ msgid "Contact Support"
1058
+ msgstr ""
1059
+
1060
+ #: deactivation-form.php:27
1061
+ msgid "The plugin is not working"
1062
+ msgstr ""
1063
+
1064
+ #: deactivation-form.php:33
1065
+ msgid "The plugin didn't work as expected"
1066
+ msgstr ""
1067
+
1068
+ #: deactivation-form.php:39
1069
  msgid "The plugin suddenly stopped working"
1070
  msgstr ""
1071
 
1072
+ #: deactivation-form.php:46
1073
  msgid "The plugin broke my site"
1074
  msgstr ""
1075
 
1076
+ #: deactivation-form.php:53
1077
  msgid "I couldn't understand how to get it work"
1078
  msgstr ""
1079
 
1080
+ #: deactivation-form.php:60
1081
  msgid "I found a better plugin"
1082
  msgstr ""
1083
 
1084
+ #: deactivation-form.php:66
 
 
 
 
1085
  msgid "The plugin is great, but I need specific feature that you don't support"
1086
  msgstr ""
1087
 
1088
+ #: deactivation-form.php:72
 
 
 
 
1089
  msgid "I no longer need the plugin"
1090
  msgstr ""
1091
 
1092
+ #: deactivation-form.php:78
1093
  msgid "It's a temporary deactivation, I'm just debugging an issue"
1094
  msgstr ""
1095
 
1096
+ #: deactivation-form.php:84
1097
  msgid "Other"
1098
  msgstr ""
1099
 
1100
+ #: deactivation-form.php:93
1101
  msgid "Quick Feedback"
1102
  msgstr ""
1103
 
1104
+ #: deactivation-form.php:95
1105
  msgid "If you have a moment, please let us know why you are deactivating"
1106
  msgstr ""
1107
 
1108
+ #: deactivation-form.php:125
1109
+ msgid "Submit and Deactivate"
1110
  msgstr ""
1111
 
1112
+ #: deactivation-form.php:126
1113
+ msgid "Skip and Deactivate"
1114
  msgstr ""
1115
 
1116
+ #: deactivation-form.php:272
 
 
 
 
 
 
 
 
1117
  msgid "Please tell us the reason so we can improve it."
1118
  msgstr ""
1119
 
1120
+ #: deprecated.php:28
 
 
 
 
1121
  #, fuzzy
1122
  msgid "System Status"
1123
  msgstr "Status systemu"
1124
 
1125
+ #: deprecated.php:119
 
 
 
 
1126
  #, fuzzy
1127
  msgid ""
1128
  "If necessary, you can check if the license key is correct or reenter it in "
1133
  "w polu poniżej. Możesz znaleźć swój klucz na naszej stronie w strefie - "
1134
  "Panel Klienta"
1135
 
1136
+ #: deprecated.php:119
1137
  #, fuzzy
1138
  msgid ""
1139
  "(your username is the email address specified during the purchase). If "
1142
  "(login to adres email podany przy zakupie). Jeśli to koniczne użyj opcji "
1143
  "\"Zgubiłeś swoje hasło?\"."
1144
 
1145
+ #: deprecated.php:142
1146
  #, fuzzy
1147
  msgid "After that, you can activate it by entering your license key."
1148
  msgstr "Po wszystkim możesz aktywować wtyczkę poprzez podanie klucza licencji."
1149
 
1150
+ #: deprecated.php:145 deprecated.php:228
1151
  msgid "License key can be found in the"
1152
  msgstr ""
1153
 
1154
+ #: deprecated.php:147 deprecated.php:230
1155
  #, fuzzy
1156
  msgid "(your username is the email address specified during the purchase)."
1157
  msgstr "(twoja nazwa użytkownika to email podany podczas zakupu)."
1158
 
1159
+ #: deprecated.php:170
1160
  #, fuzzy
1161
  msgid ""
1162
  "Congratulations! The Pro license of the plugin is activated successfully."
1163
  msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
1164
 
1165
+ #: deprecated.php:172 deprecated.php:210
1166
  msgid "Please, go to"
1167
  msgstr "Proszę przejść do"
1168
 
1169
+ #: deprecated.php:172 deprecated.php:210
1170
  msgid "the setting page"
1171
  msgstr "ustawień"
1172
 
1173
+ #: deprecated.php:187
 
 
 
 
 
 
 
 
1174
  msgid "Restore all plugin settings to defaults"
1175
  msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
1176
 
1177
+ #: deprecated.php:189
1178
  msgid "Restore settings"
1179
  msgstr "Przywróć ustawienia"
1180
 
1181
+ #: deprecated.php:208
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1182
  #, fuzzy
1183
  msgid ""
1184
  "Congratulations! Pro version of the plugin is installed and activated "
1185
  "successfully."
1186
  msgstr "Gratulacje! Wersja PRO została pobrana i aktywowana pomyślnie."
1187
 
1188
+ #: deprecated.php:217
1189
  msgid "Show Pro features"
1190
  msgstr "Pokaż funkcje PRO"
1191
 
1192
+ #: deprecated.php:224
1193
  msgid "Enter your license key to install and activate"
1194
  msgstr ""
1195
 
1196
+ #: deprecated.php:226
1197
  #, fuzzy
1198
  msgid "version of the plugin."
1199
  msgstr "Oceń wtyczkę"
1200
 
1201
+ #: product_list.php:8
1202
  msgid "Admin Tools"
1203
  msgstr ""
1204
 
1205
+ #: product_list.php:9
1206
  msgid "Content"
1207
  msgstr ""
1208
 
1209
+ #: product_list.php:10
1210
  msgid "eCommerce"
1211
  msgstr ""
1212
 
1213
+ #: product_list.php:11
1214
  msgid "Marketing"
1215
  msgstr ""
1216
 
1217
+ #: product_list.php:12
1218
  msgid "Navigation"
1219
  msgstr ""
1220
 
1221
+ #: product_list.php:13
1222
  msgid "Recommended"
1223
  msgstr "Polecane"
1224
 
1225
+ #: product_list.php:14
1226
  msgid "Security"
1227
  msgstr ""
1228
 
1229
+ #: product_list.php:15
1230
  msgid "SEO"
1231
  msgstr ""
1232
 
1233
+ #: product_list.php:16
1234
  msgid "SMM"
1235
  msgstr ""
1236
 
1237
  #: product_list.php:23
1238
+ msgid "Give a birth for your bike rental and booking WordPress website."
 
1239
  msgstr ""
1240
 
1241
  #: product_list.php:35
1242
+ msgid "Best secure captcha plugin to protect your WordPress forms."
1243
  msgstr ""
1244
 
1245
  #: product_list.php:45
1246
+ msgid "Create your own rental website for car renting and booking."
1247
+ msgstr ""
1248
+
1249
+ #: product_list.php:57
1250
+ msgid ""
1251
+ "Add columns with custom content to WordPress website pages, posts, widgets, "
1252
+ "etc."
1253
+ msgstr ""
1254
+
1255
+ #: product_list.php:64
1256
  msgid ""
1257
  "Allow customers to reach you using secure contact form plugin any website "
1258
  "must have."
1259
  msgstr ""
1260
 
1261
+ #: product_list.php:74
1262
  msgid "Add unlimited number of contact forms to WordPress website."
1263
  msgstr ""
1264
 
1265
+ #: product_list.php:84
1266
  msgid "Save and manage Contact Form messages. Never lose important data."
1267
  msgstr ""
1268
 
1269
+ #: product_list.php:94
1270
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1271
  msgstr ""
1272
 
1273
+ #: product_list.php:104
 
 
 
 
1274
  msgid ""
1275
  "Add custom post types and taxonomies to WordPress website search results."
1276
  msgstr ""
1277
 
1278
+ #: product_list.php:114
1279
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1280
  msgstr ""
1281
 
1282
+ #: product_list.php:121
1283
  msgid ""
1284
  "Get latest error log messages to diagnose website problems. Define and fix "
1285
  "issues faster."
1286
  msgstr ""
1287
 
1288
+ #: product_list.php:128
1289
  msgid ""
1290
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1291
  "widgets."
1292
  msgstr ""
1293
 
1294
+ #: product_list.php:138
1295
  msgid ""
1296
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1297
  "clicks."
1298
  msgstr ""
1299
 
1300
+ #: product_list.php:148
 
 
 
 
 
 
1301
  msgid ""
1302
  "Stronger security solution which protects your WordPress website from hacks "
1303
  "and unauthorized login attempts."
1304
  msgstr ""
1305
 
1306
+ #: product_list.php:158
1307
  msgid ""
1308
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1309
  "results, categories, tags, and widgets."
1310
  msgstr ""
1311
 
1312
+ #: product_list.php:168
1313
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1314
  msgstr ""
1315
 
1316
+ #: product_list.php:178
1317
+ msgid "Protect WordPress website forms from spam entries with reCaptcha."
 
 
1318
  msgstr ""
1319
 
1320
+ #: product_list.php:188
1321
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1322
  msgstr ""
1323
 
1324
+ #: product_list.php:198
1325
  msgid ""
1326
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1327
  "your blog."
1328
  msgstr ""
1329
 
1330
+ #: product_list.php:208
1331
  msgid ""
1332
  "Replace external WordPress website links with Google shortlinks and track "
1333
  "click stats."
1334
  msgstr ""
1335
 
1336
+ #: product_list.php:215
1337
  msgid ""
1338
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1339
  "hostnames, etc."
1340
  msgstr ""
1341
 
1342
+ #: product_list.php:225
1343
  msgid ""
1344
  "Create your personal job board and listing WordPress website. Search jobs, "
1345
  "submit CV/resumes, choose candidates."
1346
  msgstr ""
1347
 
1348
+ #: product_list.php:232
1349
  msgid ""
1350
  "Protect WordPress website against brute force attacks. Limit rate of login "
1351
  "attempts."
1352
  msgstr ""
1353
 
1354
+ #: product_list.php:242
1355
  msgid ""
1356
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1357
  "5 plugins included – profile, insider, etc."
1358
  msgstr ""
1359
 
1360
+ #: product_list.php:252
1361
  msgid ""
1362
  "Translate WordPress website content to other languages manually. Create "
1363
  "multilingual pages, posts, widgets, menus, etc."
1364
  msgstr ""
1365
 
1366
+ #: product_list.php:262
1367
  msgid ""
1368
  "Add customizable pagination to WordPress website. Split long content to "
1369
  "multiple pages for better navigation."
1370
  msgstr ""
1371
 
1372
+ #: product_list.php:272
1373
  msgid ""
1374
  "Generate PDF files and print WordPress posts/pages. Customize document "
1375
  "header/footer styles and appearance."
1376
  msgstr ""
1377
 
1378
+ #: product_list.php:282
1379
  msgid ""
1380
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1381
  "Profile) to WordPress posts, pages and widgets."
1382
  msgstr ""
1383
 
1384
+ #: product_list.php:292
1385
  msgid ""
1386
  "Create your personal portfolio WordPress website. Manage and showcase past "
1387
  "projects to get more clients."
1388
  msgstr ""
1389
 
1390
+ #: product_list.php:302
1391
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1392
  msgstr ""
1393
 
1394
+ #: product_list.php:312
1395
  msgid ""
1396
  "Add extra fields to default WordPress user profile. The easiest way to "
1397
  "create and manage additional custom values."
1398
  msgstr ""
1399
 
1400
+ #: product_list.php:322
1401
  msgid ""
1402
  "Add and display HTML advertisement banner on WordPress website. Customize "
1403
  "bar styles and appearance."
1404
  msgstr ""
1405
 
1406
+ #: product_list.php:332
1407
  msgid ""
1408
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1409
  "widgets."
1410
  msgstr ""
1411
 
1412
+ #: product_list.php:339
1413
  msgid ""
1414
  "Add rating plugin to your WordPress website to receive feedback from your "
1415
  "customers."
1416
  msgstr ""
1417
 
1418
+ #: product_list.php:349
1419
  msgid ""
1420
  "Create your personal real estate WordPress website. Sell, rent and buy "
1421
  "properties. Add, search and browse listings easily."
1422
  msgstr ""
1423
 
1424
+ #: product_list.php:359
1425
  msgid ""
1426
  "Add related, featured, latest, and popular posts to your WordPress website. "
1427
  "Connect your blog readers with a relevant content."
1428
  msgstr ""
1429
 
1430
+ #: product_list.php:366
1431
  msgid ""
1432
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1433
  "settings and detailed reports."
1434
  msgstr ""
1435
 
1436
+ #: product_list.php:376
1437
  msgid ""
1438
  "The best responsive slider plugin for your WordPress website. Create "
1439
  "beautifully animated slides just in a few clicks."
1440
  msgstr ""
1441
 
1442
+ #: product_list.php:383
1443
  msgid ""
1444
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1445
  "Yahoo, Hotmail and other services."
1446
  msgstr ""
1447
 
1448
+ #: product_list.php:390
1449
  msgid ""
1450
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1451
+ "FB, Twitter, Pinterest, LinkedIn."
1452
  msgstr ""
1453
 
1454
+ #: product_list.php:400
1455
  msgid ""
1456
  "Add social media login, registration, and commenting to your WordPress "
1457
  "website."
1458
  msgstr ""
1459
 
1460
+ #: product_list.php:407
1461
  msgid ""
1462
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1463
  "Collect data and subscribe your users."
1464
  msgstr ""
1465
 
1466
+ #: product_list.php:417
1467
  msgid ""
1468
  "Add testimonials and feedbacks from your customers to WordPress website "
1469
  "posts, pages, and widgets."
1470
  msgstr ""
1471
 
1472
+ #: product_list.php:424
1473
  msgid ""
1474
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1475
  "attendance and generate reports."
1476
  msgstr ""
1477
 
1478
+ #: product_list.php:434
1479
  msgid ""
1480
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1481
  "and pages."
1482
  msgstr ""
1483
 
1484
+ #: product_list.php:444
1485
  msgid ""
1486
  "Automatically check and update WordPress website core with all installed "
1487
  "plugins and themes to the latest versions."
1488
  msgstr ""
1489
 
1490
+ #: product_list.php:454
1491
  msgid ""
1492
  "Powerful user role management plugin for WordPress website. Create, edit, "
1493
  "copy, and delete user roles."
1494
  msgstr ""
1495
 
1496
+ #: product_list.php:464
1497
  msgid ""
1498
  "Display live count of online visitors who are currently browsing your "
1499
  "WordPress website."
1500
  msgstr ""
1501
 
1502
+ #: product_list.php:474
1503
  msgid ""
1504
  "Backup and export Zendesk Help Center content automatically to your "
1505
  "WordPress website database."
1506
  msgstr ""
1507
 
1508
+ #~ msgid "Add BWS Plugins Shortcode"
1509
+ #~ msgstr "Dodaj BWS Shortcode"
1510
+
1511
+ #, fuzzy
1512
+ #~ msgid "Installing Plugin"
1513
+ #~ msgstr "Zainstalowane"
1514
+
1515
+ #~ msgid ""
1516
+ #~ "Failed to download the zip archive. Please, upload the plugin manually"
1517
+ #~ msgstr ""
1518
+ #~ "Pobieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać "
1519
+ #~ "wtyczkę manualnie"
1520
+
1521
+ #~ msgid "Failed to open the zip archive. Please, upload the plugin manually"
1522
+ #~ msgstr ""
1523
+ #~ "Otwieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać "
1524
+ #~ "wtyczkę manualnie"
1525
+
1526
+ #~ msgid ""
1527
+ #~ "Your server does not support either ZipArchive or Phar. Please, upload "
1528
+ #~ "the plugin manually"
1529
+ #~ msgstr ""
1530
+ #~ "Twój serwer nie wspiera ZipAcrchive lub Phar. Proszę dodać wtyczkę "
1531
+ #~ "manualnie"
1532
+
1533
+ #~ msgid "UploadDir is not writable. Please, upload the plugin manually"
1534
+ #~ msgstr ""
1535
+ #~ "Folder uploadu jest chroniony przez zapisem. Proszę dodać wtyczkę "
1536
+ #~ "manualnie"
1537
+
1538
+ #, fuzzy
1539
+ #~ msgid "Activate Plugin"
1540
+ #~ msgstr "Aktywne wtyczki"
1541
+
1542
+ #, fuzzy
1543
+ #~ msgid "Congratulations! Pro license is activated successfully."
1544
+ #~ msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
1545
+
1546
+ #, fuzzy
1547
+ #~ msgid "Settings page"
1548
+ #~ msgstr "設定保存."
1549
+
1550
+ #~ msgid "Please, enter your license key"
1551
+ #~ msgstr "Podaj klucz licencji"
1552
+
1553
+ #~ msgid "You will be redirected automatically in 5 seconds."
1554
+ #~ msgstr "Zostaniesz automatycznie przekierowany w ciągu 5 sekund."
1555
+
1556
+ #~ msgid "Check premium options on the plugin settings page!"
1557
+ #~ msgstr "Sprawdź dodatkowe opcje premium w ustawieniach wtyczki."
1558
+
1559
  #, fuzzy
1560
  #~ msgid "Congratulations! Pro Membership license is activated successfully."
1561
  #~ msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
1613
  #~ msgid "Please, go to %s"
1614
  #~ msgstr "Proszę przejść do"
1615
 
 
 
 
 
1616
  #~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
1617
  #~ msgstr "Jeśli polubiłeś naszą wtyczkę daj nam 5 gwiazdek"
1618
 
1680
  #~ msgid "Free plugins"
1681
  #~ msgstr "無料プラグイン"
1682
 
 
 
 
1683
  #~ msgid "Install now from wordpress.org"
1684
  #~ msgstr "wordpress.org から直ぐに導入"
1685
 
1728
  #~ msgid "Send me a copy"
1729
  #~ msgstr "コピーを自分に送る"
1730
 
 
 
 
1731
  #~ msgid "Your name is required."
1732
  #~ msgstr "名前は必須です。"
1733
 
bws_menu/languages/bestwebsoft-ru_RU.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-ru_RU.po CHANGED
@@ -2,24 +2,24 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-03-05 15:24+0200\n"
6
- "PO-Revision-Date: 2020-03-05 15:25+0200\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
9
  "Language: ru\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e;esc_attr_e;printf\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 2.3\n"
17
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
18
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPathExcluded-0: js\n"
21
 
22
- #: bws_functions.php:73 bws_functions.php:231
23
  msgid "requires"
24
  msgstr "требует"
25
 
@@ -56,7 +56,7 @@ msgstr "Оценить"
56
  msgid "Need help?"
57
  msgstr "Нужна помощь?"
58
 
59
- #: bws_functions.php:104 bws_functions.php:940 class-bws-settings.php:1055
60
  msgid "Visit Help Center"
61
  msgstr "Перейти в Help Center"
62
 
@@ -64,7 +64,7 @@ msgstr "Перейти в Help Center"
64
  msgid "Want to support the plugin?"
65
  msgstr "Хотите поддержать плагин?"
66
 
67
- #: bws_functions.php:108 bws_menu.php:528
68
  msgid "Donate"
69
  msgstr "Пожертвовать"
70
 
@@ -84,8 +84,8 @@ msgstr ""
84
  "используя Ваш личный Client Area. Мы настоятельно рекомендуем вам решить "
85
  "проблему в течение 24 часов, в противном случае плагин будет деактивирован."
86
 
87
- #: bws_functions.php:128 bws_functions.php:200 bws_menu.php:599
88
- #: class-bws-settings.php:161
89
  msgid "Learn More"
90
  msgstr "Подробнее"
91
 
@@ -106,7 +106,7 @@ msgstr ""
106
  "плагин в дальнейшем и иметь приоритетную тех.поддержку, то вам нужно "
107
  "продлить лицензию."
108
 
109
- #: bws_functions.php:147 bws_functions.php:218
110
  msgid "Learn more"
111
  msgstr "Подробнее"
112
 
@@ -123,28 +123,28 @@ msgstr "Внимание: Вы используете Pro Trial версию п
123
  msgid "The Pro Trial license will expire on"
124
  msgstr "Ваша лицензия Pro Trial версии плагина истекает"
125
 
126
- #: bws_functions.php:191 bws_functions.php:214 bws_functions.php:258
127
- #: bws_functions.php:268 bws_functions.php:467
128
  msgid "Close notice"
129
  msgstr "Закрыть"
130
 
131
- #: bws_functions.php:196
132
  msgid "It’s time to upgrade your"
133
  msgstr "Настало время обновить Ваш"
134
 
135
- #: bws_functions.php:196
136
  msgid "to"
137
  msgstr "до"
138
 
139
- #: bws_functions.php:196
140
  msgid "version!"
141
  msgstr "версии!"
142
 
143
- #: bws_functions.php:197
144
  msgid "Extend standard plugin functionality with new great options."
145
  msgstr "Расширяет возможности стандартного функционала плагина."
146
 
147
- #: bws_functions.php:218
148
  #, php-format
149
  msgid ""
150
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
@@ -153,7 +153,7 @@ msgstr ""
153
  "Ваш лицензионный ключ для %s истекает %s и вы не будете получать "
154
  "приоритетную тех.поддержку или обновления."
155
 
156
- #: bws_functions.php:233
157
  msgid ""
158
  "or higher! We do not guarantee that our plugin will work correctly. Please "
159
  "upgrade to WordPress latest version."
@@ -161,63 +161,63 @@ msgstr ""
161
  "или выше! Мы не гарантируем, что наш плагин будет работать корректно. "
162
  "Пожалуйста, обновите WordPress до последней версии."
163
 
164
- #: bws_functions.php:229
165
  #, php-format
166
  msgid "<strong>%s</strong> %s <strong>WordPress %s</strong> %s"
167
  msgstr ""
168
 
169
- #: bws_functions.php:248
170
  #, php-format
171
  msgid "Thank you for installing %s plugin!"
172
  msgstr "Спасибо, что установили %s плагин!"
173
 
174
- #: bws_functions.php:250
175
  msgid "Let's get started"
176
  msgstr "Давайте начнем"
177
 
178
- #: bws_functions.php:251 bws_functions.php:284 bws_menu.php:532
179
- #: bws_menu.php:534
180
  msgid "Settings"
181
  msgstr "Настройки"
182
 
183
- #: bws_functions.php:253 bws_menu.php:326 class-bws-settings.php:791
184
- #: class-bws-settings.php:1057 class-bws-settings.php:1067 deprecated.php:234
185
  msgid "or"
186
  msgstr "или"
187
 
188
- #: bws_functions.php:254 bws_functions.php:286
189
  msgid "Add New"
190
  msgstr "Добавить"
191
 
192
- #: bws_functions.php:273
193
  msgid "Thank you for installing plugins by BestWebSoft!"
194
  msgstr "Спасибо за установку плагинов компании BestWebSoft!"
195
 
196
- #: bws_functions.php:275
197
  msgid "More Details"
198
  msgstr "Детали"
199
 
200
- #: bws_functions.php:276
201
  msgid "Less Details"
202
  msgstr "Скрыть детали"
203
 
204
- #: bws_functions.php:304
205
  msgid "Deprecated function(-s) is used on the site here:"
206
  msgstr "Устаревшие функции используются на сайте здесь:"
207
 
208
- #: bws_functions.php:318
209
  msgid ""
210
  "This function(-s) will be removed over time. Please update the product(-s)."
211
  msgstr ""
212
  "Эти функции будет удалены через некоторое время. Пожалуйста, обновите "
213
  "продукт."
214
 
215
- #: bws_functions.php:462
216
  #, php-format
217
  msgid "Thank you for choosing %s plugin!"
218
  msgstr "Спасибо за выбор плагина %s!"
219
 
220
- #: bws_functions.php:463
221
  msgid ""
222
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
223
  "we'd love to hear about it!"
@@ -226,24 +226,24 @@ msgstr ""
226
  "функционала плагина, пожалуйста, присылайте их нам! Мы вседа открыты для "
227
  "новых идей!"
228
 
229
- #: bws_functions.php:464
230
  msgid "Suggest a Feature"
231
  msgstr "Предложить функционал"
232
 
233
- #: bws_functions.php:480 class-bws-settings.php:559 class-bws-settings.php:562
234
- #: class-bws-settings.php:614 class-bws-settings.php:617
235
  msgid "Notice"
236
  msgstr "Внимание"
237
 
238
- #: bws_functions.php:480
239
  msgid "The plugin's settings have been changed."
240
  msgstr "Настройки плагина были изменены"
241
 
242
- #: bws_functions.php:481 class-bws-settings.php:200 class-bws-settings.php:220
243
  msgid "Save Changes"
244
  msgstr "Сохранить изменения"
245
 
246
- #: bws_functions.php:495
247
  msgid ""
248
  "You can always look at premium options by checking the \"Pro Options\" in "
249
  "the \"Misc\" tab."
@@ -251,70 +251,70 @@ msgstr ""
251
  "Вы всегда можете просмотреть премиум опции нажав на кнопку \"Pro опции\" на "
252
  "вкладке \"Разное\"."
253
 
254
- #: bws_functions.php:671
255
  msgid "Add shortcode"
256
  msgstr "Добавить шорткод"
257
 
258
- #: bws_functions.php:671
259
  msgid "Add BestWebSoft plugins' shortcodes using this button."
260
  msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
261
 
262
- #: bws_functions.php:756
263
  msgid "Close"
264
  msgstr "Закрыть"
265
 
266
- #: bws_functions.php:842
267
  msgid "Are you sure you want to restore default settings?"
268
  msgstr ""
269
  "Вы уверены что хотите восстановить все настройки плагина к настройкам по "
270
  "умолчанию?"
271
 
272
- #: bws_functions.php:845
273
  msgid "Yes, restore all settings"
274
  msgstr "Да, восстановить все настройки"
275
 
276
- #: bws_functions.php:846
277
  msgid "No, go back to the settings page"
278
  msgstr "Нет, вернуться на страницу настроек"
279
 
280
- #: bws_functions.php:888
281
  msgid "Plugin"
282
  msgstr "Плагин"
283
 
284
- #: bws_functions.php:897
285
  msgid "Shortcode settings"
286
  msgstr "Настройки шорткода"
287
 
288
- #: bws_functions.php:902
289
  msgid "The shortcode will be inserted"
290
  msgstr "Будет вставлен шорткод"
291
 
292
- #: bws_functions.php:945
293
  msgid "FAQ"
294
  msgstr "FAQ"
295
 
296
- #: bws_functions.php:951
297
  msgid "For more information:"
298
  msgstr "Для дополнительной информации:"
299
 
300
- #: bws_functions.php:952 bws_menu.php:400 class-bws-settings.php:755
301
  msgid "Documentation"
302
  msgstr "Документация"
303
 
304
- #: bws_functions.php:953 bws_menu.php:402 class-bws-settings.php:757
305
  msgid "Video Instructions"
306
  msgstr "Видео инструкции"
307
 
308
- #: bws_functions.php:954
309
  msgid "Submit a Request"
310
  msgstr "Отправить запрос"
311
 
312
- #: bws_menu.php:101 class-bws-settings.php:841
313
  msgid "Wrong license key"
314
  msgstr "Неправильный лицензионный ключ"
315
 
316
- #: bws_menu.php:122 class-bws-settings.php:868 class-bws-settings.php:939
317
- #: class-bws-settings.php:977
318
  msgid ""
319
  "Something went wrong. Please try again later. If the error appears again, "
320
  "please contact us"
@@ -322,12 +322,12 @@ msgstr ""
322
  "Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, "
323
  "пожалуйста, свяжитесь с нами"
324
 
325
- #: bws_menu.php:122 class-bws-settings.php:868 class-bws-settings.php:939
326
- #: class-bws-settings.php:977
327
  msgid "We are sorry for inconvenience."
328
  msgstr "Приносим извинения за неудобства."
329
 
330
- #: bws_menu.php:129 class-bws-settings.php:874 class-bws-settings.php:983
331
  msgid "Wrong license key."
332
  msgstr "Неправильный лицензионный ключ."
333
 
@@ -342,7 +342,7 @@ msgstr ""
342
  msgid "Log in"
343
  msgstr "Авторизоваться"
344
 
345
- #: bws_menu.php:133 bws_menu.php:332 deprecated.php:157
346
  msgid "Unfortunately, you have exceeded the number of available tries per day."
347
  msgstr "К сожалению, вы превысили количество доступных попыток."
348
 
@@ -356,7 +356,7 @@ msgstr ""
356
  "обновлений и приоритетной тех.поддержки, вам необходимо продлить лицензию в "
357
  "вашей %s"
358
 
359
- #: bws_menu.php:137 class-bws-settings.php:991
360
  msgid ""
361
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
362
  "Trial license can be installed only once."
@@ -364,19 +364,19 @@ msgstr ""
364
  "К сожалению, Pro лицензия уже была установлена на этом доменен. Pro Trial "
365
  "лицензия может быть установлена только один раз."
366
 
367
- #: bws_menu.php:142 class-bws-settings.php:889
368
  msgid "The license key is valid."
369
  msgstr "Лицензионный ключ действителен."
370
 
371
- #: bws_menu.php:144 class-bws-settings.php:893
372
  msgid "Your license will expire on"
373
  msgstr "Ваша лицензия истечет"
374
 
375
- #: bws_menu.php:146
376
  msgid "Congratulations! Pro Membership license is activated successfully."
377
  msgstr "Поздравляем! Pro Membership лицензия успешно активирована."
378
 
379
- #: bws_menu.php:153 class-bws-settings.php:1001
380
  msgid ""
381
  "Something went wrong. Try again later or upload the plugin manually. We are "
382
  "sorry for inconvenience."
@@ -384,214 +384,214 @@ msgstr ""
384
  "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. "
385
  "Приносим извинения за неудобства."
386
 
387
- #: bws_menu.php:163
388
  msgid "Please enter your license key."
389
  msgstr "Пожалуйста, введите Ваш лицензионный ключ."
390
 
391
- #: bws_menu.php:174
392
  msgid "Not set"
393
  msgstr "Не задан"
394
 
395
- #: bws_menu.php:176
396
  msgid "On"
397
  msgstr "Вкл"
398
 
399
- #: bws_menu.php:176
400
  msgid "Off"
401
  msgstr "Выкл"
402
 
403
- #: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
404
- #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
405
  msgid "N/A"
406
  msgstr "Неизвестно"
407
 
408
- #: bws_menu.php:182
409
  msgid "Mb"
410
  msgstr "Мб"
411
 
412
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
413
  msgid "Yes"
414
  msgstr "Да"
415
 
416
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
417
  msgid "No"
418
  msgstr "Нет"
419
 
420
- #: bws_menu.php:196
421
  msgid "WordPress Environment"
422
  msgstr "WordPress Системная среда"
423
 
424
- #: bws_menu.php:198
425
  msgid "Home URL"
426
  msgstr "Основной адрес сайта"
427
 
428
- #: bws_menu.php:199
429
  msgid "Website URL"
430
  msgstr "Адрес сайта"
431
 
432
- #: bws_menu.php:200
433
  msgid "WP Version"
434
  msgstr "Версия WordPress"
435
 
436
- #: bws_menu.php:201
437
  msgid "WP Multisite"
438
  msgstr "Мультисайт"
439
 
440
- #: bws_menu.php:202
441
  msgid "WP Memory Limit"
442
  msgstr "Лимит памяти WordPress"
443
 
444
- #: bws_menu.php:203
445
  msgid "Active Theme"
446
  msgstr "Текущая тема"
447
 
448
- #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
449
  #, php-format
450
  msgid "by %s"
451
  msgstr "%s"
452
 
453
- #: bws_menu.php:207
454
  msgid "Server Environment"
455
  msgstr "Системная среда сервера"
456
 
457
- #: bws_menu.php:209
458
  msgid "Operating System"
459
  msgstr "Операционная система"
460
 
461
- #: bws_menu.php:210
462
  msgid "Server"
463
  msgstr "Тип сервера"
464
 
465
- #: bws_menu.php:211
466
  msgid "PHP Version"
467
  msgstr "Версия PHP"
468
 
469
- #: bws_menu.php:212
470
  msgid "PHP Allow URL fopen"
471
  msgstr "PHP Allow URL fopen"
472
 
473
- #: bws_menu.php:213
474
  msgid "PHP Memory Limit"
475
  msgstr "Лимит памяти"
476
 
477
- #: bws_menu.php:214
478
  msgid "Memory Usage"
479
  msgstr "Использование памяти"
480
 
481
- #: bws_menu.php:215
482
  msgid "PHP Max Upload Size"
483
  msgstr "Макс. размер загружаемого файла"
484
 
485
- #: bws_menu.php:216
486
  msgid "PHP Max Post Size"
487
  msgstr "Макс. размер записи"
488
 
489
- #: bws_menu.php:217
490
  msgid "PHP Max Script Execute Time"
491
  msgstr "Макс. время выполнения сценария"
492
 
493
- #: bws_menu.php:218
494
  msgid "PHP Exif support"
495
  msgstr "Поддержка PHP Exif"
496
 
497
- #: bws_menu.php:219
498
  msgid "PHP IPTC support"
499
  msgstr "Поддержка PHP IPTC"
500
 
501
- #: bws_menu.php:220
502
  msgid "PHP XML support"
503
  msgstr "Поддержка PHP XML"
504
 
505
- #: bws_menu.php:226
506
  msgid "Database"
507
  msgstr "База данных"
508
 
509
- #: bws_menu.php:228
510
  msgid "WP DB version"
511
  msgstr "Версия базы данных WordPress"
512
 
513
- #: bws_menu.php:229
514
  msgid "MySQL version"
515
  msgstr "Версия MYSQL"
516
 
517
- #: bws_menu.php:230
518
  msgid "SQL Mode"
519
  msgstr "Режим SQL"
520
 
521
- #: bws_menu.php:234
522
  msgid "Active Plugins"
523
  msgstr "Активированные плагины"
524
 
525
- #: bws_menu.php:239
526
  msgid "Inactive Plugins"
527
  msgstr "Неактивированные плагины"
528
 
529
- #: bws_menu.php:260
530
  msgid "Please enter a valid email address."
531
  msgstr "Пожалуйста, введите валидный емайл."
532
 
533
- #: bws_menu.php:262
534
  #, php-format
535
  msgid "Email with system info is sent to %s."
536
  msgstr "Емейл с системной информацией отправлен на %s."
537
 
538
- #: bws_menu.php:266
539
  msgid "Thank you for contacting us."
540
  msgstr "Спасибо что связались с нами."
541
 
542
- #: bws_menu.php:289
543
  msgid "Sorry, email message could not be delivered."
544
  msgstr "Извините, ваш емейл не может быть отправлен."
545
 
546
- #: bws_menu.php:305 bws_menu.php:309 bws_menu.php:358 deprecated.php:26
547
  msgid "Plugins"
548
  msgstr "Плагины"
549
 
550
- #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:586 deprecated.php:27
551
  msgid "Themes"
552
  msgstr "Темы"
553
 
554
- #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:616
555
  msgid "System status"
556
  msgstr "Системная информация"
557
 
558
- #: bws_menu.php:315
559
  msgid "Support"
560
  msgstr "Тех. поддержка"
561
 
562
- #: bws_menu.php:316
563
  msgid "Manage purchased licenses & subscriptions"
564
  msgstr "Управление купленными лицензиями и подписками"
565
 
566
- #: bws_menu.php:324
567
  #, php-format
568
  msgid "Get Access to %s+ Premium Plugins"
569
  msgstr "Получить доступ к %s+ премиум плагинам"
570
 
571
- #: bws_menu.php:326
572
  msgid "Subscribe to Pro Membership"
573
  msgstr "Подписаться на Pro Membership"
574
 
575
- #: bws_menu.php:334 bws_menu.php:345 class-bws-settings.php:804
576
  #: deprecated.php:123
577
  msgid "Check license key"
578
  msgstr "Проверка лицензионного ключа"
579
 
580
- #: bws_menu.php:337
581
  msgid "Enter your license key"
582
  msgstr "Ваш лицензионный ключ"
583
 
584
- #: bws_menu.php:343 bws_menu.php:538 bws_menu.php:547
585
- #: class-bws-settings.php:783 deprecated.php:155 deprecated.php:163
586
  #: deprecated.php:240 deprecated.php:249
587
  msgid "Activate"
588
  msgstr "Активировать"
589
 
590
- #: bws_menu.php:359
591
  msgid "Upload Plugin"
592
  msgstr "Добавить новый"
593
 
594
- #: bws_menu.php:363
595
  #, php-format
596
  msgid ""
597
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -604,7 +604,7 @@ msgstr ""
604
  "проблемы с RSS-лентами или другие неполадки, попробуйте деактивировать или "
605
  "удалить этот плагин."
606
 
607
- #: bws_menu.php:365
608
  msgid ""
609
  "Plugin could not be activated because it triggered a <strong>fatal error</"
610
  "strong>."
@@ -612,51 +612,51 @@ msgstr ""
612
  "Плагин не может быть активирован, поскольку он вызвал <strong>фатальную "
613
  "ошибку</strong>."
614
 
615
- #: bws_menu.php:368
616
  msgid "Plugin <strong>activated</strong>."
617
  msgstr "Плагин <strong>активировано</strong>."
618
 
619
- #: bws_menu.php:382
620
  msgid "Download Pro Plugin"
621
  msgstr "Загрузить Pro плагина"
622
 
623
- #: bws_menu.php:384 class-bws-settings.php:738
624
  msgid "Your Pro plugin is ready"
625
  msgstr "Ваш Pro плагин готов"
626
 
627
- #: bws_menu.php:386 class-bws-settings.php:740
628
  msgid "Your plugin has been zipped, and now is ready to download."
629
  msgstr "Ваш плагин заархивирован, и готов к загрузке."
630
 
631
- #: bws_menu.php:389 class-bws-settings.php:743
632
  msgid "Download Now"
633
  msgstr "Загрузить сейчас"
634
 
635
- #: bws_menu.php:393 class-bws-settings.php:747
636
  msgid "Need help installing the plugin?"
637
  msgstr "Нужна помощь в установке плагина?"
638
 
639
- #: bws_menu.php:395 class-bws-settings.php:749
640
  msgid "How to install WordPress plugin from your admin Dashboard (ZIP archive)"
641
  msgstr "Как установить WordPress плагин с админ панели (ZIP архив)"
642
 
643
- #: bws_menu.php:398 class-bws-settings.php:753
644
  msgid "Get Started"
645
  msgstr "Начать "
646
 
647
- #: bws_menu.php:404 class-bws-settings.php:759
648
  msgid "Knowledge Base"
649
  msgstr "База Знаний"
650
 
651
- #: bws_menu.php:407
652
  msgid "Licenses & Domains"
653
  msgstr "Лицензии & Домены"
654
 
655
- #: bws_menu.php:410
656
  msgid "Client Area"
657
  msgstr "Client Area"
658
 
659
- #: bws_menu.php:409
660
  #, php-format
661
  msgid ""
662
  "Manage your license(-s) and change domain names using the %s at BestWebSoft."
@@ -664,148 +664,148 @@ msgstr ""
664
  "Управляйте своей лицензией(-ами) и меняйте доменные имена, используя %s на "
665
  "BestWebSoft."
666
 
667
- #: bws_menu.php:412
668
  msgid "Return to BestWebSoft Panel"
669
  msgstr "Возврат к BestWebSoft Panel"
670
 
671
- #: bws_menu.php:419 bws_menu.php:439 bws_menu.php:568
672
  msgid "All"
673
  msgstr "Все"
674
 
675
- #: bws_menu.php:422 bws_menu.php:605
676
  msgid "Installed"
677
  msgstr "Установленные"
678
 
679
- #: bws_menu.php:425
680
  msgid "Not Installed"
681
  msgstr "Не установленные"
682
 
683
- #: bws_menu.php:432
684
  msgid "Filter results"
685
  msgstr "Фильтр результатов"
686
 
687
- #: bws_menu.php:435 bws_menu.php:564
688
  msgid "Category"
689
  msgstr "Категория"
690
 
691
- #: bws_menu.php:499
692
  msgid "Not installed"
693
  msgstr "Не установлен"
694
 
695
- #: bws_menu.php:503
696
  msgid "Renew to get updates"
697
  msgstr "Продлить для обновления"
698
 
699
- #: bws_menu.php:506
700
  #, php-format
701
  msgid "Update to v %s"
702
  msgstr "Обновить до версии %s"
703
 
704
- #: bws_menu.php:518 bws_menu.php:541
705
  msgid "Get Pro"
706
  msgstr "Получить Pro"
707
 
708
- #: bws_menu.php:524 class-bws-settings.php:174 class-bws-settings.php:1064
709
  msgid "Upgrade to Pro"
710
  msgstr "Обновить до Pro"
711
 
712
- #: bws_menu.php:538 bws_menu.php:547
713
  msgid "Activate this plugin"
714
  msgstr "Активировать плагин"
715
 
716
- #: bws_menu.php:550
717
  msgid "Install this plugin"
718
  msgstr "Установить этот плагин"
719
 
720
- #: bws_menu.php:550
721
  msgid "Install Now"
722
  msgstr "Установить"
723
 
724
- #: bws_menu.php:559
725
  msgid "Nothing found. Try another criteria."
726
  msgstr "Ничего не найдено. Попробуйте другие критерии."
727
 
728
- #: bws_menu.php:596
729
  #, php-format
730
  msgid "By %s"
731
  msgstr "%s"
732
 
733
- #: bws_menu.php:603
734
  msgid "Already Installed"
735
  msgstr "Уже установлена"
736
 
737
- #: bws_menu.php:613
738
  msgid "Browse More WordPress Themes"
739
  msgstr "Обзор WordPress тем"
740
 
741
- #: bws_menu.php:622
742
  msgid "Send to support"
743
  msgstr "Отправить в тех. поддержку"
744
 
745
- #: bws_menu.php:629
746
  msgid "Send to custom email &#187;"
747
  msgstr "Отправить на емейл &#187;"
748
 
749
- #: class-bws-settings.php:153
750
  msgid "Information"
751
  msgstr "Информация"
752
 
753
- #: class-bws-settings.php:161
754
  msgid "Inactive"
755
  msgstr "Неактивна"
756
 
757
- #: class-bws-settings.php:169
758
  msgid "Expired"
759
  msgstr "Истекла"
760
 
761
- #: class-bws-settings.php:172
762
  #, php-format
763
  msgid "%s day(-s) left"
764
  msgstr "%s дней осталось"
765
 
766
- #: class-bws-settings.php:178
767
  #, php-format
768
  msgid "Expired on %s"
769
  msgstr "Истекает %s"
770
 
771
- #: class-bws-settings.php:178
772
  msgid "Renew Now"
773
  msgstr "Возобновить сейчас"
774
 
775
- #: class-bws-settings.php:180
776
  msgid "Active"
777
  msgstr "Активна"
778
 
779
- #: class-bws-settings.php:185
780
  msgid "License"
781
  msgstr "Лицензия"
782
 
783
- #: class-bws-settings.php:188
784
  msgid "Status"
785
  msgstr "Статус"
786
 
787
- #: class-bws-settings.php:192
788
  msgid "Version"
789
  msgstr "Версия"
790
 
791
- #: class-bws-settings.php:302
792
  msgid "All plugin settings were restored."
793
  msgstr "Все настройки плагина были восстановлены."
794
 
795
- #: class-bws-settings.php:442
796
  msgid "Custom Code"
797
  msgstr "Пользовательский код"
798
 
799
- #: class-bws-settings.php:446
800
  msgid "You do not have sufficient permissions to edit plugins for this site."
801
  msgstr ""
802
  "У вас недостаточно полномочий, чтобы редактировать плагины на этом сайте."
803
 
804
- #: class-bws-settings.php:451
805
  msgid "These styles will be added to the header on all pages of your site."
806
  msgstr "Эти стили будут добавлены в хедер на всех страницах вашего сайта."
807
 
808
- #: class-bws-settings.php:454
809
  #, php-format
810
  msgid ""
811
  "This PHP code will be hooked to the %s action and will be printed on front "
@@ -814,11 +814,11 @@ msgstr ""
814
  "Этот PHP код будет прикреплен к %s аction и будет добавлен только во "
815
  "фронтенде."
816
 
817
- #: class-bws-settings.php:457
818
  msgid "These code will be added to the header on all pages of your site."
819
  msgstr "Этот код будет добавлен в хедер на всех страницах вашего сайта."
820
 
821
- #: class-bws-settings.php:465
822
  #, php-format
823
  msgid ""
824
  "You need to make this files writable before you can save your changes. See "
@@ -827,25 +827,25 @@ msgstr ""
827
  "Чтобы сохранить изменения, нужно сделать этот файл доступным для записи. "
828
  "Дополнительную информацию можно получить в %s Кодексе %s."
829
 
830
- #: class-bws-settings.php:475
831
  msgid "Browsing"
832
  msgstr "Просмотр"
833
 
834
- #: class-bws-settings.php:480
835
  #, php-format
836
  msgid "Activate custom %s code."
837
  msgstr "Активировать пользовательский %s код."
838
 
839
- #: class-bws-settings.php:488
840
  #, php-format
841
  msgid "Learn more about %s"
842
  msgstr "Подробнее о %s"
843
 
844
- #: class-bws-settings.php:550
845
  msgid "Miscellaneous Settings"
846
  msgstr "Прочие настройки"
847
 
848
- #: class-bws-settings.php:559 class-bws-settings.php:614
849
  #, php-format
850
  msgid ""
851
  "It is prohibited to change %s settings on this site in the %s network "
@@ -853,60 +853,60 @@ msgid ""
853
  msgstr ""
854
  "Cетевыми настройками %s запрещается изменять настройки %s на этом сайте."
855
 
856
- #: class-bws-settings.php:562 class-bws-settings.php:617
857
  #, php-format
858
  msgid ""
859
  "It is prohibited to view %s settings on this site in the %s network settings."
860
  msgstr ""
861
  "Cетевыми настройками %s запрещается просматривать настройки %s на этом сайте."
862
 
863
- #: class-bws-settings.php:571
864
  msgid "Pro Options"
865
  msgstr "Pro опции"
866
 
867
- #: class-bws-settings.php:575
868
  msgid "Enable to display plugin Pro options."
869
  msgstr "Включите для отображения Pro опций плагина."
870
 
871
- #: class-bws-settings.php:581
872
  msgid "Track Usage"
873
  msgstr "Собирать статистику"
874
 
875
- #: class-bws-settings.php:585
876
  msgid ""
877
  "Enable to allow tracking plugin usage anonymously in order to make it better."
878
  msgstr ""
879
  "Включить, чтобы разрешить анонимно отслеживать использование и сделать "
880
  "плагин лучше."
881
 
882
- #: class-bws-settings.php:590
883
  msgid "Default Settings"
884
  msgstr "Настройки по умолчанию"
885
 
886
- #: class-bws-settings.php:592
887
  msgid "Restore Settings"
888
  msgstr "Восстановить настройки"
889
 
890
- #: class-bws-settings.php:593
891
  msgid "This will restore plugin settings to defaults."
892
  msgstr "Восстановить все настройки плагина к настройкам по умолчанию."
893
 
894
- #: class-bws-settings.php:605
895
  msgid "Import / Export"
896
  msgstr "Импорт / Экспорт"
897
 
898
- #: class-bws-settings.php:723
899
  msgid "License Key"
900
  msgstr "Лицензионный ключ"
901
 
902
- #: class-bws-settings.php:785
903
  #, php-format
904
  msgid "Enter your license key to activate %s and get premium plugin features."
905
  msgstr ""
906
  "Введите лицензионный ключ для активации %s и получения дополнительных "
907
  "возможностей плагина."
908
 
909
- #: class-bws-settings.php:788 class-bws-settings.php:987 deprecated.php:243
910
  msgid ""
911
  "Unfortunately, you have exceeded the number of available tries per day. "
912
  "Please, upload the plugin manually."
@@ -914,12 +914,12 @@ msgstr ""
914
  "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, "
915
  "загрузите плагин вручную."
916
 
917
- #: class-bws-settings.php:791 deprecated.php:234
918
  #, php-format
919
  msgid "Start Your Free %s-Day Trial Now"
920
  msgstr "Попробуйте %s-дневную Trial версию бесплатно"
921
 
922
- #: class-bws-settings.php:806
923
  msgid ""
924
  "If necessary, you can check if the license key is correct or reenter it in "
925
  "the field below."
@@ -927,15 +927,15 @@ msgstr ""
927
  "При необходимости вы можете проверить валидность лицензионного ключа или "
928
  "повторно ввести его в поле выше."
929
 
930
- #: class-bws-settings.php:815
931
  msgid "Manage License Settings"
932
  msgstr "Управление настройками лицензий"
933
 
934
- #: class-bws-settings.php:817
935
  msgid "Login to Client Area"
936
  msgstr "Зайти в Client Area"
937
 
938
- #: class-bws-settings.php:819
939
  msgid ""
940
  "Manage active licenses, download BWS products, and view your payment history "
941
  "using BestWebSoft Client Area."
@@ -943,11 +943,11 @@ msgstr ""
943
  "Управляй активными лицензиями, загружай BWS продукты, а также просматривай "
944
  "историю платежей с помощью BestWebSoft Client Area."
945
 
946
- #: class-bws-settings.php:876 class-bws-settings.php:985
947
  msgid "This license key is bound to another site."
948
  msgstr "Этот лицензионный ключ привязан к другому сайту."
949
 
950
- #: class-bws-settings.php:878
951
  msgid ""
952
  "This license key is valid, but Your license has expired. If you want to "
953
  "update our plugin in future, you should extend the license."
@@ -955,11 +955,11 @@ msgstr ""
955
  "Лицензионный ключ принят, но срок действия лицензии истек. Если вы хотите "
956
  "обновлять плагин в будущем, вы должны продлить лицензию."
957
 
958
- #: class-bws-settings.php:880
959
  msgid "Unfortunately, you have exceeded the number of available tries."
960
  msgstr "К сожалению, вы превысили количество доступных попыток."
961
 
962
- #: class-bws-settings.php:882
963
  msgid ""
964
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
965
  "The Pro Trial license can be installed only once."
@@ -967,18 +967,18 @@ msgstr ""
967
  "К сожалению, Pro Trial версия плагина уже устанавливалась на этот домен. Pro "
968
  "Trial версию можно устанавливать лишь один раз."
969
 
970
- #: class-bws-settings.php:887
971
  msgid "The Pro Trial license key is valid."
972
  msgstr "Ключ Pro Trial версии действителен."
973
 
974
- #: class-bws-settings.php:897 deprecated.php:142
975
  #, php-format
976
  msgid ""
977
  "In order to continue using the plugin it is necessary to buy a %s license."
978
  msgstr ""
979
  "Чтобы продолжить пользоваться плагином, необходимо приобрести %s лицензию."
980
 
981
- #: class-bws-settings.php:989
982
  #, php-format
983
  msgid ""
984
  "Unfortunately, Your license has expired. To continue getting top-priority "
@@ -988,26 +988,59 @@ msgstr ""
988
  "обновлений и приоритетной тех.поддержки, вам необходимо продлить лицензию в "
989
  "вашей %s."
990
 
991
- #: class-bws-settings.php:1038
992
  msgid "Please, enter Your license key"
993
  msgstr "Пожалуйста, введите ваш лицензионный ключ"
994
 
995
- #: class-bws-settings.php:1051
996
  msgid "Need Help?"
997
  msgstr "Нужна помощь?"
998
 
999
- #: class-bws-settings.php:1053
1000
  msgid "Read the Instruction"
1001
  msgstr "Читать инструкцию"
1002
 
1003
- #: class-bws-settings.php:1057
1004
  msgid "Watch the Video"
1005
  msgstr "Смотреть видео"
1006
 
1007
- #: class-bws-settings.php:1068
1008
  msgid "Start Your Free Trial"
1009
  msgstr "Использовать бесплатную Trial версию"
1010
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1011
  #: deactivation-form.php:22
1012
  msgid "Need help? We are ready to answer your questions."
1013
  msgstr "Нужна помощь? Мы готовы ответить на ваши вопросы."
@@ -1068,26 +1101,18 @@ msgstr ""
1068
  "Если у вас есть время, пожалуйста, сообщите нам, почему вы деактивируете "
1069
  "плагин"
1070
 
1071
- #: deactivation-form.php:120
1072
- msgid "Send website data and allow to contact me back"
1073
- msgstr "Отправить данные сайта и позволить связаться со мной"
1074
-
1075
- #: deactivation-form.php:225
1076
- msgid "Processing"
1077
- msgstr "Обработка"
1078
-
1079
- #: deactivation-form.php:254
1080
  msgid "Submit and Deactivate"
1081
  msgstr "Отправить и Деактивировать"
1082
 
1083
- #: deactivation-form.php:269
1084
- msgid "Please tell us the reason so we can improve it."
1085
- msgstr "Пожалуйста, сообщите нам причину, чтобы мы могли улучшить плагин."
1086
-
1087
- #: deactivation-form.php:334
1088
  msgid "Skip and Deactivate"
1089
  msgstr "Пропустить и Деактивировать"
1090
 
 
 
 
 
1091
  #: deprecated.php:28
1092
  msgid "System Status"
1093
  msgstr "Системная информация"
@@ -1161,51 +1186,55 @@ msgstr "Введите лицензионный ключ для установк
1161
  msgid "version of the plugin."
1162
  msgstr "версия плагина."
1163
 
1164
- #: product_list.php:7
1165
  msgid "Admin Tools"
1166
  msgstr "Инструменты"
1167
 
1168
- #: product_list.php:8
1169
  msgid "Content"
1170
  msgstr "Контент"
1171
 
1172
- #: product_list.php:9
1173
  msgid "eCommerce"
1174
  msgstr "Коммерция"
1175
 
1176
- #: product_list.php:10
1177
  msgid "Marketing"
1178
  msgstr "Маркетинг"
1179
 
1180
- #: product_list.php:11
1181
  msgid "Navigation"
1182
  msgstr "Навигация"
1183
 
1184
- #: product_list.php:12
1185
  msgid "Recommended"
1186
  msgstr "Рекомендованные"
1187
 
1188
- #: product_list.php:13
1189
  msgid "Security"
1190
  msgstr "Безопасность"
1191
 
1192
- #: product_list.php:14
1193
  msgid "SEO"
1194
  msgstr "Поисковая оптимизация"
1195
 
1196
- #: product_list.php:15
1197
  msgid "SMM"
1198
  msgstr "СММ"
1199
 
1200
- #: product_list.php:22
 
 
 
 
1201
  msgid "Best secure captcha plugin to protect your WordPress forms."
1202
  msgstr "Лучший плагин капчи, который защитит формы вашего сайта WordPress."
1203
 
1204
- #: product_list.php:32
1205
  msgid "Create your own rental website for car renting and booking."
1206
  msgstr "Создайте свой собственный сайт проката и резервирования автомобилей."
1207
 
1208
- #: product_list.php:44
1209
  msgid ""
1210
  "Add columns with custom content to WordPress website pages, posts, widgets, "
1211
  "etc."
@@ -1213,7 +1242,7 @@ msgstr ""
1213
  "Добавляйте столбцы с пользовательским контентом в ваш WordPress сайт на "
1214
  "страницы, посты, виджеты, и т.д."
1215
 
1216
- #: product_list.php:51
1217
  msgid ""
1218
  "Allow customers to reach you using secure contact form plugin any website "
1219
  "must have."
@@ -1221,37 +1250,37 @@ msgstr ""
1221
  "Предоставьте возможность клиентам осуществлять связь с вами через безопасный "
1222
  "плагин контактной формы, который должен иметь любой сайт."
1223
 
1224
- #: product_list.php:61
1225
  msgid "Add unlimited number of contact forms to WordPress website."
1226
  msgstr ""
1227
  "Добавляйте неограниченное количество контактных форм на ваш сайт WordPress."
1228
 
1229
- #: product_list.php:71
1230
  msgid "Save and manage Contact Form messages. Never lose important data."
1231
  msgstr ""
1232
  "Сохраняйте и управляйте сообщениями плагина Contact Form. Никогда не теряйте "
1233
  "важные данные."
1234
 
1235
- #: product_list.php:81
1236
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1237
  msgstr ""
1238
  "Добавляйте неограниченное количество пользовательских страниц в панели "
1239
  "администратора WordPress."
1240
 
1241
- #: product_list.php:91
1242
  msgid ""
1243
  "Add custom post types and taxonomies to WordPress website search results."
1244
  msgstr ""
1245
  "Добавляйте пользовательские типы постов и таксономии в результаты поиска на "
1246
  "вашем сайте WordPress."
1247
 
1248
- #: product_list.php:101
1249
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1250
  msgstr ""
1251
  "Добавляйте кнопки PayPal и 2CO, чтобы получать пожертвования и "
1252
  "благотворительные взносы."
1253
 
1254
- #: product_list.php:108
1255
  msgid ""
1256
  "Get latest error log messages to diagnose website problems. Define and fix "
1257
  "issues faster."
@@ -1259,7 +1288,7 @@ msgstr ""
1259
  "Получайте последние сообщения из журнала ошибок для диагностики проблем "
1260
  "сайта. Быстрее выявляйте и устраняйте проблемы."
1261
 
1262
- #: product_list.php:115
1263
  msgid ""
1264
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1265
  "widgets."
@@ -1267,7 +1296,7 @@ msgstr ""
1267
  "Добавляйте кнопки Facebook \"Подписаться\", \"Нравится\" и \"Поделиться\" в "
1268
  "посты, страницы и виджеты сайта WordPress."
1269
 
1270
- #: product_list.php:125
1271
  msgid ""
1272
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1273
  "clicks."
@@ -1275,7 +1304,7 @@ msgstr ""
1275
  "Добавляйте живописные галереи, альбомы, изображения и категории галереи на "
1276
  "ваш сайт WordPress всего в несколько кликов."
1277
 
1278
- #: product_list.php:135
1279
  msgid ""
1280
  "Stronger security solution which protects your WordPress website from hacks "
1281
  "and unauthorized login attempts."
@@ -1283,7 +1312,7 @@ msgstr ""
1283
  "Мощнейшее решение для безопасности, которое защищает ваш сайт WordPress от "
1284
  "взломов и неавторизованных попыток входа в систему."
1285
 
1286
- #: product_list.php:145
1287
  msgid ""
1288
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1289
  "results, categories, tags, and widgets."
@@ -1291,23 +1320,23 @@ msgstr ""
1291
  "Добавляйте рекламу сервиса Adsense на страницы, посты, пользовательские "
1292
  "посты, результаты поиска, категории, теги и виджеты сайта WordPress."
1293
 
1294
- #: product_list.php:155
1295
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1296
  msgstr ""
1297
  "Добавляйте код Google Analytics на ваш сайт WordPress и отслеживайте базовую "
1298
  "статистику сайта."
1299
 
1300
- #: product_list.php:165
1301
  msgid "Protect WordPress website forms from spam entries with reCaptcha."
1302
  msgstr "Защищайте формы вашего сайта WordPress от спама с помощью reCaptcha."
1303
 
1304
- #: product_list.php:175
1305
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1306
  msgstr ""
1307
  "Добавляйте пользовательские карты Google в посты, страницы и виджеты "
1308
  "WordPress."
1309
 
1310
- #: product_list.php:185
1311
  msgid ""
1312
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1313
  "your blog."
@@ -1315,7 +1344,7 @@ msgstr ""
1315
  "Создавайте и добавляйте файлы XML sitemap на ваш сайт WordPress. Помогите "
1316
  "поисковым системам проиндексировать ваш блог."
1317
 
1318
- #: product_list.php:195
1319
  msgid ""
1320
  "Replace external WordPress website links with Google shortlinks and track "
1321
  "click stats."
@@ -1323,7 +1352,7 @@ msgstr ""
1323
  "Замените внешние ссылки сайта WordPress на короткие ссылки Google и "
1324
  "отслеживайте статистику кликов."
1325
 
1326
- #: product_list.php:202
1327
  msgid ""
1328
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1329
  "hostnames, etc."
@@ -1331,7 +1360,7 @@ msgstr ""
1331
  "Защитите свой сайт WordPress - предоставляйте и запрещайте доступ с "
1332
  "определенных IP-адресов, имен хостов и т.д."
1333
 
1334
- #: product_list.php:212
1335
  msgid ""
1336
  "Create your personal job board and listing WordPress website. Search jobs, "
1337
  "submit CV/resumes, choose candidates."
@@ -1340,7 +1369,7 @@ msgstr ""
1340
  "WordPress. Осуществляйте поиск вакансий, подачу резюме/CV кандидата, выбор "
1341
  "кандидатов."
1342
 
1343
- #: product_list.php:219
1344
  msgid ""
1345
  "Protect WordPress website against brute force attacks. Limit rate of login "
1346
  "attempts."
@@ -1348,7 +1377,7 @@ msgstr ""
1348
  "Защищайте свой сайт WordPress от брутфорс-атак. Ограничивайте количество "
1349
  "попыток ввода логина."
1350
 
1351
- #: product_list.php:229
1352
  msgid ""
1353
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1354
  "5 plugins included – profile, insider, etc."
@@ -1357,7 +1386,7 @@ msgstr ""
1357
  "страницам и виджетам WordPress. 5 плагинов включено - Профиль, Инсайдер и т."
1358
  "д."
1359
 
1360
- #: product_list.php:239
1361
  msgid ""
1362
  "Translate WordPress website content to other languages manually. Create "
1363
  "multilingual pages, posts, widgets, menus, etc."
@@ -1365,7 +1394,7 @@ msgstr ""
1365
  "Переводите содержимое сайта WordPress на другие языки вручную. Создавайте "
1366
  "многоязычные страницы, посты, виджеты, меню и т.д."
1367
 
1368
- #: product_list.php:249
1369
  msgid ""
1370
  "Add customizable pagination to WordPress website. Split long content to "
1371
  "multiple pages for better navigation."
@@ -1373,7 +1402,7 @@ msgstr ""
1373
  "Добавляйте настраиваемую пагинацию на ваш сайт WordPress. Разбивайте "
1374
  "объемный контент на несколько страниц для лучшей навигации."
1375
 
1376
- #: product_list.php:259
1377
  msgid ""
1378
  "Generate PDF files and print WordPress posts/pages. Customize document "
1379
  "header/footer styles and appearance."
@@ -1381,7 +1410,7 @@ msgstr ""
1381
  "Создавайте PDF-файлы и печатайте посты/страницы сайта WordPress. "
1382
  "Настраивайте стили хедера/футера документа и его внешний вид."
1383
 
1384
- #: product_list.php:269
1385
  msgid ""
1386
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1387
  "Profile) to WordPress posts, pages and widgets."
@@ -1389,7 +1418,7 @@ msgstr ""
1389
  "Добавляйте кнопки Pinterest \"Подписаться\", \"Сохранить\" и виджеты профиля "
1390
  "(Пин, Доска, Профиль) к постам, страницам и виджетам WordPress."
1391
 
1392
- #: product_list.php:279
1393
  msgid ""
1394
  "Create your personal portfolio WordPress website. Manage and showcase past "
1395
  "projects to get more clients."
@@ -1397,13 +1426,13 @@ msgstr ""
1397
  "Создавайте и добавляйте портфолио на свой сайт WordPress. Управляйте и "
1398
  "демонстрируйте прошлые проекты, чтобы привлечь больше клиентов."
1399
 
1400
- #: product_list.php:289
1401
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1402
  msgstr ""
1403
  "С легкостью экспортируйте посты WordPress в файлы формата CSV. Настраивайте "
1404
  "порядок отображения данных."
1405
 
1406
- #: product_list.php:299
1407
  msgid ""
1408
  "Add extra fields to default WordPress user profile. The easiest way to "
1409
  "create and manage additional custom values."
@@ -1411,7 +1440,7 @@ msgstr ""
1411
  "Добавляйте пользовательские поля в стандартный профиль WordPress. Самый "
1412
  "простой способ создания и управления дополнительными полями."
1413
 
1414
- #: product_list.php:309
1415
  msgid ""
1416
  "Add and display HTML advertisement banner on WordPress website. Customize "
1417
  "bar styles and appearance."
@@ -1419,7 +1448,7 @@ msgstr ""
1419
  "Добавляйте и отображайте баннерную HTML рекламу на сайте WordPress. "
1420
  "Настраивайте стили и внешний вид баннера."
1421
 
1422
- #: product_list.php:319
1423
  msgid ""
1424
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1425
  "widgets."
@@ -1427,7 +1456,7 @@ msgstr ""
1427
  "Добавляйте настраиваемые цитаты и подсказки к постам, страницам и виджетам "
1428
  "WordPress."
1429
 
1430
- #: product_list.php:326
1431
  msgid ""
1432
  "Add rating plugin to your WordPress website to receive feedback from your "
1433
  "customers."
@@ -1435,7 +1464,7 @@ msgstr ""
1435
  "Добавляйте систему оценивания и рейтинга на ваш сайт WordPress и получайте "
1436
  "отзывы от ваших клиентов."
1437
 
1438
- #: product_list.php:336
1439
  msgid ""
1440
  "Create your personal real estate WordPress website. Sell, rent and buy "
1441
  "properties. Add, search and browse listings easily."
@@ -1444,7 +1473,7 @@ msgstr ""
1444
  "Продавайте, арендуйте и покупайте недвижимость. Легко добавляйте, находите и "
1445
  "просматривайте листинги."
1446
 
1447
- #: product_list.php:346
1448
  msgid ""
1449
  "Add related, featured, latest, and popular posts to your WordPress website. "
1450
  "Connect your blog readers with a relevant content."
@@ -1452,7 +1481,7 @@ msgstr ""
1452
  "Добавляйте похожие, избранные, последние и популярные посты на ваш сайт "
1453
  "WordPress. Предоставляйте своим читателям контент схожей тематики."
1454
 
1455
- #: product_list.php:353
1456
  msgid ""
1457
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1458
  "settings and detailed reports."
@@ -1460,7 +1489,7 @@ msgstr ""
1460
  "Осуществляйте массовую рассылку писем пользователям WordPress. "
1461
  "Пользовательские шаблоны, дополнительные настройки и подробные отчеты."
1462
 
1463
- #: product_list.php:363
1464
  msgid ""
1465
  "The best responsive slider plugin for your WordPress website. Create "
1466
  "beautifully animated slides just in a few clicks."
@@ -1468,7 +1497,7 @@ msgstr ""
1468
  "Самый лучший адаптивный слайдер для вашего сайта WordPress. Создавайте "
1469
  "красиво анимированные слайды всего в несколько кликов."
1470
 
1471
- #: product_list.php:370
1472
  msgid ""
1473
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1474
  "Yahoo, Hotmail and other services."
@@ -1477,7 +1506,7 @@ msgstr ""
1477
  "WordPress на такие почтовые службы, как Gmail, Yahoo, Hotmail и многие "
1478
  "другие."
1479
 
1480
- #: product_list.php:377
1481
  msgid ""
1482
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1483
  "FB, Twitter, Pinterest, LinkedIn."
@@ -1485,7 +1514,7 @@ msgstr ""
1485
  "Добавляйте кнопки и виджеты социальных сетей к постам, страницам и виджетам "
1486
  "WordPress. FB, Twitter, Pinterest, LinkedIn."
1487
 
1488
- #: product_list.php:387
1489
  msgid ""
1490
  "Add social media login, registration, and commenting to your WordPress "
1491
  "website."
@@ -1493,7 +1522,7 @@ msgstr ""
1493
  "Добавляйте на свой сайт WordPress возможность входа, регистрации и "
1494
  "комментирования с использованием существующих аккаунтов социальных сетей."
1495
 
1496
- #: product_list.php:394
1497
  msgid ""
1498
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1499
  "Collect data and subscribe your users."
@@ -1501,7 +1530,7 @@ msgstr ""
1501
  "Добавляйте форму подписки на новостную рассылку в посты, страницы и виджеты "
1502
  "WordPress. Собирайте данные и осуществляйте подписку пользователей."
1503
 
1504
- #: product_list.php:404
1505
  msgid ""
1506
  "Add testimonials and feedbacks from your customers to WordPress website "
1507
  "posts, pages, and widgets."
@@ -1509,7 +1538,7 @@ msgstr ""
1509
  "Добавляйте рекомендации и отзывы ваших клиентов в посты, страницы и виджеты "
1510
  "сайта WordPress."
1511
 
1512
- #: product_list.php:411
1513
  msgid ""
1514
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1515
  "attendance and generate reports."
@@ -1517,7 +1546,7 @@ msgstr ""
1517
  "Лучший плагин учёта рабочего времени на сайте WordPress. Отслеживайте время "
1518
  "работы сотрудников, оптимизируйте график работы в офисе и создавайте отчеты."
1519
 
1520
- #: product_list.php:421
1521
  msgid ""
1522
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1523
  "and pages."
@@ -1525,7 +1554,7 @@ msgstr ""
1525
  "Добавляйте кнопки Твиттера \"Читать\", \"Твитнуть\", \"Метка\" и \"Упомянуть"
1526
  "\" к постам и страницам WordPress. "
1527
 
1528
- #: product_list.php:431
1529
  msgid ""
1530
  "Automatically check and update WordPress website core with all installed "
1531
  "plugins and themes to the latest versions."
@@ -1533,7 +1562,7 @@ msgstr ""
1533
  "Выполняйте автоматическую проверку и обновление ядра WordPress до последних "
1534
  "версий со всеми установленными плагинами и темами."
1535
 
1536
- #: product_list.php:441
1537
  msgid ""
1538
  "Powerful user role management plugin for WordPress website. Create, edit, "
1539
  "copy, and delete user roles."
@@ -1541,7 +1570,7 @@ msgstr ""
1541
  "Эффективный плагин управления ролями пользователей для сайта WordPress. "
1542
  "Создавайте, редактируйте, копируйте и удаляйте роли пользователей."
1543
 
1544
- #: product_list.php:451
1545
  msgid ""
1546
  "Display live count of online visitors who are currently browsing your "
1547
  "WordPress website."
@@ -1549,7 +1578,7 @@ msgstr ""
1549
  "Ведите подсчет количества посетителей, которые в настоящее время "
1550
  "просматривают ваш сайт WordPress."
1551
 
1552
- #: product_list.php:461
1553
  msgid ""
1554
  "Backup and export Zendesk Help Center content automatically to your "
1555
  "WordPress website database."
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-02-15 10:55+0200\n"
6
+ "PO-Revision-Date: 2021-02-15 10:55+0200\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
9
  "Language: ru\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_attr_e;printf;esc_html__;esc_html_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 2.4.2\n"
17
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
18
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPathExcluded-0: js\n"
21
 
22
+ #: bws_functions.php:73 bws_functions.php:239
23
  msgid "requires"
24
  msgstr "требует"
25
 
56
  msgid "Need help?"
57
  msgstr "Нужна помощь?"
58
 
59
+ #: bws_functions.php:104 bws_functions.php:949 class-bws-settings.php:1082
60
  msgid "Visit Help Center"
61
  msgstr "Перейти в Help Center"
62
 
64
  msgid "Want to support the plugin?"
65
  msgstr "Хотите поддержать плагин?"
66
 
67
+ #: bws_functions.php:108 bws_menu.php:529
68
  msgid "Donate"
69
  msgstr "Пожертвовать"
70
 
84
  "используя Ваш личный Client Area. Мы настоятельно рекомендуем вам решить "
85
  "проблему в течение 24 часов, в противном случае плагин будет деактивирован."
86
 
87
+ #: bws_functions.php:128 bws_functions.php:208 bws_menu.php:600
88
+ #: class-bws-settings.php:179
89
  msgid "Learn More"
90
  msgstr "Подробнее"
91
 
106
  "плагин в дальнейшем и иметь приоритетную тех.поддержку, то вам нужно "
107
  "продлить лицензию."
108
 
109
+ #: bws_functions.php:147 bws_functions.php:226
110
  msgid "Learn more"
111
  msgstr "Подробнее"
112
 
123
  msgid "The Pro Trial license will expire on"
124
  msgstr "Ваша лицензия Pro Trial версии плагина истекает"
125
 
126
+ #: bws_functions.php:199 bws_functions.php:222 bws_functions.php:266
127
+ #: bws_functions.php:276 bws_functions.php:475
128
  msgid "Close notice"
129
  msgstr "Закрыть"
130
 
131
+ #: bws_functions.php:204
132
  msgid "It’s time to upgrade your"
133
  msgstr "Настало время обновить Ваш"
134
 
135
+ #: bws_functions.php:204
136
  msgid "to"
137
  msgstr "до"
138
 
139
+ #: bws_functions.php:204
140
  msgid "version!"
141
  msgstr "версии!"
142
 
143
+ #: bws_functions.php:205
144
  msgid "Extend standard plugin functionality with new great options."
145
  msgstr "Расширяет возможности стандартного функционала плагина."
146
 
147
+ #: bws_functions.php:226
148
  #, php-format
149
  msgid ""
150
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
153
  "Ваш лицензионный ключ для %s истекает %s и вы не будете получать "
154
  "приоритетную тех.поддержку или обновления."
155
 
156
+ #: bws_functions.php:241
157
  msgid ""
158
  "or higher! We do not guarantee that our plugin will work correctly. Please "
159
  "upgrade to WordPress latest version."
161
  "или выше! Мы не гарантируем, что наш плагин будет работать корректно. "
162
  "Пожалуйста, обновите WordPress до последней версии."
163
 
164
+ #: bws_functions.php:237
165
  #, php-format
166
  msgid "<strong>%s</strong> %s <strong>WordPress %s</strong> %s"
167
  msgstr ""
168
 
169
+ #: bws_functions.php:256
170
  #, php-format
171
  msgid "Thank you for installing %s plugin!"
172
  msgstr "Спасибо, что установили %s плагин!"
173
 
174
+ #: bws_functions.php:258
175
  msgid "Let's get started"
176
  msgstr "Давайте начнем"
177
 
178
+ #: bws_functions.php:259 bws_functions.php:292 bws_menu.php:533
179
+ #: bws_menu.php:535
180
  msgid "Settings"
181
  msgstr "Настройки"
182
 
183
+ #: bws_functions.php:261 bws_menu.php:327 class-bws-settings.php:809
184
+ #: class-bws-settings.php:1084 class-bws-settings.php:1094 deprecated.php:234
185
  msgid "or"
186
  msgstr "или"
187
 
188
+ #: bws_functions.php:262 bws_functions.php:294
189
  msgid "Add New"
190
  msgstr "Добавить"
191
 
192
+ #: bws_functions.php:281
193
  msgid "Thank you for installing plugins by BestWebSoft!"
194
  msgstr "Спасибо за установку плагинов компании BestWebSoft!"
195
 
196
+ #: bws_functions.php:283
197
  msgid "More Details"
198
  msgstr "Детали"
199
 
200
+ #: bws_functions.php:284
201
  msgid "Less Details"
202
  msgstr "Скрыть детали"
203
 
204
+ #: bws_functions.php:312
205
  msgid "Deprecated function(-s) is used on the site here:"
206
  msgstr "Устаревшие функции используются на сайте здесь:"
207
 
208
+ #: bws_functions.php:326
209
  msgid ""
210
  "This function(-s) will be removed over time. Please update the product(-s)."
211
  msgstr ""
212
  "Эти функции будет удалены через некоторое время. Пожалуйста, обновите "
213
  "продукт."
214
 
215
+ #: bws_functions.php:470
216
  #, php-format
217
  msgid "Thank you for choosing %s plugin!"
218
  msgstr "Спасибо за выбор плагина %s!"
219
 
220
+ #: bws_functions.php:471
221
  msgid ""
222
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
223
  "we'd love to hear about it!"
226
  "функционала плагина, пожалуйста, присылайте их нам! Мы вседа открыты для "
227
  "новых идей!"
228
 
229
+ #: bws_functions.php:472
230
  msgid "Suggest a Feature"
231
  msgstr "Предложить функционал"
232
 
233
+ #: bws_functions.php:488 class-bws-settings.php:580 class-bws-settings.php:583
234
+ #: class-bws-settings.php:635 class-bws-settings.php:638
235
  msgid "Notice"
236
  msgstr "Внимание"
237
 
238
+ #: bws_functions.php:488
239
  msgid "The plugin's settings have been changed."
240
  msgstr "Настройки плагина были изменены"
241
 
242
+ #: bws_functions.php:489 class-bws-settings.php:222 class-bws-settings.php:242
243
  msgid "Save Changes"
244
  msgstr "Сохранить изменения"
245
 
246
+ #: bws_functions.php:503
247
  msgid ""
248
  "You can always look at premium options by checking the \"Pro Options\" in "
249
  "the \"Misc\" tab."
251
  "Вы всегда можете просмотреть премиум опции нажав на кнопку \"Pro опции\" на "
252
  "вкладке \"Разное\"."
253
 
254
+ #: bws_functions.php:679
255
  msgid "Add shortcode"
256
  msgstr "Добавить шорткод"
257
 
258
+ #: bws_functions.php:679
259
  msgid "Add BestWebSoft plugins' shortcodes using this button."
260
  msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
261
 
262
+ #: bws_functions.php:765
263
  msgid "Close"
264
  msgstr "Закрыть"
265
 
266
+ #: bws_functions.php:851
267
  msgid "Are you sure you want to restore default settings?"
268
  msgstr ""
269
  "Вы уверены что хотите восстановить все настройки плагина к настройкам по "
270
  "умолчанию?"
271
 
272
+ #: bws_functions.php:854
273
  msgid "Yes, restore all settings"
274
  msgstr "Да, восстановить все настройки"
275
 
276
+ #: bws_functions.php:855
277
  msgid "No, go back to the settings page"
278
  msgstr "Нет, вернуться на страницу настроек"
279
 
280
+ #: bws_functions.php:897
281
  msgid "Plugin"
282
  msgstr "Плагин"
283
 
284
+ #: bws_functions.php:906
285
  msgid "Shortcode settings"
286
  msgstr "Настройки шорткода"
287
 
288
+ #: bws_functions.php:911
289
  msgid "The shortcode will be inserted"
290
  msgstr "Будет вставлен шорткод"
291
 
292
+ #: bws_functions.php:954
293
  msgid "FAQ"
294
  msgstr "FAQ"
295
 
296
+ #: bws_functions.php:960
297
  msgid "For more information:"
298
  msgstr "Для дополнительной информации:"
299
 
300
+ #: bws_functions.php:961 bws_menu.php:401 class-bws-settings.php:776
301
  msgid "Documentation"
302
  msgstr "Документация"
303
 
304
+ #: bws_functions.php:962 bws_menu.php:403 class-bws-settings.php:778
305
  msgid "Video Instructions"
306
  msgstr "Видео инструкции"
307
 
308
+ #: bws_functions.php:963
309
  msgid "Submit a Request"
310
  msgstr "Отправить запрос"
311
 
312
+ #: bws_menu.php:101 class-bws-settings.php:860
313
  msgid "Wrong license key"
314
  msgstr "Неправильный лицензионный ключ"
315
 
316
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
317
+ #: class-bws-settings.php:1004
318
  msgid ""
319
  "Something went wrong. Please try again later. If the error appears again, "
320
  "please contact us"
322
  "Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, "
323
  "пожалуйста, свяжитесь с нами"
324
 
325
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
326
+ #: class-bws-settings.php:1004
327
  msgid "We are sorry for inconvenience."
328
  msgstr "Приносим извинения за неудобства."
329
 
330
+ #: bws_menu.php:129 class-bws-settings.php:893 class-bws-settings.php:1010
331
  msgid "Wrong license key."
332
  msgstr "Неправильный лицензионный ключ."
333
 
342
  msgid "Log in"
343
  msgstr "Авторизоваться"
344
 
345
+ #: bws_menu.php:133 bws_menu.php:333 deprecated.php:157
346
  msgid "Unfortunately, you have exceeded the number of available tries per day."
347
  msgstr "К сожалению, вы превысили количество доступных попыток."
348
 
356
  "обновлений и приоритетной тех.поддержки, вам необходимо продлить лицензию в "
357
  "вашей %s"
358
 
359
+ #: bws_menu.php:137 class-bws-settings.php:1018
360
  msgid ""
361
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
362
  "Trial license can be installed only once."
364
  "К сожалению, Pro лицензия уже была установлена на этом доменен. Pro Trial "
365
  "лицензия может быть установлена только один раз."
366
 
367
+ #: bws_menu.php:143 class-bws-settings.php:908
368
  msgid "The license key is valid."
369
  msgstr "Лицензионный ключ действителен."
370
 
371
+ #: bws_menu.php:145 class-bws-settings.php:912
372
  msgid "Your license will expire on"
373
  msgstr "Ваша лицензия истечет"
374
 
375
+ #: bws_menu.php:147
376
  msgid "Congratulations! Pro Membership license is activated successfully."
377
  msgstr "Поздравляем! Pro Membership лицензия успешно активирована."
378
 
379
+ #: bws_menu.php:154 class-bws-settings.php:1028
380
  msgid ""
381
  "Something went wrong. Try again later or upload the plugin manually. We are "
382
  "sorry for inconvenience."
384
  "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. "
385
  "Приносим извинения за неудобства."
386
 
387
+ #: bws_menu.php:164
388
  msgid "Please enter your license key."
389
  msgstr "Пожалуйста, введите Ваш лицензионный ключ."
390
 
391
+ #: bws_menu.php:175
392
  msgid "Not set"
393
  msgstr "Не задан"
394
 
395
+ #: bws_menu.php:177
396
  msgid "On"
397
  msgstr "Вкл"
398
 
399
+ #: bws_menu.php:177
400
  msgid "Off"
401
  msgstr "Выкл"
402
 
403
+ #: bws_menu.php:178 bws_menu.php:179 bws_menu.php:180 bws_menu.php:181
404
+ #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:192
405
  msgid "N/A"
406
  msgstr "Неизвестно"
407
 
408
+ #: bws_menu.php:183
409
  msgid "Mb"
410
  msgstr "Мб"
411
 
412
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
413
  msgid "Yes"
414
  msgstr "Да"
415
 
416
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
417
  msgid "No"
418
  msgstr "Нет"
419
 
420
+ #: bws_menu.php:197
421
  msgid "WordPress Environment"
422
  msgstr "WordPress Системная среда"
423
 
424
+ #: bws_menu.php:199
425
  msgid "Home URL"
426
  msgstr "Основной адрес сайта"
427
 
428
+ #: bws_menu.php:200
429
  msgid "Website URL"
430
  msgstr "Адрес сайта"
431
 
432
+ #: bws_menu.php:201
433
  msgid "WP Version"
434
  msgstr "Версия WordPress"
435
 
436
+ #: bws_menu.php:202
437
  msgid "WP Multisite"
438
  msgstr "Мультисайт"
439
 
440
+ #: bws_menu.php:203
441
  msgid "WP Memory Limit"
442
  msgstr "Лимит памяти WordPress"
443
 
444
+ #: bws_menu.php:204
445
  msgid "Active Theme"
446
  msgstr "Текущая тема"
447
 
448
+ #: bws_menu.php:204 bws_menu.php:249 bws_menu.php:252
449
  #, php-format
450
  msgid "by %s"
451
  msgstr "%s"
452
 
453
+ #: bws_menu.php:208
454
  msgid "Server Environment"
455
  msgstr "Системная среда сервера"
456
 
457
+ #: bws_menu.php:210
458
  msgid "Operating System"
459
  msgstr "Операционная система"
460
 
461
+ #: bws_menu.php:211
462
  msgid "Server"
463
  msgstr "Тип сервера"
464
 
465
+ #: bws_menu.php:212
466
  msgid "PHP Version"
467
  msgstr "Версия PHP"
468
 
469
+ #: bws_menu.php:213
470
  msgid "PHP Allow URL fopen"
471
  msgstr "PHP Allow URL fopen"
472
 
473
+ #: bws_menu.php:214
474
  msgid "PHP Memory Limit"
475
  msgstr "Лимит памяти"
476
 
477
+ #: bws_menu.php:215
478
  msgid "Memory Usage"
479
  msgstr "Использование памяти"
480
 
481
+ #: bws_menu.php:216
482
  msgid "PHP Max Upload Size"
483
  msgstr "Макс. размер загружаемого файла"
484
 
485
+ #: bws_menu.php:217
486
  msgid "PHP Max Post Size"
487
  msgstr "Макс. размер записи"
488
 
489
+ #: bws_menu.php:218
490
  msgid "PHP Max Script Execute Time"
491
  msgstr "Макс. время выполнения сценария"
492
 
493
+ #: bws_menu.php:219
494
  msgid "PHP Exif support"
495
  msgstr "Поддержка PHP Exif"
496
 
497
+ #: bws_menu.php:220
498
  msgid "PHP IPTC support"
499
  msgstr "Поддержка PHP IPTC"
500
 
501
+ #: bws_menu.php:221
502
  msgid "PHP XML support"
503
  msgstr "Поддержка PHP XML"
504
 
505
+ #: bws_menu.php:227
506
  msgid "Database"
507
  msgstr "База данных"
508
 
509
+ #: bws_menu.php:229
510
  msgid "WP DB version"
511
  msgstr "Версия базы данных WordPress"
512
 
513
+ #: bws_menu.php:230
514
  msgid "MySQL version"
515
  msgstr "Версия MYSQL"
516
 
517
+ #: bws_menu.php:231
518
  msgid "SQL Mode"
519
  msgstr "Режим SQL"
520
 
521
+ #: bws_menu.php:235
522
  msgid "Active Plugins"
523
  msgstr "Активированные плагины"
524
 
525
+ #: bws_menu.php:240
526
  msgid "Inactive Plugins"
527
  msgstr "Неактивированные плагины"
528
 
529
+ #: bws_menu.php:261
530
  msgid "Please enter a valid email address."
531
  msgstr "Пожалуйста, введите валидный емайл."
532
 
533
+ #: bws_menu.php:263
534
  #, php-format
535
  msgid "Email with system info is sent to %s."
536
  msgstr "Емейл с системной информацией отправлен на %s."
537
 
538
+ #: bws_menu.php:267
539
  msgid "Thank you for contacting us."
540
  msgstr "Спасибо что связались с нами."
541
 
542
+ #: bws_menu.php:290
543
  msgid "Sorry, email message could not be delivered."
544
  msgstr "Извините, ваш емейл не может быть отправлен."
545
 
546
+ #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:359 deprecated.php:26
547
  msgid "Plugins"
548
  msgstr "Плагины"
549
 
550
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:587 deprecated.php:27
551
  msgid "Themes"
552
  msgstr "Темы"
553
 
554
+ #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:617
555
  msgid "System status"
556
  msgstr "Системная информация"
557
 
558
+ #: bws_menu.php:316
559
  msgid "Support"
560
  msgstr "Тех. поддержка"
561
 
562
+ #: bws_menu.php:317
563
  msgid "Manage purchased licenses & subscriptions"
564
  msgstr "Управление купленными лицензиями и подписками"
565
 
566
+ #: bws_menu.php:325
567
  #, php-format
568
  msgid "Get Access to %s+ Premium Plugins"
569
  msgstr "Получить доступ к %s+ премиум плагинам"
570
 
571
+ #: bws_menu.php:327
572
  msgid "Subscribe to Pro Membership"
573
  msgstr "Подписаться на Pro Membership"
574
 
575
+ #: bws_menu.php:335 bws_menu.php:346 class-bws-settings.php:822
576
  #: deprecated.php:123
577
  msgid "Check license key"
578
  msgstr "Проверка лицензионного ключа"
579
 
580
+ #: bws_menu.php:338
581
  msgid "Enter your license key"
582
  msgstr "Ваш лицензионный ключ"
583
 
584
+ #: bws_menu.php:344 bws_menu.php:539 bws_menu.php:548
585
+ #: class-bws-settings.php:801 deprecated.php:155 deprecated.php:163
586
  #: deprecated.php:240 deprecated.php:249
587
  msgid "Activate"
588
  msgstr "Активировать"
589
 
590
+ #: bws_menu.php:360
591
  msgid "Upload Plugin"
592
  msgstr "Добавить новый"
593
 
594
+ #: bws_menu.php:364
595
  #, php-format
596
  msgid ""
597
  "The plugin generated %d characters of <strong>unexpected output</strong> "
604
  "проблемы с RSS-лентами или другие неполадки, попробуйте деактивировать или "
605
  "удалить этот плагин."
606
 
607
+ #: bws_menu.php:366
608
  msgid ""
609
  "Plugin could not be activated because it triggered a <strong>fatal error</"
610
  "strong>."
612
  "Плагин не может быть активирован, поскольку он вызвал <strong>фатальную "
613
  "ошибку</strong>."
614
 
615
+ #: bws_menu.php:369
616
  msgid "Plugin <strong>activated</strong>."
617
  msgstr "Плагин <strong>активировано</strong>."
618
 
619
+ #: bws_menu.php:383
620
  msgid "Download Pro Plugin"
621
  msgstr "Загрузить Pro плагина"
622
 
623
+ #: bws_menu.php:385 class-bws-settings.php:759
624
  msgid "Your Pro plugin is ready"
625
  msgstr "Ваш Pro плагин готов"
626
 
627
+ #: bws_menu.php:387 class-bws-settings.php:761
628
  msgid "Your plugin has been zipped, and now is ready to download."
629
  msgstr "Ваш плагин заархивирован, и готов к загрузке."
630
 
631
+ #: bws_menu.php:390 class-bws-settings.php:764
632
  msgid "Download Now"
633
  msgstr "Загрузить сейчас"
634
 
635
+ #: bws_menu.php:394 class-bws-settings.php:768
636
  msgid "Need help installing the plugin?"
637
  msgstr "Нужна помощь в установке плагина?"
638
 
639
+ #: bws_menu.php:396 class-bws-settings.php:770
640
  msgid "How to install WordPress plugin from your admin Dashboard (ZIP archive)"
641
  msgstr "Как установить WordPress плагин с админ панели (ZIP архив)"
642
 
643
+ #: bws_menu.php:399 class-bws-settings.php:774
644
  msgid "Get Started"
645
  msgstr "Начать "
646
 
647
+ #: bws_menu.php:405 class-bws-settings.php:780
648
  msgid "Knowledge Base"
649
  msgstr "База Знаний"
650
 
651
+ #: bws_menu.php:408
652
  msgid "Licenses & Domains"
653
  msgstr "Лицензии & Домены"
654
 
655
+ #: bws_menu.php:411
656
  msgid "Client Area"
657
  msgstr "Client Area"
658
 
659
+ #: bws_menu.php:410
660
  #, php-format
661
  msgid ""
662
  "Manage your license(-s) and change domain names using the %s at BestWebSoft."
664
  "Управляйте своей лицензией(-ами) и меняйте доменные имена, используя %s на "
665
  "BestWebSoft."
666
 
667
+ #: bws_menu.php:413
668
  msgid "Return to BestWebSoft Panel"
669
  msgstr "Возврат к BestWebSoft Panel"
670
 
671
+ #: bws_menu.php:420 bws_menu.php:440 bws_menu.php:569
672
  msgid "All"
673
  msgstr "Все"
674
 
675
+ #: bws_menu.php:423 bws_menu.php:606
676
  msgid "Installed"
677
  msgstr "Установленные"
678
 
679
+ #: bws_menu.php:426
680
  msgid "Not Installed"
681
  msgstr "Не установленные"
682
 
683
+ #: bws_menu.php:433
684
  msgid "Filter results"
685
  msgstr "Фильтр результатов"
686
 
687
+ #: bws_menu.php:436 bws_menu.php:565
688
  msgid "Category"
689
  msgstr "Категория"
690
 
691
+ #: bws_menu.php:500
692
  msgid "Not installed"
693
  msgstr "Не установлен"
694
 
695
+ #: bws_menu.php:504
696
  msgid "Renew to get updates"
697
  msgstr "Продлить для обновления"
698
 
699
+ #: bws_menu.php:507
700
  #, php-format
701
  msgid "Update to v %s"
702
  msgstr "Обновить до версии %s"
703
 
704
+ #: bws_menu.php:519 bws_menu.php:542
705
  msgid "Get Pro"
706
  msgstr "Получить Pro"
707
 
708
+ #: bws_menu.php:525 class-bws-settings.php:192 class-bws-settings.php:1091
709
  msgid "Upgrade to Pro"
710
  msgstr "Обновить до Pro"
711
 
712
+ #: bws_menu.php:539 bws_menu.php:548
713
  msgid "Activate this plugin"
714
  msgstr "Активировать плагин"
715
 
716
+ #: bws_menu.php:551
717
  msgid "Install this plugin"
718
  msgstr "Установить этот плагин"
719
 
720
+ #: bws_menu.php:551
721
  msgid "Install Now"
722
  msgstr "Установить"
723
 
724
+ #: bws_menu.php:560
725
  msgid "Nothing found. Try another criteria."
726
  msgstr "Ничего не найдено. Попробуйте другие критерии."
727
 
728
+ #: bws_menu.php:597
729
  #, php-format
730
  msgid "By %s"
731
  msgstr "%s"
732
 
733
+ #: bws_menu.php:604
734
  msgid "Already Installed"
735
  msgstr "Уже установлена"
736
 
737
+ #: bws_menu.php:614
738
  msgid "Browse More WordPress Themes"
739
  msgstr "Обзор WordPress тем"
740
 
741
+ #: bws_menu.php:623
742
  msgid "Send to support"
743
  msgstr "Отправить в тех. поддержку"
744
 
745
+ #: bws_menu.php:630
746
  msgid "Send to custom email &#187;"
747
  msgstr "Отправить на емейл &#187;"
748
 
749
+ #: class-bws-settings.php:167
750
  msgid "Information"
751
  msgstr "Информация"
752
 
753
+ #: class-bws-settings.php:179
754
  msgid "Inactive"
755
  msgstr "Неактивна"
756
 
757
+ #: class-bws-settings.php:187
758
  msgid "Expired"
759
  msgstr "Истекла"
760
 
761
+ #: class-bws-settings.php:190
762
  #, php-format
763
  msgid "%s day(-s) left"
764
  msgstr "%s дней осталось"
765
 
766
+ #: class-bws-settings.php:196
767
  #, php-format
768
  msgid "Expired on %s"
769
  msgstr "Истекает %s"
770
 
771
+ #: class-bws-settings.php:196
772
  msgid "Renew Now"
773
  msgstr "Возобновить сейчас"
774
 
775
+ #: class-bws-settings.php:198
776
  msgid "Active"
777
  msgstr "Активна"
778
 
779
+ #: class-bws-settings.php:203
780
  msgid "License"
781
  msgstr "Лицензия"
782
 
783
+ #: class-bws-settings.php:206
784
  msgid "Status"
785
  msgstr "Статус"
786
 
787
+ #: class-bws-settings.php:210
788
  msgid "Version"
789
  msgstr "Версия"
790
 
791
+ #: class-bws-settings.php:323
792
  msgid "All plugin settings were restored."
793
  msgstr "Все настройки плагина были восстановлены."
794
 
795
+ #: class-bws-settings.php:463
796
  msgid "Custom Code"
797
  msgstr "Пользовательский код"
798
 
799
+ #: class-bws-settings.php:467
800
  msgid "You do not have sufficient permissions to edit plugins for this site."
801
  msgstr ""
802
  "У вас недостаточно полномочий, чтобы редактировать плагины на этом сайте."
803
 
804
+ #: class-bws-settings.php:472
805
  msgid "These styles will be added to the header on all pages of your site."
806
  msgstr "Эти стили будут добавлены в хедер на всех страницах вашего сайта."
807
 
808
+ #: class-bws-settings.php:475
809
  #, php-format
810
  msgid ""
811
  "This PHP code will be hooked to the %s action and will be printed on front "
814
  "Этот PHP код будет прикреплен к %s аction и будет добавлен только во "
815
  "фронтенде."
816
 
817
+ #: class-bws-settings.php:478
818
  msgid "These code will be added to the header on all pages of your site."
819
  msgstr "Этот код будет добавлен в хедер на всех страницах вашего сайта."
820
 
821
+ #: class-bws-settings.php:486
822
  #, php-format
823
  msgid ""
824
  "You need to make this files writable before you can save your changes. See "
827
  "Чтобы сохранить изменения, нужно сделать этот файл доступным для записи. "
828
  "Дополнительную информацию можно получить в %s Кодексе %s."
829
 
830
+ #: class-bws-settings.php:496
831
  msgid "Browsing"
832
  msgstr "Просмотр"
833
 
834
+ #: class-bws-settings.php:501
835
  #, php-format
836
  msgid "Activate custom %s code."
837
  msgstr "Активировать пользовательский %s код."
838
 
839
+ #: class-bws-settings.php:509
840
  #, php-format
841
  msgid "Learn more about %s"
842
  msgstr "Подробнее о %s"
843
 
844
+ #: class-bws-settings.php:571
845
  msgid "Miscellaneous Settings"
846
  msgstr "Прочие настройки"
847
 
848
+ #: class-bws-settings.php:580 class-bws-settings.php:635
849
  #, php-format
850
  msgid ""
851
  "It is prohibited to change %s settings on this site in the %s network "
853
  msgstr ""
854
  "Cетевыми настройками %s запрещается изменять настройки %s на этом сайте."
855
 
856
+ #: class-bws-settings.php:583 class-bws-settings.php:638
857
  #, php-format
858
  msgid ""
859
  "It is prohibited to view %s settings on this site in the %s network settings."
860
  msgstr ""
861
  "Cетевыми настройками %s запрещается просматривать настройки %s на этом сайте."
862
 
863
+ #: class-bws-settings.php:592
864
  msgid "Pro Options"
865
  msgstr "Pro опции"
866
 
867
+ #: class-bws-settings.php:596
868
  msgid "Enable to display plugin Pro options."
869
  msgstr "Включите для отображения Pro опций плагина."
870
 
871
+ #: class-bws-settings.php:602
872
  msgid "Track Usage"
873
  msgstr "Собирать статистику"
874
 
875
+ #: class-bws-settings.php:606
876
  msgid ""
877
  "Enable to allow tracking plugin usage anonymously in order to make it better."
878
  msgstr ""
879
  "Включить, чтобы разрешить анонимно отслеживать использование и сделать "
880
  "плагин лучше."
881
 
882
+ #: class-bws-settings.php:611
883
  msgid "Default Settings"
884
  msgstr "Настройки по умолчанию"
885
 
886
+ #: class-bws-settings.php:613
887
  msgid "Restore Settings"
888
  msgstr "Восстановить настройки"
889
 
890
+ #: class-bws-settings.php:614
891
  msgid "This will restore plugin settings to defaults."
892
  msgstr "Восстановить все настройки плагина к настройкам по умолчанию."
893
 
894
+ #: class-bws-settings.php:626
895
  msgid "Import / Export"
896
  msgstr "Импорт / Экспорт"
897
 
898
+ #: class-bws-settings.php:744
899
  msgid "License Key"
900
  msgstr "Лицензионный ключ"
901
 
902
+ #: class-bws-settings.php:803
903
  #, php-format
904
  msgid "Enter your license key to activate %s and get premium plugin features."
905
  msgstr ""
906
  "Введите лицензионный ключ для активации %s и получения дополнительных "
907
  "возможностей плагина."
908
 
909
+ #: class-bws-settings.php:806 class-bws-settings.php:1014 deprecated.php:243
910
  msgid ""
911
  "Unfortunately, you have exceeded the number of available tries per day. "
912
  "Please, upload the plugin manually."
914
  "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, "
915
  "загрузите плагин вручную."
916
 
917
+ #: class-bws-settings.php:809 deprecated.php:234
918
  #, php-format
919
  msgid "Start Your Free %s-Day Trial Now"
920
  msgstr "Попробуйте %s-дневную Trial версию бесплатно"
921
 
922
+ #: class-bws-settings.php:824
923
  msgid ""
924
  "If necessary, you can check if the license key is correct or reenter it in "
925
  "the field below."
927
  "При необходимости вы можете проверить валидность лицензионного ключа или "
928
  "повторно ввести его в поле выше."
929
 
930
+ #: class-bws-settings.php:833
931
  msgid "Manage License Settings"
932
  msgstr "Управление настройками лицензий"
933
 
934
+ #: class-bws-settings.php:835
935
  msgid "Login to Client Area"
936
  msgstr "Зайти в Client Area"
937
 
938
+ #: class-bws-settings.php:837
939
  msgid ""
940
  "Manage active licenses, download BWS products, and view your payment history "
941
  "using BestWebSoft Client Area."
943
  "Управляй активными лицензиями, загружай BWS продукты, а также просматривай "
944
  "историю платежей с помощью BestWebSoft Client Area."
945
 
946
+ #: class-bws-settings.php:895 class-bws-settings.php:1012
947
  msgid "This license key is bound to another site."
948
  msgstr "Этот лицензионный ключ привязан к другому сайту."
949
 
950
+ #: class-bws-settings.php:897
951
  msgid ""
952
  "This license key is valid, but Your license has expired. If you want to "
953
  "update our plugin in future, you should extend the license."
955
  "Лицензионный ключ принят, но срок действия лицензии истек. Если вы хотите "
956
  "обновлять плагин в будущем, вы должны продлить лицензию."
957
 
958
+ #: class-bws-settings.php:899
959
  msgid "Unfortunately, you have exceeded the number of available tries."
960
  msgstr "К сожалению, вы превысили количество доступных попыток."
961
 
962
+ #: class-bws-settings.php:901
963
  msgid ""
964
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
965
  "The Pro Trial license can be installed only once."
967
  "К сожалению, Pro Trial версия плагина уже устанавливалась на этот домен. Pro "
968
  "Trial версию можно устанавливать лишь один раз."
969
 
970
+ #: class-bws-settings.php:906
971
  msgid "The Pro Trial license key is valid."
972
  msgstr "Ключ Pro Trial версии действителен."
973
 
974
+ #: class-bws-settings.php:919 deprecated.php:142
975
  #, php-format
976
  msgid ""
977
  "In order to continue using the plugin it is necessary to buy a %s license."
978
  msgstr ""
979
  "Чтобы продолжить пользоваться плагином, необходимо приобрести %s лицензию."
980
 
981
+ #: class-bws-settings.php:1016
982
  #, php-format
983
  msgid ""
984
  "Unfortunately, Your license has expired. To continue getting top-priority "
988
  "обновлений и приоритетной тех.поддержки, вам необходимо продлить лицензию в "
989
  "вашей %s."
990
 
991
+ #: class-bws-settings.php:1065
992
  msgid "Please, enter Your license key"
993
  msgstr "Пожалуйста, введите ваш лицензионный ключ"
994
 
995
+ #: class-bws-settings.php:1078
996
  msgid "Need Help?"
997
  msgstr "Нужна помощь?"
998
 
999
+ #: class-bws-settings.php:1080
1000
  msgid "Read the Instruction"
1001
  msgstr "Читать инструкцию"
1002
 
1003
+ #: class-bws-settings.php:1084
1004
  msgid "Watch the Video"
1005
  msgstr "Смотреть видео"
1006
 
1007
+ #: class-bws-settings.php:1095
1008
  msgid "Start Your Free Trial"
1009
  msgstr "Использовать бесплатную Trial версию"
1010
 
1011
+ #: class-bws-settings.php:1130
1012
+ msgid "Request a Feature"
1013
+ msgstr "Предложить функционал"
1014
+
1015
+ #: class-bws-settings.php:1135
1016
+ #, php-format
1017
+ msgid "How can we improve %s?"
1018
+ msgstr "Как нам улучшить %s?"
1019
+
1020
+ #: class-bws-settings.php:1137
1021
+ msgid "We look forward to hear your ideas."
1022
+ msgstr "Мы с нетерпением ждем ваших идей."
1023
+
1024
+ #: class-bws-settings.php:1139
1025
+ msgid "Describe your idea"
1026
+ msgstr "Опишите свою идею"
1027
+
1028
+ #: class-bws-settings.php:1142 deactivation-form.php:120
1029
+ msgid "Send website data and allow to contact me back"
1030
+ msgstr "Отправить данные сайта и позволить связаться со мной"
1031
+
1032
+ #: class-bws-settings.php:1147
1033
+ msgid "Submit"
1034
+ msgstr "Отправить"
1035
+
1036
+ #: class-bws-settings.php:1148 deactivation-form.php:127
1037
+ msgid "Processing"
1038
+ msgstr "Обработка"
1039
+
1040
+ #: class-bws-settings.php:1149
1041
+ msgid "Thank you!"
1042
+ msgstr "Спасибо!"
1043
+
1044
  #: deactivation-form.php:22
1045
  msgid "Need help? We are ready to answer your questions."
1046
  msgstr "Нужна помощь? Мы готовы ответить на ваши вопросы."
1101
  "Если у вас есть время, пожалуйста, сообщите нам, почему вы деактивируете "
1102
  "плагин"
1103
 
1104
+ #: deactivation-form.php:125
 
 
 
 
 
 
 
 
1105
  msgid "Submit and Deactivate"
1106
  msgstr "Отправить и Деактивировать"
1107
 
1108
+ #: deactivation-form.php:126
 
 
 
 
1109
  msgid "Skip and Deactivate"
1110
  msgstr "Пропустить и Деактивировать"
1111
 
1112
+ #: deactivation-form.php:272
1113
+ msgid "Please tell us the reason so we can improve it."
1114
+ msgstr "Пожалуйста, сообщите нам причину, чтобы мы могли улучшить плагин."
1115
+
1116
  #: deprecated.php:28
1117
  msgid "System Status"
1118
  msgstr "Системная информация"
1186
  msgid "version of the plugin."
1187
  msgstr "версия плагина."
1188
 
1189
+ #: product_list.php:8
1190
  msgid "Admin Tools"
1191
  msgstr "Инструменты"
1192
 
1193
+ #: product_list.php:9
1194
  msgid "Content"
1195
  msgstr "Контент"
1196
 
1197
+ #: product_list.php:10
1198
  msgid "eCommerce"
1199
  msgstr "Коммерция"
1200
 
1201
+ #: product_list.php:11
1202
  msgid "Marketing"
1203
  msgstr "Маркетинг"
1204
 
1205
+ #: product_list.php:12
1206
  msgid "Navigation"
1207
  msgstr "Навигация"
1208
 
1209
+ #: product_list.php:13
1210
  msgid "Recommended"
1211
  msgstr "Рекомендованные"
1212
 
1213
+ #: product_list.php:14
1214
  msgid "Security"
1215
  msgstr "Безопасность"
1216
 
1217
+ #: product_list.php:15
1218
  msgid "SEO"
1219
  msgstr "Поисковая оптимизация"
1220
 
1221
+ #: product_list.php:16
1222
  msgid "SMM"
1223
  msgstr "СММ"
1224
 
1225
+ #: product_list.php:23
1226
+ msgid "Give a birth for your bike rental and booking WordPress website."
1227
+ msgstr "Создайте прокат и бронирование велосипедов на сайте WordPress."
1228
+
1229
+ #: product_list.php:35
1230
  msgid "Best secure captcha plugin to protect your WordPress forms."
1231
  msgstr "Лучший плагин капчи, который защитит формы вашего сайта WordPress."
1232
 
1233
+ #: product_list.php:45
1234
  msgid "Create your own rental website for car renting and booking."
1235
  msgstr "Создайте свой собственный сайт проката и резервирования автомобилей."
1236
 
1237
+ #: product_list.php:57
1238
  msgid ""
1239
  "Add columns with custom content to WordPress website pages, posts, widgets, "
1240
  "etc."
1242
  "Добавляйте столбцы с пользовательским контентом в ваш WordPress сайт на "
1243
  "страницы, посты, виджеты, и т.д."
1244
 
1245
+ #: product_list.php:64
1246
  msgid ""
1247
  "Allow customers to reach you using secure contact form plugin any website "
1248
  "must have."
1250
  "Предоставьте возможность клиентам осуществлять связь с вами через безопасный "
1251
  "плагин контактной формы, который должен иметь любой сайт."
1252
 
1253
+ #: product_list.php:74
1254
  msgid "Add unlimited number of contact forms to WordPress website."
1255
  msgstr ""
1256
  "Добавляйте неограниченное количество контактных форм на ваш сайт WordPress."
1257
 
1258
+ #: product_list.php:84
1259
  msgid "Save and manage Contact Form messages. Never lose important data."
1260
  msgstr ""
1261
  "Сохраняйте и управляйте сообщениями плагина Contact Form. Никогда не теряйте "
1262
  "важные данные."
1263
 
1264
+ #: product_list.php:94
1265
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1266
  msgstr ""
1267
  "Добавляйте неограниченное количество пользовательских страниц в панели "
1268
  "администратора WordPress."
1269
 
1270
+ #: product_list.php:104
1271
  msgid ""
1272
  "Add custom post types and taxonomies to WordPress website search results."
1273
  msgstr ""
1274
  "Добавляйте пользовательские типы постов и таксономии в результаты поиска на "
1275
  "вашем сайте WordPress."
1276
 
1277
+ #: product_list.php:114
1278
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1279
  msgstr ""
1280
  "Добавляйте кнопки PayPal и 2CO, чтобы получать пожертвования и "
1281
  "благотворительные взносы."
1282
 
1283
+ #: product_list.php:121
1284
  msgid ""
1285
  "Get latest error log messages to diagnose website problems. Define and fix "
1286
  "issues faster."
1288
  "Получайте последние сообщения из журнала ошибок для диагностики проблем "
1289
  "сайта. Быстрее выявляйте и устраняйте проблемы."
1290
 
1291
+ #: product_list.php:128
1292
  msgid ""
1293
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1294
  "widgets."
1296
  "Добавляйте кнопки Facebook \"Подписаться\", \"Нравится\" и \"Поделиться\" в "
1297
  "посты, страницы и виджеты сайта WordPress."
1298
 
1299
+ #: product_list.php:138
1300
  msgid ""
1301
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1302
  "clicks."
1304
  "Добавляйте живописные галереи, альбомы, изображения и категории галереи на "
1305
  "ваш сайт WordPress всего в несколько кликов."
1306
 
1307
+ #: product_list.php:148
1308
  msgid ""
1309
  "Stronger security solution which protects your WordPress website from hacks "
1310
  "and unauthorized login attempts."
1312
  "Мощнейшее решение для безопасности, которое защищает ваш сайт WordPress от "
1313
  "взломов и неавторизованных попыток входа в систему."
1314
 
1315
+ #: product_list.php:158
1316
  msgid ""
1317
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1318
  "results, categories, tags, and widgets."
1320
  "Добавляйте рекламу сервиса Adsense на страницы, посты, пользовательские "
1321
  "посты, результаты поиска, категории, теги и виджеты сайта WordPress."
1322
 
1323
+ #: product_list.php:168
1324
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1325
  msgstr ""
1326
  "Добавляйте код Google Analytics на ваш сайт WordPress и отслеживайте базовую "
1327
  "статистику сайта."
1328
 
1329
+ #: product_list.php:178
1330
  msgid "Protect WordPress website forms from spam entries with reCaptcha."
1331
  msgstr "Защищайте формы вашего сайта WordPress от спама с помощью reCaptcha."
1332
 
1333
+ #: product_list.php:188
1334
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1335
  msgstr ""
1336
  "Добавляйте пользовательские карты Google в посты, страницы и виджеты "
1337
  "WordPress."
1338
 
1339
+ #: product_list.php:198
1340
  msgid ""
1341
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1342
  "your blog."
1344
  "Создавайте и добавляйте файлы XML sitemap на ваш сайт WordPress. Помогите "
1345
  "поисковым системам проиндексировать ваш блог."
1346
 
1347
+ #: product_list.php:208
1348
  msgid ""
1349
  "Replace external WordPress website links with Google shortlinks and track "
1350
  "click stats."
1352
  "Замените внешние ссылки сайта WordPress на короткие ссылки Google и "
1353
  "отслеживайте статистику кликов."
1354
 
1355
+ #: product_list.php:215
1356
  msgid ""
1357
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1358
  "hostnames, etc."
1360
  "Защитите свой сайт WordPress - предоставляйте и запрещайте доступ с "
1361
  "определенных IP-адресов, имен хостов и т.д."
1362
 
1363
+ #: product_list.php:225
1364
  msgid ""
1365
  "Create your personal job board and listing WordPress website. Search jobs, "
1366
  "submit CV/resumes, choose candidates."
1369
  "WordPress. Осуществляйте поиск вакансий, подачу резюме/CV кандидата, выбор "
1370
  "кандидатов."
1371
 
1372
+ #: product_list.php:232
1373
  msgid ""
1374
  "Protect WordPress website against brute force attacks. Limit rate of login "
1375
  "attempts."
1377
  "Защищайте свой сайт WordPress от брутфорс-атак. Ограничивайте количество "
1378
  "попыток ввода логина."
1379
 
1380
+ #: product_list.php:242
1381
  msgid ""
1382
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1383
  "5 plugins included – profile, insider, etc."
1386
  "страницам и виджетам WordPress. 5 плагинов включено - Профиль, Инсайдер и т."
1387
  "д."
1388
 
1389
+ #: product_list.php:252
1390
  msgid ""
1391
  "Translate WordPress website content to other languages manually. Create "
1392
  "multilingual pages, posts, widgets, menus, etc."
1394
  "Переводите содержимое сайта WordPress на другие языки вручную. Создавайте "
1395
  "многоязычные страницы, посты, виджеты, меню и т.д."
1396
 
1397
+ #: product_list.php:262
1398
  msgid ""
1399
  "Add customizable pagination to WordPress website. Split long content to "
1400
  "multiple pages for better navigation."
1402
  "Добавляйте настраиваемую пагинацию на ваш сайт WordPress. Разбивайте "
1403
  "объемный контент на несколько страниц для лучшей навигации."
1404
 
1405
+ #: product_list.php:272
1406
  msgid ""
1407
  "Generate PDF files and print WordPress posts/pages. Customize document "
1408
  "header/footer styles and appearance."
1410
  "Создавайте PDF-файлы и печатайте посты/страницы сайта WordPress. "
1411
  "Настраивайте стили хедера/футера документа и его внешний вид."
1412
 
1413
+ #: product_list.php:282
1414
  msgid ""
1415
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1416
  "Profile) to WordPress posts, pages and widgets."
1418
  "Добавляйте кнопки Pinterest \"Подписаться\", \"Сохранить\" и виджеты профиля "
1419
  "(Пин, Доска, Профиль) к постам, страницам и виджетам WordPress."
1420
 
1421
+ #: product_list.php:292
1422
  msgid ""
1423
  "Create your personal portfolio WordPress website. Manage and showcase past "
1424
  "projects to get more clients."
1426
  "Создавайте и добавляйте портфолио на свой сайт WordPress. Управляйте и "
1427
  "демонстрируйте прошлые проекты, чтобы привлечь больше клиентов."
1428
 
1429
+ #: product_list.php:302
1430
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1431
  msgstr ""
1432
  "С легкостью экспортируйте посты WordPress в файлы формата CSV. Настраивайте "
1433
  "порядок отображения данных."
1434
 
1435
+ #: product_list.php:312
1436
  msgid ""
1437
  "Add extra fields to default WordPress user profile. The easiest way to "
1438
  "create and manage additional custom values."
1440
  "Добавляйте пользовательские поля в стандартный профиль WordPress. Самый "
1441
  "простой способ создания и управления дополнительными полями."
1442
 
1443
+ #: product_list.php:322
1444
  msgid ""
1445
  "Add and display HTML advertisement banner on WordPress website. Customize "
1446
  "bar styles and appearance."
1448
  "Добавляйте и отображайте баннерную HTML рекламу на сайте WordPress. "
1449
  "Настраивайте стили и внешний вид баннера."
1450
 
1451
+ #: product_list.php:332
1452
  msgid ""
1453
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1454
  "widgets."
1456
  "Добавляйте настраиваемые цитаты и подсказки к постам, страницам и виджетам "
1457
  "WordPress."
1458
 
1459
+ #: product_list.php:339
1460
  msgid ""
1461
  "Add rating plugin to your WordPress website to receive feedback from your "
1462
  "customers."
1464
  "Добавляйте систему оценивания и рейтинга на ваш сайт WordPress и получайте "
1465
  "отзывы от ваших клиентов."
1466
 
1467
+ #: product_list.php:349
1468
  msgid ""
1469
  "Create your personal real estate WordPress website. Sell, rent and buy "
1470
  "properties. Add, search and browse listings easily."
1473
  "Продавайте, арендуйте и покупайте недвижимость. Легко добавляйте, находите и "
1474
  "просматривайте листинги."
1475
 
1476
+ #: product_list.php:359
1477
  msgid ""
1478
  "Add related, featured, latest, and popular posts to your WordPress website. "
1479
  "Connect your blog readers with a relevant content."
1481
  "Добавляйте похожие, избранные, последние и популярные посты на ваш сайт "
1482
  "WordPress. Предоставляйте своим читателям контент схожей тематики."
1483
 
1484
+ #: product_list.php:366
1485
  msgid ""
1486
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1487
  "settings and detailed reports."
1489
  "Осуществляйте массовую рассылку писем пользователям WordPress. "
1490
  "Пользовательские шаблоны, дополнительные настройки и подробные отчеты."
1491
 
1492
+ #: product_list.php:376
1493
  msgid ""
1494
  "The best responsive slider plugin for your WordPress website. Create "
1495
  "beautifully animated slides just in a few clicks."
1497
  "Самый лучший адаптивный слайдер для вашего сайта WordPress. Создавайте "
1498
  "красиво анимированные слайды всего в несколько кликов."
1499
 
1500
+ #: product_list.php:383
1501
  msgid ""
1502
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1503
  "Yahoo, Hotmail and other services."
1506
  "WordPress на такие почтовые службы, как Gmail, Yahoo, Hotmail и многие "
1507
  "другие."
1508
 
1509
+ #: product_list.php:390
1510
  msgid ""
1511
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1512
  "FB, Twitter, Pinterest, LinkedIn."
1514
  "Добавляйте кнопки и виджеты социальных сетей к постам, страницам и виджетам "
1515
  "WordPress. FB, Twitter, Pinterest, LinkedIn."
1516
 
1517
+ #: product_list.php:400
1518
  msgid ""
1519
  "Add social media login, registration, and commenting to your WordPress "
1520
  "website."
1522
  "Добавляйте на свой сайт WordPress возможность входа, регистрации и "
1523
  "комментирования с использованием существующих аккаунтов социальных сетей."
1524
 
1525
+ #: product_list.php:407
1526
  msgid ""
1527
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1528
  "Collect data and subscribe your users."
1530
  "Добавляйте форму подписки на новостную рассылку в посты, страницы и виджеты "
1531
  "WordPress. Собирайте данные и осуществляйте подписку пользователей."
1532
 
1533
+ #: product_list.php:417
1534
  msgid ""
1535
  "Add testimonials and feedbacks from your customers to WordPress website "
1536
  "posts, pages, and widgets."
1538
  "Добавляйте рекомендации и отзывы ваших клиентов в посты, страницы и виджеты "
1539
  "сайта WordPress."
1540
 
1541
+ #: product_list.php:424
1542
  msgid ""
1543
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1544
  "attendance and generate reports."
1546
  "Лучший плагин учёта рабочего времени на сайте WordPress. Отслеживайте время "
1547
  "работы сотрудников, оптимизируйте график работы в офисе и создавайте отчеты."
1548
 
1549
+ #: product_list.php:434
1550
  msgid ""
1551
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1552
  "and pages."
1554
  "Добавляйте кнопки Твиттера \"Читать\", \"Твитнуть\", \"Метка\" и \"Упомянуть"
1555
  "\" к постам и страницам WordPress. "
1556
 
1557
+ #: product_list.php:444
1558
  msgid ""
1559
  "Automatically check and update WordPress website core with all installed "
1560
  "plugins and themes to the latest versions."
1562
  "Выполняйте автоматическую проверку и обновление ядра WordPress до последних "
1563
  "версий со всеми установленными плагинами и темами."
1564
 
1565
+ #: product_list.php:454
1566
  msgid ""
1567
  "Powerful user role management plugin for WordPress website. Create, edit, "
1568
  "copy, and delete user roles."
1570
  "Эффективный плагин управления ролями пользователей для сайта WordPress. "
1571
  "Создавайте, редактируйте, копируйте и удаляйте роли пользователей."
1572
 
1573
+ #: product_list.php:464
1574
  msgid ""
1575
  "Display live count of online visitors who are currently browsing your "
1576
  "WordPress website."
1578
  "Ведите подсчет количества посетителей, которые в настоящее время "
1579
  "просматривают ваш сайт WordPress."
1580
 
1581
+ #: product_list.php:474
1582
  msgid ""
1583
  "Backup and export Zendesk Help Center content automatically to your "
1584
  "WordPress website database."
bws_menu/languages/bestwebsoft-uk.mo CHANGED
Binary file
bws_menu/languages/bestwebsoft-uk.po CHANGED
@@ -2,18 +2,19 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-03-05 15:25+0200\n"
6
- "PO-Revision-Date: 2020-03-05 15:26+0200\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
9
  "Language: uk\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e;esc_attr_e;sprintf;printf\n"
 
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Generator: Poedit 2.3\n"
17
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
18
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
19
  "X-Poedit-SearchPath-0: .\n"
@@ -24,7 +25,7 @@ msgstr ""
24
  msgid "%s/%s"
25
  msgstr ""
26
 
27
- #: bws_functions.php:73 bws_functions.php:231
28
  msgid "requires"
29
  msgstr "потребує"
30
 
@@ -68,7 +69,7 @@ msgstr "Оцінити"
68
  msgid "Need help?"
69
  msgstr "Потрібна допомога?"
70
 
71
- #: bws_functions.php:104 bws_functions.php:940 class-bws-settings.php:1055
72
  msgid "Visit Help Center"
73
  msgstr "Перейти до Help Center"
74
 
@@ -76,7 +77,7 @@ msgstr "Перейти до Help Center"
76
  msgid "Want to support the plugin?"
77
  msgstr "Хочете підтримати плагін?"
78
 
79
- #: bws_functions.php:108 bws_menu.php:528
80
  msgid "Donate"
81
  msgstr "Пожертвувати"
82
 
@@ -96,8 +97,8 @@ msgstr ""
96
  "вкладці Client Area. Ми настійливо рекомендуємо Вам вирішити це питання "
97
  "протягом 24 годин, інакше плагін буде деактивовано."
98
 
99
- #: bws_functions.php:128 bws_functions.php:200 bws_menu.php:599
100
- #: class-bws-settings.php:161
101
  msgid "Learn More"
102
  msgstr "Дізнатись більше"
103
 
@@ -117,7 +118,7 @@ msgstr ""
117
  "Строк вашої ліцензії витік. Якщо ви хочете отримувати першочергову технічну "
118
  "підтримку та оновлювати плагін у майбутньому, вам слід подовжити ліцензію."
119
 
120
- #: bws_functions.php:147 bws_functions.php:218
121
  msgid "Learn more"
122
  msgstr "Дізнатись більше"
123
 
@@ -134,28 +135,28 @@ msgstr "Увага: Ви використовуєте тріал Pro версі
134
  msgid "The Pro Trial license will expire on"
135
  msgstr "Trial період Pro версії плагіну закінчується"
136
 
137
- #: bws_functions.php:191 bws_functions.php:214 bws_functions.php:258
138
- #: bws_functions.php:268 bws_functions.php:467
139
  msgid "Close notice"
140
  msgstr "Закрити"
141
 
142
- #: bws_functions.php:196
143
  msgid "It’s time to upgrade your"
144
  msgstr "Настав час модернізувати Ваш"
145
 
146
- #: bws_functions.php:196
147
  msgid "to"
148
  msgstr "до"
149
 
150
- #: bws_functions.php:196
151
  msgid "version!"
152
  msgstr "версії!"
153
 
154
- #: bws_functions.php:197
155
  msgid "Extend standard plugin functionality with new great options."
156
  msgstr "Розширює можливості стандартного функціоналу плагіна."
157
 
158
- #: bws_functions.php:218
159
  #, php-format
160
  msgid ""
161
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
@@ -164,7 +165,7 @@ msgstr ""
164
  "Ваш ліцензійний ключ для %s витікає %s та ви більше не будете отримувати "
165
  "першочергову технічну підтримку та оновлення."
166
 
167
- #: bws_functions.php:233
168
  msgid ""
169
  "or higher! We do not guarantee that our plugin will work correctly. Please "
170
  "upgrade to WordPress latest version."
@@ -172,62 +173,62 @@ msgstr ""
172
  "чи вище! Ми не гарантуємо, що наш плагін буде працювати правильно. Будь "
173
  "ласка, оновіть WordPress до останньої версії."
174
 
175
- #: bws_functions.php:229
176
  #, php-format
177
  msgid "<strong>%s</strong> %s <strong>WordPress %s</strong> %s"
178
  msgstr ""
179
 
180
- #: bws_functions.php:248
181
  #, php-format
182
  msgid "Thank you for installing %s plugin!"
183
  msgstr "Дякуємо, що встановили %s плагін!"
184
 
185
- #: bws_functions.php:250
186
  msgid "Let's get started"
187
  msgstr "Розпочнемо"
188
 
189
- #: bws_functions.php:251 bws_functions.php:284 bws_menu.php:532
190
- #: bws_menu.php:534
191
  msgid "Settings"
192
  msgstr "Налаштування"
193
 
194
- #: bws_functions.php:253 bws_menu.php:326 class-bws-settings.php:791
195
- #: class-bws-settings.php:1057 class-bws-settings.php:1067 deprecated.php:234
196
  msgid "or"
197
  msgstr "або"
198
 
199
- #: bws_functions.php:254 bws_functions.php:286
200
  msgid "Add New"
201
  msgstr "Додати"
202
 
203
- #: bws_functions.php:273
204
  msgid "Thank you for installing plugins by BestWebSoft!"
205
  msgstr "Дякуємо, що встановили плагіни від BestWebSoft!"
206
 
207
- #: bws_functions.php:275
208
  msgid "More Details"
209
  msgstr "Деталі"
210
 
211
- #: bws_functions.php:276
212
  msgid "Less Details"
213
  msgstr "Сховати Деталі"
214
 
215
- #: bws_functions.php:304
216
  msgid "Deprecated function(-s) is used on the site here:"
217
  msgstr "Застарілі функціі використовується на сайті тут:"
218
 
219
- #: bws_functions.php:318
220
  msgid ""
221
  "This function(-s) will be removed over time. Please update the product(-s)."
222
  msgstr ""
223
  "Ці функції буде видалено через деякий час. Будь ласка, поновіть продукт."
224
 
225
- #: bws_functions.php:462
226
  #, php-format
227
  msgid "Thank you for choosing %s plugin!"
228
  msgstr "Дякую за вибір плагіна %s!"
229
 
230
- #: bws_functions.php:463
231
  msgid ""
232
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
233
  "we'd love to hear about it!"
@@ -236,24 +237,24 @@ msgstr ""
236
  "функціоналу плагіна, будь ласка, надсилайте їх нам! Ми завжди відкриті для "
237
  "нових ідей!"
238
 
239
- #: bws_functions.php:464
240
  msgid "Suggest a Feature"
241
  msgstr "Запропонувати функціонал"
242
 
243
- #: bws_functions.php:480 class-bws-settings.php:559 class-bws-settings.php:562
244
- #: class-bws-settings.php:614 class-bws-settings.php:617
245
  msgid "Notice"
246
  msgstr "Зауважте"
247
 
248
- #: bws_functions.php:480
249
  msgid "The plugin's settings have been changed."
250
  msgstr "Налаштування плагіну змінено."
251
 
252
- #: bws_functions.php:481 class-bws-settings.php:200 class-bws-settings.php:220
253
  msgid "Save Changes"
254
  msgstr "Зберегти зміни"
255
 
256
- #: bws_functions.php:495
257
  msgid ""
258
  "You can always look at premium options by checking the \"Pro Options\" in "
259
  "the \"Misc\" tab."
@@ -261,68 +262,68 @@ msgstr ""
261
  "Ви завжди можете подивитися на преміум опції, натиснувши на кнопку \"Pro "
262
  "опції\" на вкладці \"Різне\"."
263
 
264
- #: bws_functions.php:671
265
  msgid "Add shortcode"
266
  msgstr "Додати шорткод"
267
 
268
- #: bws_functions.php:671
269
  msgid "Add BestWebSoft plugins' shortcodes using this button."
270
  msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
271
 
272
- #: bws_functions.php:756
273
  msgid "Close"
274
  msgstr "Закрити"
275
 
276
- #: bws_functions.php:842
277
  msgid "Are you sure you want to restore default settings?"
278
  msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
279
 
280
- #: bws_functions.php:845
281
  msgid "Yes, restore all settings"
282
  msgstr "Так, скинути налаштування"
283
 
284
- #: bws_functions.php:846
285
  msgid "No, go back to the settings page"
286
  msgstr "Ні, повернутись назад на сторінку налаштувань"
287
 
288
- #: bws_functions.php:888
289
  msgid "Plugin"
290
  msgstr "Плагін"
291
 
292
- #: bws_functions.php:897
293
  msgid "Shortcode settings"
294
  msgstr "Налаштування шорткоду"
295
 
296
- #: bws_functions.php:902
297
  msgid "The shortcode will be inserted"
298
  msgstr "Буде вставлено шорткод"
299
 
300
- #: bws_functions.php:945
301
  msgid "FAQ"
302
  msgstr "FAQ"
303
 
304
- #: bws_functions.php:951
305
  msgid "For more information:"
306
  msgstr "Для отримання додаткової інформації:"
307
 
308
- #: bws_functions.php:952 bws_menu.php:400 class-bws-settings.php:755
309
  msgid "Documentation"
310
  msgstr "Документація"
311
 
312
- #: bws_functions.php:953 bws_menu.php:402 class-bws-settings.php:757
313
  msgid "Video Instructions"
314
  msgstr "Відео інструкції"
315
 
316
- #: bws_functions.php:954
317
  msgid "Submit a Request"
318
  msgstr "Надіслати запит"
319
 
320
- #: bws_menu.php:101 class-bws-settings.php:841
321
  msgid "Wrong license key"
322
  msgstr "Невірний ключ ліцензії"
323
 
324
- #: bws_menu.php:122 class-bws-settings.php:868 class-bws-settings.php:939
325
- #: class-bws-settings.php:977
326
  msgid ""
327
  "Something went wrong. Please try again later. If the error appears again, "
328
  "please contact us"
@@ -330,12 +331,12 @@ msgstr ""
330
  "Щось не так, спробуйте пізніше. Якщо помилка повториться, будь ласка, "
331
  "повідомте нам"
332
 
333
- #: bws_menu.php:122 class-bws-settings.php:868 class-bws-settings.php:939
334
- #: class-bws-settings.php:977
335
  msgid "We are sorry for inconvenience."
336
  msgstr "Просимо вибачення за незручності."
337
 
338
- #: bws_menu.php:129 class-bws-settings.php:874 class-bws-settings.php:983
339
  msgid "Wrong license key."
340
  msgstr "Неправильний ліцензійний ключ."
341
 
@@ -350,7 +351,7 @@ msgstr ""
350
  msgid "Log in"
351
  msgstr "Увійти"
352
 
353
- #: bws_menu.php:133 bws_menu.php:332 deprecated.php:157
354
  msgid "Unfortunately, you have exceeded the number of available tries per day."
355
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
356
 
@@ -363,7 +364,7 @@ msgstr ""
363
  "На жаль, ваша ліцензія скінчилась. Для того, щоб і надалі отримувати "
364
  "першочергову техпідтримку і оновлення, будь ласка, продовжте ліцензію на %s"
365
 
366
- #: bws_menu.php:137 class-bws-settings.php:991
367
  msgid ""
368
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
369
  "Trial license can be installed only once."
@@ -371,19 +372,19 @@ msgstr ""
371
  "На жаль, Pro ліцензія уже використовувалась на цьому домені. Тріал Pro "
372
  "версії плагіну можна використати лише один раз."
373
 
374
- #: bws_menu.php:142 class-bws-settings.php:889
375
  msgid "The license key is valid."
376
  msgstr "Ліцензійний ключ дійсний."
377
 
378
- #: bws_menu.php:144 class-bws-settings.php:893
379
  msgid "Your license will expire on"
380
  msgstr "Ваша ліцензія закінчується"
381
 
382
- #: bws_menu.php:146
383
  msgid "Congratulations! Pro Membership license is activated successfully."
384
  msgstr "Вітаємо! Pro Membership ліцензія успішно активована."
385
 
386
- #: bws_menu.php:153 class-bws-settings.php:1001
387
  msgid ""
388
  "Something went wrong. Try again later or upload the plugin manually. We are "
389
  "sorry for inconvenience."
@@ -391,214 +392,214 @@ msgstr ""
391
  "Виникли певні проблеми. Спробуйте ще раз пізніше або завантажте плагін "
392
  "вручну. Просимо вибачення за незручності."
393
 
394
- #: bws_menu.php:163
395
  msgid "Please enter your license key."
396
  msgstr "Будь ласка, введіть ваш ліцензійний ключ."
397
 
398
- #: bws_menu.php:174
399
  msgid "Not set"
400
  msgstr "Не задано"
401
 
402
- #: bws_menu.php:176
403
  msgid "On"
404
  msgstr "Увімк."
405
 
406
- #: bws_menu.php:176
407
  msgid "Off"
408
  msgstr "Вимк."
409
 
410
- #: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
411
- #: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
412
  msgid "N/A"
413
  msgstr "Невідомо"
414
 
415
- #: bws_menu.php:182
416
  msgid "Mb"
417
  msgstr "Мб"
418
 
419
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
420
  msgid "Yes"
421
  msgstr "Так"
422
 
423
- #: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
424
  msgid "No"
425
  msgstr "Ні"
426
 
427
- #: bws_menu.php:196
428
  msgid "WordPress Environment"
429
  msgstr "Системне оточення WordPress"
430
 
431
- #: bws_menu.php:198
432
  msgid "Home URL"
433
  msgstr "Адреса домашньої сторінки"
434
 
435
- #: bws_menu.php:199
436
  msgid "Website URL"
437
  msgstr "Адреса сайту"
438
 
439
- #: bws_menu.php:200
440
  msgid "WP Version"
441
  msgstr "Версія WordPress"
442
 
443
- #: bws_menu.php:201
444
  msgid "WP Multisite"
445
  msgstr "Мультисайт"
446
 
447
- #: bws_menu.php:202
448
  msgid "WP Memory Limit"
449
  msgstr "Ліміт пам’яті WordPress"
450
 
451
- #: bws_menu.php:203
452
  msgid "Active Theme"
453
  msgstr "Активна тема"
454
 
455
- #: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
456
  #, php-format
457
  msgid "by %s"
458
  msgstr "%s"
459
 
460
- #: bws_menu.php:207
461
  msgid "Server Environment"
462
  msgstr "Системне оточення сервера"
463
 
464
- #: bws_menu.php:209
465
  msgid "Operating System"
466
  msgstr "Операційна система"
467
 
468
- #: bws_menu.php:210
469
  msgid "Server"
470
  msgstr "Тип серверу"
471
 
472
- #: bws_menu.php:211
473
  msgid "PHP Version"
474
  msgstr "Версія PHP"
475
 
476
- #: bws_menu.php:212
477
  msgid "PHP Allow URL fopen"
478
  msgstr "Дозволити PHP URL fopen"
479
 
480
- #: bws_menu.php:213
481
  msgid "PHP Memory Limit"
482
  msgstr "Ліміт пам’яті"
483
 
484
- #: bws_menu.php:214
485
  msgid "Memory Usage"
486
  msgstr "Використання пам'яті"
487
 
488
- #: bws_menu.php:215
489
  msgid "PHP Max Upload Size"
490
  msgstr "Макс. розмір файлу, що завантажується"
491
 
492
- #: bws_menu.php:216
493
  msgid "PHP Max Post Size"
494
  msgstr "Макс. розмір посту"
495
 
496
- #: bws_menu.php:217
497
  msgid "PHP Max Script Execute Time"
498
  msgstr "Макс. час виконання сценарію"
499
 
500
- #: bws_menu.php:218
501
  msgid "PHP Exif support"
502
  msgstr "Підтримка PHP Exif"
503
 
504
- #: bws_menu.php:219
505
  msgid "PHP IPTC support"
506
  msgstr "Підтримка PHP IPTC"
507
 
508
- #: bws_menu.php:220
509
  msgid "PHP XML support"
510
  msgstr "Підтримка PHP XML"
511
 
512
- #: bws_menu.php:226
513
  msgid "Database"
514
  msgstr "База даних"
515
 
516
- #: bws_menu.php:228
517
  msgid "WP DB version"
518
  msgstr "Версія бази даних WordPress"
519
 
520
- #: bws_menu.php:229
521
  msgid "MySQL version"
522
  msgstr "Версія MYSQL"
523
 
524
- #: bws_menu.php:230
525
  msgid "SQL Mode"
526
  msgstr "Режим SQL"
527
 
528
- #: bws_menu.php:234
529
  msgid "Active Plugins"
530
  msgstr "Активні плагіни"
531
 
532
- #: bws_menu.php:239
533
  msgid "Inactive Plugins"
534
  msgstr "Не активні плагіни"
535
 
536
- #: bws_menu.php:260
537
  msgid "Please enter a valid email address."
538
  msgstr "Будь ласка, введіть коректний емейл."
539
 
540
- #: bws_menu.php:262
541
  #, php-format
542
  msgid "Email with system info is sent to %s."
543
  msgstr "Емейл з системною інформацією надіслано на %s."
544
 
545
- #: bws_menu.php:266
546
  msgid "Thank you for contacting us."
547
  msgstr "Дякуємо, що звернулись до нас."
548
 
549
- #: bws_menu.php:289
550
  msgid "Sorry, email message could not be delivered."
551
  msgstr "Вибачте, ваше емейл не може бути доставлено"
552
 
553
- #: bws_menu.php:305 bws_menu.php:309 bws_menu.php:358 deprecated.php:26
554
  msgid "Plugins"
555
  msgstr "Плагіни"
556
 
557
- #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:586 deprecated.php:27
558
  msgid "Themes"
559
  msgstr "Теми"
560
 
561
- #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:616
562
  msgid "System status"
563
  msgstr "Системна інформація"
564
 
565
- #: bws_menu.php:315
566
  msgid "Support"
567
  msgstr "Підтримка"
568
 
569
- #: bws_menu.php:316
570
  msgid "Manage purchased licenses & subscriptions"
571
  msgstr "Управління придбаними ліцензіями і підписками"
572
 
573
- #: bws_menu.php:324
574
  #, php-format
575
  msgid "Get Access to %s+ Premium Plugins"
576
  msgstr "Отримати доступ до %s+ преміум плагинам"
577
 
578
- #: bws_menu.php:326
579
  msgid "Subscribe to Pro Membership"
580
  msgstr "Підписатися на Pro Membership"
581
 
582
- #: bws_menu.php:334 bws_menu.php:345 class-bws-settings.php:804
583
  #: deprecated.php:123
584
  msgid "Check license key"
585
  msgstr "Перевірте ліцензійний ключ"
586
 
587
- #: bws_menu.php:337
588
  msgid "Enter your license key"
589
  msgstr "Ваш ліцензійний ключ"
590
 
591
- #: bws_menu.php:343 bws_menu.php:538 bws_menu.php:547
592
- #: class-bws-settings.php:783 deprecated.php:155 deprecated.php:163
593
  #: deprecated.php:240 deprecated.php:249
594
  msgid "Activate"
595
  msgstr "Активувати"
596
 
597
- #: bws_menu.php:359
598
  msgid "Upload Plugin"
599
  msgstr "Завантажити плагін"
600
 
601
- #: bws_menu.php:363
602
  #, php-format
603
  msgid ""
604
  "The plugin generated %d characters of <strong>unexpected output</strong> "
@@ -611,7 +612,7 @@ msgstr ""
611
  "надіслані&#8221;, проблеми з каналами чи інші неполадки, спробуйте вимкнути "
612
  "чи видалити цей плагін."
613
 
614
- #: bws_menu.php:365
615
  msgid ""
616
  "Plugin could not be activated because it triggered a <strong>fatal error</"
617
  "strong>."
@@ -619,52 +620,52 @@ msgstr ""
619
  "Плагін не вдалося активувати, бо він спричинив <strong>критичну помилку</"
620
  "strong>."
621
 
622
- #: bws_menu.php:368
623
  msgid "Plugin <strong>activated</strong>."
624
  msgstr "Плагін <strong>активовано</strong>."
625
 
626
- #: bws_menu.php:382
627
  msgid "Download Pro Plugin"
628
  msgstr "Завантажити Pro плагін"
629
 
630
- #: bws_menu.php:384 class-bws-settings.php:738
631
  msgid "Your Pro plugin is ready"
632
  msgstr "Ваш Pro плагін готовий"
633
 
634
- #: bws_menu.php:386 class-bws-settings.php:740
635
  msgid "Your plugin has been zipped, and now is ready to download."
636
  msgstr "Ваш плагін був спакованний і тепер готовий до завантаження."
637
 
638
- #: bws_menu.php:389 class-bws-settings.php:743
639
  msgid "Download Now"
640
  msgstr "Завантажити Зараз"
641
 
642
- #: bws_menu.php:393 class-bws-settings.php:747
643
  msgid "Need help installing the plugin?"
644
  msgstr "Потрібна допомога в установці плагіна?"
645
 
646
- #: bws_menu.php:395 class-bws-settings.php:749
647
  msgid "How to install WordPress plugin from your admin Dashboard (ZIP archive)"
648
  msgstr ""
649
  "Як встановити WordPress плагін з вашої панелі адміністратора (ZIP архів)"
650
 
651
- #: bws_menu.php:398 class-bws-settings.php:753
652
  msgid "Get Started"
653
  msgstr "Розпочнемо"
654
 
655
- #: bws_menu.php:404 class-bws-settings.php:759
656
  msgid "Knowledge Base"
657
  msgstr "База знань"
658
 
659
- #: bws_menu.php:407
660
  msgid "Licenses & Domains"
661
  msgstr "Ліцензії та домени"
662
 
663
- #: bws_menu.php:410
664
  msgid "Client Area"
665
  msgstr "Client Area"
666
 
667
- #: bws_menu.php:409
668
  #, php-format
669
  msgid ""
670
  "Manage your license(-s) and change domain names using the %s at BestWebSoft."
@@ -672,147 +673,147 @@ msgstr ""
672
  "Керуйте своїми ліцензіями та змінюйте доменні імена, використовуючи %s на "
673
  "BestWebSoft."
674
 
675
- #: bws_menu.php:412
676
  msgid "Return to BestWebSoft Panel"
677
  msgstr "Назад до BestWebSoft Panel"
678
 
679
- #: bws_menu.php:419 bws_menu.php:439 bws_menu.php:568
680
  msgid "All"
681
  msgstr "Всі"
682
 
683
- #: bws_menu.php:422 bws_menu.php:605
684
  msgid "Installed"
685
  msgstr "Встановлені"
686
 
687
- #: bws_menu.php:425
688
  msgid "Not Installed"
689
  msgstr "Не встановлені"
690
 
691
- #: bws_menu.php:432
692
  msgid "Filter results"
693
  msgstr "Фільтр результатів"
694
 
695
- #: bws_menu.php:435 bws_menu.php:564
696
  msgid "Category"
697
  msgstr "Категорія"
698
 
699
- #: bws_menu.php:499
700
  msgid "Not installed"
701
  msgstr "Не встановлен"
702
 
703
- #: bws_menu.php:503
704
  msgid "Renew to get updates"
705
  msgstr "Продовжити для поновлення"
706
 
707
- #: bws_menu.php:506
708
  #, php-format
709
  msgid "Update to v %s"
710
  msgstr "Оновити до версії %s"
711
 
712
- #: bws_menu.php:518 bws_menu.php:541
713
  msgid "Get Pro"
714
  msgstr "Отримати Pro"
715
 
716
- #: bws_menu.php:524 class-bws-settings.php:174 class-bws-settings.php:1064
717
  msgid "Upgrade to Pro"
718
  msgstr "Оновити до Pro"
719
 
720
- #: bws_menu.php:538 bws_menu.php:547
721
  msgid "Activate this plugin"
722
  msgstr "Активувати плагін"
723
 
724
- #: bws_menu.php:550
725
  msgid "Install this plugin"
726
  msgstr "Встановити плагін"
727
 
728
- #: bws_menu.php:550
729
  msgid "Install Now"
730
  msgstr "Встановити"
731
 
732
- #: bws_menu.php:559
733
  msgid "Nothing found. Try another criteria."
734
  msgstr "Нічого не знайдено. Спробуйте інші критерії."
735
 
736
- #: bws_menu.php:596
737
  #, php-format
738
  msgid "By %s"
739
  msgstr "За %s"
740
 
741
- #: bws_menu.php:603
742
  msgid "Already Installed"
743
  msgstr "Уже встановлено %s"
744
 
745
- #: bws_menu.php:613
746
  msgid "Browse More WordPress Themes"
747
  msgstr "Огляд WordPress тем"
748
 
749
- #: bws_menu.php:622
750
  msgid "Send to support"
751
  msgstr "Відправити службі тех. підтримки"
752
 
753
- #: bws_menu.php:629
754
  msgid "Send to custom email &#187;"
755
  msgstr "Відправити на електронну адресу &#187;"
756
 
757
- #: class-bws-settings.php:153
758
  msgid "Information"
759
  msgstr "Інформація"
760
 
761
- #: class-bws-settings.php:161
762
  msgid "Inactive"
763
  msgstr "Неактивна"
764
 
765
- #: class-bws-settings.php:169
766
  msgid "Expired"
767
  msgstr "Закінчилась"
768
 
769
- #: class-bws-settings.php:172
770
  #, php-format
771
  msgid "%s day(-s) left"
772
  msgstr "%s днів залишилося"
773
 
774
- #: class-bws-settings.php:178
775
  #, php-format
776
  msgid "Expired on %s"
777
  msgstr "Витікає %s"
778
 
779
- #: class-bws-settings.php:178
780
  msgid "Renew Now"
781
  msgstr "Відновити зараз"
782
 
783
- #: class-bws-settings.php:180
784
  msgid "Active"
785
  msgstr "Активна"
786
 
787
- #: class-bws-settings.php:185
788
  msgid "License"
789
  msgstr "Ліцензія"
790
 
791
- #: class-bws-settings.php:188
792
  msgid "Status"
793
  msgstr "Статус"
794
 
795
- #: class-bws-settings.php:192
796
  msgid "Version"
797
  msgstr "Версія"
798
 
799
- #: class-bws-settings.php:302
800
  msgid "All plugin settings were restored."
801
  msgstr "Усі налаштування плагіну відновлені."
802
 
803
- #: class-bws-settings.php:442
804
  msgid "Custom Code"
805
  msgstr "Користувацький код"
806
 
807
- #: class-bws-settings.php:446
808
  msgid "You do not have sufficient permissions to edit plugins for this site."
809
  msgstr "У вас недостатньо повноважень для редагування плагінів цього сайту."
810
 
811
- #: class-bws-settings.php:451
812
  msgid "These styles will be added to the header on all pages of your site."
813
  msgstr "Ці стилі будуть додані в заголовок на всіх сторінках вашого сайту."
814
 
815
- #: class-bws-settings.php:454
816
  #, php-format
817
  msgid ""
818
  "This PHP code will be hooked to the %s action and will be printed on front "
@@ -820,11 +821,11 @@ msgid ""
820
  msgstr ""
821
  "Цей PHP код буде прикріплений до %s action і буде додано лише у фронтенді."
822
 
823
- #: class-bws-settings.php:457
824
  msgid "These code will be added to the header on all pages of your site."
825
  msgstr "Цей код буде додано в заголовок на всіх сторінках вашого сайту."
826
 
827
- #: class-bws-settings.php:465
828
  #, php-format
829
  msgid ""
830
  "You need to make this files writable before you can save your changes. See "
@@ -833,25 +834,25 @@ msgstr ""
833
  "Вам потрібно зробити цей файл доступним для запису, перед тим як ви зможете "
834
  "зберегти свої зміни. Перегляньте %sКодекс%s для додаткової інформації."
835
 
836
- #: class-bws-settings.php:475
837
  msgid "Browsing"
838
  msgstr "Огляд"
839
 
840
- #: class-bws-settings.php:480
841
  #, php-format
842
  msgid "Activate custom %s code."
843
  msgstr "Активувати користувацький %s код."
844
 
845
- #: class-bws-settings.php:488
846
  #, php-format
847
  msgid "Learn more about %s"
848
  msgstr "Дізнатись більше про %s"
849
 
850
- #: class-bws-settings.php:550
851
  msgid "Miscellaneous Settings"
852
  msgstr "Інші налаштування"
853
 
854
- #: class-bws-settings.php:559 class-bws-settings.php:614
855
  #, php-format
856
  msgid ""
857
  "It is prohibited to change %s settings on this site in the %s network "
@@ -860,7 +861,7 @@ msgstr ""
860
  "Мережевими налаштуваннями %s забороняється змінювати налаштування %s на "
861
  "цьому сайті."
862
 
863
- #: class-bws-settings.php:562 class-bws-settings.php:617
864
  #, php-format
865
  msgid ""
866
  "It is prohibited to view %s settings on this site in the %s network settings."
@@ -868,53 +869,53 @@ msgstr ""
868
  "Мережевими налаштуваннями %s забороняється дивитися налаштування %s на цьому "
869
  "сайті."
870
 
871
- #: class-bws-settings.php:571
872
  msgid "Pro Options"
873
  msgstr "Pro опції"
874
 
875
- #: class-bws-settings.php:575
876
  msgid "Enable to display plugin Pro options."
877
  msgstr "Увімкніть для відображення Pro опцій плагіна."
878
 
879
- #: class-bws-settings.php:581
880
  msgid "Track Usage"
881
  msgstr "Збирати статистику"
882
 
883
- #: class-bws-settings.php:585
884
  msgid ""
885
  "Enable to allow tracking plugin usage anonymously in order to make it better."
886
  msgstr ""
887
  "Включити, щоб дозволити анонімно відстежувати використання і зробити плагін "
888
  "краще."
889
 
890
- #: class-bws-settings.php:590
891
  msgid "Default Settings"
892
  msgstr "Налаштування за замовчуванням"
893
 
894
- #: class-bws-settings.php:592
895
  msgid "Restore Settings"
896
  msgstr "Відновлення налаштувань"
897
 
898
- #: class-bws-settings.php:593
899
  msgid "This will restore plugin settings to defaults."
900
  msgstr "Відновити всі налаштування плагіна до налаштувань за замовчуванням."
901
 
902
- #: class-bws-settings.php:605
903
  msgid "Import / Export"
904
  msgstr "Імпорт / Експорт"
905
 
906
- #: class-bws-settings.php:723
907
  msgid "License Key"
908
  msgstr "Ключ ліцензії"
909
 
910
- #: class-bws-settings.php:785
911
  #, php-format
912
  msgid "Enter your license key to activate %s and get premium plugin features."
913
  msgstr ""
914
  "Введіть ліцензійний ключ для активації %s і отримання додаткових можливостей "
915
  "плагіна."
916
 
917
- #: class-bws-settings.php:788 class-bws-settings.php:987 deprecated.php:243
918
  msgid ""
919
  "Unfortunately, you have exceeded the number of available tries per day. "
920
  "Please, upload the plugin manually."
@@ -922,12 +923,12 @@ msgstr ""
922
  "На жаль, ви перевищили кількість доступних спроб на день. Будь ласка, "
923
  "завантажте плагін вручну"
924
 
925
- #: class-bws-settings.php:791 deprecated.php:234
926
  #, php-format
927
  msgid "Start Your Free %s-Day Trial Now"
928
  msgstr "Спробуйте %s-денну Trial версію безкоштовно"
929
 
930
- #: class-bws-settings.php:806
931
  msgid ""
932
  "If necessary, you can check if the license key is correct or reenter it in "
933
  "the field below."
@@ -935,15 +936,15 @@ msgstr ""
935
  "При необхідності ви можете перевірити правильність вашого ліцензійного ключа "
936
  "або знову ввести його у полі, що знаходиться вище."
937
 
938
- #: class-bws-settings.php:815
939
  msgid "Manage License Settings"
940
  msgstr "Управління налаштуваннями ліцензій"
941
 
942
- #: class-bws-settings.php:817
943
  msgid "Login to Client Area"
944
  msgstr "Зайти в Client Area"
945
 
946
- #: class-bws-settings.php:819
947
  msgid ""
948
  "Manage active licenses, download BWS products, and view your payment history "
949
  "using BestWebSoft Client Area."
@@ -951,11 +952,11 @@ msgstr ""
951
  "Керуй активними ліцензіями, завантажуй BWS продукти, а також переглядай "
952
  "історію платежів за допомогою BestWebSoft Client Area."
953
 
954
- #: class-bws-settings.php:876 class-bws-settings.php:985
955
  msgid "This license key is bound to another site."
956
  msgstr "Цей ліцензійний ключ прив'язано до іншого сайту."
957
 
958
- #: class-bws-settings.php:878
959
  msgid ""
960
  "This license key is valid, but Your license has expired. If you want to "
961
  "update our plugin in future, you should extend the license."
@@ -963,11 +964,11 @@ msgstr ""
963
  "Даний ліцензійний ключ дійсний, але строк вашої ліцензії витік. Якщо ви "
964
  "хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
965
 
966
- #: class-bws-settings.php:880
967
  msgid "Unfortunately, you have exceeded the number of available tries."
968
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
969
 
970
- #: class-bws-settings.php:882
971
  msgid ""
972
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
973
  "The Pro Trial license can be installed only once."
@@ -975,17 +976,17 @@ msgstr ""
975
  "На жаль, Trial Pro версія плагіну уже встановлювалась на цей домен. Trial "
976
  "Pro версію можна встановлювати лише один раз."
977
 
978
- #: class-bws-settings.php:887
979
  msgid "The Pro Trial license key is valid."
980
  msgstr "Ключ тріал Pro версії вірний."
981
 
982
- #: class-bws-settings.php:897 deprecated.php:142
983
  #, php-format
984
  msgid ""
985
  "In order to continue using the plugin it is necessary to buy a %s license."
986
  msgstr "Щоб продовжити користуватись плагіном, потрібно придбати %s ліцензію."
987
 
988
- #: class-bws-settings.php:989
989
  #, php-format
990
  msgid ""
991
  "Unfortunately, Your license has expired. To continue getting top-priority "
@@ -994,26 +995,59 @@ msgstr ""
994
  "На жаль, ваша ліцензія скінчилась. Для того, щоб і надалі отримувати "
995
  "першочергову тех.підтримку і оновлення, будь ласка, продовжте ліцензію у %s."
996
 
997
- #: class-bws-settings.php:1038
998
  msgid "Please, enter Your license key"
999
  msgstr "Будь ласка, впишіть ваш ліцензійний ключ"
1000
 
1001
- #: class-bws-settings.php:1051
1002
  msgid "Need Help?"
1003
  msgstr "Потрібна допомога?"
1004
 
1005
- #: class-bws-settings.php:1053
1006
  msgid "Read the Instruction"
1007
  msgstr "Читати інструкцію"
1008
 
1009
- #: class-bws-settings.php:1057
1010
  msgid "Watch the Video"
1011
  msgstr "Дивитися відео"
1012
 
1013
- #: class-bws-settings.php:1068
1014
  msgid "Start Your Free Trial"
1015
  msgstr "Використовувати безкоштовну Trial версію"
1016
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1017
  #: deactivation-form.php:22
1018
  msgid "Need help? We are ready to answer your questions."
1019
  msgstr "Потрібна допомога? Ми готові відповісти на ваші питання."
@@ -1071,26 +1105,18 @@ msgid "If you have a moment, please let us know why you are deactivating"
1071
  msgstr ""
1072
  "Якщо у вас є час, будь ласка, повідомте нам, чому ви деактивуете плагін"
1073
 
1074
- #: deactivation-form.php:120
1075
- msgid "Send website data and allow to contact me back"
1076
- msgstr "Надіслати дані сайту і дозволити зв'язатися зі мною"
1077
-
1078
- #: deactivation-form.php:225
1079
- msgid "Processing"
1080
- msgstr "Обробка"
1081
-
1082
- #: deactivation-form.php:254
1083
  msgid "Submit and Deactivate"
1084
  msgstr "Надіслати і деактивувати"
1085
 
1086
- #: deactivation-form.php:269
1087
- msgid "Please tell us the reason so we can improve it."
1088
- msgstr "Будь ласка, повідомте нам причину, щоб ми могли покращити плагін."
1089
-
1090
- #: deactivation-form.php:334
1091
  msgid "Skip and Deactivate"
1092
  msgstr "Пропустити і деактивувати"
1093
 
 
 
 
 
1094
  #: deprecated.php:28
1095
  msgid "System Status"
1096
  msgstr "Системна інформація"
@@ -1165,51 +1191,55 @@ msgstr "Введіть ліцензійний ключ для установки
1165
  msgid "version of the plugin."
1166
  msgstr "версія плагіна."
1167
 
1168
- #: product_list.php:7
1169
  msgid "Admin Tools"
1170
  msgstr "Інструменти"
1171
 
1172
- #: product_list.php:8
1173
  msgid "Content"
1174
  msgstr "Контент"
1175
 
1176
- #: product_list.php:9
1177
  msgid "eCommerce"
1178
  msgstr "Комерція"
1179
 
1180
- #: product_list.php:10
1181
  msgid "Marketing"
1182
  msgstr "Маркетинг"
1183
 
1184
- #: product_list.php:11
1185
  msgid "Navigation"
1186
  msgstr "Навігація"
1187
 
1188
- #: product_list.php:12
1189
  msgid "Recommended"
1190
  msgstr "Рекомендовані "
1191
 
1192
- #: product_list.php:13
1193
  msgid "Security"
1194
  msgstr "Безпека"
1195
 
1196
- #: product_list.php:14
1197
  msgid "SEO"
1198
  msgstr "Пошукова оптимізація"
1199
 
1200
- #: product_list.php:15
1201
  msgid "SMM"
1202
  msgstr "СММ"
1203
 
1204
- #: product_list.php:22
 
 
 
 
1205
  msgid "Best secure captcha plugin to protect your WordPress forms."
1206
  msgstr "Кращий плагін капчі, який захистить форми вашого сайту WordPress."
1207
 
1208
- #: product_list.php:32
1209
  msgid "Create your own rental website for car renting and booking."
1210
  msgstr "Створіть свій власний сайт прокату і резервування автомобілів."
1211
 
1212
- #: product_list.php:44
1213
  msgid ""
1214
  "Add columns with custom content to WordPress website pages, posts, widgets, "
1215
  "etc."
@@ -1217,7 +1247,7 @@ msgstr ""
1217
  "Додайте стовпці з користувачим вмістом на сторінки веб-сайту WordPress, "
1218
  "повідомлення, віджети тощо."
1219
 
1220
- #: product_list.php:51
1221
  msgid ""
1222
  "Allow customers to reach you using secure contact form plugin any website "
1223
  "must have."
@@ -1225,35 +1255,35 @@ msgstr ""
1225
  "Надайте можливість клієнтам здійснювати зв'язок з вами через безпечний "
1226
  "плагін контактної форми, який повинен мати будь-який сайт."
1227
 
1228
- #: product_list.php:61
1229
  msgid "Add unlimited number of contact forms to WordPress website."
1230
  msgstr "Додавайте необмежену кількість контактних форм на ваш сайт WordPress."
1231
 
1232
- #: product_list.php:71
1233
  msgid "Save and manage Contact Form messages. Never lose important data."
1234
  msgstr ""
1235
  "Зберігайте і керуйте повідомленнями плагіну Contact Form. Ніколи не "
1236
  "втрачайте важливі дані."
1237
 
1238
- #: product_list.php:81
1239
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1240
  msgstr ""
1241
  "Додавайте необмежену кількість користувацьких сторінок у панелі "
1242
  "адміністратора WordPress."
1243
 
1244
- #: product_list.php:91
1245
  msgid ""
1246
  "Add custom post types and taxonomies to WordPress website search results."
1247
  msgstr ""
1248
  "Додавайте користувацькі типи постів і таксономії у результати пошуку на "
1249
  "вашому сайті WordPress."
1250
 
1251
- #: product_list.php:101
1252
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1253
  msgstr ""
1254
  "Додавайте кнопки PayPal і 2CO, щоб отримувати пожертви та благодійні внески."
1255
 
1256
- #: product_list.php:108
1257
  msgid ""
1258
  "Get latest error log messages to diagnose website problems. Define and fix "
1259
  "issues faster."
@@ -1261,7 +1291,7 @@ msgstr ""
1261
  "Отримуйте останні повідомлення з журналу помилок для діагностики проблем "
1262
  "сайту. Швидше виявляйте і усувайте проблеми."
1263
 
1264
- #: product_list.php:115
1265
  msgid ""
1266
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1267
  "widgets."
@@ -1269,7 +1299,7 @@ msgstr ""
1269
  "Додавайте кнопки Facebook \"Підписатися\", \"Подобається\" та \"Поділитися\" "
1270
  "у пости, сторінки і віджети сайту WordPress."
1271
 
1272
- #: product_list.php:125
1273
  msgid ""
1274
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1275
  "clicks."
@@ -1277,7 +1307,7 @@ msgstr ""
1277
  "Додавайте мальовничі галереї, альбоми, зображення та категорії галереї на "
1278
  "ваш сайт WordPress всього в декілька кліків."
1279
 
1280
- #: product_list.php:135
1281
  msgid ""
1282
  "Stronger security solution which protects your WordPress website from hacks "
1283
  "and unauthorized login attempts."
@@ -1285,7 +1315,7 @@ msgstr ""
1285
  "Найпотужніше рішення безпеки, яке захищає ваш сайт WordPress від зломів та "
1286
  "неавторизованих спроб входу в систему."
1287
 
1288
- #: product_list.php:145
1289
  msgid ""
1290
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1291
  "results, categories, tags, and widgets."
@@ -1293,23 +1323,23 @@ msgstr ""
1293
  "Додавайте рекламу сервісу Adsense на сторінки, пости, користувацькі пости, "
1294
  "результати пошуку, категорії, теги і віджети сайту WordPress."
1295
 
1296
- #: product_list.php:155
1297
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1298
  msgstr ""
1299
  "Додавайте код Google Analytics на ваш сайт WordPress та відстежуйте базову "
1300
  "статистику сайту."
1301
 
1302
- #: product_list.php:165
1303
  msgid "Protect WordPress website forms from spam entries with reCaptcha."
1304
  msgstr ""
1305
  "Захищайте форми вашого сайту WordPress від спаму за допомогою reCaptcha."
1306
 
1307
- #: product_list.php:175
1308
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1309
  msgstr ""
1310
  "Додавайте користувацькі карти Google у пости, сторінки та віджети WordPress."
1311
 
1312
- #: product_list.php:185
1313
  msgid ""
1314
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1315
  "your blog."
@@ -1317,7 +1347,7 @@ msgstr ""
1317
  "Створюйте та додавайте файли XML sitemap на ваш сайт WordPress. Допоможіть "
1318
  "пошуковим системам проіндексувати ваш блог."
1319
 
1320
- #: product_list.php:195
1321
  msgid ""
1322
  "Replace external WordPress website links with Google shortlinks and track "
1323
  "click stats."
@@ -1325,7 +1355,7 @@ msgstr ""
1325
  "Замініть зовнішні посилання сайту WordPress на короткі посилання Google і "
1326
  "відстежуйте статистику кліків."
1327
 
1328
- #: product_list.php:202
1329
  msgid ""
1330
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1331
  "hostnames, etc."
@@ -1333,7 +1363,7 @@ msgstr ""
1333
  "Захистіть свій сайт WordPress - надавайте та забороняйте доступ з певних IP-"
1334
  "адрес, імен хостів і т.д."
1335
 
1336
- #: product_list.php:212
1337
  msgid ""
1338
  "Create your personal job board and listing WordPress website. Search jobs, "
1339
  "submit CV/resumes, choose candidates."
@@ -1342,7 +1372,7 @@ msgstr ""
1342
  "WordPress. Здійснюйте пошук вакансій, подачу резюме/CV кандидата, вибір "
1343
  "кандидатів."
1344
 
1345
- #: product_list.php:219
1346
  msgid ""
1347
  "Protect WordPress website against brute force attacks. Limit rate of login "
1348
  "attempts."
@@ -1350,7 +1380,7 @@ msgstr ""
1350
  "Захищайте свій сайт WordPress від брутфорс-атак. Обмежуйте кількість спроб "
1351
  "введення логіна."
1352
 
1353
- #: product_list.php:229
1354
  msgid ""
1355
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1356
  "5 plugins included – profile, insider, etc."
@@ -1358,7 +1388,7 @@ msgstr ""
1358
  "Додавайте кнопки LinkedIn \"Поділитися\" та \"Відстежувати\" до постів, "
1359
  "сторінок і віджетів WordPress. 5 плагінів включено - Профіль, Інсайдер і т.д."
1360
 
1361
- #: product_list.php:239
1362
  msgid ""
1363
  "Translate WordPress website content to other languages manually. Create "
1364
  "multilingual pages, posts, widgets, menus, etc."
@@ -1366,7 +1396,7 @@ msgstr ""
1366
  "Перекладайте вміст сайту WordPress іншими мовами вручну. Створюйте "
1367
  "багатомовні сторінки, пости, віджети, меню і т.д."
1368
 
1369
- #: product_list.php:249
1370
  msgid ""
1371
  "Add customizable pagination to WordPress website. Split long content to "
1372
  "multiple pages for better navigation."
@@ -1374,7 +1404,7 @@ msgstr ""
1374
  "Додавайте пагінацію з можливістю налаштування на ваш сайт WordPress. "
1375
  "Розбивайте об'ємний контент на декілька сторінок для кращої навігації."
1376
 
1377
- #: product_list.php:259
1378
  msgid ""
1379
  "Generate PDF files and print WordPress posts/pages. Customize document "
1380
  "header/footer styles and appearance."
@@ -1382,7 +1412,7 @@ msgstr ""
1382
  "Створюйте PDF-файли і друкуйте пости/сторінки сайту WordPress. Налаштовуйте "
1383
  "стилі хедера/футера документа і його зовнішній вигляд."
1384
 
1385
- #: product_list.php:269
1386
  msgid ""
1387
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1388
  "Profile) to WordPress posts, pages and widgets."
@@ -1390,7 +1420,7 @@ msgstr ""
1390
  "Додавайте кнопки Pinterest \"Підписатися\", \"Зберегти\" і віджети профілю "
1391
  "(Пін, Дошка, Профіль) до постів, сторінок і віджетів WordPress."
1392
 
1393
- #: product_list.php:279
1394
  msgid ""
1395
  "Create your personal portfolio WordPress website. Manage and showcase past "
1396
  "projects to get more clients."
@@ -1398,13 +1428,13 @@ msgstr ""
1398
  "Створюйте і додавайте портфоліо на свій сайт WordPress. Керуйте і "
1399
  "демонструйте минулі проекти, щоб залучити більше клієнтів."
1400
 
1401
- #: product_list.php:289
1402
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1403
  msgstr ""
1404
  "З легкістю експортуйте пости WordPress в файли формату CSV. Налаштуйте "
1405
  "порядок відображення даних."
1406
 
1407
- #: product_list.php:299
1408
  msgid ""
1409
  "Add extra fields to default WordPress user profile. The easiest way to "
1410
  "create and manage additional custom values."
@@ -1412,7 +1442,7 @@ msgstr ""
1412
  "Додавайте користувацькі поля у стандартний профіль WordPress. Найпростіший "
1413
  "спосіб створення і управління додатковими полями."
1414
 
1415
- #: product_list.php:309
1416
  msgid ""
1417
  "Add and display HTML advertisement banner on WordPress website. Customize "
1418
  "bar styles and appearance."
@@ -1420,7 +1450,7 @@ msgstr ""
1420
  "Додавайте відображення банерної HTML реклами на сайті WordPress. Налаштуйте "
1421
  "стилі і зовнішній вигляд банеру."
1422
 
1423
- #: product_list.php:319
1424
  msgid ""
1425
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1426
  "widgets."
@@ -1428,7 +1458,7 @@ msgstr ""
1428
  "Додавайте редаговані цитати та підказки до постів, сторінок і віджетів "
1429
  "WordPress."
1430
 
1431
- #: product_list.php:326
1432
  msgid ""
1433
  "Add rating plugin to your WordPress website to receive feedback from your "
1434
  "customers."
@@ -1436,7 +1466,7 @@ msgstr ""
1436
  "Додавайте систему оцінювання і рейтингу на ваш сайт WordPress і отримуйте "
1437
  "відгуки від ваших клієнтів."
1438
 
1439
- #: product_list.php:336
1440
  msgid ""
1441
  "Create your personal real estate WordPress website. Sell, rent and buy "
1442
  "properties. Add, search and browse listings easily."
@@ -1445,7 +1475,7 @@ msgstr ""
1445
  "Продавайте, орендуйте і купуйте нерухомість. Легко додавайте, знаходьте і "
1446
  "переглядайте лістинги."
1447
 
1448
- #: product_list.php:346
1449
  msgid ""
1450
  "Add related, featured, latest, and popular posts to your WordPress website. "
1451
  "Connect your blog readers with a relevant content."
@@ -1453,7 +1483,7 @@ msgstr ""
1453
  "Додавайте схожі, обрані, останні та популярні пости на ваш сайт WordPress. "
1454
  "Надавайте своїм читачам контент схожої тематики."
1455
 
1456
- #: product_list.php:353
1457
  msgid ""
1458
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1459
  "settings and detailed reports."
@@ -1461,7 +1491,7 @@ msgstr ""
1461
  "Здійснюйте масову розсилку листів користувачам WordPress. Користувацькі "
1462
  "шаблони, додаткові налаштування і детальні звіти."
1463
 
1464
- #: product_list.php:363
1465
  msgid ""
1466
  "The best responsive slider plugin for your WordPress website. Create "
1467
  "beautifully animated slides just in a few clicks."
@@ -1469,7 +1499,7 @@ msgstr ""
1469
  "Найкращий адаптивний слайдер для вашого сайту WordPress. Створюйте красиво "
1470
  "анімовані слайди всього в декілька кліків."
1471
 
1472
- #: product_list.php:370
1473
  msgid ""
1474
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1475
  "Yahoo, Hotmail and other services."
@@ -1477,7 +1507,7 @@ msgstr ""
1477
  "Налаштовуйте SMTP-сервер, щоб отримувати електронні повідомлення з сайту "
1478
  "WordPress на такі поштові служби, як Gmail, Yahoo, Hotmail і багато інших."
1479
 
1480
- #: product_list.php:377
1481
  msgid ""
1482
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1483
  "FB, Twitter, Pinterest, LinkedIn."
@@ -1485,7 +1515,7 @@ msgstr ""
1485
  "Додавайте кнопки і віджети соціальних мереж до постів, сторінок і віджетів "
1486
  "WordPress. FB, Twitter, Pinterest, LinkedIn."
1487
 
1488
- #: product_list.php:387
1489
  msgid ""
1490
  "Add social media login, registration, and commenting to your WordPress "
1491
  "website."
@@ -1493,7 +1523,7 @@ msgstr ""
1493
  "Додавайте на свій сайт WordPress можливість входу, реєстрації та "
1494
  "коментування з використанням існуючих акаунтів соціальних мереж."
1495
 
1496
- #: product_list.php:394
1497
  msgid ""
1498
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1499
  "Collect data and subscribe your users."
@@ -1501,7 +1531,7 @@ msgstr ""
1501
  "Додавайте форму підписки на розсилку новин у пости, сторінки і віджети "
1502
  "WordPress. Збирайте дані і здійснюйте підписку користувачів."
1503
 
1504
- #: product_list.php:404
1505
  msgid ""
1506
  "Add testimonials and feedbacks from your customers to WordPress website "
1507
  "posts, pages, and widgets."
@@ -1509,7 +1539,7 @@ msgstr ""
1509
  "Додавайте рекомендації та відгуки ваших клієнтів в пости, сторінки і віджети "
1510
  "сайту WordPress."
1511
 
1512
- #: product_list.php:411
1513
  msgid ""
1514
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1515
  "attendance and generate reports."
@@ -1517,7 +1547,7 @@ msgstr ""
1517
  "Кращий плагін обліку робочого часу на сайті WordPress. Відстежуйте час "
1518
  "роботи співробітників, оптимізуйте графік роботи в офісі і створюйте звіти."
1519
 
1520
- #: product_list.php:421
1521
  msgid ""
1522
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1523
  "and pages."
@@ -1525,7 +1555,7 @@ msgstr ""
1525
  "Додавайте кнопки Твіттера \"Читати\", \"Твітнути\", \"Хештеґ\" і \"Згадати\" "
1526
  "до постів і сторінок WordPress."
1527
 
1528
- #: product_list.php:431
1529
  msgid ""
1530
  "Automatically check and update WordPress website core with all installed "
1531
  "plugins and themes to the latest versions."
@@ -1533,7 +1563,7 @@ msgstr ""
1533
  "Виконуйте автоматичну перевірку і оновлення ядра WordPress до останніх "
1534
  "версій з усіма встановленими плагінами та темами."
1535
 
1536
- #: product_list.php:441
1537
  msgid ""
1538
  "Powerful user role management plugin for WordPress website. Create, edit, "
1539
  "copy, and delete user roles."
@@ -1541,7 +1571,7 @@ msgstr ""
1541
  "Ефективний плагін управління ролями користувачів для сайту WordPress. "
1542
  "Створюйте, редагуйте, копіюйте і видаляйте ролі користувачів."
1543
 
1544
- #: product_list.php:451
1545
  msgid ""
1546
  "Display live count of online visitors who are currently browsing your "
1547
  "WordPress website."
@@ -1549,7 +1579,7 @@ msgstr ""
1549
  "Ведіть підрахунок кількості відвідувачів, які в даний час переглядають ваш "
1550
  "сайт WordPress."
1551
 
1552
- #: product_list.php:461
1553
  msgid ""
1554
  "Backup and export Zendesk Help Center content automatically to your "
1555
  "WordPress website database."
2
  msgstr ""
3
  "Project-Id-Version: bestwebsoft\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-02-15 10:56+0200\n"
6
+ "PO-Revision-Date: 2021-02-15 10:56+0200\n"
7
  "Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
9
  "Language: uk\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: __;_e;esc_attr_e;sprintf;printf;esc_html__;"
14
+ "esc_html_e\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SourceCharset: UTF-8\n"
17
+ "X-Generator: Poedit 2.4.2\n"
18
  "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
19
  "%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
20
  "X-Poedit-SearchPath-0: .\n"
25
  msgid "%s/%s"
26
  msgstr ""
27
 
28
+ #: bws_functions.php:73 bws_functions.php:239
29
  msgid "requires"
30
  msgstr "потребує"
31
 
69
  msgid "Need help?"
70
  msgstr "Потрібна допомога?"
71
 
72
+ #: bws_functions.php:104 bws_functions.php:949 class-bws-settings.php:1082
73
  msgid "Visit Help Center"
74
  msgstr "Перейти до Help Center"
75
 
77
  msgid "Want to support the plugin?"
78
  msgstr "Хочете підтримати плагін?"
79
 
80
+ #: bws_functions.php:108 bws_menu.php:529
81
  msgid "Donate"
82
  msgstr "Пожертвувати"
83
 
97
  "вкладці Client Area. Ми настійливо рекомендуємо Вам вирішити це питання "
98
  "протягом 24 годин, інакше плагін буде деактивовано."
99
 
100
+ #: bws_functions.php:128 bws_functions.php:208 bws_menu.php:600
101
+ #: class-bws-settings.php:179
102
  msgid "Learn More"
103
  msgstr "Дізнатись більше"
104
 
118
  "Строк вашої ліцензії витік. Якщо ви хочете отримувати першочергову технічну "
119
  "підтримку та оновлювати плагін у майбутньому, вам слід подовжити ліцензію."
120
 
121
+ #: bws_functions.php:147 bws_functions.php:226
122
  msgid "Learn more"
123
  msgstr "Дізнатись більше"
124
 
135
  msgid "The Pro Trial license will expire on"
136
  msgstr "Trial період Pro версії плагіну закінчується"
137
 
138
+ #: bws_functions.php:199 bws_functions.php:222 bws_functions.php:266
139
+ #: bws_functions.php:276 bws_functions.php:475
140
  msgid "Close notice"
141
  msgstr "Закрити"
142
 
143
+ #: bws_functions.php:204
144
  msgid "It’s time to upgrade your"
145
  msgstr "Настав час модернізувати Ваш"
146
 
147
+ #: bws_functions.php:204
148
  msgid "to"
149
  msgstr "до"
150
 
151
+ #: bws_functions.php:204
152
  msgid "version!"
153
  msgstr "версії!"
154
 
155
+ #: bws_functions.php:205
156
  msgid "Extend standard plugin functionality with new great options."
157
  msgstr "Розширює можливості стандартного функціоналу плагіна."
158
 
159
+ #: bws_functions.php:226
160
  #, php-format
161
  msgid ""
162
  "Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
165
  "Ваш ліцензійний ключ для %s витікає %s та ви більше не будете отримувати "
166
  "першочергову технічну підтримку та оновлення."
167
 
168
+ #: bws_functions.php:241
169
  msgid ""
170
  "or higher! We do not guarantee that our plugin will work correctly. Please "
171
  "upgrade to WordPress latest version."
173
  "чи вище! Ми не гарантуємо, що наш плагін буде працювати правильно. Будь "
174
  "ласка, оновіть WordPress до останньої версії."
175
 
176
+ #: bws_functions.php:237
177
  #, php-format
178
  msgid "<strong>%s</strong> %s <strong>WordPress %s</strong> %s"
179
  msgstr ""
180
 
181
+ #: bws_functions.php:256
182
  #, php-format
183
  msgid "Thank you for installing %s plugin!"
184
  msgstr "Дякуємо, що встановили %s плагін!"
185
 
186
+ #: bws_functions.php:258
187
  msgid "Let's get started"
188
  msgstr "Розпочнемо"
189
 
190
+ #: bws_functions.php:259 bws_functions.php:292 bws_menu.php:533
191
+ #: bws_menu.php:535
192
  msgid "Settings"
193
  msgstr "Налаштування"
194
 
195
+ #: bws_functions.php:261 bws_menu.php:327 class-bws-settings.php:809
196
+ #: class-bws-settings.php:1084 class-bws-settings.php:1094 deprecated.php:234
197
  msgid "or"
198
  msgstr "або"
199
 
200
+ #: bws_functions.php:262 bws_functions.php:294
201
  msgid "Add New"
202
  msgstr "Додати"
203
 
204
+ #: bws_functions.php:281
205
  msgid "Thank you for installing plugins by BestWebSoft!"
206
  msgstr "Дякуємо, що встановили плагіни від BestWebSoft!"
207
 
208
+ #: bws_functions.php:283
209
  msgid "More Details"
210
  msgstr "Деталі"
211
 
212
+ #: bws_functions.php:284
213
  msgid "Less Details"
214
  msgstr "Сховати Деталі"
215
 
216
+ #: bws_functions.php:312
217
  msgid "Deprecated function(-s) is used on the site here:"
218
  msgstr "Застарілі функціі використовується на сайті тут:"
219
 
220
+ #: bws_functions.php:326
221
  msgid ""
222
  "This function(-s) will be removed over time. Please update the product(-s)."
223
  msgstr ""
224
  "Ці функції буде видалено через деякий час. Будь ласка, поновіть продукт."
225
 
226
+ #: bws_functions.php:470
227
  #, php-format
228
  msgid "Thank you for choosing %s plugin!"
229
  msgstr "Дякую за вибір плагіна %s!"
230
 
231
+ #: bws_functions.php:471
232
  msgid ""
233
  "If you have a feature, suggestion or idea you'd like to see in the plugin, "
234
  "we'd love to hear about it!"
237
  "функціоналу плагіна, будь ласка, надсилайте їх нам! Ми завжди відкриті для "
238
  "нових ідей!"
239
 
240
+ #: bws_functions.php:472
241
  msgid "Suggest a Feature"
242
  msgstr "Запропонувати функціонал"
243
 
244
+ #: bws_functions.php:488 class-bws-settings.php:580 class-bws-settings.php:583
245
+ #: class-bws-settings.php:635 class-bws-settings.php:638
246
  msgid "Notice"
247
  msgstr "Зауважте"
248
 
249
+ #: bws_functions.php:488
250
  msgid "The plugin's settings have been changed."
251
  msgstr "Налаштування плагіну змінено."
252
 
253
+ #: bws_functions.php:489 class-bws-settings.php:222 class-bws-settings.php:242
254
  msgid "Save Changes"
255
  msgstr "Зберегти зміни"
256
 
257
+ #: bws_functions.php:503
258
  msgid ""
259
  "You can always look at premium options by checking the \"Pro Options\" in "
260
  "the \"Misc\" tab."
262
  "Ви завжди можете подивитися на преміум опції, натиснувши на кнопку \"Pro "
263
  "опції\" на вкладці \"Різне\"."
264
 
265
+ #: bws_functions.php:679
266
  msgid "Add shortcode"
267
  msgstr "Додати шорткод"
268
 
269
+ #: bws_functions.php:679
270
  msgid "Add BestWebSoft plugins' shortcodes using this button."
271
  msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
272
 
273
+ #: bws_functions.php:765
274
  msgid "Close"
275
  msgstr "Закрити"
276
 
277
+ #: bws_functions.php:851
278
  msgid "Are you sure you want to restore default settings?"
279
  msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
280
 
281
+ #: bws_functions.php:854
282
  msgid "Yes, restore all settings"
283
  msgstr "Так, скинути налаштування"
284
 
285
+ #: bws_functions.php:855
286
  msgid "No, go back to the settings page"
287
  msgstr "Ні, повернутись назад на сторінку налаштувань"
288
 
289
+ #: bws_functions.php:897
290
  msgid "Plugin"
291
  msgstr "Плагін"
292
 
293
+ #: bws_functions.php:906
294
  msgid "Shortcode settings"
295
  msgstr "Налаштування шорткоду"
296
 
297
+ #: bws_functions.php:911
298
  msgid "The shortcode will be inserted"
299
  msgstr "Буде вставлено шорткод"
300
 
301
+ #: bws_functions.php:954
302
  msgid "FAQ"
303
  msgstr "FAQ"
304
 
305
+ #: bws_functions.php:960
306
  msgid "For more information:"
307
  msgstr "Для отримання додаткової інформації:"
308
 
309
+ #: bws_functions.php:961 bws_menu.php:401 class-bws-settings.php:776
310
  msgid "Documentation"
311
  msgstr "Документація"
312
 
313
+ #: bws_functions.php:962 bws_menu.php:403 class-bws-settings.php:778
314
  msgid "Video Instructions"
315
  msgstr "Відео інструкції"
316
 
317
+ #: bws_functions.php:963
318
  msgid "Submit a Request"
319
  msgstr "Надіслати запит"
320
 
321
+ #: bws_menu.php:101 class-bws-settings.php:860
322
  msgid "Wrong license key"
323
  msgstr "Невірний ключ ліцензії"
324
 
325
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
326
+ #: class-bws-settings.php:1004
327
  msgid ""
328
  "Something went wrong. Please try again later. If the error appears again, "
329
  "please contact us"
331
  "Щось не так, спробуйте пізніше. Якщо помилка повториться, будь ласка, "
332
  "повідомте нам"
333
 
334
+ #: bws_menu.php:122 class-bws-settings.php:887 class-bws-settings.php:966
335
+ #: class-bws-settings.php:1004
336
  msgid "We are sorry for inconvenience."
337
  msgstr "Просимо вибачення за незручності."
338
 
339
+ #: bws_menu.php:129 class-bws-settings.php:893 class-bws-settings.php:1010
340
  msgid "Wrong license key."
341
  msgstr "Неправильний ліцензійний ключ."
342
 
351
  msgid "Log in"
352
  msgstr "Увійти"
353
 
354
+ #: bws_menu.php:133 bws_menu.php:333 deprecated.php:157
355
  msgid "Unfortunately, you have exceeded the number of available tries per day."
356
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
357
 
364
  "На жаль, ваша ліцензія скінчилась. Для того, щоб і надалі отримувати "
365
  "першочергову техпідтримку і оновлення, будь ласка, продовжте ліцензію на %s"
366
 
367
+ #: bws_menu.php:137 class-bws-settings.php:1018
368
  msgid ""
369
  "Unfortunately, the Pro licence was already installed to this domain. The Pro "
370
  "Trial license can be installed only once."
372
  "На жаль, Pro ліцензія уже використовувалась на цьому домені. Тріал Pro "
373
  "версії плагіну можна використати лише один раз."
374
 
375
+ #: bws_menu.php:143 class-bws-settings.php:908
376
  msgid "The license key is valid."
377
  msgstr "Ліцензійний ключ дійсний."
378
 
379
+ #: bws_menu.php:145 class-bws-settings.php:912
380
  msgid "Your license will expire on"
381
  msgstr "Ваша ліцензія закінчується"
382
 
383
+ #: bws_menu.php:147
384
  msgid "Congratulations! Pro Membership license is activated successfully."
385
  msgstr "Вітаємо! Pro Membership ліцензія успішно активована."
386
 
387
+ #: bws_menu.php:154 class-bws-settings.php:1028
388
  msgid ""
389
  "Something went wrong. Try again later or upload the plugin manually. We are "
390
  "sorry for inconvenience."
392
  "Виникли певні проблеми. Спробуйте ще раз пізніше або завантажте плагін "
393
  "вручну. Просимо вибачення за незручності."
394
 
395
+ #: bws_menu.php:164
396
  msgid "Please enter your license key."
397
  msgstr "Будь ласка, введіть ваш ліцензійний ключ."
398
 
399
+ #: bws_menu.php:175
400
  msgid "Not set"
401
  msgstr "Не задано"
402
 
403
+ #: bws_menu.php:177
404
  msgid "On"
405
  msgstr "Увімк."
406
 
407
+ #: bws_menu.php:177
408
  msgid "Off"
409
  msgstr "Вимк."
410
 
411
+ #: bws_menu.php:178 bws_menu.php:179 bws_menu.php:180 bws_menu.php:181
412
+ #: bws_menu.php:182 bws_menu.php:183 bws_menu.php:192
413
  msgid "N/A"
414
  msgstr "Невідомо"
415
 
416
+ #: bws_menu.php:183
417
  msgid "Mb"
418
  msgstr "Мб"
419
 
420
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
421
  msgid "Yes"
422
  msgstr "Так"
423
 
424
+ #: bws_menu.php:184 bws_menu.php:185 bws_menu.php:186 bws_menu.php:190
425
  msgid "No"
426
  msgstr "Ні"
427
 
428
+ #: bws_menu.php:197
429
  msgid "WordPress Environment"
430
  msgstr "Системне оточення WordPress"
431
 
432
+ #: bws_menu.php:199
433
  msgid "Home URL"
434
  msgstr "Адреса домашньої сторінки"
435
 
436
+ #: bws_menu.php:200
437
  msgid "Website URL"
438
  msgstr "Адреса сайту"
439
 
440
+ #: bws_menu.php:201
441
  msgid "WP Version"
442
  msgstr "Версія WordPress"
443
 
444
+ #: bws_menu.php:202
445
  msgid "WP Multisite"
446
  msgstr "Мультисайт"
447
 
448
+ #: bws_menu.php:203
449
  msgid "WP Memory Limit"
450
  msgstr "Ліміт пам’яті WordPress"
451
 
452
+ #: bws_menu.php:204
453
  msgid "Active Theme"
454
  msgstr "Активна тема"
455
 
456
+ #: bws_menu.php:204 bws_menu.php:249 bws_menu.php:252
457
  #, php-format
458
  msgid "by %s"
459
  msgstr "%s"
460
 
461
+ #: bws_menu.php:208
462
  msgid "Server Environment"
463
  msgstr "Системне оточення сервера"
464
 
465
+ #: bws_menu.php:210
466
  msgid "Operating System"
467
  msgstr "Операційна система"
468
 
469
+ #: bws_menu.php:211
470
  msgid "Server"
471
  msgstr "Тип серверу"
472
 
473
+ #: bws_menu.php:212
474
  msgid "PHP Version"
475
  msgstr "Версія PHP"
476
 
477
+ #: bws_menu.php:213
478
  msgid "PHP Allow URL fopen"
479
  msgstr "Дозволити PHP URL fopen"
480
 
481
+ #: bws_menu.php:214
482
  msgid "PHP Memory Limit"
483
  msgstr "Ліміт пам’яті"
484
 
485
+ #: bws_menu.php:215
486
  msgid "Memory Usage"
487
  msgstr "Використання пам'яті"
488
 
489
+ #: bws_menu.php:216
490
  msgid "PHP Max Upload Size"
491
  msgstr "Макс. розмір файлу, що завантажується"
492
 
493
+ #: bws_menu.php:217
494
  msgid "PHP Max Post Size"
495
  msgstr "Макс. розмір посту"
496
 
497
+ #: bws_menu.php:218
498
  msgid "PHP Max Script Execute Time"
499
  msgstr "Макс. час виконання сценарію"
500
 
501
+ #: bws_menu.php:219
502
  msgid "PHP Exif support"
503
  msgstr "Підтримка PHP Exif"
504
 
505
+ #: bws_menu.php:220
506
  msgid "PHP IPTC support"
507
  msgstr "Підтримка PHP IPTC"
508
 
509
+ #: bws_menu.php:221
510
  msgid "PHP XML support"
511
  msgstr "Підтримка PHP XML"
512
 
513
+ #: bws_menu.php:227
514
  msgid "Database"
515
  msgstr "База даних"
516
 
517
+ #: bws_menu.php:229
518
  msgid "WP DB version"
519
  msgstr "Версія бази даних WordPress"
520
 
521
+ #: bws_menu.php:230
522
  msgid "MySQL version"
523
  msgstr "Версія MYSQL"
524
 
525
+ #: bws_menu.php:231
526
  msgid "SQL Mode"
527
  msgstr "Режим SQL"
528
 
529
+ #: bws_menu.php:235
530
  msgid "Active Plugins"
531
  msgstr "Активні плагіни"
532
 
533
+ #: bws_menu.php:240
534
  msgid "Inactive Plugins"
535
  msgstr "Не активні плагіни"
536
 
537
+ #: bws_menu.php:261
538
  msgid "Please enter a valid email address."
539
  msgstr "Будь ласка, введіть коректний емейл."
540
 
541
+ #: bws_menu.php:263
542
  #, php-format
543
  msgid "Email with system info is sent to %s."
544
  msgstr "Емейл з системною інформацією надіслано на %s."
545
 
546
+ #: bws_menu.php:267
547
  msgid "Thank you for contacting us."
548
  msgstr "Дякуємо, що звернулись до нас."
549
 
550
+ #: bws_menu.php:290
551
  msgid "Sorry, email message could not be delivered."
552
  msgstr "Вибачте, ваше емейл не може бути доставлено"
553
 
554
+ #: bws_menu.php:306 bws_menu.php:310 bws_menu.php:359 deprecated.php:26
555
  msgid "Plugins"
556
  msgstr "Плагіни"
557
 
558
+ #: bws_menu.php:307 bws_menu.php:311 bws_menu.php:587 deprecated.php:27
559
  msgid "Themes"
560
  msgstr "Теми"
561
 
562
+ #: bws_menu.php:308 bws_menu.php:312 bws_menu.php:617
563
  msgid "System status"
564
  msgstr "Системна інформація"
565
 
566
+ #: bws_menu.php:316
567
  msgid "Support"
568
  msgstr "Підтримка"
569
 
570
+ #: bws_menu.php:317
571
  msgid "Manage purchased licenses & subscriptions"
572
  msgstr "Управління придбаними ліцензіями і підписками"
573
 
574
+ #: bws_menu.php:325
575
  #, php-format
576
  msgid "Get Access to %s+ Premium Plugins"
577
  msgstr "Отримати доступ до %s+ преміум плагинам"
578
 
579
+ #: bws_menu.php:327
580
  msgid "Subscribe to Pro Membership"
581
  msgstr "Підписатися на Pro Membership"
582
 
583
+ #: bws_menu.php:335 bws_menu.php:346 class-bws-settings.php:822
584
  #: deprecated.php:123
585
  msgid "Check license key"
586
  msgstr "Перевірте ліцензійний ключ"
587
 
588
+ #: bws_menu.php:338
589
  msgid "Enter your license key"
590
  msgstr "Ваш ліцензійний ключ"
591
 
592
+ #: bws_menu.php:344 bws_menu.php:539 bws_menu.php:548
593
+ #: class-bws-settings.php:801 deprecated.php:155 deprecated.php:163
594
  #: deprecated.php:240 deprecated.php:249
595
  msgid "Activate"
596
  msgstr "Активувати"
597
 
598
+ #: bws_menu.php:360
599
  msgid "Upload Plugin"
600
  msgstr "Завантажити плагін"
601
 
602
+ #: bws_menu.php:364
603
  #, php-format
604
  msgid ""
605
  "The plugin generated %d characters of <strong>unexpected output</strong> "
612
  "надіслані&#8221;, проблеми з каналами чи інші неполадки, спробуйте вимкнути "
613
  "чи видалити цей плагін."
614
 
615
+ #: bws_menu.php:366
616
  msgid ""
617
  "Plugin could not be activated because it triggered a <strong>fatal error</"
618
  "strong>."
620
  "Плагін не вдалося активувати, бо він спричинив <strong>критичну помилку</"
621
  "strong>."
622
 
623
+ #: bws_menu.php:369
624
  msgid "Plugin <strong>activated</strong>."
625
  msgstr "Плагін <strong>активовано</strong>."
626
 
627
+ #: bws_menu.php:383
628
  msgid "Download Pro Plugin"
629
  msgstr "Завантажити Pro плагін"
630
 
631
+ #: bws_menu.php:385 class-bws-settings.php:759
632
  msgid "Your Pro plugin is ready"
633
  msgstr "Ваш Pro плагін готовий"
634
 
635
+ #: bws_menu.php:387 class-bws-settings.php:761
636
  msgid "Your plugin has been zipped, and now is ready to download."
637
  msgstr "Ваш плагін був спакованний і тепер готовий до завантаження."
638
 
639
+ #: bws_menu.php:390 class-bws-settings.php:764
640
  msgid "Download Now"
641
  msgstr "Завантажити Зараз"
642
 
643
+ #: bws_menu.php:394 class-bws-settings.php:768
644
  msgid "Need help installing the plugin?"
645
  msgstr "Потрібна допомога в установці плагіна?"
646
 
647
+ #: bws_menu.php:396 class-bws-settings.php:770
648
  msgid "How to install WordPress plugin from your admin Dashboard (ZIP archive)"
649
  msgstr ""
650
  "Як встановити WordPress плагін з вашої панелі адміністратора (ZIP архів)"
651
 
652
+ #: bws_menu.php:399 class-bws-settings.php:774
653
  msgid "Get Started"
654
  msgstr "Розпочнемо"
655
 
656
+ #: bws_menu.php:405 class-bws-settings.php:780
657
  msgid "Knowledge Base"
658
  msgstr "База знань"
659
 
660
+ #: bws_menu.php:408
661
  msgid "Licenses & Domains"
662
  msgstr "Ліцензії та домени"
663
 
664
+ #: bws_menu.php:411
665
  msgid "Client Area"
666
  msgstr "Client Area"
667
 
668
+ #: bws_menu.php:410
669
  #, php-format
670
  msgid ""
671
  "Manage your license(-s) and change domain names using the %s at BestWebSoft."
673
  "Керуйте своїми ліцензіями та змінюйте доменні імена, використовуючи %s на "
674
  "BestWebSoft."
675
 
676
+ #: bws_menu.php:413
677
  msgid "Return to BestWebSoft Panel"
678
  msgstr "Назад до BestWebSoft Panel"
679
 
680
+ #: bws_menu.php:420 bws_menu.php:440 bws_menu.php:569
681
  msgid "All"
682
  msgstr "Всі"
683
 
684
+ #: bws_menu.php:423 bws_menu.php:606
685
  msgid "Installed"
686
  msgstr "Встановлені"
687
 
688
+ #: bws_menu.php:426
689
  msgid "Not Installed"
690
  msgstr "Не встановлені"
691
 
692
+ #: bws_menu.php:433
693
  msgid "Filter results"
694
  msgstr "Фільтр результатів"
695
 
696
+ #: bws_menu.php:436 bws_menu.php:565
697
  msgid "Category"
698
  msgstr "Категорія"
699
 
700
+ #: bws_menu.php:500
701
  msgid "Not installed"
702
  msgstr "Не встановлен"
703
 
704
+ #: bws_menu.php:504
705
  msgid "Renew to get updates"
706
  msgstr "Продовжити для поновлення"
707
 
708
+ #: bws_menu.php:507
709
  #, php-format
710
  msgid "Update to v %s"
711
  msgstr "Оновити до версії %s"
712
 
713
+ #: bws_menu.php:519 bws_menu.php:542
714
  msgid "Get Pro"
715
  msgstr "Отримати Pro"
716
 
717
+ #: bws_menu.php:525 class-bws-settings.php:192 class-bws-settings.php:1091
718
  msgid "Upgrade to Pro"
719
  msgstr "Оновити до Pro"
720
 
721
+ #: bws_menu.php:539 bws_menu.php:548
722
  msgid "Activate this plugin"
723
  msgstr "Активувати плагін"
724
 
725
+ #: bws_menu.php:551
726
  msgid "Install this plugin"
727
  msgstr "Встановити плагін"
728
 
729
+ #: bws_menu.php:551
730
  msgid "Install Now"
731
  msgstr "Встановити"
732
 
733
+ #: bws_menu.php:560
734
  msgid "Nothing found. Try another criteria."
735
  msgstr "Нічого не знайдено. Спробуйте інші критерії."
736
 
737
+ #: bws_menu.php:597
738
  #, php-format
739
  msgid "By %s"
740
  msgstr "За %s"
741
 
742
+ #: bws_menu.php:604
743
  msgid "Already Installed"
744
  msgstr "Уже встановлено %s"
745
 
746
+ #: bws_menu.php:614
747
  msgid "Browse More WordPress Themes"
748
  msgstr "Огляд WordPress тем"
749
 
750
+ #: bws_menu.php:623
751
  msgid "Send to support"
752
  msgstr "Відправити службі тех. підтримки"
753
 
754
+ #: bws_menu.php:630
755
  msgid "Send to custom email &#187;"
756
  msgstr "Відправити на електронну адресу &#187;"
757
 
758
+ #: class-bws-settings.php:167
759
  msgid "Information"
760
  msgstr "Інформація"
761
 
762
+ #: class-bws-settings.php:179
763
  msgid "Inactive"
764
  msgstr "Неактивна"
765
 
766
+ #: class-bws-settings.php:187
767
  msgid "Expired"
768
  msgstr "Закінчилась"
769
 
770
+ #: class-bws-settings.php:190
771
  #, php-format
772
  msgid "%s day(-s) left"
773
  msgstr "%s днів залишилося"
774
 
775
+ #: class-bws-settings.php:196
776
  #, php-format
777
  msgid "Expired on %s"
778
  msgstr "Витікає %s"
779
 
780
+ #: class-bws-settings.php:196
781
  msgid "Renew Now"
782
  msgstr "Відновити зараз"
783
 
784
+ #: class-bws-settings.php:198
785
  msgid "Active"
786
  msgstr "Активна"
787
 
788
+ #: class-bws-settings.php:203
789
  msgid "License"
790
  msgstr "Ліцензія"
791
 
792
+ #: class-bws-settings.php:206
793
  msgid "Status"
794
  msgstr "Статус"
795
 
796
+ #: class-bws-settings.php:210
797
  msgid "Version"
798
  msgstr "Версія"
799
 
800
+ #: class-bws-settings.php:323
801
  msgid "All plugin settings were restored."
802
  msgstr "Усі налаштування плагіну відновлені."
803
 
804
+ #: class-bws-settings.php:463
805
  msgid "Custom Code"
806
  msgstr "Користувацький код"
807
 
808
+ #: class-bws-settings.php:467
809
  msgid "You do not have sufficient permissions to edit plugins for this site."
810
  msgstr "У вас недостатньо повноважень для редагування плагінів цього сайту."
811
 
812
+ #: class-bws-settings.php:472
813
  msgid "These styles will be added to the header on all pages of your site."
814
  msgstr "Ці стилі будуть додані в заголовок на всіх сторінках вашого сайту."
815
 
816
+ #: class-bws-settings.php:475
817
  #, php-format
818
  msgid ""
819
  "This PHP code will be hooked to the %s action and will be printed on front "
821
  msgstr ""
822
  "Цей PHP код буде прикріплений до %s action і буде додано лише у фронтенді."
823
 
824
+ #: class-bws-settings.php:478
825
  msgid "These code will be added to the header on all pages of your site."
826
  msgstr "Цей код буде додано в заголовок на всіх сторінках вашого сайту."
827
 
828
+ #: class-bws-settings.php:486
829
  #, php-format
830
  msgid ""
831
  "You need to make this files writable before you can save your changes. See "
834
  "Вам потрібно зробити цей файл доступним для запису, перед тим як ви зможете "
835
  "зберегти свої зміни. Перегляньте %sКодекс%s для додаткової інформації."
836
 
837
+ #: class-bws-settings.php:496
838
  msgid "Browsing"
839
  msgstr "Огляд"
840
 
841
+ #: class-bws-settings.php:501
842
  #, php-format
843
  msgid "Activate custom %s code."
844
  msgstr "Активувати користувацький %s код."
845
 
846
+ #: class-bws-settings.php:509
847
  #, php-format
848
  msgid "Learn more about %s"
849
  msgstr "Дізнатись більше про %s"
850
 
851
+ #: class-bws-settings.php:571
852
  msgid "Miscellaneous Settings"
853
  msgstr "Інші налаштування"
854
 
855
+ #: class-bws-settings.php:580 class-bws-settings.php:635
856
  #, php-format
857
  msgid ""
858
  "It is prohibited to change %s settings on this site in the %s network "
861
  "Мережевими налаштуваннями %s забороняється змінювати налаштування %s на "
862
  "цьому сайті."
863
 
864
+ #: class-bws-settings.php:583 class-bws-settings.php:638
865
  #, php-format
866
  msgid ""
867
  "It is prohibited to view %s settings on this site in the %s network settings."
869
  "Мережевими налаштуваннями %s забороняється дивитися налаштування %s на цьому "
870
  "сайті."
871
 
872
+ #: class-bws-settings.php:592
873
  msgid "Pro Options"
874
  msgstr "Pro опції"
875
 
876
+ #: class-bws-settings.php:596
877
  msgid "Enable to display plugin Pro options."
878
  msgstr "Увімкніть для відображення Pro опцій плагіна."
879
 
880
+ #: class-bws-settings.php:602
881
  msgid "Track Usage"
882
  msgstr "Збирати статистику"
883
 
884
+ #: class-bws-settings.php:606
885
  msgid ""
886
  "Enable to allow tracking plugin usage anonymously in order to make it better."
887
  msgstr ""
888
  "Включити, щоб дозволити анонімно відстежувати використання і зробити плагін "
889
  "краще."
890
 
891
+ #: class-bws-settings.php:611
892
  msgid "Default Settings"
893
  msgstr "Налаштування за замовчуванням"
894
 
895
+ #: class-bws-settings.php:613
896
  msgid "Restore Settings"
897
  msgstr "Відновлення налаштувань"
898
 
899
+ #: class-bws-settings.php:614
900
  msgid "This will restore plugin settings to defaults."
901
  msgstr "Відновити всі налаштування плагіна до налаштувань за замовчуванням."
902
 
903
+ #: class-bws-settings.php:626
904
  msgid "Import / Export"
905
  msgstr "Імпорт / Експорт"
906
 
907
+ #: class-bws-settings.php:744
908
  msgid "License Key"
909
  msgstr "Ключ ліцензії"
910
 
911
+ #: class-bws-settings.php:803
912
  #, php-format
913
  msgid "Enter your license key to activate %s and get premium plugin features."
914
  msgstr ""
915
  "Введіть ліцензійний ключ для активації %s і отримання додаткових можливостей "
916
  "плагіна."
917
 
918
+ #: class-bws-settings.php:806 class-bws-settings.php:1014 deprecated.php:243
919
  msgid ""
920
  "Unfortunately, you have exceeded the number of available tries per day. "
921
  "Please, upload the plugin manually."
923
  "На жаль, ви перевищили кількість доступних спроб на день. Будь ласка, "
924
  "завантажте плагін вручну"
925
 
926
+ #: class-bws-settings.php:809 deprecated.php:234
927
  #, php-format
928
  msgid "Start Your Free %s-Day Trial Now"
929
  msgstr "Спробуйте %s-денну Trial версію безкоштовно"
930
 
931
+ #: class-bws-settings.php:824
932
  msgid ""
933
  "If necessary, you can check if the license key is correct or reenter it in "
934
  "the field below."
936
  "При необхідності ви можете перевірити правильність вашого ліцензійного ключа "
937
  "або знову ввести його у полі, що знаходиться вище."
938
 
939
+ #: class-bws-settings.php:833
940
  msgid "Manage License Settings"
941
  msgstr "Управління налаштуваннями ліцензій"
942
 
943
+ #: class-bws-settings.php:835
944
  msgid "Login to Client Area"
945
  msgstr "Зайти в Client Area"
946
 
947
+ #: class-bws-settings.php:837
948
  msgid ""
949
  "Manage active licenses, download BWS products, and view your payment history "
950
  "using BestWebSoft Client Area."
952
  "Керуй активними ліцензіями, завантажуй BWS продукти, а також переглядай "
953
  "історію платежів за допомогою BestWebSoft Client Area."
954
 
955
+ #: class-bws-settings.php:895 class-bws-settings.php:1012
956
  msgid "This license key is bound to another site."
957
  msgstr "Цей ліцензійний ключ прив'язано до іншого сайту."
958
 
959
+ #: class-bws-settings.php:897
960
  msgid ""
961
  "This license key is valid, but Your license has expired. If you want to "
962
  "update our plugin in future, you should extend the license."
964
  "Даний ліцензійний ключ дійсний, але строк вашої ліцензії витік. Якщо ви "
965
  "хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
966
 
967
+ #: class-bws-settings.php:899
968
  msgid "Unfortunately, you have exceeded the number of available tries."
969
  msgstr "На жаль, ви перевищили кількість допустимих спроб."
970
 
971
+ #: class-bws-settings.php:901
972
  msgid ""
973
  "Unfortunately, the Pro Trial licence was already installed to this domain. "
974
  "The Pro Trial license can be installed only once."
976
  "На жаль, Trial Pro версія плагіну уже встановлювалась на цей домен. Trial "
977
  "Pro версію можна встановлювати лише один раз."
978
 
979
+ #: class-bws-settings.php:906
980
  msgid "The Pro Trial license key is valid."
981
  msgstr "Ключ тріал Pro версії вірний."
982
 
983
+ #: class-bws-settings.php:919 deprecated.php:142
984
  #, php-format
985
  msgid ""
986
  "In order to continue using the plugin it is necessary to buy a %s license."
987
  msgstr "Щоб продовжити користуватись плагіном, потрібно придбати %s ліцензію."
988
 
989
+ #: class-bws-settings.php:1016
990
  #, php-format
991
  msgid ""
992
  "Unfortunately, Your license has expired. To continue getting top-priority "
995
  "На жаль, ваша ліцензія скінчилась. Для того, щоб і надалі отримувати "
996
  "першочергову тех.підтримку і оновлення, будь ласка, продовжте ліцензію у %s."
997
 
998
+ #: class-bws-settings.php:1065
999
  msgid "Please, enter Your license key"
1000
  msgstr "Будь ласка, впишіть ваш ліцензійний ключ"
1001
 
1002
+ #: class-bws-settings.php:1078
1003
  msgid "Need Help?"
1004
  msgstr "Потрібна допомога?"
1005
 
1006
+ #: class-bws-settings.php:1080
1007
  msgid "Read the Instruction"
1008
  msgstr "Читати інструкцію"
1009
 
1010
+ #: class-bws-settings.php:1084
1011
  msgid "Watch the Video"
1012
  msgstr "Дивитися відео"
1013
 
1014
+ #: class-bws-settings.php:1095
1015
  msgid "Start Your Free Trial"
1016
  msgstr "Використовувати безкоштовну Trial версію"
1017
 
1018
+ #: class-bws-settings.php:1130
1019
+ msgid "Request a Feature"
1020
+ msgstr "Запропонувати функціонал"
1021
+
1022
+ #: class-bws-settings.php:1135
1023
+ #, php-format
1024
+ msgid "How can we improve %s?"
1025
+ msgstr "Як ми можемо покращити %s?"
1026
+
1027
+ #: class-bws-settings.php:1137
1028
+ msgid "We look forward to hear your ideas."
1029
+ msgstr "Ми будемо раді почути ваші ідеї."
1030
+
1031
+ #: class-bws-settings.php:1139
1032
+ msgid "Describe your idea"
1033
+ msgstr "Опишіть свою ідею"
1034
+
1035
+ #: class-bws-settings.php:1142 deactivation-form.php:120
1036
+ msgid "Send website data and allow to contact me back"
1037
+ msgstr "Надіслати дані сайту і дозволити зв'язатися зі мною"
1038
+
1039
+ #: class-bws-settings.php:1147
1040
+ msgid "Submit"
1041
+ msgstr "Відправити"
1042
+
1043
+ #: class-bws-settings.php:1148 deactivation-form.php:127
1044
+ msgid "Processing"
1045
+ msgstr "Обробка"
1046
+
1047
+ #: class-bws-settings.php:1149
1048
+ msgid "Thank you!"
1049
+ msgstr "Дякую!"
1050
+
1051
  #: deactivation-form.php:22
1052
  msgid "Need help? We are ready to answer your questions."
1053
  msgstr "Потрібна допомога? Ми готові відповісти на ваші питання."
1105
  msgstr ""
1106
  "Якщо у вас є час, будь ласка, повідомте нам, чому ви деактивуете плагін"
1107
 
1108
+ #: deactivation-form.php:125
 
 
 
 
 
 
 
 
1109
  msgid "Submit and Deactivate"
1110
  msgstr "Надіслати і деактивувати"
1111
 
1112
+ #: deactivation-form.php:126
 
 
 
 
1113
  msgid "Skip and Deactivate"
1114
  msgstr "Пропустити і деактивувати"
1115
 
1116
+ #: deactivation-form.php:272
1117
+ msgid "Please tell us the reason so we can improve it."
1118
+ msgstr "Будь ласка, повідомте нам причину, щоб ми могли покращити плагін."
1119
+
1120
  #: deprecated.php:28
1121
  msgid "System Status"
1122
  msgstr "Системна інформація"
1191
  msgid "version of the plugin."
1192
  msgstr "версія плагіна."
1193
 
1194
+ #: product_list.php:8
1195
  msgid "Admin Tools"
1196
  msgstr "Інструменти"
1197
 
1198
+ #: product_list.php:9
1199
  msgid "Content"
1200
  msgstr "Контент"
1201
 
1202
+ #: product_list.php:10
1203
  msgid "eCommerce"
1204
  msgstr "Комерція"
1205
 
1206
+ #: product_list.php:11
1207
  msgid "Marketing"
1208
  msgstr "Маркетинг"
1209
 
1210
+ #: product_list.php:12
1211
  msgid "Navigation"
1212
  msgstr "Навігація"
1213
 
1214
+ #: product_list.php:13
1215
  msgid "Recommended"
1216
  msgstr "Рекомендовані "
1217
 
1218
+ #: product_list.php:14
1219
  msgid "Security"
1220
  msgstr "Безпека"
1221
 
1222
+ #: product_list.php:15
1223
  msgid "SEO"
1224
  msgstr "Пошукова оптимізація"
1225
 
1226
+ #: product_list.php:16
1227
  msgid "SMM"
1228
  msgstr "СММ"
1229
 
1230
+ #: product_list.php:23
1231
+ msgid "Give a birth for your bike rental and booking WordPress website."
1232
+ msgstr "Створіть прокат та бронювання велосипедів для веб-сайту WordPress."
1233
+
1234
+ #: product_list.php:35
1235
  msgid "Best secure captcha plugin to protect your WordPress forms."
1236
  msgstr "Кращий плагін капчі, який захистить форми вашого сайту WordPress."
1237
 
1238
+ #: product_list.php:45
1239
  msgid "Create your own rental website for car renting and booking."
1240
  msgstr "Створіть свій власний сайт прокату і резервування автомобілів."
1241
 
1242
+ #: product_list.php:57
1243
  msgid ""
1244
  "Add columns with custom content to WordPress website pages, posts, widgets, "
1245
  "etc."
1247
  "Додайте стовпці з користувачим вмістом на сторінки веб-сайту WordPress, "
1248
  "повідомлення, віджети тощо."
1249
 
1250
+ #: product_list.php:64
1251
  msgid ""
1252
  "Allow customers to reach you using secure contact form plugin any website "
1253
  "must have."
1255
  "Надайте можливість клієнтам здійснювати зв'язок з вами через безпечний "
1256
  "плагін контактної форми, який повинен мати будь-який сайт."
1257
 
1258
+ #: product_list.php:74
1259
  msgid "Add unlimited number of contact forms to WordPress website."
1260
  msgstr "Додавайте необмежену кількість контактних форм на ваш сайт WordPress."
1261
 
1262
+ #: product_list.php:84
1263
  msgid "Save and manage Contact Form messages. Never lose important data."
1264
  msgstr ""
1265
  "Зберігайте і керуйте повідомленнями плагіну Contact Form. Ніколи не "
1266
  "втрачайте важливі дані."
1267
 
1268
+ #: product_list.php:94
1269
  msgid "Add unlimited custom pages to WordPress admin dashboard."
1270
  msgstr ""
1271
  "Додавайте необмежену кількість користувацьких сторінок у панелі "
1272
  "адміністратора WordPress."
1273
 
1274
+ #: product_list.php:104
1275
  msgid ""
1276
  "Add custom post types and taxonomies to WordPress website search results."
1277
  msgstr ""
1278
  "Додавайте користувацькі типи постів і таксономії у результати пошуку на "
1279
  "вашому сайті WordPress."
1280
 
1281
+ #: product_list.php:114
1282
  msgid "Add PayPal and 2CO donate buttons to receive charity payments."
1283
  msgstr ""
1284
  "Додавайте кнопки PayPal і 2CO, щоб отримувати пожертви та благодійні внески."
1285
 
1286
+ #: product_list.php:121
1287
  msgid ""
1288
  "Get latest error log messages to diagnose website problems. Define and fix "
1289
  "issues faster."
1291
  "Отримуйте останні повідомлення з журналу помилок для діагностики проблем "
1292
  "сайту. Швидше виявляйте і усувайте проблеми."
1293
 
1294
+ #: product_list.php:128
1295
  msgid ""
1296
  "Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
1297
  "widgets."
1299
  "Додавайте кнопки Facebook \"Підписатися\", \"Подобається\" та \"Поділитися\" "
1300
  "у пости, сторінки і віджети сайту WordPress."
1301
 
1302
+ #: product_list.php:138
1303
  msgid ""
1304
  "Add beautiful galleries, albums & images to your WordPress website in a few "
1305
  "clicks."
1307
  "Додавайте мальовничі галереї, альбоми, зображення та категорії галереї на "
1308
  "ваш сайт WordPress всього в декілька кліків."
1309
 
1310
+ #: product_list.php:148
1311
  msgid ""
1312
  "Stronger security solution which protects your WordPress website from hacks "
1313
  "and unauthorized login attempts."
1315
  "Найпотужніше рішення безпеки, яке захищає ваш сайт WordPress від зломів та "
1316
  "неавторизованих спроб входу в систему."
1317
 
1318
+ #: product_list.php:158
1319
  msgid ""
1320
  "Add Adsense ads to WordPress website pages, posts, custom posts, search "
1321
  "results, categories, tags, and widgets."
1323
  "Додавайте рекламу сервісу Adsense на сторінки, пости, користувацькі пости, "
1324
  "результати пошуку, категорії, теги і віджети сайту WordPress."
1325
 
1326
+ #: product_list.php:168
1327
  msgid "Add Google Analytics code to WordPress website and track basic stats."
1328
  msgstr ""
1329
  "Додавайте код Google Analytics на ваш сайт WordPress та відстежуйте базову "
1330
  "статистику сайту."
1331
 
1332
+ #: product_list.php:178
1333
  msgid "Protect WordPress website forms from spam entries with reCaptcha."
1334
  msgstr ""
1335
  "Захищайте форми вашого сайту WordPress від спаму за допомогою reCaptcha."
1336
 
1337
+ #: product_list.php:188
1338
  msgid "Add customized Google maps to WordPress posts, pages and widgets."
1339
  msgstr ""
1340
  "Додавайте користувацькі карти Google у пости, сторінки та віджети WordPress."
1341
 
1342
+ #: product_list.php:198
1343
  msgid ""
1344
  "Generate and add XML sitemap to WordPress website. Help search engines index "
1345
  "your blog."
1347
  "Створюйте та додавайте файли XML sitemap на ваш сайт WordPress. Допоможіть "
1348
  "пошуковим системам проіндексувати ваш блог."
1349
 
1350
+ #: product_list.php:208
1351
  msgid ""
1352
  "Replace external WordPress website links with Google shortlinks and track "
1353
  "click stats."
1355
  "Замініть зовнішні посилання сайту WordPress на короткі посилання Google і "
1356
  "відстежуйте статистику кліків."
1357
 
1358
+ #: product_list.php:215
1359
  msgid ""
1360
  "Protect WordPress website – allow and deny access for certain IP addresses, "
1361
  "hostnames, etc."
1363
  "Захистіть свій сайт WordPress - надавайте та забороняйте доступ з певних IP-"
1364
  "адрес, імен хостів і т.д."
1365
 
1366
+ #: product_list.php:225
1367
  msgid ""
1368
  "Create your personal job board and listing WordPress website. Search jobs, "
1369
  "submit CV/resumes, choose candidates."
1372
  "WordPress. Здійснюйте пошук вакансій, подачу резюме/CV кандидата, вибір "
1373
  "кандидатів."
1374
 
1375
+ #: product_list.php:232
1376
  msgid ""
1377
  "Protect WordPress website against brute force attacks. Limit rate of login "
1378
  "attempts."
1380
  "Захищайте свій сайт WordPress від брутфорс-атак. Обмежуйте кількість спроб "
1381
  "введення логіна."
1382
 
1383
+ #: product_list.php:242
1384
  msgid ""
1385
  "Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
1386
  "5 plugins included – profile, insider, etc."
1388
  "Додавайте кнопки LinkedIn \"Поділитися\" та \"Відстежувати\" до постів, "
1389
  "сторінок і віджетів WordPress. 5 плагінів включено - Профіль, Інсайдер і т.д."
1390
 
1391
+ #: product_list.php:252
1392
  msgid ""
1393
  "Translate WordPress website content to other languages manually. Create "
1394
  "multilingual pages, posts, widgets, menus, etc."
1396
  "Перекладайте вміст сайту WordPress іншими мовами вручну. Створюйте "
1397
  "багатомовні сторінки, пости, віджети, меню і т.д."
1398
 
1399
+ #: product_list.php:262
1400
  msgid ""
1401
  "Add customizable pagination to WordPress website. Split long content to "
1402
  "multiple pages for better navigation."
1404
  "Додавайте пагінацію з можливістю налаштування на ваш сайт WordPress. "
1405
  "Розбивайте об'ємний контент на декілька сторінок для кращої навігації."
1406
 
1407
+ #: product_list.php:272
1408
  msgid ""
1409
  "Generate PDF files and print WordPress posts/pages. Customize document "
1410
  "header/footer styles and appearance."
1412
  "Створюйте PDF-файли і друкуйте пости/сторінки сайту WordPress. Налаштовуйте "
1413
  "стилі хедера/футера документа і його зовнішній вигляд."
1414
 
1415
+ #: product_list.php:282
1416
  msgid ""
1417
  "Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
1418
  "Profile) to WordPress posts, pages and widgets."
1420
  "Додавайте кнопки Pinterest \"Підписатися\", \"Зберегти\" і віджети профілю "
1421
  "(Пін, Дошка, Профіль) до постів, сторінок і віджетів WordPress."
1422
 
1423
+ #: product_list.php:292
1424
  msgid ""
1425
  "Create your personal portfolio WordPress website. Manage and showcase past "
1426
  "projects to get more clients."
1428
  "Створюйте і додавайте портфоліо на свій сайт WordPress. Керуйте і "
1429
  "демонструйте минулі проекти, щоб залучити більше клієнтів."
1430
 
1431
+ #: product_list.php:302
1432
  msgid "Export WordPress posts to CSV file format easily. Configure data order."
1433
  msgstr ""
1434
  "З легкістю експортуйте пости WordPress в файли формату CSV. Налаштуйте "
1435
  "порядок відображення даних."
1436
 
1437
+ #: product_list.php:312
1438
  msgid ""
1439
  "Add extra fields to default WordPress user profile. The easiest way to "
1440
  "create and manage additional custom values."
1442
  "Додавайте користувацькі поля у стандартний профіль WordPress. Найпростіший "
1443
  "спосіб створення і управління додатковими полями."
1444
 
1445
+ #: product_list.php:322
1446
  msgid ""
1447
  "Add and display HTML advertisement banner on WordPress website. Customize "
1448
  "bar styles and appearance."
1450
  "Додавайте відображення банерної HTML реклами на сайті WordPress. Налаштуйте "
1451
  "стилі і зовнішній вигляд банеру."
1452
 
1453
+ #: product_list.php:332
1454
  msgid ""
1455
  "Add customizable quotes and tips blocks to WordPress posts, pages and "
1456
  "widgets."
1458
  "Додавайте редаговані цитати та підказки до постів, сторінок і віджетів "
1459
  "WordPress."
1460
 
1461
+ #: product_list.php:339
1462
  msgid ""
1463
  "Add rating plugin to your WordPress website to receive feedback from your "
1464
  "customers."
1466
  "Додавайте систему оцінювання і рейтингу на ваш сайт WordPress і отримуйте "
1467
  "відгуки від ваших клієнтів."
1468
 
1469
+ #: product_list.php:349
1470
  msgid ""
1471
  "Create your personal real estate WordPress website. Sell, rent and buy "
1472
  "properties. Add, search and browse listings easily."
1475
  "Продавайте, орендуйте і купуйте нерухомість. Легко додавайте, знаходьте і "
1476
  "переглядайте лістинги."
1477
 
1478
+ #: product_list.php:359
1479
  msgid ""
1480
  "Add related, featured, latest, and popular posts to your WordPress website. "
1481
  "Connect your blog readers with a relevant content."
1483
  "Додавайте схожі, обрані, останні та популярні пости на ваш сайт WordPress. "
1484
  "Надавайте своїм читачам контент схожої тематики."
1485
 
1486
+ #: product_list.php:366
1487
  msgid ""
1488
  "Send bulk email messages to WordPress users. Custom templates, advanced "
1489
  "settings and detailed reports."
1491
  "Здійснюйте масову розсилку листів користувачам WordPress. Користувацькі "
1492
  "шаблони, додаткові налаштування і детальні звіти."
1493
 
1494
+ #: product_list.php:376
1495
  msgid ""
1496
  "The best responsive slider plugin for your WordPress website. Create "
1497
  "beautifully animated slides just in a few clicks."
1499
  "Найкращий адаптивний слайдер для вашого сайту WordPress. Створюйте красиво "
1500
  "анімовані слайди всього в декілька кліків."
1501
 
1502
+ #: product_list.php:383
1503
  msgid ""
1504
  "Configure SMTP server to receive email messages from WordPress to Gmail, "
1505
  "Yahoo, Hotmail and other services."
1507
  "Налаштовуйте SMTP-сервер, щоб отримувати електронні повідомлення з сайту "
1508
  "WordPress на такі поштові служби, як Gmail, Yahoo, Hotmail і багато інших."
1509
 
1510
+ #: product_list.php:390
1511
  msgid ""
1512
  "Add social media buttons and widgets to WordPress posts, pages and widgets. "
1513
  "FB, Twitter, Pinterest, LinkedIn."
1515
  "Додавайте кнопки і віджети соціальних мереж до постів, сторінок і віджетів "
1516
  "WordPress. FB, Twitter, Pinterest, LinkedIn."
1517
 
1518
+ #: product_list.php:400
1519
  msgid ""
1520
  "Add social media login, registration, and commenting to your WordPress "
1521
  "website."
1523
  "Додавайте на свій сайт WordPress можливість входу, реєстрації та "
1524
  "коментування з використанням існуючих акаунтів соціальних мереж."
1525
 
1526
+ #: product_list.php:407
1527
  msgid ""
1528
  "Add email newsletter sign up form to WordPress posts, pages and widgets. "
1529
  "Collect data and subscribe your users."
1531
  "Додавайте форму підписки на розсилку новин у пости, сторінки і віджети "
1532
  "WordPress. Збирайте дані і здійснюйте підписку користувачів."
1533
 
1534
+ #: product_list.php:417
1535
  msgid ""
1536
  "Add testimonials and feedbacks from your customers to WordPress website "
1537
  "posts, pages, and widgets."
1539
  "Додавайте рекомендації та відгуки ваших клієнтів в пости, сторінки і віджети "
1540
  "сайту WordPress."
1541
 
1542
+ #: product_list.php:424
1543
  msgid ""
1544
  "Best timesheet plugin for WordPress. Track employee time, streamline "
1545
  "attendance and generate reports."
1547
  "Кращий плагін обліку робочого часу на сайті WordPress. Відстежуйте час "
1548
  "роботи співробітників, оптимізуйте графік роботи в офісі і створюйте звіти."
1549
 
1550
+ #: product_list.php:434
1551
  msgid ""
1552
  "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
1553
  "and pages."
1555
  "Додавайте кнопки Твіттера \"Читати\", \"Твітнути\", \"Хештеґ\" і \"Згадати\" "
1556
  "до постів і сторінок WordPress."
1557
 
1558
+ #: product_list.php:444
1559
  msgid ""
1560
  "Automatically check and update WordPress website core with all installed "
1561
  "plugins and themes to the latest versions."
1563
  "Виконуйте автоматичну перевірку і оновлення ядра WordPress до останніх "
1564
  "версій з усіма встановленими плагінами та темами."
1565
 
1566
+ #: product_list.php:454
1567
  msgid ""
1568
  "Powerful user role management plugin for WordPress website. Create, edit, "
1569
  "copy, and delete user roles."
1571
  "Ефективний плагін управління ролями користувачів для сайту WordPress. "
1572
  "Створюйте, редагуйте, копіюйте і видаляйте ролі користувачів."
1573
 
1574
+ #: product_list.php:464
1575
  msgid ""
1576
  "Display live count of online visitors who are currently browsing your "
1577
  "WordPress website."
1579
  "Ведіть підрахунок кількості відвідувачів, які в даний час переглядають ваш "
1580
  "сайт WordPress."
1581
 
1582
+ #: product_list.php:474
1583
  msgid ""
1584
  "Backup and export Zendesk Help Center content automatically to your "
1585
  "WordPress website database."
google-captcha.php CHANGED
@@ -6,7 +6,7 @@ Description: Protect WordPress website forms from spam entries with Google Captc
6
  Author: BestWebSoft
7
  Text Domain: google-captcha
8
  Domain Path: /languages
9
- Version: 1.60
10
  Author URI: https://bestwebsoft.com/
11
  License: GPLv3 or later
12
  */
@@ -500,13 +500,21 @@ if ( ! function_exists( 'gglcptch_allowlisted_ip' ) ) {
500
  if ( ! function_exists( 'gglcptch_add_settings_page' ) ) {
501
  function gglcptch_add_settings_page() {
502
  global $gglcptch_plugin_info;
503
- require_once( dirname( __FILE__ ) . '/includes/pro_banners.php' ); ?>
 
 
 
 
 
 
 
 
 
 
 
 
504
  <div class="wrap">
505
- <?php if ( 'google-captcha.php' == $_GET['page'] ) {
506
- if ( ! class_exists( 'Bws_Settings_Tabs' ) )
507
- require_once( dirname( __FILE__ ) . '/bws_menu/class-bws-settings.php' );
508
- require_once( dirname( __FILE__ ) . '/includes/class-gglcptch-settings-tabs.php' );
509
- $page = new Gglcptch_Settings_Tabs( plugin_basename( __FILE__ ) ); ?>
510
  <h1><?php _e( 'reCaptcha Settings', 'google-captcha' ); ?></h1>
511
  <noscript><div class="error below-h2"><p><strong><?php _e( "Please enable JavaScript in your browser.", 'google-captcha' ); ?></strong></p></div></noscript>
512
  <?php $page->display_content();
@@ -516,7 +524,6 @@ if ( ! function_exists( 'gglcptch_add_settings_page' ) ) {
516
  if ( is_object( $page ) ) {
517
  $page->display_content();
518
  }
519
-
520
  /*pls */
521
  bws_plugin_reviews_block( $gglcptch_plugin_info['Name'], 'google-captcha' );
522
  /* pls*/
6
  Author: BestWebSoft
7
  Text Domain: google-captcha
8
  Domain Path: /languages
9
+ Version: 1.61
10
  Author URI: https://bestwebsoft.com/
11
  License: GPLv3 or later
12
  */
500
  if ( ! function_exists( 'gglcptch_add_settings_page' ) ) {
501
  function gglcptch_add_settings_page() {
502
  global $gglcptch_plugin_info;
503
+ /*pls */
504
+ require_once( dirname( __FILE__ ) . '/includes/pro_banners.php' );
505
+ /* pls*/
506
+ if ( 'google-captcha.php' == $_GET['page'] ) {
507
+ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
508
+ require_once( dirname( __FILE__ ) . '/bws_menu/class-bws-settings.php' );
509
+ }
510
+ require_once( dirname( __FILE__ ) . '/includes/class-gglcptch-settings-tabs.php' );
511
+ $page = new Gglcptch_Settings_Tabs( plugin_basename( __FILE__ ) );
512
+ if ( method_exists( $page, 'add_request_feature' ) ) {
513
+ $page->add_request_feature();
514
+ }
515
+ } ?>
516
  <div class="wrap">
517
+ <?php if ( 'google-captcha.php' == $_GET['page'] ) { ?>
 
 
 
 
518
  <h1><?php _e( 'reCaptcha Settings', 'google-captcha' ); ?></h1>
519
  <noscript><div class="error below-h2"><p><strong><?php _e( "Please enable JavaScript in your browser.", 'google-captcha' ); ?></strong></p></div></noscript>
520
  <?php $page->display_content();
524
  if ( is_object( $page ) ) {
525
  $page->display_content();
526
  }
 
527
  /*pls */
528
  bws_plugin_reviews_block( $gglcptch_plugin_info['Name'], 'google-captcha' );
529
  /* pls*/
includes/class-gglcptch-settings-tabs.php CHANGED
@@ -117,7 +117,7 @@ if ( ! class_exists( 'Gglcptch_Settings_Tabs' ) ) {
117
  $this->options['disable_submit'] = isset( $_POST['gglcptch_disable_submit'] ) ? 1 : 0;
118
  $this->options['hide_badge'] = isset( $_POST['gglcptch_hide_badge'] ) ? 1 : 0;
119
  $this->options['disable_submit_button'] = isset( $_POST['gglcptch_disable_submit_button'] ) ? 1 : 0;
120
- $this->options['use_globally'] = isset( $_POST['gglcptch_use_globally'] ) ? 1 : 0;
121
 
122
  foreach ( $this->forms as $form_slug => $form_data ) {
123
  $this->options[ $form_slug ] = isset( $_POST["gglcptch_{$form_slug}"] ) ? 1 : 0;
@@ -146,9 +146,31 @@ if ( ! class_exists( 'Gglcptch_Settings_Tabs' ) ) {
146
  <h3 class="bws_tab_label"><?php _e( 'reCaptcha Settings', 'google-captcha' ); ?></h3>
147
  <?php $this->help_phrase(); ?>
148
  <hr>
149
- <div class="bws_tab_sub_label"><?php _e( 'Authentication', 'google-captcha' ); ?></div>
150
- <div class="bws_info"><?php _e( 'Register your domain name with Google reCaptcha service and add the keys to the fields below.', 'google-captcha' ); ?> <a target="_blank" href="https://www.google.com/recaptcha/admin#list"><?php _e( 'Get the API Keys', 'google-captcha' ); ?></a></div>
151
  <table class="form-table">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
152
  <?php foreach ( $this->keys as $key => $fields ) { ?>
153
  <tr>
154
  <th><?php echo $fields['display_name']; ?></th>
@@ -158,8 +180,7 @@ if ( ! class_exists( 'Gglcptch_Settings_Tabs' ) ) {
158
  <span class="dashicons dashicons-yes gglcptch_verified <?php if ( ! isset( $this->options['keys_verified'] ) || true !== $this->options['keys_verified'] ) echo 'hidden'; ?>"></span>
159
  </td>
160
  </tr>
161
- <?php }
162
- if ( ! empty( $this->options['public_key'] ) && ! empty( $this->options['private_key'] ) ) { ?>
163
  <tr class="hide-if-no-js">
164
  <th></th>
165
  <td>
@@ -168,24 +189,8 @@ if ( ! class_exists( 'Gglcptch_Settings_Tabs' ) ) {
168
  </div>
169
  </td>
170
  </tr>
171
- <?php } ?>
172
- </table>
173
- <div class="bws_tab_sub_label"><?php _e( 'General', 'google-captcha' ); ?></div>
174
- <table class="form-table">
175
  <tr valign="top">
176
- <th scope="row"><?php _e( 'reCaptcha Version', 'google-captcha' ); ?></th>
177
- <td>
178
- <fieldset>
179
- <?php foreach ( $this->versions as $version => $version_name ) { ?>
180
- <label>
181
- <input type="radio" name="gglcptch_recaptcha_version" value="<?php echo $version; ?>" <?php checked( $version, $this->options['recaptcha_version'] ); ?>> <?php echo $version_name; ?>
182
- </label>
183
- <br/>
184
- <?php } ?>
185
- </fieldset>
186
- </td>
187
- </tr>
188
- <tr valign="top">
189
  <th scope="row"><?php _e( 'Enable reCaptcha for', 'google-captcha' ); ?></th>
190
  <td>
191
  <!--[if !IE]> -->
@@ -243,34 +248,35 @@ if ( ! class_exists( 'Gglcptch_Settings_Tabs' ) ) {
243
  <!-- end pls -->
244
  <table class="form-table">
245
  <tr valign="top">
246
- <th scope="row"><?php _e( 'Hide reCaptcha for', 'google-captcha' ); ?></th>
247
- <td>
248
- <fieldset>
249
- <?php if ( function_exists( 'get_editable_roles' ) ) {
250
- foreach ( get_editable_roles() as $role => $fields ) {
251
- printf(
252
- '<label><input type="checkbox" name="%1$s" value="%2$s" %3$s> %4$s</label><br/>',
253
- 'gglcptch_' . $role,
254
- $role,
255
- checked( ! empty( $this->options[ $role ] ), true, false ),
256
- translate_user_role( $fields['name'] )
257
- );
258
- }
259
- } ?>
260
- </fieldset>
261
- </td>
262
- </tr>
263
- <tr class="gglcptch_badge_v3" valign="top">
264
  <th scope="row">
265
- <?php _e( 'Hide reCaptcha Badge', 'google-captcha' ); ?>
266
  </th>
267
  <td>
268
- <input<?php echo $this->change_permission_attr; ?> id="gglcptch_hide_badge" type="checkbox" <?php checked( ! empty( $this->options['hide_badge'] ) ); ?> name="gglcptch_hide_badge" value="1" />&nbsp;
269
- <span class="bws_info">
270
- <?php _e( 'Enable to hide reCaptcha Badge for Version 3 and Invisible reCaptcha.', 'google-captcha' ); ?>
271
- </span>
 
 
 
272
  </td>
273
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
274
  <tr class="gglcptch_theme_v2" valign="top">
275
  <th scope="row">
276
  <?php _e( 'Theme', 'google-captcha' ); ?>
@@ -282,41 +288,63 @@ if ( ! class_exists( 'Gglcptch_Settings_Tabs' ) ) {
282
  </select>
283
  </td>
284
  </tr>
285
- <tr class="gglcptch_score_v3" valign="top">
286
- <th scope="row">
287
- <?php _e( 'Score', 'google-captcha' ); ?>
288
- </th>
289
- <td>
290
- <input name="gglcptch_score_v3" id="gglcptch_score_v3" type="range" list="gglcptch_score_v3_rangeList" min="0" max="1.0" step="0.1" value="<?php echo $this->options['score_v3']; ?>">
291
- <output id="gglcptch_score_out_v3" for="gglcptch_score_v3"></output>
292
- <span class="bws_info" style="display: block;"><?php printf( __( 'Set the minimum verification score from %s to %s (default is %s).', 'google-captcha' ), 0, 1, 0.5 ); ?></span>
293
- </td>
294
- </tr>
295
  </table>
296
- <!-- pls -->
297
  <?php if ( ! $this->hide_pro_tabs ) { ?>
298
  <div class="bws_pro_version_bloc">
299
  <div class="bws_pro_version_table_bloc">
300
  <button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'google-captcha' ); ?>"></button>
301
  <div class="bws_table_bg"></div>
302
- <?php gglcptch_additional_settings_banner(); ?>
303
  </div>
304
  <?php $this->bws_pro_block_links(); ?>
305
  </div>
306
  <?php } ?>
307
  <!-- end pls -->
308
  <table class="form-table">
309
- <tr valign="top">
310
  <th scope="row">
311
- <?php _e( 'Use reCaptcha Globally', 'google-captcha' ); ?>
312
  </th>
313
  <td>
314
- <input<?php echo $this->change_permission_attr; ?> type="checkbox" <?php checked( $this->options['use_globally'] ); ?> name="gglcptch_use_globally" value="1" />
315
  <span class="bws_info">
316
- <?php _e( 'Enable to use reCaptcha when Google is not accessible or blocked in your country.', 'google-captcha' ); ?>
317
  </span>
318
  </td>
319
  </tr>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
320
  <tr valign="top">
321
  <th scope="row"><?php _e( 'Allow List Notification', 'google-captcha' ); ?></th>
322
  <td>
117
  $this->options['disable_submit'] = isset( $_POST['gglcptch_disable_submit'] ) ? 1 : 0;
118
  $this->options['hide_badge'] = isset( $_POST['gglcptch_hide_badge'] ) ? 1 : 0;
119
  $this->options['disable_submit_button'] = isset( $_POST['gglcptch_disable_submit_button'] ) ? 1 : 0;
120
+ $this->options['use_globally'] = intval( $_POST['gglcptch_use_globally'] );
121
 
122
  foreach ( $this->forms as $form_slug => $form_data ) {
123
  $this->options[ $form_slug ] = isset( $_POST["gglcptch_{$form_slug}"] ) ? 1 : 0;
146
  <h3 class="bws_tab_label"><?php _e( 'reCaptcha Settings', 'google-captcha' ); ?></h3>
147
  <?php $this->help_phrase(); ?>
148
  <hr>
149
+ <div class="bws_tab_sub_label"><?php _e( 'General', 'google-captcha' ); ?></div>
 
150
  <table class="form-table">
151
+ <tr valign="top">
152
+ <th scope="row"><?php _e( 'reCaptcha Version', 'google-captcha' ); ?></th>
153
+ <td>
154
+ <fieldset>
155
+ <?php foreach ( $this->versions as $version => $version_name ) { ?>
156
+ <label>
157
+ <input type="radio" name="gglcptch_recaptcha_version" value="<?php echo $version; ?>" <?php checked( $version, $this->options['recaptcha_version'] ); ?>> <?php echo $version_name; ?>
158
+ </label>
159
+ <br/>
160
+ <?php } ?>
161
+ </fieldset>
162
+ </td>
163
+ </tr>
164
+ </table>
165
+ <table class="form-table gglcptch_settings_form">
166
+ <div class="bws_info gglcptch_settings_form"><?php printf( __( 'Register your domain name with Google reCaptcha service and add the keys to the fields below. %s Get the API Keys. %s' , 'google-captcha' ),
167
+ '<a target="_blank" href="https://www.google.com/recaptcha/admin#list">',
168
+ '</a>' ) ?>
169
+ </div>
170
+ <div class="bws_info gglcptch_settings_form"><?php printf( __( 'If you do not want to create API keys use %s Captcha by BestWebSoft %s plugin.', 'google-captcha' ),
171
+ '<a target="_blank" href="https://bestwebsoft.com/products/wordpress/plugins/captcha/?k=dcf21edcd5cc9374f5e15c8055e40797">',
172
+ '</a>' ); ?>
173
+ </div>
174
  <?php foreach ( $this->keys as $key => $fields ) { ?>
175
  <tr>
176
  <th><?php echo $fields['display_name']; ?></th>
180
  <span class="dashicons dashicons-yes gglcptch_verified <?php if ( ! isset( $this->options['keys_verified'] ) || true !== $this->options['keys_verified'] ) echo 'hidden'; ?>"></span>
181
  </td>
182
  </tr>
183
+ <?php } if ( ! empty( $this->options['public_key'] ) && ! empty( $this->options['private_key'] ) ) { ?>
 
184
  <tr class="hide-if-no-js">
185
  <th></th>
186
  <td>
189
  </div>
190
  </td>
191
  </tr>
192
+ <?php } ?>
 
 
 
193
  <tr valign="top">
 
 
 
 
 
 
 
 
 
 
 
 
 
194
  <th scope="row"><?php _e( 'Enable reCaptcha for', 'google-captcha' ); ?></th>
195
  <td>
196
  <!--[if !IE]> -->
248
  <!-- end pls -->
249
  <table class="form-table">
250
  <tr valign="top">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
251
  <th scope="row">
252
+ <?php _e( 'reCaptcha Domain', 'google-captcha' ); ?>
253
  </th>
254
  <td>
255
+ <select <?php echo $this->change_permission_attr; ?> name="gglcptch_use_globally">
256
+ <option value="0" <?php selected( $this->options['use_globally'], 0 ); ?>>google.com</option>
257
+ <option value="1" <?php selected( $this->options['use_globally'], 1 ); ?>>recaptcha.net</option>
258
+ </select>
259
+ <div class="bws_info">
260
+ <?php _e( 'If Google is not accessible or blocked in your country select other one.', 'google-captcha' ); ?>
261
+ </div>
262
  </td>
263
  </tr>
264
+ </table>
265
+ <!-- pls -->
266
+ <?php if ( ! $this->hide_pro_tabs ) { ?>
267
+ <div class="bws_pro_version_bloc">
268
+ <div class="bws_pro_version_table_bloc">
269
+ <button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'google-captcha' ); ?>"></button>
270
+ <div class="bws_table_bg"></div>
271
+ <?php gglcptch_additional_settings_banner_general(); ?>
272
+ </div>
273
+ <?php $this->bws_pro_block_links(); ?>
274
+ </div>
275
+ <?php } ?>
276
+ <!-- end pls -->
277
+
278
+ <div class="bws_tab_sub_label"><?php _e( 'Appearence', 'google-captcha' ); ?></div>
279
+ <table class="form-table">
280
  <tr class="gglcptch_theme_v2" valign="top">
281
  <th scope="row">
282
  <?php _e( 'Theme', 'google-captcha' ); ?>
288
  </select>
289
  </td>
290
  </tr>
 
 
 
 
 
 
 
 
 
 
291
  </table>
292
+ <!-- pls -->
293
  <?php if ( ! $this->hide_pro_tabs ) { ?>
294
  <div class="bws_pro_version_bloc">
295
  <div class="bws_pro_version_table_bloc">
296
  <button type="submit" name="bws_hide_premium_options" class="notice-dismiss bws_hide_premium_options" title="<?php _e( 'Close', 'google-captcha' ); ?>"></button>
297
  <div class="bws_table_bg"></div>
298
+ <?php gglcptch_additional_settings_banner_appearence(); ?>
299
  </div>
300
  <?php $this->bws_pro_block_links(); ?>
301
  </div>
302
  <?php } ?>
303
  <!-- end pls -->
304
  <table class="form-table">
305
+ <tr class="gglcptch_badge_v3" valign="top">
306
  <th scope="row">
307
+ <?php _e( 'Hide reCaptcha Badge', 'google-captcha' ); ?>
308
  </th>
309
  <td>
310
+ <input<?php echo $this->change_permission_attr; ?> id="gglcptch_hide_badge" type="checkbox" <?php checked( ! empty( $this->options['hide_badge'] ) ); ?> name="gglcptch_hide_badge" value="1" />&nbsp;
311
  <span class="bws_info">
312
+ <?php _e( 'Enable to hide reCaptcha Badge for Version 3 and Invisible reCaptcha.', 'google-captcha' ); ?>
313
  </span>
314
  </td>
315
  </tr>
316
+ </table>
317
+
318
+ <div class="bws_tab_sub_label"><?php _e( 'Additional Protective Measures', 'google-captcha' ); ?></div>
319
+ <table class="form-table">
320
+ <tr class="gglcptch_score_v3" valign="top">
321
+ <th scope="row">
322
+ <?php _e( 'Score', 'google-captcha' ); ?>
323
+ </th>
324
+ <td>
325
+ <input name="gglcptch_score_v3" id="gglcptch_score_v3" type="range" list="gglcptch_score_v3_rangeList" min="0" max="1.0" step="0.1" value="<?php echo $this->options['score_v3']; ?>">
326
+ <output id="gglcptch_score_out_v3" for="gglcptch_score_v3"></output>
327
+ <span class="bws_info" style="display: block;"><?php printf( __( 'Set the minimum verification score from %s to %s (default is %s).', 'google-captcha' ), 0, 1, 0.5 ); ?></span>
328
+ </td>
329
+ </tr>
330
+ <tr valign="top">
331
+ <th scope="row"><?php _e( 'Hide reCaptcha for', 'google-captcha' ); ?></th>
332
+ <td>
333
+ <fieldset>
334
+ <?php if ( function_exists( 'get_editable_roles' ) ) {
335
+ foreach ( get_editable_roles() as $role => $fields ) {
336
+ printf(
337
+ '<label><input type="checkbox" name="%1$s" value="%2$s" %3$s> %4$s</label><br/>',
338
+ 'gglcptch_' . $role,
339
+ $role,
340
+ checked( ! empty( $this->options[ $role ] ), true, false ),
341
+ translate_user_role( $fields['name'] )
342
+ );
343
+ }
344
+ } ?>
345
+ </fieldset>
346
+ </td>
347
+ </tr>
348
  <tr valign="top">
349
  <th scope="row"><?php _e( 'Allow List Notification', 'google-captcha' ); ?></th>
350
  <td>
includes/forms.php CHANGED
@@ -200,6 +200,8 @@ if ( ! function_exists( 'gglcptch_add_actions' ) ) {
200
  if ( gglcptch_is_recaptcha_required( 'testimonials', $is_user_logged_in ) ) {
201
  add_filter( 'tstmnls_display_recaptcha', 'gglcptch_display', 10, 0 );
202
  }
 
 
203
  }
204
  }
205
 
@@ -218,27 +220,25 @@ if ( ! function_exists( 'gglcptch_login_display' ) ) {
218
 
219
  if ( isset( $gglcptch_options['recaptcha_version'] ) ) {
220
  if ( 'v2' == $gglcptch_options['recaptcha_version'] ) {
221
- $from_width = 302;
222
- } else {
223
- $from_width = 320;
224
- } ?>
225
- <style type="text/css" media="screen">
226
- .login-action-login #loginform,
227
- .login-action-lostpassword #lostpasswordform,
228
- .login-action-register #registerform {
229
- width: <?php echo $from_width; ?>px !important;
230
- }
231
- #login_error,
232
- .message {
233
- width: <?php echo $from_width + 20; ?>px !important;
234
- }
235
- .login-action-login #loginform .gglcptch,
236
- .login-action-lostpassword #lostpasswordform .gglcptch,
237
- .login-action-register #registerform .gglcptch {
238
- margin-bottom: 10px;
239
- }
240
- </style>
241
- <?php }
242
  echo gglcptch_display();
243
  return true;
244
  }
@@ -392,4 +392,4 @@ if ( ! function_exists( 'gglcptch_testimonials_check' ) ) {
392
  }
393
  return $allow;
394
  }
395
- }
200
  if ( gglcptch_is_recaptcha_required( 'testimonials', $is_user_logged_in ) ) {
201
  add_filter( 'tstmnls_display_recaptcha', 'gglcptch_display', 10, 0 );
202
  }
203
+
204
+ do_action( 'gglcptch_add_plus_actions', $is_user_logged_in );
205
  }
206
  }
207
 
220
 
221
  if ( isset( $gglcptch_options['recaptcha_version'] ) ) {
222
  if ( 'v2' == $gglcptch_options['recaptcha_version'] ) {
223
+ $from_width = 302; ?>
224
+ <style type="text/css" media="screen">
225
+ .login-action-login #loginform,
226
+ .login-action-lostpassword #lostpasswordform,
227
+ .login-action-register #registerform {
228
+ width: <?php echo $from_width; ?>px !important;
229
+ }
230
+ #login_error,
231
+ .message {
232
+ width: <?php echo $from_width + 20; ?>px !important;
233
+ }
234
+ .login-action-login #loginform .gglcptch,
235
+ .login-action-lostpassword #lostpasswordform .gglcptch,
236
+ .login-action-register #registerform .gglcptch {
237
+ margin-bottom: 10px;
238
+ }
239
+ </style>
240
+ <?php }
241
+ }
 
 
242
  echo gglcptch_display();
243
  return true;
244
  }
392
  }
393
  return $allow;
394
  }
395
+ }
includes/pro_banners.php CHANGED
@@ -161,20 +161,9 @@ if ( ! function_exists( 'gglcptch_supported_plugins_banner' ) ) {
161
  <?php }
162
  }
163
 
164
- if ( ! function_exists( 'gglcptch_additional_settings_banner' ) ) {
165
- function gglcptch_additional_settings_banner() { ?>
166
  <table class="form-table bws_pro_version">
167
- <tr class="gglcptch_theme_v2" valign="top">
168
- <th scope="row">
169
- <?php _e( 'Size', 'google-captcha' ); ?>
170
- </th>
171
- <td>
172
- <fieldset>
173
- <label><input disabled="disabled" type="radio" checked><?php _e( 'Normal', 'google-captcha' ); ?></label><br />
174
- <label><input disabled="disabled" type="radio"><?php _e( 'Compact', 'google-captcha' ); ?></label>
175
- </fieldset>
176
- </td>
177
- </tr>
178
  <tr valign="top">
179
  <th scope="row"><?php _e( 'Language', 'google-captcha' ); ?></th>
180
  <td>
@@ -192,4 +181,22 @@ if ( ! function_exists( 'gglcptch_additional_settings_banner' ) ) {
192
  </tr>
193
  </table>
194
  <?php }
195
- }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
161
  <?php }
162
  }
163
 
164
+ if ( ! function_exists( 'gglcptch_additional_settings_banner_general' ) ) {
165
+ function gglcptch_additional_settings_banner_general() { ?>
166
  <table class="form-table bws_pro_version">
 
 
 
 
 
 
 
 
 
 
 
167
  <tr valign="top">
168
  <th scope="row"><?php _e( 'Language', 'google-captcha' ); ?></th>
169
  <td>
181
  </tr>
182
  </table>
183
  <?php }
184
+ }
185
+
186
+ if ( ! function_exists( 'gglcptch_additional_settings_banner_appearence' ) ) {
187
+ function gglcptch_additional_settings_banner_appearence() { ?>
188
+ <table class="form-table bws_pro_version">
189
+ <tr class="gglcptch_theme_v2" valign="top">
190
+ <th scope="row">
191
+ <?php _e( 'Size', 'google-captcha' ); ?>
192
+ </th>
193
+ <td>
194
+ <fieldset>
195
+ <label><input disabled="disabled" type="radio" checked><?php _e( 'Normal', 'google-captcha' ); ?></label><br />
196
+ <label><input disabled="disabled" type="radio"><?php _e( 'Compact', 'google-captcha' ); ?></label>
197
+ </fieldset>
198
+ </td>
199
+ </tr>
200
+ </table>
201
+ <?php }
202
+ }
languages/google-captcha-ru_RU.mo CHANGED
Binary file
languages/google-captcha-ru_RU.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: reCaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2021-01-15 15:50+0200\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
@@ -19,12 +19,12 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPathExcluded-0: bws_menu\n"
21
 
22
- #: google-captcha.php:39 google-captcha.php:49 google-captcha.php:505
23
- #: includes/class-gglcptch-settings-tabs.php:140
24
  msgid "reCaptcha Settings"
25
  msgstr "Настройки reCaptcha"
26
 
27
- #: google-captcha.php:50 google-captcha.php:1090 google-captcha.php:1103
28
  #: includes/class-gglcptch-settings-tabs.php:22
29
  msgid "Settings"
30
  msgstr "Настройки"
@@ -41,11 +41,11 @@ msgstr "Доступные диапазоны"
41
  msgid "Upgrade to Pro"
42
  msgstr "Обновить до Pro"
43
 
44
- #: google-captcha.php:268
45
  msgid "Please wait until Google reCAPTCHA is loaded."
46
  msgstr "Пожалуйста, дождитесь окончания загрузки Google reCAPTCHA."
47
 
48
- #: google-captcha.php:269
49
  msgid ""
50
  "Failed to load Google reCAPTCHA. Please check your internet connection and "
51
  "reload this page."
@@ -53,87 +53,87 @@ msgstr ""
53
  "Не удалось загрузить Google reCAPTCHA. Пожалуйста, проверьте ваше "
54
  "подключение к сети Интернет и перезагрузите эту страницу."
55
 
56
- #: google-captcha.php:281
57
  msgid "Warning"
58
  msgstr "Внимание"
59
 
60
- #: google-captcha.php:407
61
  msgid "You are in the allow list"
62
  msgstr "Вы в белом списке"
63
 
64
- #: google-captcha.php:506
65
  msgid "Please enable JavaScript in your browser."
66
  msgstr "Пожалуйста, включите поддержку JavaScript в вашем браузере."
67
 
68
- #: google-captcha.php:588
69
  msgid "This site is protected by reCAPTCHA and the Google "
70
  msgstr "Этот сайт защищен reCAPTCHA и применяются "
71
 
72
- #: google-captcha.php:589
73
  msgid "Privacy Policy"
74
  msgstr "Политика конфиденциальности"
75
 
76
- #: google-captcha.php:590
77
  msgid " and "
78
  msgstr " и "
79
 
80
- #: google-captcha.php:591
81
  msgid "Terms of Service"
82
  msgstr "Условия обслуживания"
83
 
84
- #: google-captcha.php:592
85
  msgid " apply."
86
  msgstr " Google."
87
 
88
- #: google-captcha.php:599
89
  msgid "To use reCaptcha you must get the keys from"
90
  msgstr "Чтобы использовать reCaptcha, вам необходимо получить ключи"
91
 
92
- #: google-captcha.php:600
93
  msgid "here"
94
  msgstr "здесь"
95
 
96
- #: google-captcha.php:601
97
  msgid "and enter them on the"
98
  msgstr "и вставить их на"
99
 
100
- #: google-captcha.php:603
101
  msgid "plugin setting page"
102
  msgstr "странице настроек плагина"
103
 
104
- #: google-captcha.php:868 includes/forms.php:357
105
  msgid "Error"
106
  msgstr "Ошибка"
107
 
108
- #: google-captcha.php:990
109
  msgid "User response is missing."
110
  msgstr "Ответ пользователя отсутствует."
111
 
112
- #: google-captcha.php:992
113
  msgid "Secret Key is missing."
114
  msgstr "Секретный ключ отсутствует."
115
 
116
- #: google-captcha.php:995
117
  msgid "Secret Key is invalid."
118
  msgstr "Некорректный секретный ключ."
119
 
120
- #: google-captcha.php:996
121
  msgid "Check your domain configurations"
122
  msgstr "Проверьте настройки вашего домена"
123
 
124
- #: google-captcha.php:997
125
  msgid "and enter it again"
126
  msgstr "и введите его снова"
127
 
128
- #: google-captcha.php:999
129
  msgid "User response is invalid"
130
  msgstr "Некорректный ответ пользователя"
131
 
132
- #: google-captcha.php:1000
133
  msgid "You have entered an incorrect reCAPTCHA value."
134
  msgstr "Ошибка: Вы ввели неверное значение reCAPTCHA."
135
 
136
- #: google-captcha.php:1001
137
  msgid ""
138
  "More than one reCAPTCHA has been found in the current form. Please remove "
139
  "all unnecessary reCAPTCHA fields to make it work properly."
@@ -141,32 +141,32 @@ msgstr ""
141
  "В текущей форме найдено более одного блока reCAPTCHA. Пожалуйста, удалите "
142
  "все лишние блоки reCAPTCHA для дальнейшей корректной работы."
143
 
144
- #: google-captcha.php:1003
145
  msgid "reCaptcha v3 test failed"
146
  msgstr "Тест reCaptcha v3 не пройден"
147
 
148
- #: google-captcha.php:1041
149
  msgid "Please submit \"Test verification\""
150
  msgstr "Пожалуйста, нажмите кнопку \"Тестирование проверки\"."
151
 
152
- #: google-captcha.php:1043
153
  msgid "Please complete the captcha and submit \"Test verification\""
154
  msgstr ""
155
  "Пожалуйста, заполните капчу и нажмите кнопку \"Тестирование проверки\"."
156
 
157
- #: google-captcha.php:1049
158
  msgid "Test verification"
159
  msgstr "Тестирование проверки"
160
 
161
- #: google-captcha.php:1070
162
  msgid "The verification is successfully completed."
163
  msgstr "Тестирование проверки успешно завершено."
164
 
165
- #: google-captcha.php:1105
166
  msgid "FAQ"
167
  msgstr "FAQ"
168
 
169
- #: google-captcha.php:1106
170
  msgid "Support"
171
  msgstr "Поддержка"
172
 
@@ -190,64 +190,64 @@ msgstr "Доступные форматы"
190
  msgid "Allowed diapason"
191
  msgstr "Доступные диапазоны"
192
 
193
- #: includes/allowlist.php:100
194
  msgid "Add IP to Allow List"
195
  msgstr "Добавить IP в белый список"
196
 
197
- #: includes/allowlist.php:105
198
  msgid "Search IP"
199
  msgstr "Искать IP"
200
 
201
- #: includes/allowlist.php:159
202
  msgid "Nothing found"
203
  msgstr "Ничего не найдено"
204
 
205
- #: includes/allowlist.php:159
206
  msgid "No IP in the Allow List"
207
  msgstr "Список IP пуст"
208
 
209
- #: includes/allowlist.php:166
210
  msgid "IP Address"
211
  msgstr "IP Адресс"
212
 
213
- #: includes/allowlist.php:167
214
  msgid "Date Added"
215
  msgstr "Дата добавления"
216
 
217
- #: includes/allowlist.php:221 includes/allowlist.php:231
218
  msgid "Delete"
219
  msgstr "Удалить"
220
 
221
- #: includes/allowlist.php:319
222
  msgid "IP added to the allow list successfully."
223
  msgstr "IP адрес успешно добавлен в белый список."
224
 
225
- #: includes/allowlist.php:321 includes/allowlist.php:347
226
- #: includes/allowlist.php:361
227
  msgid "Some errors occurred."
228
  msgstr "Возникли некоторые ошибки."
229
 
230
- #: includes/allowlist.php:324
231
  msgid "IP is already in the allow list."
232
  msgstr "IP адрес уже в белом списке."
233
 
234
- #: includes/allowlist.php:327
235
  msgid "Invalid IP. See allowed formats."
236
  msgstr "Неверный IP. Смотите доступные форматы."
237
 
238
- #: includes/allowlist.php:357
239
  msgid "One IP was deleted successfully."
240
  msgstr "Один IP адрес был успешно удален."
241
 
242
- #: includes/allowlist.php:364
243
  msgid "You have not entered any IP."
244
  msgstr "Вы не ввели ни одного IP адреса."
245
 
246
- #: includes/allowlist.php:367
247
  msgid "You have not entered any IP in to the search form."
248
  msgstr "Вы не ввели значения в форму поиска."
249
 
250
- #: includes/allowlist.php:369
251
  msgid "Search results for"
252
  msgstr "Результаты поиска для"
253
 
@@ -259,144 +259,153 @@ msgstr "Разное"
259
  msgid "Custom Code"
260
  msgstr "Пользовательский код"
261
 
262
- #: includes/class-gglcptch-settings-tabs.php:25
263
  msgid "License Key"
264
  msgstr "Лицензионный ключ"
265
 
266
- #: includes/class-gglcptch-settings-tabs.php:47
267
  msgid "Site Key"
268
  msgstr "Ключ сайта"
269
 
270
- #: includes/class-gglcptch-settings-tabs.php:52
271
  msgid "Secret Key"
272
  msgstr "Секретный ключ"
273
 
274
- #: includes/class-gglcptch-settings-tabs.php:59
275
- #: includes/class-gglcptch-settings-tabs.php:60
276
  msgid "Version"
277
  msgstr "Версия"
278
 
279
- #: includes/class-gglcptch-settings-tabs.php:61
280
  msgid "Invisible"
281
  msgstr "Невидимая"
282
 
283
- #: includes/class-gglcptch-settings-tabs.php:84
284
  msgid "Enter site key"
285
  msgstr "Введите ключ сайта"
286
 
287
- #: includes/class-gglcptch-settings-tabs.php:85
288
- #: includes/class-gglcptch-settings-tabs.php:92
289
  msgid "WARNING: The captcha will not be displayed until you fill key fields."
290
  msgstr ""
291
  "ПРЕДУПРЕЖДЕНИЕ: Google Captcha не будет отображаться пока вы не заполните "
292
  "поля с ключами."
293
 
294
- #: includes/class-gglcptch-settings-tabs.php:91
295
  msgid "Enter secret key"
296
  msgstr "Введите секретный ключ"
297
 
298
- #: includes/class-gglcptch-settings-tabs.php:128
299
  msgid "Settings saved."
300
  msgstr "Настройки сохранены."
301
 
302
- #: includes/class-gglcptch-settings-tabs.php:143
303
- msgid "Authentication"
304
- msgstr "Идентификация"
 
 
 
 
305
 
306
- #: includes/class-gglcptch-settings-tabs.php:144
 
307
  msgid ""
308
  "Register your domain name with Google reCaptcha service and add the keys to "
309
- "the fields below."
310
  msgstr ""
311
  "Зарегистрируйте свой сайт с помощью Google, чтобы получить требуемые API "
312
- "ключи и введите их ниже."
313
 
314
- #: includes/class-gglcptch-settings-tabs.php:144
315
- msgid "Get the API Keys"
316
- msgstr "Получить API ключи"
 
 
 
 
 
317
 
318
- #: includes/class-gglcptch-settings-tabs.php:161
319
  msgid "Test reCaptcha"
320
  msgstr "Тестировать reCaptcha"
321
 
322
- #: includes/class-gglcptch-settings-tabs.php:167
323
- msgid "General"
324
- msgstr "Общее"
325
-
326
- #: includes/class-gglcptch-settings-tabs.php:170
327
- msgid "reCaptcha Version"
328
- msgstr "Версия reCaptcha"
329
-
330
- #: includes/class-gglcptch-settings-tabs.php:183
331
  msgid "Enable reCaptcha for"
332
  msgstr "Включить reCaptcha для"
333
 
334
- #: includes/class-gglcptch-settings-tabs.php:229
335
- #: includes/class-gglcptch-settings-tabs.php:291 includes/pro_banners.php:20
 
336
  msgid "Close"
337
  msgstr "Закрыть"
338
 
339
- #: includes/class-gglcptch-settings-tabs.php:238
340
- msgid "Hide reCaptcha for"
341
- msgstr "Спрятать reCaptcha для"
342
 
343
- #: includes/class-gglcptch-settings-tabs.php:257
344
- msgid "Hide reCaptcha Badge"
345
- msgstr "Спрятать значок reCaptcha"
346
-
347
- #: includes/class-gglcptch-settings-tabs.php:262
348
- msgid "Enable to hide reCaptcha Badge for Version 3 and Invisble reCaptcha."
349
  msgstr ""
350
- "Включите, чтобы скрыть значок reCaptcha для версии 3 и Invisible reCaptcha."
351
 
352
- #: includes/class-gglcptch-settings-tabs.php:268
 
 
 
 
353
  msgid "Theme"
354
  msgstr "Тема"
355
 
356
- #: includes/class-gglcptch-settings-tabs.php:272
357
  msgid "Light"
358
  msgstr "Светлая"
359
 
360
- #: includes/class-gglcptch-settings-tabs.php:273
361
  msgid "Dark"
362
  msgstr "Тёмная"
363
 
364
- #: includes/class-gglcptch-settings-tabs.php:279
 
 
 
 
 
 
 
 
 
 
 
 
 
365
  msgid "Score"
366
  msgstr "Количество очков"
367
 
368
- #: includes/class-gglcptch-settings-tabs.php:284
369
  #, php-format
370
  msgid "Set the minimum verification score from %s to %s (default is %s)."
371
  msgstr ""
372
  "Укажите пороговое значение, при котором проверка будет пройдена от %s до %s "
373
  "(по умолчанию %s)."
374
 
375
- #: includes/class-gglcptch-settings-tabs.php:301
376
- msgid "Use reCaptcha Globally"
377
- msgstr "Использовать reCaptcha глобально"
378
-
379
- #: includes/class-gglcptch-settings-tabs.php:306
380
- msgid ""
381
- "Enable to use reCaptcha when Google is not accessible or blocked in your "
382
- "country."
383
- msgstr ""
384
- "Включите использование reCaptcha, когда Google недоступен или заблокирован в "
385
- "вашей стране."
386
 
387
- #: includes/class-gglcptch-settings-tabs.php:311
388
  msgid "Allow List Notification"
389
  msgstr "Уведомление о нахождении в белом списке"
390
 
391
- #: includes/class-gglcptch-settings-tabs.php:314
392
  msgid "This message will be displayed instead of the reCaptcha."
393
  msgstr "Это сообщение будет отображено вместо поля reCaptcha."
394
 
395
- #: includes/class-gglcptch-settings-tabs.php:318
396
  msgid "Advanced Protection"
397
  msgstr "Усиленная защита"
398
 
399
- #: includes/class-gglcptch-settings-tabs.php:322
400
  msgid ""
401
  "Enable to keep submit button disabled until reCaptcha is loaded (do not use "
402
  "this option if you see \"Failed to load Google reCaptcha\" message)."
@@ -405,11 +414,11 @@ msgstr ""
405
  "не будет загружена reCaptcha (Не используйте эту опцию, если вы видите "
406
  "сообщение \"Не удалось загрузить Google reCaptcha\")."
407
 
408
- #: includes/class-gglcptch-settings-tabs.php:328
409
  msgid "Disabled Submit Button"
410
  msgstr "Отключенная кнопка подтверждения"
411
 
412
- #: includes/class-gglcptch-settings-tabs.php:333
413
  msgid ""
414
  "Enable to keep submit button disabled until user passes the reCaptcha test "
415
  "(for Version 2)."
@@ -417,7 +426,7 @@ msgstr ""
417
  "Включите, чтобы кнопка отправки оставалась отключенной до тех пор, пока "
418
  "пользователь не пройдет тест reCaptcha (для версии 2)."
419
 
420
- #: includes/class-gglcptch-settings-tabs.php:347
421
  msgid ""
422
  "reCaptcha version was changed. Please submit \"Test reCaptcha\" and "
423
  "regenerate Site and Secret keys if necessary."
@@ -425,11 +434,11 @@ msgstr ""
425
  "Версия reCaptcha была изменена. Пожалуйста, нажмите \"Тестирование reCaptcha"
426
  "\" и при необходимости обновите секретный ключ и ключ сайта."
427
 
428
- #: includes/class-gglcptch-settings-tabs.php:360
429
  msgid "reCaptcha Shortcode"
430
  msgstr "Шорткод reCaptcha"
431
 
432
- #: includes/class-gglcptch-settings-tabs.php:363
433
  msgid "Add reCaptcha to your posts or pages using the following shortcode:"
434
  msgstr ""
435
  "Добавьте reCaptcha в свои записи или страницы, используя следующий шорткод:"
@@ -470,19 +479,19 @@ msgstr "Пользовательские формы"
470
  msgid "reCaptcha Plugin"
471
  msgstr "Плагин reCaptcha"
472
 
473
- #: includes/forms.php:116 includes/forms.php:140
474
  msgid "Activate"
475
  msgstr "Активировать"
476
 
477
- #: includes/forms.php:118 includes/forms.php:143 includes/forms.php:147
478
  msgid "Install Now"
479
  msgstr "Установить сейчас"
480
 
481
- #: includes/forms.php:265
482
  msgid "Authentication failed."
483
  msgstr "Ошибка аутентификации."
484
 
485
- #: includes/forms.php:359
486
  msgid "Click the BACK button on your browser and try again."
487
  msgstr "Нажмите кнопку НАЗАД в вашем браузере и попытайтесь снова."
488
 
@@ -586,27 +595,15 @@ msgstr "Форма логина плагина Divi"
586
  msgid "Gravity Forms"
587
  msgstr "Gravity Forms"
588
 
589
- #: includes/pro_banners.php:169
590
- msgid "Size"
591
- msgstr "Размер"
592
-
593
- #: includes/pro_banners.php:173
594
- msgid "Normal"
595
- msgstr "Нормальный"
596
-
597
- #: includes/pro_banners.php:174
598
- msgid "Compact"
599
- msgstr "Компактный"
600
-
601
- #: includes/pro_banners.php:179
602
  msgid "Language"
603
  msgstr "Язык"
604
 
605
- #: includes/pro_banners.php:187
606
  msgid "Multilanguage"
607
  msgstr "Multilanguage"
608
 
609
- #: includes/pro_banners.php:190
610
  msgid ""
611
  "Enable to switch language automatically on multilingual website using the "
612
  "Multilanguage plugin."
@@ -614,6 +611,33 @@ msgstr ""
614
  "Включить, чтобы переключить язык автоматически на многоязычном сайте, "
615
  "используя плагин Multilanguage."
616
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
617
  #~ msgid "Whitelist"
618
  #~ msgstr "Белый список"
619
 
@@ -758,9 +782,6 @@ msgstr ""
758
  #~ msgid "This option is available only for network or for main blog"
759
  #~ msgstr "Эта опция доступна только для сети или для основного блога"
760
 
761
- #~ msgid "Plugins"
762
- #~ msgstr "Плагинов"
763
-
764
  #~ msgid "You should %s to use this functionality"
765
  #~ msgstr "Чтобы использовать этот функционал %s"
766
 
2
  msgstr ""
3
  "Project-Id-Version: reCaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-04-06 09:43+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPathExcluded-0: bws_menu\n"
21
 
22
+ #: google-captcha.php:39 google-captcha.php:49 google-captcha.php:518
23
+ #: includes/class-gglcptch-settings-tabs.php:146
24
  msgid "reCaptcha Settings"
25
  msgstr "Настройки reCaptcha"
26
 
27
+ #: google-captcha.php:50 google-captcha.php:1104 google-captcha.php:1117
28
  #: includes/class-gglcptch-settings-tabs.php:22
29
  msgid "Settings"
30
  msgstr "Настройки"
41
  msgid "Upgrade to Pro"
42
  msgstr "Обновить до Pro"
43
 
44
+ #: google-captcha.php:271
45
  msgid "Please wait until Google reCAPTCHA is loaded."
46
  msgstr "Пожалуйста, дождитесь окончания загрузки Google reCAPTCHA."
47
 
48
+ #: google-captcha.php:272
49
  msgid ""
50
  "Failed to load Google reCAPTCHA. Please check your internet connection and "
51
  "reload this page."
53
  "Не удалось загрузить Google reCAPTCHA. Пожалуйста, проверьте ваше "
54
  "подключение к сети Интернет и перезагрузите эту страницу."
55
 
56
+ #: google-captcha.php:286
57
  msgid "Warning"
58
  msgstr "Внимание"
59
 
60
+ #: google-captcha.php:412
61
  msgid "You are in the allow list"
62
  msgstr "Вы в белом списке"
63
 
64
+ #: google-captcha.php:519
65
  msgid "Please enable JavaScript in your browser."
66
  msgstr "Пожалуйста, включите поддержку JavaScript в вашем браузере."
67
 
68
+ #: google-captcha.php:602
69
  msgid "This site is protected by reCAPTCHA and the Google "
70
  msgstr "Этот сайт защищен reCAPTCHA и применяются "
71
 
72
+ #: google-captcha.php:603
73
  msgid "Privacy Policy"
74
  msgstr "Политика конфиденциальности"
75
 
76
+ #: google-captcha.php:604
77
  msgid " and "
78
  msgstr " и "
79
 
80
+ #: google-captcha.php:605
81
  msgid "Terms of Service"
82
  msgstr "Условия обслуживания"
83
 
84
+ #: google-captcha.php:606
85
  msgid " apply."
86
  msgstr " Google."
87
 
88
+ #: google-captcha.php:613
89
  msgid "To use reCaptcha you must get the keys from"
90
  msgstr "Чтобы использовать reCaptcha, вам необходимо получить ключи"
91
 
92
+ #: google-captcha.php:614
93
  msgid "here"
94
  msgstr "здесь"
95
 
96
+ #: google-captcha.php:615
97
  msgid "and enter them on the"
98
  msgstr "и вставить их на"
99
 
100
+ #: google-captcha.php:617
101
  msgid "plugin setting page"
102
  msgstr "странице настроек плагина"
103
 
104
+ #: google-captcha.php:882 includes/forms.php:358
105
  msgid "Error"
106
  msgstr "Ошибка"
107
 
108
+ #: google-captcha.php:1004
109
  msgid "User response is missing."
110
  msgstr "Ответ пользователя отсутствует."
111
 
112
+ #: google-captcha.php:1006
113
  msgid "Secret Key is missing."
114
  msgstr "Секретный ключ отсутствует."
115
 
116
+ #: google-captcha.php:1009
117
  msgid "Secret Key is invalid."
118
  msgstr "Некорректный секретный ключ."
119
 
120
+ #: google-captcha.php:1010
121
  msgid "Check your domain configurations"
122
  msgstr "Проверьте настройки вашего домена"
123
 
124
+ #: google-captcha.php:1011
125
  msgid "and enter it again"
126
  msgstr "и введите его снова"
127
 
128
+ #: google-captcha.php:1013
129
  msgid "User response is invalid"
130
  msgstr "Некорректный ответ пользователя"
131
 
132
+ #: google-captcha.php:1014
133
  msgid "You have entered an incorrect reCAPTCHA value."
134
  msgstr "Ошибка: Вы ввели неверное значение reCAPTCHA."
135
 
136
+ #: google-captcha.php:1015
137
  msgid ""
138
  "More than one reCAPTCHA has been found in the current form. Please remove "
139
  "all unnecessary reCAPTCHA fields to make it work properly."
141
  "В текущей форме найдено более одного блока reCAPTCHA. Пожалуйста, удалите "
142
  "все лишние блоки reCAPTCHA для дальнейшей корректной работы."
143
 
144
+ #: google-captcha.php:1017
145
  msgid "reCaptcha v3 test failed"
146
  msgstr "Тест reCaptcha v3 не пройден"
147
 
148
+ #: google-captcha.php:1055
149
  msgid "Please submit \"Test verification\""
150
  msgstr "Пожалуйста, нажмите кнопку \"Тестирование проверки\"."
151
 
152
+ #: google-captcha.php:1057
153
  msgid "Please complete the captcha and submit \"Test verification\""
154
  msgstr ""
155
  "Пожалуйста, заполните капчу и нажмите кнопку \"Тестирование проверки\"."
156
 
157
+ #: google-captcha.php:1063
158
  msgid "Test verification"
159
  msgstr "Тестирование проверки"
160
 
161
+ #: google-captcha.php:1084
162
  msgid "The verification is successfully completed."
163
  msgstr "Тестирование проверки успешно завершено."
164
 
165
+ #: google-captcha.php:1119
166
  msgid "FAQ"
167
  msgstr "FAQ"
168
 
169
+ #: google-captcha.php:1120
170
  msgid "Support"
171
  msgstr "Поддержка"
172
 
190
  msgid "Allowed diapason"
191
  msgstr "Доступные диапазоны"
192
 
193
+ #: includes/allowlist.php:101
194
  msgid "Add IP to Allow List"
195
  msgstr "Добавить IP в белый список"
196
 
197
+ #: includes/allowlist.php:106
198
  msgid "Search IP"
199
  msgstr "Искать IP"
200
 
201
+ #: includes/allowlist.php:160
202
  msgid "Nothing found"
203
  msgstr "Ничего не найдено"
204
 
205
+ #: includes/allowlist.php:160
206
  msgid "No IP in the Allow List"
207
  msgstr "Список IP пуст"
208
 
209
+ #: includes/allowlist.php:167
210
  msgid "IP Address"
211
  msgstr "IP Адресс"
212
 
213
+ #: includes/allowlist.php:168
214
  msgid "Date Added"
215
  msgstr "Дата добавления"
216
 
217
+ #: includes/allowlist.php:222 includes/allowlist.php:232
218
  msgid "Delete"
219
  msgstr "Удалить"
220
 
221
+ #: includes/allowlist.php:320
222
  msgid "IP added to the allow list successfully."
223
  msgstr "IP адрес успешно добавлен в белый список."
224
 
225
+ #: includes/allowlist.php:322 includes/allowlist.php:348
226
+ #: includes/allowlist.php:362
227
  msgid "Some errors occurred."
228
  msgstr "Возникли некоторые ошибки."
229
 
230
+ #: includes/allowlist.php:325
231
  msgid "IP is already in the allow list."
232
  msgstr "IP адрес уже в белом списке."
233
 
234
+ #: includes/allowlist.php:328
235
  msgid "Invalid IP. See allowed formats."
236
  msgstr "Неверный IP. Смотите доступные форматы."
237
 
238
+ #: includes/allowlist.php:358
239
  msgid "One IP was deleted successfully."
240
  msgstr "Один IP адрес был успешно удален."
241
 
242
+ #: includes/allowlist.php:365
243
  msgid "You have not entered any IP."
244
  msgstr "Вы не ввели ни одного IP адреса."
245
 
246
+ #: includes/allowlist.php:368
247
  msgid "You have not entered any IP in to the search form."
248
  msgstr "Вы не ввели значения в форму поиска."
249
 
250
+ #: includes/allowlist.php:370
251
  msgid "Search results for"
252
  msgstr "Результаты поиска для"
253
 
259
  msgid "Custom Code"
260
  msgstr "Пользовательский код"
261
 
262
+ #: includes/class-gglcptch-settings-tabs.php:26
263
  msgid "License Key"
264
  msgstr "Лицензионный ключ"
265
 
266
+ #: includes/class-gglcptch-settings-tabs.php:51
267
  msgid "Site Key"
268
  msgstr "Ключ сайта"
269
 
270
+ #: includes/class-gglcptch-settings-tabs.php:56
271
  msgid "Secret Key"
272
  msgstr "Секретный ключ"
273
 
274
+ #: includes/class-gglcptch-settings-tabs.php:63
275
+ #: includes/class-gglcptch-settings-tabs.php:64
276
  msgid "Version"
277
  msgstr "Версия"
278
 
279
+ #: includes/class-gglcptch-settings-tabs.php:65
280
  msgid "Invisible"
281
  msgstr "Невидимая"
282
 
283
+ #: includes/class-gglcptch-settings-tabs.php:89
284
  msgid "Enter site key"
285
  msgstr "Введите ключ сайта"
286
 
287
+ #: includes/class-gglcptch-settings-tabs.php:90
288
+ #: includes/class-gglcptch-settings-tabs.php:97
289
  msgid "WARNING: The captcha will not be displayed until you fill key fields."
290
  msgstr ""
291
  "ПРЕДУПРЕЖДЕНИЕ: Google Captcha не будет отображаться пока вы не заполните "
292
  "поля с ключами."
293
 
294
+ #: includes/class-gglcptch-settings-tabs.php:96
295
  msgid "Enter secret key"
296
  msgstr "Введите секретный ключ"
297
 
298
+ #: includes/class-gglcptch-settings-tabs.php:134
299
  msgid "Settings saved."
300
  msgstr "Настройки сохранены."
301
 
302
+ #: includes/class-gglcptch-settings-tabs.php:149
303
+ msgid "General"
304
+ msgstr "Общее"
305
+
306
+ #: includes/class-gglcptch-settings-tabs.php:152
307
+ msgid "reCaptcha Version"
308
+ msgstr "Версия reCaptcha"
309
 
310
+ #: includes/class-gglcptch-settings-tabs.php:166
311
+ #, php-format
312
  msgid ""
313
  "Register your domain name with Google reCaptcha service and add the keys to "
314
+ "the fields below. %s Get the API Keys. %s"
315
  msgstr ""
316
  "Зарегистрируйте свой сайт с помощью Google, чтобы получить требуемые API "
317
+ "ключи и введите их ниже. %s Получить API ключи. %s"
318
 
319
+ #: includes/class-gglcptch-settings-tabs.php:170
320
+ #, php-format
321
+ msgid ""
322
+ "If you do not want to create API keys use %s Captcha by BestWebSoft %s "
323
+ "plugin."
324
+ msgstr ""
325
+ "Если вы не хотите создавать API ключи используйте %s Captcha by BestWebSoft "
326
+ "%s плагин."
327
 
328
+ #: includes/class-gglcptch-settings-tabs.php:188
329
  msgid "Test reCaptcha"
330
  msgstr "Тестировать reCaptcha"
331
 
332
+ #: includes/class-gglcptch-settings-tabs.php:194
 
 
 
 
 
 
 
 
333
  msgid "Enable reCaptcha for"
334
  msgstr "Включить reCaptcha для"
335
 
336
+ #: includes/class-gglcptch-settings-tabs.php:241
337
+ #: includes/class-gglcptch-settings-tabs.php:269
338
+ #: includes/class-gglcptch-settings-tabs.php:296 includes/pro_banners.php:20
339
  msgid "Close"
340
  msgstr "Закрыть"
341
 
342
+ #: includes/class-gglcptch-settings-tabs.php:252
343
+ msgid "reCaptcha Domain"
344
+ msgstr "Домен reCaptcha"
345
 
346
+ #: includes/class-gglcptch-settings-tabs.php:260
347
+ msgid ""
348
+ "If Google is not accessible or blocked in your country select other one."
 
 
 
349
  msgstr ""
350
+ "Если Google недоступен или заблокирован в вашей стране выберите другой пункт."
351
 
352
+ #: includes/class-gglcptch-settings-tabs.php:278
353
+ msgid "Appearence"
354
+ msgstr "Внешний Вид"
355
+
356
+ #: includes/class-gglcptch-settings-tabs.php:282
357
  msgid "Theme"
358
  msgstr "Тема"
359
 
360
+ #: includes/class-gglcptch-settings-tabs.php:286
361
  msgid "Light"
362
  msgstr "Светлая"
363
 
364
+ #: includes/class-gglcptch-settings-tabs.php:287
365
  msgid "Dark"
366
  msgstr "Тёмная"
367
 
368
+ #: includes/class-gglcptch-settings-tabs.php:307
369
+ msgid "Hide reCaptcha Badge"
370
+ msgstr "Спрятать значок reCaptcha"
371
+
372
+ #: includes/class-gglcptch-settings-tabs.php:312
373
+ msgid "Enable to hide reCaptcha Badge for Version 3 and Invisible reCaptcha."
374
+ msgstr ""
375
+ "Включите, чтобы скрыть значок reCaptcha для версии 3 и Invisible reCaptcha."
376
+
377
+ #: includes/class-gglcptch-settings-tabs.php:318
378
+ msgid "Additional Protective Measures"
379
+ msgstr "Дополнительные Меры Защиты"
380
+
381
+ #: includes/class-gglcptch-settings-tabs.php:322
382
  msgid "Score"
383
  msgstr "Количество очков"
384
 
385
+ #: includes/class-gglcptch-settings-tabs.php:327
386
  #, php-format
387
  msgid "Set the minimum verification score from %s to %s (default is %s)."
388
  msgstr ""
389
  "Укажите пороговое значение, при котором проверка будет пройдена от %s до %s "
390
  "(по умолчанию %s)."
391
 
392
+ #: includes/class-gglcptch-settings-tabs.php:331
393
+ msgid "Hide reCaptcha for"
394
+ msgstr "Спрятать reCaptcha для"
 
 
 
 
 
 
 
 
395
 
396
+ #: includes/class-gglcptch-settings-tabs.php:349
397
  msgid "Allow List Notification"
398
  msgstr "Уведомление о нахождении в белом списке"
399
 
400
+ #: includes/class-gglcptch-settings-tabs.php:352
401
  msgid "This message will be displayed instead of the reCaptcha."
402
  msgstr "Это сообщение будет отображено вместо поля reCaptcha."
403
 
404
+ #: includes/class-gglcptch-settings-tabs.php:356
405
  msgid "Advanced Protection"
406
  msgstr "Усиленная защита"
407
 
408
+ #: includes/class-gglcptch-settings-tabs.php:360
409
  msgid ""
410
  "Enable to keep submit button disabled until reCaptcha is loaded (do not use "
411
  "this option if you see \"Failed to load Google reCaptcha\" message)."
414
  "не будет загружена reCaptcha (Не используйте эту опцию, если вы видите "
415
  "сообщение \"Не удалось загрузить Google reCaptcha\")."
416
 
417
+ #: includes/class-gglcptch-settings-tabs.php:366
418
  msgid "Disabled Submit Button"
419
  msgstr "Отключенная кнопка подтверждения"
420
 
421
+ #: includes/class-gglcptch-settings-tabs.php:371
422
  msgid ""
423
  "Enable to keep submit button disabled until user passes the reCaptcha test "
424
  "(for Version 2)."
426
  "Включите, чтобы кнопка отправки оставалась отключенной до тех пор, пока "
427
  "пользователь не пройдет тест reCaptcha (для версии 2)."
428
 
429
+ #: includes/class-gglcptch-settings-tabs.php:385
430
  msgid ""
431
  "reCaptcha version was changed. Please submit \"Test reCaptcha\" and "
432
  "regenerate Site and Secret keys if necessary."
434
  "Версия reCaptcha была изменена. Пожалуйста, нажмите \"Тестирование reCaptcha"
435
  "\" и при необходимости обновите секретный ключ и ключ сайта."
436
 
437
+ #: includes/class-gglcptch-settings-tabs.php:402
438
  msgid "reCaptcha Shortcode"
439
  msgstr "Шорткод reCaptcha"
440
 
441
+ #: includes/class-gglcptch-settings-tabs.php:405
442
  msgid "Add reCaptcha to your posts or pages using the following shortcode:"
443
  msgstr ""
444
  "Добавьте reCaptcha в свои записи или страницы, используя следующий шорткод:"
479
  msgid "reCaptcha Plugin"
480
  msgstr "Плагин reCaptcha"
481
 
482
+ #: includes/forms.php:117 includes/forms.php:141
483
  msgid "Activate"
484
  msgstr "Активировать"
485
 
486
+ #: includes/forms.php:119 includes/forms.php:144 includes/forms.php:148
487
  msgid "Install Now"
488
  msgstr "Установить сейчас"
489
 
490
+ #: includes/forms.php:266
491
  msgid "Authentication failed."
492
  msgstr "Ошибка аутентификации."
493
 
494
+ #: includes/forms.php:360
495
  msgid "Click the BACK button on your browser and try again."
496
  msgstr "Нажмите кнопку НАЗАД в вашем браузере и попытайтесь снова."
497
 
595
  msgid "Gravity Forms"
596
  msgstr "Gravity Forms"
597
 
598
+ #: includes/pro_banners.php:168
 
 
 
 
 
 
 
 
 
 
 
 
599
  msgid "Language"
600
  msgstr "Язык"
601
 
602
+ #: includes/pro_banners.php:176
603
  msgid "Multilanguage"
604
  msgstr "Multilanguage"
605
 
606
+ #: includes/pro_banners.php:179
607
  msgid ""
608
  "Enable to switch language automatically on multilingual website using the "
609
  "Multilanguage plugin."
611
  "Включить, чтобы переключить язык автоматически на многоязычном сайте, "
612
  "используя плагин Multilanguage."
613
 
614
+ #: includes/pro_banners.php:191
615
+ msgid "Size"
616
+ msgstr "Размер"
617
+
618
+ #: includes/pro_banners.php:195
619
+ msgid "Normal"
620
+ msgstr "Нормальный"
621
+
622
+ #: includes/pro_banners.php:196
623
+ msgid "Compact"
624
+ msgstr "Компактный"
625
+
626
+ #~ msgid "Get the API Keys."
627
+ #~ msgstr "Получить API ключи."
628
+
629
+ #~ msgid "Captcha by BestWebSoft"
630
+ #~ msgstr "Captcha by BestWebSoft"
631
+
632
+ #~ msgid "plugin."
633
+ #~ msgstr "плагин."
634
+
635
+ #~ msgid "Authentication"
636
+ #~ msgstr "Идентификация"
637
+
638
+ #~ msgid "Use reCaptcha Globally"
639
+ #~ msgstr "Использовать reCaptcha глобально"
640
+
641
  #~ msgid "Whitelist"
642
  #~ msgstr "Белый список"
643
 
782
  #~ msgid "This option is available only for network or for main blog"
783
  #~ msgstr "Эта опция доступна только для сети или для основного блога"
784
 
 
 
 
785
  #~ msgid "You should %s to use this functionality"
786
  #~ msgstr "Чтобы использовать этот функционал %s"
787
 
languages/google-captcha-uk.mo CHANGED
Binary file
languages/google-captcha-uk.po CHANGED
@@ -2,7 +2,7 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: reCaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2021-01-15 15:50+0200\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
@@ -19,12 +19,12 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPathExcluded-0: bws_menu\n"
21
 
22
- #: google-captcha.php:39 google-captcha.php:49 google-captcha.php:505
23
- #: includes/class-gglcptch-settings-tabs.php:140
24
  msgid "reCaptcha Settings"
25
  msgstr "Налаштування reCaptcha"
26
 
27
- #: google-captcha.php:50 google-captcha.php:1090 google-captcha.php:1103
28
  #: includes/class-gglcptch-settings-tabs.php:22
29
  msgid "Settings"
30
  msgstr "Налаштування"
@@ -41,11 +41,11 @@ msgstr "Доступні діапазони"
41
  msgid "Upgrade to Pro"
42
  msgstr "Оновити до Pro"
43
 
44
- #: google-captcha.php:268
45
  msgid "Please wait until Google reCAPTCHA is loaded."
46
  msgstr "Будь ласка, зачекайте, поки буде завантаженo Google reCAPTCHA."
47
 
48
- #: google-captcha.php:269
49
  msgid ""
50
  "Failed to load Google reCAPTCHA. Please check your internet connection and "
51
  "reload this page."
@@ -53,87 +53,87 @@ msgstr ""
53
  "Не вдалося завантажити Google reCAPTCHA. Будь ласка, перевірте підключення "
54
  "до Інтернету та оновіть цю сторінку."
55
 
56
- #: google-captcha.php:281
57
  msgid "Warning"
58
  msgstr "Увага"
59
 
60
- #: google-captcha.php:407
61
  msgid "You are in the allow list"
62
  msgstr "Ви знаходитесь в білому списку"
63
 
64
- #: google-captcha.php:506
65
  msgid "Please enable JavaScript in your browser."
66
  msgstr "Будь ласка, увімкніть JavaScript у вашому браузері."
67
 
68
- #: google-captcha.php:588
69
  msgid "This site is protected by reCAPTCHA and the Google "
70
  msgstr "Цей сайт захищений reCAPTCHA і застосовуються "
71
 
72
- #: google-captcha.php:589
73
  msgid "Privacy Policy"
74
  msgstr "Політика конфіденційності"
75
 
76
- #: google-captcha.php:590
77
  msgid " and "
78
  msgstr " та "
79
 
80
- #: google-captcha.php:591
81
  msgid "Terms of Service"
82
  msgstr "Умови обслуговування"
83
 
84
- #: google-captcha.php:592
85
  msgid " apply."
86
  msgstr " Google."
87
 
88
- #: google-captcha.php:599
89
  msgid "To use reCaptcha you must get the keys from"
90
  msgstr "Щоб використовувати reCaptcha, вам необхідно отримати ключі з"
91
 
92
- #: google-captcha.php:600
93
  msgid "here"
94
  msgstr "тут"
95
 
96
- #: google-captcha.php:601
97
  msgid "and enter them on the"
98
  msgstr "і вставте їх у"
99
 
100
- #: google-captcha.php:603
101
  msgid "plugin setting page"
102
  msgstr "сторінку налаштувань плагіну"
103
 
104
- #: google-captcha.php:868 includes/forms.php:357
105
  msgid "Error"
106
  msgstr "Помилка"
107
 
108
- #: google-captcha.php:990
109
  msgid "User response is missing."
110
  msgstr "Відповідь користувача відсутня."
111
 
112
- #: google-captcha.php:992
113
  msgid "Secret Key is missing."
114
  msgstr "Секретний ключ відсутній."
115
 
116
- #: google-captcha.php:995
117
  msgid "Secret Key is invalid."
118
  msgstr "Секретний ключ некоректний."
119
 
120
- #: google-captcha.php:996
121
  msgid "Check your domain configurations"
122
  msgstr "Перевірте конфігурацію вашого домену"
123
 
124
- #: google-captcha.php:997
125
  msgid "and enter it again"
126
  msgstr "і введіть його знову"
127
 
128
- #: google-captcha.php:999
129
  msgid "User response is invalid"
130
  msgstr "Некоректна відповідь користувача"
131
 
132
- #: google-captcha.php:1000
133
  msgid "You have entered an incorrect reCAPTCHA value."
134
  msgstr "Ви ввели невірне значення reCAPTCHA."
135
 
136
- #: google-captcha.php:1001
137
  msgid ""
138
  "More than one reCAPTCHA has been found in the current form. Please remove "
139
  "all unnecessary reCAPTCHA fields to make it work properly."
@@ -141,32 +141,32 @@ msgstr ""
141
  "В поточній формі знайдено більш ніж один блок reCAPTCHA. Будь-ласка видаліть "
142
  "усі зайві блоки reCAPTCHA для коректної подальшої роботи."
143
 
144
- #: google-captcha.php:1003
145
  msgid "reCaptcha v3 test failed"
146
  msgstr "Тест reCaptcha v3 не пройдений"
147
 
148
- #: google-captcha.php:1041
149
  msgid "Please submit \"Test verification\""
150
  msgstr "Будь ласка, натисніть кнопку \"Тестування перевірки\""
151
 
152
- #: google-captcha.php:1043
153
  msgid "Please complete the captcha and submit \"Test verification\""
154
  msgstr ""
155
  "Будь ласка, заповніть капчу і натисніть кнопку \"Тестування перевірки\""
156
 
157
- #: google-captcha.php:1049
158
  msgid "Test verification"
159
  msgstr "Тестування перевірки"
160
 
161
- #: google-captcha.php:1070
162
  msgid "The verification is successfully completed."
163
  msgstr "Перевірка завершена успішно."
164
 
165
- #: google-captcha.php:1105
166
  msgid "FAQ"
167
  msgstr "FAQ"
168
 
169
- #: google-captcha.php:1106
170
  msgid "Support"
171
  msgstr "Техпідтримка"
172
 
@@ -190,64 +190,64 @@ msgstr "Доступні формати"
190
  msgid "Allowed diapason"
191
  msgstr "Доступні діапазони"
192
 
193
- #: includes/allowlist.php:100
194
  msgid "Add IP to Allow List"
195
  msgstr "Додати IP до білого списку"
196
 
197
- #: includes/allowlist.php:105
198
  msgid "Search IP"
199
  msgstr "Шукати IP"
200
 
201
- #: includes/allowlist.php:159
202
  msgid "Nothing found"
203
  msgstr "Нічого не знайдено"
204
 
205
- #: includes/allowlist.php:159
206
  msgid "No IP in the Allow List"
207
  msgstr "Список IP порожній"
208
 
209
- #: includes/allowlist.php:166
210
  msgid "IP Address"
211
  msgstr "IP адреса"
212
 
213
- #: includes/allowlist.php:167
214
  msgid "Date Added"
215
  msgstr "Дата додавання"
216
 
217
- #: includes/allowlist.php:221 includes/allowlist.php:231
218
  msgid "Delete"
219
  msgstr "Видалити"
220
 
221
- #: includes/allowlist.php:319
222
  msgid "IP added to the allow list successfully."
223
  msgstr "IP успішно додано до білого списку."
224
 
225
- #: includes/allowlist.php:321 includes/allowlist.php:347
226
- #: includes/allowlist.php:361
227
  msgid "Some errors occurred."
228
  msgstr "Відбулися деякі помилки."
229
 
230
- #: includes/allowlist.php:324
231
  msgid "IP is already in the allow list."
232
  msgstr "IP вже знаходиться в білому списку."
233
 
234
- #: includes/allowlist.php:327
235
  msgid "Invalid IP. See allowed formats."
236
  msgstr "Невірний IP. Дивіться доступні формати."
237
 
238
- #: includes/allowlist.php:357
239
  msgid "One IP was deleted successfully."
240
  msgstr "Одну IP було видалено успішно."
241
 
242
- #: includes/allowlist.php:364
243
  msgid "You have not entered any IP."
244
  msgstr "Ви не ввели жодного IP."
245
 
246
- #: includes/allowlist.php:367
247
  msgid "You have not entered any IP in to the search form."
248
  msgstr "Ви не ввели ніякого значення у форму пошуку."
249
 
250
- #: includes/allowlist.php:369
251
  msgid "Search results for"
252
  msgstr "Результати пошуку для"
253
 
@@ -259,143 +259,153 @@ msgstr "Різне"
259
  msgid "Custom Code"
260
  msgstr "Користувацький код"
261
 
262
- #: includes/class-gglcptch-settings-tabs.php:25
263
  msgid "License Key"
264
  msgstr "Ліцензійний ключ"
265
 
266
- #: includes/class-gglcptch-settings-tabs.php:47
267
  msgid "Site Key"
268
  msgstr "Ключ сайту"
269
 
270
- #: includes/class-gglcptch-settings-tabs.php:52
271
  msgid "Secret Key"
272
  msgstr "Секретний ключ"
273
 
274
- #: includes/class-gglcptch-settings-tabs.php:59
275
- #: includes/class-gglcptch-settings-tabs.php:60
276
  msgid "Version"
277
  msgstr "Версія"
278
 
279
- #: includes/class-gglcptch-settings-tabs.php:61
280
  msgid "Invisible"
281
  msgstr "Невидима"
282
 
283
- #: includes/class-gglcptch-settings-tabs.php:84
284
  msgid "Enter site key"
285
  msgstr "Введіть ключ сайту"
286
 
287
- #: includes/class-gglcptch-settings-tabs.php:85
288
- #: includes/class-gglcptch-settings-tabs.php:92
289
  msgid "WARNING: The captcha will not be displayed until you fill key fields."
290
  msgstr ""
291
  "УВАГА: Капча не буде відображатись, поки ви не заповните поля з ключами."
292
 
293
- #: includes/class-gglcptch-settings-tabs.php:91
294
  msgid "Enter secret key"
295
  msgstr "Введіть секретний ключ"
296
 
297
- #: includes/class-gglcptch-settings-tabs.php:128
298
  msgid "Settings saved."
299
  msgstr "Налаштування збережені."
300
 
301
- #: includes/class-gglcptch-settings-tabs.php:143
302
- msgid "Authentication"
303
- msgstr "Ідентифікація"
 
 
 
 
304
 
305
- #: includes/class-gglcptch-settings-tabs.php:144
 
306
  msgid ""
307
  "Register your domain name with Google reCaptcha service and add the keys to "
308
- "the fields below."
309
  msgstr ""
310
  "Зареєструйте свій веб-сайт за допомогою Google reCaptcha, щоб отримати "
311
- "необхідні API ключі та введіть їх нижче."
312
 
313
- #: includes/class-gglcptch-settings-tabs.php:144
314
- msgid "Get the API Keys"
315
- msgstr "Отримати API ключі"
 
 
 
 
 
316
 
317
- #: includes/class-gglcptch-settings-tabs.php:161
318
  msgid "Test reCaptcha"
319
  msgstr "Тестування reCaptcha"
320
 
321
- #: includes/class-gglcptch-settings-tabs.php:167
322
- msgid "General"
323
- msgstr "Загальне"
324
-
325
- #: includes/class-gglcptch-settings-tabs.php:170
326
- msgid "reCaptcha Version"
327
- msgstr "Версія reCaptcha"
328
-
329
- #: includes/class-gglcptch-settings-tabs.php:183
330
  msgid "Enable reCaptcha for"
331
  msgstr "Включити reCaptcha для"
332
 
333
- #: includes/class-gglcptch-settings-tabs.php:229
334
- #: includes/class-gglcptch-settings-tabs.php:291 includes/pro_banners.php:20
 
335
  msgid "Close"
336
  msgstr "Закрити"
337
 
338
- #: includes/class-gglcptch-settings-tabs.php:238
339
- msgid "Hide reCaptcha for"
340
- msgstr "Сховати ReCaptcha для"
341
 
342
- #: includes/class-gglcptch-settings-tabs.php:257
343
- msgid "Hide reCaptcha Badge"
344
- msgstr "Сховати знак ReCaptcha"
345
-
346
- #: includes/class-gglcptch-settings-tabs.php:262
347
- msgid "Enable to hide reCaptcha Badge for Version 3 and Invisble reCaptcha."
348
  msgstr ""
349
- "Увімкніть, щоб приховати значок reCaptcha для версії 3 і Invisible reCaptcha."
 
350
 
351
- #: includes/class-gglcptch-settings-tabs.php:268
 
 
 
 
352
  msgid "Theme"
353
  msgstr "Тема"
354
 
355
- #: includes/class-gglcptch-settings-tabs.php:272
356
  msgid "Light"
357
  msgstr "Свiтла"
358
 
359
- #: includes/class-gglcptch-settings-tabs.php:273
360
  msgid "Dark"
361
  msgstr "Темна"
362
 
363
- #: includes/class-gglcptch-settings-tabs.php:279
 
 
 
 
 
 
 
 
 
 
 
 
 
364
  msgid "Score"
365
  msgstr "Кількість очок"
366
 
367
- #: includes/class-gglcptch-settings-tabs.php:284
368
  #, php-format
369
  msgid "Set the minimum verification score from %s to %s (default is %s)."
370
  msgstr ""
371
  "Вкажіть граничне значення, при якому перевірка буде пройдена від %s до %s "
372
  "(за замовчуванням %s)."
373
 
374
- #: includes/class-gglcptch-settings-tabs.php:301
375
- msgid "Use reCaptcha Globally"
376
- msgstr "Використовувати ReCaptcha глобально"
377
-
378
- #: includes/class-gglcptch-settings-tabs.php:306
379
- msgid ""
380
- "Enable to use reCaptcha when Google is not accessible or blocked in your "
381
- "country."
382
- msgstr ""
383
- "Увімкнути використання reCaptcha, коли Google недоступний або заблокований у "
384
- "вашій країні."
385
 
386
- #: includes/class-gglcptch-settings-tabs.php:311
387
  msgid "Allow List Notification"
388
  msgstr "Повідомлення про знаходження у білому списку"
389
 
390
- #: includes/class-gglcptch-settings-tabs.php:314
391
  msgid "This message will be displayed instead of the reCaptcha."
392
  msgstr "Це повідомлення буде відображатися замість reCaptcha."
393
 
394
- #: includes/class-gglcptch-settings-tabs.php:318
395
  msgid "Advanced Protection"
396
  msgstr "Посилений захист"
397
 
398
- #: includes/class-gglcptch-settings-tabs.php:322
399
  msgid ""
400
  "Enable to keep submit button disabled until reCaptcha is loaded (do not use "
401
  "this option if you see \"Failed to load Google reCaptcha\" message)."
@@ -404,11 +414,11 @@ msgstr ""
404
  "не буде завантажена reCaptcha (Не використовуйте цю опцію, якщо ви бачите "
405
  "повідомлення \"Не вдалося завантажити Google reCaptcha\")."
406
 
407
- #: includes/class-gglcptch-settings-tabs.php:328
408
  msgid "Disabled Submit Button"
409
  msgstr "Відключена кнопка підтвердження"
410
 
411
- #: includes/class-gglcptch-settings-tabs.php:333
412
  msgid ""
413
  "Enable to keep submit button disabled until user passes the reCaptcha test "
414
  "(for Version 2)."
@@ -416,7 +426,7 @@ msgstr ""
416
  "Увімкніть, щоб кнопка відправки залишалася відключеною до тих пір, поки "
417
  "користувач не пройде тест reCaptcha (для версії 2)."
418
 
419
- #: includes/class-gglcptch-settings-tabs.php:347
420
  msgid ""
421
  "reCaptcha version was changed. Please submit \"Test reCaptcha\" and "
422
  "regenerate Site and Secret keys if necessary."
@@ -424,11 +434,11 @@ msgstr ""
424
  "Версію reCaptcha було змінено. Будь ласка, натисніть \"Тестування reCaptcha"
425
  "\" та оновіть секретний ключ та ключ сайту, якщо це необхідно."
426
 
427
- #: includes/class-gglcptch-settings-tabs.php:360
428
  msgid "reCaptcha Shortcode"
429
  msgstr "Шорткод reCaptcha"
430
 
431
- #: includes/class-gglcptch-settings-tabs.php:363
432
  msgid "Add reCaptcha to your posts or pages using the following shortcode:"
433
  msgstr ""
434
  "Додайте reCaptcha до своїх постів або сторінок за допомогою такого шорткоду:"
@@ -469,19 +479,19 @@ msgstr "Користувацькі форми"
469
  msgid "reCaptcha Plugin"
470
  msgstr "Плагін reCaptcha"
471
 
472
- #: includes/forms.php:116 includes/forms.php:140
473
  msgid "Activate"
474
  msgstr "Активувати"
475
 
476
- #: includes/forms.php:118 includes/forms.php:143 includes/forms.php:147
477
  msgid "Install Now"
478
  msgstr "Встановити зараз"
479
 
480
- #: includes/forms.php:265
481
  msgid "Authentication failed."
482
  msgstr "Помилка аутентифікації."
483
 
484
- #: includes/forms.php:359
485
  msgid "Click the BACK button on your browser and try again."
486
  msgstr "Натисніть кнопку НАЗАД у браузері та спробуйте ще раз."
487
 
@@ -585,27 +595,15 @@ msgstr "Форма логіну плагіна Divi"
585
  msgid "Gravity Forms"
586
  msgstr "Gravity Forms"
587
 
588
- #: includes/pro_banners.php:169
589
- msgid "Size"
590
- msgstr "Розмір"
591
-
592
- #: includes/pro_banners.php:173
593
- msgid "Normal"
594
- msgstr "Нормальний"
595
-
596
- #: includes/pro_banners.php:174
597
- msgid "Compact"
598
- msgstr "Компактний"
599
-
600
- #: includes/pro_banners.php:179
601
  msgid "Language"
602
  msgstr "Мова"
603
 
604
- #: includes/pro_banners.php:187
605
  msgid "Multilanguage"
606
  msgstr "Multilanguage"
607
 
608
- #: includes/pro_banners.php:190
609
  msgid ""
610
  "Enable to switch language automatically on multilingual website using the "
611
  "Multilanguage plugin."
@@ -613,6 +611,33 @@ msgstr ""
613
  "Увімкніть, щоб перемкнути мову автоматично на багатомовному сайті, "
614
  "використовуючи плагін Multilanguage."
615
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
616
  #~ msgid "Whitelist"
617
  #~ msgstr "Білий список"
618
 
@@ -751,9 +776,6 @@ msgstr ""
751
  #~ msgid "This option is available only for network or for main blog"
752
  #~ msgstr "Ця опція доступна тільки для мережі або для основного блогу"
753
 
754
- #~ msgid "Plugins"
755
- #~ msgstr "Плагінів"
756
-
757
  #~ msgid "You should %s to use this functionality"
758
  #~ msgstr "Щоб використовувати цей функціонал %s"
759
 
2
  msgstr ""
3
  "Project-Id-Version: reCaptcha\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2021-04-06 09:45+0300\n"
6
  "PO-Revision-Date: \n"
7
  "Last-Translator: bestwebsoft.com <plugin@bestwebsoft.com>\n"
8
  "Language-Team: the BestWebSoft Team <plugin@bestwebsoft.com>\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
  "X-Poedit-SearchPathExcluded-0: bws_menu\n"
21
 
22
+ #: google-captcha.php:39 google-captcha.php:49 google-captcha.php:518
23
+ #: includes/class-gglcptch-settings-tabs.php:146
24
  msgid "reCaptcha Settings"
25
  msgstr "Налаштування reCaptcha"
26
 
27
+ #: google-captcha.php:50 google-captcha.php:1104 google-captcha.php:1117
28
  #: includes/class-gglcptch-settings-tabs.php:22
29
  msgid "Settings"
30
  msgstr "Налаштування"
41
  msgid "Upgrade to Pro"
42
  msgstr "Оновити до Pro"
43
 
44
+ #: google-captcha.php:271
45
  msgid "Please wait until Google reCAPTCHA is loaded."
46
  msgstr "Будь ласка, зачекайте, поки буде завантаженo Google reCAPTCHA."
47
 
48
+ #: google-captcha.php:272
49
  msgid ""
50
  "Failed to load Google reCAPTCHA. Please check your internet connection and "
51
  "reload this page."
53
  "Не вдалося завантажити Google reCAPTCHA. Будь ласка, перевірте підключення "
54
  "до Інтернету та оновіть цю сторінку."
55
 
56
+ #: google-captcha.php:286
57
  msgid "Warning"
58
  msgstr "Увага"
59
 
60
+ #: google-captcha.php:412
61
  msgid "You are in the allow list"
62
  msgstr "Ви знаходитесь в білому списку"
63
 
64
+ #: google-captcha.php:519
65
  msgid "Please enable JavaScript in your browser."
66
  msgstr "Будь ласка, увімкніть JavaScript у вашому браузері."
67
 
68
+ #: google-captcha.php:602
69
  msgid "This site is protected by reCAPTCHA and the Google "
70
  msgstr "Цей сайт захищений reCAPTCHA і застосовуються "
71
 
72
+ #: google-captcha.php:603
73
  msgid "Privacy Policy"
74
  msgstr "Політика конфіденційності"
75
 
76
+ #: google-captcha.php:604
77
  msgid " and "
78
  msgstr " та "
79
 
80
+ #: google-captcha.php:605
81
  msgid "Terms of Service"
82
  msgstr "Умови обслуговування"
83
 
84
+ #: google-captcha.php:606
85
  msgid " apply."
86
  msgstr " Google."
87
 
88
+ #: google-captcha.php:613
89
  msgid "To use reCaptcha you must get the keys from"
90
  msgstr "Щоб використовувати reCaptcha, вам необхідно отримати ключі з"
91
 
92
+ #: google-captcha.php:614
93
  msgid "here"
94
  msgstr "тут"
95
 
96
+ #: google-captcha.php:615
97
  msgid "and enter them on the"
98
  msgstr "і вставте їх у"
99
 
100
+ #: google-captcha.php:617
101
  msgid "plugin setting page"
102
  msgstr "сторінку налаштувань плагіну"
103
 
104
+ #: google-captcha.php:882 includes/forms.php:358
105
  msgid "Error"
106
  msgstr "Помилка"
107
 
108
+ #: google-captcha.php:1004
109
  msgid "User response is missing."
110
  msgstr "Відповідь користувача відсутня."
111
 
112
+ #: google-captcha.php:1006
113
  msgid "Secret Key is missing."
114
  msgstr "Секретний ключ відсутній."
115
 
116
+ #: google-captcha.php:1009
117
  msgid "Secret Key is invalid."
118
  msgstr "Секретний ключ некоректний."
119
 
120
+ #: google-captcha.php:1010
121
  msgid "Check your domain configurations"
122
  msgstr "Перевірте конфігурацію вашого домену"
123
 
124
+ #: google-captcha.php:1011
125
  msgid "and enter it again"
126
  msgstr "і введіть його знову"
127
 
128
+ #: google-captcha.php:1013
129
  msgid "User response is invalid"
130
  msgstr "Некоректна відповідь користувача"
131
 
132
+ #: google-captcha.php:1014
133
  msgid "You have entered an incorrect reCAPTCHA value."
134
  msgstr "Ви ввели невірне значення reCAPTCHA."
135
 
136
+ #: google-captcha.php:1015
137
  msgid ""
138
  "More than one reCAPTCHA has been found in the current form. Please remove "
139
  "all unnecessary reCAPTCHA fields to make it work properly."
141
  "В поточній формі знайдено більш ніж один блок reCAPTCHA. Будь-ласка видаліть "
142
  "усі зайві блоки reCAPTCHA для коректної подальшої роботи."
143
 
144
+ #: google-captcha.php:1017
145
  msgid "reCaptcha v3 test failed"
146
  msgstr "Тест reCaptcha v3 не пройдений"
147
 
148
+ #: google-captcha.php:1055
149
  msgid "Please submit \"Test verification\""
150
  msgstr "Будь ласка, натисніть кнопку \"Тестування перевірки\""
151
 
152
+ #: google-captcha.php:1057
153
  msgid "Please complete the captcha and submit \"Test verification\""
154
  msgstr ""
155
  "Будь ласка, заповніть капчу і натисніть кнопку \"Тестування перевірки\""
156
 
157
+ #: google-captcha.php:1063
158
  msgid "Test verification"
159
  msgstr "Тестування перевірки"
160
 
161
+ #: google-captcha.php:1084
162
  msgid "The verification is successfully completed."
163
  msgstr "Перевірка завершена успішно."
164
 
165
+ #: google-captcha.php:1119
166
  msgid "FAQ"
167
  msgstr "FAQ"
168
 
169
+ #: google-captcha.php:1120
170
  msgid "Support"
171
  msgstr "Техпідтримка"
172
 
190
  msgid "Allowed diapason"
191
  msgstr "Доступні діапазони"
192
 
193
+ #: includes/allowlist.php:101
194
  msgid "Add IP to Allow List"
195
  msgstr "Додати IP до білого списку"
196
 
197
+ #: includes/allowlist.php:106
198
  msgid "Search IP"
199
  msgstr "Шукати IP"
200
 
201
+ #: includes/allowlist.php:160
202
  msgid "Nothing found"
203
  msgstr "Нічого не знайдено"
204
 
205
+ #: includes/allowlist.php:160
206
  msgid "No IP in the Allow List"
207
  msgstr "Список IP порожній"
208
 
209
+ #: includes/allowlist.php:167
210
  msgid "IP Address"
211
  msgstr "IP адреса"
212
 
213
+ #: includes/allowlist.php:168
214
  msgid "Date Added"
215
  msgstr "Дата додавання"
216
 
217
+ #: includes/allowlist.php:222 includes/allowlist.php:232
218
  msgid "Delete"
219
  msgstr "Видалити"
220
 
221
+ #: includes/allowlist.php:320
222
  msgid "IP added to the allow list successfully."
223
  msgstr "IP успішно додано до білого списку."
224
 
225
+ #: includes/allowlist.php:322 includes/allowlist.php:348
226
+ #: includes/allowlist.php:362
227
  msgid "Some errors occurred."
228
  msgstr "Відбулися деякі помилки."
229
 
230
+ #: includes/allowlist.php:325
231
  msgid "IP is already in the allow list."
232
  msgstr "IP вже знаходиться в білому списку."
233
 
234
+ #: includes/allowlist.php:328
235
  msgid "Invalid IP. See allowed formats."
236
  msgstr "Невірний IP. Дивіться доступні формати."
237
 
238
+ #: includes/allowlist.php:358
239
  msgid "One IP was deleted successfully."
240
  msgstr "Одну IP було видалено успішно."
241
 
242
+ #: includes/allowlist.php:365
243
  msgid "You have not entered any IP."
244
  msgstr "Ви не ввели жодного IP."
245
 
246
+ #: includes/allowlist.php:368
247
  msgid "You have not entered any IP in to the search form."
248
  msgstr "Ви не ввели ніякого значення у форму пошуку."
249
 
250
+ #: includes/allowlist.php:370
251
  msgid "Search results for"
252
  msgstr "Результати пошуку для"
253
 
259
  msgid "Custom Code"
260
  msgstr "Користувацький код"
261
 
262
+ #: includes/class-gglcptch-settings-tabs.php:26
263
  msgid "License Key"
264
  msgstr "Ліцензійний ключ"
265
 
266
+ #: includes/class-gglcptch-settings-tabs.php:51
267
  msgid "Site Key"
268
  msgstr "Ключ сайту"
269
 
270
+ #: includes/class-gglcptch-settings-tabs.php:56
271
  msgid "Secret Key"
272
  msgstr "Секретний ключ"
273
 
274
+ #: includes/class-gglcptch-settings-tabs.php:63
275
+ #: includes/class-gglcptch-settings-tabs.php:64
276
  msgid "Version"
277
  msgstr "Версія"
278
 
279
+ #: includes/class-gglcptch-settings-tabs.php:65
280
  msgid "Invisible"
281
  msgstr "Невидима"
282
 
283
+ #: includes/class-gglcptch-settings-tabs.php:89
284
  msgid "Enter site key"
285
  msgstr "Введіть ключ сайту"
286
 
287
+ #: includes/class-gglcptch-settings-tabs.php:90
288
+ #: includes/class-gglcptch-settings-tabs.php:97
289
  msgid "WARNING: The captcha will not be displayed until you fill key fields."
290
  msgstr ""
291
  "УВАГА: Капча не буде відображатись, поки ви не заповните поля з ключами."
292
 
293
+ #: includes/class-gglcptch-settings-tabs.php:96
294
  msgid "Enter secret key"
295
  msgstr "Введіть секретний ключ"
296
 
297
+ #: includes/class-gglcptch-settings-tabs.php:134
298
  msgid "Settings saved."
299
  msgstr "Налаштування збережені."
300
 
301
+ #: includes/class-gglcptch-settings-tabs.php:149
302
+ msgid "General"
303
+ msgstr "Загальне"
304
+
305
+ #: includes/class-gglcptch-settings-tabs.php:152
306
+ msgid "reCaptcha Version"
307
+ msgstr "Версія reCaptcha"
308
 
309
+ #: includes/class-gglcptch-settings-tabs.php:166
310
+ #, php-format
311
  msgid ""
312
  "Register your domain name with Google reCaptcha service and add the keys to "
313
+ "the fields below. %s Get the API Keys. %s"
314
  msgstr ""
315
  "Зареєструйте свій веб-сайт за допомогою Google reCaptcha, щоб отримати "
316
+ "необхідні API ключі та введіть їх нижче. %s Отримати API ключі. %s"
317
 
318
+ #: includes/class-gglcptch-settings-tabs.php:170
319
+ #, php-format
320
+ msgid ""
321
+ "If you do not want to create API keys use %s Captcha by BestWebSoft %s "
322
+ "plugin."
323
+ msgstr ""
324
+ "Якщо ви не хочете створювати ключі API, використовуйте %s Captcha by "
325
+ "BestWebSoft %s плагін."
326
 
327
+ #: includes/class-gglcptch-settings-tabs.php:188
328
  msgid "Test reCaptcha"
329
  msgstr "Тестування reCaptcha"
330
 
331
+ #: includes/class-gglcptch-settings-tabs.php:194
 
 
 
 
 
 
 
 
332
  msgid "Enable reCaptcha for"
333
  msgstr "Включити reCaptcha для"
334
 
335
+ #: includes/class-gglcptch-settings-tabs.php:241
336
+ #: includes/class-gglcptch-settings-tabs.php:269
337
+ #: includes/class-gglcptch-settings-tabs.php:296 includes/pro_banners.php:20
338
  msgid "Close"
339
  msgstr "Закрити"
340
 
341
+ #: includes/class-gglcptch-settings-tabs.php:252
342
+ msgid "reCaptcha Domain"
343
+ msgstr "reCaptcha Домен"
344
 
345
+ #: includes/class-gglcptch-settings-tabs.php:260
346
+ msgid ""
347
+ "If Google is not accessible or blocked in your country select other one."
 
 
 
348
  msgstr ""
349
+ "Якщо Google недоступний або заблокований у вашій країні, виберіть інший "
350
+ "пункт."
351
 
352
+ #: includes/class-gglcptch-settings-tabs.php:278
353
+ msgid "Appearence"
354
+ msgstr "Зовнішній Вигляд"
355
+
356
+ #: includes/class-gglcptch-settings-tabs.php:282
357
  msgid "Theme"
358
  msgstr "Тема"
359
 
360
+ #: includes/class-gglcptch-settings-tabs.php:286
361
  msgid "Light"
362
  msgstr "Свiтла"
363
 
364
+ #: includes/class-gglcptch-settings-tabs.php:287
365
  msgid "Dark"
366
  msgstr "Темна"
367
 
368
+ #: includes/class-gglcptch-settings-tabs.php:307
369
+ msgid "Hide reCaptcha Badge"
370
+ msgstr "Сховати знак ReCaptcha"
371
+
372
+ #: includes/class-gglcptch-settings-tabs.php:312
373
+ msgid "Enable to hide reCaptcha Badge for Version 3 and Invisible reCaptcha."
374
+ msgstr ""
375
+ "Увімкніть, щоб приховати значок reCaptcha для версії 3 і Invisible reCaptcha."
376
+
377
+ #: includes/class-gglcptch-settings-tabs.php:318
378
+ msgid "Additional Protective Measures"
379
+ msgstr "Додаткові Захисні Заходи"
380
+
381
+ #: includes/class-gglcptch-settings-tabs.php:322
382
  msgid "Score"
383
  msgstr "Кількість очок"
384
 
385
+ #: includes/class-gglcptch-settings-tabs.php:327
386
  #, php-format
387
  msgid "Set the minimum verification score from %s to %s (default is %s)."
388
  msgstr ""
389
  "Вкажіть граничне значення, при якому перевірка буде пройдена від %s до %s "
390
  "(за замовчуванням %s)."
391
 
392
+ #: includes/class-gglcptch-settings-tabs.php:331
393
+ msgid "Hide reCaptcha for"
394
+ msgstr "Сховати ReCaptcha для"
 
 
 
 
 
 
 
 
395
 
396
+ #: includes/class-gglcptch-settings-tabs.php:349
397
  msgid "Allow List Notification"
398
  msgstr "Повідомлення про знаходження у білому списку"
399
 
400
+ #: includes/class-gglcptch-settings-tabs.php:352
401
  msgid "This message will be displayed instead of the reCaptcha."
402
  msgstr "Це повідомлення буде відображатися замість reCaptcha."
403
 
404
+ #: includes/class-gglcptch-settings-tabs.php:356
405
  msgid "Advanced Protection"
406
  msgstr "Посилений захист"
407
 
408
+ #: includes/class-gglcptch-settings-tabs.php:360
409
  msgid ""
410
  "Enable to keep submit button disabled until reCaptcha is loaded (do not use "
411
  "this option if you see \"Failed to load Google reCaptcha\" message)."
414
  "не буде завантажена reCaptcha (Не використовуйте цю опцію, якщо ви бачите "
415
  "повідомлення \"Не вдалося завантажити Google reCaptcha\")."
416
 
417
+ #: includes/class-gglcptch-settings-tabs.php:366
418
  msgid "Disabled Submit Button"
419
  msgstr "Відключена кнопка підтвердження"
420
 
421
+ #: includes/class-gglcptch-settings-tabs.php:371
422
  msgid ""
423
  "Enable to keep submit button disabled until user passes the reCaptcha test "
424
  "(for Version 2)."
426
  "Увімкніть, щоб кнопка відправки залишалася відключеною до тих пір, поки "
427
  "користувач не пройде тест reCaptcha (для версії 2)."
428
 
429
+ #: includes/class-gglcptch-settings-tabs.php:385
430
  msgid ""
431
  "reCaptcha version was changed. Please submit \"Test reCaptcha\" and "
432
  "regenerate Site and Secret keys if necessary."
434
  "Версію reCaptcha було змінено. Будь ласка, натисніть \"Тестування reCaptcha"
435
  "\" та оновіть секретний ключ та ключ сайту, якщо це необхідно."
436
 
437
+ #: includes/class-gglcptch-settings-tabs.php:402
438
  msgid "reCaptcha Shortcode"
439
  msgstr "Шорткод reCaptcha"
440
 
441
+ #: includes/class-gglcptch-settings-tabs.php:405
442
  msgid "Add reCaptcha to your posts or pages using the following shortcode:"
443
  msgstr ""
444
  "Додайте reCaptcha до своїх постів або сторінок за допомогою такого шорткоду:"
479
  msgid "reCaptcha Plugin"
480
  msgstr "Плагін reCaptcha"
481
 
482
+ #: includes/forms.php:117 includes/forms.php:141
483
  msgid "Activate"
484
  msgstr "Активувати"
485
 
486
+ #: includes/forms.php:119 includes/forms.php:144 includes/forms.php:148
487
  msgid "Install Now"
488
  msgstr "Встановити зараз"
489
 
490
+ #: includes/forms.php:266
491
  msgid "Authentication failed."
492
  msgstr "Помилка аутентифікації."
493
 
494
+ #: includes/forms.php:360
495
  msgid "Click the BACK button on your browser and try again."
496
  msgstr "Натисніть кнопку НАЗАД у браузері та спробуйте ще раз."
497
 
595
  msgid "Gravity Forms"
596
  msgstr "Gravity Forms"
597
 
598
+ #: includes/pro_banners.php:168
 
 
 
 
 
 
 
 
 
 
 
 
599
  msgid "Language"
600
  msgstr "Мова"
601
 
602
+ #: includes/pro_banners.php:176
603
  msgid "Multilanguage"
604
  msgstr "Multilanguage"
605
 
606
+ #: includes/pro_banners.php:179
607
  msgid ""
608
  "Enable to switch language automatically on multilingual website using the "
609
  "Multilanguage plugin."
611
  "Увімкніть, щоб перемкнути мову автоматично на багатомовному сайті, "
612
  "використовуючи плагін Multilanguage."
613
 
614
+ #: includes/pro_banners.php:191
615
+ msgid "Size"
616
+ msgstr "Розмір"
617
+
618
+ #: includes/pro_banners.php:195
619
+ msgid "Normal"
620
+ msgstr "Нормальний"
621
+
622
+ #: includes/pro_banners.php:196
623
+ msgid "Compact"
624
+ msgstr "Компактний"
625
+
626
+ #~ msgid "Get the API Keys."
627
+ #~ msgstr "Отримати API ключі."
628
+
629
+ #~ msgid "Captcha by BestWebSoft"
630
+ #~ msgstr "Captcha by BestWebSoft"
631
+
632
+ #~ msgid "plugin."
633
+ #~ msgstr "плагін."
634
+
635
+ #~ msgid "Authentication"
636
+ #~ msgstr "Ідентифікація"
637
+
638
+ #~ msgid "Use reCaptcha Globally"
639
+ #~ msgstr "Використовувати ReCaptcha глобально"
640
+
641
  #~ msgid "Whitelist"
642
  #~ msgstr "Білий список"
643
 
776
  #~ msgid "This option is available only for network or for main blog"
777
  #~ msgstr "Ця опція доступна тільки для мережі або для основного блогу"
778
 
 
 
 
779
  #~ msgid "You should %s to use this functionality"
780
  #~ msgstr "Щоб використовувати цей функціонал %s"
781
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://bestwebsoft.com/donate/
4
  Tags: anti-spam security, antispam, recaptcha, captcha, captha, Invisible reCaptcha, Invisible captcha, Invisibl reCaptcha, comment, cpatcha, google catcha, Invisible re captcha, recaptcha version3
5
  Requires at least: 4.5
6
  Tested up to: 5.7
7
- Stable tag: 1.60
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
@@ -61,7 +61,7 @@ http://www.youtube.com/watch?v=L2BziEOL3Fg
61
  > * Fast Secure Contact Form
62
  > * MailChimp for WordPress
63
  > * Ninja Forms
64
- > * Gravity Forms [NEW]
65
  > * Compatible with WooCommerce:
66
  > * Login form
67
  > * Register form
@@ -264,6 +264,11 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
264
 
265
  == Changelog ==
266
 
 
 
 
 
 
267
  = V1.60 - 15.01.2021 =
268
  * Pro : The compatibility with Gravity Forms has been added.
269
  * Pro : The compatibility with WooCommerce has been improved.
@@ -530,6 +535,11 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
530
 
531
  == Upgrade Notice ==
532
 
 
 
 
 
 
533
  = V1.60 =
534
  * New features added.
535
  * Functionality improved.
4
  Tags: anti-spam security, antispam, recaptcha, captcha, captha, Invisible reCaptcha, Invisible captcha, Invisibl reCaptcha, comment, cpatcha, google catcha, Invisible re captcha, recaptcha version3
5
  Requires at least: 4.5
6
  Tested up to: 5.7
7
+ Stable tag: 1.61
8
  License: GPLv3 or later
9
  License URI: http://www.gnu.org/licenses/gpl-3.0.html
10
 
61
  > * Fast Secure Contact Form
62
  > * MailChimp for WordPress
63
  > * Ninja Forms
64
+ > * Gravity Forms
65
  > * Compatible with WooCommerce:
66
  > * Login form
67
  > * Register form
264
 
265
  == Changelog ==
266
 
267
+ = V1.61 - 06.04.2021 =
268
+ * Update : Settings page has been changed for better usability.
269
+ * Update : BWS Panel section was updated.
270
+ * Update : All functionality was updated for WordPress 5.7.
271
+
272
  = V1.60 - 15.01.2021 =
273
  * Pro : The compatibility with Gravity Forms has been added.
274
  * Pro : The compatibility with WooCommerce has been improved.
535
 
536
  == Upgrade Notice ==
537
 
538
+ = V1.61 =
539
+ * Usability improved.
540
+ * Plugin optimization completed.
541
+ * The compatibility with new WordPress version updated.
542
+
543
  = V1.60 =
544
  * New features added.
545
  * Functionality improved.
screenshot-7.png CHANGED
Binary file