Version Description
- 10.07.2015 =
- Bigfix : We fixed bug with editing of file robots.txt.
- NEW : Ability to restore default settings.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Google Sitemap by BestWebSoft |
Version | 2.9.9 |
Comparing to | |
See all releases |
Code changes from version 2.9.8 to 2.9.9
- bws_menu/bws_functions.php +32 -4
- bws_menu/bws_menu.php +22 -6
- bws_menu/icons/visitors-online.png +0 -0
- bws_menu/languages/bestwebsoft-de_DE.mo +0 -0
- bws_menu/languages/bestwebsoft-de_DE.po +114 -92
- bws_menu/languages/bestwebsoft-fr_FR.mo +0 -0
- bws_menu/languages/bestwebsoft-fr_FR.po +120 -99
- bws_menu/languages/bestwebsoft-it_IT.mo +0 -0
- bws_menu/languages/bestwebsoft-it_IT.po +114 -92
- bws_menu/languages/bestwebsoft-ja.mo +0 -0
- bws_menu/languages/bestwebsoft-ja.po +117 -95
- bws_menu/languages/bestwebsoft-pt_BR.mo +0 -0
- bws_menu/languages/bestwebsoft-pt_BR.po +114 -92
- bws_menu/languages/bestwebsoft-ru_RU.mo +0 -0
- bws_menu/languages/bestwebsoft-ru_RU.po +124 -102
- bws_menu/languages/bestwebsoft-sr_RS.mo +0 -0
- bws_menu/languages/bestwebsoft-sr_RS.po +116 -92
- bws_menu/languages/bestwebsoft-sv_SE.mo +0 -0
- bws_menu/languages/bestwebsoft-sv_SE.po +114 -92
- bws_menu/languages/bestwebsoft-uk.mo +0 -0
- bws_menu/languages/bestwebsoft-uk.po +118 -97
- google-sitemap-plugin.php +233 -209
- languages/sitemap-ru_RU.mo +0 -0
- languages/sitemap-ru_RU.po +206 -148
- languages/sitemap-uk.mo +0 -0
- languages/sitemap-uk.po +200 -145
- readme.txt +8 -1
bws_menu/bws_functions.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
* General functions for BestWebSoft plugins
|
4 |
-
* Version: 1.0
|
5 |
*/
|
6 |
if ( ! function_exists ( 'bws_add_general_menu' ) ) {
|
7 |
function bws_add_general_menu( $base ) {
|
@@ -365,7 +365,7 @@ if ( ! function_exists( 'bws_go_pro_tab' ) ) {
|
|
365 |
<p><?php _e( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' ); ?></p>
|
366 |
<?php } else { ?>
|
367 |
<p>
|
368 |
-
<input type="text" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
|
369 |
<input type="hidden" name="bws_license_plugin" value="<?php echo $bws_license_plugin; ?>" />
|
370 |
<input type="hidden" name="bws_license_submit" value="submit" />
|
371 |
<input type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
|
@@ -403,7 +403,7 @@ if ( ! function_exists( 'bws_go_pro_from_trial_tab' ) ) {
|
|
403 |
<p><?php _e( "Unfortunately, you have exceeded the number of available tries per day.", 'bestwebsoft' ); ?></p>
|
404 |
<?php } else { ?>
|
405 |
<p>
|
406 |
-
<input type="text" name="bws_license_key" value="" />
|
407 |
<input type="hidden" name="bws_license_plugin" value="<?php echo $plugin_basename; ?>" />
|
408 |
<input type="hidden" name="bws_license_submit" value="submit" />
|
409 |
<input type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
|
@@ -523,7 +523,7 @@ if ( ! function_exists ( 'bws_check_pro_license_form' ) ) {
|
|
523 |
<form method="post" action="admin.php?page=<?php echo $page; ?>">
|
524 |
<p><?php echo _e( 'If needed 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', 'bestwebsoft' ) . ' <a href="http://bestwebsoft.com/wp-login.php">http://bestwebsoft.com/wp-login.php</a> ' . __( '(your username is the email you specify when purchasing the product). If necessary, please submit "Lost your password?" request.', 'bestwebsoft' ); ?></p>
|
525 |
<p>
|
526 |
-
<input type="text" name="bws_license_key" value="<?php echo $license_key; ?>" />
|
527 |
<input type="hidden" name="bws_license_submit" value="submit" />
|
528 |
<input type="submit" class="button-primary" value="<?php _e( 'Check license key', 'bestwebsoft' ) ?>" />
|
529 |
<?php wp_nonce_field( $plugin_basename, 'bws_license_nonce_name' ); ?>
|
@@ -765,6 +765,34 @@ if ( ! class_exists( 'BWS_admin_tooltip' ) ) {
|
|
765 |
}
|
766 |
}
|
767 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
768 |
add_action( 'admin_init', 'bws_plugin_init' );
|
769 |
add_action( 'admin_enqueue_scripts', 'bws_admin_add_scripts' );
|
770 |
add_action( 'admin_head', 'bws_admin_head' );
|
1 |
<?php
|
2 |
/*
|
3 |
* General functions for BestWebSoft plugins
|
4 |
+
* Version: 1.1.0
|
5 |
*/
|
6 |
if ( ! function_exists ( 'bws_add_general_menu' ) ) {
|
7 |
function bws_add_general_menu( $base ) {
|
365 |
<p><?php _e( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' ); ?></p>
|
366 |
<?php } else { ?>
|
367 |
<p>
|
368 |
+
<input type="text" maxlength="100" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
|
369 |
<input type="hidden" name="bws_license_plugin" value="<?php echo $bws_license_plugin; ?>" />
|
370 |
<input type="hidden" name="bws_license_submit" value="submit" />
|
371 |
<input type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
|
403 |
<p><?php _e( "Unfortunately, you have exceeded the number of available tries per day.", 'bestwebsoft' ); ?></p>
|
404 |
<?php } else { ?>
|
405 |
<p>
|
406 |
+
<input type="text" maxlength="100" name="bws_license_key" value="" />
|
407 |
<input type="hidden" name="bws_license_plugin" value="<?php echo $plugin_basename; ?>" />
|
408 |
<input type="hidden" name="bws_license_submit" value="submit" />
|
409 |
<input type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
|
523 |
<form method="post" action="admin.php?page=<?php echo $page; ?>">
|
524 |
<p><?php echo _e( 'If needed 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', 'bestwebsoft' ) . ' <a href="http://bestwebsoft.com/wp-login.php">http://bestwebsoft.com/wp-login.php</a> ' . __( '(your username is the email you specify when purchasing the product). If necessary, please submit "Lost your password?" request.', 'bestwebsoft' ); ?></p>
|
525 |
<p>
|
526 |
+
<input type="text" maxlength="100" name="bws_license_key" value="<?php echo $license_key; ?>" />
|
527 |
<input type="hidden" name="bws_license_submit" value="submit" />
|
528 |
<input type="submit" class="button-primary" value="<?php _e( 'Check license key', 'bestwebsoft' ) ?>" />
|
529 |
<?php wp_nonce_field( $plugin_basename, 'bws_license_nonce_name' ); ?>
|
765 |
}
|
766 |
}
|
767 |
|
768 |
+
if ( ! function_exists ( 'bws_form_restore_default_settings' ) ) {
|
769 |
+
function bws_form_restore_default_settings( $plugin_basename ) { ?>
|
770 |
+
<form method="post" action="">
|
771 |
+
<p><?php _e( 'Restore all plugin settings to defaults', 'bestwebsoft' ); ?></p>
|
772 |
+
<p>
|
773 |
+
<input type="submit" class="button" value="<?php _e( 'Restore settings', 'bestwebsoft' ); ?>" />
|
774 |
+
</p>
|
775 |
+
<input type="hidden" name="bws_restore_default" value="submit" />
|
776 |
+
<?php wp_nonce_field( $plugin_basename, 'bws_settings_nonce_name' ); ?>
|
777 |
+
</form>
|
778 |
+
<?php }
|
779 |
+
}
|
780 |
+
|
781 |
+
if ( ! function_exists ( 'bws_form_restore_default_confirm' ) ) {
|
782 |
+
function bws_form_restore_default_confirm( $plugin_basename ) { ?>
|
783 |
+
<div>
|
784 |
+
<p><?php _e( 'Are you sure you want to restore all settings by default?', 'bestwebsoft' ) ?></p>
|
785 |
+
<form method="post" action="">
|
786 |
+
<p>
|
787 |
+
<button class="button" name="bws_restore_confirm"><?php _e( 'Yes, restore all settings', 'bestwebsoft' ) ?></button>
|
788 |
+
<button class="button" name="bws_restore_deny"><?php _e( 'No, go back to the settings page', 'bestwebsoft' ) ?></button>
|
789 |
+
<?php wp_nonce_field( $plugin_basename, 'bws_settings_nonce_name' ); ?>
|
790 |
+
</p>
|
791 |
+
</form>
|
792 |
+
</div>
|
793 |
+
<?php }
|
794 |
+
}
|
795 |
+
|
796 |
add_action( 'admin_init', 'bws_plugin_init' );
|
797 |
add_action( 'admin_enqueue_scripts', 'bws_admin_add_scripts' );
|
798 |
add_action( 'admin_head', 'bws_admin_head' );
|
bws_menu/bws_menu.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
-
* Version: 1.6.
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
|
@@ -102,7 +102,10 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
102 |
'link' => 'http://bestwebsoft.com/products/custom-search/?k=933be8f3a8b8719d95d1079d15443e29&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
103 |
'download' => 'http://bestwebsoft.com/products/custom-search/download/?k=933be8f3a8b8719d95d1079d15443e29&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
104 |
'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Custom+Search+plugin+bestwebsoft&plugin-search-input=Search+Plugins',
|
105 |
-
'settings' => 'admin.php?page=custom_search.php'
|
|
|
|
|
|
|
106 |
),
|
107 |
'quotes-and-tips/quotes-and-tips.php'=> array(
|
108 |
'name' => 'Quotes and Tips',
|
@@ -428,7 +431,18 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
428 |
'download' => 'http://bestwebsoft.com/products/pagination/download/?k=22adb940256f149559ba8fedcd728ac8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
429 |
'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Pagination+BestWebSoft&plugin-search-input=Search+Plugins',
|
430 |
'settings' => 'admin.php?page=pagination.php'
|
431 |
-
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
432 |
);
|
433 |
|
434 |
$all_plugins = get_plugins();
|
@@ -942,7 +956,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
942 |
<p>
|
943 |
<input type="hidden" name="bwsmn_form_submit_custom_email" value="submit" />
|
944 |
<input type="submit" class="button" value="<?php _e( 'Send to custom email »', 'bestwebsoft' ) ?>" />
|
945 |
-
<input type="text" value="<?php echo $bwsmn_form_email; ?>" name="bwsmn_form_email" />
|
946 |
<?php wp_nonce_field( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ); ?>
|
947 |
</p>
|
948 |
</form>
|
@@ -956,7 +970,9 @@ if ( ! function_exists( 'bws_get_banner_array' ) ) {
|
|
956 |
function bws_get_banner_array() {
|
957 |
global $bstwbsftwppdtplgns_banner_array;
|
958 |
$bstwbsftwppdtplgns_banner_array = array(
|
959 |
-
array( '
|
|
|
|
|
960 |
array( 'rlt_hide_banner_on_plugin_page', 'realty/realty.php', '1.0.0' ),
|
961 |
array( 'prmbr_hide_banner_on_plugin_page', 'promobar/promobar.php', '1.0.0' ),
|
962 |
array( 'gglnltcs_hide_banner_on_plugin_page', 'bws-google-analytics/bws-google-analytics.php', '1.6.2' ),
|
@@ -978,7 +994,7 @@ if ( ! function_exists( 'bws_get_banner_array' ) ) {
|
|
978 |
array( 'cntctfrm_hide_banner_on_plugin_page', 'contact-form-plugin/contact_form.php', '3.47' ),
|
979 |
array( 'cptch_hide_banner_on_plugin_page', 'captcha/captcha.php', '3.8.4' ),
|
980 |
array( 'gllr_hide_banner_on_plugin_page', 'gallery-plugin/gallery-plugin.php', '3.9.1' ),
|
981 |
-
array( 'cntctfrm_for_ctfrmtdb_hide_banner_on_plugin_page', 'contact-form-plugin/contact_form.php', '3.62' )
|
982 |
);
|
983 |
}
|
984 |
}
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
+
* Version: 1.6.6
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
|
102 |
'link' => 'http://bestwebsoft.com/products/custom-search/?k=933be8f3a8b8719d95d1079d15443e29&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
103 |
'download' => 'http://bestwebsoft.com/products/custom-search/download/?k=933be8f3a8b8719d95d1079d15443e29&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
104 |
'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Custom+Search+plugin+bestwebsoft&plugin-search-input=Search+Plugins',
|
105 |
+
'settings' => 'admin.php?page=custom_search.php',
|
106 |
+
'pro_version' => 'custom-search-pro/custom-search-pro.php',
|
107 |
+
'purchase' => 'http://bestwebsoft.com/products/custom-search/buy/?k=062b652ac6ac8ba863c9f30fc21d62c6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
108 |
+
'pro_settings' => 'admin.php?page=custom_search_pro.php'
|
109 |
),
|
110 |
'quotes-and-tips/quotes-and-tips.php'=> array(
|
111 |
'name' => 'Quotes and Tips',
|
431 |
'download' => 'http://bestwebsoft.com/products/pagination/download/?k=22adb940256f149559ba8fedcd728ac8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
432 |
'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Pagination+BestWebSoft&plugin-search-input=Search+Plugins',
|
433 |
'settings' => 'admin.php?page=pagination.php'
|
434 |
+
),
|
435 |
+
'visitors-online/visitors-online.php' => array(
|
436 |
+
'name' => 'Visitors online',
|
437 |
+
'description' => 'See how many users, guests and bots are online at the website.',
|
438 |
+
'link' => 'http://bestwebsoft.com/products/visitors-online/?k=93c28013a4f830671b3bba9502ed5177&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
439 |
+
'download' => 'http://bestwebsoft.com/products/visitors-online/download/?k=93c28013a4f830671b3bba9502ed5177&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
440 |
+
'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Visitors+online+BestWebSoft&plugin-search-input=Search+Plugins',
|
441 |
+
'settings' => 'admin.php?page=visitors-online.php',
|
442 |
+
'pro_version' => 'visitors-online-pro/visitors-online-pro.php',
|
443 |
+
'purchase' => 'http://bestwebsoft.com/products/visitors-online/buy/?k=f9a746075ff8a0a6cb192cb46526afd2&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
444 |
+
'pro_settings' => 'admin.php?page=visitors-online-pro.php'
|
445 |
+
)
|
446 |
);
|
447 |
|
448 |
$all_plugins = get_plugins();
|
956 |
<p>
|
957 |
<input type="hidden" name="bwsmn_form_submit_custom_email" value="submit" />
|
958 |
<input type="submit" class="button" value="<?php _e( 'Send to custom email »', 'bestwebsoft' ) ?>" />
|
959 |
+
<input type="text" maxlength="250" value="<?php echo $bwsmn_form_email; ?>" name="bwsmn_form_email" />
|
960 |
<?php wp_nonce_field( plugin_basename(__FILE__), 'bwsmn_nonce_submit_custom_email' ); ?>
|
961 |
</p>
|
962 |
</form>
|
970 |
function bws_get_banner_array() {
|
971 |
global $bstwbsftwppdtplgns_banner_array;
|
972 |
$bstwbsftwppdtplgns_banner_array = array(
|
973 |
+
array( 'vstrsnln_hide_banner_on_plugin_page', 'visitors-online/visitors-online.php', '0.2' ),
|
974 |
+
array( 'cstmsrch_hide_banner_on_plugin_page', 'custom-search-plugin/custom-search-plugin.php', '1.28' ),
|
975 |
+
array( 'prtfl_hide_banner_on_plugin_page', 'portfolio/portfolio.php', '2.33' ),
|
976 |
array( 'rlt_hide_banner_on_plugin_page', 'realty/realty.php', '1.0.0' ),
|
977 |
array( 'prmbr_hide_banner_on_plugin_page', 'promobar/promobar.php', '1.0.0' ),
|
978 |
array( 'gglnltcs_hide_banner_on_plugin_page', 'bws-google-analytics/bws-google-analytics.php', '1.6.2' ),
|
994 |
array( 'cntctfrm_hide_banner_on_plugin_page', 'contact-form-plugin/contact_form.php', '3.47' ),
|
995 |
array( 'cptch_hide_banner_on_plugin_page', 'captcha/captcha.php', '3.8.4' ),
|
996 |
array( 'gllr_hide_banner_on_plugin_page', 'gallery-plugin/gallery-plugin.php', '3.9.1' ),
|
997 |
+
array( 'cntctfrm_for_ctfrmtdb_hide_banner_on_plugin_page', 'contact-form-plugin/contact_form.php', '3.62' )
|
998 |
);
|
999 |
}
|
1000 |
}
|
bws_menu/icons/visitors-online.png
ADDED
Binary file
|
bws_menu/languages/bestwebsoft-de_DE.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-de_DE.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: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Lothar Schiborr <lothar.schiborr@web.de>\n"
|
9 |
"Language: de_DE\n"
|
@@ -188,8 +188,8 @@ msgstr ""
|
|
188 |
#: bws_functions.php:371
|
189 |
#: bws_functions.php:401
|
190 |
#: bws_functions.php:409
|
191 |
-
#: bws_menu.php:
|
192 |
-
#: bws_menu.php:
|
193 |
#, fuzzy
|
194 |
msgid "Activate"
|
195 |
msgstr "Aktivierte Plugins"
|
@@ -279,11 +279,11 @@ msgstr ""
|
|
279 |
# @ captcha
|
280 |
#: bws_functions.php:552
|
281 |
#: bws_functions.php:605
|
282 |
-
#: bws_menu.php:
|
283 |
-
#: bws_menu.php:
|
284 |
-
#: bws_menu.php:
|
285 |
-
#: bws_menu.php:
|
286 |
-
#: bws_menu.php:
|
287 |
#, fuzzy
|
288 |
msgid "Learn more"
|
289 |
msgstr "Lesen Sie mehr"
|
@@ -317,337 +317,359 @@ msgstr ""
|
|
317 |
msgid "Close"
|
318 |
msgstr ""
|
319 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
320 |
# @ captcha
|
321 |
-
#: bws_menu.php:
|
322 |
msgid "Not set"
|
323 |
msgstr "Nicht festgelegt"
|
324 |
|
325 |
# @ captcha
|
326 |
-
#: bws_menu.php:
|
327 |
-
#: bws_menu.php:
|
328 |
msgid "On"
|
329 |
msgstr "Ein"
|
330 |
|
331 |
# @ captcha
|
332 |
-
#: bws_menu.php:
|
333 |
-
#: bws_menu.php:
|
334 |
msgid "Off"
|
335 |
msgstr "Ausgeschaltet"
|
336 |
|
337 |
# @ captcha
|
338 |
-
#: bws_menu.php:
|
339 |
-
#: bws_menu.php:
|
340 |
-
#: bws_menu.php:462
|
341 |
-
#: bws_menu.php:463
|
342 |
-
#: bws_menu.php:464
|
343 |
#: bws_menu.php:476
|
|
|
|
|
|
|
344 |
msgid "N/A"
|
345 |
msgstr "keine Angaben"
|
346 |
|
347 |
# @ captcha
|
348 |
-
#: bws_menu.php:
|
349 |
msgid " Mb"
|
350 |
msgstr " Mb"
|
351 |
|
352 |
# @ captcha
|
353 |
-
#: bws_menu.php:
|
354 |
-
#: bws_menu.php:
|
355 |
-
#: bws_menu.php:
|
356 |
-
#: bws_menu.php:
|
357 |
msgid "Yes"
|
358 |
msgstr "Ja"
|
359 |
|
360 |
# @ captcha
|
361 |
-
#: bws_menu.php:
|
362 |
-
#: bws_menu.php:
|
363 |
-
#: bws_menu.php:
|
364 |
-
#: bws_menu.php:
|
365 |
msgid "No"
|
366 |
msgstr "Nein"
|
367 |
|
368 |
# @ captcha
|
369 |
-
#: bws_menu.php:
|
370 |
msgid "Operating System"
|
371 |
msgstr "Betriebs-System"
|
372 |
|
373 |
# @ captcha
|
374 |
-
#: bws_menu.php:
|
375 |
msgid "Server"
|
376 |
msgstr "Server"
|
377 |
|
378 |
# @ captcha
|
379 |
-
#: bws_menu.php:
|
380 |
msgid "Memory usage"
|
381 |
msgstr "Speichernutzung"
|
382 |
|
383 |
# @ captcha
|
384 |
-
#: bws_menu.php:
|
385 |
msgid "MYSQL Version"
|
386 |
msgstr "MYSQL Version"
|
387 |
|
388 |
# @ captcha
|
389 |
-
#: bws_menu.php:
|
390 |
msgid "SQL Mode"
|
391 |
msgstr "SQL Modus"
|
392 |
|
393 |
# @ captcha
|
394 |
-
#: bws_menu.php:
|
395 |
msgid "PHP Version"
|
396 |
msgstr "PHP Version"
|
397 |
|
398 |
# @ captcha
|
399 |
-
#: bws_menu.php:
|
400 |
msgid "PHP Safe Mode"
|
401 |
msgstr "PHP Gesicherter Modus"
|
402 |
|
403 |
# @ captcha
|
404 |
-
#: bws_menu.php:
|
405 |
msgid "PHP Allow URL fopen"
|
406 |
msgstr "PHP Erlaubet URL zu öffnen (fopen)"
|
407 |
|
408 |
# @ captcha
|
409 |
-
#: bws_menu.php:
|
410 |
msgid "PHP Memory Limit"
|
411 |
msgstr "PHP Speicher-Grenze"
|
412 |
|
413 |
# @ captcha
|
414 |
-
#: bws_menu.php:
|
415 |
msgid "PHP Max Upload Size"
|
416 |
msgstr "PHP Maximale Upload Größe"
|
417 |
|
418 |
# @ captcha
|
419 |
-
#: bws_menu.php:
|
420 |
msgid "PHP Max Post Size"
|
421 |
msgstr "PHP Maximale Beitrags-Größe"
|
422 |
|
423 |
# @ captcha
|
424 |
-
#: bws_menu.php:
|
425 |
msgid "PHP Max Script Execute Time"
|
426 |
msgstr "PHP Maximale Script Ausführungszeit"
|
427 |
|
428 |
# @ captcha
|
429 |
-
#: bws_menu.php:
|
430 |
msgid "PHP Exif support"
|
431 |
msgstr "PHP Exif Support"
|
432 |
|
433 |
# @ captcha
|
434 |
-
#: bws_menu.php:
|
435 |
msgid "PHP IPTC support"
|
436 |
msgstr "PHP IPTC Support"
|
437 |
|
438 |
# @ captcha
|
439 |
-
#: bws_menu.php:
|
440 |
msgid "PHP XML support"
|
441 |
msgstr "PHP XML Support"
|
442 |
|
443 |
# @ captcha
|
444 |
-
#: bws_menu.php:
|
445 |
msgid "Site URL"
|
446 |
msgstr "Site URL"
|
447 |
|
448 |
# @ captcha
|
449 |
-
#: bws_menu.php:
|
450 |
msgid "Home URL"
|
451 |
msgstr "Home URL"
|
452 |
|
453 |
# @ captcha
|
454 |
-
#: bws_menu.php:
|
455 |
msgid "WordPress Version"
|
456 |
msgstr "WordPress Version"
|
457 |
|
458 |
# @ captcha
|
459 |
-
#: bws_menu.php:
|
460 |
msgid "WordPress DB Version"
|
461 |
msgstr "WordPress DB Version"
|
462 |
|
463 |
# @ captcha
|
464 |
-
#: bws_menu.php:
|
465 |
msgid "Multisite"
|
466 |
msgstr "Multisite"
|
467 |
|
468 |
# @ captcha
|
469 |
-
#: bws_menu.php:
|
470 |
msgid "Active Theme"
|
471 |
msgstr "Actives Theme"
|
472 |
|
473 |
# @ captcha
|
474 |
-
#: bws_menu.php:
|
475 |
msgid "Please enter a valid email address."
|
476 |
msgstr "Bitte geben Sie eine gültige E-Mail-Adresse ein."
|
477 |
|
478 |
# @ captcha
|
479 |
-
#: bws_menu.php:
|
480 |
msgid "Email with system info is sent to "
|
481 |
msgstr "E-Mail-mit System Informationen wird gesendet an "
|
482 |
|
483 |
# @ captcha
|
484 |
-
#: bws_menu.php:
|
485 |
msgid "Thank you for contacting us."
|
486 |
msgstr "Vielen Dank für Ihre Kontaktaufnahme."
|
487 |
|
488 |
# @ captcha
|
489 |
-
#: bws_menu.php:
|
490 |
msgid "Sorry, email message could not be delivered."
|
491 |
msgstr "Sorry, E-Mail konnte nicht zugestellt werden."
|
492 |
|
493 |
-
#: bws_menu.php:
|
494 |
msgid "Need help?"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: bws_menu.php:
|
498 |
msgid "Client area"
|
499 |
msgstr ""
|
500 |
|
501 |
# @ captcha
|
502 |
-
#: bws_menu.php:
|
503 |
-
#: bws_menu.php:
|
504 |
msgid "System status"
|
505 |
msgstr "System Status"
|
506 |
|
507 |
# @ captcha
|
508 |
-
#: bws_menu.php:
|
509 |
#, fuzzy
|
510 |
msgid "Plugins"
|
511 |
msgstr "BWS Plugins"
|
512 |
|
513 |
-
#: bws_menu.php:
|
514 |
msgid "Themes"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: bws_menu.php:
|
518 |
msgid "All"
|
519 |
msgstr ""
|
520 |
|
521 |
# @ default
|
522 |
-
#: bws_menu.php:
|
523 |
#, fuzzy
|
524 |
msgid "Installed"
|
525 |
msgstr "Installiere %s"
|
526 |
|
527 |
# @ captcha
|
528 |
-
#: bws_menu.php:
|
529 |
#, fuzzy
|
530 |
msgid "Recommended"
|
531 |
msgstr "Empfohlene Plugins"
|
532 |
|
533 |
# @ captcha
|
534 |
-
#: bws_menu.php:
|
535 |
msgid "Installed plugins"
|
536 |
msgstr "Installierte Plugins"
|
537 |
|
538 |
# @ captcha
|
539 |
-
#: bws_menu.php:
|
540 |
-
#: bws_menu.php:
|
541 |
msgid "Settings"
|
542 |
msgstr "Einstellungen"
|
543 |
|
544 |
# @ captcha
|
545 |
-
#: bws_menu.php:
|
546 |
-
#: bws_menu.php:
|
547 |
#, fuzzy
|
548 |
msgid "Activate this plugin"
|
549 |
msgstr "Aktivierte Plugins"
|
550 |
|
551 |
-
#: bws_menu.php:
|
552 |
-
#: bws_menu.php:
|
553 |
-
#: bws_menu.php:
|
554 |
msgid "Go"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: bws_menu.php:
|
558 |
-
#: bws_menu.php:
|
559 |
-
#: bws_menu.php:
|
560 |
msgid "DONATE"
|
561 |
msgstr ""
|
562 |
|
563 |
# @ captcha
|
564 |
-
#: bws_menu.php:
|
565 |
msgid "Recommended plugins"
|
566 |
msgstr "Empfohlene Plugins"
|
567 |
|
568 |
# @ default
|
569 |
-
#: bws_menu.php:
|
570 |
#, fuzzy
|
571 |
msgid "Install now"
|
572 |
msgstr "Installiere %s"
|
573 |
|
574 |
-
#: bws_menu.php:
|
575 |
msgid "Try again"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: bws_menu.php:
|
579 |
#, php-format
|
580 |
msgid "Preview “%s”"
|
581 |
msgstr ""
|
582 |
|
583 |
# @ default
|
584 |
-
#: bws_menu.php:
|
585 |
#, php-format
|
586 |
msgid "Install %s"
|
587 |
msgstr "Installiere %s"
|
588 |
|
589 |
# @ default
|
590 |
-
#: bws_menu.php:
|
591 |
#, fuzzy
|
592 |
msgid "Install Now"
|
593 |
msgstr "Installiere %s"
|
594 |
|
595 |
-
#: bws_menu.php:
|
596 |
#, php-format
|
597 |
msgid "Update to version %s"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: bws_menu.php:
|
601 |
msgid "Update"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: bws_menu.php:
|
605 |
#, php-format
|
606 |
msgid "Preview %s"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: bws_menu.php:
|
610 |
msgid "Preview"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: bws_menu.php:
|
614 |
-
#: bws_menu.php:
|
615 |
#, php-format
|
616 |
msgid "By %s"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: bws_menu.php:
|
620 |
msgid "Details"
|
621 |
msgstr ""
|
622 |
|
623 |
# @ default
|
624 |
-
#: bws_menu.php:
|
625 |
#, fuzzy
|
626 |
msgid "Already Installed"
|
627 |
msgstr "Installiere %s"
|
628 |
|
629 |
# @ captcha
|
630 |
-
#: bws_menu.php:
|
631 |
msgid "Environment"
|
632 |
msgstr "Umgebungsvariable"
|
633 |
|
634 |
# @ captcha
|
635 |
-
#: bws_menu.php:
|
636 |
msgid "Active Plugins"
|
637 |
msgstr "Aktivierte Plugins"
|
638 |
|
639 |
# @ captcha
|
640 |
-
#: bws_menu.php:
|
641 |
msgid "Inactive Plugins"
|
642 |
msgstr "Inactive Plugins"
|
643 |
|
644 |
# @ captcha
|
645 |
-
#: bws_menu.php:
|
646 |
msgid "Send to support"
|
647 |
msgstr "Sende zuzm Support"
|
648 |
|
649 |
# @ captcha
|
650 |
-
#: bws_menu.php:
|
651 |
msgid "Send to custom email »"
|
652 |
msgstr "Senden Sie eine benutzerdefinierte E-Mail zu »"
|
653 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-06-12 15:56+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-06-12 15:56+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Lothar Schiborr <lothar.schiborr@web.de>\n"
|
9 |
"Language: de_DE\n"
|
188 |
#: bws_functions.php:371
|
189 |
#: bws_functions.php:401
|
190 |
#: bws_functions.php:409
|
191 |
+
#: bws_menu.php:657
|
192 |
+
#: bws_menu.php:714
|
193 |
#, fuzzy
|
194 |
msgid "Activate"
|
195 |
msgstr "Aktivierte Plugins"
|
279 |
# @ captcha
|
280 |
#: bws_functions.php:552
|
281 |
#: bws_functions.php:605
|
282 |
+
#: bws_menu.php:633
|
283 |
+
#: bws_menu.php:655
|
284 |
+
#: bws_menu.php:682
|
285 |
+
#: bws_menu.php:712
|
286 |
+
#: bws_menu.php:758
|
287 |
#, fuzzy
|
288 |
msgid "Learn more"
|
289 |
msgstr "Lesen Sie mehr"
|
317 |
msgid "Close"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: bws_functions.php:771
|
321 |
+
#: bws_functions.php:784
|
322 |
+
msgid "Restore all plugin settings to defaults"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: bws_functions.php:773
|
326 |
+
#: bws_functions.php:786
|
327 |
+
msgid "Restore settings"
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: bws_functions.php:797
|
331 |
+
msgid "Are you sure you want to restore all settings by default?"
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: bws_functions.php:799
|
335 |
+
msgid "Yes, restore all settings"
|
336 |
+
msgstr ""
|
337 |
+
|
338 |
+
#: bws_functions.php:800
|
339 |
+
msgid "No, go back to the settings page"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
# @ captcha
|
343 |
+
#: bws_menu.php:470
|
344 |
msgid "Not set"
|
345 |
msgstr "Nicht festgelegt"
|
346 |
|
347 |
# @ captcha
|
348 |
+
#: bws_menu.php:472
|
349 |
+
#: bws_menu.php:473
|
350 |
msgid "On"
|
351 |
msgstr "Ein"
|
352 |
|
353 |
# @ captcha
|
354 |
+
#: bws_menu.php:472
|
355 |
+
#: bws_menu.php:473
|
356 |
msgid "Off"
|
357 |
msgstr "Ausgeschaltet"
|
358 |
|
359 |
# @ captcha
|
360 |
+
#: bws_menu.php:474
|
361 |
+
#: bws_menu.php:475
|
|
|
|
|
|
|
362 |
#: bws_menu.php:476
|
363 |
+
#: bws_menu.php:477
|
364 |
+
#: bws_menu.php:478
|
365 |
+
#: bws_menu.php:490
|
366 |
msgid "N/A"
|
367 |
msgstr "keine Angaben"
|
368 |
|
369 |
# @ captcha
|
370 |
+
#: bws_menu.php:478
|
371 |
msgid " Mb"
|
372 |
msgstr " Mb"
|
373 |
|
374 |
# @ captcha
|
375 |
+
#: bws_menu.php:479
|
376 |
+
#: bws_menu.php:480
|
377 |
+
#: bws_menu.php:481
|
378 |
+
#: bws_menu.php:486
|
379 |
msgid "Yes"
|
380 |
msgstr "Ja"
|
381 |
|
382 |
# @ captcha
|
383 |
+
#: bws_menu.php:479
|
384 |
+
#: bws_menu.php:480
|
385 |
+
#: bws_menu.php:481
|
386 |
+
#: bws_menu.php:488
|
387 |
msgid "No"
|
388 |
msgstr "Nein"
|
389 |
|
390 |
# @ captcha
|
391 |
+
#: bws_menu.php:498
|
392 |
msgid "Operating System"
|
393 |
msgstr "Betriebs-System"
|
394 |
|
395 |
# @ captcha
|
396 |
+
#: bws_menu.php:499
|
397 |
msgid "Server"
|
398 |
msgstr "Server"
|
399 |
|
400 |
# @ captcha
|
401 |
+
#: bws_menu.php:500
|
402 |
msgid "Memory usage"
|
403 |
msgstr "Speichernutzung"
|
404 |
|
405 |
# @ captcha
|
406 |
+
#: bws_menu.php:501
|
407 |
msgid "MYSQL Version"
|
408 |
msgstr "MYSQL Version"
|
409 |
|
410 |
# @ captcha
|
411 |
+
#: bws_menu.php:502
|
412 |
msgid "SQL Mode"
|
413 |
msgstr "SQL Modus"
|
414 |
|
415 |
# @ captcha
|
416 |
+
#: bws_menu.php:503
|
417 |
msgid "PHP Version"
|
418 |
msgstr "PHP Version"
|
419 |
|
420 |
# @ captcha
|
421 |
+
#: bws_menu.php:504
|
422 |
msgid "PHP Safe Mode"
|
423 |
msgstr "PHP Gesicherter Modus"
|
424 |
|
425 |
# @ captcha
|
426 |
+
#: bws_menu.php:505
|
427 |
msgid "PHP Allow URL fopen"
|
428 |
msgstr "PHP Erlaubet URL zu öffnen (fopen)"
|
429 |
|
430 |
# @ captcha
|
431 |
+
#: bws_menu.php:506
|
432 |
msgid "PHP Memory Limit"
|
433 |
msgstr "PHP Speicher-Grenze"
|
434 |
|
435 |
# @ captcha
|
436 |
+
#: bws_menu.php:507
|
437 |
msgid "PHP Max Upload Size"
|
438 |
msgstr "PHP Maximale Upload Größe"
|
439 |
|
440 |
# @ captcha
|
441 |
+
#: bws_menu.php:508
|
442 |
msgid "PHP Max Post Size"
|
443 |
msgstr "PHP Maximale Beitrags-Größe"
|
444 |
|
445 |
# @ captcha
|
446 |
+
#: bws_menu.php:509
|
447 |
msgid "PHP Max Script Execute Time"
|
448 |
msgstr "PHP Maximale Script Ausführungszeit"
|
449 |
|
450 |
# @ captcha
|
451 |
+
#: bws_menu.php:510
|
452 |
msgid "PHP Exif support"
|
453 |
msgstr "PHP Exif Support"
|
454 |
|
455 |
# @ captcha
|
456 |
+
#: bws_menu.php:511
|
457 |
msgid "PHP IPTC support"
|
458 |
msgstr "PHP IPTC Support"
|
459 |
|
460 |
# @ captcha
|
461 |
+
#: bws_menu.php:512
|
462 |
msgid "PHP XML support"
|
463 |
msgstr "PHP XML Support"
|
464 |
|
465 |
# @ captcha
|
466 |
+
#: bws_menu.php:513
|
467 |
msgid "Site URL"
|
468 |
msgstr "Site URL"
|
469 |
|
470 |
# @ captcha
|
471 |
+
#: bws_menu.php:514
|
472 |
msgid "Home URL"
|
473 |
msgstr "Home URL"
|
474 |
|
475 |
# @ captcha
|
476 |
+
#: bws_menu.php:517
|
477 |
msgid "WordPress Version"
|
478 |
msgstr "WordPress Version"
|
479 |
|
480 |
# @ captcha
|
481 |
+
#: bws_menu.php:518
|
482 |
msgid "WordPress DB Version"
|
483 |
msgstr "WordPress DB Version"
|
484 |
|
485 |
# @ captcha
|
486 |
+
#: bws_menu.php:519
|
487 |
msgid "Multisite"
|
488 |
msgstr "Multisite"
|
489 |
|
490 |
# @ captcha
|
491 |
+
#: bws_menu.php:520
|
492 |
msgid "Active Theme"
|
493 |
msgstr "Actives Theme"
|
494 |
|
495 |
# @ captcha
|
496 |
+
#: bws_menu.php:535
|
497 |
msgid "Please enter a valid email address."
|
498 |
msgstr "Bitte geben Sie eine gültige E-Mail-Adresse ein."
|
499 |
|
500 |
# @ captcha
|
501 |
+
#: bws_menu.php:539
|
502 |
msgid "Email with system info is sent to "
|
503 |
msgstr "E-Mail-mit System Informationen wird gesendet an "
|
504 |
|
505 |
# @ captcha
|
506 |
+
#: bws_menu.php:543
|
507 |
msgid "Thank you for contacting us."
|
508 |
msgstr "Vielen Dank für Ihre Kontaktaufnahme."
|
509 |
|
510 |
# @ captcha
|
511 |
+
#: bws_menu.php:576
|
512 |
msgid "Sorry, email message could not be delivered."
|
513 |
msgstr "Sorry, E-Mail konnte nicht zugestellt werden."
|
514 |
|
515 |
+
#: bws_menu.php:584
|
516 |
msgid "Need help?"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: bws_menu.php:585
|
520 |
msgid "Client area"
|
521 |
msgstr ""
|
522 |
|
523 |
# @ captcha
|
524 |
+
#: bws_menu.php:586
|
525 |
+
#: bws_menu.php:897
|
526 |
msgid "System status"
|
527 |
msgstr "System Status"
|
528 |
|
529 |
# @ captcha
|
530 |
+
#: bws_menu.php:591
|
531 |
#, fuzzy
|
532 |
msgid "Plugins"
|
533 |
msgstr "BWS Plugins"
|
534 |
|
535 |
+
#: bws_menu.php:593
|
536 |
msgid "Themes"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: bws_menu.php:598
|
540 |
msgid "All"
|
541 |
msgstr ""
|
542 |
|
543 |
# @ default
|
544 |
+
#: bws_menu.php:599
|
545 |
#, fuzzy
|
546 |
msgid "Installed"
|
547 |
msgstr "Installiere %s"
|
548 |
|
549 |
# @ captcha
|
550 |
+
#: bws_menu.php:600
|
551 |
#, fuzzy
|
552 |
msgid "Recommended"
|
553 |
msgstr "Empfohlene Plugins"
|
554 |
|
555 |
# @ captcha
|
556 |
+
#: bws_menu.php:604
|
557 |
msgid "Installed plugins"
|
558 |
msgstr "Installierte Plugins"
|
559 |
|
560 |
# @ captcha
|
561 |
+
#: bws_menu.php:636
|
562 |
+
#: bws_menu.php:685
|
563 |
msgid "Settings"
|
564 |
msgstr "Einstellungen"
|
565 |
|
566 |
# @ captcha
|
567 |
+
#: bws_menu.php:657
|
568 |
+
#: bws_menu.php:714
|
569 |
#, fuzzy
|
570 |
msgid "Activate this plugin"
|
571 |
msgstr "Aktivierte Plugins"
|
572 |
|
573 |
+
#: bws_menu.php:672
|
574 |
+
#: bws_menu.php:702
|
575 |
+
#: bws_menu.php:748
|
576 |
msgid "Go"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: bws_menu.php:676
|
580 |
+
#: bws_menu.php:706
|
581 |
+
#: bws_menu.php:752
|
582 |
msgid "DONATE"
|
583 |
msgstr ""
|
584 |
|
585 |
# @ captcha
|
586 |
+
#: bws_menu.php:722
|
587 |
msgid "Recommended plugins"
|
588 |
msgstr "Empfohlene Plugins"
|
589 |
|
590 |
# @ default
|
591 |
+
#: bws_menu.php:760
|
592 |
#, fuzzy
|
593 |
msgid "Install now"
|
594 |
msgstr "Installiere %s"
|
595 |
|
596 |
+
#: bws_menu.php:781
|
597 |
msgid "Try again"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: bws_menu.php:799
|
601 |
#, php-format
|
602 |
msgid "Preview “%s”"
|
603 |
msgstr ""
|
604 |
|
605 |
# @ default
|
606 |
+
#: bws_menu.php:830
|
607 |
#, php-format
|
608 |
msgid "Install %s"
|
609 |
msgstr "Installiere %s"
|
610 |
|
611 |
# @ default
|
612 |
+
#: bws_menu.php:830
|
613 |
#, fuzzy
|
614 |
msgid "Install Now"
|
615 |
msgstr "Installiere %s"
|
616 |
|
617 |
+
#: bws_menu.php:833
|
618 |
#, php-format
|
619 |
msgid "Update to version %s"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: bws_menu.php:833
|
623 |
msgid "Update"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: bws_menu.php:840
|
627 |
#, php-format
|
628 |
msgid "Preview %s"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: bws_menu.php:840
|
632 |
msgid "Preview"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: bws_menu.php:846
|
636 |
+
#: bws_menu.php:878
|
637 |
#, php-format
|
638 |
msgid "By %s"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: bws_menu.php:852
|
642 |
msgid "Details"
|
643 |
msgstr ""
|
644 |
|
645 |
# @ default
|
646 |
+
#: bws_menu.php:884
|
647 |
#, fuzzy
|
648 |
msgid "Already Installed"
|
649 |
msgstr "Installiere %s"
|
650 |
|
651 |
# @ captcha
|
652 |
+
#: bws_menu.php:900
|
653 |
msgid "Environment"
|
654 |
msgstr "Umgebungsvariable"
|
655 |
|
656 |
# @ captcha
|
657 |
+
#: bws_menu.php:911
|
658 |
msgid "Active Plugins"
|
659 |
msgstr "Aktivierte Plugins"
|
660 |
|
661 |
# @ captcha
|
662 |
+
#: bws_menu.php:924
|
663 |
msgid "Inactive Plugins"
|
664 |
msgstr "Inactive Plugins"
|
665 |
|
666 |
# @ captcha
|
667 |
+
#: bws_menu.php:940
|
668 |
msgid "Send to support"
|
669 |
msgstr "Sende zuzm Support"
|
670 |
|
671 |
# @ captcha
|
672 |
+
#: bws_menu.php:947
|
673 |
msgid "Send to custom email »"
|
674 |
msgstr "Senden Sie eine benutzerdefinierte E-Mail zu »"
|
675 |
|
bws_menu/languages/bestwebsoft-fr_FR.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-fr_FR.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: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
|
9 |
"Language: fr_FR\n"
|
@@ -176,8 +176,8 @@ msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
|
|
176 |
#: bws_functions.php:371
|
177 |
#: bws_functions.php:401
|
178 |
#: bws_functions.php:409
|
179 |
-
#: bws_menu.php:
|
180 |
-
#: bws_menu.php:
|
181 |
msgid "Activate"
|
182 |
msgstr "Activé"
|
183 |
|
@@ -249,12 +249,11 @@ msgstr "Vérifier la clé de licence"
|
|
249 |
|
250 |
#: bws_functions.php:542
|
251 |
msgid "WARNING: Illegal use notification"
|
252 |
-
msgstr ""
|
253 |
|
254 |
#: bws_functions.php:542
|
255 |
-
#, fuzzy
|
256 |
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 you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
|
257 |
-
msgstr "
|
258 |
|
259 |
#: bws_functions.php:550
|
260 |
msgid "Notice: Your PRO Trial license has expired. To continue using the plugin you should buy a PRO license"
|
@@ -266,11 +265,11 @@ msgstr "Votre licence est terminée. Pour continuer à disposer du support rapid
|
|
266 |
|
267 |
#: bws_functions.php:552
|
268 |
#: bws_functions.php:605
|
269 |
-
#: bws_menu.php:
|
270 |
-
#: bws_menu.php:
|
271 |
-
#: bws_menu.php:
|
272 |
-
#: bws_menu.php:
|
273 |
-
#: bws_menu.php:
|
274 |
msgid "Learn more"
|
275 |
msgstr "En savoir plus"
|
276 |
|
@@ -303,281 +302,306 @@ msgstr "et vous ne diposerez plus du support rapide et des mises à jour."
|
|
303 |
msgid "Close"
|
304 |
msgstr "Fermer"
|
305 |
|
306 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
307 |
msgid "Not set"
|
308 |
msgstr "Not set"
|
309 |
|
310 |
-
#: bws_menu.php:
|
311 |
-
#: bws_menu.php:
|
312 |
msgid "On"
|
313 |
msgstr "On"
|
314 |
|
315 |
-
#: bws_menu.php:
|
316 |
-
#: bws_menu.php:
|
317 |
msgid "Off"
|
318 |
msgstr "Off"
|
319 |
|
320 |
-
#: bws_menu.php:
|
321 |
-
#: bws_menu.php:
|
322 |
-
#: bws_menu.php:462
|
323 |
-
#: bws_menu.php:463
|
324 |
-
#: bws_menu.php:464
|
325 |
#: bws_menu.php:476
|
|
|
|
|
|
|
326 |
msgid "N/A"
|
327 |
msgstr "N/A"
|
328 |
|
329 |
-
#: bws_menu.php:
|
330 |
msgid " Mb"
|
331 |
msgstr " Mb"
|
332 |
|
333 |
-
#: bws_menu.php:
|
334 |
-
#: bws_menu.php:
|
335 |
-
#: bws_menu.php:
|
336 |
-
#: bws_menu.php:
|
337 |
msgid "Yes"
|
338 |
msgstr "Yes"
|
339 |
|
340 |
-
#: bws_menu.php:
|
341 |
-
#: bws_menu.php:
|
342 |
-
#: bws_menu.php:
|
343 |
-
#: bws_menu.php:
|
344 |
msgid "No"
|
345 |
msgstr "No"
|
346 |
|
347 |
-
#: bws_menu.php:
|
348 |
msgid "Operating System"
|
349 |
msgstr "Operating System"
|
350 |
|
351 |
-
#: bws_menu.php:
|
352 |
msgid "Server"
|
353 |
msgstr "Server"
|
354 |
|
355 |
-
#: bws_menu.php:
|
356 |
msgid "Memory usage"
|
357 |
msgstr "Memory usage"
|
358 |
|
359 |
-
#: bws_menu.php:
|
360 |
msgid "MYSQL Version"
|
361 |
msgstr "MYSQL Version"
|
362 |
|
363 |
-
#: bws_menu.php:
|
364 |
msgid "SQL Mode"
|
365 |
msgstr "SQL Mode"
|
366 |
|
367 |
-
#: bws_menu.php:
|
368 |
msgid "PHP Version"
|
369 |
msgstr "PHP Version"
|
370 |
|
371 |
-
#: bws_menu.php:
|
372 |
msgid "PHP Safe Mode"
|
373 |
msgstr "PHP Safe Mode"
|
374 |
|
375 |
-
#: bws_menu.php:
|
376 |
msgid "PHP Allow URL fopen"
|
377 |
msgstr "PHP Allow URL fopen"
|
378 |
|
379 |
-
#: bws_menu.php:
|
380 |
msgid "PHP Memory Limit"
|
381 |
msgstr "PHP Memory Limit"
|
382 |
|
383 |
-
#: bws_menu.php:
|
384 |
msgid "PHP Max Upload Size"
|
385 |
msgstr "PHP Max Upload Size"
|
386 |
|
387 |
-
#: bws_menu.php:
|
388 |
msgid "PHP Max Post Size"
|
389 |
msgstr "PHP Max Post Size"
|
390 |
|
391 |
-
#: bws_menu.php:
|
392 |
msgid "PHP Max Script Execute Time"
|
393 |
msgstr "PHP Max Script Execute Time"
|
394 |
|
395 |
-
#: bws_menu.php:
|
396 |
msgid "PHP Exif support"
|
397 |
msgstr "PHP Exif support"
|
398 |
|
399 |
-
#: bws_menu.php:
|
400 |
msgid "PHP IPTC support"
|
401 |
msgstr "PHP IPTC support"
|
402 |
|
403 |
-
#: bws_menu.php:
|
404 |
msgid "PHP XML support"
|
405 |
msgstr "PHP XML support"
|
406 |
|
407 |
-
#: bws_menu.php:
|
408 |
msgid "Site URL"
|
409 |
msgstr "Site URL"
|
410 |
|
411 |
-
#: bws_menu.php:
|
412 |
msgid "Home URL"
|
413 |
msgstr "Home URL"
|
414 |
|
415 |
-
#: bws_menu.php:
|
416 |
msgid "WordPress Version"
|
417 |
msgstr "WordPress Version"
|
418 |
|
419 |
-
#: bws_menu.php:
|
420 |
msgid "WordPress DB Version"
|
421 |
msgstr "WordPress DB Version"
|
422 |
|
423 |
-
#: bws_menu.php:
|
424 |
msgid "Multisite"
|
425 |
msgstr "Multisite"
|
426 |
|
427 |
-
#: bws_menu.php:
|
428 |
msgid "Active Theme"
|
429 |
msgstr "Active Theme"
|
430 |
|
431 |
-
#: bws_menu.php:
|
432 |
msgid "Please enter a valid email address."
|
433 |
msgstr "Merci de saisir une adresse e-mail valide."
|
434 |
|
435 |
-
#: bws_menu.php:
|
436 |
msgid "Email with system info is sent to "
|
437 |
msgstr "Le courriel avec les informations système est envoyé à"
|
438 |
|
439 |
-
#: bws_menu.php:
|
440 |
msgid "Thank you for contacting us."
|
441 |
msgstr "Merci de nous avoir contacté."
|
442 |
|
443 |
-
#: bws_menu.php:
|
444 |
msgid "Sorry, email message could not be delivered."
|
445 |
msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
|
446 |
|
447 |
-
#: bws_menu.php:
|
448 |
msgid "Need help?"
|
449 |
msgstr "Besoin d'aide ?"
|
450 |
|
451 |
-
#: bws_menu.php:
|
452 |
msgid "Client area"
|
453 |
msgstr "Espace client"
|
454 |
|
455 |
-
#: bws_menu.php:
|
456 |
-
#: bws_menu.php:
|
457 |
msgid "System status"
|
458 |
msgstr "System status"
|
459 |
|
460 |
-
#: bws_menu.php:
|
461 |
msgid "Plugins"
|
462 |
-
msgstr "
|
463 |
|
464 |
-
#: bws_menu.php:
|
465 |
msgid "Themes"
|
466 |
msgstr "Thèmes"
|
467 |
|
468 |
-
#: bws_menu.php:
|
469 |
msgid "All"
|
470 |
msgstr "Tous"
|
471 |
|
472 |
-
#: bws_menu.php:
|
473 |
msgid "Installed"
|
474 |
msgstr "Installé"
|
475 |
|
476 |
-
#: bws_menu.php:
|
477 |
msgid "Recommended"
|
478 |
msgstr "Recommandé"
|
479 |
|
480 |
-
#: bws_menu.php:
|
481 |
msgid "Installed plugins"
|
482 |
msgstr "Plugin installé"
|
483 |
|
484 |
-
#: bws_menu.php:
|
485 |
-
#: bws_menu.php:
|
486 |
msgid "Settings"
|
487 |
msgstr "Réglages"
|
488 |
|
489 |
-
#: bws_menu.php:
|
490 |
-
#: bws_menu.php:
|
491 |
msgid "Activate this plugin"
|
492 |
msgstr "Activer cette extension"
|
493 |
|
494 |
-
#: bws_menu.php:
|
495 |
-
#: bws_menu.php:
|
496 |
-
#: bws_menu.php:
|
497 |
msgid "Go"
|
498 |
msgstr "Passez"
|
499 |
|
500 |
-
#: bws_menu.php:
|
501 |
-
#: bws_menu.php:
|
502 |
-
#: bws_menu.php:
|
503 |
msgid "DONATE"
|
504 |
msgstr "Faire un don"
|
505 |
|
506 |
-
#: bws_menu.php:
|
507 |
msgid "Recommended plugins"
|
508 |
msgstr "Plugin recommandé"
|
509 |
|
510 |
-
#: bws_menu.php:
|
511 |
msgid "Install now"
|
512 |
msgstr "Installer maintenant"
|
513 |
|
514 |
-
#: bws_menu.php:
|
515 |
msgid "Try again"
|
516 |
msgstr "Essayer de nouveau"
|
517 |
|
518 |
-
#: bws_menu.php:
|
519 |
#, php-format
|
520 |
msgid "Preview “%s”"
|
521 |
msgstr "Pré-visualiser “%s”"
|
522 |
|
523 |
-
#: bws_menu.php:
|
524 |
#, php-format
|
525 |
msgid "Install %s"
|
526 |
msgstr "%s installé"
|
527 |
|
528 |
-
#: bws_menu.php:
|
529 |
msgid "Install Now"
|
530 |
msgstr "Installa Ora"
|
531 |
|
532 |
-
#: bws_menu.php:
|
533 |
#, php-format
|
534 |
msgid "Update to version %s"
|
535 |
msgstr "Mettre à jour pour la version %s"
|
536 |
|
537 |
-
#: bws_menu.php:
|
538 |
msgid "Update"
|
539 |
msgstr "Mettre à jour"
|
540 |
|
541 |
-
#: bws_menu.php:
|
542 |
#, php-format
|
543 |
msgid "Preview %s"
|
544 |
msgstr "Pré-visualiser %s"
|
545 |
|
546 |
-
#: bws_menu.php:
|
547 |
msgid "Preview"
|
548 |
msgstr "Pré-visualiser"
|
549 |
|
550 |
-
#: bws_menu.php:
|
551 |
-
#: bws_menu.php:
|
552 |
#, php-format
|
553 |
msgid "By %s"
|
554 |
msgstr "Par %s"
|
555 |
|
556 |
-
#: bws_menu.php:
|
557 |
msgid "Details"
|
558 |
msgstr "Détails"
|
559 |
|
560 |
-
#: bws_menu.php:
|
561 |
msgid "Already Installed"
|
562 |
msgstr "Déjà installé"
|
563 |
|
564 |
-
#: bws_menu.php:
|
565 |
msgid "Environment"
|
566 |
msgstr "Environment"
|
567 |
|
568 |
-
#: bws_menu.php:
|
569 |
msgid "Active Plugins"
|
570 |
msgstr "Plugin actifs"
|
571 |
|
572 |
-
#: bws_menu.php:
|
573 |
msgid "Inactive Plugins"
|
574 |
msgstr "Plugin inactifs"
|
575 |
|
576 |
-
#: bws_menu.php:
|
577 |
msgid "Send to support"
|
578 |
msgstr "Envoyé au support"
|
579 |
|
580 |
-
#: bws_menu.php:
|
581 |
msgid "Send to custom email »"
|
582 |
msgstr "Envoyer un e-mail spécifique »"
|
583 |
|
@@ -1104,9 +1128,6 @@ msgstr "Envoyer un e-mail spécifique »"
|
|
1104 |
#~ msgid "Support"
|
1105 |
#~ msgstr "Support"
|
1106 |
|
1107 |
-
#~ msgid "Are you sure that you want to delete this language data?"
|
1108 |
-
#~ msgstr "Etes vous sûr de vouloir supprimer cette langue ?"
|
1109 |
-
|
1110 |
#~ msgid "Display Attachment tips"
|
1111 |
#~ msgstr "Afficher les explications sur les pièces jointes"
|
1112 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-06-12 15:56+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-06-12 15:56+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
|
9 |
"Language: fr_FR\n"
|
176 |
#: bws_functions.php:371
|
177 |
#: bws_functions.php:401
|
178 |
#: bws_functions.php:409
|
179 |
+
#: bws_menu.php:657
|
180 |
+
#: bws_menu.php:714
|
181 |
msgid "Activate"
|
182 |
msgstr "Activé"
|
183 |
|
249 |
|
250 |
#: bws_functions.php:542
|
251 |
msgid "WARNING: Illegal use notification"
|
252 |
+
msgstr "AVERTISSEMENT : Notification d'utilisation abusive"
|
253 |
|
254 |
#: bws_functions.php:542
|
|
|
255 |
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 you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
|
256 |
+
msgstr "Nous avons détecté une utilisation abusive de notre extension. Nous vous recommandons de résoudre ce problème dans les 24 heures, sinon l'extension sera rendue inactive. Merci de vous rendre dans votre espace personel"
|
257 |
|
258 |
#: bws_functions.php:550
|
259 |
msgid "Notice: Your PRO Trial license has expired. To continue using the plugin you should buy a PRO license"
|
265 |
|
266 |
#: bws_functions.php:552
|
267 |
#: bws_functions.php:605
|
268 |
+
#: bws_menu.php:633
|
269 |
+
#: bws_menu.php:655
|
270 |
+
#: bws_menu.php:682
|
271 |
+
#: bws_menu.php:712
|
272 |
+
#: bws_menu.php:758
|
273 |
msgid "Learn more"
|
274 |
msgstr "En savoir plus"
|
275 |
|
302 |
msgid "Close"
|
303 |
msgstr "Fermer"
|
304 |
|
305 |
+
#: bws_functions.php:771
|
306 |
+
#: bws_functions.php:784
|
307 |
+
msgid "Restore all plugin settings to defaults"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
#: bws_functions.php:773
|
311 |
+
#: bws_functions.php:786
|
312 |
+
#, fuzzy
|
313 |
+
msgid "Restore settings"
|
314 |
+
msgstr "Options supplémentaires"
|
315 |
+
|
316 |
+
#: bws_functions.php:797
|
317 |
+
#, fuzzy
|
318 |
+
msgid "Are you sure you want to restore all settings by default?"
|
319 |
+
msgstr "Etes vous sûr de vouloir supprimer cette langue ?"
|
320 |
+
|
321 |
+
#: bws_functions.php:799
|
322 |
+
msgid "Yes, restore all settings"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: bws_functions.php:800
|
326 |
+
#, fuzzy
|
327 |
+
msgid "No, go back to the settings page"
|
328 |
+
msgstr "Options supplémentaires"
|
329 |
+
|
330 |
+
#: bws_menu.php:470
|
331 |
msgid "Not set"
|
332 |
msgstr "Not set"
|
333 |
|
334 |
+
#: bws_menu.php:472
|
335 |
+
#: bws_menu.php:473
|
336 |
msgid "On"
|
337 |
msgstr "On"
|
338 |
|
339 |
+
#: bws_menu.php:472
|
340 |
+
#: bws_menu.php:473
|
341 |
msgid "Off"
|
342 |
msgstr "Off"
|
343 |
|
344 |
+
#: bws_menu.php:474
|
345 |
+
#: bws_menu.php:475
|
|
|
|
|
|
|
346 |
#: bws_menu.php:476
|
347 |
+
#: bws_menu.php:477
|
348 |
+
#: bws_menu.php:478
|
349 |
+
#: bws_menu.php:490
|
350 |
msgid "N/A"
|
351 |
msgstr "N/A"
|
352 |
|
353 |
+
#: bws_menu.php:478
|
354 |
msgid " Mb"
|
355 |
msgstr " Mb"
|
356 |
|
357 |
+
#: bws_menu.php:479
|
358 |
+
#: bws_menu.php:480
|
359 |
+
#: bws_menu.php:481
|
360 |
+
#: bws_menu.php:486
|
361 |
msgid "Yes"
|
362 |
msgstr "Yes"
|
363 |
|
364 |
+
#: bws_menu.php:479
|
365 |
+
#: bws_menu.php:480
|
366 |
+
#: bws_menu.php:481
|
367 |
+
#: bws_menu.php:488
|
368 |
msgid "No"
|
369 |
msgstr "No"
|
370 |
|
371 |
+
#: bws_menu.php:498
|
372 |
msgid "Operating System"
|
373 |
msgstr "Operating System"
|
374 |
|
375 |
+
#: bws_menu.php:499
|
376 |
msgid "Server"
|
377 |
msgstr "Server"
|
378 |
|
379 |
+
#: bws_menu.php:500
|
380 |
msgid "Memory usage"
|
381 |
msgstr "Memory usage"
|
382 |
|
383 |
+
#: bws_menu.php:501
|
384 |
msgid "MYSQL Version"
|
385 |
msgstr "MYSQL Version"
|
386 |
|
387 |
+
#: bws_menu.php:502
|
388 |
msgid "SQL Mode"
|
389 |
msgstr "SQL Mode"
|
390 |
|
391 |
+
#: bws_menu.php:503
|
392 |
msgid "PHP Version"
|
393 |
msgstr "PHP Version"
|
394 |
|
395 |
+
#: bws_menu.php:504
|
396 |
msgid "PHP Safe Mode"
|
397 |
msgstr "PHP Safe Mode"
|
398 |
|
399 |
+
#: bws_menu.php:505
|
400 |
msgid "PHP Allow URL fopen"
|
401 |
msgstr "PHP Allow URL fopen"
|
402 |
|
403 |
+
#: bws_menu.php:506
|
404 |
msgid "PHP Memory Limit"
|
405 |
msgstr "PHP Memory Limit"
|
406 |
|
407 |
+
#: bws_menu.php:507
|
408 |
msgid "PHP Max Upload Size"
|
409 |
msgstr "PHP Max Upload Size"
|
410 |
|
411 |
+
#: bws_menu.php:508
|
412 |
msgid "PHP Max Post Size"
|
413 |
msgstr "PHP Max Post Size"
|
414 |
|
415 |
+
#: bws_menu.php:509
|
416 |
msgid "PHP Max Script Execute Time"
|
417 |
msgstr "PHP Max Script Execute Time"
|
418 |
|
419 |
+
#: bws_menu.php:510
|
420 |
msgid "PHP Exif support"
|
421 |
msgstr "PHP Exif support"
|
422 |
|
423 |
+
#: bws_menu.php:511
|
424 |
msgid "PHP IPTC support"
|
425 |
msgstr "PHP IPTC support"
|
426 |
|
427 |
+
#: bws_menu.php:512
|
428 |
msgid "PHP XML support"
|
429 |
msgstr "PHP XML support"
|
430 |
|
431 |
+
#: bws_menu.php:513
|
432 |
msgid "Site URL"
|
433 |
msgstr "Site URL"
|
434 |
|
435 |
+
#: bws_menu.php:514
|
436 |
msgid "Home URL"
|
437 |
msgstr "Home URL"
|
438 |
|
439 |
+
#: bws_menu.php:517
|
440 |
msgid "WordPress Version"
|
441 |
msgstr "WordPress Version"
|
442 |
|
443 |
+
#: bws_menu.php:518
|
444 |
msgid "WordPress DB Version"
|
445 |
msgstr "WordPress DB Version"
|
446 |
|
447 |
+
#: bws_menu.php:519
|
448 |
msgid "Multisite"
|
449 |
msgstr "Multisite"
|
450 |
|
451 |
+
#: bws_menu.php:520
|
452 |
msgid "Active Theme"
|
453 |
msgstr "Active Theme"
|
454 |
|
455 |
+
#: bws_menu.php:535
|
456 |
msgid "Please enter a valid email address."
|
457 |
msgstr "Merci de saisir une adresse e-mail valide."
|
458 |
|
459 |
+
#: bws_menu.php:539
|
460 |
msgid "Email with system info is sent to "
|
461 |
msgstr "Le courriel avec les informations système est envoyé à"
|
462 |
|
463 |
+
#: bws_menu.php:543
|
464 |
msgid "Thank you for contacting us."
|
465 |
msgstr "Merci de nous avoir contacté."
|
466 |
|
467 |
+
#: bws_menu.php:576
|
468 |
msgid "Sorry, email message could not be delivered."
|
469 |
msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
|
470 |
|
471 |
+
#: bws_menu.php:584
|
472 |
msgid "Need help?"
|
473 |
msgstr "Besoin d'aide ?"
|
474 |
|
475 |
+
#: bws_menu.php:585
|
476 |
msgid "Client area"
|
477 |
msgstr "Espace client"
|
478 |
|
479 |
+
#: bws_menu.php:586
|
480 |
+
#: bws_menu.php:897
|
481 |
msgid "System status"
|
482 |
msgstr "System status"
|
483 |
|
484 |
+
#: bws_menu.php:591
|
485 |
msgid "Plugins"
|
486 |
+
msgstr "Extensions"
|
487 |
|
488 |
+
#: bws_menu.php:593
|
489 |
msgid "Themes"
|
490 |
msgstr "Thèmes"
|
491 |
|
492 |
+
#: bws_menu.php:598
|
493 |
msgid "All"
|
494 |
msgstr "Tous"
|
495 |
|
496 |
+
#: bws_menu.php:599
|
497 |
msgid "Installed"
|
498 |
msgstr "Installé"
|
499 |
|
500 |
+
#: bws_menu.php:600
|
501 |
msgid "Recommended"
|
502 |
msgstr "Recommandé"
|
503 |
|
504 |
+
#: bws_menu.php:604
|
505 |
msgid "Installed plugins"
|
506 |
msgstr "Plugin installé"
|
507 |
|
508 |
+
#: bws_menu.php:636
|
509 |
+
#: bws_menu.php:685
|
510 |
msgid "Settings"
|
511 |
msgstr "Réglages"
|
512 |
|
513 |
+
#: bws_menu.php:657
|
514 |
+
#: bws_menu.php:714
|
515 |
msgid "Activate this plugin"
|
516 |
msgstr "Activer cette extension"
|
517 |
|
518 |
+
#: bws_menu.php:672
|
519 |
+
#: bws_menu.php:702
|
520 |
+
#: bws_menu.php:748
|
521 |
msgid "Go"
|
522 |
msgstr "Passez"
|
523 |
|
524 |
+
#: bws_menu.php:676
|
525 |
+
#: bws_menu.php:706
|
526 |
+
#: bws_menu.php:752
|
527 |
msgid "DONATE"
|
528 |
msgstr "Faire un don"
|
529 |
|
530 |
+
#: bws_menu.php:722
|
531 |
msgid "Recommended plugins"
|
532 |
msgstr "Plugin recommandé"
|
533 |
|
534 |
+
#: bws_menu.php:760
|
535 |
msgid "Install now"
|
536 |
msgstr "Installer maintenant"
|
537 |
|
538 |
+
#: bws_menu.php:781
|
539 |
msgid "Try again"
|
540 |
msgstr "Essayer de nouveau"
|
541 |
|
542 |
+
#: bws_menu.php:799
|
543 |
#, php-format
|
544 |
msgid "Preview “%s”"
|
545 |
msgstr "Pré-visualiser “%s”"
|
546 |
|
547 |
+
#: bws_menu.php:830
|
548 |
#, php-format
|
549 |
msgid "Install %s"
|
550 |
msgstr "%s installé"
|
551 |
|
552 |
+
#: bws_menu.php:830
|
553 |
msgid "Install Now"
|
554 |
msgstr "Installa Ora"
|
555 |
|
556 |
+
#: bws_menu.php:833
|
557 |
#, php-format
|
558 |
msgid "Update to version %s"
|
559 |
msgstr "Mettre à jour pour la version %s"
|
560 |
|
561 |
+
#: bws_menu.php:833
|
562 |
msgid "Update"
|
563 |
msgstr "Mettre à jour"
|
564 |
|
565 |
+
#: bws_menu.php:840
|
566 |
#, php-format
|
567 |
msgid "Preview %s"
|
568 |
msgstr "Pré-visualiser %s"
|
569 |
|
570 |
+
#: bws_menu.php:840
|
571 |
msgid "Preview"
|
572 |
msgstr "Pré-visualiser"
|
573 |
|
574 |
+
#: bws_menu.php:846
|
575 |
+
#: bws_menu.php:878
|
576 |
#, php-format
|
577 |
msgid "By %s"
|
578 |
msgstr "Par %s"
|
579 |
|
580 |
+
#: bws_menu.php:852
|
581 |
msgid "Details"
|
582 |
msgstr "Détails"
|
583 |
|
584 |
+
#: bws_menu.php:884
|
585 |
msgid "Already Installed"
|
586 |
msgstr "Déjà installé"
|
587 |
|
588 |
+
#: bws_menu.php:900
|
589 |
msgid "Environment"
|
590 |
msgstr "Environment"
|
591 |
|
592 |
+
#: bws_menu.php:911
|
593 |
msgid "Active Plugins"
|
594 |
msgstr "Plugin actifs"
|
595 |
|
596 |
+
#: bws_menu.php:924
|
597 |
msgid "Inactive Plugins"
|
598 |
msgstr "Plugin inactifs"
|
599 |
|
600 |
+
#: bws_menu.php:940
|
601 |
msgid "Send to support"
|
602 |
msgstr "Envoyé au support"
|
603 |
|
604 |
+
#: bws_menu.php:947
|
605 |
msgid "Send to custom email »"
|
606 |
msgstr "Envoyer un e-mail spécifique »"
|
607 |
|
1128 |
#~ msgid "Support"
|
1129 |
#~ msgstr "Support"
|
1130 |
|
|
|
|
|
|
|
1131 |
#~ msgid "Display Attachment tips"
|
1132 |
#~ msgstr "Afficher les explications sur les pièces jointes"
|
1133 |
|
bws_menu/languages/bestwebsoft-it_IT.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-it_IT.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: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Marco <marco@blackstudio.it>\n"
|
9 |
"Language: it_IT\n"
|
@@ -192,8 +192,8 @@ msgstr ""
|
|
192 |
#: bws_functions.php:371
|
193 |
#: bws_functions.php:401
|
194 |
#: bws_functions.php:409
|
195 |
-
#: bws_menu.php:
|
196 |
-
#: bws_menu.php:
|
197 |
#, fuzzy
|
198 |
msgid "Activate"
|
199 |
msgstr "Plugin attivi"
|
@@ -283,11 +283,11 @@ msgstr ""
|
|
283 |
# @ bestwebsoft
|
284 |
#: bws_functions.php:552
|
285 |
#: bws_functions.php:605
|
286 |
-
#: bws_menu.php:
|
287 |
-
#: bws_menu.php:
|
288 |
-
#: bws_menu.php:
|
289 |
-
#: bws_menu.php:
|
290 |
-
#: bws_menu.php:
|
291 |
#, fuzzy
|
292 |
msgid "Learn more"
|
293 |
msgstr "Leggi tutto"
|
@@ -321,338 +321,360 @@ msgstr ""
|
|
321 |
msgid "Close"
|
322 |
msgstr ""
|
323 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
324 |
# @ bestwebsoft
|
325 |
-
#: bws_menu.php:
|
326 |
msgid "Not set"
|
327 |
msgstr "Non impostato"
|
328 |
|
329 |
# @ bestwebsoft
|
330 |
-
#: bws_menu.php:
|
331 |
-
#: bws_menu.php:
|
332 |
msgid "On"
|
333 |
msgstr "Abilitato"
|
334 |
|
335 |
# @ bestwebsoft
|
336 |
-
#: bws_menu.php:
|
337 |
-
#: bws_menu.php:
|
338 |
msgid "Off"
|
339 |
msgstr "Disabilitato"
|
340 |
|
341 |
# @ bestwebsoft
|
342 |
-
#: bws_menu.php:
|
343 |
-
#: bws_menu.php:
|
344 |
-
#: bws_menu.php:462
|
345 |
-
#: bws_menu.php:463
|
346 |
-
#: bws_menu.php:464
|
347 |
#: bws_menu.php:476
|
|
|
|
|
|
|
348 |
msgid "N/A"
|
349 |
msgstr "Non disponibile"
|
350 |
|
351 |
# @ bestwebsoft
|
352 |
-
#: bws_menu.php:
|
353 |
msgid " Mb"
|
354 |
msgstr "Mb"
|
355 |
|
356 |
# @ bestwebsoft
|
357 |
-
#: bws_menu.php:
|
358 |
-
#: bws_menu.php:
|
359 |
-
#: bws_menu.php:
|
360 |
-
#: bws_menu.php:
|
361 |
msgid "Yes"
|
362 |
msgstr "Sì"
|
363 |
|
364 |
# @ bestwebsoft
|
365 |
-
#: bws_menu.php:
|
366 |
-
#: bws_menu.php:
|
367 |
-
#: bws_menu.php:
|
368 |
-
#: bws_menu.php:
|
369 |
msgid "No"
|
370 |
msgstr "No"
|
371 |
|
372 |
# @ bestwebsoft
|
373 |
-
#: bws_menu.php:
|
374 |
msgid "Operating System"
|
375 |
msgstr "Sistema operativo"
|
376 |
|
377 |
# @ bestwebsoft
|
378 |
-
#: bws_menu.php:
|
379 |
msgid "Server"
|
380 |
msgstr "Server"
|
381 |
|
382 |
# @ bestwebsoft
|
383 |
-
#: bws_menu.php:
|
384 |
msgid "Memory usage"
|
385 |
msgstr "Utilizzo memoria"
|
386 |
|
387 |
# @ bestwebsoft
|
388 |
-
#: bws_menu.php:
|
389 |
msgid "MYSQL Version"
|
390 |
msgstr "Versione MYSQL"
|
391 |
|
392 |
# @ bestwebsoft
|
393 |
-
#: bws_menu.php:
|
394 |
msgid "SQL Mode"
|
395 |
msgstr "Modalità SQL"
|
396 |
|
397 |
# @ bestwebsoft
|
398 |
-
#: bws_menu.php:
|
399 |
msgid "PHP Version"
|
400 |
msgstr "Versione PHP"
|
401 |
|
402 |
# @ bestwebsoft
|
403 |
-
#: bws_menu.php:
|
404 |
msgid "PHP Safe Mode"
|
405 |
msgstr "Safe Mode PHP"
|
406 |
|
407 |
# @ bestwebsoft
|
408 |
-
#: bws_menu.php:
|
409 |
msgid "PHP Allow URL fopen"
|
410 |
msgstr "Consenti URL fopen PHP"
|
411 |
|
412 |
# @ bestwebsoft
|
413 |
-
#: bws_menu.php:
|
414 |
msgid "PHP Memory Limit"
|
415 |
msgstr "Limite di memoria PHP"
|
416 |
|
417 |
# @ bestwebsoft
|
418 |
-
#: bws_menu.php:
|
419 |
msgid "PHP Max Upload Size"
|
420 |
msgstr "Dimensione upload massima PHP"
|
421 |
|
422 |
# @ bestwebsoft
|
423 |
-
#: bws_menu.php:
|
424 |
msgid "PHP Max Post Size"
|
425 |
msgstr "Dimensione massima Post PHP"
|
426 |
|
427 |
# @ bestwebsoft
|
428 |
-
#: bws_menu.php:
|
429 |
msgid "PHP Max Script Execute Time"
|
430 |
msgstr "Tempo massimo di esecuzione PHP"
|
431 |
|
432 |
# @ bestwebsoft
|
433 |
-
#: bws_menu.php:
|
434 |
msgid "PHP Exif support"
|
435 |
msgstr "Supporto Exif PHP"
|
436 |
|
437 |
# @ bestwebsoft
|
438 |
-
#: bws_menu.php:
|
439 |
msgid "PHP IPTC support"
|
440 |
msgstr "Supporto IPTC PHP"
|
441 |
|
442 |
# @ bestwebsoft
|
443 |
-
#: bws_menu.php:
|
444 |
msgid "PHP XML support"
|
445 |
msgstr "Supporto XML PHP"
|
446 |
|
447 |
# @ bestwebsoft
|
448 |
-
#: bws_menu.php:
|
449 |
msgid "Site URL"
|
450 |
msgstr "URL sito"
|
451 |
|
452 |
# @ bestwebsoft
|
453 |
-
#: bws_menu.php:
|
454 |
msgid "Home URL"
|
455 |
msgstr "URL home"
|
456 |
|
457 |
# @ bestwebsoft
|
458 |
-
#: bws_menu.php:
|
459 |
msgid "WordPress Version"
|
460 |
msgstr "Versione WordPress"
|
461 |
|
462 |
# @ bestwebsoft
|
463 |
-
#: bws_menu.php:
|
464 |
msgid "WordPress DB Version"
|
465 |
msgstr "Versione DB WordPress"
|
466 |
|
467 |
# @ bestwebsoft
|
468 |
-
#: bws_menu.php:
|
469 |
msgid "Multisite"
|
470 |
msgstr "Multisito"
|
471 |
|
472 |
# @ bestwebsoft
|
473 |
-
#: bws_menu.php:
|
474 |
msgid "Active Theme"
|
475 |
msgstr "Tema attivo"
|
476 |
|
477 |
# @ bestwebsoft
|
478 |
-
#: bws_menu.php:
|
479 |
msgid "Please enter a valid email address."
|
480 |
msgstr "Per favore inserisci un indirizzo e-mail valido."
|
481 |
|
482 |
# @ bestwebsoft
|
483 |
-
#: bws_menu.php:
|
484 |
msgid "Email with system info is sent to "
|
485 |
msgstr "Email con informazioni di sistema spedita a "
|
486 |
|
487 |
# @ bestwebsoft
|
488 |
-
#: bws_menu.php:
|
489 |
msgid "Thank you for contacting us."
|
490 |
msgstr "Grazie per averci contattato."
|
491 |
|
492 |
# @ bestwebsoft
|
493 |
-
#: bws_menu.php:
|
494 |
msgid "Sorry, email message could not be delivered."
|
495 |
msgstr "Spiacenti, il messaggio email non può essere inviato."
|
496 |
|
497 |
-
#: bws_menu.php:
|
498 |
msgid "Need help?"
|
499 |
msgstr ""
|
500 |
|
501 |
-
#: bws_menu.php:
|
502 |
msgid "Client area"
|
503 |
msgstr ""
|
504 |
|
505 |
# @ bestwebsoft
|
506 |
-
#: bws_menu.php:
|
507 |
-
#: bws_menu.php:
|
508 |
msgid "System status"
|
509 |
msgstr "Stato sistema"
|
510 |
|
511 |
# @ bestwebsoft
|
512 |
-
#: bws_menu.php:
|
513 |
#, fuzzy
|
514 |
msgid "Plugins"
|
515 |
msgstr "Plugin Pro"
|
516 |
|
517 |
-
#: bws_menu.php:
|
518 |
msgid "Themes"
|
519 |
msgstr ""
|
520 |
|
521 |
-
#: bws_menu.php:
|
522 |
msgid "All"
|
523 |
msgstr ""
|
524 |
|
525 |
# @ default
|
526 |
-
#: bws_menu.php:
|
527 |
#, fuzzy
|
528 |
msgid "Installed"
|
529 |
msgstr "Installa %s"
|
530 |
|
531 |
# @ bestwebsoft
|
532 |
-
#: bws_menu.php:
|
533 |
#, fuzzy
|
534 |
msgid "Recommended"
|
535 |
msgstr "Plugin raccomandati"
|
536 |
|
537 |
# @ bestwebsoft
|
538 |
-
#: bws_menu.php:
|
539 |
msgid "Installed plugins"
|
540 |
msgstr "Plugin installati"
|
541 |
|
542 |
# @ bestwebsoft
|
543 |
# @ captcha
|
544 |
-
#: bws_menu.php:
|
545 |
-
#: bws_menu.php:
|
546 |
msgid "Settings"
|
547 |
msgstr "Impostazioni"
|
548 |
|
549 |
# @ bestwebsoft
|
550 |
-
#: bws_menu.php:
|
551 |
-
#: bws_menu.php:
|
552 |
#, fuzzy
|
553 |
msgid "Activate this plugin"
|
554 |
msgstr "Plugin attivi"
|
555 |
|
556 |
-
#: bws_menu.php:
|
557 |
-
#: bws_menu.php:
|
558 |
-
#: bws_menu.php:
|
559 |
msgid "Go"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: bws_menu.php:
|
563 |
-
#: bws_menu.php:
|
564 |
-
#: bws_menu.php:
|
565 |
msgid "DONATE"
|
566 |
msgstr ""
|
567 |
|
568 |
# @ bestwebsoft
|
569 |
-
#: bws_menu.php:
|
570 |
msgid "Recommended plugins"
|
571 |
msgstr "Plugin raccomandati"
|
572 |
|
573 |
# @ default
|
574 |
-
#: bws_menu.php:
|
575 |
#, fuzzy
|
576 |
msgid "Install now"
|
577 |
msgstr "Installa %s"
|
578 |
|
579 |
-
#: bws_menu.php:
|
580 |
msgid "Try again"
|
581 |
msgstr ""
|
582 |
|
583 |
-
#: bws_menu.php:
|
584 |
#, php-format
|
585 |
msgid "Preview “%s”"
|
586 |
msgstr ""
|
587 |
|
588 |
# @ default
|
589 |
-
#: bws_menu.php:
|
590 |
#, php-format
|
591 |
msgid "Install %s"
|
592 |
msgstr "Installa %s"
|
593 |
|
594 |
# @ default
|
595 |
-
#: bws_menu.php:
|
596 |
#, fuzzy
|
597 |
msgid "Install Now"
|
598 |
msgstr "Installa %s"
|
599 |
|
600 |
-
#: bws_menu.php:
|
601 |
#, php-format
|
602 |
msgid "Update to version %s"
|
603 |
msgstr ""
|
604 |
|
605 |
-
#: bws_menu.php:
|
606 |
msgid "Update"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: bws_menu.php:
|
610 |
#, php-format
|
611 |
msgid "Preview %s"
|
612 |
msgstr ""
|
613 |
|
614 |
-
#: bws_menu.php:
|
615 |
msgid "Preview"
|
616 |
msgstr ""
|
617 |
|
618 |
-
#: bws_menu.php:
|
619 |
-
#: bws_menu.php:
|
620 |
#, php-format
|
621 |
msgid "By %s"
|
622 |
msgstr ""
|
623 |
|
624 |
-
#: bws_menu.php:
|
625 |
msgid "Details"
|
626 |
msgstr ""
|
627 |
|
628 |
# @ default
|
629 |
-
#: bws_menu.php:
|
630 |
#, fuzzy
|
631 |
msgid "Already Installed"
|
632 |
msgstr "Installa %s"
|
633 |
|
634 |
# @ bestwebsoft
|
635 |
-
#: bws_menu.php:
|
636 |
msgid "Environment"
|
637 |
msgstr "Ambiente"
|
638 |
|
639 |
# @ bestwebsoft
|
640 |
-
#: bws_menu.php:
|
641 |
msgid "Active Plugins"
|
642 |
msgstr "Plugin attivi"
|
643 |
|
644 |
# @ bestwebsoft
|
645 |
-
#: bws_menu.php:
|
646 |
msgid "Inactive Plugins"
|
647 |
msgstr "Plugin inattivi"
|
648 |
|
649 |
# @ bestwebsoft
|
650 |
-
#: bws_menu.php:
|
651 |
msgid "Send to support"
|
652 |
msgstr "Invia al supporto"
|
653 |
|
654 |
# @ bestwebsoft
|
655 |
-
#: bws_menu.php:
|
656 |
msgid "Send to custom email »"
|
657 |
msgstr "Invia a una email personalizzata »"
|
658 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-06-12 15:56+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-06-12 15:56+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Marco <marco@blackstudio.it>\n"
|
9 |
"Language: it_IT\n"
|
192 |
#: bws_functions.php:371
|
193 |
#: bws_functions.php:401
|
194 |
#: bws_functions.php:409
|
195 |
+
#: bws_menu.php:657
|
196 |
+
#: bws_menu.php:714
|
197 |
#, fuzzy
|
198 |
msgid "Activate"
|
199 |
msgstr "Plugin attivi"
|
283 |
# @ bestwebsoft
|
284 |
#: bws_functions.php:552
|
285 |
#: bws_functions.php:605
|
286 |
+
#: bws_menu.php:633
|
287 |
+
#: bws_menu.php:655
|
288 |
+
#: bws_menu.php:682
|
289 |
+
#: bws_menu.php:712
|
290 |
+
#: bws_menu.php:758
|
291 |
#, fuzzy
|
292 |
msgid "Learn more"
|
293 |
msgstr "Leggi tutto"
|
321 |
msgid "Close"
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: bws_functions.php:771
|
325 |
+
#: bws_functions.php:784
|
326 |
+
msgid "Restore all plugin settings to defaults"
|
327 |
+
msgstr ""
|
328 |
+
|
329 |
+
#: bws_functions.php:773
|
330 |
+
#: bws_functions.php:786
|
331 |
+
msgid "Restore settings"
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: bws_functions.php:797
|
335 |
+
msgid "Are you sure you want to restore all settings by default?"
|
336 |
+
msgstr ""
|
337 |
+
|
338 |
+
#: bws_functions.php:799
|
339 |
+
msgid "Yes, restore all settings"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
+
#: bws_functions.php:800
|
343 |
+
msgid "No, go back to the settings page"
|
344 |
+
msgstr ""
|
345 |
+
|
346 |
# @ bestwebsoft
|
347 |
+
#: bws_menu.php:470
|
348 |
msgid "Not set"
|
349 |
msgstr "Non impostato"
|
350 |
|
351 |
# @ bestwebsoft
|
352 |
+
#: bws_menu.php:472
|
353 |
+
#: bws_menu.php:473
|
354 |
msgid "On"
|
355 |
msgstr "Abilitato"
|
356 |
|
357 |
# @ bestwebsoft
|
358 |
+
#: bws_menu.php:472
|
359 |
+
#: bws_menu.php:473
|
360 |
msgid "Off"
|
361 |
msgstr "Disabilitato"
|
362 |
|
363 |
# @ bestwebsoft
|
364 |
+
#: bws_menu.php:474
|
365 |
+
#: bws_menu.php:475
|
|
|
|
|
|
|
366 |
#: bws_menu.php:476
|
367 |
+
#: bws_menu.php:477
|
368 |
+
#: bws_menu.php:478
|
369 |
+
#: bws_menu.php:490
|
370 |
msgid "N/A"
|
371 |
msgstr "Non disponibile"
|
372 |
|
373 |
# @ bestwebsoft
|
374 |
+
#: bws_menu.php:478
|
375 |
msgid " Mb"
|
376 |
msgstr "Mb"
|
377 |
|
378 |
# @ bestwebsoft
|
379 |
+
#: bws_menu.php:479
|
380 |
+
#: bws_menu.php:480
|
381 |
+
#: bws_menu.php:481
|
382 |
+
#: bws_menu.php:486
|
383 |
msgid "Yes"
|
384 |
msgstr "Sì"
|
385 |
|
386 |
# @ bestwebsoft
|
387 |
+
#: bws_menu.php:479
|
388 |
+
#: bws_menu.php:480
|
389 |
+
#: bws_menu.php:481
|
390 |
+
#: bws_menu.php:488
|
391 |
msgid "No"
|
392 |
msgstr "No"
|
393 |
|
394 |
# @ bestwebsoft
|
395 |
+
#: bws_menu.php:498
|
396 |
msgid "Operating System"
|
397 |
msgstr "Sistema operativo"
|
398 |
|
399 |
# @ bestwebsoft
|
400 |
+
#: bws_menu.php:499
|
401 |
msgid "Server"
|
402 |
msgstr "Server"
|
403 |
|
404 |
# @ bestwebsoft
|
405 |
+
#: bws_menu.php:500
|
406 |
msgid "Memory usage"
|
407 |
msgstr "Utilizzo memoria"
|
408 |
|
409 |
# @ bestwebsoft
|
410 |
+
#: bws_menu.php:501
|
411 |
msgid "MYSQL Version"
|
412 |
msgstr "Versione MYSQL"
|
413 |
|
414 |
# @ bestwebsoft
|
415 |
+
#: bws_menu.php:502
|
416 |
msgid "SQL Mode"
|
417 |
msgstr "Modalità SQL"
|
418 |
|
419 |
# @ bestwebsoft
|
420 |
+
#: bws_menu.php:503
|
421 |
msgid "PHP Version"
|
422 |
msgstr "Versione PHP"
|
423 |
|
424 |
# @ bestwebsoft
|
425 |
+
#: bws_menu.php:504
|
426 |
msgid "PHP Safe Mode"
|
427 |
msgstr "Safe Mode PHP"
|
428 |
|
429 |
# @ bestwebsoft
|
430 |
+
#: bws_menu.php:505
|
431 |
msgid "PHP Allow URL fopen"
|
432 |
msgstr "Consenti URL fopen PHP"
|
433 |
|
434 |
# @ bestwebsoft
|
435 |
+
#: bws_menu.php:506
|
436 |
msgid "PHP Memory Limit"
|
437 |
msgstr "Limite di memoria PHP"
|
438 |
|
439 |
# @ bestwebsoft
|
440 |
+
#: bws_menu.php:507
|
441 |
msgid "PHP Max Upload Size"
|
442 |
msgstr "Dimensione upload massima PHP"
|
443 |
|
444 |
# @ bestwebsoft
|
445 |
+
#: bws_menu.php:508
|
446 |
msgid "PHP Max Post Size"
|
447 |
msgstr "Dimensione massima Post PHP"
|
448 |
|
449 |
# @ bestwebsoft
|
450 |
+
#: bws_menu.php:509
|
451 |
msgid "PHP Max Script Execute Time"
|
452 |
msgstr "Tempo massimo di esecuzione PHP"
|
453 |
|
454 |
# @ bestwebsoft
|
455 |
+
#: bws_menu.php:510
|
456 |
msgid "PHP Exif support"
|
457 |
msgstr "Supporto Exif PHP"
|
458 |
|
459 |
# @ bestwebsoft
|
460 |
+
#: bws_menu.php:511
|
461 |
msgid "PHP IPTC support"
|
462 |
msgstr "Supporto IPTC PHP"
|
463 |
|
464 |
# @ bestwebsoft
|
465 |
+
#: bws_menu.php:512
|
466 |
msgid "PHP XML support"
|
467 |
msgstr "Supporto XML PHP"
|
468 |
|
469 |
# @ bestwebsoft
|
470 |
+
#: bws_menu.php:513
|
471 |
msgid "Site URL"
|
472 |
msgstr "URL sito"
|
473 |
|
474 |
# @ bestwebsoft
|
475 |
+
#: bws_menu.php:514
|
476 |
msgid "Home URL"
|
477 |
msgstr "URL home"
|
478 |
|
479 |
# @ bestwebsoft
|
480 |
+
#: bws_menu.php:517
|
481 |
msgid "WordPress Version"
|
482 |
msgstr "Versione WordPress"
|
483 |
|
484 |
# @ bestwebsoft
|
485 |
+
#: bws_menu.php:518
|
486 |
msgid "WordPress DB Version"
|
487 |
msgstr "Versione DB WordPress"
|
488 |
|
489 |
# @ bestwebsoft
|
490 |
+
#: bws_menu.php:519
|
491 |
msgid "Multisite"
|
492 |
msgstr "Multisito"
|
493 |
|
494 |
# @ bestwebsoft
|
495 |
+
#: bws_menu.php:520
|
496 |
msgid "Active Theme"
|
497 |
msgstr "Tema attivo"
|
498 |
|
499 |
# @ bestwebsoft
|
500 |
+
#: bws_menu.php:535
|
501 |
msgid "Please enter a valid email address."
|
502 |
msgstr "Per favore inserisci un indirizzo e-mail valido."
|
503 |
|
504 |
# @ bestwebsoft
|
505 |
+
#: bws_menu.php:539
|
506 |
msgid "Email with system info is sent to "
|
507 |
msgstr "Email con informazioni di sistema spedita a "
|
508 |
|
509 |
# @ bestwebsoft
|
510 |
+
#: bws_menu.php:543
|
511 |
msgid "Thank you for contacting us."
|
512 |
msgstr "Grazie per averci contattato."
|
513 |
|
514 |
# @ bestwebsoft
|
515 |
+
#: bws_menu.php:576
|
516 |
msgid "Sorry, email message could not be delivered."
|
517 |
msgstr "Spiacenti, il messaggio email non può essere inviato."
|
518 |
|
519 |
+
#: bws_menu.php:584
|
520 |
msgid "Need help?"
|
521 |
msgstr ""
|
522 |
|
523 |
+
#: bws_menu.php:585
|
524 |
msgid "Client area"
|
525 |
msgstr ""
|
526 |
|
527 |
# @ bestwebsoft
|
528 |
+
#: bws_menu.php:586
|
529 |
+
#: bws_menu.php:897
|
530 |
msgid "System status"
|
531 |
msgstr "Stato sistema"
|
532 |
|
533 |
# @ bestwebsoft
|
534 |
+
#: bws_menu.php:591
|
535 |
#, fuzzy
|
536 |
msgid "Plugins"
|
537 |
msgstr "Plugin Pro"
|
538 |
|
539 |
+
#: bws_menu.php:593
|
540 |
msgid "Themes"
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: bws_menu.php:598
|
544 |
msgid "All"
|
545 |
msgstr ""
|
546 |
|
547 |
# @ default
|
548 |
+
#: bws_menu.php:599
|
549 |
#, fuzzy
|
550 |
msgid "Installed"
|
551 |
msgstr "Installa %s"
|
552 |
|
553 |
# @ bestwebsoft
|
554 |
+
#: bws_menu.php:600
|
555 |
#, fuzzy
|
556 |
msgid "Recommended"
|
557 |
msgstr "Plugin raccomandati"
|
558 |
|
559 |
# @ bestwebsoft
|
560 |
+
#: bws_menu.php:604
|
561 |
msgid "Installed plugins"
|
562 |
msgstr "Plugin installati"
|
563 |
|
564 |
# @ bestwebsoft
|
565 |
# @ captcha
|
566 |
+
#: bws_menu.php:636
|
567 |
+
#: bws_menu.php:685
|
568 |
msgid "Settings"
|
569 |
msgstr "Impostazioni"
|
570 |
|
571 |
# @ bestwebsoft
|
572 |
+
#: bws_menu.php:657
|
573 |
+
#: bws_menu.php:714
|
574 |
#, fuzzy
|
575 |
msgid "Activate this plugin"
|
576 |
msgstr "Plugin attivi"
|
577 |
|
578 |
+
#: bws_menu.php:672
|
579 |
+
#: bws_menu.php:702
|
580 |
+
#: bws_menu.php:748
|
581 |
msgid "Go"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: bws_menu.php:676
|
585 |
+
#: bws_menu.php:706
|
586 |
+
#: bws_menu.php:752
|
587 |
msgid "DONATE"
|
588 |
msgstr ""
|
589 |
|
590 |
# @ bestwebsoft
|
591 |
+
#: bws_menu.php:722
|
592 |
msgid "Recommended plugins"
|
593 |
msgstr "Plugin raccomandati"
|
594 |
|
595 |
# @ default
|
596 |
+
#: bws_menu.php:760
|
597 |
#, fuzzy
|
598 |
msgid "Install now"
|
599 |
msgstr "Installa %s"
|
600 |
|
601 |
+
#: bws_menu.php:781
|
602 |
msgid "Try again"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: bws_menu.php:799
|
606 |
#, php-format
|
607 |
msgid "Preview “%s”"
|
608 |
msgstr ""
|
609 |
|
610 |
# @ default
|
611 |
+
#: bws_menu.php:830
|
612 |
#, php-format
|
613 |
msgid "Install %s"
|
614 |
msgstr "Installa %s"
|
615 |
|
616 |
# @ default
|
617 |
+
#: bws_menu.php:830
|
618 |
#, fuzzy
|
619 |
msgid "Install Now"
|
620 |
msgstr "Installa %s"
|
621 |
|
622 |
+
#: bws_menu.php:833
|
623 |
#, php-format
|
624 |
msgid "Update to version %s"
|
625 |
msgstr ""
|
626 |
|
627 |
+
#: bws_menu.php:833
|
628 |
msgid "Update"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: bws_menu.php:840
|
632 |
#, php-format
|
633 |
msgid "Preview %s"
|
634 |
msgstr ""
|
635 |
|
636 |
+
#: bws_menu.php:840
|
637 |
msgid "Preview"
|
638 |
msgstr ""
|
639 |
|
640 |
+
#: bws_menu.php:846
|
641 |
+
#: bws_menu.php:878
|
642 |
#, php-format
|
643 |
msgid "By %s"
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: bws_menu.php:852
|
647 |
msgid "Details"
|
648 |
msgstr ""
|
649 |
|
650 |
# @ default
|
651 |
+
#: bws_menu.php:884
|
652 |
#, fuzzy
|
653 |
msgid "Already Installed"
|
654 |
msgstr "Installa %s"
|
655 |
|
656 |
# @ bestwebsoft
|
657 |
+
#: bws_menu.php:900
|
658 |
msgid "Environment"
|
659 |
msgstr "Ambiente"
|
660 |
|
661 |
# @ bestwebsoft
|
662 |
+
#: bws_menu.php:911
|
663 |
msgid "Active Plugins"
|
664 |
msgstr "Plugin attivi"
|
665 |
|
666 |
# @ bestwebsoft
|
667 |
+
#: bws_menu.php:924
|
668 |
msgid "Inactive Plugins"
|
669 |
msgstr "Plugin inattivi"
|
670 |
|
671 |
# @ bestwebsoft
|
672 |
+
#: bws_menu.php:940
|
673 |
msgid "Send to support"
|
674 |
msgstr "Invia al supporto"
|
675 |
|
676 |
# @ bestwebsoft
|
677 |
+
#: bws_menu.php:947
|
678 |
msgid "Send to custom email »"
|
679 |
msgstr "Invia a una email personalizzata »"
|
680 |
|
bws_menu/languages/bestwebsoft-ja.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-ja.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: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: foken <foken@gmx.com>\n"
|
9 |
"Language: ja_JP\n"
|
@@ -183,8 +183,8 @@ msgstr ""
|
|
183 |
#: bws_functions.php:371
|
184 |
#: bws_functions.php:401
|
185 |
#: bws_functions.php:409
|
186 |
-
#: bws_menu.php:
|
187 |
-
#: bws_menu.php:
|
188 |
#, fuzzy
|
189 |
msgid "Activate"
|
190 |
msgstr "有効なcaptcha"
|
@@ -274,11 +274,11 @@ msgstr ""
|
|
274 |
|
275 |
#: bws_functions.php:552
|
276 |
#: bws_functions.php:605
|
277 |
-
#: bws_menu.php:
|
278 |
-
#: bws_menu.php:
|
279 |
-
#: bws_menu.php:
|
280 |
-
#: bws_menu.php:
|
281 |
-
#: bws_menu.php:
|
282 |
#, fuzzy
|
283 |
msgid "Learn more"
|
284 |
msgstr "もっと読む"
|
@@ -312,287 +312,312 @@ msgstr ""
|
|
312 |
msgid "Close"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
316 |
msgid "Not set"
|
317 |
msgstr "未設定"
|
318 |
|
319 |
-
#: bws_menu.php:
|
320 |
-
#: bws_menu.php:
|
321 |
msgid "On"
|
322 |
msgstr "On"
|
323 |
|
324 |
-
#: bws_menu.php:
|
325 |
-
#: bws_menu.php:
|
326 |
msgid "Off"
|
327 |
msgstr "Off"
|
328 |
|
329 |
-
#: bws_menu.php:
|
330 |
-
#: bws_menu.php:
|
331 |
-
#: bws_menu.php:462
|
332 |
-
#: bws_menu.php:463
|
333 |
-
#: bws_menu.php:464
|
334 |
#: bws_menu.php:476
|
|
|
|
|
|
|
335 |
msgid "N/A"
|
336 |
msgstr "該当なし"
|
337 |
|
338 |
-
#: bws_menu.php:
|
339 |
msgid " Mb"
|
340 |
msgstr " Mb"
|
341 |
|
342 |
-
#: bws_menu.php:
|
343 |
-
#: bws_menu.php:
|
344 |
-
#: bws_menu.php:
|
345 |
-
#: bws_menu.php:
|
346 |
msgid "Yes"
|
347 |
msgstr "はい"
|
348 |
|
349 |
-
#: bws_menu.php:
|
350 |
-
#: bws_menu.php:
|
351 |
-
#: bws_menu.php:
|
352 |
-
#: bws_menu.php:
|
353 |
msgid "No"
|
354 |
msgstr "いいえ"
|
355 |
|
356 |
-
#: bws_menu.php:
|
357 |
msgid "Operating System"
|
358 |
msgstr "オペレーション・システム"
|
359 |
|
360 |
-
#: bws_menu.php:
|
361 |
msgid "Server"
|
362 |
msgstr "サーバ"
|
363 |
|
364 |
-
#: bws_menu.php:
|
365 |
msgid "Memory usage"
|
366 |
msgstr "メモリー使用"
|
367 |
|
368 |
-
#: bws_menu.php:
|
369 |
msgid "MYSQL Version"
|
370 |
msgstr "MYSQL バージョン"
|
371 |
|
372 |
-
#: bws_menu.php:
|
373 |
msgid "SQL Mode"
|
374 |
msgstr "SQLモード"
|
375 |
|
376 |
-
#: bws_menu.php:
|
377 |
msgid "PHP Version"
|
378 |
msgstr "PHP バージョン"
|
379 |
|
380 |
-
#: bws_menu.php:
|
381 |
msgid "PHP Safe Mode"
|
382 |
msgstr "PHP Safe Mode"
|
383 |
|
384 |
-
#: bws_menu.php:
|
385 |
msgid "PHP Allow URL fopen"
|
386 |
msgstr "PHP Allow URL fopen"
|
387 |
|
388 |
-
#: bws_menu.php:
|
389 |
msgid "PHP Memory Limit"
|
390 |
msgstr "PHP Memory Limit"
|
391 |
|
392 |
-
#: bws_menu.php:
|
393 |
msgid "PHP Max Upload Size"
|
394 |
msgstr "PHP Max Upload Size"
|
395 |
|
396 |
-
#: bws_menu.php:
|
397 |
msgid "PHP Max Post Size"
|
398 |
msgstr "PHP Max Post Size"
|
399 |
|
400 |
-
#: bws_menu.php:
|
401 |
msgid "PHP Max Script Execute Time"
|
402 |
msgstr "PHP Max Script Execute Time"
|
403 |
|
404 |
-
#: bws_menu.php:
|
405 |
msgid "PHP Exif support"
|
406 |
msgstr "PHP Exif サポート"
|
407 |
|
408 |
-
#: bws_menu.php:
|
409 |
msgid "PHP IPTC support"
|
410 |
msgstr "PHP IPTC サポート"
|
411 |
|
412 |
-
#: bws_menu.php:
|
413 |
msgid "PHP XML support"
|
414 |
msgstr "PHP XML サポート"
|
415 |
|
416 |
-
#: bws_menu.php:
|
417 |
msgid "Site URL"
|
418 |
msgstr "サイトURL"
|
419 |
|
420 |
-
#: bws_menu.php:
|
421 |
msgid "Home URL"
|
422 |
msgstr "ホームURL"
|
423 |
|
424 |
-
#: bws_menu.php:
|
425 |
msgid "WordPress Version"
|
426 |
msgstr "WordPress バージョン"
|
427 |
|
428 |
-
#: bws_menu.php:
|
429 |
msgid "WordPress DB Version"
|
430 |
msgstr "WordPress データベース バージョン"
|
431 |
|
432 |
-
#: bws_menu.php:
|
433 |
msgid "Multisite"
|
434 |
msgstr "複数サイト"
|
435 |
|
436 |
-
#: bws_menu.php:
|
437 |
msgid "Active Theme"
|
438 |
msgstr "有効なテーマ"
|
439 |
|
440 |
-
#: bws_menu.php:
|
441 |
msgid "Please enter a valid email address."
|
442 |
msgstr "正確なEメール・アドレスを入力して下さい。"
|
443 |
|
444 |
-
#: bws_menu.php:
|
445 |
msgid "Email with system info is sent to "
|
446 |
msgstr "システム情報をメールで送信:"
|
447 |
|
448 |
-
#: bws_menu.php:
|
449 |
msgid "Thank you for contacting us."
|
450 |
msgstr "ご連絡ありがとうございます"
|
451 |
|
452 |
-
#: bws_menu.php:
|
453 |
msgid "Sorry, email message could not be delivered."
|
454 |
msgstr "申し訳ございませんが、貴方のemailは配信できませんでした。"
|
455 |
|
456 |
-
#: bws_menu.php:
|
457 |
msgid "Need help?"
|
458 |
msgstr ""
|
459 |
|
460 |
-
#: bws_menu.php:
|
461 |
msgid "Client area"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: bws_menu.php:
|
465 |
-
#: bws_menu.php:
|
466 |
msgid "System status"
|
467 |
msgstr "システム状況"
|
468 |
|
469 |
-
#: bws_menu.php:
|
470 |
#, fuzzy
|
471 |
msgid "Plugins"
|
472 |
msgstr "Pro Plugins"
|
473 |
|
474 |
-
#: bws_menu.php:
|
475 |
msgid "Themes"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: bws_menu.php:
|
479 |
msgid "All"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: bws_menu.php:
|
483 |
#, fuzzy
|
484 |
msgid "Installed"
|
485 |
msgstr "%s 導入"
|
486 |
|
487 |
-
#: bws_menu.php:
|
488 |
#, fuzzy
|
489 |
msgid "Recommended"
|
490 |
msgstr "推奨プラグイン"
|
491 |
|
492 |
-
#: bws_menu.php:
|
493 |
msgid "Installed plugins"
|
494 |
msgstr "導入済みプラグイン"
|
495 |
|
496 |
-
#: bws_menu.php:
|
497 |
-
#: bws_menu.php:
|
498 |
msgid "Settings"
|
499 |
msgstr "設定"
|
500 |
|
501 |
-
#: bws_menu.php:
|
502 |
-
#: bws_menu.php:
|
503 |
#, fuzzy
|
504 |
msgid "Activate this plugin"
|
505 |
msgstr "有効なプラグイン"
|
506 |
|
507 |
-
#: bws_menu.php:
|
508 |
-
#: bws_menu.php:
|
509 |
-
#: bws_menu.php:
|
510 |
msgid "Go"
|
511 |
msgstr ""
|
512 |
|
513 |
-
#: bws_menu.php:
|
514 |
-
#: bws_menu.php:
|
515 |
-
#: bws_menu.php:
|
516 |
msgid "DONATE"
|
517 |
msgstr ""
|
518 |
|
519 |
-
#: bws_menu.php:
|
520 |
msgid "Recommended plugins"
|
521 |
msgstr "推奨プラグイン"
|
522 |
|
523 |
-
#: bws_menu.php:
|
524 |
#, fuzzy
|
525 |
msgid "Install now"
|
526 |
msgstr "Installa Ora"
|
527 |
|
528 |
-
#: bws_menu.php:
|
529 |
msgid "Try again"
|
530 |
msgstr ""
|
531 |
|
532 |
-
#: bws_menu.php:
|
533 |
#, php-format
|
534 |
msgid "Preview “%s”"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: bws_menu.php:
|
538 |
#, php-format
|
539 |
msgid "Install %s"
|
540 |
msgstr "%s 導入"
|
541 |
|
542 |
-
#: bws_menu.php:
|
543 |
msgid "Install Now"
|
544 |
msgstr "Installa Ora"
|
545 |
|
546 |
-
#: bws_menu.php:
|
547 |
#, php-format
|
548 |
msgid "Update to version %s"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: bws_menu.php:
|
552 |
msgid "Update"
|
553 |
msgstr ""
|
554 |
|
555 |
-
#: bws_menu.php:
|
556 |
#, php-format
|
557 |
msgid "Preview %s"
|
558 |
msgstr ""
|
559 |
|
560 |
-
#: bws_menu.php:
|
561 |
msgid "Preview"
|
562 |
msgstr ""
|
563 |
|
564 |
-
#: bws_menu.php:
|
565 |
-
#: bws_menu.php:
|
566 |
#, php-format
|
567 |
msgid "By %s"
|
568 |
msgstr ""
|
569 |
|
570 |
-
#: bws_menu.php:
|
571 |
msgid "Details"
|
572 |
msgstr ""
|
573 |
|
574 |
-
#: bws_menu.php:
|
575 |
#, fuzzy
|
576 |
msgid "Already Installed"
|
577 |
msgstr "%s 導入"
|
578 |
|
579 |
-
#: bws_menu.php:
|
580 |
msgid "Environment"
|
581 |
msgstr "環境"
|
582 |
|
583 |
-
#: bws_menu.php:
|
584 |
msgid "Active Plugins"
|
585 |
msgstr "有効なプラグイン"
|
586 |
|
587 |
-
#: bws_menu.php:
|
588 |
msgid "Inactive Plugins"
|
589 |
msgstr "無効なプラグイン"
|
590 |
|
591 |
-
#: bws_menu.php:
|
592 |
msgid "Send to support"
|
593 |
msgstr "サポートに送信"
|
594 |
|
595 |
-
#: bws_menu.php:
|
596 |
msgid "Send to custom email »"
|
597 |
msgstr "カスタムEメールに送信»"
|
598 |
|
@@ -1093,9 +1118,6 @@ msgstr "カスタムEメールに送信»"
|
|
1093 |
#~ msgid "Support"
|
1094 |
#~ msgstr "サポート"
|
1095 |
|
1096 |
-
#~ msgid "Are you sure that you want to delete this language data?"
|
1097 |
-
#~ msgstr "本当に、この言語データを削除しますか?"
|
1098 |
-
|
1099 |
#~ msgid "Contact Form Options"
|
1100 |
#~ msgstr "コンタクトフォーム オプション"
|
1101 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-06-12 15:57+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-06-12 15:57+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: foken <foken@gmx.com>\n"
|
9 |
"Language: ja_JP\n"
|
183 |
#: bws_functions.php:371
|
184 |
#: bws_functions.php:401
|
185 |
#: bws_functions.php:409
|
186 |
+
#: bws_menu.php:657
|
187 |
+
#: bws_menu.php:714
|
188 |
#, fuzzy
|
189 |
msgid "Activate"
|
190 |
msgstr "有効なcaptcha"
|
274 |
|
275 |
#: bws_functions.php:552
|
276 |
#: bws_functions.php:605
|
277 |
+
#: bws_menu.php:633
|
278 |
+
#: bws_menu.php:655
|
279 |
+
#: bws_menu.php:682
|
280 |
+
#: bws_menu.php:712
|
281 |
+
#: bws_menu.php:758
|
282 |
#, fuzzy
|
283 |
msgid "Learn more"
|
284 |
msgstr "もっと読む"
|
312 |
msgid "Close"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: bws_functions.php:771
|
316 |
+
#: bws_functions.php:784
|
317 |
+
msgid "Restore all plugin settings to defaults"
|
318 |
+
msgstr ""
|
319 |
+
|
320 |
+
#: bws_functions.php:773
|
321 |
+
#: bws_functions.php:786
|
322 |
+
#, fuzzy
|
323 |
+
msgid "Restore settings"
|
324 |
+
msgstr "追加設定"
|
325 |
+
|
326 |
+
#: bws_functions.php:797
|
327 |
+
#, fuzzy
|
328 |
+
msgid "Are you sure you want to restore all settings by default?"
|
329 |
+
msgstr "本当に、この言語データを削除しますか?"
|
330 |
+
|
331 |
+
#: bws_functions.php:799
|
332 |
+
msgid "Yes, restore all settings"
|
333 |
+
msgstr ""
|
334 |
+
|
335 |
+
#: bws_functions.php:800
|
336 |
+
#, fuzzy
|
337 |
+
msgid "No, go back to the settings page"
|
338 |
+
msgstr "追加設定"
|
339 |
+
|
340 |
+
#: bws_menu.php:470
|
341 |
msgid "Not set"
|
342 |
msgstr "未設定"
|
343 |
|
344 |
+
#: bws_menu.php:472
|
345 |
+
#: bws_menu.php:473
|
346 |
msgid "On"
|
347 |
msgstr "On"
|
348 |
|
349 |
+
#: bws_menu.php:472
|
350 |
+
#: bws_menu.php:473
|
351 |
msgid "Off"
|
352 |
msgstr "Off"
|
353 |
|
354 |
+
#: bws_menu.php:474
|
355 |
+
#: bws_menu.php:475
|
|
|
|
|
|
|
356 |
#: bws_menu.php:476
|
357 |
+
#: bws_menu.php:477
|
358 |
+
#: bws_menu.php:478
|
359 |
+
#: bws_menu.php:490
|
360 |
msgid "N/A"
|
361 |
msgstr "該当なし"
|
362 |
|
363 |
+
#: bws_menu.php:478
|
364 |
msgid " Mb"
|
365 |
msgstr " Mb"
|
366 |
|
367 |
+
#: bws_menu.php:479
|
368 |
+
#: bws_menu.php:480
|
369 |
+
#: bws_menu.php:481
|
370 |
+
#: bws_menu.php:486
|
371 |
msgid "Yes"
|
372 |
msgstr "はい"
|
373 |
|
374 |
+
#: bws_menu.php:479
|
375 |
+
#: bws_menu.php:480
|
376 |
+
#: bws_menu.php:481
|
377 |
+
#: bws_menu.php:488
|
378 |
msgid "No"
|
379 |
msgstr "いいえ"
|
380 |
|
381 |
+
#: bws_menu.php:498
|
382 |
msgid "Operating System"
|
383 |
msgstr "オペレーション・システム"
|
384 |
|
385 |
+
#: bws_menu.php:499
|
386 |
msgid "Server"
|
387 |
msgstr "サーバ"
|
388 |
|
389 |
+
#: bws_menu.php:500
|
390 |
msgid "Memory usage"
|
391 |
msgstr "メモリー使用"
|
392 |
|
393 |
+
#: bws_menu.php:501
|
394 |
msgid "MYSQL Version"
|
395 |
msgstr "MYSQL バージョン"
|
396 |
|
397 |
+
#: bws_menu.php:502
|
398 |
msgid "SQL Mode"
|
399 |
msgstr "SQLモード"
|
400 |
|
401 |
+
#: bws_menu.php:503
|
402 |
msgid "PHP Version"
|
403 |
msgstr "PHP バージョン"
|
404 |
|
405 |
+
#: bws_menu.php:504
|
406 |
msgid "PHP Safe Mode"
|
407 |
msgstr "PHP Safe Mode"
|
408 |
|
409 |
+
#: bws_menu.php:505
|
410 |
msgid "PHP Allow URL fopen"
|
411 |
msgstr "PHP Allow URL fopen"
|
412 |
|
413 |
+
#: bws_menu.php:506
|
414 |
msgid "PHP Memory Limit"
|
415 |
msgstr "PHP Memory Limit"
|
416 |
|
417 |
+
#: bws_menu.php:507
|
418 |
msgid "PHP Max Upload Size"
|
419 |
msgstr "PHP Max Upload Size"
|
420 |
|
421 |
+
#: bws_menu.php:508
|
422 |
msgid "PHP Max Post Size"
|
423 |
msgstr "PHP Max Post Size"
|
424 |
|
425 |
+
#: bws_menu.php:509
|
426 |
msgid "PHP Max Script Execute Time"
|
427 |
msgstr "PHP Max Script Execute Time"
|
428 |
|
429 |
+
#: bws_menu.php:510
|
430 |
msgid "PHP Exif support"
|
431 |
msgstr "PHP Exif サポート"
|
432 |
|
433 |
+
#: bws_menu.php:511
|
434 |
msgid "PHP IPTC support"
|
435 |
msgstr "PHP IPTC サポート"
|
436 |
|
437 |
+
#: bws_menu.php:512
|
438 |
msgid "PHP XML support"
|
439 |
msgstr "PHP XML サポート"
|
440 |
|
441 |
+
#: bws_menu.php:513
|
442 |
msgid "Site URL"
|
443 |
msgstr "サイトURL"
|
444 |
|
445 |
+
#: bws_menu.php:514
|
446 |
msgid "Home URL"
|
447 |
msgstr "ホームURL"
|
448 |
|
449 |
+
#: bws_menu.php:517
|
450 |
msgid "WordPress Version"
|
451 |
msgstr "WordPress バージョン"
|
452 |
|
453 |
+
#: bws_menu.php:518
|
454 |
msgid "WordPress DB Version"
|
455 |
msgstr "WordPress データベース バージョン"
|
456 |
|
457 |
+
#: bws_menu.php:519
|
458 |
msgid "Multisite"
|
459 |
msgstr "複数サイト"
|
460 |
|
461 |
+
#: bws_menu.php:520
|
462 |
msgid "Active Theme"
|
463 |
msgstr "有効なテーマ"
|
464 |
|
465 |
+
#: bws_menu.php:535
|
466 |
msgid "Please enter a valid email address."
|
467 |
msgstr "正確なEメール・アドレスを入力して下さい。"
|
468 |
|
469 |
+
#: bws_menu.php:539
|
470 |
msgid "Email with system info is sent to "
|
471 |
msgstr "システム情報をメールで送信:"
|
472 |
|
473 |
+
#: bws_menu.php:543
|
474 |
msgid "Thank you for contacting us."
|
475 |
msgstr "ご連絡ありがとうございます"
|
476 |
|
477 |
+
#: bws_menu.php:576
|
478 |
msgid "Sorry, email message could not be delivered."
|
479 |
msgstr "申し訳ございませんが、貴方のemailは配信できませんでした。"
|
480 |
|
481 |
+
#: bws_menu.php:584
|
482 |
msgid "Need help?"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: bws_menu.php:585
|
486 |
msgid "Client area"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: bws_menu.php:586
|
490 |
+
#: bws_menu.php:897
|
491 |
msgid "System status"
|
492 |
msgstr "システム状況"
|
493 |
|
494 |
+
#: bws_menu.php:591
|
495 |
#, fuzzy
|
496 |
msgid "Plugins"
|
497 |
msgstr "Pro Plugins"
|
498 |
|
499 |
+
#: bws_menu.php:593
|
500 |
msgid "Themes"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: bws_menu.php:598
|
504 |
msgid "All"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: bws_menu.php:599
|
508 |
#, fuzzy
|
509 |
msgid "Installed"
|
510 |
msgstr "%s 導入"
|
511 |
|
512 |
+
#: bws_menu.php:600
|
513 |
#, fuzzy
|
514 |
msgid "Recommended"
|
515 |
msgstr "推奨プラグイン"
|
516 |
|
517 |
+
#: bws_menu.php:604
|
518 |
msgid "Installed plugins"
|
519 |
msgstr "導入済みプラグイン"
|
520 |
|
521 |
+
#: bws_menu.php:636
|
522 |
+
#: bws_menu.php:685
|
523 |
msgid "Settings"
|
524 |
msgstr "設定"
|
525 |
|
526 |
+
#: bws_menu.php:657
|
527 |
+
#: bws_menu.php:714
|
528 |
#, fuzzy
|
529 |
msgid "Activate this plugin"
|
530 |
msgstr "有効なプラグイン"
|
531 |
|
532 |
+
#: bws_menu.php:672
|
533 |
+
#: bws_menu.php:702
|
534 |
+
#: bws_menu.php:748
|
535 |
msgid "Go"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: bws_menu.php:676
|
539 |
+
#: bws_menu.php:706
|
540 |
+
#: bws_menu.php:752
|
541 |
msgid "DONATE"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: bws_menu.php:722
|
545 |
msgid "Recommended plugins"
|
546 |
msgstr "推奨プラグイン"
|
547 |
|
548 |
+
#: bws_menu.php:760
|
549 |
#, fuzzy
|
550 |
msgid "Install now"
|
551 |
msgstr "Installa Ora"
|
552 |
|
553 |
+
#: bws_menu.php:781
|
554 |
msgid "Try again"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: bws_menu.php:799
|
558 |
#, php-format
|
559 |
msgid "Preview “%s”"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: bws_menu.php:830
|
563 |
#, php-format
|
564 |
msgid "Install %s"
|
565 |
msgstr "%s 導入"
|
566 |
|
567 |
+
#: bws_menu.php:830
|
568 |
msgid "Install Now"
|
569 |
msgstr "Installa Ora"
|
570 |
|
571 |
+
#: bws_menu.php:833
|
572 |
#, php-format
|
573 |
msgid "Update to version %s"
|
574 |
msgstr ""
|
575 |
|
576 |
+
#: bws_menu.php:833
|
577 |
msgid "Update"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: bws_menu.php:840
|
581 |
#, php-format
|
582 |
msgid "Preview %s"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: bws_menu.php:840
|
586 |
msgid "Preview"
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: bws_menu.php:846
|
590 |
+
#: bws_menu.php:878
|
591 |
#, php-format
|
592 |
msgid "By %s"
|
593 |
msgstr ""
|
594 |
|
595 |
+
#: bws_menu.php:852
|
596 |
msgid "Details"
|
597 |
msgstr ""
|
598 |
|
599 |
+
#: bws_menu.php:884
|
600 |
#, fuzzy
|
601 |
msgid "Already Installed"
|
602 |
msgstr "%s 導入"
|
603 |
|
604 |
+
#: bws_menu.php:900
|
605 |
msgid "Environment"
|
606 |
msgstr "環境"
|
607 |
|
608 |
+
#: bws_menu.php:911
|
609 |
msgid "Active Plugins"
|
610 |
msgstr "有効なプラグイン"
|
611 |
|
612 |
+
#: bws_menu.php:924
|
613 |
msgid "Inactive Plugins"
|
614 |
msgstr "無効なプラグイン"
|
615 |
|
616 |
+
#: bws_menu.php:940
|
617 |
msgid "Send to support"
|
618 |
msgstr "サポートに送信"
|
619 |
|
620 |
+
#: bws_menu.php:947
|
621 |
msgid "Send to custom email »"
|
622 |
msgstr "カスタムEメールに送信»"
|
623 |
|
1118 |
#~ msgid "Support"
|
1119 |
#~ msgstr "サポート"
|
1120 |
|
|
|
|
|
|
|
1121 |
#~ msgid "Contact Form Options"
|
1122 |
#~ msgstr "コンタクトフォーム オプション"
|
1123 |
|
bws_menu/languages/bestwebsoft-pt_BR.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-pt_BR.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: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Dionizio Bonfim Bach | DJIO <wordpress@djio.com.br>\n"
|
9 |
"Language: pt_BR\n"
|
@@ -188,8 +188,8 @@ msgstr ""
|
|
188 |
#: bws_functions.php:371
|
189 |
#: bws_functions.php:401
|
190 |
#: bws_functions.php:409
|
191 |
-
#: bws_menu.php:
|
192 |
-
#: bws_menu.php:
|
193 |
#, fuzzy
|
194 |
msgid "Activate"
|
195 |
msgstr "Plugins ativados"
|
@@ -279,11 +279,11 @@ msgstr ""
|
|
279 |
# @ captcha
|
280 |
#: bws_functions.php:552
|
281 |
#: bws_functions.php:605
|
282 |
-
#: bws_menu.php:
|
283 |
-
#: bws_menu.php:
|
284 |
-
#: bws_menu.php:
|
285 |
-
#: bws_menu.php:
|
286 |
-
#: bws_menu.php:
|
287 |
#, fuzzy
|
288 |
msgid "Learn more"
|
289 |
msgstr "Leia Mais"
|
@@ -317,337 +317,359 @@ msgstr ""
|
|
317 |
msgid "Close"
|
318 |
msgstr ""
|
319 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
320 |
# @ captcha
|
321 |
-
#: bws_menu.php:
|
322 |
msgid "Not set"
|
323 |
msgstr "Não definido"
|
324 |
|
325 |
# @ captcha
|
326 |
-
#: bws_menu.php:
|
327 |
-
#: bws_menu.php:
|
328 |
msgid "On"
|
329 |
msgstr "Ligado"
|
330 |
|
331 |
# @ captcha
|
332 |
-
#: bws_menu.php:
|
333 |
-
#: bws_menu.php:
|
334 |
msgid "Off"
|
335 |
msgstr "Desligado"
|
336 |
|
337 |
# @ captcha
|
338 |
-
#: bws_menu.php:
|
339 |
-
#: bws_menu.php:
|
340 |
-
#: bws_menu.php:462
|
341 |
-
#: bws_menu.php:463
|
342 |
-
#: bws_menu.php:464
|
343 |
#: bws_menu.php:476
|
|
|
|
|
|
|
344 |
msgid "N/A"
|
345 |
msgstr "N/D"
|
346 |
|
347 |
# @ captcha
|
348 |
-
#: bws_menu.php:
|
349 |
msgid " Mb"
|
350 |
msgstr " Mb"
|
351 |
|
352 |
# @ captcha
|
353 |
-
#: bws_menu.php:
|
354 |
-
#: bws_menu.php:
|
355 |
-
#: bws_menu.php:
|
356 |
-
#: bws_menu.php:
|
357 |
msgid "Yes"
|
358 |
msgstr "Sim"
|
359 |
|
360 |
# @ captcha
|
361 |
-
#: bws_menu.php:
|
362 |
-
#: bws_menu.php:
|
363 |
-
#: bws_menu.php:
|
364 |
-
#: bws_menu.php:
|
365 |
msgid "No"
|
366 |
msgstr "Não"
|
367 |
|
368 |
# @ captcha
|
369 |
-
#: bws_menu.php:
|
370 |
msgid "Operating System"
|
371 |
msgstr "Sistema Operacional"
|
372 |
|
373 |
# @ captcha
|
374 |
-
#: bws_menu.php:
|
375 |
msgid "Server"
|
376 |
msgstr "Servidor"
|
377 |
|
378 |
# @ captcha
|
379 |
-
#: bws_menu.php:
|
380 |
msgid "Memory usage"
|
381 |
msgstr "Uso de memória"
|
382 |
|
383 |
# @ captcha
|
384 |
-
#: bws_menu.php:
|
385 |
msgid "MYSQL Version"
|
386 |
msgstr "Versão do MySQL"
|
387 |
|
388 |
# @ captcha
|
389 |
-
#: bws_menu.php:
|
390 |
msgid "SQL Mode"
|
391 |
msgstr "Modo SQL"
|
392 |
|
393 |
# @ captcha
|
394 |
-
#: bws_menu.php:
|
395 |
msgid "PHP Version"
|
396 |
msgstr "Versão do PHP"
|
397 |
|
398 |
# @ captcha
|
399 |
-
#: bws_menu.php:
|
400 |
msgid "PHP Safe Mode"
|
401 |
msgstr "Modo de Segurança do PHP"
|
402 |
|
403 |
# @ captcha
|
404 |
-
#: bws_menu.php:
|
405 |
msgid "PHP Allow URL fopen"
|
406 |
msgstr "Permissão de fopen de URL do PHP"
|
407 |
|
408 |
# @ captcha
|
409 |
-
#: bws_menu.php:
|
410 |
msgid "PHP Memory Limit"
|
411 |
msgstr "Limite de Memória do PHP"
|
412 |
|
413 |
# @ captcha
|
414 |
-
#: bws_menu.php:
|
415 |
msgid "PHP Max Upload Size"
|
416 |
msgstr "Tamanho Máximo de Upload no PHP"
|
417 |
|
418 |
# @ captcha
|
419 |
-
#: bws_menu.php:
|
420 |
msgid "PHP Max Post Size"
|
421 |
msgstr "Tamanho Máximo de Envio do PHP"
|
422 |
|
423 |
# @ captcha
|
424 |
-
#: bws_menu.php:
|
425 |
msgid "PHP Max Script Execute Time"
|
426 |
msgstr "Tempo de Execução Máximo do PHP"
|
427 |
|
428 |
# @ captcha
|
429 |
-
#: bws_menu.php:
|
430 |
msgid "PHP Exif support"
|
431 |
msgstr "Suporte a Exif no PHP"
|
432 |
|
433 |
# @ captcha
|
434 |
-
#: bws_menu.php:
|
435 |
msgid "PHP IPTC support"
|
436 |
msgstr "Suporte da IPTC no PHP"
|
437 |
|
438 |
# @ captcha
|
439 |
-
#: bws_menu.php:
|
440 |
msgid "PHP XML support"
|
441 |
msgstr "Suporte a XML no PHP"
|
442 |
|
443 |
# @ captcha
|
444 |
-
#: bws_menu.php:
|
445 |
msgid "Site URL"
|
446 |
msgstr "URL do Site"
|
447 |
|
448 |
# @ captcha
|
449 |
-
#: bws_menu.php:
|
450 |
msgid "Home URL"
|
451 |
msgstr "URL da Página Inicial"
|
452 |
|
453 |
# @ captcha
|
454 |
-
#: bws_menu.php:
|
455 |
msgid "WordPress Version"
|
456 |
msgstr "Versão do WordPress"
|
457 |
|
458 |
# @ captcha
|
459 |
-
#: bws_menu.php:
|
460 |
msgid "WordPress DB Version"
|
461 |
msgstr "Versão do DB do WordPress"
|
462 |
|
463 |
# @ captcha
|
464 |
-
#: bws_menu.php:
|
465 |
msgid "Multisite"
|
466 |
msgstr "Multisite"
|
467 |
|
468 |
# @ captcha
|
469 |
-
#: bws_menu.php:
|
470 |
msgid "Active Theme"
|
471 |
msgstr "Tema Ativo"
|
472 |
|
473 |
# @ captcha
|
474 |
-
#: bws_menu.php:
|
475 |
msgid "Please enter a valid email address."
|
476 |
msgstr "Por favor, informe um endereço de email válido."
|
477 |
|
478 |
# @ captcha
|
479 |
-
#: bws_menu.php:
|
480 |
msgid "Email with system info is sent to "
|
481 |
msgstr "Email com informações do sistema é enviado para "
|
482 |
|
483 |
# @ captcha
|
484 |
-
#: bws_menu.php:
|
485 |
msgid "Thank you for contacting us."
|
486 |
msgstr "Obrigado por nos contatar."
|
487 |
|
488 |
# @ captcha
|
489 |
-
#: bws_menu.php:
|
490 |
msgid "Sorry, email message could not be delivered."
|
491 |
msgstr "Desculpe, a mensagem de email não pôde ser enviada."
|
492 |
|
493 |
-
#: bws_menu.php:
|
494 |
msgid "Need help?"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: bws_menu.php:
|
498 |
msgid "Client area"
|
499 |
msgstr ""
|
500 |
|
501 |
# @ captcha
|
502 |
-
#: bws_menu.php:
|
503 |
-
#: bws_menu.php:
|
504 |
msgid "System status"
|
505 |
msgstr "Status do sistema"
|
506 |
|
507 |
# @ captcha
|
508 |
-
#: bws_menu.php:
|
509 |
#, fuzzy
|
510 |
msgid "Plugins"
|
511 |
msgstr "Plugins Pro"
|
512 |
|
513 |
-
#: bws_menu.php:
|
514 |
msgid "Themes"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: bws_menu.php:
|
518 |
msgid "All"
|
519 |
msgstr ""
|
520 |
|
521 |
# @ default
|
522 |
-
#: bws_menu.php:
|
523 |
#, fuzzy
|
524 |
msgid "Installed"
|
525 |
msgstr "Instalar %s"
|
526 |
|
527 |
# @ captcha
|
528 |
-
#: bws_menu.php:
|
529 |
#, fuzzy
|
530 |
msgid "Recommended"
|
531 |
msgstr "Plugins Recomendados"
|
532 |
|
533 |
# @ captcha
|
534 |
-
#: bws_menu.php:
|
535 |
msgid "Installed plugins"
|
536 |
msgstr "Plugins Instalados"
|
537 |
|
538 |
# @ captcha
|
539 |
-
#: bws_menu.php:
|
540 |
-
#: bws_menu.php:
|
541 |
msgid "Settings"
|
542 |
msgstr "Configurações"
|
543 |
|
544 |
# @ captcha
|
545 |
-
#: bws_menu.php:
|
546 |
-
#: bws_menu.php:
|
547 |
#, fuzzy
|
548 |
msgid "Activate this plugin"
|
549 |
msgstr "Plugins ativados"
|
550 |
|
551 |
-
#: bws_menu.php:
|
552 |
-
#: bws_menu.php:
|
553 |
-
#: bws_menu.php:
|
554 |
msgid "Go"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#: bws_menu.php:
|
558 |
-
#: bws_menu.php:
|
559 |
-
#: bws_menu.php:
|
560 |
msgid "DONATE"
|
561 |
msgstr ""
|
562 |
|
563 |
# @ captcha
|
564 |
-
#: bws_menu.php:
|
565 |
msgid "Recommended plugins"
|
566 |
msgstr "Plugins Recomendados"
|
567 |
|
568 |
# @ default
|
569 |
-
#: bws_menu.php:
|
570 |
#, fuzzy
|
571 |
msgid "Install now"
|
572 |
msgstr "Instalar %s"
|
573 |
|
574 |
-
#: bws_menu.php:
|
575 |
msgid "Try again"
|
576 |
msgstr ""
|
577 |
|
578 |
-
#: bws_menu.php:
|
579 |
#, php-format
|
580 |
msgid "Preview “%s”"
|
581 |
msgstr ""
|
582 |
|
583 |
# @ default
|
584 |
-
#: bws_menu.php:
|
585 |
#, php-format
|
586 |
msgid "Install %s"
|
587 |
msgstr "Instalar %s"
|
588 |
|
589 |
# @ default
|
590 |
-
#: bws_menu.php:
|
591 |
#, fuzzy
|
592 |
msgid "Install Now"
|
593 |
msgstr "Instalar %s"
|
594 |
|
595 |
-
#: bws_menu.php:
|
596 |
#, php-format
|
597 |
msgid "Update to version %s"
|
598 |
msgstr ""
|
599 |
|
600 |
-
#: bws_menu.php:
|
601 |
msgid "Update"
|
602 |
msgstr ""
|
603 |
|
604 |
-
#: bws_menu.php:
|
605 |
#, php-format
|
606 |
msgid "Preview %s"
|
607 |
msgstr ""
|
608 |
|
609 |
-
#: bws_menu.php:
|
610 |
msgid "Preview"
|
611 |
msgstr ""
|
612 |
|
613 |
-
#: bws_menu.php:
|
614 |
-
#: bws_menu.php:
|
615 |
#, php-format
|
616 |
msgid "By %s"
|
617 |
msgstr ""
|
618 |
|
619 |
-
#: bws_menu.php:
|
620 |
msgid "Details"
|
621 |
msgstr ""
|
622 |
|
623 |
# @ default
|
624 |
-
#: bws_menu.php:
|
625 |
#, fuzzy
|
626 |
msgid "Already Installed"
|
627 |
msgstr "Instalar %s"
|
628 |
|
629 |
# @ captcha
|
630 |
-
#: bws_menu.php:
|
631 |
msgid "Environment"
|
632 |
msgstr "Ambiente"
|
633 |
|
634 |
# @ captcha
|
635 |
-
#: bws_menu.php:
|
636 |
msgid "Active Plugins"
|
637 |
msgstr "Plugins Ativos"
|
638 |
|
639 |
# @ captcha
|
640 |
-
#: bws_menu.php:
|
641 |
msgid "Inactive Plugins"
|
642 |
msgstr "Plugins Inativos"
|
643 |
|
644 |
# @ captcha
|
645 |
-
#: bws_menu.php:
|
646 |
msgid "Send to support"
|
647 |
msgstr "Enviar para o suporte"
|
648 |
|
649 |
# @ captcha
|
650 |
-
#: bws_menu.php:
|
651 |
msgid "Send to custom email »"
|
652 |
msgstr "Enviar para email personalizado »"
|
653 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-06-12 15:57+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-06-12 15:57+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Dionizio Bonfim Bach | DJIO <wordpress@djio.com.br>\n"
|
9 |
"Language: pt_BR\n"
|
188 |
#: bws_functions.php:371
|
189 |
#: bws_functions.php:401
|
190 |
#: bws_functions.php:409
|
191 |
+
#: bws_menu.php:657
|
192 |
+
#: bws_menu.php:714
|
193 |
#, fuzzy
|
194 |
msgid "Activate"
|
195 |
msgstr "Plugins ativados"
|
279 |
# @ captcha
|
280 |
#: bws_functions.php:552
|
281 |
#: bws_functions.php:605
|
282 |
+
#: bws_menu.php:633
|
283 |
+
#: bws_menu.php:655
|
284 |
+
#: bws_menu.php:682
|
285 |
+
#: bws_menu.php:712
|
286 |
+
#: bws_menu.php:758
|
287 |
#, fuzzy
|
288 |
msgid "Learn more"
|
289 |
msgstr "Leia Mais"
|
317 |
msgid "Close"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: bws_functions.php:771
|
321 |
+
#: bws_functions.php:784
|
322 |
+
msgid "Restore all plugin settings to defaults"
|
323 |
+
msgstr ""
|
324 |
+
|
325 |
+
#: bws_functions.php:773
|
326 |
+
#: bws_functions.php:786
|
327 |
+
msgid "Restore settings"
|
328 |
+
msgstr ""
|
329 |
+
|
330 |
+
#: bws_functions.php:797
|
331 |
+
msgid "Are you sure you want to restore all settings by default?"
|
332 |
+
msgstr ""
|
333 |
+
|
334 |
+
#: bws_functions.php:799
|
335 |
+
msgid "Yes, restore all settings"
|
336 |
+
msgstr ""
|
337 |
+
|
338 |
+
#: bws_functions.php:800
|
339 |
+
msgid "No, go back to the settings page"
|
340 |
+
msgstr ""
|
341 |
+
|
342 |
# @ captcha
|
343 |
+
#: bws_menu.php:470
|
344 |
msgid "Not set"
|
345 |
msgstr "Não definido"
|
346 |
|
347 |
# @ captcha
|
348 |
+
#: bws_menu.php:472
|
349 |
+
#: bws_menu.php:473
|
350 |
msgid "On"
|
351 |
msgstr "Ligado"
|
352 |
|
353 |
# @ captcha
|
354 |
+
#: bws_menu.php:472
|
355 |
+
#: bws_menu.php:473
|
356 |
msgid "Off"
|
357 |
msgstr "Desligado"
|
358 |
|
359 |
# @ captcha
|
360 |
+
#: bws_menu.php:474
|
361 |
+
#: bws_menu.php:475
|
|
|
|
|
|
|
362 |
#: bws_menu.php:476
|
363 |
+
#: bws_menu.php:477
|
364 |
+
#: bws_menu.php:478
|
365 |
+
#: bws_menu.php:490
|
366 |
msgid "N/A"
|
367 |
msgstr "N/D"
|
368 |
|
369 |
# @ captcha
|
370 |
+
#: bws_menu.php:478
|
371 |
msgid " Mb"
|
372 |
msgstr " Mb"
|
373 |
|
374 |
# @ captcha
|
375 |
+
#: bws_menu.php:479
|
376 |
+
#: bws_menu.php:480
|
377 |
+
#: bws_menu.php:481
|
378 |
+
#: bws_menu.php:486
|
379 |
msgid "Yes"
|
380 |
msgstr "Sim"
|
381 |
|
382 |
# @ captcha
|
383 |
+
#: bws_menu.php:479
|
384 |
+
#: bws_menu.php:480
|
385 |
+
#: bws_menu.php:481
|
386 |
+
#: bws_menu.php:488
|
387 |
msgid "No"
|
388 |
msgstr "Não"
|
389 |
|
390 |
# @ captcha
|
391 |
+
#: bws_menu.php:498
|
392 |
msgid "Operating System"
|
393 |
msgstr "Sistema Operacional"
|
394 |
|
395 |
# @ captcha
|
396 |
+
#: bws_menu.php:499
|
397 |
msgid "Server"
|
398 |
msgstr "Servidor"
|
399 |
|
400 |
# @ captcha
|
401 |
+
#: bws_menu.php:500
|
402 |
msgid "Memory usage"
|
403 |
msgstr "Uso de memória"
|
404 |
|
405 |
# @ captcha
|
406 |
+
#: bws_menu.php:501
|
407 |
msgid "MYSQL Version"
|
408 |
msgstr "Versão do MySQL"
|
409 |
|
410 |
# @ captcha
|
411 |
+
#: bws_menu.php:502
|
412 |
msgid "SQL Mode"
|
413 |
msgstr "Modo SQL"
|
414 |
|
415 |
# @ captcha
|
416 |
+
#: bws_menu.php:503
|
417 |
msgid "PHP Version"
|
418 |
msgstr "Versão do PHP"
|
419 |
|
420 |
# @ captcha
|
421 |
+
#: bws_menu.php:504
|
422 |
msgid "PHP Safe Mode"
|
423 |
msgstr "Modo de Segurança do PHP"
|
424 |
|
425 |
# @ captcha
|
426 |
+
#: bws_menu.php:505
|
427 |
msgid "PHP Allow URL fopen"
|
428 |
msgstr "Permissão de fopen de URL do PHP"
|
429 |
|
430 |
# @ captcha
|
431 |
+
#: bws_menu.php:506
|
432 |
msgid "PHP Memory Limit"
|
433 |
msgstr "Limite de Memória do PHP"
|
434 |
|
435 |
# @ captcha
|
436 |
+
#: bws_menu.php:507
|
437 |
msgid "PHP Max Upload Size"
|
438 |
msgstr "Tamanho Máximo de Upload no PHP"
|
439 |
|
440 |
# @ captcha
|
441 |
+
#: bws_menu.php:508
|
442 |
msgid "PHP Max Post Size"
|
443 |
msgstr "Tamanho Máximo de Envio do PHP"
|
444 |
|
445 |
# @ captcha
|
446 |
+
#: bws_menu.php:509
|
447 |
msgid "PHP Max Script Execute Time"
|
448 |
msgstr "Tempo de Execução Máximo do PHP"
|
449 |
|
450 |
# @ captcha
|
451 |
+
#: bws_menu.php:510
|
452 |
msgid "PHP Exif support"
|
453 |
msgstr "Suporte a Exif no PHP"
|
454 |
|
455 |
# @ captcha
|
456 |
+
#: bws_menu.php:511
|
457 |
msgid "PHP IPTC support"
|
458 |
msgstr "Suporte da IPTC no PHP"
|
459 |
|
460 |
# @ captcha
|
461 |
+
#: bws_menu.php:512
|
462 |
msgid "PHP XML support"
|
463 |
msgstr "Suporte a XML no PHP"
|
464 |
|
465 |
# @ captcha
|
466 |
+
#: bws_menu.php:513
|
467 |
msgid "Site URL"
|
468 |
msgstr "URL do Site"
|
469 |
|
470 |
# @ captcha
|
471 |
+
#: bws_menu.php:514
|
472 |
msgid "Home URL"
|
473 |
msgstr "URL da Página Inicial"
|
474 |
|
475 |
# @ captcha
|
476 |
+
#: bws_menu.php:517
|
477 |
msgid "WordPress Version"
|
478 |
msgstr "Versão do WordPress"
|
479 |
|
480 |
# @ captcha
|
481 |
+
#: bws_menu.php:518
|
482 |
msgid "WordPress DB Version"
|
483 |
msgstr "Versão do DB do WordPress"
|
484 |
|
485 |
# @ captcha
|
486 |
+
#: bws_menu.php:519
|
487 |
msgid "Multisite"
|
488 |
msgstr "Multisite"
|
489 |
|
490 |
# @ captcha
|
491 |
+
#: bws_menu.php:520
|
492 |
msgid "Active Theme"
|
493 |
msgstr "Tema Ativo"
|
494 |
|
495 |
# @ captcha
|
496 |
+
#: bws_menu.php:535
|
497 |
msgid "Please enter a valid email address."
|
498 |
msgstr "Por favor, informe um endereço de email válido."
|
499 |
|
500 |
# @ captcha
|
501 |
+
#: bws_menu.php:539
|
502 |
msgid "Email with system info is sent to "
|
503 |
msgstr "Email com informações do sistema é enviado para "
|
504 |
|
505 |
# @ captcha
|
506 |
+
#: bws_menu.php:543
|
507 |
msgid "Thank you for contacting us."
|
508 |
msgstr "Obrigado por nos contatar."
|
509 |
|
510 |
# @ captcha
|
511 |
+
#: bws_menu.php:576
|
512 |
msgid "Sorry, email message could not be delivered."
|
513 |
msgstr "Desculpe, a mensagem de email não pôde ser enviada."
|
514 |
|
515 |
+
#: bws_menu.php:584
|
516 |
msgid "Need help?"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: bws_menu.php:585
|
520 |
msgid "Client area"
|
521 |
msgstr ""
|
522 |
|
523 |
# @ captcha
|
524 |
+
#: bws_menu.php:586
|
525 |
+
#: bws_menu.php:897
|
526 |
msgid "System status"
|
527 |
msgstr "Status do sistema"
|
528 |
|
529 |
# @ captcha
|
530 |
+
#: bws_menu.php:591
|
531 |
#, fuzzy
|
532 |
msgid "Plugins"
|
533 |
msgstr "Plugins Pro"
|
534 |
|
535 |
+
#: bws_menu.php:593
|
536 |
msgid "Themes"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: bws_menu.php:598
|
540 |
msgid "All"
|
541 |
msgstr ""
|
542 |
|
543 |
# @ default
|
544 |
+
#: bws_menu.php:599
|
545 |
#, fuzzy
|
546 |
msgid "Installed"
|
547 |
msgstr "Instalar %s"
|
548 |
|
549 |
# @ captcha
|
550 |
+
#: bws_menu.php:600
|
551 |
#, fuzzy
|
552 |
msgid "Recommended"
|
553 |
msgstr "Plugins Recomendados"
|
554 |
|
555 |
# @ captcha
|
556 |
+
#: bws_menu.php:604
|
557 |
msgid "Installed plugins"
|
558 |
msgstr "Plugins Instalados"
|
559 |
|
560 |
# @ captcha
|
561 |
+
#: bws_menu.php:636
|
562 |
+
#: bws_menu.php:685
|
563 |
msgid "Settings"
|
564 |
msgstr "Configurações"
|
565 |
|
566 |
# @ captcha
|
567 |
+
#: bws_menu.php:657
|
568 |
+
#: bws_menu.php:714
|
569 |
#, fuzzy
|
570 |
msgid "Activate this plugin"
|
571 |
msgstr "Plugins ativados"
|
572 |
|
573 |
+
#: bws_menu.php:672
|
574 |
+
#: bws_menu.php:702
|
575 |
+
#: bws_menu.php:748
|
576 |
msgid "Go"
|
577 |
msgstr ""
|
578 |
|
579 |
+
#: bws_menu.php:676
|
580 |
+
#: bws_menu.php:706
|
581 |
+
#: bws_menu.php:752
|
582 |
msgid "DONATE"
|
583 |
msgstr ""
|
584 |
|
585 |
# @ captcha
|
586 |
+
#: bws_menu.php:722
|
587 |
msgid "Recommended plugins"
|
588 |
msgstr "Plugins Recomendados"
|
589 |
|
590 |
# @ default
|
591 |
+
#: bws_menu.php:760
|
592 |
#, fuzzy
|
593 |
msgid "Install now"
|
594 |
msgstr "Instalar %s"
|
595 |
|
596 |
+
#: bws_menu.php:781
|
597 |
msgid "Try again"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: bws_menu.php:799
|
601 |
#, php-format
|
602 |
msgid "Preview “%s”"
|
603 |
msgstr ""
|
604 |
|
605 |
# @ default
|
606 |
+
#: bws_menu.php:830
|
607 |
#, php-format
|
608 |
msgid "Install %s"
|
609 |
msgstr "Instalar %s"
|
610 |
|
611 |
# @ default
|
612 |
+
#: bws_menu.php:830
|
613 |
#, fuzzy
|
614 |
msgid "Install Now"
|
615 |
msgstr "Instalar %s"
|
616 |
|
617 |
+
#: bws_menu.php:833
|
618 |
#, php-format
|
619 |
msgid "Update to version %s"
|
620 |
msgstr ""
|
621 |
|
622 |
+
#: bws_menu.php:833
|
623 |
msgid "Update"
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: bws_menu.php:840
|
627 |
#, php-format
|
628 |
msgid "Preview %s"
|
629 |
msgstr ""
|
630 |
|
631 |
+
#: bws_menu.php:840
|
632 |
msgid "Preview"
|
633 |
msgstr ""
|
634 |
|
635 |
+
#: bws_menu.php:846
|
636 |
+
#: bws_menu.php:878
|
637 |
#, php-format
|
638 |
msgid "By %s"
|
639 |
msgstr ""
|
640 |
|
641 |
+
#: bws_menu.php:852
|
642 |
msgid "Details"
|
643 |
msgstr ""
|
644 |
|
645 |
# @ default
|
646 |
+
#: bws_menu.php:884
|
647 |
#, fuzzy
|
648 |
msgid "Already Installed"
|
649 |
msgstr "Instalar %s"
|
650 |
|
651 |
# @ captcha
|
652 |
+
#: bws_menu.php:900
|
653 |
msgid "Environment"
|
654 |
msgstr "Ambiente"
|
655 |
|
656 |
# @ captcha
|
657 |
+
#: bws_menu.php:911
|
658 |
msgid "Active Plugins"
|
659 |
msgstr "Plugins Ativos"
|
660 |
|
661 |
# @ captcha
|
662 |
+
#: bws_menu.php:924
|
663 |
msgid "Inactive Plugins"
|
664 |
msgstr "Plugins Inativos"
|
665 |
|
666 |
# @ captcha
|
667 |
+
#: bws_menu.php:940
|
668 |
msgid "Send to support"
|
669 |
msgstr "Enviar para o suporte"
|
670 |
|
671 |
# @ captcha
|
672 |
+
#: bws_menu.php:947
|
673 |
msgid "Send to custom email »"
|
674 |
msgstr "Enviar para email personalizado »"
|
675 |
|
bws_menu/languages/bestwebsoft-ru_RU.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-ru_RU.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: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
@@ -169,14 +169,14 @@ msgstr "или"
|
|
169 |
#: bws_functions.php:356
|
170 |
#, php-format
|
171 |
msgid "Start Your Free %s-Day Trial Now"
|
172 |
-
msgstr "Попробуйте %s-дневную
|
173 |
|
174 |
#: bws_functions.php:362
|
175 |
#: bws_functions.php:371
|
176 |
#: bws_functions.php:401
|
177 |
#: bws_functions.php:409
|
178 |
-
#: bws_menu.php:
|
179 |
-
#: bws_menu.php:
|
180 |
msgid "Activate"
|
181 |
msgstr "Активировать"
|
182 |
|
@@ -216,15 +216,15 @@ msgstr "К сожалению, вы превысили количество до
|
|
216 |
|
217 |
#: bws_functions.php:469
|
218 |
msgid "Unfortunately, the PRO Trial licence was already installed to this domain. The PRO Trial license can be installed only once."
|
219 |
-
msgstr "К сожалению,
|
220 |
|
221 |
#: bws_functions.php:473
|
222 |
msgid "The PRO Trial license key is valid."
|
223 |
-
msgstr "Ключ
|
224 |
|
225 |
#: bws_functions.php:475
|
226 |
msgid "The license key is valid."
|
227 |
-
msgstr "Лицензионный ключ
|
228 |
|
229 |
#: bws_functions.php:478
|
230 |
msgid "Your license will expire on"
|
@@ -252,38 +252,38 @@ msgstr "ВНИМАНИЕ: уведомление о незаконном исп
|
|
252 |
|
253 |
#: bws_functions.php:542
|
254 |
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 you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
|
255 |
-
msgstr "Вы можете использовать одну лицензию Pro плагина только для одного домена. Пожалуйста, проверьте и отредактируйте при необходимости лицензию или домен, используя Ваш личный Client Area. Мы настоятельно рекомендуем вам решить проблему в течение 24 часов, в противном случае плагин будет
|
256 |
|
257 |
#: bws_functions.php:550
|
258 |
msgid "Notice: Your PRO Trial license has expired. To continue using the plugin you should buy a PRO license"
|
259 |
-
msgstr "Внимание: Срок действия
|
260 |
|
261 |
#: bws_functions.php:552
|
262 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
263 |
-
msgstr "Время использования вашей лицензии истекло. Если вы хотите обновлять ваш плагин в
|
264 |
|
265 |
#: bws_functions.php:552
|
266 |
#: bws_functions.php:605
|
267 |
-
#: bws_menu.php:
|
268 |
-
#: bws_menu.php:
|
269 |
-
#: bws_menu.php:
|
270 |
-
#: bws_menu.php:
|
271 |
-
#: bws_menu.php:
|
272 |
msgid "Learn more"
|
273 |
msgstr "Подробнее"
|
274 |
|
275 |
#: bws_functions.php:562
|
276 |
#, php-format
|
277 |
msgid "Notice: You are using the PRO Trial license of %s plugin."
|
278 |
-
msgstr "Внимание: Вы используете
|
279 |
|
280 |
#: bws_functions.php:564
|
281 |
msgid "Notice: You are using the PRO Trial license of plugin."
|
282 |
-
msgstr "Внимание: Вы используете
|
283 |
|
284 |
#: bws_functions.php:567
|
285 |
msgid "The PRO Trial license will expire on"
|
286 |
-
msgstr "
|
287 |
|
288 |
#: bws_functions.php:605
|
289 |
msgid "You license for"
|
@@ -301,281 +301,303 @@ msgstr "и вы не будете получать приоритетную те
|
|
301 |
msgid "Close"
|
302 |
msgstr "Закрыть"
|
303 |
|
304 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
305 |
msgid "Not set"
|
306 |
msgstr "Не задан"
|
307 |
|
308 |
-
#: bws_menu.php:
|
309 |
-
#: bws_menu.php:
|
310 |
msgid "On"
|
311 |
msgstr "Вкл"
|
312 |
|
313 |
-
#: bws_menu.php:
|
314 |
-
#: bws_menu.php:
|
315 |
msgid "Off"
|
316 |
msgstr "Выкл"
|
317 |
|
318 |
-
#: bws_menu.php:
|
319 |
-
#: bws_menu.php:
|
320 |
-
#: bws_menu.php:462
|
321 |
-
#: bws_menu.php:463
|
322 |
-
#: bws_menu.php:464
|
323 |
#: bws_menu.php:476
|
|
|
|
|
|
|
324 |
msgid "N/A"
|
325 |
msgstr "Неизвестно"
|
326 |
|
327 |
-
#: bws_menu.php:
|
328 |
msgid " Mb"
|
329 |
msgstr "Mb"
|
330 |
|
331 |
-
#: bws_menu.php:
|
332 |
-
#: bws_menu.php:
|
333 |
-
#: bws_menu.php:
|
334 |
-
#: bws_menu.php:
|
335 |
msgid "Yes"
|
336 |
msgstr "Да"
|
337 |
|
338 |
-
#: bws_menu.php:
|
339 |
-
#: bws_menu.php:
|
340 |
-
#: bws_menu.php:
|
341 |
-
#: bws_menu.php:
|
342 |
msgid "No"
|
343 |
msgstr "Нет"
|
344 |
|
345 |
-
#: bws_menu.php:
|
346 |
msgid "Operating System"
|
347 |
msgstr "Операционная система"
|
348 |
|
349 |
-
#: bws_menu.php:
|
350 |
msgid "Server"
|
351 |
msgstr "Тип сервера"
|
352 |
|
353 |
-
#: bws_menu.php:
|
354 |
msgid "Memory usage"
|
355 |
msgstr "Памяти использовано"
|
356 |
|
357 |
-
#: bws_menu.php:
|
358 |
msgid "MYSQL Version"
|
359 |
msgstr "Версия MYSQL"
|
360 |
|
361 |
-
#: bws_menu.php:
|
362 |
msgid "SQL Mode"
|
363 |
msgstr "Режим SQL"
|
364 |
|
365 |
-
#: bws_menu.php:
|
366 |
msgid "PHP Version"
|
367 |
msgstr "Версия PHP"
|
368 |
|
369 |
-
#: bws_menu.php:
|
370 |
msgid "PHP Safe Mode"
|
371 |
msgstr "PHP Safe Mode"
|
372 |
|
373 |
-
#: bws_menu.php:
|
374 |
msgid "PHP Allow URL fopen"
|
375 |
msgstr "PHP Allow URL fopen"
|
376 |
|
377 |
-
#: bws_menu.php:
|
378 |
msgid "PHP Memory Limit"
|
379 |
msgstr "Лимит памяти"
|
380 |
|
381 |
-
#: bws_menu.php:
|
382 |
msgid "PHP Max Upload Size"
|
383 |
msgstr "Макс. размер загружаемого файла"
|
384 |
|
385 |
-
#: bws_menu.php:
|
386 |
msgid "PHP Max Post Size"
|
387 |
msgstr "Макс. размер записи"
|
388 |
|
389 |
-
#: bws_menu.php:
|
390 |
msgid "PHP Max Script Execute Time"
|
391 |
msgstr "Макс. время выполнения сценария"
|
392 |
|
393 |
-
#: bws_menu.php:
|
394 |
msgid "PHP Exif support"
|
395 |
msgstr "Поддержка PHP Exif"
|
396 |
|
397 |
-
#: bws_menu.php:
|
398 |
msgid "PHP IPTC support"
|
399 |
msgstr "Поддержка PHP IPTC"
|
400 |
|
401 |
-
#: bws_menu.php:
|
402 |
msgid "PHP XML support"
|
403 |
msgstr "Поддержка PHP XML"
|
404 |
|
405 |
-
#: bws_menu.php:
|
406 |
msgid "Site URL"
|
407 |
msgstr "Адрес сайта"
|
408 |
|
409 |
-
#: bws_menu.php:
|
410 |
msgid "Home URL"
|
411 |
msgstr "Основной адрес сайта"
|
412 |
|
413 |
-
#: bws_menu.php:
|
414 |
msgid "WordPress Version"
|
415 |
msgstr "Версия WordPress"
|
416 |
|
417 |
-
#: bws_menu.php:
|
418 |
msgid "WordPress DB Version"
|
419 |
msgstr "Версия базы данных WordPress"
|
420 |
|
421 |
-
#: bws_menu.php:
|
422 |
msgid "Multisite"
|
423 |
msgstr "Мультиблог"
|
424 |
|
425 |
-
#: bws_menu.php:
|
426 |
msgid "Active Theme"
|
427 |
msgstr "Текущая тема"
|
428 |
|
429 |
-
#: bws_menu.php:
|
430 |
msgid "Please enter a valid email address."
|
431 |
msgstr "Пожалуйста, введите валидный емайл."
|
432 |
|
433 |
-
#: bws_menu.php:
|
434 |
msgid "Email with system info is sent to "
|
435 |
msgstr "E-mail с системной информацией отправлен на"
|
436 |
|
437 |
-
#: bws_menu.php:
|
438 |
msgid "Thank you for contacting us."
|
439 |
msgstr "Спасибо что связались с нами."
|
440 |
|
441 |
-
#: bws_menu.php:
|
442 |
msgid "Sorry, email message could not be delivered."
|
443 |
msgstr "Извините, ваш email не может быть отправлен."
|
444 |
|
445 |
-
#: bws_menu.php:
|
446 |
msgid "Need help?"
|
447 |
msgstr "Нужна помощь?"
|
448 |
|
449 |
-
#: bws_menu.php:
|
450 |
msgid "Client area"
|
451 |
msgstr "Client area"
|
452 |
|
453 |
-
#: bws_menu.php:
|
454 |
-
#: bws_menu.php:
|
455 |
msgid "System status"
|
456 |
msgstr "Системная информация"
|
457 |
|
458 |
-
#: bws_menu.php:
|
459 |
msgid "Plugins"
|
460 |
msgstr "Плагины"
|
461 |
|
462 |
-
#: bws_menu.php:
|
463 |
msgid "Themes"
|
464 |
msgstr "Темы"
|
465 |
|
466 |
-
#: bws_menu.php:
|
467 |
msgid "All"
|
468 |
msgstr "Все"
|
469 |
|
470 |
-
#: bws_menu.php:
|
471 |
msgid "Installed"
|
472 |
msgstr "Установленные"
|
473 |
|
474 |
-
#: bws_menu.php:
|
475 |
msgid "Recommended"
|
476 |
msgstr "Рекомендованные"
|
477 |
|
478 |
-
#: bws_menu.php:
|
479 |
msgid "Installed plugins"
|
480 |
msgstr "Установленные плагины"
|
481 |
|
482 |
-
#: bws_menu.php:
|
483 |
-
#: bws_menu.php:
|
484 |
msgid "Settings"
|
485 |
msgstr "Настройки"
|
486 |
|
487 |
-
#: bws_menu.php:
|
488 |
-
#: bws_menu.php:
|
489 |
msgid "Activate this plugin"
|
490 |
msgstr "Активировать плагин"
|
491 |
|
492 |
-
#: bws_menu.php:
|
493 |
-
#: bws_menu.php:
|
494 |
-
#: bws_menu.php:
|
495 |
msgid "Go"
|
496 |
msgstr "Перейти на"
|
497 |
|
498 |
-
#: bws_menu.php:
|
499 |
-
#: bws_menu.php:
|
500 |
-
#: bws_menu.php:
|
501 |
msgid "DONATE"
|
502 |
msgstr "Пожертвовать"
|
503 |
|
504 |
-
#: bws_menu.php:
|
505 |
msgid "Recommended plugins"
|
506 |
msgstr "Рекомендованные к установке плагины"
|
507 |
|
508 |
-
#: bws_menu.php:
|
509 |
msgid "Install now"
|
510 |
msgstr "Установить"
|
511 |
|
512 |
-
#: bws_menu.php:
|
513 |
msgid "Try again"
|
514 |
msgstr "Попробовать снова"
|
515 |
|
516 |
-
#: bws_menu.php:
|
517 |
#, php-format
|
518 |
msgid "Preview “%s”"
|
519 |
msgstr "Просмотр “%s”"
|
520 |
|
521 |
-
#: bws_menu.php:
|
522 |
#, php-format
|
523 |
msgid "Install %s"
|
524 |
msgstr "Установлено %s"
|
525 |
|
526 |
-
#: bws_menu.php:
|
527 |
msgid "Install Now"
|
528 |
msgstr "Установить"
|
529 |
|
530 |
-
#: bws_menu.php:
|
531 |
#, php-format
|
532 |
msgid "Update to version %s"
|
533 |
msgstr "Обновить до версии %s"
|
534 |
|
535 |
-
#: bws_menu.php:
|
536 |
msgid "Update"
|
537 |
msgstr "Обновить"
|
538 |
|
539 |
-
#: bws_menu.php:
|
540 |
#, php-format
|
541 |
msgid "Preview %s"
|
542 |
msgstr "Просмотр %s"
|
543 |
|
544 |
-
#: bws_menu.php:
|
545 |
msgid "Preview"
|
546 |
msgstr "Просмотр"
|
547 |
|
548 |
-
#: bws_menu.php:
|
549 |
-
#: bws_menu.php:
|
550 |
#, php-format
|
551 |
msgid "By %s"
|
552 |
msgstr "%s"
|
553 |
|
554 |
-
#: bws_menu.php:
|
555 |
msgid "Details"
|
556 |
msgstr "Детали"
|
557 |
|
558 |
-
#: bws_menu.php:
|
559 |
msgid "Already Installed"
|
560 |
msgstr "Уже установлена"
|
561 |
|
562 |
-
#: bws_menu.php:
|
563 |
msgid "Environment"
|
564 |
msgstr "Системная среда"
|
565 |
|
566 |
-
#: bws_menu.php:
|
567 |
msgid "Active Plugins"
|
568 |
msgstr "Активированные плагины"
|
569 |
|
570 |
-
#: bws_menu.php:
|
571 |
msgid "Inactive Plugins"
|
572 |
msgstr "Неактивированные плагины"
|
573 |
|
574 |
-
#: bws_menu.php:
|
575 |
msgid "Send to support"
|
576 |
msgstr "Отправить в тех. поддержку"
|
577 |
|
578 |
-
#: bws_menu.php:
|
579 |
msgid "Send to custom email »"
|
580 |
msgstr "Отправить на емейл »"
|
581 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-06-12 15:57+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-06-12 15:58+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
169 |
#: bws_functions.php:356
|
170 |
#, php-format
|
171 |
msgid "Start Your Free %s-Day Trial Now"
|
172 |
+
msgstr "Попробуйте %s-дневную Trial версию бесплатно"
|
173 |
|
174 |
#: bws_functions.php:362
|
175 |
#: bws_functions.php:371
|
176 |
#: bws_functions.php:401
|
177 |
#: bws_functions.php:409
|
178 |
+
#: bws_menu.php:657
|
179 |
+
#: bws_menu.php:714
|
180 |
msgid "Activate"
|
181 |
msgstr "Активировать"
|
182 |
|
216 |
|
217 |
#: bws_functions.php:469
|
218 |
msgid "Unfortunately, the PRO Trial licence was already installed to this domain. The PRO Trial license can be installed only once."
|
219 |
+
msgstr "К сожалению, PRO Trial версия плагина уже устанавливалась на этот домен. PRO Trial версию можно устанавливать лишь один раз."
|
220 |
|
221 |
#: bws_functions.php:473
|
222 |
msgid "The PRO Trial license key is valid."
|
223 |
+
msgstr "Ключ PRO Trial версии действителен."
|
224 |
|
225 |
#: bws_functions.php:475
|
226 |
msgid "The license key is valid."
|
227 |
+
msgstr "Лицензионный ключ действителен."
|
228 |
|
229 |
#: bws_functions.php:478
|
230 |
msgid "Your license will expire on"
|
252 |
|
253 |
#: bws_functions.php:542
|
254 |
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 you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
|
255 |
+
msgstr "Вы можете использовать одну лицензию Pro плагина только для одного домена. Пожалуйста, проверьте и отредактируйте при необходимости лицензию или домен, используя Ваш личный Client Area. Мы настоятельно рекомендуем вам решить проблему в течение 24 часов, в противном случае плагин будет деактивирован."
|
256 |
|
257 |
#: bws_functions.php:550
|
258 |
msgid "Notice: Your PRO Trial license has expired. To continue using the plugin you should buy a PRO license"
|
259 |
+
msgstr "Внимание: Срок действия PRO Trial версии истек. Чтобы продолжить пользоваться плагином, пожалуйста, приобретите лицензию PRO"
|
260 |
|
261 |
#: bws_functions.php:552
|
262 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
263 |
+
msgstr "Время использования вашей лицензии истекло. Если вы хотите обновлять ваш плагин в дальнейшем и иметь приоритетную тех.поддержку, то вам нужно продлить лицензию."
|
264 |
|
265 |
#: bws_functions.php:552
|
266 |
#: bws_functions.php:605
|
267 |
+
#: bws_menu.php:633
|
268 |
+
#: bws_menu.php:655
|
269 |
+
#: bws_menu.php:682
|
270 |
+
#: bws_menu.php:712
|
271 |
+
#: bws_menu.php:758
|
272 |
msgid "Learn more"
|
273 |
msgstr "Подробнее"
|
274 |
|
275 |
#: bws_functions.php:562
|
276 |
#, php-format
|
277 |
msgid "Notice: You are using the PRO Trial license of %s plugin."
|
278 |
+
msgstr "Внимание: Вы используете PRO Trial версию плагина %s."
|
279 |
|
280 |
#: bws_functions.php:564
|
281 |
msgid "Notice: You are using the PRO Trial license of plugin."
|
282 |
+
msgstr "Внимание: Вы используете PRO Trial версию плагина."
|
283 |
|
284 |
#: bws_functions.php:567
|
285 |
msgid "The PRO Trial license will expire on"
|
286 |
+
msgstr "Ваша лицензия PRO Trial версии плагина истекает"
|
287 |
|
288 |
#: bws_functions.php:605
|
289 |
msgid "You license for"
|
301 |
msgid "Close"
|
302 |
msgstr "Закрыть"
|
303 |
|
304 |
+
#: bws_functions.php:771
|
305 |
+
#: bws_functions.php:784
|
306 |
+
msgid "Restore all plugin settings to defaults"
|
307 |
+
msgstr "Восстановить все настройки плагина к настройкам по-умолчанию"
|
308 |
+
|
309 |
+
#: bws_functions.php:773
|
310 |
+
#: bws_functions.php:786
|
311 |
+
msgid "Restore settings"
|
312 |
+
msgstr "Восстановить настройки"
|
313 |
+
|
314 |
+
#: bws_functions.php:797
|
315 |
+
msgid "Are you sure you want to restore all settings by default?"
|
316 |
+
msgstr "Вы уверены что хотите восстановить все настройки плагина к настройкам по-умолчанию?"
|
317 |
+
|
318 |
+
#: bws_functions.php:799
|
319 |
+
msgid "Yes, restore all settings"
|
320 |
+
msgstr "Да, восстановить все настройки"
|
321 |
+
|
322 |
+
#: bws_functions.php:800
|
323 |
+
msgid "No, go back to the settings page"
|
324 |
+
msgstr "Нет, вернутся на страницу настроек"
|
325 |
+
|
326 |
+
#: bws_menu.php:470
|
327 |
msgid "Not set"
|
328 |
msgstr "Не задан"
|
329 |
|
330 |
+
#: bws_menu.php:472
|
331 |
+
#: bws_menu.php:473
|
332 |
msgid "On"
|
333 |
msgstr "Вкл"
|
334 |
|
335 |
+
#: bws_menu.php:472
|
336 |
+
#: bws_menu.php:473
|
337 |
msgid "Off"
|
338 |
msgstr "Выкл"
|
339 |
|
340 |
+
#: bws_menu.php:474
|
341 |
+
#: bws_menu.php:475
|
|
|
|
|
|
|
342 |
#: bws_menu.php:476
|
343 |
+
#: bws_menu.php:477
|
344 |
+
#: bws_menu.php:478
|
345 |
+
#: bws_menu.php:490
|
346 |
msgid "N/A"
|
347 |
msgstr "Неизвестно"
|
348 |
|
349 |
+
#: bws_menu.php:478
|
350 |
msgid " Mb"
|
351 |
msgstr "Mb"
|
352 |
|
353 |
+
#: bws_menu.php:479
|
354 |
+
#: bws_menu.php:480
|
355 |
+
#: bws_menu.php:481
|
356 |
+
#: bws_menu.php:486
|
357 |
msgid "Yes"
|
358 |
msgstr "Да"
|
359 |
|
360 |
+
#: bws_menu.php:479
|
361 |
+
#: bws_menu.php:480
|
362 |
+
#: bws_menu.php:481
|
363 |
+
#: bws_menu.php:488
|
364 |
msgid "No"
|
365 |
msgstr "Нет"
|
366 |
|
367 |
+
#: bws_menu.php:498
|
368 |
msgid "Operating System"
|
369 |
msgstr "Операционная система"
|
370 |
|
371 |
+
#: bws_menu.php:499
|
372 |
msgid "Server"
|
373 |
msgstr "Тип сервера"
|
374 |
|
375 |
+
#: bws_menu.php:500
|
376 |
msgid "Memory usage"
|
377 |
msgstr "Памяти использовано"
|
378 |
|
379 |
+
#: bws_menu.php:501
|
380 |
msgid "MYSQL Version"
|
381 |
msgstr "Версия MYSQL"
|
382 |
|
383 |
+
#: bws_menu.php:502
|
384 |
msgid "SQL Mode"
|
385 |
msgstr "Режим SQL"
|
386 |
|
387 |
+
#: bws_menu.php:503
|
388 |
msgid "PHP Version"
|
389 |
msgstr "Версия PHP"
|
390 |
|
391 |
+
#: bws_menu.php:504
|
392 |
msgid "PHP Safe Mode"
|
393 |
msgstr "PHP Safe Mode"
|
394 |
|
395 |
+
#: bws_menu.php:505
|
396 |
msgid "PHP Allow URL fopen"
|
397 |
msgstr "PHP Allow URL fopen"
|
398 |
|
399 |
+
#: bws_menu.php:506
|
400 |
msgid "PHP Memory Limit"
|
401 |
msgstr "Лимит памяти"
|
402 |
|
403 |
+
#: bws_menu.php:507
|
404 |
msgid "PHP Max Upload Size"
|
405 |
msgstr "Макс. размер загружаемого файла"
|
406 |
|
407 |
+
#: bws_menu.php:508
|
408 |
msgid "PHP Max Post Size"
|
409 |
msgstr "Макс. размер записи"
|
410 |
|
411 |
+
#: bws_menu.php:509
|
412 |
msgid "PHP Max Script Execute Time"
|
413 |
msgstr "Макс. время выполнения сценария"
|
414 |
|
415 |
+
#: bws_menu.php:510
|
416 |
msgid "PHP Exif support"
|
417 |
msgstr "Поддержка PHP Exif"
|
418 |
|
419 |
+
#: bws_menu.php:511
|
420 |
msgid "PHP IPTC support"
|
421 |
msgstr "Поддержка PHP IPTC"
|
422 |
|
423 |
+
#: bws_menu.php:512
|
424 |
msgid "PHP XML support"
|
425 |
msgstr "Поддержка PHP XML"
|
426 |
|
427 |
+
#: bws_menu.php:513
|
428 |
msgid "Site URL"
|
429 |
msgstr "Адрес сайта"
|
430 |
|
431 |
+
#: bws_menu.php:514
|
432 |
msgid "Home URL"
|
433 |
msgstr "Основной адрес сайта"
|
434 |
|
435 |
+
#: bws_menu.php:517
|
436 |
msgid "WordPress Version"
|
437 |
msgstr "Версия WordPress"
|
438 |
|
439 |
+
#: bws_menu.php:518
|
440 |
msgid "WordPress DB Version"
|
441 |
msgstr "Версия базы данных WordPress"
|
442 |
|
443 |
+
#: bws_menu.php:519
|
444 |
msgid "Multisite"
|
445 |
msgstr "Мультиблог"
|
446 |
|
447 |
+
#: bws_menu.php:520
|
448 |
msgid "Active Theme"
|
449 |
msgstr "Текущая тема"
|
450 |
|
451 |
+
#: bws_menu.php:535
|
452 |
msgid "Please enter a valid email address."
|
453 |
msgstr "Пожалуйста, введите валидный емайл."
|
454 |
|
455 |
+
#: bws_menu.php:539
|
456 |
msgid "Email with system info is sent to "
|
457 |
msgstr "E-mail с системной информацией отправлен на"
|
458 |
|
459 |
+
#: bws_menu.php:543
|
460 |
msgid "Thank you for contacting us."
|
461 |
msgstr "Спасибо что связались с нами."
|
462 |
|
463 |
+
#: bws_menu.php:576
|
464 |
msgid "Sorry, email message could not be delivered."
|
465 |
msgstr "Извините, ваш email не может быть отправлен."
|
466 |
|
467 |
+
#: bws_menu.php:584
|
468 |
msgid "Need help?"
|
469 |
msgstr "Нужна помощь?"
|
470 |
|
471 |
+
#: bws_menu.php:585
|
472 |
msgid "Client area"
|
473 |
msgstr "Client area"
|
474 |
|
475 |
+
#: bws_menu.php:586
|
476 |
+
#: bws_menu.php:897
|
477 |
msgid "System status"
|
478 |
msgstr "Системная информация"
|
479 |
|
480 |
+
#: bws_menu.php:591
|
481 |
msgid "Plugins"
|
482 |
msgstr "Плагины"
|
483 |
|
484 |
+
#: bws_menu.php:593
|
485 |
msgid "Themes"
|
486 |
msgstr "Темы"
|
487 |
|
488 |
+
#: bws_menu.php:598
|
489 |
msgid "All"
|
490 |
msgstr "Все"
|
491 |
|
492 |
+
#: bws_menu.php:599
|
493 |
msgid "Installed"
|
494 |
msgstr "Установленные"
|
495 |
|
496 |
+
#: bws_menu.php:600
|
497 |
msgid "Recommended"
|
498 |
msgstr "Рекомендованные"
|
499 |
|
500 |
+
#: bws_menu.php:604
|
501 |
msgid "Installed plugins"
|
502 |
msgstr "Установленные плагины"
|
503 |
|
504 |
+
#: bws_menu.php:636
|
505 |
+
#: bws_menu.php:685
|
506 |
msgid "Settings"
|
507 |
msgstr "Настройки"
|
508 |
|
509 |
+
#: bws_menu.php:657
|
510 |
+
#: bws_menu.php:714
|
511 |
msgid "Activate this plugin"
|
512 |
msgstr "Активировать плагин"
|
513 |
|
514 |
+
#: bws_menu.php:672
|
515 |
+
#: bws_menu.php:702
|
516 |
+
#: bws_menu.php:748
|
517 |
msgid "Go"
|
518 |
msgstr "Перейти на"
|
519 |
|
520 |
+
#: bws_menu.php:676
|
521 |
+
#: bws_menu.php:706
|
522 |
+
#: bws_menu.php:752
|
523 |
msgid "DONATE"
|
524 |
msgstr "Пожертвовать"
|
525 |
|
526 |
+
#: bws_menu.php:722
|
527 |
msgid "Recommended plugins"
|
528 |
msgstr "Рекомендованные к установке плагины"
|
529 |
|
530 |
+
#: bws_menu.php:760
|
531 |
msgid "Install now"
|
532 |
msgstr "Установить"
|
533 |
|
534 |
+
#: bws_menu.php:781
|
535 |
msgid "Try again"
|
536 |
msgstr "Попробовать снова"
|
537 |
|
538 |
+
#: bws_menu.php:799
|
539 |
#, php-format
|
540 |
msgid "Preview “%s”"
|
541 |
msgstr "Просмотр “%s”"
|
542 |
|
543 |
+
#: bws_menu.php:830
|
544 |
#, php-format
|
545 |
msgid "Install %s"
|
546 |
msgstr "Установлено %s"
|
547 |
|
548 |
+
#: bws_menu.php:830
|
549 |
msgid "Install Now"
|
550 |
msgstr "Установить"
|
551 |
|
552 |
+
#: bws_menu.php:833
|
553 |
#, php-format
|
554 |
msgid "Update to version %s"
|
555 |
msgstr "Обновить до версии %s"
|
556 |
|
557 |
+
#: bws_menu.php:833
|
558 |
msgid "Update"
|
559 |
msgstr "Обновить"
|
560 |
|
561 |
+
#: bws_menu.php:840
|
562 |
#, php-format
|
563 |
msgid "Preview %s"
|
564 |
msgstr "Просмотр %s"
|
565 |
|
566 |
+
#: bws_menu.php:840
|
567 |
msgid "Preview"
|
568 |
msgstr "Просмотр"
|
569 |
|
570 |
+
#: bws_menu.php:846
|
571 |
+
#: bws_menu.php:878
|
572 |
#, php-format
|
573 |
msgid "By %s"
|
574 |
msgstr "%s"
|
575 |
|
576 |
+
#: bws_menu.php:852
|
577 |
msgid "Details"
|
578 |
msgstr "Детали"
|
579 |
|
580 |
+
#: bws_menu.php:884
|
581 |
msgid "Already Installed"
|
582 |
msgstr "Уже установлена"
|
583 |
|
584 |
+
#: bws_menu.php:900
|
585 |
msgid "Environment"
|
586 |
msgstr "Системная среда"
|
587 |
|
588 |
+
#: bws_menu.php:911
|
589 |
msgid "Active Plugins"
|
590 |
msgstr "Активированные плагины"
|
591 |
|
592 |
+
#: bws_menu.php:924
|
593 |
msgid "Inactive Plugins"
|
594 |
msgstr "Неактивированные плагины"
|
595 |
|
596 |
+
#: bws_menu.php:940
|
597 |
msgid "Send to support"
|
598 |
msgstr "Отправить в тех. поддержку"
|
599 |
|
600 |
+
#: bws_menu.php:947
|
601 |
msgid "Send to custom email »"
|
602 |
msgstr "Отправить на емейл »"
|
603 |
|
bws_menu/languages/bestwebsoft-sr_RS.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-sr_RS.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: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Andrijana Nikolic <andrijanan@webhostinggeeks.com>\n"
|
9 |
"Language: fr_FR\n"
|
@@ -183,8 +183,8 @@ msgstr ""
|
|
183 |
#: bws_functions.php:371
|
184 |
#: bws_functions.php:401
|
185 |
#: bws_functions.php:409
|
186 |
-
#: bws_menu.php:
|
187 |
-
#: bws_menu.php:
|
188 |
#, fuzzy
|
189 |
msgid "Activate"
|
190 |
msgstr "Aktivirani moduli"
|
@@ -273,11 +273,11 @@ msgstr ""
|
|
273 |
|
274 |
#: bws_functions.php:552
|
275 |
#: bws_functions.php:605
|
276 |
-
#: bws_menu.php:
|
277 |
-
#: bws_menu.php:
|
278 |
-
#: bws_menu.php:
|
279 |
-
#: bws_menu.php:
|
280 |
-
#: bws_menu.php:
|
281 |
#, fuzzy
|
282 |
msgid "Learn more"
|
283 |
msgstr "Pročitaj više"
|
@@ -311,294 +311,318 @@ msgstr ""
|
|
311 |
msgid "Close"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
315 |
msgid "Not set"
|
316 |
msgstr "Nije podešeno"
|
317 |
|
318 |
-
#: bws_menu.php:
|
319 |
-
#: bws_menu.php:
|
320 |
msgid "On"
|
321 |
msgstr "Uključeno"
|
322 |
|
323 |
-
#: bws_menu.php:
|
324 |
-
#: bws_menu.php:
|
325 |
msgid "Off"
|
326 |
msgstr "Isključeno"
|
327 |
|
328 |
-
#: bws_menu.php:
|
329 |
-
#: bws_menu.php:
|
330 |
-
#: bws_menu.php:462
|
331 |
-
#: bws_menu.php:463
|
332 |
-
#: bws_menu.php:464
|
333 |
#: bws_menu.php:476
|
|
|
|
|
|
|
334 |
msgid "N/A"
|
335 |
msgstr "N/A"
|
336 |
|
337 |
-
#: bws_menu.php:
|
338 |
msgid " Mb"
|
339 |
msgstr " Mb"
|
340 |
|
341 |
-
#: bws_menu.php:
|
342 |
-
#: bws_menu.php:
|
343 |
-
#: bws_menu.php:
|
344 |
-
#: bws_menu.php:
|
345 |
msgid "Yes"
|
346 |
msgstr "Da"
|
347 |
|
348 |
-
#: bws_menu.php:
|
349 |
-
#: bws_menu.php:
|
350 |
-
#: bws_menu.php:
|
351 |
-
#: bws_menu.php:
|
352 |
msgid "No"
|
353 |
msgstr "Ne"
|
354 |
|
355 |
-
#: bws_menu.php:
|
356 |
msgid "Operating System"
|
357 |
msgstr "Operativni Sistem"
|
358 |
|
359 |
-
#: bws_menu.php:
|
360 |
msgid "Server"
|
361 |
msgstr "Server"
|
362 |
|
363 |
-
#: bws_menu.php:
|
364 |
msgid "Memory usage"
|
365 |
msgstr "Upotreba memorije"
|
366 |
|
367 |
-
#: bws_menu.php:
|
368 |
msgid "MYSQL Version"
|
369 |
msgstr "MYSQL Verzija"
|
370 |
|
371 |
-
#: bws_menu.php:
|
372 |
msgid "SQL Mode"
|
373 |
msgstr "SQL način"
|
374 |
|
375 |
-
#: bws_menu.php:
|
376 |
msgid "PHP Version"
|
377 |
msgstr "PHP Verzija"
|
378 |
|
379 |
-
#: bws_menu.php:
|
380 |
msgid "PHP Safe Mode"
|
381 |
msgstr "PHP Sigurni način"
|
382 |
|
383 |
-
#: bws_menu.php:
|
384 |
msgid "PHP Allow URL fopen"
|
385 |
msgstr "PHP Dozvoli URL fopen"
|
386 |
|
387 |
-
#: bws_menu.php:
|
388 |
msgid "PHP Memory Limit"
|
389 |
msgstr "PHP Ograničenje memorije"
|
390 |
|
391 |
-
#: bws_menu.php:
|
392 |
#, fuzzy
|
393 |
msgid "PHP Max Upload Size"
|
394 |
msgstr "Envoi de fichier"
|
395 |
|
396 |
-
#: bws_menu.php:
|
397 |
msgid "PHP Max Post Size"
|
398 |
msgstr "PHP Max veličina za učitavanje"
|
399 |
|
400 |
-
#: bws_menu.php:
|
401 |
msgid "PHP Max Script Execute Time"
|
402 |
msgstr "PHP Max veličina posta"
|
403 |
|
404 |
-
#: bws_menu.php:
|
405 |
msgid "PHP Exif support"
|
406 |
msgstr "PHP Exif podrška"
|
407 |
|
408 |
-
#: bws_menu.php:
|
409 |
msgid "PHP IPTC support"
|
410 |
msgstr "PHP IPTC podrška"
|
411 |
|
412 |
-
#: bws_menu.php:
|
413 |
msgid "PHP XML support"
|
414 |
msgstr "PHP XML podrška"
|
415 |
|
416 |
-
#: bws_menu.php:
|
417 |
#, fuzzy
|
418 |
msgid "Site URL"
|
419 |
msgstr "URL du lien"
|
420 |
|
421 |
-
#: bws_menu.php:
|
422 |
msgid "Home URL"
|
423 |
msgstr "URL naslovne"
|
424 |
|
425 |
-
#: bws_menu.php:
|
426 |
msgid "WordPress Version"
|
427 |
msgstr "WordPress Verzija"
|
428 |
|
429 |
-
#: bws_menu.php:
|
430 |
msgid "WordPress DB Version"
|
431 |
msgstr "WordPress DB Verzija"
|
432 |
|
433 |
-
#: bws_menu.php:
|
434 |
msgid "Multisite"
|
435 |
msgstr "Višenamenski sajt"
|
436 |
|
437 |
-
#: bws_menu.php:
|
438 |
msgid "Active Theme"
|
439 |
msgstr "Aktivna tema"
|
440 |
|
441 |
-
#: bws_menu.php:
|
442 |
msgid "Please enter a valid email address."
|
443 |
msgstr "Molimo unesite važeću mejl adresu"
|
444 |
|
445 |
-
#: bws_menu.php:
|
446 |
msgid "Email with system info is sent to "
|
447 |
msgstr "Mejl sa sistemskim informacijama je poslat na"
|
448 |
|
449 |
-
#: bws_menu.php:
|
450 |
msgid "Thank you for contacting us."
|
451 |
msgstr "Hvala što ste nas kontaktirali"
|
452 |
|
453 |
-
#: bws_menu.php:
|
454 |
msgid "Sorry, email message could not be delivered."
|
455 |
msgstr "Nažalost mejl poruka nije prosleđena"
|
456 |
|
457 |
-
#: bws_menu.php:
|
458 |
msgid "Need help?"
|
459 |
msgstr ""
|
460 |
|
461 |
-
#: bws_menu.php:
|
462 |
msgid "Client area"
|
463 |
msgstr ""
|
464 |
|
465 |
-
#: bws_menu.php:
|
466 |
-
#: bws_menu.php:
|
467 |
msgid "System status"
|
468 |
msgstr "Sistemski status"
|
469 |
|
470 |
-
#: bws_menu.php:
|
471 |
#, fuzzy
|
472 |
msgid "Plugins"
|
473 |
msgstr "Pro moduli"
|
474 |
|
475 |
-
#: bws_menu.php:
|
476 |
msgid "Themes"
|
477 |
msgstr ""
|
478 |
|
479 |
-
#: bws_menu.php:
|
480 |
msgid "All"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: bws_menu.php:
|
484 |
#, fuzzy
|
485 |
msgid "Installed"
|
486 |
msgstr "Instalacija %s"
|
487 |
|
488 |
-
#: bws_menu.php:
|
489 |
#, fuzzy
|
490 |
msgid "Recommended"
|
491 |
msgstr "Preporučeni moduli"
|
492 |
|
493 |
-
#: bws_menu.php:
|
494 |
msgid "Installed plugins"
|
495 |
msgstr "Instalirani moduli"
|
496 |
|
497 |
-
#: bws_menu.php:
|
498 |
-
#: bws_menu.php:
|
499 |
msgid "Settings"
|
500 |
msgstr "Podešavanja"
|
501 |
|
502 |
-
#: bws_menu.php:
|
503 |
-
#: bws_menu.php:
|
504 |
#, fuzzy
|
505 |
msgid "Activate this plugin"
|
506 |
msgstr "Aktivirani moduli"
|
507 |
|
508 |
-
#: bws_menu.php:
|
509 |
-
#: bws_menu.php:
|
510 |
-
#: bws_menu.php:
|
511 |
msgid "Go"
|
512 |
msgstr ""
|
513 |
|
514 |
-
#: bws_menu.php:
|
515 |
-
#: bws_menu.php:
|
516 |
-
#: bws_menu.php:
|
517 |
msgid "DONATE"
|
518 |
msgstr ""
|
519 |
|
520 |
-
#: bws_menu.php:
|
521 |
msgid "Recommended plugins"
|
522 |
msgstr "Preporučeni moduli"
|
523 |
|
524 |
-
#: bws_menu.php:
|
525 |
#, fuzzy
|
526 |
msgid "Install now"
|
527 |
msgstr "Instalacija %s"
|
528 |
|
529 |
-
#: bws_menu.php:
|
530 |
msgid "Try again"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: bws_menu.php:
|
534 |
#, php-format
|
535 |
msgid "Preview “%s”"
|
536 |
msgstr ""
|
537 |
|
538 |
-
#: bws_menu.php:
|
539 |
#, php-format
|
540 |
msgid "Install %s"
|
541 |
msgstr "Instalacija %s"
|
542 |
|
543 |
-
#: bws_menu.php:
|
544 |
#, fuzzy
|
545 |
msgid "Install Now"
|
546 |
msgstr "Instalacija %s"
|
547 |
|
548 |
-
#: bws_menu.php:
|
549 |
#, php-format
|
550 |
msgid "Update to version %s"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: bws_menu.php:
|
554 |
#, fuzzy
|
555 |
msgid "Update"
|
556 |
msgstr "date"
|
557 |
|
558 |
-
#: bws_menu.php:
|
559 |
#, php-format
|
560 |
msgid "Preview %s"
|
561 |
msgstr ""
|
562 |
|
563 |
-
#: bws_menu.php:
|
564 |
msgid "Preview"
|
565 |
msgstr ""
|
566 |
|
567 |
-
#: bws_menu.php:
|
568 |
-
#: bws_menu.php:
|
569 |
#, php-format
|
570 |
msgid "By %s"
|
571 |
msgstr ""
|
572 |
|
573 |
-
#: bws_menu.php:
|
574 |
msgid "Details"
|
575 |
msgstr ""
|
576 |
|
577 |
-
#: bws_menu.php:
|
578 |
#, fuzzy
|
579 |
msgid "Already Installed"
|
580 |
msgstr "Instalacija %s"
|
581 |
|
582 |
-
#: bws_menu.php:
|
583 |
msgid "Environment"
|
584 |
msgstr "Okruženje"
|
585 |
|
586 |
-
#: bws_menu.php:
|
587 |
#, fuzzy
|
588 |
msgid "Active Plugins"
|
589 |
msgstr "Extensions activées"
|
590 |
|
591 |
-
#: bws_menu.php:
|
592 |
#, fuzzy
|
593 |
msgid "Inactive Plugins"
|
594 |
msgstr "Extensions activées"
|
595 |
|
596 |
-
#: bws_menu.php:
|
597 |
#, fuzzy
|
598 |
msgid "Send to support"
|
599 |
msgstr "Soutien"
|
600 |
|
601 |
-
#: bws_menu.php:
|
602 |
msgid "Send to custom email »"
|
603 |
msgstr "Pošalji na korisnički mejl »"
|
604 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-06-12 15:58+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-06-12 15:58+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Andrijana Nikolic <andrijanan@webhostinggeeks.com>\n"
|
9 |
"Language: fr_FR\n"
|
183 |
#: bws_functions.php:371
|
184 |
#: bws_functions.php:401
|
185 |
#: bws_functions.php:409
|
186 |
+
#: bws_menu.php:657
|
187 |
+
#: bws_menu.php:714
|
188 |
#, fuzzy
|
189 |
msgid "Activate"
|
190 |
msgstr "Aktivirani moduli"
|
273 |
|
274 |
#: bws_functions.php:552
|
275 |
#: bws_functions.php:605
|
276 |
+
#: bws_menu.php:633
|
277 |
+
#: bws_menu.php:655
|
278 |
+
#: bws_menu.php:682
|
279 |
+
#: bws_menu.php:712
|
280 |
+
#: bws_menu.php:758
|
281 |
#, fuzzy
|
282 |
msgid "Learn more"
|
283 |
msgstr "Pročitaj više"
|
311 |
msgid "Close"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: bws_functions.php:771
|
315 |
+
#: bws_functions.php:784
|
316 |
+
msgid "Restore all plugin settings to defaults"
|
317 |
+
msgstr ""
|
318 |
+
|
319 |
+
#: bws_functions.php:773
|
320 |
+
#: bws_functions.php:786
|
321 |
+
#, fuzzy
|
322 |
+
msgid "Restore settings"
|
323 |
+
msgstr "na stranici za podešavanje modula ("
|
324 |
+
|
325 |
+
#: bws_functions.php:797
|
326 |
+
msgid "Are you sure you want to restore all settings by default?"
|
327 |
+
msgstr ""
|
328 |
+
|
329 |
+
#: bws_functions.php:799
|
330 |
+
msgid "Yes, restore all settings"
|
331 |
+
msgstr ""
|
332 |
+
|
333 |
+
#: bws_functions.php:800
|
334 |
+
#, fuzzy
|
335 |
+
msgid "No, go back to the settings page"
|
336 |
+
msgstr "na stranici za podešavanje modula ("
|
337 |
+
|
338 |
+
#: bws_menu.php:470
|
339 |
msgid "Not set"
|
340 |
msgstr "Nije podešeno"
|
341 |
|
342 |
+
#: bws_menu.php:472
|
343 |
+
#: bws_menu.php:473
|
344 |
msgid "On"
|
345 |
msgstr "Uključeno"
|
346 |
|
347 |
+
#: bws_menu.php:472
|
348 |
+
#: bws_menu.php:473
|
349 |
msgid "Off"
|
350 |
msgstr "Isključeno"
|
351 |
|
352 |
+
#: bws_menu.php:474
|
353 |
+
#: bws_menu.php:475
|
|
|
|
|
|
|
354 |
#: bws_menu.php:476
|
355 |
+
#: bws_menu.php:477
|
356 |
+
#: bws_menu.php:478
|
357 |
+
#: bws_menu.php:490
|
358 |
msgid "N/A"
|
359 |
msgstr "N/A"
|
360 |
|
361 |
+
#: bws_menu.php:478
|
362 |
msgid " Mb"
|
363 |
msgstr " Mb"
|
364 |
|
365 |
+
#: bws_menu.php:479
|
366 |
+
#: bws_menu.php:480
|
367 |
+
#: bws_menu.php:481
|
368 |
+
#: bws_menu.php:486
|
369 |
msgid "Yes"
|
370 |
msgstr "Da"
|
371 |
|
372 |
+
#: bws_menu.php:479
|
373 |
+
#: bws_menu.php:480
|
374 |
+
#: bws_menu.php:481
|
375 |
+
#: bws_menu.php:488
|
376 |
msgid "No"
|
377 |
msgstr "Ne"
|
378 |
|
379 |
+
#: bws_menu.php:498
|
380 |
msgid "Operating System"
|
381 |
msgstr "Operativni Sistem"
|
382 |
|
383 |
+
#: bws_menu.php:499
|
384 |
msgid "Server"
|
385 |
msgstr "Server"
|
386 |
|
387 |
+
#: bws_menu.php:500
|
388 |
msgid "Memory usage"
|
389 |
msgstr "Upotreba memorije"
|
390 |
|
391 |
+
#: bws_menu.php:501
|
392 |
msgid "MYSQL Version"
|
393 |
msgstr "MYSQL Verzija"
|
394 |
|
395 |
+
#: bws_menu.php:502
|
396 |
msgid "SQL Mode"
|
397 |
msgstr "SQL način"
|
398 |
|
399 |
+
#: bws_menu.php:503
|
400 |
msgid "PHP Version"
|
401 |
msgstr "PHP Verzija"
|
402 |
|
403 |
+
#: bws_menu.php:504
|
404 |
msgid "PHP Safe Mode"
|
405 |
msgstr "PHP Sigurni način"
|
406 |
|
407 |
+
#: bws_menu.php:505
|
408 |
msgid "PHP Allow URL fopen"
|
409 |
msgstr "PHP Dozvoli URL fopen"
|
410 |
|
411 |
+
#: bws_menu.php:506
|
412 |
msgid "PHP Memory Limit"
|
413 |
msgstr "PHP Ograničenje memorije"
|
414 |
|
415 |
+
#: bws_menu.php:507
|
416 |
#, fuzzy
|
417 |
msgid "PHP Max Upload Size"
|
418 |
msgstr "Envoi de fichier"
|
419 |
|
420 |
+
#: bws_menu.php:508
|
421 |
msgid "PHP Max Post Size"
|
422 |
msgstr "PHP Max veličina za učitavanje"
|
423 |
|
424 |
+
#: bws_menu.php:509
|
425 |
msgid "PHP Max Script Execute Time"
|
426 |
msgstr "PHP Max veličina posta"
|
427 |
|
428 |
+
#: bws_menu.php:510
|
429 |
msgid "PHP Exif support"
|
430 |
msgstr "PHP Exif podrška"
|
431 |
|
432 |
+
#: bws_menu.php:511
|
433 |
msgid "PHP IPTC support"
|
434 |
msgstr "PHP IPTC podrška"
|
435 |
|
436 |
+
#: bws_menu.php:512
|
437 |
msgid "PHP XML support"
|
438 |
msgstr "PHP XML podrška"
|
439 |
|
440 |
+
#: bws_menu.php:513
|
441 |
#, fuzzy
|
442 |
msgid "Site URL"
|
443 |
msgstr "URL du lien"
|
444 |
|
445 |
+
#: bws_menu.php:514
|
446 |
msgid "Home URL"
|
447 |
msgstr "URL naslovne"
|
448 |
|
449 |
+
#: bws_menu.php:517
|
450 |
msgid "WordPress Version"
|
451 |
msgstr "WordPress Verzija"
|
452 |
|
453 |
+
#: bws_menu.php:518
|
454 |
msgid "WordPress DB Version"
|
455 |
msgstr "WordPress DB Verzija"
|
456 |
|
457 |
+
#: bws_menu.php:519
|
458 |
msgid "Multisite"
|
459 |
msgstr "Višenamenski sajt"
|
460 |
|
461 |
+
#: bws_menu.php:520
|
462 |
msgid "Active Theme"
|
463 |
msgstr "Aktivna tema"
|
464 |
|
465 |
+
#: bws_menu.php:535
|
466 |
msgid "Please enter a valid email address."
|
467 |
msgstr "Molimo unesite važeću mejl adresu"
|
468 |
|
469 |
+
#: bws_menu.php:539
|
470 |
msgid "Email with system info is sent to "
|
471 |
msgstr "Mejl sa sistemskim informacijama je poslat na"
|
472 |
|
473 |
+
#: bws_menu.php:543
|
474 |
msgid "Thank you for contacting us."
|
475 |
msgstr "Hvala što ste nas kontaktirali"
|
476 |
|
477 |
+
#: bws_menu.php:576
|
478 |
msgid "Sorry, email message could not be delivered."
|
479 |
msgstr "Nažalost mejl poruka nije prosleđena"
|
480 |
|
481 |
+
#: bws_menu.php:584
|
482 |
msgid "Need help?"
|
483 |
msgstr ""
|
484 |
|
485 |
+
#: bws_menu.php:585
|
486 |
msgid "Client area"
|
487 |
msgstr ""
|
488 |
|
489 |
+
#: bws_menu.php:586
|
490 |
+
#: bws_menu.php:897
|
491 |
msgid "System status"
|
492 |
msgstr "Sistemski status"
|
493 |
|
494 |
+
#: bws_menu.php:591
|
495 |
#, fuzzy
|
496 |
msgid "Plugins"
|
497 |
msgstr "Pro moduli"
|
498 |
|
499 |
+
#: bws_menu.php:593
|
500 |
msgid "Themes"
|
501 |
msgstr ""
|
502 |
|
503 |
+
#: bws_menu.php:598
|
504 |
msgid "All"
|
505 |
msgstr ""
|
506 |
|
507 |
+
#: bws_menu.php:599
|
508 |
#, fuzzy
|
509 |
msgid "Installed"
|
510 |
msgstr "Instalacija %s"
|
511 |
|
512 |
+
#: bws_menu.php:600
|
513 |
#, fuzzy
|
514 |
msgid "Recommended"
|
515 |
msgstr "Preporučeni moduli"
|
516 |
|
517 |
+
#: bws_menu.php:604
|
518 |
msgid "Installed plugins"
|
519 |
msgstr "Instalirani moduli"
|
520 |
|
521 |
+
#: bws_menu.php:636
|
522 |
+
#: bws_menu.php:685
|
523 |
msgid "Settings"
|
524 |
msgstr "Podešavanja"
|
525 |
|
526 |
+
#: bws_menu.php:657
|
527 |
+
#: bws_menu.php:714
|
528 |
#, fuzzy
|
529 |
msgid "Activate this plugin"
|
530 |
msgstr "Aktivirani moduli"
|
531 |
|
532 |
+
#: bws_menu.php:672
|
533 |
+
#: bws_menu.php:702
|
534 |
+
#: bws_menu.php:748
|
535 |
msgid "Go"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: bws_menu.php:676
|
539 |
+
#: bws_menu.php:706
|
540 |
+
#: bws_menu.php:752
|
541 |
msgid "DONATE"
|
542 |
msgstr ""
|
543 |
|
544 |
+
#: bws_menu.php:722
|
545 |
msgid "Recommended plugins"
|
546 |
msgstr "Preporučeni moduli"
|
547 |
|
548 |
+
#: bws_menu.php:760
|
549 |
#, fuzzy
|
550 |
msgid "Install now"
|
551 |
msgstr "Instalacija %s"
|
552 |
|
553 |
+
#: bws_menu.php:781
|
554 |
msgid "Try again"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: bws_menu.php:799
|
558 |
#, php-format
|
559 |
msgid "Preview “%s”"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: bws_menu.php:830
|
563 |
#, php-format
|
564 |
msgid "Install %s"
|
565 |
msgstr "Instalacija %s"
|
566 |
|
567 |
+
#: bws_menu.php:830
|
568 |
#, fuzzy
|
569 |
msgid "Install Now"
|
570 |
msgstr "Instalacija %s"
|
571 |
|
572 |
+
#: bws_menu.php:833
|
573 |
#, php-format
|
574 |
msgid "Update to version %s"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: bws_menu.php:833
|
578 |
#, fuzzy
|
579 |
msgid "Update"
|
580 |
msgstr "date"
|
581 |
|
582 |
+
#: bws_menu.php:840
|
583 |
#, php-format
|
584 |
msgid "Preview %s"
|
585 |
msgstr ""
|
586 |
|
587 |
+
#: bws_menu.php:840
|
588 |
msgid "Preview"
|
589 |
msgstr ""
|
590 |
|
591 |
+
#: bws_menu.php:846
|
592 |
+
#: bws_menu.php:878
|
593 |
#, php-format
|
594 |
msgid "By %s"
|
595 |
msgstr ""
|
596 |
|
597 |
+
#: bws_menu.php:852
|
598 |
msgid "Details"
|
599 |
msgstr ""
|
600 |
|
601 |
+
#: bws_menu.php:884
|
602 |
#, fuzzy
|
603 |
msgid "Already Installed"
|
604 |
msgstr "Instalacija %s"
|
605 |
|
606 |
+
#: bws_menu.php:900
|
607 |
msgid "Environment"
|
608 |
msgstr "Okruženje"
|
609 |
|
610 |
+
#: bws_menu.php:911
|
611 |
#, fuzzy
|
612 |
msgid "Active Plugins"
|
613 |
msgstr "Extensions activées"
|
614 |
|
615 |
+
#: bws_menu.php:924
|
616 |
#, fuzzy
|
617 |
msgid "Inactive Plugins"
|
618 |
msgstr "Extensions activées"
|
619 |
|
620 |
+
#: bws_menu.php:940
|
621 |
#, fuzzy
|
622 |
msgid "Send to support"
|
623 |
msgstr "Soutien"
|
624 |
|
625 |
+
#: bws_menu.php:947
|
626 |
msgid "Send to custom email »"
|
627 |
msgstr "Pošalji na korisnički mejl »"
|
628 |
|
bws_menu/languages/bestwebsoft-sv_SE.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-sv_SE.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: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Christer Rönningborg, Blittan <blittan@xbmc.org>\n"
|
9 |
"Language: sv_SE\n"
|
@@ -182,8 +182,8 @@ msgstr ""
|
|
182 |
#: bws_functions.php:371
|
183 |
#: bws_functions.php:401
|
184 |
#: bws_functions.php:409
|
185 |
-
#: bws_menu.php:
|
186 |
-
#: bws_menu.php:
|
187 |
#, fuzzy
|
188 |
msgid "Activate"
|
189 |
msgstr "Aktiverade tillägg"
|
@@ -272,11 +272,11 @@ msgstr ""
|
|
272 |
|
273 |
#: bws_functions.php:552
|
274 |
#: bws_functions.php:605
|
275 |
-
#: bws_menu.php:
|
276 |
-
#: bws_menu.php:
|
277 |
-
#: bws_menu.php:
|
278 |
-
#: bws_menu.php:
|
279 |
-
#: bws_menu.php:
|
280 |
#, fuzzy
|
281 |
msgid "Learn more"
|
282 |
msgstr "Läs mer"
|
@@ -310,287 +310,309 @@ msgstr ""
|
|
310 |
msgid "Close"
|
311 |
msgstr ""
|
312 |
|
313 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
314 |
msgid "Not set"
|
315 |
msgstr "Inte angiven"
|
316 |
|
317 |
-
#: bws_menu.php:
|
318 |
-
#: bws_menu.php:
|
319 |
msgid "On"
|
320 |
msgstr "På"
|
321 |
|
322 |
-
#: bws_menu.php:
|
323 |
-
#: bws_menu.php:
|
324 |
msgid "Off"
|
325 |
msgstr "Av"
|
326 |
|
327 |
-
#: bws_menu.php:
|
328 |
-
#: bws_menu.php:
|
329 |
-
#: bws_menu.php:462
|
330 |
-
#: bws_menu.php:463
|
331 |
-
#: bws_menu.php:464
|
332 |
#: bws_menu.php:476
|
|
|
|
|
|
|
333 |
msgid "N/A"
|
334 |
msgstr "Finns ej"
|
335 |
|
336 |
-
#: bws_menu.php:
|
337 |
msgid " Mb"
|
338 |
msgstr " Mb"
|
339 |
|
340 |
-
#: bws_menu.php:
|
341 |
-
#: bws_menu.php:
|
342 |
-
#: bws_menu.php:
|
343 |
-
#: bws_menu.php:
|
344 |
msgid "Yes"
|
345 |
msgstr "Ja"
|
346 |
|
347 |
-
#: bws_menu.php:
|
348 |
-
#: bws_menu.php:
|
349 |
-
#: bws_menu.php:
|
350 |
-
#: bws_menu.php:
|
351 |
msgid "No"
|
352 |
msgstr "Nej"
|
353 |
|
354 |
-
#: bws_menu.php:
|
355 |
msgid "Operating System"
|
356 |
msgstr "Operativsystem"
|
357 |
|
358 |
-
#: bws_menu.php:
|
359 |
msgid "Server"
|
360 |
msgstr "Server"
|
361 |
|
362 |
-
#: bws_menu.php:
|
363 |
msgid "Memory usage"
|
364 |
msgstr "Minnesanvändning"
|
365 |
|
366 |
-
#: bws_menu.php:
|
367 |
msgid "MYSQL Version"
|
368 |
msgstr "MySQL-version"
|
369 |
|
370 |
-
#: bws_menu.php:
|
371 |
msgid "SQL Mode"
|
372 |
msgstr "SQL-läge"
|
373 |
|
374 |
-
#: bws_menu.php:
|
375 |
msgid "PHP Version"
|
376 |
msgstr "PHP-version"
|
377 |
|
378 |
-
#: bws_menu.php:
|
379 |
msgid "PHP Safe Mode"
|
380 |
msgstr "PHP säkert läge"
|
381 |
|
382 |
-
#: bws_menu.php:
|
383 |
msgid "PHP Allow URL fopen"
|
384 |
msgstr "PHP tillåt URL fopen"
|
385 |
|
386 |
-
#: bws_menu.php:
|
387 |
msgid "PHP Memory Limit"
|
388 |
msgstr "PHP Minnesgräns"
|
389 |
|
390 |
-
#: bws_menu.php:
|
391 |
msgid "PHP Max Upload Size"
|
392 |
msgstr "PHP Max uppladdningstorlek"
|
393 |
|
394 |
-
#: bws_menu.php:
|
395 |
msgid "PHP Max Post Size"
|
396 |
msgstr "PHP Max poststorlek"
|
397 |
|
398 |
-
#: bws_menu.php:
|
399 |
msgid "PHP Max Script Execute Time"
|
400 |
msgstr "PHP Max skriptexekverinstid"
|
401 |
|
402 |
-
#: bws_menu.php:
|
403 |
msgid "PHP Exif support"
|
404 |
msgstr "PHP Exifstöd"
|
405 |
|
406 |
-
#: bws_menu.php:
|
407 |
msgid "PHP IPTC support"
|
408 |
msgstr "PHP ITPC-stöd"
|
409 |
|
410 |
-
#: bws_menu.php:
|
411 |
msgid "PHP XML support"
|
412 |
msgstr "PHP XML-stöd"
|
413 |
|
414 |
-
#: bws_menu.php:
|
415 |
msgid "Site URL"
|
416 |
msgstr "SajtURL"
|
417 |
|
418 |
-
#: bws_menu.php:
|
419 |
msgid "Home URL"
|
420 |
msgstr "HemURL"
|
421 |
|
422 |
-
#: bws_menu.php:
|
423 |
msgid "WordPress Version"
|
424 |
msgstr "WordPress-version"
|
425 |
|
426 |
-
#: bws_menu.php:
|
427 |
msgid "WordPress DB Version"
|
428 |
msgstr "WordPress-DB-version"
|
429 |
|
430 |
-
#: bws_menu.php:
|
431 |
msgid "Multisite"
|
432 |
msgstr "Multisajt"
|
433 |
|
434 |
-
#: bws_menu.php:
|
435 |
msgid "Active Theme"
|
436 |
msgstr "Aktivt tema"
|
437 |
|
438 |
-
#: bws_menu.php:
|
439 |
msgid "Please enter a valid email address."
|
440 |
msgstr "Var god ange en giltig epost-adress."
|
441 |
|
442 |
-
#: bws_menu.php:
|
443 |
msgid "Email with system info is sent to "
|
444 |
msgstr "Epost med systeminfo är skickat till"
|
445 |
|
446 |
-
#: bws_menu.php:
|
447 |
msgid "Thank you for contacting us."
|
448 |
msgstr "Tack för att du kontaktade oss."
|
449 |
|
450 |
-
#: bws_menu.php:
|
451 |
msgid "Sorry, email message could not be delivered."
|
452 |
msgstr "Ledsen, eposten kunde inte levereras."
|
453 |
|
454 |
-
#: bws_menu.php:
|
455 |
msgid "Need help?"
|
456 |
msgstr ""
|
457 |
|
458 |
-
#: bws_menu.php:
|
459 |
msgid "Client area"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: bws_menu.php:
|
463 |
-
#: bws_menu.php:
|
464 |
msgid "System status"
|
465 |
msgstr "Systemstatus"
|
466 |
|
467 |
-
#: bws_menu.php:
|
468 |
#, fuzzy
|
469 |
msgid "Plugins"
|
470 |
msgstr "Betaltillägg"
|
471 |
|
472 |
-
#: bws_menu.php:
|
473 |
msgid "Themes"
|
474 |
msgstr ""
|
475 |
|
476 |
-
#: bws_menu.php:
|
477 |
msgid "All"
|
478 |
msgstr ""
|
479 |
|
480 |
-
#: bws_menu.php:
|
481 |
#, fuzzy
|
482 |
msgid "Installed"
|
483 |
msgstr "Installera %s"
|
484 |
|
485 |
-
#: bws_menu.php:
|
486 |
#, fuzzy
|
487 |
msgid "Recommended"
|
488 |
msgstr "Rekommenderade tillägg"
|
489 |
|
490 |
-
#: bws_menu.php:
|
491 |
msgid "Installed plugins"
|
492 |
msgstr "Installerade tillägg"
|
493 |
|
494 |
-
#: bws_menu.php:
|
495 |
-
#: bws_menu.php:
|
496 |
msgid "Settings"
|
497 |
msgstr "Inställningar"
|
498 |
|
499 |
-
#: bws_menu.php:
|
500 |
-
#: bws_menu.php:
|
501 |
#, fuzzy
|
502 |
msgid "Activate this plugin"
|
503 |
msgstr "Aktiverade tillägg"
|
504 |
|
505 |
-
#: bws_menu.php:
|
506 |
-
#: bws_menu.php:
|
507 |
-
#: bws_menu.php:
|
508 |
msgid "Go"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: bws_menu.php:
|
512 |
-
#: bws_menu.php:
|
513 |
-
#: bws_menu.php:
|
514 |
msgid "DONATE"
|
515 |
msgstr ""
|
516 |
|
517 |
-
#: bws_menu.php:
|
518 |
msgid "Recommended plugins"
|
519 |
msgstr "Rekommenderade tillägg"
|
520 |
|
521 |
-
#: bws_menu.php:
|
522 |
#, fuzzy
|
523 |
msgid "Install now"
|
524 |
msgstr "Установить сейчас"
|
525 |
|
526 |
-
#: bws_menu.php:
|
527 |
msgid "Try again"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: bws_menu.php:
|
531 |
#, php-format
|
532 |
msgid "Preview “%s”"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#: bws_menu.php:
|
536 |
#, php-format
|
537 |
msgid "Install %s"
|
538 |
msgstr "Installera %s"
|
539 |
|
540 |
-
#: bws_menu.php:
|
541 |
msgid "Install Now"
|
542 |
msgstr "Установить сейчас"
|
543 |
|
544 |
-
#: bws_menu.php:
|
545 |
#, php-format
|
546 |
msgid "Update to version %s"
|
547 |
msgstr ""
|
548 |
|
549 |
-
#: bws_menu.php:
|
550 |
msgid "Update"
|
551 |
msgstr ""
|
552 |
|
553 |
-
#: bws_menu.php:
|
554 |
#, php-format
|
555 |
msgid "Preview %s"
|
556 |
msgstr ""
|
557 |
|
558 |
-
#: bws_menu.php:
|
559 |
msgid "Preview"
|
560 |
msgstr ""
|
561 |
|
562 |
-
#: bws_menu.php:
|
563 |
-
#: bws_menu.php:
|
564 |
#, php-format
|
565 |
msgid "By %s"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#: bws_menu.php:
|
569 |
msgid "Details"
|
570 |
msgstr ""
|
571 |
|
572 |
-
#: bws_menu.php:
|
573 |
#, fuzzy
|
574 |
msgid "Already Installed"
|
575 |
msgstr "Installera %s"
|
576 |
|
577 |
-
#: bws_menu.php:
|
578 |
msgid "Environment"
|
579 |
msgstr "Miljövariabler"
|
580 |
|
581 |
-
#: bws_menu.php:
|
582 |
msgid "Active Plugins"
|
583 |
msgstr "Aktiverade tillägg"
|
584 |
|
585 |
-
#: bws_menu.php:
|
586 |
msgid "Inactive Plugins"
|
587 |
msgstr "Inaktiverade tillägg"
|
588 |
|
589 |
-
#: bws_menu.php:
|
590 |
msgid "Send to support"
|
591 |
msgstr "Skicka till support"
|
592 |
|
593 |
-
#: bws_menu.php:
|
594 |
msgid "Send to custom email »"
|
595 |
msgstr "Skicka till anpassad epost »"
|
596 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-06-12 15:58+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-06-12 15:58+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Christer Rönningborg, Blittan <blittan@xbmc.org>\n"
|
9 |
"Language: sv_SE\n"
|
182 |
#: bws_functions.php:371
|
183 |
#: bws_functions.php:401
|
184 |
#: bws_functions.php:409
|
185 |
+
#: bws_menu.php:657
|
186 |
+
#: bws_menu.php:714
|
187 |
#, fuzzy
|
188 |
msgid "Activate"
|
189 |
msgstr "Aktiverade tillägg"
|
272 |
|
273 |
#: bws_functions.php:552
|
274 |
#: bws_functions.php:605
|
275 |
+
#: bws_menu.php:633
|
276 |
+
#: bws_menu.php:655
|
277 |
+
#: bws_menu.php:682
|
278 |
+
#: bws_menu.php:712
|
279 |
+
#: bws_menu.php:758
|
280 |
#, fuzzy
|
281 |
msgid "Learn more"
|
282 |
msgstr "Läs mer"
|
310 |
msgid "Close"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: bws_functions.php:771
|
314 |
+
#: bws_functions.php:784
|
315 |
+
msgid "Restore all plugin settings to defaults"
|
316 |
+
msgstr ""
|
317 |
+
|
318 |
+
#: bws_functions.php:773
|
319 |
+
#: bws_functions.php:786
|
320 |
+
msgid "Restore settings"
|
321 |
+
msgstr ""
|
322 |
+
|
323 |
+
#: bws_functions.php:797
|
324 |
+
msgid "Are you sure you want to restore all settings by default?"
|
325 |
+
msgstr ""
|
326 |
+
|
327 |
+
#: bws_functions.php:799
|
328 |
+
msgid "Yes, restore all settings"
|
329 |
+
msgstr ""
|
330 |
+
|
331 |
+
#: bws_functions.php:800
|
332 |
+
msgid "No, go back to the settings page"
|
333 |
+
msgstr ""
|
334 |
+
|
335 |
+
#: bws_menu.php:470
|
336 |
msgid "Not set"
|
337 |
msgstr "Inte angiven"
|
338 |
|
339 |
+
#: bws_menu.php:472
|
340 |
+
#: bws_menu.php:473
|
341 |
msgid "On"
|
342 |
msgstr "På"
|
343 |
|
344 |
+
#: bws_menu.php:472
|
345 |
+
#: bws_menu.php:473
|
346 |
msgid "Off"
|
347 |
msgstr "Av"
|
348 |
|
349 |
+
#: bws_menu.php:474
|
350 |
+
#: bws_menu.php:475
|
|
|
|
|
|
|
351 |
#: bws_menu.php:476
|
352 |
+
#: bws_menu.php:477
|
353 |
+
#: bws_menu.php:478
|
354 |
+
#: bws_menu.php:490
|
355 |
msgid "N/A"
|
356 |
msgstr "Finns ej"
|
357 |
|
358 |
+
#: bws_menu.php:478
|
359 |
msgid " Mb"
|
360 |
msgstr " Mb"
|
361 |
|
362 |
+
#: bws_menu.php:479
|
363 |
+
#: bws_menu.php:480
|
364 |
+
#: bws_menu.php:481
|
365 |
+
#: bws_menu.php:486
|
366 |
msgid "Yes"
|
367 |
msgstr "Ja"
|
368 |
|
369 |
+
#: bws_menu.php:479
|
370 |
+
#: bws_menu.php:480
|
371 |
+
#: bws_menu.php:481
|
372 |
+
#: bws_menu.php:488
|
373 |
msgid "No"
|
374 |
msgstr "Nej"
|
375 |
|
376 |
+
#: bws_menu.php:498
|
377 |
msgid "Operating System"
|
378 |
msgstr "Operativsystem"
|
379 |
|
380 |
+
#: bws_menu.php:499
|
381 |
msgid "Server"
|
382 |
msgstr "Server"
|
383 |
|
384 |
+
#: bws_menu.php:500
|
385 |
msgid "Memory usage"
|
386 |
msgstr "Minnesanvändning"
|
387 |
|
388 |
+
#: bws_menu.php:501
|
389 |
msgid "MYSQL Version"
|
390 |
msgstr "MySQL-version"
|
391 |
|
392 |
+
#: bws_menu.php:502
|
393 |
msgid "SQL Mode"
|
394 |
msgstr "SQL-läge"
|
395 |
|
396 |
+
#: bws_menu.php:503
|
397 |
msgid "PHP Version"
|
398 |
msgstr "PHP-version"
|
399 |
|
400 |
+
#: bws_menu.php:504
|
401 |
msgid "PHP Safe Mode"
|
402 |
msgstr "PHP säkert läge"
|
403 |
|
404 |
+
#: bws_menu.php:505
|
405 |
msgid "PHP Allow URL fopen"
|
406 |
msgstr "PHP tillåt URL fopen"
|
407 |
|
408 |
+
#: bws_menu.php:506
|
409 |
msgid "PHP Memory Limit"
|
410 |
msgstr "PHP Minnesgräns"
|
411 |
|
412 |
+
#: bws_menu.php:507
|
413 |
msgid "PHP Max Upload Size"
|
414 |
msgstr "PHP Max uppladdningstorlek"
|
415 |
|
416 |
+
#: bws_menu.php:508
|
417 |
msgid "PHP Max Post Size"
|
418 |
msgstr "PHP Max poststorlek"
|
419 |
|
420 |
+
#: bws_menu.php:509
|
421 |
msgid "PHP Max Script Execute Time"
|
422 |
msgstr "PHP Max skriptexekverinstid"
|
423 |
|
424 |
+
#: bws_menu.php:510
|
425 |
msgid "PHP Exif support"
|
426 |
msgstr "PHP Exifstöd"
|
427 |
|
428 |
+
#: bws_menu.php:511
|
429 |
msgid "PHP IPTC support"
|
430 |
msgstr "PHP ITPC-stöd"
|
431 |
|
432 |
+
#: bws_menu.php:512
|
433 |
msgid "PHP XML support"
|
434 |
msgstr "PHP XML-stöd"
|
435 |
|
436 |
+
#: bws_menu.php:513
|
437 |
msgid "Site URL"
|
438 |
msgstr "SajtURL"
|
439 |
|
440 |
+
#: bws_menu.php:514
|
441 |
msgid "Home URL"
|
442 |
msgstr "HemURL"
|
443 |
|
444 |
+
#: bws_menu.php:517
|
445 |
msgid "WordPress Version"
|
446 |
msgstr "WordPress-version"
|
447 |
|
448 |
+
#: bws_menu.php:518
|
449 |
msgid "WordPress DB Version"
|
450 |
msgstr "WordPress-DB-version"
|
451 |
|
452 |
+
#: bws_menu.php:519
|
453 |
msgid "Multisite"
|
454 |
msgstr "Multisajt"
|
455 |
|
456 |
+
#: bws_menu.php:520
|
457 |
msgid "Active Theme"
|
458 |
msgstr "Aktivt tema"
|
459 |
|
460 |
+
#: bws_menu.php:535
|
461 |
msgid "Please enter a valid email address."
|
462 |
msgstr "Var god ange en giltig epost-adress."
|
463 |
|
464 |
+
#: bws_menu.php:539
|
465 |
msgid "Email with system info is sent to "
|
466 |
msgstr "Epost med systeminfo är skickat till"
|
467 |
|
468 |
+
#: bws_menu.php:543
|
469 |
msgid "Thank you for contacting us."
|
470 |
msgstr "Tack för att du kontaktade oss."
|
471 |
|
472 |
+
#: bws_menu.php:576
|
473 |
msgid "Sorry, email message could not be delivered."
|
474 |
msgstr "Ledsen, eposten kunde inte levereras."
|
475 |
|
476 |
+
#: bws_menu.php:584
|
477 |
msgid "Need help?"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: bws_menu.php:585
|
481 |
msgid "Client area"
|
482 |
msgstr ""
|
483 |
|
484 |
+
#: bws_menu.php:586
|
485 |
+
#: bws_menu.php:897
|
486 |
msgid "System status"
|
487 |
msgstr "Systemstatus"
|
488 |
|
489 |
+
#: bws_menu.php:591
|
490 |
#, fuzzy
|
491 |
msgid "Plugins"
|
492 |
msgstr "Betaltillägg"
|
493 |
|
494 |
+
#: bws_menu.php:593
|
495 |
msgid "Themes"
|
496 |
msgstr ""
|
497 |
|
498 |
+
#: bws_menu.php:598
|
499 |
msgid "All"
|
500 |
msgstr ""
|
501 |
|
502 |
+
#: bws_menu.php:599
|
503 |
#, fuzzy
|
504 |
msgid "Installed"
|
505 |
msgstr "Installera %s"
|
506 |
|
507 |
+
#: bws_menu.php:600
|
508 |
#, fuzzy
|
509 |
msgid "Recommended"
|
510 |
msgstr "Rekommenderade tillägg"
|
511 |
|
512 |
+
#: bws_menu.php:604
|
513 |
msgid "Installed plugins"
|
514 |
msgstr "Installerade tillägg"
|
515 |
|
516 |
+
#: bws_menu.php:636
|
517 |
+
#: bws_menu.php:685
|
518 |
msgid "Settings"
|
519 |
msgstr "Inställningar"
|
520 |
|
521 |
+
#: bws_menu.php:657
|
522 |
+
#: bws_menu.php:714
|
523 |
#, fuzzy
|
524 |
msgid "Activate this plugin"
|
525 |
msgstr "Aktiverade tillägg"
|
526 |
|
527 |
+
#: bws_menu.php:672
|
528 |
+
#: bws_menu.php:702
|
529 |
+
#: bws_menu.php:748
|
530 |
msgid "Go"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: bws_menu.php:676
|
534 |
+
#: bws_menu.php:706
|
535 |
+
#: bws_menu.php:752
|
536 |
msgid "DONATE"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: bws_menu.php:722
|
540 |
msgid "Recommended plugins"
|
541 |
msgstr "Rekommenderade tillägg"
|
542 |
|
543 |
+
#: bws_menu.php:760
|
544 |
#, fuzzy
|
545 |
msgid "Install now"
|
546 |
msgstr "Установить сейчас"
|
547 |
|
548 |
+
#: bws_menu.php:781
|
549 |
msgid "Try again"
|
550 |
msgstr ""
|
551 |
|
552 |
+
#: bws_menu.php:799
|
553 |
#, php-format
|
554 |
msgid "Preview “%s”"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: bws_menu.php:830
|
558 |
#, php-format
|
559 |
msgid "Install %s"
|
560 |
msgstr "Installera %s"
|
561 |
|
562 |
+
#: bws_menu.php:830
|
563 |
msgid "Install Now"
|
564 |
msgstr "Установить сейчас"
|
565 |
|
566 |
+
#: bws_menu.php:833
|
567 |
#, php-format
|
568 |
msgid "Update to version %s"
|
569 |
msgstr ""
|
570 |
|
571 |
+
#: bws_menu.php:833
|
572 |
msgid "Update"
|
573 |
msgstr ""
|
574 |
|
575 |
+
#: bws_menu.php:840
|
576 |
#, php-format
|
577 |
msgid "Preview %s"
|
578 |
msgstr ""
|
579 |
|
580 |
+
#: bws_menu.php:840
|
581 |
msgid "Preview"
|
582 |
msgstr ""
|
583 |
|
584 |
+
#: bws_menu.php:846
|
585 |
+
#: bws_menu.php:878
|
586 |
#, php-format
|
587 |
msgid "By %s"
|
588 |
msgstr ""
|
589 |
|
590 |
+
#: bws_menu.php:852
|
591 |
msgid "Details"
|
592 |
msgstr ""
|
593 |
|
594 |
+
#: bws_menu.php:884
|
595 |
#, fuzzy
|
596 |
msgid "Already Installed"
|
597 |
msgstr "Installera %s"
|
598 |
|
599 |
+
#: bws_menu.php:900
|
600 |
msgid "Environment"
|
601 |
msgstr "Miljövariabler"
|
602 |
|
603 |
+
#: bws_menu.php:911
|
604 |
msgid "Active Plugins"
|
605 |
msgstr "Aktiverade tillägg"
|
606 |
|
607 |
+
#: bws_menu.php:924
|
608 |
msgid "Inactive Plugins"
|
609 |
msgstr "Inaktiverade tillägg"
|
610 |
|
611 |
+
#: bws_menu.php:940
|
612 |
msgid "Send to support"
|
613 |
msgstr "Skicka till support"
|
614 |
|
615 |
+
#: bws_menu.php:947
|
616 |
msgid "Send to custom email »"
|
617 |
msgstr "Skicka till anpassad epost »"
|
618 |
|
bws_menu/languages/bestwebsoft-uk.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-uk.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: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
@@ -119,7 +119,7 @@ msgstr "Немає доступу до теки завантажень WordPress
|
|
119 |
|
120 |
#: bws_functions.php:296
|
121 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
122 |
-
msgstr "Виникли певні проблеми. Спробуйте ще раз пізніше або завантажте плагін вручну. Просимо
|
123 |
|
124 |
#: bws_functions.php:321
|
125 |
msgid "Please, enter Your license key"
|
@@ -175,8 +175,8 @@ msgstr "Спробуйте %s-денну тріал версію безкошт
|
|
175 |
#: bws_functions.php:371
|
176 |
#: bws_functions.php:401
|
177 |
#: bws_functions.php:409
|
178 |
-
#: bws_menu.php:
|
179 |
-
#: bws_menu.php:
|
180 |
msgid "Activate"
|
181 |
msgstr "Активувати"
|
182 |
|
@@ -248,12 +248,11 @@ msgstr "Перевірте ліцензійний ключ"
|
|
248 |
|
249 |
#: bws_functions.php:542
|
250 |
msgid "WARNING: Illegal use notification"
|
251 |
-
msgstr ""
|
252 |
|
253 |
#: bws_functions.php:542
|
254 |
-
#, fuzzy
|
255 |
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 you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
|
256 |
-
msgstr "
|
257 |
|
258 |
#: bws_functions.php:550
|
259 |
msgid "Notice: Your PRO Trial license has expired. To continue using the plugin you should buy a PRO license"
|
@@ -265,11 +264,11 @@ msgstr "Строк вашої ліцензії витік. Якщо ви хоч
|
|
265 |
|
266 |
#: bws_functions.php:552
|
267 |
#: bws_functions.php:605
|
268 |
-
#: bws_menu.php:
|
269 |
-
#: bws_menu.php:
|
270 |
-
#: bws_menu.php:
|
271 |
-
#: bws_menu.php:
|
272 |
-
#: bws_menu.php:
|
273 |
msgid "Learn more"
|
274 |
msgstr "Дізнатись більше"
|
275 |
|
@@ -296,287 +295,309 @@ msgstr "витікає"
|
|
296 |
|
297 |
#: bws_functions.php:605
|
298 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
299 |
-
msgstr "та ви більше не будете
|
300 |
|
301 |
#: bws_functions.php:680
|
302 |
msgid "Close"
|
303 |
msgstr "Закрити"
|
304 |
|
305 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
306 |
msgid "Not set"
|
307 |
msgstr "Не задано"
|
308 |
|
309 |
-
#: bws_menu.php:
|
310 |
-
#: bws_menu.php:
|
311 |
msgid "On"
|
312 |
msgstr "Увімк."
|
313 |
|
314 |
-
#: bws_menu.php:
|
315 |
-
#: bws_menu.php:
|
316 |
msgid "Off"
|
317 |
msgstr "Вимк."
|
318 |
|
319 |
-
#: bws_menu.php:
|
320 |
-
#: bws_menu.php:
|
321 |
-
#: bws_menu.php:462
|
322 |
-
#: bws_menu.php:463
|
323 |
-
#: bws_menu.php:464
|
324 |
#: bws_menu.php:476
|
|
|
|
|
|
|
325 |
msgid "N/A"
|
326 |
msgstr "Невідомо"
|
327 |
|
328 |
-
#: bws_menu.php:
|
329 |
msgid " Mb"
|
330 |
msgstr "Мб"
|
331 |
|
332 |
-
#: bws_menu.php:
|
333 |
-
#: bws_menu.php:
|
334 |
-
#: bws_menu.php:
|
335 |
-
#: bws_menu.php:
|
336 |
msgid "Yes"
|
337 |
msgstr "Так"
|
338 |
|
339 |
-
#: bws_menu.php:
|
340 |
-
#: bws_menu.php:
|
341 |
-
#: bws_menu.php:
|
342 |
-
#: bws_menu.php:
|
343 |
msgid "No"
|
344 |
msgstr "Ні"
|
345 |
|
346 |
-
#: bws_menu.php:
|
347 |
msgid "Operating System"
|
348 |
msgstr "Операційна система"
|
349 |
|
350 |
-
#: bws_menu.php:
|
351 |
msgid "Server"
|
352 |
msgstr "Тип серверу"
|
353 |
|
354 |
-
#: bws_menu.php:
|
355 |
msgid "Memory usage"
|
356 |
msgstr "Пам’яті використано"
|
357 |
|
358 |
-
#: bws_menu.php:
|
359 |
msgid "MYSQL Version"
|
360 |
msgstr "Версія MYSQL"
|
361 |
|
362 |
-
#: bws_menu.php:
|
363 |
msgid "SQL Mode"
|
364 |
msgstr "Режим SQL"
|
365 |
|
366 |
-
#: bws_menu.php:
|
367 |
msgid "PHP Version"
|
368 |
msgstr "Версія PHP"
|
369 |
|
370 |
-
#: bws_menu.php:
|
371 |
msgid "PHP Safe Mode"
|
372 |
msgstr "PHP Безпечний режим"
|
373 |
|
374 |
-
#: bws_menu.php:
|
375 |
msgid "PHP Allow URL fopen"
|
376 |
msgstr "Дозволити PHP URL fopen"
|
377 |
|
378 |
-
#: bws_menu.php:
|
379 |
msgid "PHP Memory Limit"
|
380 |
msgstr "Ліміт пам’яті"
|
381 |
|
382 |
-
#: bws_menu.php:
|
383 |
msgid "PHP Max Upload Size"
|
384 |
msgstr "Макс. розмір файлу, що завантажується"
|
385 |
|
386 |
-
#: bws_menu.php:
|
387 |
msgid "PHP Max Post Size"
|
388 |
msgstr "Макс. розмір посту"
|
389 |
|
390 |
-
#: bws_menu.php:
|
391 |
msgid "PHP Max Script Execute Time"
|
392 |
msgstr "Макс. час виконання сценарію"
|
393 |
|
394 |
-
#: bws_menu.php:
|
395 |
msgid "PHP Exif support"
|
396 |
msgstr "Підтримка PHP Exif"
|
397 |
|
398 |
-
#: bws_menu.php:
|
399 |
msgid "PHP IPTC support"
|
400 |
msgstr "Підтримка PHP IPTC"
|
401 |
|
402 |
-
#: bws_menu.php:
|
403 |
msgid "PHP XML support"
|
404 |
msgstr "Підтримка PHP XML"
|
405 |
|
406 |
-
#: bws_menu.php:
|
407 |
msgid "Site URL"
|
408 |
msgstr "Адреса сайту"
|
409 |
|
410 |
-
#: bws_menu.php:
|
411 |
msgid "Home URL"
|
412 |
msgstr "Адреса домашньої сторінки"
|
413 |
|
414 |
-
#: bws_menu.php:
|
415 |
msgid "WordPress Version"
|
416 |
msgstr "Версія WordPress"
|
417 |
|
418 |
-
#: bws_menu.php:
|
419 |
msgid "WordPress DB Version"
|
420 |
msgstr "Версія бази даних WordPress"
|
421 |
|
422 |
-
#: bws_menu.php:
|
423 |
msgid "Multisite"
|
424 |
msgstr "Мультисайт"
|
425 |
|
426 |
-
#: bws_menu.php:
|
427 |
msgid "Active Theme"
|
428 |
msgstr "Активна тема"
|
429 |
|
430 |
-
#: bws_menu.php:
|
431 |
msgid "Please enter a valid email address."
|
432 |
msgstr "Будь ласка, введіть коректний емейл."
|
433 |
|
434 |
-
#: bws_menu.php:
|
435 |
msgid "Email with system info is sent to "
|
436 |
msgstr "Емейл з системною інформацією надіслано на"
|
437 |
|
438 |
-
#: bws_menu.php:
|
439 |
msgid "Thank you for contacting us."
|
440 |
msgstr "Дякуємо, що звернулись до нас."
|
441 |
|
442 |
-
#: bws_menu.php:
|
443 |
msgid "Sorry, email message could not be delivered."
|
444 |
msgstr "Вибачте, ваше емейл не може бути доставлено"
|
445 |
|
446 |
-
#: bws_menu.php:
|
447 |
msgid "Need help?"
|
448 |
msgstr "Потрібна допомога?"
|
449 |
|
450 |
-
#: bws_menu.php:
|
451 |
msgid "Client area"
|
452 |
msgstr "Клієнтам"
|
453 |
|
454 |
-
#: bws_menu.php:
|
455 |
-
#: bws_menu.php:
|
456 |
msgid "System status"
|
457 |
msgstr "Системна інформація"
|
458 |
|
459 |
-
#: bws_menu.php:
|
460 |
msgid "Plugins"
|
461 |
msgstr "Плагіни"
|
462 |
|
463 |
-
#: bws_menu.php:
|
464 |
msgid "Themes"
|
465 |
msgstr "Теми"
|
466 |
|
467 |
-
#: bws_menu.php:
|
468 |
msgid "All"
|
469 |
msgstr "Всі"
|
470 |
|
471 |
-
#: bws_menu.php:
|
472 |
msgid "Installed"
|
473 |
msgstr "Встановлені"
|
474 |
|
475 |
-
#: bws_menu.php:
|
476 |
msgid "Recommended"
|
477 |
msgstr "Рекомендовані "
|
478 |
|
479 |
-
#: bws_menu.php:
|
480 |
msgid "Installed plugins"
|
481 |
msgstr "Встановлені плагіни"
|
482 |
|
483 |
-
#: bws_menu.php:
|
484 |
-
#: bws_menu.php:
|
485 |
msgid "Settings"
|
486 |
msgstr "Налаштування"
|
487 |
|
488 |
-
#: bws_menu.php:
|
489 |
-
#: bws_menu.php:
|
490 |
msgid "Activate this plugin"
|
491 |
msgstr "Активувати плагін"
|
492 |
|
493 |
-
#: bws_menu.php:
|
494 |
-
#: bws_menu.php:
|
495 |
-
#: bws_menu.php:
|
496 |
msgid "Go"
|
497 |
msgstr "Перейти"
|
498 |
|
499 |
-
#: bws_menu.php:
|
500 |
-
#: bws_menu.php:
|
501 |
-
#: bws_menu.php:
|
502 |
msgid "DONATE"
|
503 |
msgstr "Підтримати нас"
|
504 |
|
505 |
-
#: bws_menu.php:
|
506 |
msgid "Recommended plugins"
|
507 |
msgstr "Рекомендовані плагіни"
|
508 |
|
509 |
-
#: bws_menu.php:
|
510 |
msgid "Install now"
|
511 |
msgstr "Встановити"
|
512 |
|
513 |
-
#: bws_menu.php:
|
514 |
msgid "Try again"
|
515 |
msgstr "Спробувати ще раз"
|
516 |
|
517 |
-
#: bws_menu.php:
|
518 |
#, php-format
|
519 |
msgid "Preview “%s”"
|
520 |
msgstr "Попередній перегляд “%s”"
|
521 |
|
522 |
-
#: bws_menu.php:
|
523 |
#, php-format
|
524 |
msgid "Install %s"
|
525 |
msgstr "Встановити %s"
|
526 |
|
527 |
-
#: bws_menu.php:
|
528 |
msgid "Install Now"
|
529 |
msgstr "Встановити"
|
530 |
|
531 |
-
#: bws_menu.php:
|
532 |
#, php-format
|
533 |
msgid "Update to version %s"
|
534 |
msgstr "Оновити до версії %s"
|
535 |
|
536 |
-
#: bws_menu.php:
|
537 |
msgid "Update"
|
538 |
msgstr "Оновити"
|
539 |
|
540 |
-
#: bws_menu.php:
|
541 |
#, php-format
|
542 |
msgid "Preview %s"
|
543 |
msgstr "Попередній перегляд %s"
|
544 |
|
545 |
-
#: bws_menu.php:
|
546 |
msgid "Preview"
|
547 |
msgstr "Попередній перегляд"
|
548 |
|
549 |
-
#: bws_menu.php:
|
550 |
-
#: bws_menu.php:
|
551 |
#, php-format
|
552 |
msgid "By %s"
|
553 |
msgstr "За %s"
|
554 |
|
555 |
-
#: bws_menu.php:
|
556 |
msgid "Details"
|
557 |
msgstr "Деталі"
|
558 |
|
559 |
-
#: bws_menu.php:
|
560 |
msgid "Already Installed"
|
561 |
msgstr "Уже встановлено %s"
|
562 |
|
563 |
-
#: bws_menu.php:
|
564 |
msgid "Environment"
|
565 |
msgstr "Системне оточення"
|
566 |
|
567 |
-
#: bws_menu.php:
|
568 |
msgid "Active Plugins"
|
569 |
msgstr "Активні плагіни"
|
570 |
|
571 |
-
#: bws_menu.php:
|
572 |
msgid "Inactive Plugins"
|
573 |
msgstr "Не активні плагіни"
|
574 |
|
575 |
-
#: bws_menu.php:
|
576 |
msgid "Send to support"
|
577 |
msgstr "Відправити службі тех. підтримки"
|
578 |
|
579 |
-
#: bws_menu.php:
|
580 |
msgid "Send to custom email »"
|
581 |
msgstr "Відправити на електронну адресу »"
|
582 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-06-12 15:58+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-06-12 16:14+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <http://support.bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
119 |
|
120 |
#: bws_functions.php:296
|
121 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
122 |
+
msgstr "Виникли певні проблеми. Спробуйте ще раз пізніше або завантажте плагін вручну. Просимо вибачення за незручності."
|
123 |
|
124 |
#: bws_functions.php:321
|
125 |
msgid "Please, enter Your license key"
|
175 |
#: bws_functions.php:371
|
176 |
#: bws_functions.php:401
|
177 |
#: bws_functions.php:409
|
178 |
+
#: bws_menu.php:657
|
179 |
+
#: bws_menu.php:714
|
180 |
msgid "Activate"
|
181 |
msgstr "Активувати"
|
182 |
|
248 |
|
249 |
#: bws_functions.php:542
|
250 |
msgid "WARNING: Illegal use notification"
|
251 |
+
msgstr "УВАГА: виявлено несанкціоноване використання плагіну"
|
252 |
|
253 |
#: bws_functions.php:542
|
|
|
254 |
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 you personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated."
|
255 |
+
msgstr "Ви можете використовувати одну ліцензію Про-плагіну для одного домену. Будь ласка, переконайтесь, що інформацію щодо ліцензії і домену введено вірно, у вкладці Client Area. Ми настійливо рекомендуємо Вам вирішити це питання протягом 24 годин, інакше плагін буде деактивовано."
|
256 |
|
257 |
#: bws_functions.php:550
|
258 |
msgid "Notice: Your PRO Trial license has expired. To continue using the plugin you should buy a PRO license"
|
264 |
|
265 |
#: bws_functions.php:552
|
266 |
#: bws_functions.php:605
|
267 |
+
#: bws_menu.php:633
|
268 |
+
#: bws_menu.php:655
|
269 |
+
#: bws_menu.php:682
|
270 |
+
#: bws_menu.php:712
|
271 |
+
#: bws_menu.php:758
|
272 |
msgid "Learn more"
|
273 |
msgstr "Дізнатись більше"
|
274 |
|
295 |
|
296 |
#: bws_functions.php:605
|
297 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
298 |
+
msgstr "та ви більше не будете отримувати першочергову технічну підтримку та оновлення."
|
299 |
|
300 |
#: bws_functions.php:680
|
301 |
msgid "Close"
|
302 |
msgstr "Закрити"
|
303 |
|
304 |
+
#: bws_functions.php:771
|
305 |
+
#: bws_functions.php:784
|
306 |
+
msgid "Restore all plugin settings to defaults"
|
307 |
+
msgstr "Скинути налаштування плагіну до стандартних"
|
308 |
+
|
309 |
+
#: bws_functions.php:773
|
310 |
+
#: bws_functions.php:786
|
311 |
+
msgid "Restore settings"
|
312 |
+
msgstr "Скинути налаштування"
|
313 |
+
|
314 |
+
#: bws_functions.php:797
|
315 |
+
msgid "Are you sure you want to restore all settings by default?"
|
316 |
+
msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
|
317 |
+
|
318 |
+
#: bws_functions.php:799
|
319 |
+
msgid "Yes, restore all settings"
|
320 |
+
msgstr "Так, скинути налаштування"
|
321 |
+
|
322 |
+
#: bws_functions.php:800
|
323 |
+
msgid "No, go back to the settings page"
|
324 |
+
msgstr "Ні, повернутись назад на сторінку налаштувань"
|
325 |
+
|
326 |
+
#: bws_menu.php:470
|
327 |
msgid "Not set"
|
328 |
msgstr "Не задано"
|
329 |
|
330 |
+
#: bws_menu.php:472
|
331 |
+
#: bws_menu.php:473
|
332 |
msgid "On"
|
333 |
msgstr "Увімк."
|
334 |
|
335 |
+
#: bws_menu.php:472
|
336 |
+
#: bws_menu.php:473
|
337 |
msgid "Off"
|
338 |
msgstr "Вимк."
|
339 |
|
340 |
+
#: bws_menu.php:474
|
341 |
+
#: bws_menu.php:475
|
|
|
|
|
|
|
342 |
#: bws_menu.php:476
|
343 |
+
#: bws_menu.php:477
|
344 |
+
#: bws_menu.php:478
|
345 |
+
#: bws_menu.php:490
|
346 |
msgid "N/A"
|
347 |
msgstr "Невідомо"
|
348 |
|
349 |
+
#: bws_menu.php:478
|
350 |
msgid " Mb"
|
351 |
msgstr "Мб"
|
352 |
|
353 |
+
#: bws_menu.php:479
|
354 |
+
#: bws_menu.php:480
|
355 |
+
#: bws_menu.php:481
|
356 |
+
#: bws_menu.php:486
|
357 |
msgid "Yes"
|
358 |
msgstr "Так"
|
359 |
|
360 |
+
#: bws_menu.php:479
|
361 |
+
#: bws_menu.php:480
|
362 |
+
#: bws_menu.php:481
|
363 |
+
#: bws_menu.php:488
|
364 |
msgid "No"
|
365 |
msgstr "Ні"
|
366 |
|
367 |
+
#: bws_menu.php:498
|
368 |
msgid "Operating System"
|
369 |
msgstr "Операційна система"
|
370 |
|
371 |
+
#: bws_menu.php:499
|
372 |
msgid "Server"
|
373 |
msgstr "Тип серверу"
|
374 |
|
375 |
+
#: bws_menu.php:500
|
376 |
msgid "Memory usage"
|
377 |
msgstr "Пам’яті використано"
|
378 |
|
379 |
+
#: bws_menu.php:501
|
380 |
msgid "MYSQL Version"
|
381 |
msgstr "Версія MYSQL"
|
382 |
|
383 |
+
#: bws_menu.php:502
|
384 |
msgid "SQL Mode"
|
385 |
msgstr "Режим SQL"
|
386 |
|
387 |
+
#: bws_menu.php:503
|
388 |
msgid "PHP Version"
|
389 |
msgstr "Версія PHP"
|
390 |
|
391 |
+
#: bws_menu.php:504
|
392 |
msgid "PHP Safe Mode"
|
393 |
msgstr "PHP Безпечний режим"
|
394 |
|
395 |
+
#: bws_menu.php:505
|
396 |
msgid "PHP Allow URL fopen"
|
397 |
msgstr "Дозволити PHP URL fopen"
|
398 |
|
399 |
+
#: bws_menu.php:506
|
400 |
msgid "PHP Memory Limit"
|
401 |
msgstr "Ліміт пам’яті"
|
402 |
|
403 |
+
#: bws_menu.php:507
|
404 |
msgid "PHP Max Upload Size"
|
405 |
msgstr "Макс. розмір файлу, що завантажується"
|
406 |
|
407 |
+
#: bws_menu.php:508
|
408 |
msgid "PHP Max Post Size"
|
409 |
msgstr "Макс. розмір посту"
|
410 |
|
411 |
+
#: bws_menu.php:509
|
412 |
msgid "PHP Max Script Execute Time"
|
413 |
msgstr "Макс. час виконання сценарію"
|
414 |
|
415 |
+
#: bws_menu.php:510
|
416 |
msgid "PHP Exif support"
|
417 |
msgstr "Підтримка PHP Exif"
|
418 |
|
419 |
+
#: bws_menu.php:511
|
420 |
msgid "PHP IPTC support"
|
421 |
msgstr "Підтримка PHP IPTC"
|
422 |
|
423 |
+
#: bws_menu.php:512
|
424 |
msgid "PHP XML support"
|
425 |
msgstr "Підтримка PHP XML"
|
426 |
|
427 |
+
#: bws_menu.php:513
|
428 |
msgid "Site URL"
|
429 |
msgstr "Адреса сайту"
|
430 |
|
431 |
+
#: bws_menu.php:514
|
432 |
msgid "Home URL"
|
433 |
msgstr "Адреса домашньої сторінки"
|
434 |
|
435 |
+
#: bws_menu.php:517
|
436 |
msgid "WordPress Version"
|
437 |
msgstr "Версія WordPress"
|
438 |
|
439 |
+
#: bws_menu.php:518
|
440 |
msgid "WordPress DB Version"
|
441 |
msgstr "Версія бази даних WordPress"
|
442 |
|
443 |
+
#: bws_menu.php:519
|
444 |
msgid "Multisite"
|
445 |
msgstr "Мультисайт"
|
446 |
|
447 |
+
#: bws_menu.php:520
|
448 |
msgid "Active Theme"
|
449 |
msgstr "Активна тема"
|
450 |
|
451 |
+
#: bws_menu.php:535
|
452 |
msgid "Please enter a valid email address."
|
453 |
msgstr "Будь ласка, введіть коректний емейл."
|
454 |
|
455 |
+
#: bws_menu.php:539
|
456 |
msgid "Email with system info is sent to "
|
457 |
msgstr "Емейл з системною інформацією надіслано на"
|
458 |
|
459 |
+
#: bws_menu.php:543
|
460 |
msgid "Thank you for contacting us."
|
461 |
msgstr "Дякуємо, що звернулись до нас."
|
462 |
|
463 |
+
#: bws_menu.php:576
|
464 |
msgid "Sorry, email message could not be delivered."
|
465 |
msgstr "Вибачте, ваше емейл не може бути доставлено"
|
466 |
|
467 |
+
#: bws_menu.php:584
|
468 |
msgid "Need help?"
|
469 |
msgstr "Потрібна допомога?"
|
470 |
|
471 |
+
#: bws_menu.php:585
|
472 |
msgid "Client area"
|
473 |
msgstr "Клієнтам"
|
474 |
|
475 |
+
#: bws_menu.php:586
|
476 |
+
#: bws_menu.php:897
|
477 |
msgid "System status"
|
478 |
msgstr "Системна інформація"
|
479 |
|
480 |
+
#: bws_menu.php:591
|
481 |
msgid "Plugins"
|
482 |
msgstr "Плагіни"
|
483 |
|
484 |
+
#: bws_menu.php:593
|
485 |
msgid "Themes"
|
486 |
msgstr "Теми"
|
487 |
|
488 |
+
#: bws_menu.php:598
|
489 |
msgid "All"
|
490 |
msgstr "Всі"
|
491 |
|
492 |
+
#: bws_menu.php:599
|
493 |
msgid "Installed"
|
494 |
msgstr "Встановлені"
|
495 |
|
496 |
+
#: bws_menu.php:600
|
497 |
msgid "Recommended"
|
498 |
msgstr "Рекомендовані "
|
499 |
|
500 |
+
#: bws_menu.php:604
|
501 |
msgid "Installed plugins"
|
502 |
msgstr "Встановлені плагіни"
|
503 |
|
504 |
+
#: bws_menu.php:636
|
505 |
+
#: bws_menu.php:685
|
506 |
msgid "Settings"
|
507 |
msgstr "Налаштування"
|
508 |
|
509 |
+
#: bws_menu.php:657
|
510 |
+
#: bws_menu.php:714
|
511 |
msgid "Activate this plugin"
|
512 |
msgstr "Активувати плагін"
|
513 |
|
514 |
+
#: bws_menu.php:672
|
515 |
+
#: bws_menu.php:702
|
516 |
+
#: bws_menu.php:748
|
517 |
msgid "Go"
|
518 |
msgstr "Перейти"
|
519 |
|
520 |
+
#: bws_menu.php:676
|
521 |
+
#: bws_menu.php:706
|
522 |
+
#: bws_menu.php:752
|
523 |
msgid "DONATE"
|
524 |
msgstr "Підтримати нас"
|
525 |
|
526 |
+
#: bws_menu.php:722
|
527 |
msgid "Recommended plugins"
|
528 |
msgstr "Рекомендовані плагіни"
|
529 |
|
530 |
+
#: bws_menu.php:760
|
531 |
msgid "Install now"
|
532 |
msgstr "Встановити"
|
533 |
|
534 |
+
#: bws_menu.php:781
|
535 |
msgid "Try again"
|
536 |
msgstr "Спробувати ще раз"
|
537 |
|
538 |
+
#: bws_menu.php:799
|
539 |
#, php-format
|
540 |
msgid "Preview “%s”"
|
541 |
msgstr "Попередній перегляд “%s”"
|
542 |
|
543 |
+
#: bws_menu.php:830
|
544 |
#, php-format
|
545 |
msgid "Install %s"
|
546 |
msgstr "Встановити %s"
|
547 |
|
548 |
+
#: bws_menu.php:830
|
549 |
msgid "Install Now"
|
550 |
msgstr "Встановити"
|
551 |
|
552 |
+
#: bws_menu.php:833
|
553 |
#, php-format
|
554 |
msgid "Update to version %s"
|
555 |
msgstr "Оновити до версії %s"
|
556 |
|
557 |
+
#: bws_menu.php:833
|
558 |
msgid "Update"
|
559 |
msgstr "Оновити"
|
560 |
|
561 |
+
#: bws_menu.php:840
|
562 |
#, php-format
|
563 |
msgid "Preview %s"
|
564 |
msgstr "Попередній перегляд %s"
|
565 |
|
566 |
+
#: bws_menu.php:840
|
567 |
msgid "Preview"
|
568 |
msgstr "Попередній перегляд"
|
569 |
|
570 |
+
#: bws_menu.php:846
|
571 |
+
#: bws_menu.php:878
|
572 |
#, php-format
|
573 |
msgid "By %s"
|
574 |
msgstr "За %s"
|
575 |
|
576 |
+
#: bws_menu.php:852
|
577 |
msgid "Details"
|
578 |
msgstr "Деталі"
|
579 |
|
580 |
+
#: bws_menu.php:884
|
581 |
msgid "Already Installed"
|
582 |
msgstr "Уже встановлено %s"
|
583 |
|
584 |
+
#: bws_menu.php:900
|
585 |
msgid "Environment"
|
586 |
msgstr "Системне оточення"
|
587 |
|
588 |
+
#: bws_menu.php:911
|
589 |
msgid "Active Plugins"
|
590 |
msgstr "Активні плагіни"
|
591 |
|
592 |
+
#: bws_menu.php:924
|
593 |
msgid "Inactive Plugins"
|
594 |
msgstr "Не активні плагіни"
|
595 |
|
596 |
+
#: bws_menu.php:940
|
597 |
msgid "Send to support"
|
598 |
msgstr "Відправити службі тех. підтримки"
|
599 |
|
600 |
+
#: bws_menu.php:947
|
601 |
msgid "Send to custom email »"
|
602 |
msgstr "Відправити на електронну адресу »"
|
603 |
|
google-sitemap-plugin.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Google Sitemap by BestWebSoft
|
|
4 |
Plugin URI: http://bestwebsoft.com/products/
|
5 |
Description: Plugin to add google sitemap file in Google Webmaster Tools account.
|
6 |
Author: BestWebSoft
|
7 |
-
Version: 2.9.
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
@@ -45,10 +45,6 @@ if ( ! function_exists( 'gglstmp_init' ) ) {
|
|
45 |
function gglstmp_init() {
|
46 |
global $gglstmp_plugin_info;
|
47 |
|
48 |
-
if ( ! session_id() ) {
|
49 |
-
session_start();
|
50 |
-
}
|
51 |
-
|
52 |
/* Internationalization */
|
53 |
load_plugin_textdomain( 'sitemap', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
54 |
|
@@ -79,13 +75,19 @@ if ( ! function_exists( 'gglstmp_admin_init' ) ) {
|
|
79 |
if ( ! isset( $bws_plugin_info ) || empty( $bws_plugin_info ) ) {
|
80 |
$bws_plugin_info = array( 'id' => '83', 'version' => $gglstmp_plugin_info["Version"] );
|
81 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
}
|
83 |
}
|
84 |
|
85 |
/*============================================ Function for register of the plugin settings on init core ====================*/
|
86 |
if ( ! function_exists( 'gglstmp_register_settings' ) ) {
|
87 |
function gglstmp_register_settings() {
|
88 |
-
global $gglstmp_settings, $gglstmp_plugin_info;
|
89 |
|
90 |
$gglstmp_option_defaults = array(
|
91 |
'plugin_option_version' => $gglstmp_plugin_info['Version'],
|
@@ -244,7 +246,7 @@ if ( ! function_exists ( 'gglstmp_client' ) ) {
|
|
244 |
/*============================================ Function for creating setting page ====================*/
|
245 |
if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
246 |
function gglstmp_settings_page() {
|
247 |
-
global $gglstmppr_url_home, $gglstmp_settings, $gglstmppr_url, $wp_version, $gglstmp_plugin_info;
|
248 |
|
249 |
$message = $error = "";
|
250 |
$gglstmp_robots = get_option( 'gglstmp_robots' );
|
@@ -258,51 +260,43 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
|
258 |
$gglstmppr_url_sitemap = ABSPATH . "sitemap.xml";
|
259 |
}
|
260 |
|
261 |
-
if ( isset( $_REQUEST['gglstmp_submit'] ) && check_admin_referer( plugin_basename
|
262 |
$gglstmp_settings['post_type'] = isset( $_REQUEST['gglstmp_post_types'] ) ? $_REQUEST['gglstmp_post_types'] : array();
|
263 |
$gglstmp_settings['taxonomy'] = isset( $_REQUEST['gglstmp_taxonomies'] ) ? $_REQUEST['gglstmp_taxonomies'] : array();
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
271 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
272 |
if ( ! isset( $_POST['gglstmp_authorize'] ) && ! isset( $_POST['gglstmp_logout'] ) && ! isset( $_POST['gglstmp_menu'] ) ) {
|
273 |
$message .= " " . __( "Settings saved." , 'sitemap' );
|
274 |
}
|
275 |
}
|
276 |
|
277 |
-
if ( isset( $_POST['gglstmp_new'] ) && check_admin_referer( plugin_basename
|
278 |
$message = __( "Your Sitemap file is created in the site root directory.", 'sitemap' );
|
279 |
gglstmp_sitemapcreate();
|
280 |
}
|
281 |
|
282 |
-
/*============================ Adding location of sitemap file to the robots.txt =============*/
|
283 |
-
if ( isset( $_POST['gglstmp_checkbox'] ) && check_admin_referer( plugin_basename( __FILE__ ), 'gglstmp_nonce_name' ) ) {
|
284 |
-
if ( file_exists( $gglstmppr_url_robot ) && ! is_multisite() ) {
|
285 |
-
$fp = fopen( ABSPATH . 'robots.txt', "a+" );
|
286 |
-
$flag = false;
|
287 |
-
while ( false !== ( $line = fgets( $fp ) ) ) {
|
288 |
-
if ( $line == "Sitemap: " . $gglstmppr_url_home . "sitemap.xml" )
|
289 |
-
$flag = true;
|
290 |
-
}
|
291 |
-
if ( ! $flag )
|
292 |
-
fwrite( $fp, "\nSitemap: " . $gglstmppr_url_home . "sitemap.xml" );
|
293 |
-
fclose ( $fp );
|
294 |
-
}
|
295 |
-
|
296 |
-
if ( false === get_option( 'gglstmp_robots' ) )
|
297 |
-
add_option( 'gglstmp_robots', 1 );
|
298 |
-
else
|
299 |
-
update_option( 'gglstmp_robots', 1 );
|
300 |
-
|
301 |
-
$gglstmp_robots = get_option( 'gglstmp_robots' );
|
302 |
-
|
303 |
-
if ( $message == "" )
|
304 |
-
$message = __( "Settings saved.", 'sitemap' );
|
305 |
-
}
|
306 |
|
307 |
$gglstmp_result = get_post_types( '', 'names' );
|
308 |
unset( $gglstmp_result['revision'] );
|
@@ -319,6 +313,31 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
|
319 |
$go_pro_result = bws_go_pro_tab_check( $plugin_basename );
|
320 |
if ( ! empty( $go_pro_result['error'] ) )
|
321 |
$error = $go_pro_result['error'];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
322 |
} ?>
|
323 |
<div class="wrap">
|
324 |
<div class="icon32 icon32-bws" id="icon-options-general"></div>
|
@@ -346,9 +365,9 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
|
346 |
<div style="margin: .5em 0; padding: 2px;">
|
347 |
<form action="admin.php?page=google-sitemap-plugin.php" method='post' id="gglstmp_check_sitemap">
|
348 |
<input type="submit" class="button-secondary" name="gglstmp_check_sitemap" value="<?php _e( 'Сheck Access', 'sitemap' ) ?>" />
|
349 |
-
<?php wp_nonce_field( plugin_basename
|
350 |
</form>
|
351 |
-
<?php if ( isset( $_POST['gglstmp_check_sitemap'] ) && check_admin_referer( plugin_basename
|
352 |
$gglstmp_background = array(
|
353 |
'200' => '#f8fdf5',
|
354 |
'404' => '#fdf6f6'
|
@@ -362,190 +381,195 @@ if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
|
362 |
</div>
|
363 |
<?php } ?>
|
364 |
<div id="gglstmp_settings_notice" class="updated fade" style="display:none"><p><strong><?php _e( "Notice:", 'sitemap' ); ?></strong> <?php _e( "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button.", 'sitemap' ); ?></p></div>
|
365 |
-
<div class="updated fade" <?php if (
|
366 |
<div class="error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
|
367 |
-
<?php if ( ! isset( $_GET['action'] ) ) {
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
373 |
} else {
|
374 |
-
|
|
|
|
|
|
|
|
|
|
|
375 |
}
|
376 |
-
|
377 |
-
gglstmp_sitemapcreate();
|
378 |
if ( is_multisite() ) {
|
379 |
-
echo '<p
|
380 |
} else {
|
381 |
-
echo '<p
|
382 |
-
}
|
383 |
-
|
384 |
-
/*========================================== Recreating sitemap file ====================================*/
|
385 |
-
if ( is_multisite() ) {
|
386 |
-
echo '<p>' . __( "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using", 'sitemap' ) . " <a href=\"https://www.google.com/webmasters/tools/home?hl=en\">". __( "this", 'sitemap' ) . "</a> ". __( "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field", 'sitemap' ) . " - '" . $gglstmppr_url_home . "sitemap_" . $home_url . ".xml'.</p>";
|
387 |
-
} else {
|
388 |
-
echo '<p>' . __( "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using", 'sitemap' ) . " <a href=\"https://www.google.com/webmasters/tools/home?hl=en\">". __( "this", 'sitemap' ) . "</a> ". __( "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field", 'sitemap' ) . " - '" . $gglstmppr_url_home . "sitemap.xml'.</p>";
|
389 |
-
} ?>
|
390 |
-
<table class="form-table">
|
391 |
-
<tr valign="top">
|
392 |
-
<td colspan="2">
|
393 |
-
<label><input type='checkbox' name='gglstmp_new' value="1" /> <?php _e( "I want to create a new sitemap file or update the existing one", 'sitemap' ); ?></label>
|
394 |
-
</td>
|
395 |
-
</tr>
|
396 |
-
<?php if ( is_multisite() ) { ?>
|
397 |
-
<tr valign="top">
|
398 |
-
<td colspan="2">
|
399 |
-
<label><input type='checkbox' disabled="disabled" name='gglstmp_checkbox' value="1" <?php if ( 1 == $gglstmp_robots ) echo 'checked="checked"'; ?> /> <?php _e( "I want to add sitemap file path in robots.txt", 'sitemap' );?></label>
|
400 |
-
<p style="color:red"><?php _e( "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt", 'sitemap' ); ?></div>
|
401 |
-
</td>
|
402 |
-
</tr>
|
403 |
-
<?php } else { ?>
|
404 |
<tr valign="top">
|
405 |
<td colspan="2">
|
406 |
-
<label><input type='checkbox' name='
|
407 |
</td>
|
408 |
</tr>
|
409 |
-
|
410 |
-
<tr valign="top">
|
411 |
-
<th scope="row" colspan="2"><?php _e( 'Please choose the necessary post types and taxonomies the links to which are to be added to the sitemap:', 'sitemap' ); ?> </th>
|
412 |
-
</tr>
|
413 |
-
<tr valign="top">
|
414 |
-
<td colspan="2">
|
415 |
-
<?php foreach ( $gglstmp_result as $key => $value ) { ?>
|
416 |
-
<label><input type="checkbox" <?php if ( in_array( $value, $gglstmp_settings['post_type'] ) ) echo 'checked="checked"'; ?> name="gglstmp_post_types[]" value="<?php echo $value; ?>"/><span style="text-transform: capitalize; padding-left: 5px;"><?php echo $value; ?></span></label><br />
|
417 |
-
<?php } ?>
|
418 |
-
</td>
|
419 |
-
</tr>
|
420 |
-
<tr valign="top">
|
421 |
-
<td colspan="2">
|
422 |
-
<?php foreach ( $gglstmp_result_taxonomies as $key => $value ) { ?>
|
423 |
-
<label><input type="checkbox" <?php if ( in_array( $key, $gglstmp_settings['taxonomy'] ) ) echo 'checked="checked"'; ?> name="gglstmp_taxonomies[]" value="<?php echo $key; ?>"/><span style="padding-left: 5px;"><?php echo $value; ?></span></label><br />
|
424 |
-
<?php } ?>
|
425 |
-
</td>
|
426 |
-
</tr>
|
427 |
-
</table>
|
428 |
-
<div class="bws_pro_version_bloc">
|
429 |
-
<div class="bws_pro_version_table_bloc">
|
430 |
-
<div class="bws_table_bg"></div>
|
431 |
-
<table class="form-table bws_pro_version">
|
432 |
<tr valign="top">
|
433 |
-
<
|
434 |
-
|
435 |
-
<
|
436 |
-
<option value="always"><?php _e( 'Always', 'sitemap' ); ?></option>
|
437 |
-
<option value="hourly"><?php _e( 'Hourly', 'sitemap' ); ?></option>
|
438 |
-
<option value="daily"><?php _e( 'Daily', 'sitemap' ); ?></option>
|
439 |
-
<option value="weekly"><?php _e( 'Weekly', 'sitemap' ); ?></option>
|
440 |
-
<option selected value="monthly"><?php _e( 'Monthly', 'sitemap' ); ?></option>
|
441 |
-
<option value="yearly"><?php _e( 'Yearly', 'sitemap' ); ?></option>
|
442 |
-
<option value="never"><?php _e( 'Never', 'sitemap' ); ?></option>
|
443 |
-
</select><br />
|
444 |
-
<span style="color: #888888;font-size: 10px;"><?php _e( 'This value is used in the sitemap file and provides general information to search engines. The sitemap itself is generated once and will be re-generated when you create or update any post or page.', 'sitemap' ); ?></span>
|
445 |
</td>
|
446 |
</tr>
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
<a class="bws_button" href="http://bestwebsoft.com/products/google-sitemap/buy/?k=28d4cf0b4ab6f56e703f46f60d34d039&pn=83&v=<?php echo $gglstmp_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Google Sitemap Pro">
|
455 |
-
<?php _e( 'Go', 'sitemap' ); ?> <strong>PRO</strong>
|
456 |
-
</a>
|
457 |
-
<div class="clear"></div>
|
458 |
-
</div>
|
459 |
-
</div>
|
460 |
-
<table class="form-table">
|
461 |
-
<?php if ( ! function_exists( 'curl_init' ) ) { ?>
|
462 |
<tr valign="top">
|
463 |
-
<
|
464 |
-
|
|
|
|
|
|
|
|
|
|
|
465 |
</td>
|
466 |
</tr>
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
<?php
|
472 |
-
$gglstmp_blog_prefix = '_' . get_current_blog_id();
|
473 |
-
if ( isset( $_POST['gglstmp_logout'] ) && check_admin_referer( plugin_basename( __FILE__ ), 'gglstmp_nonce_name' ) ) {
|
474 |
-
unset( $_SESSION[ 'gglstmp_authorization_code' . $gglstmp_blog_prefix ] );
|
475 |
-
unset( $gglstmp_settings['authorization_code'] );
|
476 |
-
update_option( 'gglstmp_settings', $gglstmp_settings );
|
477 |
-
}
|
478 |
-
if ( isset( $_POST['gglstmp_authorization_code'] ) && ! empty( $_POST['gglstmp_authorization_code'] ) && check_admin_referer( plugin_basename( __FILE__ ), 'gglstmp_nonce_name' ) ) {
|
479 |
-
try {
|
480 |
-
$gglstmp_client->authenticate( $_POST['gglstmp_authorization_code'] );
|
481 |
-
$gglstmp_settings['authorization_code'] = $_SESSION[ 'gglstmp_authorization_code' . $gglstmp_blog_prefix ] = $gglstmp_client->getAccessToken();
|
482 |
-
update_option( 'gglstmp_settings', $gglstmp_settings );
|
483 |
-
} catch ( Exception $e ) {}
|
484 |
-
}
|
485 |
-
if ( ! isset( $_SESSION[ 'gglstmp_authorization_code' . $gglstmp_blog_prefix ] ) && isset( $gglstmp_settings['authorization_code'] ) ) {
|
486 |
-
$_SESSION[ 'gglstmp_authorization_code' . $gglstmp_blog_prefix ] = $gglstmp_settings['authorization_code'];
|
487 |
-
}
|
488 |
-
if ( isset( $_SESSION[ 'gglstmp_authorization_code' . $gglstmp_blog_prefix ] ) ) {
|
489 |
-
$gglstmp_client->setAccessToken( $_SESSION[ 'gglstmp_authorization_code' . $gglstmp_blog_prefix ] );
|
490 |
-
}
|
491 |
-
if ( $gglstmp_client->getAccessToken() ) { ?>
|
492 |
-
<div id="gglstmp_logout_button">
|
493 |
-
<input class="button-secondary" name="gglstmp_logout" type="submit" value="<?php _e( 'Log out from Google Webmaster Tools', 'sitemap' ); ?>" />
|
494 |
-
</div>
|
495 |
-
<?php $gglstmp_menu_ad = __( "I want to add this site to Google Webmaster Tools", 'sitemap' );
|
496 |
-
$gglstmp_menu_del = __( "I want to delete this site from Google Webmaster Tools", 'sitemap' );
|
497 |
-
$gglstmp_menu_inf = __( "I want to get info about this site in Google Webmaster Tools", 'sitemap' ); ?>
|
498 |
-
<label><input type='radio' name='gglstmp_menu' value="ad" /> <?php echo $gglstmp_menu_ad; ?></label><br />
|
499 |
-
<label><input type='radio' name='gglstmp_menu' value="del" /> <?php echo $gglstmp_menu_del; ?></label><br />
|
500 |
-
<label><input type='radio' name='gglstmp_menu' value="inf" /> <?php echo $gglstmp_menu_inf; ?></label><br />
|
501 |
-
<span class="gglstmp_span">
|
502 |
-
<?php _e( 'In case you failed to add a sitemap to Google automatically using this plugin, it is possible to do it manually', 'sitemap' ); ?>:
|
503 |
-
<a target="_blank" href="https://docs.google.com/document/d/1VOJx_OaasVskCqi9fsAbUmxfsckoagPU5Py97yjha9w/edit"><?php _e( 'View the Instruction', 'sitemap' ); ?></a>
|
504 |
-
</span>
|
505 |
-
<?php if ( isset( $_POST['gglstmp_menu'] ) && check_admin_referer( plugin_basename( __FILE__ ), 'gglstmp_nonce_name' ) ) {
|
506 |
-
$gglstmp_wmt = new Google_Service_Webmasters( $gglstmp_client );
|
507 |
-
$gglstmp_sv = new Google_Service_SiteVerification( $gglstmp_client );
|
508 |
-
switch ( $_POST['gglstmp_menu'] ) {
|
509 |
-
case 'inf':
|
510 |
-
gglstmp_info_site( $gglstmp_wmt, $gglstmp_sv );
|
511 |
-
break;
|
512 |
-
case 'ad':
|
513 |
-
gglstmp_add_site( $gglstmp_wmt, $gglstmp_sv );
|
514 |
-
break;
|
515 |
-
case 'del':
|
516 |
-
gglstmp_del_site( $gglstmp_wmt, $gglstmp_sv );
|
517 |
-
break;
|
518 |
-
default:
|
519 |
-
break;
|
520 |
-
}
|
521 |
-
}
|
522 |
-
} else {
|
523 |
-
$gglstmp_state = mt_rand();
|
524 |
-
$gglstmp_client->setState( $gglstmp_state );
|
525 |
-
$_SESSION[ 'gglstmp_state' . $gglstmp_blog_prefix ] = $gglstmp_client;
|
526 |
-
$gglstmp_auth_url = $gglstmp_client->createAuthUrl(); ?>
|
527 |
-
<p><?php _e( "Please authorize via your Google Account in order to add or delete a site and a sitemap file automatically or get information about this site in Google Webmaster Tools.", 'sitemap' ); ?></p>
|
528 |
-
<a id="gglstmp_authorization_button" class="button-primary" href="<?php echo $gglstmp_auth_url; ?>" target="_blank" onclick="window.open(this.href,'','top='+(screen.height/2-560/2)+',left='+(screen.width/2-640/2)+',width=640,height=560,resizable=0,scrollbars=0,menubar=0,toolbar=0,status=1,location=0').focus(); return false;"><?php _e( 'Get Authorization Code', 'sitemap' ); ?></a>
|
529 |
-
<div id="gglstmp_authorization_form">
|
530 |
-
<input id="gglstmp_authorization_code" name="gglstmp_authorization_code" type="text" autocomplete="off" maxlength="100" />
|
531 |
-
<input id="gglstmp_authorize" class="button-primary" name="gglstmp_authorize" type="submit" value="<?php _e( 'Authorize', 'sitemap' ); ?>">
|
532 |
-
</div>
|
533 |
-
<?php if ( isset( $_POST['gglstmp_authorization_code'] ) && isset( $_POST['gglstmp_authorize'] ) && check_admin_referer( plugin_basename( __FILE__ ), 'gglstmp_nonce_name' ) ) { ?>
|
534 |
-
<div id="gglstmp_authorize_error"><?php _e( 'Invalid authorization code. Please, try again.', 'sitemap' ); ?></div>
|
535 |
-
<?php }
|
536 |
-
} ?>
|
537 |
</td>
|
538 |
</tr>
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
549 |
<div class="bws_pro_version_bloc">
|
550 |
<div class="bws_pro_version_table_bloc">
|
551 |
<div class="bws_table_bg"></div>
|
4 |
Plugin URI: http://bestwebsoft.com/products/
|
5 |
Description: Plugin to add google sitemap file in Google Webmaster Tools account.
|
6 |
Author: BestWebSoft
|
7 |
+
Version: 2.9.9
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
45 |
function gglstmp_init() {
|
46 |
global $gglstmp_plugin_info;
|
47 |
|
|
|
|
|
|
|
|
|
48 |
/* Internationalization */
|
49 |
load_plugin_textdomain( 'sitemap', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
|
50 |
|
75 |
if ( ! isset( $bws_plugin_info ) || empty( $bws_plugin_info ) ) {
|
76 |
$bws_plugin_info = array( 'id' => '83', 'version' => $gglstmp_plugin_info["Version"] );
|
77 |
}
|
78 |
+
|
79 |
+
if ( isset( $_GET['page'] ) && "google-sitemap-plugin.php" == $_GET['page'] ) {
|
80 |
+
if ( ! session_id() ) {
|
81 |
+
session_start();
|
82 |
+
}
|
83 |
+
}
|
84 |
}
|
85 |
}
|
86 |
|
87 |
/*============================================ Function for register of the plugin settings on init core ====================*/
|
88 |
if ( ! function_exists( 'gglstmp_register_settings' ) ) {
|
89 |
function gglstmp_register_settings() {
|
90 |
+
global $gglstmp_settings, $gglstmp_plugin_info, $gglstmp_option_defaults;
|
91 |
|
92 |
$gglstmp_option_defaults = array(
|
93 |
'plugin_option_version' => $gglstmp_plugin_info['Version'],
|
246 |
/*============================================ Function for creating setting page ====================*/
|
247 |
if ( ! function_exists ( 'gglstmp_settings_page' ) ) {
|
248 |
function gglstmp_settings_page() {
|
249 |
+
global $gglstmppr_url_home, $gglstmp_settings, $gglstmp_option_defaults, $gglstmppr_url, $wp_version, $gglstmp_plugin_info;
|
250 |
|
251 |
$message = $error = "";
|
252 |
$gglstmp_robots = get_option( 'gglstmp_robots' );
|
260 |
$gglstmppr_url_sitemap = ABSPATH . "sitemap.xml";
|
261 |
}
|
262 |
|
263 |
+
if ( isset( $_REQUEST['gglstmp_submit'] ) && check_admin_referer( $plugin_basename, 'gglstmp_nonce_name' ) ) {
|
264 |
$gglstmp_settings['post_type'] = isset( $_REQUEST['gglstmp_post_types'] ) ? $_REQUEST['gglstmp_post_types'] : array();
|
265 |
$gglstmp_settings['taxonomy'] = isset( $_REQUEST['gglstmp_taxonomies'] ) ? $_REQUEST['gglstmp_taxonomies'] : array();
|
266 |
+
/*============================ Adding location of sitemap file to the robots.txt =============*/
|
267 |
+
$gglstmp_robots_flag = isset( $_POST['gglstmp_checkbox'] ) ? 1 : 0;
|
268 |
+
if ( file_exists( $gglstmppr_url_robot ) && ! is_multisite() ) {
|
269 |
+
if ( ! is_writable( $gglstmppr_url_robot ) )
|
270 |
+
@chmod( $gglstmppr_url_robot, 0755 );
|
271 |
+
if ( is_writable( $gglstmppr_url_robot ) ) {
|
272 |
+
$file_content = file_get_contents( $gglstmppr_url_robot );
|
273 |
+
if ( isset( $_POST['gglstmp_checkbox'] ) && ! preg_match( '|Sitemap: ' . $gglstmppr_url_home . 'sitemap.xml|', $file_content ) ) {
|
274 |
+
file_put_contents( $gglstmppr_url_robot, $file_content . "\nSitemap: " . $gglstmppr_url_home . "sitemap.xml" );
|
275 |
+
} elseif ( preg_match( "|Sitemap: " . $gglstmppr_url_home . "sitemap.xml|", $file_content ) && ! isset( $_POST['gglstmp_checkbox'] ) ) {
|
276 |
+
$file_content = preg_replace( "|\nSitemap: " . $gglstmppr_url_home . "sitemap.xml|", '', $file_content );
|
277 |
+
file_put_contents( $gglstmppr_url_robot, $file_content );
|
278 |
+
}
|
279 |
+
} else {
|
280 |
+
$error = __( 'Cannot edit "robots.txt". Check your permissions.', 'sitemap' );
|
281 |
+
$gglstmp_robots_flag = 0;
|
282 |
+
}
|
283 |
}
|
284 |
+
if ( false === get_option( 'gglstmp_robots' ) )
|
285 |
+
add_option( 'gglstmp_robots', $gglstmp_robots_flag );
|
286 |
+
else
|
287 |
+
update_option( 'gglstmp_robots', $gglstmp_robots_flag );
|
288 |
+
$gglstmp_robots = get_option( 'gglstmp_robots' );
|
289 |
+
update_option( 'gglstmp_settings', $gglstmp_settings );
|
290 |
if ( ! isset( $_POST['gglstmp_authorize'] ) && ! isset( $_POST['gglstmp_logout'] ) && ! isset( $_POST['gglstmp_menu'] ) ) {
|
291 |
$message .= " " . __( "Settings saved." , 'sitemap' );
|
292 |
}
|
293 |
}
|
294 |
|
295 |
+
if ( isset( $_POST['gglstmp_new'] ) && check_admin_referer( $plugin_basename, 'gglstmp_nonce_name' ) ) {
|
296 |
$message = __( "Your Sitemap file is created in the site root directory.", 'sitemap' );
|
297 |
gglstmp_sitemapcreate();
|
298 |
}
|
299 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
300 |
|
301 |
$gglstmp_result = get_post_types( '', 'names' );
|
302 |
unset( $gglstmp_result['revision'] );
|
313 |
$go_pro_result = bws_go_pro_tab_check( $plugin_basename );
|
314 |
if ( ! empty( $go_pro_result['error'] ) )
|
315 |
$error = $go_pro_result['error'];
|
316 |
+
}
|
317 |
+
if ( isset( $_REQUEST['bws_restore_confirm'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
|
318 |
+
$gglstmp_settings = $gglstmp_option_defaults;
|
319 |
+
@unlink( $gglstmppr_url_sitemap );/* remove sitemap.xml */
|
320 |
+
/* clear robots.txt */
|
321 |
+
if ( file_exists( $gglstmppr_url_robot ) && ! is_multisite() ) {
|
322 |
+
if ( ! is_writable( $gglstmppr_url_robot ) )
|
323 |
+
@chmod( $gglstmppr_url_robot, 0755 );
|
324 |
+
if ( is_writable( $gglstmppr_url_robot ) ) {
|
325 |
+
$file_content = file_get_contents( $gglstmppr_url_robot );
|
326 |
+
if ( preg_match( "|Sitemap: " . $gglstmppr_url_home . "sitemap.xml|", $file_content ) ) {
|
327 |
+
$file_content = preg_replace( "|\nSitemap: " . $gglstmppr_url_home . "sitemap.xml|", '', $file_content );
|
328 |
+
file_put_contents( $gglstmppr_url_robot, $file_content );
|
329 |
+
}
|
330 |
+
} else {
|
331 |
+
$error = __( 'Cannot edit "robot.txt". Check your permissions.', 'sitemap' );
|
332 |
+
}
|
333 |
+
}
|
334 |
+
if ( false === get_option( 'gglstmp_robots' ) )
|
335 |
+
add_option( 'gglstmp_robots', 0 );
|
336 |
+
else
|
337 |
+
update_option( 'gglstmp_robots', 0 );
|
338 |
+
$gglstmp_robots = get_option( 'gglstmp_robots' );
|
339 |
+
update_option( 'gglstmp_settings', $gglstmp_settings );
|
340 |
+
$message = __( 'All plugin settings were restored.', 'sitemap' );
|
341 |
} ?>
|
342 |
<div class="wrap">
|
343 |
<div class="icon32 icon32-bws" id="icon-options-general"></div>
|
365 |
<div style="margin: .5em 0; padding: 2px;">
|
366 |
<form action="admin.php?page=google-sitemap-plugin.php" method='post' id="gglstmp_check_sitemap">
|
367 |
<input type="submit" class="button-secondary" name="gglstmp_check_sitemap" value="<?php _e( 'Сheck Access', 'sitemap' ) ?>" />
|
368 |
+
<?php wp_nonce_field( $plugin_basename, 'gglstmp_nonce_sitemap' ); ?>
|
369 |
</form>
|
370 |
+
<?php if ( isset( $_POST['gglstmp_check_sitemap'] ) && check_admin_referer( $plugin_basename, 'gglstmp_nonce_sitemap' ) ) {
|
371 |
$gglstmp_background = array(
|
372 |
'200' => '#f8fdf5',
|
373 |
'404' => '#fdf6f6'
|
381 |
</div>
|
382 |
<?php } ?>
|
383 |
<div id="gglstmp_settings_notice" class="updated fade" style="display:none"><p><strong><?php _e( "Notice:", 'sitemap' ); ?></strong> <?php _e( "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button.", 'sitemap' ); ?></p></div>
|
384 |
+
<div class="updated fade" <?php if ( "" != $error || $message == "" ) echo "style=\"display:none\""; ?>><p><strong><?php echo $message; ?></strong></p></div>
|
385 |
<div class="error" <?php if ( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
|
386 |
+
<?php if ( ! isset( $_GET['action'] ) ) {
|
387 |
+
if ( isset( $_REQUEST['bws_restore_default'] ) && check_admin_referer( $plugin_basename, 'bws_settings_nonce_name' ) ) {
|
388 |
+
bws_form_restore_default_confirm( $plugin_basename );
|
389 |
+
} else { ?>
|
390 |
+
<form action="admin.php?page=google-sitemap-plugin.php" method='post' id="gglstmp_auth" name="gglstmp_auth">
|
391 |
+
<?php /*=============================== Creating sitemap file ====================================*/
|
392 |
+
if ( file_exists( $gglstmppr_url_sitemap ) ) {
|
393 |
+
if ( is_multisite() ) {
|
394 |
+
echo '<p><a href="' . $gglstmppr_url_home . "sitemap_" . $home_url . '.xml" target="_new">' . __( "The Sitemap file", 'sitemap' ) . "</a> " . __( "already exists. If you would like to replace it with a new one, please choose the necessary box below.", 'sitemap' ) . "</p>";
|
395 |
+
} else {
|
396 |
+
echo '<p><a href="' . $gglstmppr_url_home . 'sitemap.xml" target="_new">' . __( "The Sitemap file", 'sitemap' ) . "</a> " . __( "already exists. If you would like to replace it with a new one, please choose the necessary box below.", 'sitemap' ) . "</p>";
|
397 |
+
}
|
398 |
} else {
|
399 |
+
gglstmp_sitemapcreate();
|
400 |
+
if ( is_multisite() ) {
|
401 |
+
echo '<p><a href="' . $gglstmppr_url_home . "sitemap_" . $home_url . '.xml" target="_new">' . __( "Your Sitemap file", 'sitemap' ) . "</a> " . __( "is created in the site root directory.", 'sitemap' ) . "</p>";
|
402 |
+
} else {
|
403 |
+
echo '<p><a href="' . $gglstmppr_url_home . 'sitemap.xml" target="_new">' . __( "Your Sitemap file", 'sitemap' ) . "</a> " . __( "is created in the site root directory.", 'sitemap' ) . "</p>";
|
404 |
+
}
|
405 |
}
|
406 |
+
/*========================================== Recreating sitemap file ====================================*/
|
|
|
407 |
if ( is_multisite() ) {
|
408 |
+
echo '<p>' . __( "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using", 'sitemap' ) . " <a href=\"https://www.google.com/webmasters/tools/home?hl=en\">". __( "this", 'sitemap' ) . "</a> ". __( "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field", 'sitemap' ) . " - '" . $gglstmppr_url_home . "sitemap_" . $home_url . ".xml'.</p>";
|
409 |
} else {
|
410 |
+
echo '<p>' . __( "If you do not want a sitemap file to be added to Google Webmaster Tools automatically, you can do it using", 'sitemap' ) . " <a href=\"https://www.google.com/webmasters/tools/home?hl=en\">". __( "this", 'sitemap' ) . "</a> ". __( "link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the mandatory field", 'sitemap' ) . " - '" . $gglstmppr_url_home . "sitemap.xml'.</p>";
|
411 |
+
} ?>
|
412 |
+
<table class="form-table">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
413 |
<tr valign="top">
|
414 |
<td colspan="2">
|
415 |
+
<label><input type='checkbox' name='gglstmp_new' value="1" /> <?php _e( "I want to create a new sitemap file or update the existing one", 'sitemap' ); ?></label>
|
416 |
</td>
|
417 |
</tr>
|
418 |
+
<?php if ( is_multisite() ) { ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
419 |
<tr valign="top">
|
420 |
+
<td colspan="2">
|
421 |
+
<label><input type='checkbox' disabled="disabled" name='gglstmp_checkbox' value="1" <?php if ( 1 == $gglstmp_robots ) echo 'checked="checked"'; ?> /> <?php _e( "I want to add sitemap file path in robots.txt", 'sitemap' );?></label>
|
422 |
+
<p style="color:red"><?php _e( "Since you are using multisiting, the plugin does not allow to add a sitemap to robots.txt", 'sitemap' ); ?></div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
423 |
</td>
|
424 |
</tr>
|
425 |
+
<?php } else { ?>
|
426 |
+
<tr valign="top">
|
427 |
+
<td colspan="2">
|
428 |
+
<label><input type='checkbox' name='gglstmp_checkbox' value="1" <?php if ( 1 == $gglstmp_robots ) echo 'checked="checked"'; ?> /> <?php _e( "I want to add sitemap file path in", 'sitemap' ); ?> <a href="<?php echo $gglstmppr_url_home; ?>robots.txt" target="_new">robots.txt</a></label>
|
429 |
+
</td>
|
430 |
+
</tr>
|
431 |
+
<?php } ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
432 |
<tr valign="top">
|
433 |
+
<th scope="row" colspan="2"><?php _e( 'Please choose the necessary post types and taxonomies the links to which are to be added to the sitemap:', 'sitemap' ); ?> </th>
|
434 |
+
</tr>
|
435 |
+
<tr valign="top">
|
436 |
+
<td colspan="2">
|
437 |
+
<?php foreach ( $gglstmp_result as $key => $value ) { ?>
|
438 |
+
<label><input type="checkbox" <?php if ( in_array( $value, $gglstmp_settings['post_type'] ) ) echo 'checked="checked"'; ?> name="gglstmp_post_types[]" value="<?php echo $value; ?>"/><span style="text-transform: capitalize; padding-left: 5px;"><?php echo $value; ?></span></label><br />
|
439 |
+
<?php } ?>
|
440 |
</td>
|
441 |
</tr>
|
442 |
+
<tr valign="top">
|
443 |
+
<td colspan="2">
|
444 |
+
<?php foreach ( $gglstmp_result_taxonomies as $key => $value ) { ?>
|
445 |
+
<label><input type="checkbox" <?php if ( in_array( $key, $gglstmp_settings['taxonomy'] ) ) echo 'checked="checked"'; ?> name="gglstmp_taxonomies[]" value="<?php echo $key; ?>"/><span style="padding-left: 5px;"><?php echo $value; ?></span></label><br />
|
446 |
+
<?php } ?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
447 |
</td>
|
448 |
</tr>
|
449 |
+
</table>
|
450 |
+
<div class="bws_pro_version_bloc">
|
451 |
+
<div class="bws_pro_version_table_bloc">
|
452 |
+
<div class="bws_table_bg"></div>
|
453 |
+
<table class="form-table bws_pro_version">
|
454 |
+
<tr valign="top">
|
455 |
+
<th><?php _e( 'XML Sitemap "Change Frequency" parameter', 'sitemap' ); ?></th>
|
456 |
+
<td>
|
457 |
+
<select name="gglstmp_sitemap_change_frequency">
|
458 |
+
<option value="always"><?php _e( 'Always', 'sitemap' ); ?></option>
|
459 |
+
<option value="hourly"><?php _e( 'Hourly', 'sitemap' ); ?></option>
|
460 |
+
<option value="daily"><?php _e( 'Daily', 'sitemap' ); ?></option>
|
461 |
+
<option value="weekly"><?php _e( 'Weekly', 'sitemap' ); ?></option>
|
462 |
+
<option selected value="monthly"><?php _e( 'Monthly', 'sitemap' ); ?></option>
|
463 |
+
<option value="yearly"><?php _e( 'Yearly', 'sitemap' ); ?></option>
|
464 |
+
<option value="never"><?php _e( 'Never', 'sitemap' ); ?></option>
|
465 |
+
</select><br />
|
466 |
+
<span style="color: #888888;font-size: 10px;"><?php _e( 'This value is used in the sitemap file and provides general information to search engines. The sitemap itself is generated once and will be re-generated when you create or update any post or page.', 'sitemap' ); ?></span>
|
467 |
+
</td>
|
468 |
+
</tr>
|
469 |
+
</table>
|
470 |
+
</div>
|
471 |
+
<div class="bws_pro_version_tooltip">
|
472 |
+
<div class="bws_info">
|
473 |
+
<?php _e( 'Unlock premium options by upgrading to a PRO version.', 'sitemap' ); ?>
|
474 |
+
<a href="http://bestwebsoft.com/products/google-sitemap/?k=28d4cf0b4ab6f56e703f46f60d34d039&pn=83&v=<?php echo $gglstmp_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Google Sitemap Pro"><?php _e( 'Learn More', 'sitemap' ); ?></a>
|
475 |
+
</div>
|
476 |
+
<a class="bws_button" href="http://bestwebsoft.com/products/google-sitemap/buy/?k=28d4cf0b4ab6f56e703f46f60d34d039&pn=83&v=<?php echo $gglstmp_plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>" target="_blank" title="Google Sitemap Pro">
|
477 |
+
<?php _e( 'Go', 'sitemap' ); ?> <strong>PRO</strong>
|
478 |
+
</a>
|
479 |
+
<div class="clear"></div>
|
480 |
+
</div>
|
481 |
+
</div>
|
482 |
+
<table class="form-table">
|
483 |
+
<?php if ( ! function_exists( 'curl_init' ) ) { ?>
|
484 |
+
<tr valign="top">
|
485 |
+
<td colspan="2" class="gglstmp_error">
|
486 |
+
<?php _e( "This hosting does not support сURL, so you cannot add a sitemap file automatically.", 'sitemap' ); ?>
|
487 |
+
</td>
|
488 |
+
</tr>
|
489 |
+
<?php } else { ?>
|
490 |
+
<tr id="gglstmp_google_webmaster" valign="top">
|
491 |
+
<th scope="row"><?php _e( 'Remote work with Google Webmaster Tools', 'sitemap' ); ?></th>
|
492 |
+
<td>
|
493 |
+
<?php $gglstmp_client = gglstmp_client();
|
494 |
+
$gglstmp_blog_prefix = '_' . get_current_blog_id();
|
495 |
+
if ( isset( $_POST['gglstmp_logout'] ) && check_admin_referer( $plugin_basename, 'gglstmp_nonce_name' ) ) {
|
496 |
+
unset( $_SESSION[ 'gglstmp_authorization_code' . $gglstmp_blog_prefix ] );
|
497 |
+
unset( $gglstmp_settings['authorization_code'] );
|
498 |
+
update_option( 'gglstmp_settings', $gglstmp_settings );
|
499 |
+
}
|
500 |
+
if ( isset( $_POST['gglstmp_authorization_code'] ) && ! empty( $_POST['gglstmp_authorization_code'] ) && check_admin_referer( $plugin_basename, 'gglstmp_nonce_name' ) ) {
|
501 |
+
try {
|
502 |
+
$gglstmp_client->authenticate( $_POST['gglstmp_authorization_code'] );
|
503 |
+
$gglstmp_settings['authorization_code'] = $_SESSION[ 'gglstmp_authorization_code' . $gglstmp_blog_prefix ] = $gglstmp_client->getAccessToken();
|
504 |
+
update_option( 'gglstmp_settings', $gglstmp_settings );
|
505 |
+
} catch ( Exception $e ) {}
|
506 |
+
}
|
507 |
+
if ( ! isset( $_SESSION[ 'gglstmp_authorization_code' . $gglstmp_blog_prefix ] ) && isset( $gglstmp_settings['authorization_code'] ) ) {
|
508 |
+
$_SESSION[ 'gglstmp_authorization_code' . $gglstmp_blog_prefix ] = $gglstmp_settings['authorization_code'];
|
509 |
+
}
|
510 |
+
if ( isset( $_SESSION[ 'gglstmp_authorization_code' . $gglstmp_blog_prefix ] ) ) {
|
511 |
+
$gglstmp_client->setAccessToken( $_SESSION[ 'gglstmp_authorization_code' . $gglstmp_blog_prefix ] );
|
512 |
+
}
|
513 |
+
if ( $gglstmp_client->getAccessToken() ) { ?>
|
514 |
+
<div id="gglstmp_logout_button">
|
515 |
+
<input class="button-secondary" name="gglstmp_logout" type="submit" value="<?php _e( 'Log out from Google Webmaster Tools', 'sitemap' ); ?>" />
|
516 |
+
</div>
|
517 |
+
<?php $gglstmp_menu_ad = __( "I want to add this site to Google Webmaster Tools", 'sitemap' );
|
518 |
+
$gglstmp_menu_del = __( "I want to delete this site from Google Webmaster Tools", 'sitemap' );
|
519 |
+
$gglstmp_menu_inf = __( "I want to get info about this site in Google Webmaster Tools", 'sitemap' ); ?>
|
520 |
+
<label><input type='radio' name='gglstmp_menu' value="ad" /> <?php echo $gglstmp_menu_ad; ?></label><br />
|
521 |
+
<label><input type='radio' name='gglstmp_menu' value="del" /> <?php echo $gglstmp_menu_del; ?></label><br />
|
522 |
+
<label><input type='radio' name='gglstmp_menu' value="inf" /> <?php echo $gglstmp_menu_inf; ?></label><br />
|
523 |
+
<span class="gglstmp_span">
|
524 |
+
<?php _e( 'In case you failed to add a sitemap to Google automatically using this plugin, it is possible to do it manually', 'sitemap' ); ?>:
|
525 |
+
<a target="_blank" href="https://docs.google.com/document/d/1VOJx_OaasVskCqi9fsAbUmxfsckoagPU5Py97yjha9w/edit"><?php _e( 'View the Instruction', 'sitemap' ); ?></a>
|
526 |
+
</span>
|
527 |
+
<?php if ( isset( $_POST['gglstmp_menu'] ) && check_admin_referer( $plugin_basename, 'gglstmp_nonce_name' ) ) {
|
528 |
+
$gglstmp_wmt = new Google_Service_Webmasters( $gglstmp_client );
|
529 |
+
$gglstmp_sv = new Google_Service_SiteVerification( $gglstmp_client );
|
530 |
+
switch ( $_POST['gglstmp_menu'] ) {
|
531 |
+
case 'inf':
|
532 |
+
gglstmp_info_site( $gglstmp_wmt, $gglstmp_sv );
|
533 |
+
break;
|
534 |
+
case 'ad':
|
535 |
+
gglstmp_add_site( $gglstmp_wmt, $gglstmp_sv );
|
536 |
+
break;
|
537 |
+
case 'del':
|
538 |
+
gglstmp_del_site( $gglstmp_wmt, $gglstmp_sv );
|
539 |
+
break;
|
540 |
+
default:
|
541 |
+
break;
|
542 |
+
}
|
543 |
+
}
|
544 |
+
} else {
|
545 |
+
$gglstmp_state = mt_rand();
|
546 |
+
$gglstmp_client->setState( $gglstmp_state );
|
547 |
+
$_SESSION[ 'gglstmp_state' . $gglstmp_blog_prefix ] = $gglstmp_client;
|
548 |
+
$gglstmp_auth_url = $gglstmp_client->createAuthUrl(); ?>
|
549 |
+
<p><?php _e( "Please authorize via your Google Account in order to add or delete a site and a sitemap file automatically or get information about this site in Google Webmaster Tools.", 'sitemap' ); ?></p>
|
550 |
+
<a id="gglstmp_authorization_button" class="button-primary" href="<?php echo $gglstmp_auth_url; ?>" target="_blank" onclick="window.open(this.href,'','top='+(screen.height/2-560/2)+',left='+(screen.width/2-640/2)+',width=640,height=560,resizable=0,scrollbars=0,menubar=0,toolbar=0,status=1,location=0').focus(); return false;"><?php _e( 'Get Authorization Code', 'sitemap' ); ?></a>
|
551 |
+
<div id="gglstmp_authorization_form">
|
552 |
+
<input id="gglstmp_authorization_code" name="gglstmp_authorization_code" type="text" autocomplete="off" maxlength="100" />
|
553 |
+
<input id="gglstmp_authorize" class="button-primary" name="gglstmp_authorize" type="submit" value="<?php _e( 'Authorize', 'sitemap' ); ?>">
|
554 |
+
</div>
|
555 |
+
<?php if ( isset( $_POST['gglstmp_authorization_code'] ) && isset( $_POST['gglstmp_authorize'] ) && check_admin_referer( $plugin_basename, 'gglstmp_nonce_name' ) ) { ?>
|
556 |
+
<div id="gglstmp_authorize_error"><?php _e( 'Invalid authorization code. Please, try again.', 'sitemap' ); ?></div>
|
557 |
+
<?php }
|
558 |
+
} ?>
|
559 |
+
</td>
|
560 |
+
</tr>
|
561 |
+
<?php } ?>
|
562 |
+
</table>
|
563 |
+
<input type="hidden" name="gglstmp_submit" value="submit" />
|
564 |
+
<p class="submit">
|
565 |
+
<input type="submit" class="button-primary" value="<?php _e( 'Save Changes', 'sitemap' ); ?>" />
|
566 |
+
</p>
|
567 |
+
<?php wp_nonce_field( $plugin_basename, 'gglstmp_nonce_name' ); ?>
|
568 |
+
</form>
|
569 |
+
<?php bws_form_restore_default_settings( $plugin_basename ); ?>
|
570 |
+
<div class="clear"></div>
|
571 |
+
<?php }
|
572 |
+
} elseif ( 'extra' == $_GET['action'] ) { ?>
|
573 |
<div class="bws_pro_version_bloc">
|
574 |
<div class="bws_pro_version_table_bloc">
|
575 |
<div class="bws_table_bg"></div>
|
languages/sitemap-ru_RU.mo
CHANGED
Binary file
|
languages/sitemap-ru_RU.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google-sitemap-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -16,363 +16,421 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: google-sitemap-plugin.php:33
|
20 |
-
#: google-sitemap-plugin.php:324
|
21 |
msgid "Google Sitemap Settings"
|
22 |
msgstr "Настройки Google Sitemap"
|
23 |
|
24 |
-
#: google-sitemap-plugin.php:
|
25 |
-
|
|
|
|
|
|
|
26 |
msgid "Settings saved."
|
27 |
msgstr "Настройки сохранены."
|
28 |
|
29 |
-
#: google-sitemap-plugin.php:
|
30 |
msgid "Your Sitemap file is created in the site root directory."
|
31 |
msgstr "Файл Sitemap создан в корне основной директории."
|
32 |
|
33 |
-
#: google-sitemap-plugin.php:
|
34 |
-
|
35 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
msgid "Settings"
|
37 |
msgstr "Настройки"
|
38 |
|
39 |
-
#: google-sitemap-plugin.php:
|
40 |
msgid "Extra settings"
|
41 |
msgstr "Экстра настройки"
|
42 |
|
43 |
-
#: google-sitemap-plugin.php:
|
44 |
-
#: google-sitemap-plugin.php:877
|
45 |
msgid "FAQ"
|
46 |
msgstr "Часто задаваемые вопросы"
|
47 |
|
48 |
-
#: google-sitemap-plugin.php:
|
49 |
msgid "Go PRO"
|
50 |
msgstr "Перейти на PRO версию"
|
51 |
|
52 |
-
#: google-sitemap-plugin.php:
|
53 |
msgid "Warning:"
|
54 |
msgstr "Внимание:"
|
55 |
|
56 |
-
#: google-sitemap-plugin.php:
|
57 |
#, php-format
|
58 |
-
msgid "
|
59 |
-
|
|
|
|
|
|
|
|
|
60 |
|
61 |
-
#: google-sitemap-plugin.php:
|
62 |
msgid "Сheck Access"
|
63 |
msgstr "Проверить Доступ"
|
64 |
|
65 |
-
#: google-sitemap-plugin.php:
|
66 |
msgid "Notice:"
|
67 |
msgstr "Внимание:"
|
68 |
|
69 |
-
#: google-sitemap-plugin.php:
|
70 |
-
msgid "
|
71 |
-
|
|
|
|
|
|
|
|
|
72 |
|
73 |
-
#: google-sitemap-plugin.php:
|
74 |
-
#: google-sitemap-plugin.php:373
|
75 |
msgid "The Sitemap file"
|
76 |
msgstr "Файл Sitemap"
|
77 |
|
78 |
-
#: google-sitemap-plugin.php:
|
79 |
-
|
80 |
-
|
81 |
-
|
|
|
|
|
|
|
82 |
|
83 |
-
#: google-sitemap-plugin.php:
|
84 |
-
#: google-sitemap-plugin.php:380
|
85 |
msgid "Your Sitemap file"
|
86 |
msgstr "Ваш файл Sitemap"
|
87 |
|
88 |
-
#: google-sitemap-plugin.php:
|
89 |
-
#: google-sitemap-plugin.php:380
|
90 |
msgid "is created in the site root directory."
|
91 |
msgstr "создана в корне основной директории."
|
92 |
|
93 |
-
#: google-sitemap-plugin.php:
|
94 |
-
|
95 |
-
|
96 |
-
|
|
|
|
|
|
|
97 |
|
98 |
-
#: google-sitemap-plugin.php:
|
99 |
-
#: google-sitemap-plugin.php:387
|
100 |
msgid "this"
|
101 |
msgstr "эту"
|
102 |
|
103 |
-
#: google-sitemap-plugin.php:
|
104 |
-
|
105 |
-
|
106 |
-
|
|
|
|
|
|
|
107 |
|
108 |
-
#: google-sitemap-plugin.php:
|
109 |
msgid "I want to create a new sitemap file or update the existing one"
|
110 |
msgstr "Я хочу создать новый файл sitemap или обновить существующий"
|
111 |
|
112 |
-
#: google-sitemap-plugin.php:
|
113 |
msgid "I want to add sitemap file path in robots.txt"
|
114 |
-
msgstr "Я хочу добавить путь
|
115 |
|
116 |
-
#: google-sitemap-plugin.php:
|
117 |
-
msgid "
|
118 |
-
|
|
|
|
|
|
|
|
|
119 |
|
120 |
-
#: google-sitemap-plugin.php:
|
121 |
msgid "I want to add sitemap file path in"
|
122 |
msgstr "Я хочу добавить путь файла sitemap в"
|
123 |
|
124 |
-
#: google-sitemap-plugin.php:
|
125 |
-
|
126 |
-
|
127 |
-
|
|
|
|
|
|
|
128 |
|
129 |
-
#: google-sitemap-plugin.php:
|
130 |
msgid "XML Sitemap \"Change Frequency\" parameter"
|
131 |
msgstr "Параметр XML Sitemap \"Change Frequency\""
|
132 |
|
133 |
-
#: google-sitemap-plugin.php:
|
134 |
msgid "Always"
|
135 |
msgstr "Всегда"
|
136 |
|
137 |
-
#: google-sitemap-plugin.php:
|
138 |
msgid "Hourly"
|
139 |
msgstr "Ежечасно"
|
140 |
|
141 |
-
#: google-sitemap-plugin.php:
|
142 |
msgid "Daily"
|
143 |
msgstr "Ежедневно"
|
144 |
|
145 |
-
#: google-sitemap-plugin.php:
|
146 |
msgid "Weekly"
|
147 |
msgstr "Еженедельно"
|
148 |
|
149 |
-
#: google-sitemap-plugin.php:
|
150 |
msgid "Monthly"
|
151 |
msgstr "Ежемесячно"
|
152 |
|
153 |
-
#: google-sitemap-plugin.php:
|
154 |
msgid "Yearly"
|
155 |
msgstr "Ежегодно"
|
156 |
|
157 |
-
#: google-sitemap-plugin.php:
|
158 |
msgid "Never"
|
159 |
msgstr "Никогда"
|
160 |
|
161 |
-
#: google-sitemap-plugin.php:
|
162 |
-
msgid "
|
163 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
164 |
|
165 |
-
#: google-sitemap-plugin.php:
|
166 |
-
#: google-sitemap-plugin.php:579
|
167 |
msgid "Unlock premium options by upgrading to a PRO version."
|
168 |
msgstr "Активируйте премиум опции обновившись до PRO версии."
|
169 |
|
170 |
-
#: google-sitemap-plugin.php:
|
171 |
-
#: google-sitemap-plugin.php:580
|
172 |
msgid "Learn More"
|
173 |
msgstr "Подробнее"
|
174 |
|
175 |
-
#: google-sitemap-plugin.php:
|
176 |
-
#: google-sitemap-plugin.php:583
|
177 |
msgid "Go"
|
178 |
msgstr "Перейти на"
|
179 |
|
180 |
-
#: google-sitemap-plugin.php:
|
181 |
-
msgid "
|
182 |
-
|
|
|
|
|
|
|
|
|
183 |
|
184 |
-
#: google-sitemap-plugin.php:
|
185 |
msgid "Remote work with Google Webmaster Tools"
|
186 |
msgstr "Удаленная работа с Google Webmaster Tools"
|
187 |
|
188 |
-
#: google-sitemap-plugin.php:
|
189 |
msgid "Log out from Google Webmaster Tools"
|
190 |
msgstr "Выйти из Google Webmaster Tools"
|
191 |
|
192 |
-
#: google-sitemap-plugin.php:
|
193 |
msgid "I want to add this site to Google Webmaster Tools"
|
194 |
msgstr "Я хочу добавить этот сайт в Google Webmaster Tools"
|
195 |
|
196 |
-
#: google-sitemap-plugin.php:
|
197 |
msgid "I want to delete this site from Google Webmaster Tools"
|
198 |
msgstr "Я хочу удалить этот сайт из Google Webmaster Tools"
|
199 |
|
200 |
-
#: google-sitemap-plugin.php:
|
201 |
msgid "I want to get info about this site in Google Webmaster Tools"
|
202 |
msgstr "Я хочу получить информацию об этом сайте из Google Webmaster Tools"
|
203 |
|
204 |
-
#: google-sitemap-plugin.php:
|
205 |
-
msgid "
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
#: google-sitemap-plugin.php:
|
213 |
-
#: google-sitemap-plugin.php:
|
214 |
-
#: google-sitemap-plugin.php:
|
|
|
215 |
msgid "View the Instruction"
|
216 |
msgstr "Просмотреть Инструкцию"
|
217 |
|
218 |
-
#: google-sitemap-plugin.php:
|
219 |
-
msgid "
|
220 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
|
222 |
-
#: google-sitemap-plugin.php:
|
223 |
msgid "Get Authorization Code"
|
224 |
msgstr "Получить код авторизации"
|
225 |
|
226 |
-
#: google-sitemap-plugin.php:
|
227 |
msgid "Authorize"
|
228 |
msgstr "Авторизироваться"
|
229 |
|
230 |
-
#: google-sitemap-plugin.php:
|
231 |
msgid "Invalid authorization code. Please, try again."
|
232 |
msgstr "Неверный код авторизации. Пожалуйста, попробуйте еще раз."
|
233 |
|
234 |
-
#: google-sitemap-plugin.php:
|
235 |
-
#: google-sitemap-plugin.php:572
|
236 |
msgid "Save Changes"
|
237 |
msgstr "Сохранить изменения"
|
238 |
|
239 |
-
#: google-sitemap-plugin.php:
|
240 |
msgid "Show URL for pages"
|
241 |
msgstr "Отображать URL для страниц"
|
242 |
|
243 |
-
#: google-sitemap-plugin.php:
|
244 |
msgid "Example of site pages' tree"
|
245 |
msgstr "Пример дерева страниц сайта"
|
246 |
|
247 |
-
#: google-sitemap-plugin.php:
|
248 |
#, php-format
|
249 |
msgid "I want to get info about site %s in Google Webmaster Tools"
|
250 |
msgstr "Я хочу получить информацию об сайте %s из Google Webmaster Tools"
|
251 |
|
252 |
-
#: google-sitemap-plugin.php:
|
253 |
-
#: google-sitemap-plugin.php:711
|
254 |
msgid "This site is not added to the Google Webmaster Tools."
|
255 |
msgstr "Этот сайт не добавлен в Google Webmaster Tools."
|
256 |
|
257 |
-
#: google-sitemap-plugin.php:
|
258 |
msgid "This site is added to the Google Webmaster Tools."
|
259 |
msgstr "Этот сайт добавлен в Google Webmaster Tools."
|
260 |
|
261 |
-
#: google-sitemap-plugin.php:
|
262 |
msgid "Site URL:"
|
263 |
msgstr "URL сайта:"
|
264 |
|
265 |
-
#: google-sitemap-plugin.php:
|
266 |
msgid "Site verification:"
|
267 |
msgstr "Верификация сайта:"
|
268 |
|
269 |
-
#: google-sitemap-plugin.php:
|
270 |
msgid "verified"
|
271 |
msgstr "верифицрован"
|
272 |
|
273 |
-
#: google-sitemap-plugin.php:
|
274 |
msgid "not verified"
|
275 |
msgstr "не верифицирован"
|
276 |
|
277 |
-
#: google-sitemap-plugin.php:
|
278 |
-
|
279 |
-
|
|
|
280 |
msgstr "Ошибка при верификации сайта в Google Webmaster Tools."
|
281 |
|
282 |
-
#: google-sitemap-plugin.php:
|
283 |
-
#: google-sitemap-plugin.php:
|
284 |
-
#: google-sitemap-plugin.php:785
|
285 |
msgid "The site couldn't be verified. Please, verify the site manually"
|
286 |
-
msgstr "
|
|
|
287 |
|
288 |
-
#: google-sitemap-plugin.php:
|
289 |
msgid "The sitemap file is not added to the Google Webmaster Tools."
|
290 |
msgstr "Этот файл sitemap не добавлен в Google Webmaster Tools."
|
291 |
|
292 |
-
#: google-sitemap-plugin.php:
|
293 |
msgid "The sitemap file is added to the Google Webmaster Tools."
|
294 |
msgstr "Этот файл sitemap добавлен в Google Webmaster Tools."
|
295 |
|
296 |
-
#: google-sitemap-plugin.php:
|
297 |
-
msgid "
|
298 |
-
|
|
|
|
|
|
|
|
|
299 |
|
300 |
-
#: google-sitemap-plugin.php:
|
301 |
msgid "Please, see them in the Google Webmaster Tools."
|
302 |
msgstr "Посмотреть ошибки в Google Webmaster Tools."
|
303 |
|
304 |
-
#: google-sitemap-plugin.php:
|
305 |
msgid "Sitemap URL:"
|
306 |
msgstr "URL Sitemap:"
|
307 |
|
308 |
-
#: google-sitemap-plugin.php:
|
309 |
-
msgid "
|
310 |
-
|
|
|
|
|
|
|
|
|
311 |
|
312 |
-
#: google-sitemap-plugin.php:
|
313 |
#, php-format
|
314 |
msgid "I want to delete site %s from Google Webmaster Tools"
|
315 |
msgstr "Я хочу удалить сайт %s из Google Webmaster Tools"
|
316 |
|
317 |
-
#: google-sitemap-plugin.php:
|
318 |
msgid "This site has been successfully deleted from Google Webmaster Tools"
|
319 |
msgstr "Этот сайт был успешно удален из Google Webmaster Tools"
|
320 |
|
321 |
-
#: google-sitemap-plugin.php:
|
322 |
#, php-format
|
323 |
msgid "I want to add site %s in Google Webmaster Tools"
|
324 |
msgstr "Я хочу добавить сайт %s в Google Webmaster Tools"
|
325 |
|
326 |
-
#: google-sitemap-plugin.php:
|
327 |
msgid "The site is added to the Google Webmaster Tools."
|
328 |
msgstr "Этот сайт добавлен в Google Webmaster Tools."
|
329 |
|
330 |
-
#: google-sitemap-plugin.php:
|
331 |
-
msgid "
|
|
|
332 |
msgstr "Ошибка при добавлении сайта в Google Webmaster Tools."
|
333 |
|
334 |
-
#: google-sitemap-plugin.php:
|
335 |
msgid "The site couldn't be added. Please, add the site manually"
|
336 |
msgstr "Сайт не может быть добавлен. Пожалуйста, добавьте сайт вручную"
|
337 |
|
338 |
-
#: google-sitemap-plugin.php:
|
339 |
msgid "Verification code has been successfully received and added to the site."
|
340 |
msgstr "Код верификации получен и добавлен на сайт."
|
341 |
|
342 |
-
#: google-sitemap-plugin.php:
|
343 |
-
msgid "
|
|
|
|
|
344 |
msgstr "Код верификации получен, но не добавлен на сайт."
|
345 |
|
346 |
-
#: google-sitemap-plugin.php:
|
347 |
-
msgid "
|
|
|
|
|
348 |
msgstr "Ошибка Google Webmaster при получении кода верификации."
|
349 |
|
350 |
-
#: google-sitemap-plugin.php:
|
351 |
msgid "The site has been successfully verified in the Google Webmaster Tools."
|
352 |
msgstr "Этот сайт был успешно верифицирован в Google Webmaster Tools."
|
353 |
|
354 |
-
#: google-sitemap-plugin.php:
|
355 |
-
msgid "
|
|
|
356 |
msgstr "Файл sitemap был успешно добавлен в Google Webmaster Tools."
|
357 |
|
358 |
-
#: google-sitemap-plugin.php:
|
359 |
-
msgid "
|
|
|
|
|
360 |
msgstr "Ошибка при добавлении файла sitemap в Google Webmaster Tools."
|
361 |
|
362 |
-
#: google-sitemap-plugin.php:
|
363 |
-
msgid "
|
|
|
364 |
msgstr "Файл sitemap не может быть добавлен. Пожалуйста, добавьте файл вручную"
|
365 |
|
366 |
-
#: google-sitemap-plugin.php:
|
367 |
#, php-format
|
368 |
msgid "Error 404. The sitemap file %s not found."
|
369 |
msgstr "Ошибка 404. Файл sitemap %s не найден."
|
370 |
|
371 |
-
#: google-sitemap-plugin.php:
|
372 |
msgid "The sitemap file not found."
|
373 |
msgstr "Файл sitemap не найден."
|
374 |
|
375 |
-
#: google-sitemap-plugin.php:
|
376 |
msgid "Support"
|
377 |
msgstr "Тех.поддержка"
|
378 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google-sitemap-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-07-07 16:14+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-07-07 16:14+0300\n"
|
7 |
+
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: google-sitemap-plugin.php:33 google-sitemap-plugin.php:342
|
|
|
20 |
msgid "Google Sitemap Settings"
|
21 |
msgstr "Настройки Google Sitemap"
|
22 |
|
23 |
+
#: google-sitemap-plugin.php:278
|
24 |
+
msgid "Cannot edit \"robots.txt\". Check your permissions."
|
25 |
+
msgstr "Невозможно отредактировать файл \"robots.txt\". Проверьте свои права."
|
26 |
+
|
27 |
+
#: google-sitemap-plugin.php:289
|
28 |
msgid "Settings saved."
|
29 |
msgstr "Настройки сохранены."
|
30 |
|
31 |
+
#: google-sitemap-plugin.php:294
|
32 |
msgid "Your Sitemap file is created in the site root directory."
|
33 |
msgstr "Файл Sitemap создан в корне основной директории."
|
34 |
|
35 |
+
#: google-sitemap-plugin.php:329
|
36 |
+
msgid "Cannot edit \"robot.txt\". Check your permissions."
|
37 |
+
msgstr "Невозможно отредактировать файл \"robot.txt\". Проверьте свои права."
|
38 |
+
|
39 |
+
#: google-sitemap-plugin.php:338
|
40 |
+
msgid "All plugin settings were restored."
|
41 |
+
msgstr "Настройки плагина были восстановлены."
|
42 |
+
|
43 |
+
#: google-sitemap-plugin.php:344 google-sitemap-plugin.php:886
|
44 |
+
#: google-sitemap-plugin.php:899
|
45 |
msgid "Settings"
|
46 |
msgstr "Настройки"
|
47 |
|
48 |
+
#: google-sitemap-plugin.php:345
|
49 |
msgid "Extra settings"
|
50 |
msgstr "Экстра настройки"
|
51 |
|
52 |
+
#: google-sitemap-plugin.php:346 google-sitemap-plugin.php:900
|
|
|
53 |
msgid "FAQ"
|
54 |
msgstr "Часто задаваемые вопросы"
|
55 |
|
56 |
+
#: google-sitemap-plugin.php:347
|
57 |
msgid "Go PRO"
|
58 |
msgstr "Перейти на PRO версию"
|
59 |
|
60 |
+
#: google-sitemap-plugin.php:353
|
61 |
msgid "Warning:"
|
62 |
msgstr "Внимание:"
|
63 |
|
64 |
+
#: google-sitemap-plugin.php:355
|
65 |
#, php-format
|
66 |
+
msgid ""
|
67 |
+
"To have an access to subsites XML files, please add the following rule %s to "
|
68 |
+
"your %s file in %s after line %s."
|
69 |
+
msgstr ""
|
70 |
+
"Чтобы иметь доступ к XML файлам подсайта, пожалуйста, добавьте следующее "
|
71 |
+
"правило %s в ваш %s файл %s после строчки %s."
|
72 |
|
73 |
+
#: google-sitemap-plugin.php:365
|
74 |
msgid "Сheck Access"
|
75 |
msgstr "Проверить Доступ"
|
76 |
|
77 |
+
#: google-sitemap-plugin.php:381
|
78 |
msgid "Notice:"
|
79 |
msgstr "Внимание:"
|
80 |
|
81 |
+
#: google-sitemap-plugin.php:381
|
82 |
+
msgid ""
|
83 |
+
"The plugin's settings have been changed. In order to save them please don't "
|
84 |
+
"forget to click the 'Save Changes' button."
|
85 |
+
msgstr ""
|
86 |
+
"Настройки плагина были изменены. Для того, чтобы сохранить их, пожалуйста, "
|
87 |
+
"не забудьте нажать кнопку \"Сохранить\"."
|
88 |
|
89 |
+
#: google-sitemap-plugin.php:392 google-sitemap-plugin.php:394
|
|
|
90 |
msgid "The Sitemap file"
|
91 |
msgstr "Файл Sitemap"
|
92 |
|
93 |
+
#: google-sitemap-plugin.php:392 google-sitemap-plugin.php:394
|
94 |
+
msgid ""
|
95 |
+
"already exists. If you would like to replace it with a new one, please "
|
96 |
+
"choose the necessary box below."
|
97 |
+
msgstr ""
|
98 |
+
"уже существует. Если вы хотите изменить его на новый, выберите "
|
99 |
+
"соответствующее действие внизу."
|
100 |
|
101 |
+
#: google-sitemap-plugin.php:399 google-sitemap-plugin.php:401
|
|
|
102 |
msgid "Your Sitemap file"
|
103 |
msgstr "Ваш файл Sitemap"
|
104 |
|
105 |
+
#: google-sitemap-plugin.php:399 google-sitemap-plugin.php:401
|
|
|
106 |
msgid "is created in the site root directory."
|
107 |
msgstr "создана в корне основной директории."
|
108 |
|
109 |
+
#: google-sitemap-plugin.php:406 google-sitemap-plugin.php:408
|
110 |
+
msgid ""
|
111 |
+
"If you do not want a sitemap file to be added to Google Webmaster Tools "
|
112 |
+
"automatically, you can do it using"
|
113 |
+
msgstr ""
|
114 |
+
"Если вы не хотите добавить файл sitemap автоматически в Google Webmaster "
|
115 |
+
"Tools, Вы можете сделать это через"
|
116 |
|
117 |
+
#: google-sitemap-plugin.php:406 google-sitemap-plugin.php:408
|
|
|
118 |
msgid "this"
|
119 |
msgstr "эту"
|
120 |
|
121 |
+
#: google-sitemap-plugin.php:406 google-sitemap-plugin.php:408
|
122 |
+
msgid ""
|
123 |
+
"link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the "
|
124 |
+
"mandatory field"
|
125 |
+
msgstr ""
|
126 |
+
"ссылку, залогиниться, выбрать сайт, выбрать 'Sitemaps' и заполнить "
|
127 |
+
"обязательное поле"
|
128 |
|
129 |
+
#: google-sitemap-plugin.php:413
|
130 |
msgid "I want to create a new sitemap file or update the existing one"
|
131 |
msgstr "Я хочу создать новый файл sitemap или обновить существующий"
|
132 |
|
133 |
+
#: google-sitemap-plugin.php:419
|
134 |
msgid "I want to add sitemap file path in robots.txt"
|
135 |
+
msgstr "Я хочу добавить путь файла sitemap в robots.txt"
|
136 |
|
137 |
+
#: google-sitemap-plugin.php:420
|
138 |
+
msgid ""
|
139 |
+
"Since you are using multisiting, the plugin does not allow to add a sitemap "
|
140 |
+
"to robots.txt"
|
141 |
+
msgstr ""
|
142 |
+
"Т.к. вы используете мультисайтинг, плагин не имеет возможности добавить "
|
143 |
+
"sitemap в robots.txt"
|
144 |
|
145 |
+
#: google-sitemap-plugin.php:426
|
146 |
msgid "I want to add sitemap file path in"
|
147 |
msgstr "Я хочу добавить путь файла sitemap в"
|
148 |
|
149 |
+
#: google-sitemap-plugin.php:431 google-sitemap-plugin.php:577
|
150 |
+
msgid ""
|
151 |
+
"Please choose the necessary post types and taxonomies the links to which are "
|
152 |
+
"to be added to the sitemap:"
|
153 |
+
msgstr ""
|
154 |
+
"Пожалуйста, выберите необходимые типы постов и таксономии, ссылки на которые "
|
155 |
+
"будут добавлены в sitemap:"
|
156 |
|
157 |
+
#: google-sitemap-plugin.php:453
|
158 |
msgid "XML Sitemap \"Change Frequency\" parameter"
|
159 |
msgstr "Параметр XML Sitemap \"Change Frequency\""
|
160 |
|
161 |
+
#: google-sitemap-plugin.php:456
|
162 |
msgid "Always"
|
163 |
msgstr "Всегда"
|
164 |
|
165 |
+
#: google-sitemap-plugin.php:457
|
166 |
msgid "Hourly"
|
167 |
msgstr "Ежечасно"
|
168 |
|
169 |
+
#: google-sitemap-plugin.php:458
|
170 |
msgid "Daily"
|
171 |
msgstr "Ежедневно"
|
172 |
|
173 |
+
#: google-sitemap-plugin.php:459
|
174 |
msgid "Weekly"
|
175 |
msgstr "Еженедельно"
|
176 |
|
177 |
+
#: google-sitemap-plugin.php:460
|
178 |
msgid "Monthly"
|
179 |
msgstr "Ежемесячно"
|
180 |
|
181 |
+
#: google-sitemap-plugin.php:461
|
182 |
msgid "Yearly"
|
183 |
msgstr "Ежегодно"
|
184 |
|
185 |
+
#: google-sitemap-plugin.php:462
|
186 |
msgid "Never"
|
187 |
msgstr "Никогда"
|
188 |
|
189 |
+
#: google-sitemap-plugin.php:464
|
190 |
+
msgid ""
|
191 |
+
"This value is used in the sitemap file and provides general information to "
|
192 |
+
"search engines. The sitemap itself is generated once and will be re-"
|
193 |
+
"generated when you create or update any post or page."
|
194 |
+
msgstr ""
|
195 |
+
"Это значение используется в файле sitemap и предоставляет общую информацию "
|
196 |
+
"для поисковых систем. Sitemap создается один раз и будет перезаписана вновь "
|
197 |
+
"при создании или обновлении какой-либо страницы или поста."
|
198 |
|
199 |
+
#: google-sitemap-plugin.php:471 google-sitemap-plugin.php:602
|
|
|
200 |
msgid "Unlock premium options by upgrading to a PRO version."
|
201 |
msgstr "Активируйте премиум опции обновившись до PRO версии."
|
202 |
|
203 |
+
#: google-sitemap-plugin.php:472 google-sitemap-plugin.php:603
|
|
|
204 |
msgid "Learn More"
|
205 |
msgstr "Подробнее"
|
206 |
|
207 |
+
#: google-sitemap-plugin.php:475 google-sitemap-plugin.php:606
|
|
|
208 |
msgid "Go"
|
209 |
msgstr "Перейти на"
|
210 |
|
211 |
+
#: google-sitemap-plugin.php:484
|
212 |
+
msgid ""
|
213 |
+
"This hosting does not support сURL, so you cannot add a sitemap file "
|
214 |
+
"automatically."
|
215 |
+
msgstr ""
|
216 |
+
"Ваш хостинг не поддерживает сURL, поэтому вы не можете добавить sitemap в "
|
217 |
+
"Google аккаунт автоматически."
|
218 |
|
219 |
+
#: google-sitemap-plugin.php:489
|
220 |
msgid "Remote work with Google Webmaster Tools"
|
221 |
msgstr "Удаленная работа с Google Webmaster Tools"
|
222 |
|
223 |
+
#: google-sitemap-plugin.php:513
|
224 |
msgid "Log out from Google Webmaster Tools"
|
225 |
msgstr "Выйти из Google Webmaster Tools"
|
226 |
|
227 |
+
#: google-sitemap-plugin.php:515
|
228 |
msgid "I want to add this site to Google Webmaster Tools"
|
229 |
msgstr "Я хочу добавить этот сайт в Google Webmaster Tools"
|
230 |
|
231 |
+
#: google-sitemap-plugin.php:516
|
232 |
msgid "I want to delete this site from Google Webmaster Tools"
|
233 |
msgstr "Я хочу удалить этот сайт из Google Webmaster Tools"
|
234 |
|
235 |
+
#: google-sitemap-plugin.php:517
|
236 |
msgid "I want to get info about this site in Google Webmaster Tools"
|
237 |
msgstr "Я хочу получить информацию об этом сайте из Google Webmaster Tools"
|
238 |
|
239 |
+
#: google-sitemap-plugin.php:522
|
240 |
+
msgid ""
|
241 |
+
"In case you failed to add a sitemap to Google automatically using this "
|
242 |
+
"plugin, it is possible to do it manually"
|
243 |
+
msgstr ""
|
244 |
+
"В случае ошибки при добавлении sitemap в Google автоматически с помощью "
|
245 |
+
"этого плагина, Вы можете сделать это вручную"
|
246 |
+
|
247 |
+
#: google-sitemap-plugin.php:523 google-sitemap-plugin.php:681
|
248 |
+
#: google-sitemap-plugin.php:704 google-sitemap-plugin.php:761
|
249 |
+
#: google-sitemap-plugin.php:788 google-sitemap-plugin.php:808
|
250 |
+
#: google-sitemap-plugin.php:827
|
251 |
msgid "View the Instruction"
|
252 |
msgstr "Просмотреть Инструкцию"
|
253 |
|
254 |
+
#: google-sitemap-plugin.php:547
|
255 |
+
msgid ""
|
256 |
+
"Please authorize via your Google Account in order to add or delete a site "
|
257 |
+
"and a sitemap file automatically or get information about this site in "
|
258 |
+
"Google Webmaster Tools."
|
259 |
+
msgstr ""
|
260 |
+
"Пожалуйста, авторизуйтесь используя ваш Google аккаунт, чтобы иметь "
|
261 |
+
"возможность добавлять или удалять сайты и файл sitemap автоматически или "
|
262 |
+
"получать информацию из Google Webmaster Tools."
|
263 |
|
264 |
+
#: google-sitemap-plugin.php:548
|
265 |
msgid "Get Authorization Code"
|
266 |
msgstr "Получить код авторизации"
|
267 |
|
268 |
+
#: google-sitemap-plugin.php:551
|
269 |
msgid "Authorize"
|
270 |
msgstr "Авторизироваться"
|
271 |
|
272 |
+
#: google-sitemap-plugin.php:554
|
273 |
msgid "Invalid authorization code. Please, try again."
|
274 |
msgstr "Неверный код авторизации. Пожалуйста, попробуйте еще раз."
|
275 |
|
276 |
+
#: google-sitemap-plugin.php:563 google-sitemap-plugin.php:595
|
|
|
277 |
msgid "Save Changes"
|
278 |
msgstr "Сохранить изменения"
|
279 |
|
280 |
+
#: google-sitemap-plugin.php:584
|
281 |
msgid "Show URL for pages"
|
282 |
msgstr "Отображать URL для страниц"
|
283 |
|
284 |
+
#: google-sitemap-plugin.php:590
|
285 |
msgid "Example of site pages' tree"
|
286 |
msgstr "Пример дерева страниц сайта"
|
287 |
|
288 |
+
#: google-sitemap-plugin.php:655
|
289 |
#, php-format
|
290 |
msgid "I want to get info about site %s in Google Webmaster Tools"
|
291 |
msgstr "Я хочу получить информацию об сайте %s из Google Webmaster Tools"
|
292 |
|
293 |
+
#: google-sitemap-plugin.php:664 google-sitemap-plugin.php:734
|
|
|
294 |
msgid "This site is not added to the Google Webmaster Tools."
|
295 |
msgstr "Этот сайт не добавлен в Google Webmaster Tools."
|
296 |
|
297 |
+
#: google-sitemap-plugin.php:668
|
298 |
msgid "This site is added to the Google Webmaster Tools."
|
299 |
msgstr "Этот сайт добавлен в Google Webmaster Tools."
|
300 |
|
301 |
+
#: google-sitemap-plugin.php:669
|
302 |
msgid "Site URL:"
|
303 |
msgstr "URL сайта:"
|
304 |
|
305 |
+
#: google-sitemap-plugin.php:670
|
306 |
msgid "Site verification:"
|
307 |
msgstr "Верификация сайта:"
|
308 |
|
309 |
+
#: google-sitemap-plugin.php:670
|
310 |
msgid "verified"
|
311 |
msgstr "верифицрован"
|
312 |
|
313 |
+
#: google-sitemap-plugin.php:670
|
314 |
msgid "not verified"
|
315 |
msgstr "не верифицирован"
|
316 |
|
317 |
+
#: google-sitemap-plugin.php:679 google-sitemap-plugin.php:806
|
318 |
+
msgid ""
|
319 |
+
"An unexpected error occurred when verifying site in the Google Webmaster "
|
320 |
+
"Tools."
|
321 |
msgstr "Ошибка при верификации сайта в Google Webmaster Tools."
|
322 |
|
323 |
+
#: google-sitemap-plugin.php:681 google-sitemap-plugin.php:788
|
324 |
+
#: google-sitemap-plugin.php:808
|
|
|
325 |
msgid "The site couldn't be verified. Please, verify the site manually"
|
326 |
+
msgstr ""
|
327 |
+
"Сайт не может быть верифицрован. Пожалуйста, верифицируйте сайт вручную"
|
328 |
|
329 |
+
#: google-sitemap-plugin.php:694
|
330 |
msgid "The sitemap file is not added to the Google Webmaster Tools."
|
331 |
msgstr "Этот файл sitemap не добавлен в Google Webmaster Tools."
|
332 |
|
333 |
+
#: google-sitemap-plugin.php:697
|
334 |
msgid "The sitemap file is added to the Google Webmaster Tools."
|
335 |
msgstr "Этот файл sitemap добавлен в Google Webmaster Tools."
|
336 |
|
337 |
+
#: google-sitemap-plugin.php:699
|
338 |
+
msgid ""
|
339 |
+
"The sitemap file is added to the Google Webmaster Tools, but has some errors "
|
340 |
+
"or warnings."
|
341 |
+
msgstr ""
|
342 |
+
"Этот файл sitemap добавлен в Google Webmaster Tools, но при добавлении "
|
343 |
+
"возникли ошибки."
|
344 |
|
345 |
+
#: google-sitemap-plugin.php:699
|
346 |
msgid "Please, see them in the Google Webmaster Tools."
|
347 |
msgstr "Посмотреть ошибки в Google Webmaster Tools."
|
348 |
|
349 |
+
#: google-sitemap-plugin.php:702
|
350 |
msgid "Sitemap URL:"
|
351 |
msgstr "URL Sitemap:"
|
352 |
|
353 |
+
#: google-sitemap-plugin.php:704
|
354 |
+
msgid ""
|
355 |
+
"When checking the sitemap file an unexpected error occurred. Please, check "
|
356 |
+
"the sitemap file manually"
|
357 |
+
msgstr ""
|
358 |
+
"При проверке обнаружена ошибка файла sitemap. Пожалуйста, проверьте файл "
|
359 |
+
"вручную"
|
360 |
|
361 |
+
#: google-sitemap-plugin.php:716
|
362 |
#, php-format
|
363 |
msgid "I want to delete site %s from Google Webmaster Tools"
|
364 |
msgstr "Я хочу удалить сайт %s из Google Webmaster Tools"
|
365 |
|
366 |
+
#: google-sitemap-plugin.php:729
|
367 |
msgid "This site has been successfully deleted from Google Webmaster Tools"
|
368 |
msgstr "Этот сайт был успешно удален из Google Webmaster Tools"
|
369 |
|
370 |
+
#: google-sitemap-plugin.php:748
|
371 |
#, php-format
|
372 |
msgid "I want to add site %s in Google Webmaster Tools"
|
373 |
msgstr "Я хочу добавить сайт %s в Google Webmaster Tools"
|
374 |
|
375 |
+
#: google-sitemap-plugin.php:753
|
376 |
msgid "The site is added to the Google Webmaster Tools."
|
377 |
msgstr "Этот сайт добавлен в Google Webmaster Tools."
|
378 |
|
379 |
+
#: google-sitemap-plugin.php:759
|
380 |
+
msgid ""
|
381 |
+
"When you add a site in the Google Webmaster Tools unexpected error occurred."
|
382 |
msgstr "Ошибка при добавлении сайта в Google Webmaster Tools."
|
383 |
|
384 |
+
#: google-sitemap-plugin.php:761
|
385 |
msgid "The site couldn't be added. Please, add the site manually"
|
386 |
msgstr "Сайт не может быть добавлен. Пожалуйста, добавьте сайт вручную"
|
387 |
|
388 |
+
#: google-sitemap-plugin.php:777
|
389 |
msgid "Verification code has been successfully received and added to the site."
|
390 |
msgstr "Код верификации получен и добавлен на сайт."
|
391 |
|
392 |
+
#: google-sitemap-plugin.php:779
|
393 |
+
msgid ""
|
394 |
+
"Verification code has been successfully received but has not been added to "
|
395 |
+
"the site."
|
396 |
msgstr "Код верификации получен, но не добавлен на сайт."
|
397 |
|
398 |
+
#: google-sitemap-plugin.php:786
|
399 |
+
msgid ""
|
400 |
+
"An error has occurred when receiving the verification code site in the "
|
401 |
+
"Google Webmaster."
|
402 |
msgstr "Ошибка Google Webmaster при получении кода верификации."
|
403 |
|
404 |
+
#: google-sitemap-plugin.php:800
|
405 |
msgid "The site has been successfully verified in the Google Webmaster Tools."
|
406 |
msgstr "Этот сайт был успешно верифицирован в Google Webmaster Tools."
|
407 |
|
408 |
+
#: google-sitemap-plugin.php:819
|
409 |
+
msgid ""
|
410 |
+
"The sitemap file has been successfully added to the Google Webmaster Tools."
|
411 |
msgstr "Файл sitemap был успешно добавлен в Google Webmaster Tools."
|
412 |
|
413 |
+
#: google-sitemap-plugin.php:825
|
414 |
+
msgid ""
|
415 |
+
"When you add a sitemap file in the Google Webmaster Tools unexpected error "
|
416 |
+
"occurred."
|
417 |
msgstr "Ошибка при добавлении файла sitemap в Google Webmaster Tools."
|
418 |
|
419 |
+
#: google-sitemap-plugin.php:827
|
420 |
+
msgid ""
|
421 |
+
"The sitemap file couldn't be added. Please, add the sitemap file manually"
|
422 |
msgstr "Файл sitemap не может быть добавлен. Пожалуйста, добавьте файл вручную"
|
423 |
|
424 |
+
#: google-sitemap-plugin.php:830
|
425 |
#, php-format
|
426 |
msgid "Error 404. The sitemap file %s not found."
|
427 |
msgstr "Ошибка 404. Файл sitemap %s не найден."
|
428 |
|
429 |
+
#: google-sitemap-plugin.php:833
|
430 |
msgid "The sitemap file not found."
|
431 |
msgstr "Файл sitemap не найден."
|
432 |
|
433 |
+
#: google-sitemap-plugin.php:901
|
434 |
msgid "Support"
|
435 |
msgstr "Тех.поддержка"
|
436 |
|
languages/sitemap-uk.mo
CHANGED
Binary file
|
languages/sitemap-uk.po
CHANGED
@@ -2,9 +2,9 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google-sitemap-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2015-
|
6 |
-
"PO-Revision-Date: 2015-
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
@@ -16,363 +16,418 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: google-sitemap-plugin.php:33
|
20 |
-
#: google-sitemap-plugin.php:324
|
21 |
msgid "Google Sitemap Settings"
|
22 |
msgstr "Налаштування Google Sitemap"
|
23 |
|
24 |
-
#: google-sitemap-plugin.php:
|
25 |
-
|
|
|
|
|
|
|
26 |
msgid "Settings saved."
|
27 |
msgstr "Налаштування збережено."
|
28 |
|
29 |
-
#: google-sitemap-plugin.php:
|
30 |
msgid "Your Sitemap file is created in the site root directory."
|
31 |
msgstr "Файл Sitemap створено у кореневій директорії сайту."
|
32 |
|
33 |
-
#: google-sitemap-plugin.php:
|
34 |
-
|
35 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
msgid "Settings"
|
37 |
msgstr "Налаштування"
|
38 |
|
39 |
-
#: google-sitemap-plugin.php:
|
40 |
msgid "Extra settings"
|
41 |
msgstr "Додаткові налаштування"
|
42 |
|
43 |
-
#: google-sitemap-plugin.php:
|
44 |
-
#: google-sitemap-plugin.php:877
|
45 |
msgid "FAQ"
|
46 |
msgstr "Розповсюджені питання"
|
47 |
|
48 |
-
#: google-sitemap-plugin.php:
|
49 |
msgid "Go PRO"
|
50 |
msgstr "Перейти на PRO"
|
51 |
|
52 |
-
#: google-sitemap-plugin.php:
|
53 |
msgid "Warning:"
|
54 |
msgstr "Увага:"
|
55 |
|
56 |
-
#: google-sitemap-plugin.php:
|
57 |
#, php-format
|
58 |
-
msgid "
|
59 |
-
|
|
|
|
|
|
|
|
|
60 |
|
61 |
-
#: google-sitemap-plugin.php:
|
62 |
msgid "Сheck Access"
|
63 |
msgstr "Перевірити Доступ"
|
64 |
|
65 |
-
#: google-sitemap-plugin.php:
|
66 |
msgid "Notice:"
|
67 |
msgstr "Зауважте:"
|
68 |
|
69 |
-
#: google-sitemap-plugin.php:
|
70 |
-
msgid "
|
71 |
-
|
|
|
|
|
|
|
|
|
72 |
|
73 |
-
#: google-sitemap-plugin.php:
|
74 |
-
#: google-sitemap-plugin.php:373
|
75 |
msgid "The Sitemap file"
|
76 |
msgstr "Файл Sitemap"
|
77 |
|
78 |
-
#: google-sitemap-plugin.php:
|
79 |
-
|
80 |
-
|
81 |
-
|
|
|
|
|
|
|
82 |
|
83 |
-
#: google-sitemap-plugin.php:
|
84 |
-
#: google-sitemap-plugin.php:380
|
85 |
msgid "Your Sitemap file"
|
86 |
msgstr "Ваш файл Sitemap"
|
87 |
|
88 |
-
#: google-sitemap-plugin.php:
|
89 |
-
#: google-sitemap-plugin.php:380
|
90 |
msgid "is created in the site root directory."
|
91 |
msgstr "створений у кореневій директорії сайту."
|
92 |
|
93 |
-
#: google-sitemap-plugin.php:
|
94 |
-
|
95 |
-
|
96 |
-
|
|
|
|
|
|
|
97 |
|
98 |
-
#: google-sitemap-plugin.php:
|
99 |
-
#: google-sitemap-plugin.php:387
|
100 |
msgid "this"
|
101 |
msgstr "це"
|
102 |
|
103 |
-
#: google-sitemap-plugin.php:
|
104 |
-
|
105 |
-
|
106 |
-
|
|
|
|
|
|
|
107 |
|
108 |
-
#: google-sitemap-plugin.php:
|
109 |
msgid "I want to create a new sitemap file or update the existing one"
|
110 |
msgstr "Я хочу створити новий файл sitemap або оновити існуючий"
|
111 |
|
112 |
-
#: google-sitemap-plugin.php:
|
113 |
msgid "I want to add sitemap file path in robots.txt"
|
114 |
msgstr "Я хочу додати шлях до файлу sitemap у robots.txt"
|
115 |
|
116 |
-
#: google-sitemap-plugin.php:
|
117 |
-
msgid "
|
118 |
-
|
|
|
|
|
|
|
|
|
119 |
|
120 |
-
#: google-sitemap-plugin.php:
|
121 |
msgid "I want to add sitemap file path in"
|
122 |
msgstr "Я хочу додати шлях файлу sitemap у"
|
123 |
|
124 |
-
#: google-sitemap-plugin.php:
|
125 |
-
|
126 |
-
|
127 |
-
|
|
|
|
|
|
|
128 |
|
129 |
-
#: google-sitemap-plugin.php:
|
130 |
msgid "XML Sitemap \"Change Frequency\" parameter"
|
131 |
msgstr "Параметр XML Sitemap \"Change Frequency\""
|
132 |
|
133 |
-
#: google-sitemap-plugin.php:
|
134 |
msgid "Always"
|
135 |
msgstr "завжди"
|
136 |
|
137 |
-
#: google-sitemap-plugin.php:
|
138 |
msgid "Hourly"
|
139 |
msgstr "щогодини"
|
140 |
|
141 |
-
#: google-sitemap-plugin.php:
|
142 |
msgid "Daily"
|
143 |
msgstr "щодня"
|
144 |
|
145 |
-
#: google-sitemap-plugin.php:
|
146 |
msgid "Weekly"
|
147 |
msgstr "щотижня"
|
148 |
|
149 |
-
#: google-sitemap-plugin.php:
|
150 |
msgid "Monthly"
|
151 |
msgstr "щомісяця"
|
152 |
|
153 |
-
#: google-sitemap-plugin.php:
|
154 |
msgid "Yearly"
|
155 |
msgstr "щороку"
|
156 |
|
157 |
-
#: google-sitemap-plugin.php:
|
158 |
msgid "Never"
|
159 |
msgstr "ніколи"
|
160 |
|
161 |
-
#: google-sitemap-plugin.php:
|
162 |
-
msgid "
|
163 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
164 |
|
165 |
-
#: google-sitemap-plugin.php:
|
166 |
-
#: google-sitemap-plugin.php:579
|
167 |
msgid "Unlock premium options by upgrading to a PRO version."
|
168 |
msgstr "Відкрити додаткові опції, перейшовши на PRO версію."
|
169 |
|
170 |
-
#: google-sitemap-plugin.php:
|
171 |
-
#: google-sitemap-plugin.php:580
|
172 |
msgid "Learn More"
|
173 |
msgstr "Дізнатись більше"
|
174 |
|
175 |
-
#: google-sitemap-plugin.php:
|
176 |
-
#: google-sitemap-plugin.php:583
|
177 |
msgid "Go"
|
178 |
msgstr "Перейти"
|
179 |
|
180 |
-
#: google-sitemap-plugin.php:
|
181 |
-
msgid "
|
182 |
-
|
|
|
|
|
|
|
|
|
183 |
|
184 |
-
#: google-sitemap-plugin.php:
|
185 |
msgid "Remote work with Google Webmaster Tools"
|
186 |
msgstr "Віддалена робота з Google Webmaster Tools"
|
187 |
|
188 |
-
#: google-sitemap-plugin.php:
|
189 |
msgid "Log out from Google Webmaster Tools"
|
190 |
msgstr "Вийти з Google Webmaster Tools"
|
191 |
|
192 |
-
#: google-sitemap-plugin.php:
|
193 |
msgid "I want to add this site to Google Webmaster Tools"
|
194 |
msgstr "Я хочу додати цей сайт до Google Webmaster Tools"
|
195 |
|
196 |
-
#: google-sitemap-plugin.php:
|
197 |
msgid "I want to delete this site from Google Webmaster Tools"
|
198 |
msgstr "Я хочу видалити цей сайт з Google Webmaster Tools"
|
199 |
|
200 |
-
#: google-sitemap-plugin.php:
|
201 |
msgid "I want to get info about this site in Google Webmaster Tools"
|
202 |
msgstr "Я хочу отримувати інформацію про цей сайт з Google Webmaster Tools"
|
203 |
|
204 |
-
#: google-sitemap-plugin.php:
|
205 |
-
msgid "
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
#: google-sitemap-plugin.php:
|
213 |
-
#: google-sitemap-plugin.php:
|
214 |
-
#: google-sitemap-plugin.php:
|
|
|
215 |
msgid "View the Instruction"
|
216 |
msgstr "Переглянути інструкцію"
|
217 |
|
218 |
-
#: google-sitemap-plugin.php:
|
219 |
-
msgid "
|
220 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
|
222 |
-
#: google-sitemap-plugin.php:
|
223 |
msgid "Get Authorization Code"
|
224 |
msgstr "Отримати Код Авторизації"
|
225 |
|
226 |
-
#: google-sitemap-plugin.php:
|
227 |
msgid "Authorize"
|
228 |
msgstr "Авторизуватись"
|
229 |
|
230 |
-
#: google-sitemap-plugin.php:
|
231 |
msgid "Invalid authorization code. Please, try again."
|
232 |
msgstr "Невірний код авторизації. Будь ласка, спробуйте ще раз."
|
233 |
|
234 |
-
#: google-sitemap-plugin.php:
|
235 |
-
#: google-sitemap-plugin.php:572
|
236 |
msgid "Save Changes"
|
237 |
msgstr "Зберегти зміни"
|
238 |
|
239 |
-
#: google-sitemap-plugin.php:
|
240 |
msgid "Show URL for pages"
|
241 |
msgstr "Показати посилання для сторінок"
|
242 |
|
243 |
-
#: google-sitemap-plugin.php:
|
244 |
msgid "Example of site pages' tree"
|
245 |
msgstr "Приклад дерева сторінок сайту"
|
246 |
|
247 |
-
#: google-sitemap-plugin.php:
|
248 |
#, php-format
|
249 |
msgid "I want to get info about site %s in Google Webmaster Tools"
|
250 |
msgstr "Я хочу отримати інформацію про сайт %s в Google Webmaster Tools"
|
251 |
|
252 |
-
#: google-sitemap-plugin.php:
|
253 |
-
#: google-sitemap-plugin.php:711
|
254 |
msgid "This site is not added to the Google Webmaster Tools."
|
255 |
msgstr "Даний сайт не додано до Google Webmaster Tools."
|
256 |
|
257 |
-
#: google-sitemap-plugin.php:
|
258 |
msgid "This site is added to the Google Webmaster Tools."
|
259 |
msgstr "Цей сайт додано до Google Webmaster Tools."
|
260 |
|
261 |
-
#: google-sitemap-plugin.php:
|
262 |
msgid "Site URL:"
|
263 |
msgstr "URL сайту:"
|
264 |
|
265 |
-
#: google-sitemap-plugin.php:
|
266 |
msgid "Site verification:"
|
267 |
msgstr "Верифікація сайту:"
|
268 |
|
269 |
-
#: google-sitemap-plugin.php:
|
270 |
msgid "verified"
|
271 |
msgstr "верифіковано"
|
272 |
|
273 |
-
#: google-sitemap-plugin.php:
|
274 |
msgid "not verified"
|
275 |
msgstr "не верифіковано"
|
276 |
|
277 |
-
#: google-sitemap-plugin.php:
|
278 |
-
|
279 |
-
|
|
|
280 |
msgstr "Помилка при перевірці сайту в Google Webmaster Tools."
|
281 |
|
282 |
-
#: google-sitemap-plugin.php:
|
283 |
-
#: google-sitemap-plugin.php:
|
284 |
-
#: google-sitemap-plugin.php:785
|
285 |
msgid "The site couldn't be verified. Please, verify the site manually"
|
286 |
msgstr "Сайт неможна перевірити. Будь ласка, перевірте його вручну"
|
287 |
|
288 |
-
#: google-sitemap-plugin.php:
|
289 |
msgid "The sitemap file is not added to the Google Webmaster Tools."
|
290 |
msgstr "Файл sitemap не додано до Google Webmaster Tools."
|
291 |
|
292 |
-
#: google-sitemap-plugin.php:
|
293 |
msgid "The sitemap file is added to the Google Webmaster Tools."
|
294 |
msgstr "Файл sitemap додано до Google Webmaster Tools."
|
295 |
|
296 |
-
#: google-sitemap-plugin.php:
|
297 |
-
msgid "
|
298 |
-
|
|
|
|
|
|
|
|
|
299 |
|
300 |
-
#: google-sitemap-plugin.php:
|
301 |
msgid "Please, see them in the Google Webmaster Tools."
|
302 |
msgstr "Перегляньте їх в Google Webmaster Tools."
|
303 |
|
304 |
-
#: google-sitemap-plugin.php:
|
305 |
msgid "Sitemap URL:"
|
306 |
msgstr "URL Sitemap:"
|
307 |
|
308 |
-
#: google-sitemap-plugin.php:
|
309 |
-
msgid "
|
|
|
|
|
310 |
msgstr "Помилка при перевірці файлу sitemap. Будь ласка, перевірте файл вручну"
|
311 |
|
312 |
-
#: google-sitemap-plugin.php:
|
313 |
#, php-format
|
314 |
msgid "I want to delete site %s from Google Webmaster Tools"
|
315 |
msgstr "Я хочу видалити сайт %s з Google Webmaster Tools"
|
316 |
|
317 |
-
#: google-sitemap-plugin.php:
|
318 |
msgid "This site has been successfully deleted from Google Webmaster Tools"
|
319 |
msgstr "Даний сайт було видалено з Google Webmaster Tools"
|
320 |
|
321 |
-
#: google-sitemap-plugin.php:
|
322 |
#, php-format
|
323 |
msgid "I want to add site %s in Google Webmaster Tools"
|
324 |
msgstr "Я хочу додати сайт %s до Google Webmaster Tools"
|
325 |
|
326 |
-
#: google-sitemap-plugin.php:
|
327 |
msgid "The site is added to the Google Webmaster Tools."
|
328 |
msgstr "Сайт додано до Google Webmaster Tools."
|
329 |
|
330 |
-
#: google-sitemap-plugin.php:
|
331 |
-
msgid "
|
|
|
332 |
msgstr "Помилка при додаванні сайту до Google Webmaster Tools."
|
333 |
|
334 |
-
#: google-sitemap-plugin.php:
|
335 |
msgid "The site couldn't be added. Please, add the site manually"
|
336 |
msgstr "Неможна додати сайт. Будь ласка, додайте його вручну"
|
337 |
|
338 |
-
#: google-sitemap-plugin.php:
|
339 |
msgid "Verification code has been successfully received and added to the site."
|
340 |
msgstr "Код верифікації успішно отримано та додано на сайт."
|
341 |
|
342 |
-
#: google-sitemap-plugin.php:
|
343 |
-
msgid "
|
|
|
|
|
344 |
msgstr "Код верифікації успішно отримано, але не додано на сайт."
|
345 |
|
346 |
-
#: google-sitemap-plugin.php:
|
347 |
-
msgid "
|
|
|
|
|
348 |
msgstr "Помилка при отриманні верифікаційного коду Google Webmaster."
|
349 |
|
350 |
-
#: google-sitemap-plugin.php:
|
351 |
msgid "The site has been successfully verified in the Google Webmaster Tools."
|
352 |
msgstr "Сайт успішно перевірено в Google Webmaster Tools."
|
353 |
|
354 |
-
#: google-sitemap-plugin.php:
|
355 |
-
msgid "
|
|
|
356 |
msgstr "Файл sitemap успішно додано до Google Webmaster Tools."
|
357 |
|
358 |
-
#: google-sitemap-plugin.php:
|
359 |
-
msgid "
|
|
|
|
|
360 |
msgstr "Помилка при додаванні файлу sitemap до Google Webmaster Tools."
|
361 |
|
362 |
-
#: google-sitemap-plugin.php:
|
363 |
-
msgid "
|
|
|
364 |
msgstr "Файл sitemap не може бути доданий. Будь ласка, додайте його вручну"
|
365 |
|
366 |
-
#: google-sitemap-plugin.php:
|
367 |
#, php-format
|
368 |
msgid "Error 404. The sitemap file %s not found."
|
369 |
msgstr "Помилка 404. Файл sitemap %s не знайдено."
|
370 |
|
371 |
-
#: google-sitemap-plugin.php:
|
372 |
msgid "The sitemap file not found."
|
373 |
msgstr "Файл sitemap не знайдено."
|
374 |
|
375 |
-
#: google-sitemap-plugin.php:
|
376 |
msgid "Support"
|
377 |
msgstr "Підтримка"
|
378 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: google-sitemap-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-07-07 16:14+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-07-07 16:14+0300\n"
|
7 |
+
"Last-Translator: BestWebSoft team <wp@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: google-sitemap-plugin.php:33 google-sitemap-plugin.php:342
|
|
|
20 |
msgid "Google Sitemap Settings"
|
21 |
msgstr "Налаштування Google Sitemap"
|
22 |
|
23 |
+
#: google-sitemap-plugin.php:278
|
24 |
+
msgid "Cannot edit \"robots.txt\". Check your permissions."
|
25 |
+
msgstr "Неможливо відредагувати файл \"robots.txt\". Перевірте свої права."
|
26 |
+
|
27 |
+
#: google-sitemap-plugin.php:289
|
28 |
msgid "Settings saved."
|
29 |
msgstr "Налаштування збережено."
|
30 |
|
31 |
+
#: google-sitemap-plugin.php:294
|
32 |
msgid "Your Sitemap file is created in the site root directory."
|
33 |
msgstr "Файл Sitemap створено у кореневій директорії сайту."
|
34 |
|
35 |
+
#: google-sitemap-plugin.php:329
|
36 |
+
msgid "Cannot edit \"robot.txt\". Check your permissions."
|
37 |
+
msgstr "Неможливо відредагувати файл \"robot.txt\". Перевірте свої права."
|
38 |
+
|
39 |
+
#: google-sitemap-plugin.php:338
|
40 |
+
msgid "All plugin settings were restored."
|
41 |
+
msgstr "Налаштування плагіну були відновлені."
|
42 |
+
|
43 |
+
#: google-sitemap-plugin.php:344 google-sitemap-plugin.php:886
|
44 |
+
#: google-sitemap-plugin.php:899
|
45 |
msgid "Settings"
|
46 |
msgstr "Налаштування"
|
47 |
|
48 |
+
#: google-sitemap-plugin.php:345
|
49 |
msgid "Extra settings"
|
50 |
msgstr "Додаткові налаштування"
|
51 |
|
52 |
+
#: google-sitemap-plugin.php:346 google-sitemap-plugin.php:900
|
|
|
53 |
msgid "FAQ"
|
54 |
msgstr "Розповсюджені питання"
|
55 |
|
56 |
+
#: google-sitemap-plugin.php:347
|
57 |
msgid "Go PRO"
|
58 |
msgstr "Перейти на PRO"
|
59 |
|
60 |
+
#: google-sitemap-plugin.php:353
|
61 |
msgid "Warning:"
|
62 |
msgstr "Увага:"
|
63 |
|
64 |
+
#: google-sitemap-plugin.php:355
|
65 |
#, php-format
|
66 |
+
msgid ""
|
67 |
+
"To have an access to subsites XML files, please add the following rule %s to "
|
68 |
+
"your %s file in %s after line %s."
|
69 |
+
msgstr ""
|
70 |
+
"Щоб мати доступ до XML файлів підсайту, будь ласка, додайте наступне правило "
|
71 |
+
"%s у ваш %s файл %s після строчки %s."
|
72 |
|
73 |
+
#: google-sitemap-plugin.php:365
|
74 |
msgid "Сheck Access"
|
75 |
msgstr "Перевірити Доступ"
|
76 |
|
77 |
+
#: google-sitemap-plugin.php:381
|
78 |
msgid "Notice:"
|
79 |
msgstr "Зауважте:"
|
80 |
|
81 |
+
#: google-sitemap-plugin.php:381
|
82 |
+
msgid ""
|
83 |
+
"The plugin's settings have been changed. In order to save them please don't "
|
84 |
+
"forget to click the 'Save Changes' button."
|
85 |
+
msgstr ""
|
86 |
+
"Налаштування плагіну змінено. Щоб зберегти їх, будь ласка, не забудьте "
|
87 |
+
"клікнути \"Зберегти зміни\"."
|
88 |
|
89 |
+
#: google-sitemap-plugin.php:392 google-sitemap-plugin.php:394
|
|
|
90 |
msgid "The Sitemap file"
|
91 |
msgstr "Файл Sitemap"
|
92 |
|
93 |
+
#: google-sitemap-plugin.php:392 google-sitemap-plugin.php:394
|
94 |
+
msgid ""
|
95 |
+
"already exists. If you would like to replace it with a new one, please "
|
96 |
+
"choose the necessary box below."
|
97 |
+
msgstr ""
|
98 |
+
"вже існує. Якщо ви хочете замінити його на новий, виберіть потрібну дію "
|
99 |
+
"внизу."
|
100 |
|
101 |
+
#: google-sitemap-plugin.php:399 google-sitemap-plugin.php:401
|
|
|
102 |
msgid "Your Sitemap file"
|
103 |
msgstr "Ваш файл Sitemap"
|
104 |
|
105 |
+
#: google-sitemap-plugin.php:399 google-sitemap-plugin.php:401
|
|
|
106 |
msgid "is created in the site root directory."
|
107 |
msgstr "створений у кореневій директорії сайту."
|
108 |
|
109 |
+
#: google-sitemap-plugin.php:406 google-sitemap-plugin.php:408
|
110 |
+
msgid ""
|
111 |
+
"If you do not want a sitemap file to be added to Google Webmaster Tools "
|
112 |
+
"automatically, you can do it using"
|
113 |
+
msgstr ""
|
114 |
+
"Якщо ви не хочете додати файл sitemap до Google Webmaster Tools автоматично, "
|
115 |
+
"ви можете зробити це через"
|
116 |
|
117 |
+
#: google-sitemap-plugin.php:406 google-sitemap-plugin.php:408
|
|
|
118 |
msgid "this"
|
119 |
msgstr "це"
|
120 |
|
121 |
+
#: google-sitemap-plugin.php:406 google-sitemap-plugin.php:408
|
122 |
+
msgid ""
|
123 |
+
"link - sign in, choose the necessary site, go to 'Sitemaps' and fill out the "
|
124 |
+
"mandatory field"
|
125 |
+
msgstr ""
|
126 |
+
"посилання. Авторизуйтеся, виберіть сайт, виберіть 'Sitemaps' та заповніть "
|
127 |
+
"потрібне поле"
|
128 |
|
129 |
+
#: google-sitemap-plugin.php:413
|
130 |
msgid "I want to create a new sitemap file or update the existing one"
|
131 |
msgstr "Я хочу створити новий файл sitemap або оновити існуючий"
|
132 |
|
133 |
+
#: google-sitemap-plugin.php:419
|
134 |
msgid "I want to add sitemap file path in robots.txt"
|
135 |
msgstr "Я хочу додати шлях до файлу sitemap у robots.txt"
|
136 |
|
137 |
+
#: google-sitemap-plugin.php:420
|
138 |
+
msgid ""
|
139 |
+
"Since you are using multisiting, the plugin does not allow to add a sitemap "
|
140 |
+
"to robots.txt"
|
141 |
+
msgstr ""
|
142 |
+
"Оскільки ви використовуєте мультисайтинг, плагін не може додати файл sitemap "
|
143 |
+
"до robots.txt"
|
144 |
|
145 |
+
#: google-sitemap-plugin.php:426
|
146 |
msgid "I want to add sitemap file path in"
|
147 |
msgstr "Я хочу додати шлях файлу sitemap у"
|
148 |
|
149 |
+
#: google-sitemap-plugin.php:431 google-sitemap-plugin.php:577
|
150 |
+
msgid ""
|
151 |
+
"Please choose the necessary post types and taxonomies the links to which are "
|
152 |
+
"to be added to the sitemap:"
|
153 |
+
msgstr ""
|
154 |
+
"Будь ласка виберіть необхідні типи постів і таксономії, посилання на які "
|
155 |
+
"мають бути додані до файлу sitemap:"
|
156 |
|
157 |
+
#: google-sitemap-plugin.php:453
|
158 |
msgid "XML Sitemap \"Change Frequency\" parameter"
|
159 |
msgstr "Параметр XML Sitemap \"Change Frequency\""
|
160 |
|
161 |
+
#: google-sitemap-plugin.php:456
|
162 |
msgid "Always"
|
163 |
msgstr "завжди"
|
164 |
|
165 |
+
#: google-sitemap-plugin.php:457
|
166 |
msgid "Hourly"
|
167 |
msgstr "щогодини"
|
168 |
|
169 |
+
#: google-sitemap-plugin.php:458
|
170 |
msgid "Daily"
|
171 |
msgstr "щодня"
|
172 |
|
173 |
+
#: google-sitemap-plugin.php:459
|
174 |
msgid "Weekly"
|
175 |
msgstr "щотижня"
|
176 |
|
177 |
+
#: google-sitemap-plugin.php:460
|
178 |
msgid "Monthly"
|
179 |
msgstr "щомісяця"
|
180 |
|
181 |
+
#: google-sitemap-plugin.php:461
|
182 |
msgid "Yearly"
|
183 |
msgstr "щороку"
|
184 |
|
185 |
+
#: google-sitemap-plugin.php:462
|
186 |
msgid "Never"
|
187 |
msgstr "ніколи"
|
188 |
|
189 |
+
#: google-sitemap-plugin.php:464
|
190 |
+
msgid ""
|
191 |
+
"This value is used in the sitemap file and provides general information to "
|
192 |
+
"search engines. The sitemap itself is generated once and will be re-"
|
193 |
+
"generated when you create or update any post or page."
|
194 |
+
msgstr ""
|
195 |
+
"Це значення використовується у файлі sitemap та надає загальну інформацію "
|
196 |
+
"для пошукових систем. Сам файл генерується один раз і буде регенеруватись "
|
197 |
+
"при створенні або оновленні будь-якого посту чи сторінки."
|
198 |
|
199 |
+
#: google-sitemap-plugin.php:471 google-sitemap-plugin.php:602
|
|
|
200 |
msgid "Unlock premium options by upgrading to a PRO version."
|
201 |
msgstr "Відкрити додаткові опції, перейшовши на PRO версію."
|
202 |
|
203 |
+
#: google-sitemap-plugin.php:472 google-sitemap-plugin.php:603
|
|
|
204 |
msgid "Learn More"
|
205 |
msgstr "Дізнатись більше"
|
206 |
|
207 |
+
#: google-sitemap-plugin.php:475 google-sitemap-plugin.php:606
|
|
|
208 |
msgid "Go"
|
209 |
msgstr "Перейти"
|
210 |
|
211 |
+
#: google-sitemap-plugin.php:484
|
212 |
+
msgid ""
|
213 |
+
"This hosting does not support сURL, so you cannot add a sitemap file "
|
214 |
+
"automatically."
|
215 |
+
msgstr ""
|
216 |
+
"Цей хостинг не підтримує сURL, тому ви не можете автоматично додати файл "
|
217 |
+
"sitemap."
|
218 |
|
219 |
+
#: google-sitemap-plugin.php:489
|
220 |
msgid "Remote work with Google Webmaster Tools"
|
221 |
msgstr "Віддалена робота з Google Webmaster Tools"
|
222 |
|
223 |
+
#: google-sitemap-plugin.php:513
|
224 |
msgid "Log out from Google Webmaster Tools"
|
225 |
msgstr "Вийти з Google Webmaster Tools"
|
226 |
|
227 |
+
#: google-sitemap-plugin.php:515
|
228 |
msgid "I want to add this site to Google Webmaster Tools"
|
229 |
msgstr "Я хочу додати цей сайт до Google Webmaster Tools"
|
230 |
|
231 |
+
#: google-sitemap-plugin.php:516
|
232 |
msgid "I want to delete this site from Google Webmaster Tools"
|
233 |
msgstr "Я хочу видалити цей сайт з Google Webmaster Tools"
|
234 |
|
235 |
+
#: google-sitemap-plugin.php:517
|
236 |
msgid "I want to get info about this site in Google Webmaster Tools"
|
237 |
msgstr "Я хочу отримувати інформацію про цей сайт з Google Webmaster Tools"
|
238 |
|
239 |
+
#: google-sitemap-plugin.php:522
|
240 |
+
msgid ""
|
241 |
+
"In case you failed to add a sitemap to Google automatically using this "
|
242 |
+
"plugin, it is possible to do it manually"
|
243 |
+
msgstr ""
|
244 |
+
"Якщо ви не зможете автоматично додати sitemap файл в Google за допомогою "
|
245 |
+
"цього плагіну, ви завжди зможете зробити це вручну"
|
246 |
+
|
247 |
+
#: google-sitemap-plugin.php:523 google-sitemap-plugin.php:681
|
248 |
+
#: google-sitemap-plugin.php:704 google-sitemap-plugin.php:761
|
249 |
+
#: google-sitemap-plugin.php:788 google-sitemap-plugin.php:808
|
250 |
+
#: google-sitemap-plugin.php:827
|
251 |
msgid "View the Instruction"
|
252 |
msgstr "Переглянути інструкцію"
|
253 |
|
254 |
+
#: google-sitemap-plugin.php:547
|
255 |
+
msgid ""
|
256 |
+
"Please authorize via your Google Account in order to add or delete a site "
|
257 |
+
"and a sitemap file automatically or get information about this site in "
|
258 |
+
"Google Webmaster Tools."
|
259 |
+
msgstr ""
|
260 |
+
"Будь ласка, авторизуйтесь використовуючи ваш Google акаунт, щоб мати "
|
261 |
+
"можливість додавати або видаляти сайти та файл sitemap у вашому акаунті "
|
262 |
+
"автоматично або отримувати інформацію про цей сайт з Google Webmaster Tools."
|
263 |
|
264 |
+
#: google-sitemap-plugin.php:548
|
265 |
msgid "Get Authorization Code"
|
266 |
msgstr "Отримати Код Авторизації"
|
267 |
|
268 |
+
#: google-sitemap-plugin.php:551
|
269 |
msgid "Authorize"
|
270 |
msgstr "Авторизуватись"
|
271 |
|
272 |
+
#: google-sitemap-plugin.php:554
|
273 |
msgid "Invalid authorization code. Please, try again."
|
274 |
msgstr "Невірний код авторизації. Будь ласка, спробуйте ще раз."
|
275 |
|
276 |
+
#: google-sitemap-plugin.php:563 google-sitemap-plugin.php:595
|
|
|
277 |
msgid "Save Changes"
|
278 |
msgstr "Зберегти зміни"
|
279 |
|
280 |
+
#: google-sitemap-plugin.php:584
|
281 |
msgid "Show URL for pages"
|
282 |
msgstr "Показати посилання для сторінок"
|
283 |
|
284 |
+
#: google-sitemap-plugin.php:590
|
285 |
msgid "Example of site pages' tree"
|
286 |
msgstr "Приклад дерева сторінок сайту"
|
287 |
|
288 |
+
#: google-sitemap-plugin.php:655
|
289 |
#, php-format
|
290 |
msgid "I want to get info about site %s in Google Webmaster Tools"
|
291 |
msgstr "Я хочу отримати інформацію про сайт %s в Google Webmaster Tools"
|
292 |
|
293 |
+
#: google-sitemap-plugin.php:664 google-sitemap-plugin.php:734
|
|
|
294 |
msgid "This site is not added to the Google Webmaster Tools."
|
295 |
msgstr "Даний сайт не додано до Google Webmaster Tools."
|
296 |
|
297 |
+
#: google-sitemap-plugin.php:668
|
298 |
msgid "This site is added to the Google Webmaster Tools."
|
299 |
msgstr "Цей сайт додано до Google Webmaster Tools."
|
300 |
|
301 |
+
#: google-sitemap-plugin.php:669
|
302 |
msgid "Site URL:"
|
303 |
msgstr "URL сайту:"
|
304 |
|
305 |
+
#: google-sitemap-plugin.php:670
|
306 |
msgid "Site verification:"
|
307 |
msgstr "Верифікація сайту:"
|
308 |
|
309 |
+
#: google-sitemap-plugin.php:670
|
310 |
msgid "verified"
|
311 |
msgstr "верифіковано"
|
312 |
|
313 |
+
#: google-sitemap-plugin.php:670
|
314 |
msgid "not verified"
|
315 |
msgstr "не верифіковано"
|
316 |
|
317 |
+
#: google-sitemap-plugin.php:679 google-sitemap-plugin.php:806
|
318 |
+
msgid ""
|
319 |
+
"An unexpected error occurred when verifying site in the Google Webmaster "
|
320 |
+
"Tools."
|
321 |
msgstr "Помилка при перевірці сайту в Google Webmaster Tools."
|
322 |
|
323 |
+
#: google-sitemap-plugin.php:681 google-sitemap-plugin.php:788
|
324 |
+
#: google-sitemap-plugin.php:808
|
|
|
325 |
msgid "The site couldn't be verified. Please, verify the site manually"
|
326 |
msgstr "Сайт неможна перевірити. Будь ласка, перевірте його вручну"
|
327 |
|
328 |
+
#: google-sitemap-plugin.php:694
|
329 |
msgid "The sitemap file is not added to the Google Webmaster Tools."
|
330 |
msgstr "Файл sitemap не додано до Google Webmaster Tools."
|
331 |
|
332 |
+
#: google-sitemap-plugin.php:697
|
333 |
msgid "The sitemap file is added to the Google Webmaster Tools."
|
334 |
msgstr "Файл sitemap додано до Google Webmaster Tools."
|
335 |
|
336 |
+
#: google-sitemap-plugin.php:699
|
337 |
+
msgid ""
|
338 |
+
"The sitemap file is added to the Google Webmaster Tools, but has some errors "
|
339 |
+
"or warnings."
|
340 |
+
msgstr ""
|
341 |
+
"Файл sitemap додано до акаунту Google Webmaster Tools, але під час додавання "
|
342 |
+
"виникли помилки."
|
343 |
|
344 |
+
#: google-sitemap-plugin.php:699
|
345 |
msgid "Please, see them in the Google Webmaster Tools."
|
346 |
msgstr "Перегляньте їх в Google Webmaster Tools."
|
347 |
|
348 |
+
#: google-sitemap-plugin.php:702
|
349 |
msgid "Sitemap URL:"
|
350 |
msgstr "URL Sitemap:"
|
351 |
|
352 |
+
#: google-sitemap-plugin.php:704
|
353 |
+
msgid ""
|
354 |
+
"When checking the sitemap file an unexpected error occurred. Please, check "
|
355 |
+
"the sitemap file manually"
|
356 |
msgstr "Помилка при перевірці файлу sitemap. Будь ласка, перевірте файл вручну"
|
357 |
|
358 |
+
#: google-sitemap-plugin.php:716
|
359 |
#, php-format
|
360 |
msgid "I want to delete site %s from Google Webmaster Tools"
|
361 |
msgstr "Я хочу видалити сайт %s з Google Webmaster Tools"
|
362 |
|
363 |
+
#: google-sitemap-plugin.php:729
|
364 |
msgid "This site has been successfully deleted from Google Webmaster Tools"
|
365 |
msgstr "Даний сайт було видалено з Google Webmaster Tools"
|
366 |
|
367 |
+
#: google-sitemap-plugin.php:748
|
368 |
#, php-format
|
369 |
msgid "I want to add site %s in Google Webmaster Tools"
|
370 |
msgstr "Я хочу додати сайт %s до Google Webmaster Tools"
|
371 |
|
372 |
+
#: google-sitemap-plugin.php:753
|
373 |
msgid "The site is added to the Google Webmaster Tools."
|
374 |
msgstr "Сайт додано до Google Webmaster Tools."
|
375 |
|
376 |
+
#: google-sitemap-plugin.php:759
|
377 |
+
msgid ""
|
378 |
+
"When you add a site in the Google Webmaster Tools unexpected error occurred."
|
379 |
msgstr "Помилка при додаванні сайту до Google Webmaster Tools."
|
380 |
|
381 |
+
#: google-sitemap-plugin.php:761
|
382 |
msgid "The site couldn't be added. Please, add the site manually"
|
383 |
msgstr "Неможна додати сайт. Будь ласка, додайте його вручну"
|
384 |
|
385 |
+
#: google-sitemap-plugin.php:777
|
386 |
msgid "Verification code has been successfully received and added to the site."
|
387 |
msgstr "Код верифікації успішно отримано та додано на сайт."
|
388 |
|
389 |
+
#: google-sitemap-plugin.php:779
|
390 |
+
msgid ""
|
391 |
+
"Verification code has been successfully received but has not been added to "
|
392 |
+
"the site."
|
393 |
msgstr "Код верифікації успішно отримано, але не додано на сайт."
|
394 |
|
395 |
+
#: google-sitemap-plugin.php:786
|
396 |
+
msgid ""
|
397 |
+
"An error has occurred when receiving the verification code site in the "
|
398 |
+
"Google Webmaster."
|
399 |
msgstr "Помилка при отриманні верифікаційного коду Google Webmaster."
|
400 |
|
401 |
+
#: google-sitemap-plugin.php:800
|
402 |
msgid "The site has been successfully verified in the Google Webmaster Tools."
|
403 |
msgstr "Сайт успішно перевірено в Google Webmaster Tools."
|
404 |
|
405 |
+
#: google-sitemap-plugin.php:819
|
406 |
+
msgid ""
|
407 |
+
"The sitemap file has been successfully added to the Google Webmaster Tools."
|
408 |
msgstr "Файл sitemap успішно додано до Google Webmaster Tools."
|
409 |
|
410 |
+
#: google-sitemap-plugin.php:825
|
411 |
+
msgid ""
|
412 |
+
"When you add a sitemap file in the Google Webmaster Tools unexpected error "
|
413 |
+
"occurred."
|
414 |
msgstr "Помилка при додаванні файлу sitemap до Google Webmaster Tools."
|
415 |
|
416 |
+
#: google-sitemap-plugin.php:827
|
417 |
+
msgid ""
|
418 |
+
"The sitemap file couldn't be added. Please, add the sitemap file manually"
|
419 |
msgstr "Файл sitemap не може бути доданий. Будь ласка, додайте його вручну"
|
420 |
|
421 |
+
#: google-sitemap-plugin.php:830
|
422 |
#, php-format
|
423 |
msgid "Error 404. The sitemap file %s not found."
|
424 |
msgstr "Помилка 404. Файл sitemap %s не знайдено."
|
425 |
|
426 |
+
#: google-sitemap-plugin.php:833
|
427 |
msgid "The sitemap file not found."
|
428 |
msgstr "Файл sitemap не знайдено."
|
429 |
|
430 |
+
#: google-sitemap-plugin.php:901
|
431 |
msgid "Support"
|
432 |
msgstr "Підтримка"
|
433 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://bestwebsoft.com/donate/
|
|
4 |
Tags: add posts to sitemap, add pages to sitemap, add sitemap, add site to google webmaster tools, create a map, google, googel, googgle, gogle, gogole, google sitemap, google sitemap plugin, google webmaster tools, sitemep, sitemap, sitemaps, site mep, site map, sitemap file path, update sitemap
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 4.2.2
|
7 |
-
Stable tag: 2.9.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -102,6 +102,10 @@ Please make sure that the problem hasn't been discussed yet on our forum (http:/
|
|
102 |
|
103 |
== Changelog ==
|
104 |
|
|
|
|
|
|
|
|
|
105 |
= V2.9.8 - 04.06.2015 =
|
106 |
* NEW : Allows to add links to Post categories and Post tags to the sitemap file.
|
107 |
|
@@ -237,6 +241,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (http:/
|
|
237 |
|
238 |
== Upgrade Notice ==
|
239 |
|
|
|
|
|
|
|
240 |
= V2.9.8 =
|
241 |
Allows to add links to Post categories and Post tags to the sitemap file.
|
242 |
|
4 |
Tags: add posts to sitemap, add pages to sitemap, add sitemap, add site to google webmaster tools, create a map, google, googel, googgle, gogle, gogole, google sitemap, google sitemap plugin, google webmaster tools, sitemep, sitemap, sitemaps, site mep, site map, sitemap file path, update sitemap
|
5 |
Requires at least: 3.1
|
6 |
Tested up to: 4.2.2
|
7 |
+
Stable tag: 2.9.9
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
102 |
|
103 |
== Changelog ==
|
104 |
|
105 |
+
= V2.9.9 - 10.07.2015 =
|
106 |
+
* Bigfix : We fixed bug with editing of file robots.txt.
|
107 |
+
* NEW : Ability to restore default settings.
|
108 |
+
|
109 |
= V2.9.8 - 04.06.2015 =
|
110 |
* NEW : Allows to add links to Post categories and Post tags to the sitemap file.
|
111 |
|
241 |
|
242 |
== Upgrade Notice ==
|
243 |
|
244 |
+
= V2.9.9 =
|
245 |
+
We fixed bug with editing of file robots.txt. Ability to restore default settings.
|
246 |
+
|
247 |
= V2.9.8 =
|
248 |
Allows to add links to Post categories and Post tags to the sitemap file.
|
249 |
|