Version Description
- 18.05.2015 =
- Bugfix : We fixed the bug with checking captcha when deleted 'recaptcha_widget_div'.
- Bugfix : We fixed the bug with using deprecated jQuery methods (thanks to Junio Vitorino, github.com/juniovitorino).
- NEW : The Arabic language file is added.
- NEW : The German language file is added.
- NEW : The Hindi language file is added.
- Update : We updated all functionality for wordpress 4.2.2.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Google Captcha (reCAPTCHA) by BestWebSoft |
Version | 1.16 |
Comparing to | |
See all releases |
Code changes from version 1.15 to 1.16
- bws_menu/bws_functions.php +136 -104
- bws_menu/bws_menu.php +21 -5
- bws_menu/css/general_style.css +16 -6
- bws_menu/css/general_style_wp_before_3.8.css +16 -6
- bws_menu/icons/bws-google-analytics.png +0 -0
- bws_menu/icons/bws-google-maps.png +0 -0
- bws_menu/icons/bws-smtp.png +0 -0
- bws_menu/icons/contact-form-multi.png +0 -0
- bws_menu/icons/db-manager.png +0 -0
- bws_menu/icons/social-buttons-pack.png +0 -0
- bws_menu/icons/subscriber.png +0 -0
- bws_menu/icons/zendesk-help-center.png +0 -0
- bws_menu/js/bws_tooltip.js +79 -0
- bws_menu/languages/bestwebsoft-de_DE.mo +0 -0
- bws_menu/languages/bestwebsoft-de_DE.po +243 -179
- bws_menu/languages/bestwebsoft-fr_FR.mo +0 -0
- bws_menu/languages/bestwebsoft-fr_FR.po +297 -226
- bws_menu/languages/bestwebsoft-it_IT.mo +0 -0
- bws_menu/languages/bestwebsoft-it_IT.po +245 -236
- bws_menu/languages/bestwebsoft-ja.mo +0 -0
- bws_menu/languages/bestwebsoft-ja.po +241 -173
- bws_menu/languages/bestwebsoft-pt_BR.mo +0 -0
- bws_menu/languages/bestwebsoft-pt_BR.po +242 -178
- bws_menu/languages/bestwebsoft-ru_RU.mo +0 -0
- bws_menu/languages/bestwebsoft-ru_RU.po +234 -161
- bws_menu/languages/bestwebsoft-sr_RS.mo +0 -0
- bws_menu/languages/bestwebsoft-sr_RS.po +241 -170
- bws_menu/languages/bestwebsoft-sv_SE.mo +0 -0
- bws_menu/languages/bestwebsoft-sv_SE.po +242 -173
- bws_menu/languages/bestwebsoft-uk.mo +0 -0
- bws_menu/languages/bestwebsoft-uk.po +268 -230
- google-captcha.php +16 -7
- js/script.js +22 -9
- languages/google_captcha-ar.mo +0 -0
- languages/google_captcha-ar.po +211 -0
- languages/google_captcha-de_DE.mo +0 -0
- languages/google_captcha-de_DE.po +254 -0
- languages/google_captcha-hi.mo +0 -0
- languages/google_captcha-hi.po +422 -0
- readme.txt +23 -4
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 ) {
|
@@ -38,11 +38,13 @@ if ( ! function_exists ( 'bws_add_general_menu' ) ) {
|
|
38 |
require_once( dirname( __FILE__ ) . '/bws_menu.php' );
|
39 |
} else if ( ! isset( $bstwbsftwppdtplgns_added_menu ) ) {
|
40 |
$all_plugins = get_plugins();
|
41 |
-
$plugin_with_newer_menu = $base;
|
42 |
foreach ( $bstwbsftwppdtplgns_options['bws_menu']['version'] as $key => $value ) {
|
43 |
if ( array_key_exists( $key, $all_plugins ) ) {
|
44 |
if ( $bws_menu_version < $value && is_plugin_active( $base ) ) {
|
45 |
-
$plugin_with_newer_menu
|
|
|
|
|
|
|
46 |
}
|
47 |
} else {
|
48 |
unset( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $key ] );
|
@@ -52,6 +54,8 @@ if ( ! function_exists ( 'bws_add_general_menu' ) ) {
|
|
52 |
update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
53 |
}
|
54 |
}
|
|
|
|
|
55 |
$plugin_with_newer_menu = explode( '/', $plugin_with_newer_menu );
|
56 |
$wp_content_dir = defined( 'WP_CONTENT_DIR' ) ? basename( WP_CONTENT_DIR ) : 'wp-content';
|
57 |
|
@@ -84,7 +88,7 @@ if ( ! function_exists ( 'bws_wp_version_check' ) ) {
|
|
84 |
$plugin_info['Name'],
|
85 |
__( 'requires', 'bestwebsoft' ),
|
86 |
$require_wp,
|
87 |
-
__( 'or higher, that is why it has been deactivated! Please upgrade WordPress and try again.', 'bestwebsoft' ),
|
88 |
__( 'Back to the WordPress', 'bestwebsoft' ),
|
89 |
$admin_url,
|
90 |
__( 'Plugins page', 'bestwebsoft' )
|
@@ -96,7 +100,7 @@ if ( ! function_exists ( 'bws_wp_version_check' ) ) {
|
|
96 |
}
|
97 |
|
98 |
if ( ! function_exists( 'bws_plugin_banner' ) ) {
|
99 |
-
function bws_plugin_banner( $plugin_info, $this_banner_prefix, $link_slug, $link_key, $link_pn, $
|
100 |
global $wp_version, $bstwbsftwppdtplgns_cookie_add, $bstwbsftwppdtplgns_banner_array;
|
101 |
|
102 |
if ( empty( $bstwbsftwppdtplgns_banner_array ) ) {
|
@@ -104,7 +108,11 @@ if ( ! function_exists( 'bws_plugin_banner' ) ) {
|
|
104 |
require_once( dirname( __FILE__ ) . '/bws_menu.php' );
|
105 |
bws_get_banner_array();
|
106 |
}
|
107 |
-
|
|
|
|
|
|
|
|
|
108 |
if ( ! function_exists( 'is_plugin_active' ) )
|
109 |
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
110 |
|
@@ -136,15 +144,15 @@ if ( ! function_exists( 'bws_plugin_banner' ) ) {
|
|
136 |
<div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
|
137 |
<div class="<?php echo $this_banner_prefix; ?>_message bws_banner_on_plugin_page" style="display: none;">
|
138 |
<img class="<?php echo $this_banner_prefix; ?>_close_icon close_icon" title="" src="<?php echo plugins_url( 'images/close_banner.png', __FILE__ ); ?>" alt=""/>
|
139 |
-
<div class="
|
140 |
-
<
|
141 |
-
</div>
|
142 |
<div class="text"><?php
|
143 |
_e( 'It’s time to upgrade your', 'bestwebsoft' ); ?> <strong><?php echo $plugin_info['Name']; ?> plugin</strong> <?php _e( 'to', 'bestwebsoft' ); ?> <strong>PRO</strong> <?php _e( 'version!', 'bestwebsoft' ); ?><br />
|
144 |
<span><?php _e( 'Extend standard plugin functionality with new great options.', 'bestwebsoft' ); ?></span>
|
145 |
</div>
|
146 |
-
<div class="
|
147 |
-
<
|
148 |
</div>
|
149 |
</div>
|
150 |
</div>
|
@@ -184,7 +192,7 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
|
|
184 |
if ( strlen( $bws_license_key ) != 18 ) {
|
185 |
$result['error'] = __( "Wrong license key", 'bestwebsoft' );
|
186 |
} else {
|
187 |
-
$bws_license_plugin = stripslashes( esc_html( $_POST['bws_license_plugin'] ) );
|
188 |
if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) && $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - (24 * 60 * 60) ) ) {
|
189 |
$bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] = $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] + 1;
|
190 |
} else {
|
@@ -318,7 +326,7 @@ if ( ! function_exists( 'bws_go_pro_tab_check' ) ) {
|
|
318 |
}
|
319 |
|
320 |
if ( ! function_exists( 'bws_go_pro_tab' ) ) {
|
321 |
-
function bws_go_pro_tab( $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated = false ) {
|
322 |
global $wp_version, $bstwbsftwppdtplgns_options;
|
323 |
$bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : "";
|
324 |
if ( $pro_plugin_is_activated ) { ?>
|
@@ -344,12 +352,15 @@ if ( ! function_exists( 'bws_go_pro_tab' ) ) {
|
|
344 |
<?php _e( '(your username is the email you specify when purchasing the product).', 'bestwebsoft' ); ?>
|
345 |
</span>
|
346 |
</p>
|
347 |
-
<?php if (
|
|
|
|
|
348 |
'5' < $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] &&
|
349 |
$bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - ( 24 * 60 * 60 ) ) ) { ?>
|
350 |
<p>
|
351 |
<input disabled="disabled" type="text" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
|
352 |
<input disabled="disabled" type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
|
|
|
353 |
</p>
|
354 |
<p><?php _e( "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually.", 'bestwebsoft' ); ?></p>
|
355 |
<?php } else { ?>
|
@@ -358,16 +369,65 @@ if ( ! function_exists( 'bws_go_pro_tab' ) ) {
|
|
358 |
<input type="hidden" name="bws_license_plugin" value="<?php echo $bws_license_plugin; ?>" />
|
359 |
<input type="hidden" name="bws_license_submit" value="submit" />
|
360 |
<input type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
361 |
<?php wp_nonce_field( $plugin_basename, 'bws_license_nonce_name' ); ?>
|
362 |
</p>
|
363 |
<?php } ?>
|
364 |
</form>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
365 |
<?php }
|
366 |
}
|
367 |
}
|
368 |
|
369 |
if ( ! function_exists( 'bws_check_pro_license' ) ) {
|
370 |
-
function bws_check_pro_license( $plugin_basename ) {
|
371 |
global $wp_version, $bstwbsftwppdtplgns_options;
|
372 |
$result = array();
|
373 |
|
@@ -398,19 +458,33 @@ if ( ! function_exists( 'bws_check_pro_license' ) ) {
|
|
398 |
if ( is_array( $response ) && !empty( $response ) ) {
|
399 |
foreach ( $response as $key => $value ) {
|
400 |
if ( "wrong_license_key" == $value->package ) {
|
401 |
-
$result['error'] = __( 'Wrong license key', 'bestwebsoft' );
|
402 |
} else if ( "wrong_domain" == $value->package ) {
|
403 |
-
$result['error'] = __( 'This license key is bind to another site', 'bestwebsoft' );
|
404 |
} else if ( "time_out" == $value->package ) {
|
405 |
$result['message'] = __( 'This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license.', 'bestwebsoft' );
|
406 |
} elseif ( "you_are_banned" == $value->package ) {
|
407 |
$result['error'] = __( "Unfortunately, you have exceeded the number of available tries.", 'bestwebsoft' );
|
|
|
|
|
408 |
}
|
409 |
if ( empty( $result['message'] ) && empty( $result['error'] ) ) {
|
410 |
-
if ( isset( $value->
|
411 |
-
$result['message'] = __( 'The license key is valid.
|
412 |
else
|
413 |
$result['message'] = __( 'The license key is valid.', 'bestwebsoft' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
414 |
}
|
415 |
if ( empty( $result['error'] ) ) {
|
416 |
if ( $bstwbsftwppdtplgns_options[ $plugin_basename ] != $license_key ) {
|
@@ -459,19 +533,39 @@ if ( ! function_exists ( 'bws_check_pro_license_form' ) ) {
|
|
459 |
}
|
460 |
|
461 |
if ( ! function_exists ( 'bws_plugin_update_row' ) ) {
|
462 |
-
function bws_plugin_update_row( $plugin_key ) {
|
463 |
global $bstwbsftwppdtplgns_options;
|
464 |
$wp_list_table = _get_list_table( 'WP_Plugins_List_Table' );
|
465 |
if ( isset( $bstwbsftwppdtplgns_options['wrong_license_key'][ $plugin_key ] ) ) {
|
466 |
echo '<tr class="plugin-update-tr">
|
467 |
<td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
|
468 |
-
<div class="update-message" style="background-color: #FFEBE8; border-color: #CC0000;">' . __( 'WARNING:
|
469 |
</td>
|
470 |
</tr>';
|
471 |
} elseif ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) && strtotime( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) < strtotime( date("m/d/Y") ) ) {
|
472 |
echo '<tr class="plugin-update-tr">
|
473 |
<td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
|
474 |
-
<div class="update-message" style="color: #8C0000;">'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
475 |
</td>
|
476 |
</tr>';
|
477 |
}
|
@@ -505,10 +599,10 @@ if ( ! function_exists ( 'bws_plugin_banner_timeout' ) ) {
|
|
505 |
<div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
|
506 |
<div class="<?php echo $plugin_prefix; ?>_message bws_banner_on_plugin_page" style="display:none;">
|
507 |
<img class="<?php echo $plugin_prefix; ?>_close_icon close_icon" title="" src="<?php echo plugins_url( 'images/close_banner.png', __FILE__ ); ?>" alt=""/>
|
508 |
-
<div class="text"><?php _e( "You license for", 'bestwebsoft' ); ?> <strong><?php echo $plugin_name; ?></strong> <?php echo __( "expires on", 'bestwebsoft' ) . ' ' . $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] . ' ' . __( "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES.", 'bestwebsoft' ); ?> <a target="_new" href="http://support.bestwebsoft.com/entries/53487136"><?php _e( "Learn more", 'bestwebsoft' ); ?></a></div>
|
509 |
<div class="icon">
|
510 |
<img title="" src="<?php echo $banner_url; ?>" alt="" />
|
511 |
</div>
|
|
|
512 |
</div>
|
513 |
</div>
|
514 |
<?php }
|
@@ -522,13 +616,13 @@ if ( ! function_exists ( 'bws_plugin_init' ) ) {
|
|
522 |
}
|
523 |
}
|
524 |
|
525 |
-
if ( ! function_exists ( '
|
526 |
-
function
|
527 |
global $wp_version;
|
528 |
if ( $wp_version < 3.8 )
|
529 |
-
wp_enqueue_style( 'bws-admin-
|
530 |
else
|
531 |
-
wp_enqueue_style( 'bws-admin-
|
532 |
|
533 |
if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" ) {
|
534 |
wp_enqueue_style( 'bws_menu_style', plugins_url( 'css/style.css', __FILE__ ) );
|
@@ -558,14 +652,14 @@ if ( ! function_exists ( 'bws_admin_head' ) ) {
|
|
558 |
/**
|
559 |
* Tooltip block
|
560 |
*/
|
561 |
-
if ( ! function_exists( '
|
562 |
-
function
|
563 |
-
new
|
564 |
}
|
565 |
}
|
566 |
|
567 |
-
if ( ! class_exists( '
|
568 |
-
class
|
569 |
private $tooltip_args;
|
570 |
|
571 |
public function __construct( $tooltip_args ) {
|
@@ -613,7 +707,7 @@ if ( ! class_exists( 'BWS_add_admin_tooltip' ) ) {
|
|
613 |
}
|
614 |
/* Check entered data */
|
615 |
if ( false === $tooltip_args['tooltip_id'] || false === $tooltip_args['css_selector'] || ( false === $tooltip_args['actions']['click'] && false === $tooltip_args['actions']['onload'] ) ) {
|
616 |
-
/* if not enough data to output a tooltip */
|
617 |
return;
|
618 |
} else {
|
619 |
/* check position */
|
@@ -654,79 +748,17 @@ if ( ! class_exists( 'BWS_add_admin_tooltip' ) ) {
|
|
654 |
* Display tooltip
|
655 |
*/
|
656 |
public function add_scripts() {
|
|
|
|
|
|
|
|
|
|
|
657 |
$tooltip_args = $this->tooltip_args; ?>
|
658 |
<script type="text/javascript">
|
659 |
(function($) {
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
pointer_options = $.extend(pointer_options, {
|
664 |
-
buttons: function(event, t) {
|
665 |
-
var button;
|
666 |
-
/* check and add dismiss-type buttons */
|
667 |
-
for( var but in pointer_buttons ) {
|
668 |
-
if ( typeof pointer_buttons[ but ]['type'] != 'undefined' && pointer_buttons[ but ]['type'] == 'dismiss' && typeof pointer_buttons[ but ]['text'] != 'undefined' && pointer_buttons[ but ]['text'] != '' ) {
|
669 |
-
button += '<a style="margin:0px 5px 2px;" class="button-secondary">' + pointer_buttons[ but ]['text'] + '</a>';
|
670 |
-
}
|
671 |
-
}
|
672 |
-
button = jQuery( button );
|
673 |
-
button.bind('click.pointer', function () {
|
674 |
-
t.element.pointer('close');
|
675 |
-
});
|
676 |
-
return button;
|
677 |
-
},
|
678 |
-
/* add ajax dismiss functionality */
|
679 |
-
close : $.proxy(function () {
|
680 |
-
if ( pointer_options['actions']['onload'] == true ) {
|
681 |
-
$.post( ajaxurl, this );
|
682 |
-
}
|
683 |
-
}, {
|
684 |
-
pointer: pointer_options['tooltip_id'],
|
685 |
-
action: 'dismiss-wp-pointer'
|
686 |
-
})
|
687 |
-
});
|
688 |
-
/* function to display pointer */
|
689 |
-
function displayPointer( cssSelector ) {
|
690 |
-
cssSelector.pointer(pointer_options).pointer({
|
691 |
-
pointerClass: 'wp-pointer ' + pointer_options["tooltip_id"],
|
692 |
-
content: pointer_options['content'],
|
693 |
-
position:
|
694 |
-
{
|
695 |
-
edge: pointer_options['position']['edge'],
|
696 |
-
align: pointer_options['position']['align'],
|
697 |
-
},
|
698 |
-
}).pointer('open');
|
699 |
-
/* display buttons that are not type of dismiss */
|
700 |
-
for ( var but in pointer_buttons ) {
|
701 |
-
if ( typeof pointer_buttons[ but ]['type'] != 'undefined' && pointer_buttons[ but ]['type'] != 'dismiss' && typeof pointer_buttons[ but ]['text'] != 'undefined' && pointer_buttons[ but ]['text'] != '' ) {
|
702 |
-
$( '.' + pointer_options['tooltip_id'] + ' .button-secondary').first().before( '<a class="button-primary" style="margin-right: 5px;" ' +
|
703 |
-
( ( pointer_buttons[ but ]['type'] == 'link' && typeof pointer_buttons[ but ]['link'] != 'undefined' && pointer_buttons[ but ]['link'] != '') ? 'target="_blank" href="' + pointer_buttons[ but ]['link'] + '"' : '' )
|
704 |
-
+ '>' + pointer_buttons[ but ]['text'] + '</a>' );
|
705 |
-
};
|
706 |
-
}
|
707 |
-
/* adjust position of pointer */
|
708 |
-
topPos = parseInt( $( "." + pointer_options["tooltip_id"] ).css("top") ) + parseInt( pointer_options['position']['pos-top'] );
|
709 |
-
leftPos = parseInt( $( "." + pointer_options["tooltip_id"] ).css("left") ) + parseInt( pointer_options['position']['pos-left'] );
|
710 |
-
if ( pointer_options['position']['align'] == 'left' ) {
|
711 |
-
leftPos += cssSelector.outerWidth()/2;
|
712 |
-
};
|
713 |
-
$( "." + pointer_options["tooltip_id"] ).css({ "top": topPos + "px", "left": leftPos + "px" });
|
714 |
-
/* adjust z-index if need */
|
715 |
-
pointerZindex = parseInt( $( "." + pointer_options["tooltip_id"] ).css("z-index") );
|
716 |
-
if ( pointerZindex != pointer_options['position']['zindex'] ) {
|
717 |
-
$( "." + pointer_options["tooltip_id"] ).css({ "z-index": pointer_options['position']['zindex'] });
|
718 |
-
}
|
719 |
-
}
|
720 |
-
/* display pointer for the first time */
|
721 |
-
if ( pointer_options['actions']['onload'] ) {
|
722 |
-
displayPointer( $( pointer_options['css_selector'] ) );
|
723 |
-
}
|
724 |
-
/* display pointer when clicked on selector */
|
725 |
-
if ( pointer_options['actions']['click'] ) {
|
726 |
-
$( pointer_options['css_selector'] ).click( function () {
|
727 |
-
displayPointer( $( this ) );
|
728 |
-
});
|
729 |
-
}
|
730 |
})(jQuery);
|
731 |
</script>
|
732 |
<?php }
|
@@ -734,5 +766,5 @@ if ( ! class_exists( 'BWS_add_admin_tooltip' ) ) {
|
|
734 |
}
|
735 |
|
736 |
add_action( 'admin_init', 'bws_plugin_init' );
|
737 |
-
add_action( 'admin_enqueue_scripts', '
|
738 |
add_action( 'admin_head', 'bws_admin_head' );
|
1 |
<?php
|
2 |
/*
|
3 |
* General functions for BestWebSoft plugins
|
4 |
+
* Version: 1.0.9
|
5 |
*/
|
6 |
if ( ! function_exists ( 'bws_add_general_menu' ) ) {
|
7 |
function bws_add_general_menu( $base ) {
|
38 |
require_once( dirname( __FILE__ ) . '/bws_menu.php' );
|
39 |
} else if ( ! isset( $bstwbsftwppdtplgns_added_menu ) ) {
|
40 |
$all_plugins = get_plugins();
|
|
|
41 |
foreach ( $bstwbsftwppdtplgns_options['bws_menu']['version'] as $key => $value ) {
|
42 |
if ( array_key_exists( $key, $all_plugins ) ) {
|
43 |
if ( $bws_menu_version < $value && is_plugin_active( $base ) ) {
|
44 |
+
if ( ! isset( $plugin_with_newer_menu ) )
|
45 |
+
$plugin_with_newer_menu = $key;
|
46 |
+
elseif ( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $plugin_with_newer_menu ] < $bstwbsftwppdtplgns_options['bws_menu']['version'][ $key ] )
|
47 |
+
$plugin_with_newer_menu = $key;
|
48 |
}
|
49 |
} else {
|
50 |
unset( $bstwbsftwppdtplgns_options['bws_menu']['version'][ $key ] );
|
54 |
update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
55 |
}
|
56 |
}
|
57 |
+
if ( ! isset( $plugin_with_newer_menu ) )
|
58 |
+
$plugin_with_newer_menu = $base;
|
59 |
$plugin_with_newer_menu = explode( '/', $plugin_with_newer_menu );
|
60 |
$wp_content_dir = defined( 'WP_CONTENT_DIR' ) ? basename( WP_CONTENT_DIR ) : 'wp-content';
|
61 |
|
88 |
$plugin_info['Name'],
|
89 |
__( 'requires', 'bestwebsoft' ),
|
90 |
$require_wp,
|
91 |
+
__( 'or higher, that is why it has been deactivated! Please upgrade WordPress and try again.', 'bestwebsoft' ),
|
92 |
__( 'Back to the WordPress', 'bestwebsoft' ),
|
93 |
$admin_url,
|
94 |
__( 'Plugins page', 'bestwebsoft' )
|
100 |
}
|
101 |
|
102 |
if ( ! function_exists( 'bws_plugin_banner' ) ) {
|
103 |
+
function bws_plugin_banner( $plugin_info, $this_banner_prefix, $link_slug, $link_key, $link_pn, $banner_url_or_slug ) {
|
104 |
global $wp_version, $bstwbsftwppdtplgns_cookie_add, $bstwbsftwppdtplgns_banner_array;
|
105 |
|
106 |
if ( empty( $bstwbsftwppdtplgns_banner_array ) ) {
|
108 |
require_once( dirname( __FILE__ ) . '/bws_menu.php' );
|
109 |
bws_get_banner_array();
|
110 |
}
|
111 |
+
|
112 |
+
if ( false == strrpos( $banner_url_or_slug, '/' ) ) {
|
113 |
+
$banner_url_or_slug = '//ps.w.org/' . $banner_url_or_slug . '/assets/icon-128x128.png';
|
114 |
+
}
|
115 |
+
|
116 |
if ( ! function_exists( 'is_plugin_active' ) )
|
117 |
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
118 |
|
144 |
<div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
|
145 |
<div class="<?php echo $this_banner_prefix; ?>_message bws_banner_on_plugin_page" style="display: none;">
|
146 |
<img class="<?php echo $this_banner_prefix; ?>_close_icon close_icon" title="" src="<?php echo plugins_url( 'images/close_banner.png', __FILE__ ); ?>" alt=""/>
|
147 |
+
<div class="icon">
|
148 |
+
<img title="" src="<?php echo esc_attr( $banner_url_or_slug ); ?>" alt="" />
|
149 |
+
</div>
|
150 |
<div class="text"><?php
|
151 |
_e( 'It’s time to upgrade your', 'bestwebsoft' ); ?> <strong><?php echo $plugin_info['Name']; ?> plugin</strong> <?php _e( 'to', 'bestwebsoft' ); ?> <strong>PRO</strong> <?php _e( 'version!', 'bestwebsoft' ); ?><br />
|
152 |
<span><?php _e( 'Extend standard plugin functionality with new great options.', 'bestwebsoft' ); ?></span>
|
153 |
</div>
|
154 |
+
<div class="button_div">
|
155 |
+
<a class="button" target="_blank" href="http://bestwebsoft.com/products/<?php echo $link_slug; ?>/?k=<?php echo $link_key; ?>&pn=<?php echo $link_pn; ?>&v=<?php echo $plugin_info["Version"]; ?>&wp_v=<?php echo $wp_version; ?>"><?php _e( 'Learn More', 'bestwebsoft' ); ?></a>
|
156 |
</div>
|
157 |
</div>
|
158 |
</div>
|
192 |
if ( strlen( $bws_license_key ) != 18 ) {
|
193 |
$result['error'] = __( "Wrong license key", 'bestwebsoft' );
|
194 |
} else {
|
195 |
+
$bws_license_plugin = stripslashes( esc_html( $_POST['bws_license_plugin'] ) );
|
196 |
if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) && $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - (24 * 60 * 60) ) ) {
|
197 |
$bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] = $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] + 1;
|
198 |
} else {
|
326 |
}
|
327 |
|
328 |
if ( ! function_exists( 'bws_go_pro_tab' ) ) {
|
329 |
+
function bws_go_pro_tab( $plugin_info, $plugin_basename, $page, $pro_page, $bws_license_plugin, $link_slug, $link_key, $link_pn, $pro_plugin_is_activated = false, $trial_days_number = false ) {
|
330 |
global $wp_version, $bstwbsftwppdtplgns_options;
|
331 |
$bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : "";
|
332 |
if ( $pro_plugin_is_activated ) { ?>
|
352 |
<?php _e( '(your username is the email you specify when purchasing the product).', 'bestwebsoft' ); ?>
|
353 |
</span>
|
354 |
</p>
|
355 |
+
<?php if ( $trial_days_number !== false )
|
356 |
+
$trial_days_number = __( 'or', 'bestwebsoft' ) . ' <a href="http://bestwebsoft.com/products/' . $link_slug . '/trial/" target="_blank">' . sprintf( __( 'Start Your Free %s-Day Trial Now', 'bestwebsoft' ), $trial_days_number ) . '</a>';
|
357 |
+
if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] ) &&
|
358 |
'5' < $bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['count'] &&
|
359 |
$bstwbsftwppdtplgns_options['go_pro'][ $bws_license_plugin ]['time'] > ( time() - ( 24 * 60 * 60 ) ) ) { ?>
|
360 |
<p>
|
361 |
<input disabled="disabled" type="text" name="bws_license_key" value="<?php echo $bws_license_key; ?>" />
|
362 |
<input disabled="disabled" type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
|
363 |
+
<?php if ( $trial_days_number !== false ) echo $trial_days_number; ?>
|
364 |
</p>
|
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 { ?>
|
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' ); ?>" />
|
372 |
+
<?php if ( $trial_days_number !== false ) echo $trial_days_number;
|
373 |
+
wp_nonce_field( $plugin_basename, 'bws_license_nonce_name' ); ?>
|
374 |
+
</p>
|
375 |
+
<?php } ?>
|
376 |
+
</form>
|
377 |
+
<?php }
|
378 |
+
}
|
379 |
+
}
|
380 |
+
|
381 |
+
if ( ! function_exists( 'bws_go_pro_from_trial_tab' ) ) {
|
382 |
+
function bws_go_pro_from_trial_tab( $plugin_info, $plugin_basename, $page, $link_slug, $link_key, $link_pn, $trial_license_is_set = true ) {
|
383 |
+
global $wp_version, $bstwbsftwppdtplgns_options;
|
384 |
+
$bws_license_key = ( isset( $_POST['bws_license_key'] ) ) ? stripslashes( esc_html( trim( $_POST['bws_license_key'] ) ) ) : "";
|
385 |
+
if ( $trial_license_is_set ) { ?>
|
386 |
+
<form method="post" action="admin.php?page=<?php echo $page; ?>&action=go_pro">
|
387 |
+
<p>
|
388 |
+
<?php echo sprintf( __( 'In order to continue using the plugin it is necessary to buy a %s license.', 'bestwebsoft' ), '<a href="http://bestwebsoft.com/products/' . $link_slug . '/?k=' . $link_key . '&pn=' . $link_pn . '&v=' . $plugin_info["Version"] . '&wp_v=' . $wp_version .'" target="_blank" title="' . $plugin_info["Name"] . '">PRO</a>' ) . ' ';
|
389 |
+
_e( 'After that you can activate it by entering your license key.', 'bestwebsoft' ); ?><br />
|
390 |
+
<span class="bws_info">
|
391 |
+
<?php _e( 'You can find your license key on your personal page Client area, by clicking on the link', 'bestwebsoft' ); ?>
|
392 |
+
<a href="http://bestwebsoft.com/wp-login.php">http://bestwebsoft.com/wp-login.php</a>
|
393 |
+
<?php _e( '(your username is the email you specify when purchasing the product).', 'bestwebsoft' ); ?>
|
394 |
+
</span>
|
395 |
+
</p>
|
396 |
+
<?php if ( isset( $bstwbsftwppdtplgns_options['go_pro'][ $plugin_basename ]['count'] ) &&
|
397 |
+
'5' < $bstwbsftwppdtplgns_options['go_pro'][ $plugin_basename ]['count'] &&
|
398 |
+
$bstwbsftwppdtplgns_options['go_pro'][ $plugin_basename ]['time'] > ( time() - ( 24 * 60 * 60 ) ) ) { ?>
|
399 |
+
<p>
|
400 |
+
<input disabled="disabled" type="text" name="bws_license_key" value="" />
|
401 |
+
<input disabled="disabled" type="submit" class="button-primary" value="<?php _e( 'Activate', 'bestwebsoft' ); ?>" />
|
402 |
+
</p>
|
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' ); ?>" />
|
410 |
<?php wp_nonce_field( $plugin_basename, 'bws_license_nonce_name' ); ?>
|
411 |
</p>
|
412 |
<?php } ?>
|
413 |
</form>
|
414 |
+
<?php } else { ?>
|
415 |
+
<script type="text/javascript">
|
416 |
+
window.setTimeout( function() {
|
417 |
+
window.location.href = 'admin.php?page=<?php echo $page; ?>';
|
418 |
+
}, 5000 );
|
419 |
+
</script>
|
420 |
+
<p><?php _e( "Congratulations! The PRO license of the plugin is successfully activated.", 'bestwebsoft' ); ?></p>
|
421 |
+
<p>
|
422 |
+
<?php _e( "Please, go to", 'bestwebsoft' ); ?> <a href="admin.php?page=<?php echo $page; ?>"><?php _e( 'the setting page', 'bestwebsoft' ); ?></a>
|
423 |
+
(<?php _e( "You will be redirected automatically in 5 seconds.", 'bestwebsoft' ); ?>)
|
424 |
+
</p>
|
425 |
<?php }
|
426 |
}
|
427 |
}
|
428 |
|
429 |
if ( ! function_exists( 'bws_check_pro_license' ) ) {
|
430 |
+
function bws_check_pro_license( $plugin_basename, $trial_plugin = false ) {
|
431 |
global $wp_version, $bstwbsftwppdtplgns_options;
|
432 |
$result = array();
|
433 |
|
458 |
if ( is_array( $response ) && !empty( $response ) ) {
|
459 |
foreach ( $response as $key => $value ) {
|
460 |
if ( "wrong_license_key" == $value->package ) {
|
461 |
+
$result['error'] = __( 'Wrong license key.', 'bestwebsoft' );
|
462 |
} else if ( "wrong_domain" == $value->package ) {
|
463 |
+
$result['error'] = __( 'This license key is bind to another site.', 'bestwebsoft' );
|
464 |
} else if ( "time_out" == $value->package ) {
|
465 |
$result['message'] = __( 'This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license.', 'bestwebsoft' );
|
466 |
} elseif ( "you_are_banned" == $value->package ) {
|
467 |
$result['error'] = __( "Unfortunately, you have exceeded the number of available tries.", 'bestwebsoft' );
|
468 |
+
} elseif ( "duplicate_domen_for_trial" == $value->package ) {
|
469 |
+
$result['error'] = __( "Unfortunately, the PRO Trial licence was already installed to this domain. The PRO Trial license can be installed only once.", 'bestwebsoft' );
|
470 |
}
|
471 |
if ( empty( $result['message'] ) && empty( $result['error'] ) ) {
|
472 |
+
if ( isset( $value->trial ) )
|
473 |
+
$result['message'] = __( 'The PRO Trial license key is valid.', 'bestwebsoft' );
|
474 |
else
|
475 |
$result['message'] = __( 'The license key is valid.', 'bestwebsoft' );
|
476 |
+
|
477 |
+
if ( isset( $value->time_out ) && $value->time_out != '' )
|
478 |
+
$result['message'] .= ' ' . __( 'Your license will expire on', 'bestwebsoft' ) . ' ' . $value->time_out . '.';
|
479 |
+
|
480 |
+
if ( isset( $value->trial ) && $trial_plugin != false )
|
481 |
+
$result['message'] .= ' ' . sprintf( __( 'In order to continue using the plugin it is necessary to buy a %s license.', 'bestwebsoft' ), '<a href="http://bestwebsoft.com/products/' . $trial_plugin['link_slug'] . '/?k=' . $trial_plugin['link_key'] . '&pn=' . $trial_plugin['link_pn'] . '&v=' . $trial_plugin['plugin_info']['Version'] . '&wp_v=' . $wp_version . '" target="_blank" title="' . $trial_plugin['plugin_info']['Name'] . '">PRO</a>' );
|
482 |
+
|
483 |
+
if ( isset( $value->trial ) ) {
|
484 |
+
$bstwbsftwppdtplgns_options['trial'][ $plugin_basename ] = 1;
|
485 |
+
} else {
|
486 |
+
unset( $bstwbsftwppdtplgns_options['trial'][ $plugin_basename ] );
|
487 |
+
}
|
488 |
}
|
489 |
if ( empty( $result['error'] ) ) {
|
490 |
if ( $bstwbsftwppdtplgns_options[ $plugin_basename ] != $license_key ) {
|
533 |
}
|
534 |
|
535 |
if ( ! function_exists ( 'bws_plugin_update_row' ) ) {
|
536 |
+
function bws_plugin_update_row( $plugin_key, $link_slug = false, $free_plugin_name = false ) {
|
537 |
global $bstwbsftwppdtplgns_options;
|
538 |
$wp_list_table = _get_list_table( 'WP_Plugins_List_Table' );
|
539 |
if ( isset( $bstwbsftwppdtplgns_options['wrong_license_key'][ $plugin_key ] ) ) {
|
540 |
echo '<tr class="plugin-update-tr">
|
541 |
<td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
|
542 |
+
<div class="update-message" style="background-color: #FFEBE8; border-color: #CC0000;"><strong>' . __( 'WARNING: Illegal use notification', 'bestwebsoft' ) . '.</strong> ' . __( '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.', 'bestwebsoft' ) . ' <a target="_blank" href="http://support.bestwebsoft.com/hc/en-us/articles/204240089">' . __( 'Learn More', 'bestwebsoft' ) . '</a></div>
|
543 |
</td>
|
544 |
</tr>';
|
545 |
} elseif ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) && strtotime( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) < strtotime( date("m/d/Y") ) ) {
|
546 |
echo '<tr class="plugin-update-tr">
|
547 |
<td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
|
548 |
+
<div class="update-message" style="color: #8C0000;">';
|
549 |
+
if ( isset( $bstwbsftwppdtplgns_options['trial'][ $plugin_key ] ) && $link_slug != false ) {
|
550 |
+
echo __( 'Notice: Your PRO Trial license has expired. To continue using the plugin you should buy a PRO license', 'bestwebsoft' ) . ' - <a href="http://bestwebsoft.com/products/' . $link_slug .'/">http://bestwebsoft.com/products/' . $link_slug . '/</a>';
|
551 |
+
} else {
|
552 |
+
echo __( 'Your license has expired. To continue getting top-priority support and plugin updates you should extend it.', 'bestwebsoft' ) . ' <a target="_new" href="http://support.bestwebsoft.com/entries/53487136">' . __( "Learn more", 'bestwebsoft' ) . '</a>';
|
553 |
+
}
|
554 |
+
echo '</div>
|
555 |
+
</td>
|
556 |
+
</tr>';
|
557 |
+
} elseif ( isset( $bstwbsftwppdtplgns_options['trial'][ $plugin_key ] ) ) {
|
558 |
+
echo '<tr class="plugin-update-tr">
|
559 |
+
<td colspan="' . $wp_list_table->get_column_count() . '" class="plugin-update colspanchange">
|
560 |
+
<div class="update-message" style="color: #8C0000;">';
|
561 |
+
if ( $free_plugin_name != false ) {
|
562 |
+
echo sprintf( __( 'Notice: You are using the PRO Trial license of %s plugin.', 'bestwebsoft' ), $free_plugin_name );
|
563 |
+
} else {
|
564 |
+
_e( 'Notice: You are using the PRO Trial license of plugin.', 'bestwebsoft' );
|
565 |
+
}
|
566 |
+
if ( isset( $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] ) )
|
567 |
+
echo ' ' . __( "The PRO Trial license will expire on", 'bestwebsoft' ) . ' ' . $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] . '.';
|
568 |
+
echo '</div>
|
569 |
</td>
|
570 |
</tr>';
|
571 |
}
|
599 |
<div class="updated" style="padding: 0; margin: 0; border: none; background: none;">
|
600 |
<div class="<?php echo $plugin_prefix; ?>_message bws_banner_on_plugin_page" style="display:none;">
|
601 |
<img class="<?php echo $plugin_prefix; ?>_close_icon close_icon" title="" src="<?php echo plugins_url( 'images/close_banner.png', __FILE__ ); ?>" alt=""/>
|
|
|
602 |
<div class="icon">
|
603 |
<img title="" src="<?php echo $banner_url; ?>" alt="" />
|
604 |
</div>
|
605 |
+
<div class="text"><?php _e( "You license for", 'bestwebsoft' ); ?> <strong><?php echo $plugin_name; ?></strong> <?php echo __( "expires on", 'bestwebsoft' ) . ' ' . $bstwbsftwppdtplgns_options['time_out'][ $plugin_key ] . ' ' . __( "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES.", 'bestwebsoft' ); ?> <a target="_new" href="http://support.bestwebsoft.com/entries/53487136"><?php _e( "Learn more", 'bestwebsoft' ); ?></a></div>
|
606 |
</div>
|
607 |
</div>
|
608 |
<?php }
|
616 |
}
|
617 |
}
|
618 |
|
619 |
+
if ( ! function_exists ( 'bws_admin_add_scripts' ) ) {
|
620 |
+
function bws_admin_add_scripts() {
|
621 |
global $wp_version;
|
622 |
if ( $wp_version < 3.8 )
|
623 |
+
wp_enqueue_style( 'bws-admin-style', plugins_url( 'css/general_style_wp_before_3.8.css', __FILE__ ) );
|
624 |
else
|
625 |
+
wp_enqueue_style( 'bws-admin-style', plugins_url( 'css/general_style.css', __FILE__ ) );
|
626 |
|
627 |
if ( isset( $_GET['page'] ) && $_GET['page'] == "bws_plugins" ) {
|
628 |
wp_enqueue_style( 'bws_menu_style', plugins_url( 'css/style.css', __FILE__ ) );
|
652 |
/**
|
653 |
* Tooltip block
|
654 |
*/
|
655 |
+
if ( ! function_exists( 'bws_add_tooltip_in_admin' ) ) {
|
656 |
+
function bws_add_tooltip_in_admin( $tooltip_args = array() ) {
|
657 |
+
new BWS_admin_tooltip( $tooltip_args );
|
658 |
}
|
659 |
}
|
660 |
|
661 |
+
if ( ! class_exists( 'BWS_admin_tooltip' ) ) {
|
662 |
+
class BWS_admin_tooltip {
|
663 |
private $tooltip_args;
|
664 |
|
665 |
public function __construct( $tooltip_args ) {
|
707 |
}
|
708 |
/* Check entered data */
|
709 |
if ( false === $tooltip_args['tooltip_id'] || false === $tooltip_args['css_selector'] || ( false === $tooltip_args['actions']['click'] && false === $tooltip_args['actions']['onload'] ) ) {
|
710 |
+
/* if not enough data to output a tooltip or both actions (click, onload) are false */
|
711 |
return;
|
712 |
} else {
|
713 |
/* check position */
|
748 |
* Display tooltip
|
749 |
*/
|
750 |
public function add_scripts() {
|
751 |
+
global $bstwbsftwppdtplgns_tooltip_script_add;
|
752 |
+
if ( ! isset( $bstwbsftwppdtplgns_tooltip_script_add ) ) {
|
753 |
+
echo '<script type="text/javascript" src="' . plugins_url( 'js/bws_tooltip.js', __FILE__ ) . '"></script>';
|
754 |
+
$bstwbsftwppdtplgns_tooltip_script_add = true;
|
755 |
+
}
|
756 |
$tooltip_args = $this->tooltip_args; ?>
|
757 |
<script type="text/javascript">
|
758 |
(function($) {
|
759 |
+
$(document).ready( function() {
|
760 |
+
$.bwsTooltip( <?php echo json_encode( $tooltip_args ); ?> );
|
761 |
+
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
762 |
})(jQuery);
|
763 |
</script>
|
764 |
<?php }
|
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' );
|
bws_menu/bws_menu.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
-
* Version: 1.
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
|
@@ -11,7 +11,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
11 |
function bws_add_menu_render() {
|
12 |
global $wpdb, $wp_version, $bws_plugin_info;
|
13 |
$error = $message = $bwsmn_form_email = '';
|
14 |
-
$bws_donate_link = '
|
15 |
|
16 |
if ( ! function_exists( 'is_plugin_active_for_network' ) )
|
17 |
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
@@ -247,7 +247,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
247 |
),
|
248 |
'contact-form-multi/contact-form-multi.php' => array(
|
249 |
'name' => 'Contact Form Multi',
|
250 |
-
'description' => '
|
251 |
'link' => 'http://bestwebsoft.com/products/contact-form-multi/?k=83cdd9e72a9f4061122ad28a67293c72&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
252 |
'download' => 'http://bestwebsoft.com/products/contact-form-multi/download/?k=83cdd9e72a9f4061122ad28a67293c72&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
253 |
'wp_install' => $admin_url . 'plugin-install.php?tab=search&s=Contact+Form+Multi+Bestwebsoft&plugin-search-input=Search+Plugins',
|
@@ -401,6 +401,22 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
401 |
'pro_version' => 'realty-pro/realty-pro.php',
|
402 |
'purchase' => 'http://bestwebsoft.com/products/realty/buy/?k=c7791f0a72acfb36f564a614dbccb474&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
403 |
'pro_settings' => 'admin.php?page=realty_pro_settings'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
404 |
)
|
405 |
);
|
406 |
|
@@ -947,10 +963,10 @@ if ( ! function_exists( 'bws_get_banner_array' ) ) {
|
|
947 |
array( 'gglplsn_hide_banner_on_plugin_page', 'google-one/google-plus-one.php', '1.1.4' ),
|
948 |
array( 'gglstmp_hide_banner_on_plugin_page', 'google-sitemap-plugin/google-sitemap-plugin.php', '2.8.4' ),
|
949 |
array( 'cntctfrmpr_for_ctfrmtdb_hide_banner_on_plugin_page', 'contact-form-pro/contact_form_pro.php', '1.14' ),
|
950 |
-
array( 'cntctfrm_for_ctfrmtdb_hide_banner_on_plugin_page', 'contact-form-plugin/contact_form.php', '3.62' ),
|
951 |
array( 'cntctfrm_hide_banner_on_plugin_page', 'contact-form-plugin/contact_form.php', '3.47' ),
|
952 |
array( 'cptch_hide_banner_on_plugin_page', 'captcha/captcha.php', '3.8.4' ),
|
953 |
-
array( 'gllr_hide_banner_on_plugin_page', 'gallery-plugin/gallery-plugin.php', '3.9.1' )
|
|
|
954 |
);
|
955 |
}
|
956 |
}
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
+
* Version: 1.6.0
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
|
11 |
function bws_add_menu_render() {
|
12 |
global $wpdb, $wp_version, $bws_plugin_info;
|
13 |
$error = $message = $bwsmn_form_email = '';
|
14 |
+
$bws_donate_link = 'http://bestwebsoft.com/donate/';
|
15 |
|
16 |
if ( ! function_exists( 'is_plugin_active_for_network' ) )
|
17 |
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
247 |
),
|
248 |
'contact-form-multi/contact-form-multi.php' => array(
|
249 |
'name' => 'Contact Form Multi',
|
250 |
+
'description' => 'Add-on to the Contact Form plugin that allows to create and implement multiple contact forms.',
|
251 |
'link' => 'http://bestwebsoft.com/products/contact-form-multi/?k=83cdd9e72a9f4061122ad28a67293c72&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
252 |
'download' => 'http://bestwebsoft.com/products/contact-form-multi/download/?k=83cdd9e72a9f4061122ad28a67293c72&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
253 |
'wp_install' => $admin_url . 'plugin-install.php?tab=search&s=Contact+Form+Multi+Bestwebsoft&plugin-search-input=Search+Plugins',
|
401 |
'pro_version' => 'realty-pro/realty-pro.php',
|
402 |
'purchase' => 'http://bestwebsoft.com/products/realty/buy/?k=c7791f0a72acfb36f564a614dbccb474&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
403 |
'pro_settings' => 'admin.php?page=realty_pro_settings'
|
404 |
+
),
|
405 |
+
'zendesk-help-center/zendesk-help-center.php' => array(
|
406 |
+
'name' => 'Zendesk Help Center Backup',
|
407 |
+
'description' => 'This plugin allows to backup Zendesk Help Center.',
|
408 |
+
'link' => 'http://bestwebsoft.com/products/zendesk-help-center/?k=2a5fd2f4b2f4bde46f2ca44b8d15846d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
409 |
+
'download' => 'http://bestwebsoft.com/products/zendesk-help-center/download/?k=2a5fd2f4b2f4bde46f2ca44b8d15846d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
410 |
+
'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Zendesk+Help+Center+Backup+BestWebSoft&plugin-search-input=Search+Plugins',
|
411 |
+
'settings' => 'admin.php?page=zendesk_hc.php&tab=settings'
|
412 |
+
),
|
413 |
+
'social-buttons-pack/social-buttons-pack.php' => array(
|
414 |
+
'name' => 'Social Buttons Pack',
|
415 |
+
'description' => 'Add Social buttons to your WordPress website.',
|
416 |
+
'link' => 'http://bestwebsoft.com/products/social-buttons-pack/?k=b6440fad9f54274429e536b0c61b42da&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
417 |
+
'download' => 'http://bestwebsoft.com/products/social-buttons-pack/download/?k=b6440fad9f54274429e536b0c61b42da&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
418 |
+
'wp_install' => $admin_url . 'plugin-install.php?tab=search&type=term&s=Social+Buttons+Pack+BestWebSoft&plugin-search-input=Search+Plugins',
|
419 |
+
'settings' => 'admin.php?page=social-buttons.php'
|
420 |
)
|
421 |
);
|
422 |
|
963 |
array( 'gglplsn_hide_banner_on_plugin_page', 'google-one/google-plus-one.php', '1.1.4' ),
|
964 |
array( 'gglstmp_hide_banner_on_plugin_page', 'google-sitemap-plugin/google-sitemap-plugin.php', '2.8.4' ),
|
965 |
array( 'cntctfrmpr_for_ctfrmtdb_hide_banner_on_plugin_page', 'contact-form-pro/contact_form_pro.php', '1.14' ),
|
|
|
966 |
array( 'cntctfrm_hide_banner_on_plugin_page', 'contact-form-plugin/contact_form.php', '3.47' ),
|
967 |
array( 'cptch_hide_banner_on_plugin_page', 'captcha/captcha.php', '3.8.4' ),
|
968 |
+
array( 'gllr_hide_banner_on_plugin_page', 'gallery-plugin/gallery-plugin.php', '3.9.1' ),
|
969 |
+
array( 'cntctfrm_for_ctfrmtdb_hide_banner_on_plugin_page', 'contact-form-plugin/contact_form.php', '3.62' ),
|
970 |
);
|
971 |
}
|
972 |
}
|
bws_menu/css/general_style.css
CHANGED
@@ -211,11 +211,11 @@ a.bws_plugin_pro_version {
|
|
211 |
font-size: 12px;
|
212 |
opacity: 0.7;
|
213 |
}
|
214 |
-
.bws_banner_on_plugin_page .button {
|
215 |
-
float:
|
216 |
border: none;
|
217 |
font-size: 14px;
|
218 |
-
margin: 18px
|
219 |
padding: 12px 29px;
|
220 |
color: #FFF;
|
221 |
text-shadow: none;
|
@@ -236,9 +236,15 @@ a.bws_plugin_pro_version {
|
|
236 |
background: #222;
|
237 |
color: #FFF;
|
238 |
}
|
239 |
-
.bws_banner_on_plugin_page .icon {
|
240 |
-
float:
|
241 |
-
margin: 12px 8px 8px
|
|
|
|
|
|
|
|
|
|
|
|
|
242 |
}
|
243 |
.bws_banner_on_plugin_page .close_icon {
|
244 |
float: right;
|
@@ -255,4 +261,8 @@ a.bws_plugin_pro_version {
|
|
255 |
text-align: center;
|
256 |
max-width: 100%;
|
257 |
}
|
|
|
|
|
|
|
|
|
258 |
}
|
211 |
font-size: 12px;
|
212 |
opacity: 0.7;
|
213 |
}
|
214 |
+
div.bws_banner_on_plugin_page .button {
|
215 |
+
float: right;
|
216 |
border: none;
|
217 |
font-size: 14px;
|
218 |
+
margin: 18px 16px;
|
219 |
padding: 12px 29px;
|
220 |
color: #FFF;
|
221 |
text-shadow: none;
|
236 |
background: #222;
|
237 |
color: #FFF;
|
238 |
}
|
239 |
+
div.bws_banner_on_plugin_page .icon {
|
240 |
+
float: left;
|
241 |
+
margin: 12px 8px 8px 12px;
|
242 |
+
}
|
243 |
+
.bws_banner_on_plugin_page .icon img {
|
244 |
+
max-width: 60px;
|
245 |
+
}
|
246 |
+
.bws_banner_on_plugin_page .text + .icon {
|
247 |
+
display: none;
|
248 |
}
|
249 |
.bws_banner_on_plugin_page .close_icon {
|
250 |
float: right;
|
261 |
text-align: center;
|
262 |
max-width: 100%;
|
263 |
}
|
264 |
+
.bws_banner_on_plugin_page .icon {
|
265 |
+
position: relative;
|
266 |
+
left: 8px;
|
267 |
+
}
|
268 |
}
|
bws_menu/css/general_style_wp_before_3.8.css
CHANGED
@@ -216,11 +216,11 @@ a.bws_plugin_pro_version {
|
|
216 |
font-size: 12px;
|
217 |
opacity: 0.7;
|
218 |
}
|
219 |
-
.bws_banner_on_plugin_page .button {
|
220 |
-
float:
|
221 |
border: none;
|
222 |
font-size: 14px;
|
223 |
-
margin: 18px
|
224 |
padding: 14px 29px;
|
225 |
color: #FFF;
|
226 |
text-shadow: none;
|
@@ -243,9 +243,15 @@ a.bws_plugin_pro_version {
|
|
243 |
background: #222;
|
244 |
color: #FFF;
|
245 |
}
|
246 |
-
.bws_banner_on_plugin_page .icon {
|
247 |
-
float:
|
248 |
-
margin: 12px 8px 8px
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
}
|
250 |
.bws_banner_on_plugin_page .close_icon {
|
251 |
float: right;
|
@@ -261,4 +267,8 @@ a.bws_plugin_pro_version {
|
|
261 |
float: none;
|
262 |
text-align: center;
|
263 |
}
|
|
|
|
|
|
|
|
|
264 |
}
|
216 |
font-size: 12px;
|
217 |
opacity: 0.7;
|
218 |
}
|
219 |
+
div.bws_banner_on_plugin_page .button {
|
220 |
+
float: right;
|
221 |
border: none;
|
222 |
font-size: 14px;
|
223 |
+
margin: 18px 16px;
|
224 |
padding: 14px 29px;
|
225 |
color: #FFF;
|
226 |
text-shadow: none;
|
243 |
background: #222;
|
244 |
color: #FFF;
|
245 |
}
|
246 |
+
div.bws_banner_on_plugin_page .icon {
|
247 |
+
float: left;
|
248 |
+
margin: 12px 8px 8px 12px;
|
249 |
+
}
|
250 |
+
.bws_banner_on_plugin_page .icon img {
|
251 |
+
max-width: 60px;
|
252 |
+
}
|
253 |
+
.bws_banner_on_plugin_page .text + .icon {
|
254 |
+
display: none;
|
255 |
}
|
256 |
.bws_banner_on_plugin_page .close_icon {
|
257 |
float: right;
|
267 |
float: none;
|
268 |
text-align: center;
|
269 |
}
|
270 |
+
.bws_banner_on_plugin_page .icon {
|
271 |
+
position: relative;
|
272 |
+
left: 8px;
|
273 |
+
}
|
274 |
}
|
bws_menu/icons/bws-google-analytics.png
CHANGED
File without changes
|
bws_menu/icons/bws-google-maps.png
CHANGED
File without changes
|
bws_menu/icons/bws-smtp.png
CHANGED
File without changes
|
bws_menu/icons/contact-form-multi.png
CHANGED
File without changes
|
bws_menu/icons/db-manager.png
CHANGED
File without changes
|
bws_menu/icons/social-buttons-pack.png
ADDED
Binary file
|
bws_menu/icons/subscriber.png
CHANGED
File without changes
|
bws_menu/icons/zendesk-help-center.png
ADDED
Binary file
|
bws_menu/js/bws_tooltip.js
ADDED
@@ -0,0 +1,79 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
/**
|
2 |
+
* BWS tooltip function
|
3 |
+
*
|
4 |
+
*/
|
5 |
+
(function($) {
|
6 |
+
$(document).ready( function() {
|
7 |
+
jQuery.bwsTooltip = function( pointer_options ) {
|
8 |
+
var pointer_buttons = pointer_options['buttons'];
|
9 |
+
/* extend pointer options - add close button */
|
10 |
+
pointer_options = $.extend(pointer_options, {
|
11 |
+
buttons: function(event, t) {
|
12 |
+
var button;
|
13 |
+
/* check and add dismiss-type buttons */
|
14 |
+
for( var but in pointer_buttons ) {
|
15 |
+
if ( typeof pointer_buttons[ but ]['type'] != 'undefined' && pointer_buttons[ but ]['type'] == 'dismiss' && typeof pointer_buttons[ but ]['text'] != 'undefined' && pointer_buttons[ but ]['text'] != '' ) {
|
16 |
+
button += '<a style="margin:0px 5px 2px;" class="button-secondary">' + pointer_buttons[ but ]['text'] + '</a>';
|
17 |
+
}
|
18 |
+
}
|
19 |
+
button = jQuery( button );
|
20 |
+
button.bind('click.pointer', function () {
|
21 |
+
t.element.pointer('close');
|
22 |
+
});
|
23 |
+
return button;
|
24 |
+
},
|
25 |
+
/* add ajax dismiss functionality */
|
26 |
+
close : $.proxy(function () {
|
27 |
+
if ( pointer_options['actions']['onload'] == true ) {
|
28 |
+
$.post( ajaxurl, this );
|
29 |
+
}
|
30 |
+
}, {
|
31 |
+
pointer: pointer_options['tooltip_id'],
|
32 |
+
action: 'dismiss-wp-pointer'
|
33 |
+
})
|
34 |
+
});
|
35 |
+
/* function to display pointer */
|
36 |
+
function displayPointer( cssSelector ) {
|
37 |
+
cssSelector.pointer(pointer_options).pointer({
|
38 |
+
pointerClass: 'wp-pointer ' + pointer_options["tooltip_id"],
|
39 |
+
content: pointer_options['content'],
|
40 |
+
position:
|
41 |
+
{
|
42 |
+
edge: pointer_options['position']['edge'],
|
43 |
+
align: pointer_options['position']['align'],
|
44 |
+
},
|
45 |
+
}).pointer('open');
|
46 |
+
/* display buttons that are not type of dismiss */
|
47 |
+
for ( var but in pointer_buttons ) {
|
48 |
+
if ( typeof pointer_buttons[ but ]['type'] != 'undefined' && pointer_buttons[ but ]['type'] != 'dismiss' && typeof pointer_buttons[ but ]['text'] != 'undefined' && pointer_buttons[ but ]['text'] != '' ) {
|
49 |
+
$( '.' + pointer_options['tooltip_id'] + ' .button-secondary').first().before( '<a class="button-primary" style="margin-right: 5px;" ' +
|
50 |
+
( ( pointer_buttons[ but ]['type'] == 'link' && typeof pointer_buttons[ but ]['link'] != 'undefined' && pointer_buttons[ but ]['link'] != '') ? 'target="_blank" href="' + pointer_buttons[ but ]['link'] + '"' : '' )
|
51 |
+
+ '>' + pointer_buttons[ but ]['text'] + '</a>' );
|
52 |
+
};
|
53 |
+
}
|
54 |
+
/* adjust position of pointer */
|
55 |
+
topPos = parseInt( $( "." + pointer_options["tooltip_id"] ).css("top") ) + parseInt( pointer_options['position']['pos-top'] );
|
56 |
+
leftPos = parseInt( $( "." + pointer_options["tooltip_id"] ).css("left") ) + parseInt( pointer_options['position']['pos-left'] );
|
57 |
+
if ( pointer_options['position']['align'] == 'left' ) {
|
58 |
+
leftPos += cssSelector.outerWidth()/2;
|
59 |
+
};
|
60 |
+
$( "." + pointer_options["tooltip_id"] ).css({ "top": topPos + "px", "left": leftPos + "px" });
|
61 |
+
/* adjust z-index if need */
|
62 |
+
pointerZindex = parseInt( $( "." + pointer_options["tooltip_id"] ).css("z-index") );
|
63 |
+
if ( pointerZindex != pointer_options['position']['zindex'] ) {
|
64 |
+
$( "." + pointer_options["tooltip_id"] ).css({ "z-index": pointer_options['position']['zindex'] });
|
65 |
+
}
|
66 |
+
}
|
67 |
+
/* display pointer for the first time */
|
68 |
+
if ( pointer_options['actions']['onload'] ) {
|
69 |
+
displayPointer( $( pointer_options['css_selector'] ) );
|
70 |
+
}
|
71 |
+
/* display pointer when clicked on selector */
|
72 |
+
if ( pointer_options['actions']['click'] ) {
|
73 |
+
$( pointer_options['css_selector'] ).click( function () {
|
74 |
+
displayPointer( $( this ) );
|
75 |
+
});
|
76 |
+
}
|
77 |
+
};
|
78 |
+
})
|
79 |
+
})(jQuery);
|
bws_menu/languages/bestwebsoft-de_DE.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-de_DE.po
CHANGED
@@ -2,10 +2,11 @@ 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 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -15,599 +16,662 @@ msgstr ""
|
|
15 |
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
"X-Textdomain-Support: yes\n"
|
18 |
-
"Language: de_DE\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: bws_functions.php:
|
22 |
msgid "requires"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: bws_functions.php:
|
26 |
-
msgid ""
|
27 |
-
"or higher, that is why it has been deactivated! Please upgrade WordPress and "
|
28 |
-
"try again."
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: bws_functions.php:
|
32 |
msgid "Back to the WordPress"
|
33 |
msgstr ""
|
34 |
|
35 |
# @ captcha
|
36 |
-
#: bws_functions.php:
|
37 |
#, fuzzy
|
38 |
msgid "Plugins page"
|
39 |
msgstr "BWS Plugins"
|
40 |
|
41 |
-
|
42 |
-
#: bws_functions.php:134
|
43 |
-
#, fuzzy
|
44 |
-
msgid "Learn More"
|
45 |
-
msgstr "Lesen Sie mehr"
|
46 |
-
|
47 |
-
#: bws_functions.php:137
|
48 |
msgid "It’s time to upgrade your"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: bws_functions.php:
|
52 |
msgid "to"
|
53 |
msgstr ""
|
54 |
|
55 |
# @ captcha
|
56 |
-
#: bws_functions.php:
|
57 |
#, fuzzy
|
58 |
msgid "version!"
|
59 |
msgstr "PHP Version"
|
60 |
|
61 |
-
#: bws_functions.php:
|
62 |
msgid "Extend standard plugin functionality with new great options."
|
63 |
msgstr ""
|
64 |
|
65 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
67 |
msgstr ""
|
68 |
|
69 |
# @ captcha
|
70 |
-
#: bws_functions.php:
|
71 |
#, fuzzy
|
72 |
msgid "Rate the plugin"
|
73 |
msgstr "Aktivierte Plugins"
|
74 |
|
75 |
# @ captcha
|
76 |
-
#: bws_functions.php:
|
77 |
#, fuzzy
|
78 |
msgid "If there is something wrong about it, please contact us"
|
79 |
msgstr "Wenn Sie irgendwelche Fragen haben, kontaktieren Sie uns bitte über"
|
80 |
|
81 |
-
#: bws_functions.php:
|
|
|
82 |
msgid "Wrong license key"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: bws_functions.php:
|
86 |
-
|
87 |
-
|
88 |
-
"please contact us"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: bws_functions.php:
|
|
|
|
|
92 |
msgid "We are sorry for inconvenience."
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: bws_functions.php:
|
96 |
msgid "This license key is bind to another site"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: bws_functions.php:
|
100 |
-
|
101 |
-
"Unfortunately, you have exceeded the number of available tries per day. "
|
102 |
-
"Please, upload the plugin manually."
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: bws_functions.php:
|
106 |
-
msgid ""
|
107 |
-
"Unfortunately, Your license has expired. To continue getting top-priority "
|
108 |
-
"support and plugin updates you should extend it in your"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: bws_functions.php:
|
112 |
-
msgid ""
|
113 |
-
"Unfortunately, the PRO licence was already installed to this domain. The PRO "
|
114 |
-
"Trial license can be installed only once."
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: bws_functions.php:
|
|
|
|
|
118 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: bws_functions.php:
|
122 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: bws_functions.php:
|
126 |
-
msgid ""
|
127 |
-
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
128 |
-
"plugin manually"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: bws_functions.php:
|
132 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: bws_functions.php:
|
136 |
-
msgid ""
|
137 |
-
"Something went wrong. Try again later or upload the plugin manually. We are "
|
138 |
-
"sorry for inconvenience."
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: bws_functions.php:
|
142 |
msgid "Please, enter Your license key"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: bws_functions.php:
|
146 |
-
msgid ""
|
147 |
-
"Congratulations! The PRO version of the plugin is successfully download and "
|
148 |
-
"activated."
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: bws_functions.php:
|
|
|
152 |
msgid "Please, go to"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: bws_functions.php:
|
|
|
156 |
msgid "the setting page"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: bws_functions.php:
|
|
|
160 |
msgid "You will be redirected automatically in 5 seconds."
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: bws_functions.php:
|
164 |
msgid "You can download and activate"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: bws_functions.php:
|
168 |
msgid "version of this plugin by entering Your license key."
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: bws_functions.php:
|
172 |
-
|
173 |
-
"You can find your license key on your personal page Client area, by clicking "
|
174 |
-
"on the link"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: bws_functions.php:
|
|
|
178 |
msgid "(your username is the email you specify when purchasing the product)."
|
179 |
msgstr ""
|
180 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
181 |
# @ captcha
|
182 |
-
#: bws_functions.php:
|
183 |
-
#:
|
|
|
|
|
|
|
|
|
184 |
#, fuzzy
|
185 |
msgid "Activate"
|
186 |
msgstr "Aktivierte Plugins"
|
187 |
|
188 |
-
#: bws_functions.php:
|
189 |
-
|
190 |
-
|
191 |
-
"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
195 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: bws_functions.php:
|
199 |
-
msgid "
|
|
|
|
|
|
|
|
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: bws_functions.php:
|
203 |
msgid "The license key is valid."
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
207 |
msgid "Please, enter your license key"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: bws_functions.php:
|
211 |
-
msgid ""
|
212 |
-
"If needed you can check if the license key is correct or reenter it in the "
|
213 |
-
"field below. You can find your license key on your personal page - Client "
|
214 |
-
"area - on our website"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: bws_functions.php:
|
218 |
-
msgid ""
|
219 |
-
"(your username is the email you specify when purchasing the product). If "
|
220 |
-
"necessary, please submit \"Lost your password?\" request."
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: bws_functions.php:
|
224 |
msgid "Check license key"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: bws_functions.php:
|
228 |
-
msgid ""
|
229 |
-
"WARNING: We have noticed illegal use of our plugin by you. We strongly "
|
230 |
-
"recommend you to solve the problem within 24 hours, otherwise the plugin "
|
231 |
-
"will be deactivated. Please go to your personal"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: bws_functions.php:
|
235 |
-
msgid ""
|
236 |
-
"(your username is the email you specify when purchasing the product), where "
|
237 |
-
"you can make the necessary changes."
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: bws_functions.php:
|
241 |
-
msgid ""
|
242 |
-
|
243 |
-
|
|
|
|
|
244 |
msgstr ""
|
245 |
|
246 |
# @ captcha
|
247 |
-
#: bws_functions.php:
|
248 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
249 |
#, fuzzy
|
250 |
msgid "Learn more"
|
251 |
msgstr "Lesen Sie mehr"
|
252 |
|
253 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
254 |
msgid "You license for"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: bws_functions.php:
|
258 |
msgid "expires on"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: bws_functions.php:
|
262 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: bws_functions.php:
|
266 |
msgid "Close"
|
267 |
msgstr ""
|
268 |
|
269 |
# @ captcha
|
270 |
-
#: bws_menu.php:
|
271 |
msgid "Not set"
|
272 |
msgstr "Nicht festgelegt"
|
273 |
|
274 |
# @ captcha
|
275 |
-
#: bws_menu.php:
|
|
|
276 |
msgid "On"
|
277 |
msgstr "Ein"
|
278 |
|
279 |
# @ captcha
|
280 |
-
#: bws_menu.php:
|
|
|
281 |
msgid "Off"
|
282 |
msgstr "Ausgeschaltet"
|
283 |
|
284 |
# @ captcha
|
285 |
-
#: bws_menu.php:
|
286 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
|
|
287 |
msgid "N/A"
|
288 |
msgstr "keine Angaben"
|
289 |
|
290 |
# @ captcha
|
291 |
-
#: bws_menu.php:
|
292 |
msgid " Mb"
|
293 |
msgstr " Mb"
|
294 |
|
295 |
# @ captcha
|
296 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
297 |
msgid "Yes"
|
298 |
msgstr "Ja"
|
299 |
|
300 |
# @ captcha
|
301 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
302 |
msgid "No"
|
303 |
msgstr "Nein"
|
304 |
|
305 |
# @ captcha
|
306 |
-
#: bws_menu.php:
|
307 |
msgid "Operating System"
|
308 |
msgstr "Betriebs-System"
|
309 |
|
310 |
# @ captcha
|
311 |
-
#: bws_menu.php:
|
312 |
msgid "Server"
|
313 |
msgstr "Server"
|
314 |
|
315 |
# @ captcha
|
316 |
-
#: bws_menu.php:
|
317 |
msgid "Memory usage"
|
318 |
msgstr "Speichernutzung"
|
319 |
|
320 |
# @ captcha
|
321 |
-
#: bws_menu.php:
|
322 |
msgid "MYSQL Version"
|
323 |
msgstr "MYSQL Version"
|
324 |
|
325 |
# @ captcha
|
326 |
-
#: bws_menu.php:
|
327 |
msgid "SQL Mode"
|
328 |
msgstr "SQL Modus"
|
329 |
|
330 |
# @ captcha
|
331 |
-
#: bws_menu.php:
|
332 |
msgid "PHP Version"
|
333 |
msgstr "PHP Version"
|
334 |
|
335 |
# @ captcha
|
336 |
-
#: bws_menu.php:
|
337 |
msgid "PHP Safe Mode"
|
338 |
msgstr "PHP Gesicherter Modus"
|
339 |
|
340 |
# @ captcha
|
341 |
-
#: bws_menu.php:
|
342 |
msgid "PHP Allow URL fopen"
|
343 |
msgstr "PHP Erlaubet URL zu öffnen (fopen)"
|
344 |
|
345 |
# @ captcha
|
346 |
-
#: bws_menu.php:
|
347 |
msgid "PHP Memory Limit"
|
348 |
msgstr "PHP Speicher-Grenze"
|
349 |
|
350 |
# @ captcha
|
351 |
-
#: bws_menu.php:
|
352 |
msgid "PHP Max Upload Size"
|
353 |
msgstr "PHP Maximale Upload Größe"
|
354 |
|
355 |
# @ captcha
|
356 |
-
#: bws_menu.php:
|
357 |
msgid "PHP Max Post Size"
|
358 |
msgstr "PHP Maximale Beitrags-Größe"
|
359 |
|
360 |
# @ captcha
|
361 |
-
#: bws_menu.php:
|
362 |
msgid "PHP Max Script Execute Time"
|
363 |
msgstr "PHP Maximale Script Ausführungszeit"
|
364 |
|
365 |
# @ captcha
|
366 |
-
#: bws_menu.php:
|
367 |
msgid "PHP Exif support"
|
368 |
msgstr "PHP Exif Support"
|
369 |
|
370 |
# @ captcha
|
371 |
-
#: bws_menu.php:
|
372 |
msgid "PHP IPTC support"
|
373 |
msgstr "PHP IPTC Support"
|
374 |
|
375 |
# @ captcha
|
376 |
-
#: bws_menu.php:
|
377 |
msgid "PHP XML support"
|
378 |
msgstr "PHP XML Support"
|
379 |
|
380 |
# @ captcha
|
381 |
-
#: bws_menu.php:
|
382 |
msgid "Site URL"
|
383 |
msgstr "Site URL"
|
384 |
|
385 |
# @ captcha
|
386 |
-
#: bws_menu.php:
|
387 |
msgid "Home URL"
|
388 |
msgstr "Home URL"
|
389 |
|
390 |
# @ captcha
|
391 |
-
#: bws_menu.php:
|
392 |
msgid "WordPress Version"
|
393 |
msgstr "WordPress Version"
|
394 |
|
395 |
# @ captcha
|
396 |
-
#: bws_menu.php:
|
397 |
msgid "WordPress DB Version"
|
398 |
msgstr "WordPress DB Version"
|
399 |
|
400 |
# @ captcha
|
401 |
-
#: bws_menu.php:
|
402 |
msgid "Multisite"
|
403 |
msgstr "Multisite"
|
404 |
|
405 |
# @ captcha
|
406 |
-
#: bws_menu.php:
|
407 |
msgid "Active Theme"
|
408 |
msgstr "Actives Theme"
|
409 |
|
410 |
# @ captcha
|
411 |
-
#: bws_menu.php:
|
412 |
msgid "Please enter a valid email address."
|
413 |
msgstr "Bitte geben Sie eine gültige E-Mail-Adresse ein."
|
414 |
|
415 |
# @ captcha
|
416 |
-
#: bws_menu.php:
|
417 |
msgid "Email with system info is sent to "
|
418 |
msgstr "E-Mail-mit System Informationen wird gesendet an "
|
419 |
|
420 |
# @ captcha
|
421 |
-
#: bws_menu.php:
|
422 |
msgid "Thank you for contacting us."
|
423 |
msgstr "Vielen Dank für Ihre Kontaktaufnahme."
|
424 |
|
425 |
# @ captcha
|
426 |
-
#: bws_menu.php:
|
427 |
msgid "Sorry, email message could not be delivered."
|
428 |
msgstr "Sorry, E-Mail konnte nicht zugestellt werden."
|
429 |
|
430 |
-
#: bws_menu.php:
|
431 |
msgid "Need help?"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: bws_menu.php:
|
435 |
msgid "Client area"
|
436 |
msgstr ""
|
437 |
|
438 |
# @ captcha
|
439 |
-
#: bws_menu.php:
|
|
|
440 |
msgid "System status"
|
441 |
msgstr "System Status"
|
442 |
|
443 |
# @ captcha
|
444 |
-
#: bws_menu.php:
|
445 |
#, fuzzy
|
446 |
msgid "Plugins"
|
447 |
msgstr "BWS Plugins"
|
448 |
|
449 |
-
#: bws_menu.php:
|
450 |
msgid "Themes"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: bws_menu.php:
|
454 |
msgid "All"
|
455 |
msgstr ""
|
456 |
|
457 |
# @ default
|
458 |
-
#: bws_menu.php:
|
459 |
#, fuzzy
|
460 |
msgid "Installed"
|
461 |
msgstr "Installiere %s"
|
462 |
|
463 |
# @ captcha
|
464 |
-
#: bws_menu.php:
|
465 |
#, fuzzy
|
466 |
msgid "Recommended"
|
467 |
msgstr "Empfohlene Plugins"
|
468 |
|
469 |
# @ captcha
|
470 |
-
#: bws_menu.php:
|
471 |
msgid "Installed plugins"
|
472 |
msgstr "Installierte Plugins"
|
473 |
|
474 |
# @ captcha
|
475 |
-
#: bws_menu.php:
|
|
|
476 |
msgid "Settings"
|
477 |
msgstr "Einstellungen"
|
478 |
|
479 |
# @ captcha
|
480 |
-
#: bws_menu.php:
|
|
|
481 |
#, fuzzy
|
482 |
msgid "Activate this plugin"
|
483 |
msgstr "Aktivierte Plugins"
|
484 |
|
485 |
-
#: bws_menu.php:
|
|
|
|
|
486 |
msgid "Go"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: bws_menu.php:
|
|
|
|
|
490 |
msgid "DONATE"
|
491 |
msgstr ""
|
492 |
|
493 |
# @ captcha
|
494 |
-
#: bws_menu.php:
|
495 |
msgid "Recommended plugins"
|
496 |
msgstr "Empfohlene Plugins"
|
497 |
|
498 |
# @ default
|
499 |
-
#: bws_menu.php:
|
500 |
#, fuzzy
|
501 |
msgid "Install now"
|
502 |
msgstr "Installiere %s"
|
503 |
|
504 |
-
#: bws_menu.php:
|
505 |
msgid "Try again"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: bws_menu.php:
|
509 |
#, php-format
|
510 |
msgid "Preview “%s”"
|
511 |
msgstr ""
|
512 |
|
513 |
# @ default
|
514 |
-
#: bws_menu.php:
|
515 |
#, php-format
|
516 |
msgid "Install %s"
|
517 |
msgstr "Installiere %s"
|
518 |
|
519 |
# @ default
|
520 |
-
#: bws_menu.php:
|
521 |
#, fuzzy
|
522 |
msgid "Install Now"
|
523 |
msgstr "Installiere %s"
|
524 |
|
525 |
-
#: bws_menu.php:
|
526 |
#, php-format
|
527 |
msgid "Update to version %s"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: bws_menu.php:
|
531 |
msgid "Update"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: bws_menu.php:
|
535 |
#, php-format
|
536 |
msgid "Preview %s"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: bws_menu.php:
|
540 |
msgid "Preview"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: bws_menu.php:
|
|
|
544 |
#, php-format
|
545 |
msgid "By %s"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: bws_menu.php:
|
549 |
msgid "Details"
|
550 |
msgstr ""
|
551 |
|
552 |
# @ default
|
553 |
-
#: bws_menu.php:
|
554 |
#, fuzzy
|
555 |
msgid "Already Installed"
|
556 |
msgstr "Installiere %s"
|
557 |
|
558 |
# @ captcha
|
559 |
-
#: bws_menu.php:
|
560 |
msgid "Environment"
|
561 |
msgstr "Umgebungsvariable"
|
562 |
|
563 |
# @ captcha
|
564 |
-
#: bws_menu.php:
|
565 |
msgid "Active Plugins"
|
566 |
msgstr "Aktivierte Plugins"
|
567 |
|
568 |
# @ captcha
|
569 |
-
#: bws_menu.php:
|
570 |
msgid "Inactive Plugins"
|
571 |
msgstr "Inactive Plugins"
|
572 |
|
573 |
# @ captcha
|
574 |
-
#: bws_menu.php:
|
575 |
msgid "Send to support"
|
576 |
msgstr "Sende zuzm Support"
|
577 |
|
578 |
# @ captcha
|
579 |
-
#: bws_menu.php:
|
580 |
msgid "Send to custom email »"
|
581 |
msgstr "Senden Sie eine benutzerdefinierte E-Mail zu »"
|
582 |
|
583 |
# @ captcha
|
584 |
#~ msgid "Pro plugins"
|
585 |
#~ msgstr "BWS Plugins"
|
586 |
-
|
587 |
# @ captcha
|
588 |
#~ msgid "Activated plugins"
|
589 |
#~ msgstr "Aktivierte Plugins"
|
590 |
-
|
591 |
# @ captcha
|
592 |
#~ msgid "Read more"
|
593 |
#~ msgstr "Lesen Sie mehr"
|
594 |
-
|
595 |
# @ captcha
|
596 |
#~ msgid "Purchase"
|
597 |
#~ msgstr "Kaufen"
|
598 |
-
|
599 |
# @ captcha
|
600 |
#~ msgid "Free plugins"
|
601 |
#~ msgstr "Freie Plugins"
|
602 |
-
|
603 |
# @ captcha
|
604 |
#~ msgid "Download"
|
605 |
#~ msgstr "Herunterladen"
|
606 |
-
|
607 |
# @ captcha
|
608 |
#~ msgid "Install now from wordpress.org"
|
609 |
#~ msgstr "Installiere jetzt von wordpress.org"
|
610 |
-
|
611 |
# @ captcha
|
612 |
#, fuzzy
|
613 |
#~ msgid "Activated theme"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-05-11 14:10+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-05-11 14:10+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"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
"X-Poedit-Basepath: ..\n"
|
18 |
"X-Textdomain-Support: yes\n"
|
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: bws_functions.php:89
|
22 |
msgid "requires"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: bws_functions.php:91
|
26 |
+
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
|
|
|
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: bws_functions.php:92
|
30 |
msgid "Back to the WordPress"
|
31 |
msgstr ""
|
32 |
|
33 |
# @ captcha
|
34 |
+
#: bws_functions.php:94
|
35 |
#, fuzzy
|
36 |
msgid "Plugins page"
|
37 |
msgstr "BWS Plugins"
|
38 |
|
39 |
+
#: bws_functions.php:151
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
msgid "It’s time to upgrade your"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: bws_functions.php:151
|
44 |
msgid "to"
|
45 |
msgstr ""
|
46 |
|
47 |
# @ captcha
|
48 |
+
#: bws_functions.php:151
|
49 |
#, fuzzy
|
50 |
msgid "version!"
|
51 |
msgstr "PHP Version"
|
52 |
|
53 |
+
#: bws_functions.php:152
|
54 |
msgid "Extend standard plugin functionality with new great options."
|
55 |
msgstr ""
|
56 |
|
57 |
+
# @ captcha
|
58 |
+
#: bws_functions.php:155
|
59 |
+
#: bws_functions.php:542
|
60 |
+
#, fuzzy
|
61 |
+
msgid "Learn More"
|
62 |
+
msgstr "Lesen Sie mehr"
|
63 |
+
|
64 |
+
#: bws_functions.php:172
|
65 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
66 |
msgstr ""
|
67 |
|
68 |
# @ captcha
|
69 |
+
#: bws_functions.php:173
|
70 |
#, fuzzy
|
71 |
msgid "Rate the plugin"
|
72 |
msgstr "Aktivierte Plugins"
|
73 |
|
74 |
# @ captcha
|
75 |
+
#: bws_functions.php:176
|
76 |
#, fuzzy
|
77 |
msgid "If there is something wrong about it, please contact us"
|
78 |
msgstr "Wenn Sie irgendwelche Fragen haben, kontaktieren Sie uns bitte über"
|
79 |
|
80 |
+
#: bws_functions.php:193
|
81 |
+
#: bws_functions.php:229
|
82 |
msgid "Wrong license key"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: bws_functions.php:223
|
86 |
+
#: bws_functions.php:455
|
87 |
+
#: bws_functions.php:506
|
88 |
+
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: bws_functions.php:223
|
92 |
+
#: bws_functions.php:455
|
93 |
+
#: bws_functions.php:506
|
94 |
msgid "We are sorry for inconvenience."
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: bws_functions.php:231
|
98 |
msgid "This license key is bind to another site"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: bws_functions.php:233
|
102 |
+
#: bws_functions.php:365
|
103 |
+
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
|
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: bws_functions.php:235
|
107 |
+
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
|
|
|
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: bws_functions.php:237
|
111 |
+
msgid "Unfortunately, the PRO licence was already installed to this domain. The PRO Trial license can be installed only once."
|
|
|
|
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: bws_functions.php:248
|
115 |
+
#: bws_functions.php:270
|
116 |
+
#: bws_functions.php:292
|
117 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: bws_functions.php:260
|
121 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: bws_functions.php:266
|
125 |
+
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
|
|
|
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: bws_functions.php:273
|
129 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: bws_functions.php:296
|
133 |
+
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
|
|
|
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: bws_functions.php:321
|
137 |
msgid "Please, enter Your license key"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: bws_functions.php:338
|
141 |
+
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
|
|
|
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: bws_functions.php:340
|
145 |
+
#: bws_functions.php:422
|
146 |
msgid "Please, go to"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: bws_functions.php:340
|
150 |
+
#: bws_functions.php:422
|
151 |
msgid "the setting page"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: bws_functions.php:341
|
155 |
+
#: bws_functions.php:423
|
156 |
msgid "You will be redirected automatically in 5 seconds."
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: bws_functions.php:346
|
160 |
msgid "You can download and activate"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: bws_functions.php:348
|
164 |
msgid "version of this plugin by entering Your license key."
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: bws_functions.php:350
|
168 |
+
#: bws_functions.php:391
|
169 |
+
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
|
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: bws_functions.php:352
|
173 |
+
#: bws_functions.php:393
|
174 |
msgid "(your username is the email you specify when purchasing the product)."
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: bws_functions.php:356
|
178 |
+
msgid "or"
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: bws_functions.php:356
|
182 |
+
#, php-format
|
183 |
+
msgid "Start Your Free %s-Day Trial Now"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
# @ captcha
|
187 |
+
#: bws_functions.php:362
|
188 |
+
#: bws_functions.php:371
|
189 |
+
#: bws_functions.php:401
|
190 |
+
#: bws_functions.php:409
|
191 |
+
#: bws_menu.php:643
|
192 |
+
#: bws_menu.php:700
|
193 |
#, fuzzy
|
194 |
msgid "Activate"
|
195 |
msgstr "Aktivierte Plugins"
|
196 |
|
197 |
+
#: bws_functions.php:388
|
198 |
+
#: bws_functions.php:481
|
199 |
+
#, php-format
|
200 |
+
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: bws_functions.php:389
|
204 |
+
msgid "After that you can activate it by entering your license key."
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: bws_functions.php:403
|
208 |
+
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: bws_functions.php:420
|
212 |
+
msgid "Congratulations! The PRO license of the plugin is successfully activated."
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: bws_functions.php:461
|
216 |
+
msgid "Wrong license key."
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: bws_functions.php:463
|
220 |
+
msgid "This license key is bind to another site."
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: bws_functions.php:465
|
224 |
+
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: bws_functions.php:467
|
228 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: bws_functions.php:469
|
232 |
+
msgid "Unfortunately, the PRO Trial licence was already installed to this domain. The PRO Trial license can be installed only once."
|
233 |
+
msgstr ""
|
234 |
+
|
235 |
+
#: bws_functions.php:473
|
236 |
+
msgid "The PRO Trial license key is valid."
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: bws_functions.php:475
|
240 |
msgid "The license key is valid."
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: bws_functions.php:478
|
244 |
+
msgid "Your license will expire on"
|
245 |
+
msgstr ""
|
246 |
+
|
247 |
+
#: bws_functions.php:511
|
248 |
msgid "Please, enter your license key"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: bws_functions.php:524
|
252 |
+
msgid "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"
|
|
|
|
|
|
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: bws_functions.php:524
|
256 |
+
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
|
|
|
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: bws_functions.php:528
|
260 |
msgid "Check license key"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: bws_functions.php:542
|
264 |
+
msgid "WARNING: Illegal use notification"
|
|
|
|
|
|
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: bws_functions.php:542
|
268 |
+
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."
|
|
|
|
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: bws_functions.php:550
|
272 |
+
msgid "Notice: Your PRO Trial license has expired. To continue using the plugin you should buy a PRO license"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: bws_functions.php:552
|
276 |
+
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
277 |
msgstr ""
|
278 |
|
279 |
# @ captcha
|
280 |
+
#: bws_functions.php:552
|
281 |
+
#: bws_functions.php:605
|
282 |
+
#: bws_menu.php:619
|
283 |
+
#: bws_menu.php:641
|
284 |
+
#: bws_menu.php:668
|
285 |
+
#: bws_menu.php:698
|
286 |
+
#: bws_menu.php:744
|
287 |
#, fuzzy
|
288 |
msgid "Learn more"
|
289 |
msgstr "Lesen Sie mehr"
|
290 |
|
291 |
+
#: bws_functions.php:562
|
292 |
+
#, php-format
|
293 |
+
msgid "Notice: You are using the PRO Trial license of %s plugin."
|
294 |
+
msgstr ""
|
295 |
+
|
296 |
+
#: bws_functions.php:564
|
297 |
+
msgid "Notice: You are using the PRO Trial license of plugin."
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: bws_functions.php:567
|
301 |
+
msgid "The PRO Trial license will expire on"
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: bws_functions.php:605
|
305 |
msgid "You license for"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: bws_functions.php:605
|
309 |
msgid "expires on"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: bws_functions.php:605
|
313 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: bws_functions.php:680
|
317 |
msgid "Close"
|
318 |
msgstr ""
|
319 |
|
320 |
# @ captcha
|
321 |
+
#: bws_menu.php:456
|
322 |
msgid "Not set"
|
323 |
msgstr "Nicht festgelegt"
|
324 |
|
325 |
# @ captcha
|
326 |
+
#: bws_menu.php:458
|
327 |
+
#: bws_menu.php:459
|
328 |
msgid "On"
|
329 |
msgstr "Ein"
|
330 |
|
331 |
# @ captcha
|
332 |
+
#: bws_menu.php:458
|
333 |
+
#: bws_menu.php:459
|
334 |
msgid "Off"
|
335 |
msgstr "Ausgeschaltet"
|
336 |
|
337 |
# @ captcha
|
338 |
+
#: bws_menu.php:460
|
339 |
+
#: bws_menu.php:461
|
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:464
|
349 |
msgid " Mb"
|
350 |
msgstr " Mb"
|
351 |
|
352 |
# @ captcha
|
353 |
+
#: bws_menu.php:465
|
354 |
+
#: bws_menu.php:466
|
355 |
+
#: bws_menu.php:467
|
356 |
+
#: bws_menu.php:472
|
357 |
msgid "Yes"
|
358 |
msgstr "Ja"
|
359 |
|
360 |
# @ captcha
|
361 |
+
#: bws_menu.php:465
|
362 |
+
#: bws_menu.php:466
|
363 |
+
#: bws_menu.php:467
|
364 |
+
#: bws_menu.php:474
|
365 |
msgid "No"
|
366 |
msgstr "Nein"
|
367 |
|
368 |
# @ captcha
|
369 |
+
#: bws_menu.php:484
|
370 |
msgid "Operating System"
|
371 |
msgstr "Betriebs-System"
|
372 |
|
373 |
# @ captcha
|
374 |
+
#: bws_menu.php:485
|
375 |
msgid "Server"
|
376 |
msgstr "Server"
|
377 |
|
378 |
# @ captcha
|
379 |
+
#: bws_menu.php:486
|
380 |
msgid "Memory usage"
|
381 |
msgstr "Speichernutzung"
|
382 |
|
383 |
# @ captcha
|
384 |
+
#: bws_menu.php:487
|
385 |
msgid "MYSQL Version"
|
386 |
msgstr "MYSQL Version"
|
387 |
|
388 |
# @ captcha
|
389 |
+
#: bws_menu.php:488
|
390 |
msgid "SQL Mode"
|
391 |
msgstr "SQL Modus"
|
392 |
|
393 |
# @ captcha
|
394 |
+
#: bws_menu.php:489
|
395 |
msgid "PHP Version"
|
396 |
msgstr "PHP Version"
|
397 |
|
398 |
# @ captcha
|
399 |
+
#: bws_menu.php:490
|
400 |
msgid "PHP Safe Mode"
|
401 |
msgstr "PHP Gesicherter Modus"
|
402 |
|
403 |
# @ captcha
|
404 |
+
#: bws_menu.php:491
|
405 |
msgid "PHP Allow URL fopen"
|
406 |
msgstr "PHP Erlaubet URL zu öffnen (fopen)"
|
407 |
|
408 |
# @ captcha
|
409 |
+
#: bws_menu.php:492
|
410 |
msgid "PHP Memory Limit"
|
411 |
msgstr "PHP Speicher-Grenze"
|
412 |
|
413 |
# @ captcha
|
414 |
+
#: bws_menu.php:493
|
415 |
msgid "PHP Max Upload Size"
|
416 |
msgstr "PHP Maximale Upload Größe"
|
417 |
|
418 |
# @ captcha
|
419 |
+
#: bws_menu.php:494
|
420 |
msgid "PHP Max Post Size"
|
421 |
msgstr "PHP Maximale Beitrags-Größe"
|
422 |
|
423 |
# @ captcha
|
424 |
+
#: bws_menu.php:495
|
425 |
msgid "PHP Max Script Execute Time"
|
426 |
msgstr "PHP Maximale Script Ausführungszeit"
|
427 |
|
428 |
# @ captcha
|
429 |
+
#: bws_menu.php:496
|
430 |
msgid "PHP Exif support"
|
431 |
msgstr "PHP Exif Support"
|
432 |
|
433 |
# @ captcha
|
434 |
+
#: bws_menu.php:497
|
435 |
msgid "PHP IPTC support"
|
436 |
msgstr "PHP IPTC Support"
|
437 |
|
438 |
# @ captcha
|
439 |
+
#: bws_menu.php:498
|
440 |
msgid "PHP XML support"
|
441 |
msgstr "PHP XML Support"
|
442 |
|
443 |
# @ captcha
|
444 |
+
#: bws_menu.php:499
|
445 |
msgid "Site URL"
|
446 |
msgstr "Site URL"
|
447 |
|
448 |
# @ captcha
|
449 |
+
#: bws_menu.php:500
|
450 |
msgid "Home URL"
|
451 |
msgstr "Home URL"
|
452 |
|
453 |
# @ captcha
|
454 |
+
#: bws_menu.php:503
|
455 |
msgid "WordPress Version"
|
456 |
msgstr "WordPress Version"
|
457 |
|
458 |
# @ captcha
|
459 |
+
#: bws_menu.php:504
|
460 |
msgid "WordPress DB Version"
|
461 |
msgstr "WordPress DB Version"
|
462 |
|
463 |
# @ captcha
|
464 |
+
#: bws_menu.php:505
|
465 |
msgid "Multisite"
|
466 |
msgstr "Multisite"
|
467 |
|
468 |
# @ captcha
|
469 |
+
#: bws_menu.php:506
|
470 |
msgid "Active Theme"
|
471 |
msgstr "Actives Theme"
|
472 |
|
473 |
# @ captcha
|
474 |
+
#: bws_menu.php:521
|
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:525
|
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:529
|
485 |
msgid "Thank you for contacting us."
|
486 |
msgstr "Vielen Dank für Ihre Kontaktaufnahme."
|
487 |
|
488 |
# @ captcha
|
489 |
+
#: bws_menu.php:562
|
490 |
msgid "Sorry, email message could not be delivered."
|
491 |
msgstr "Sorry, E-Mail konnte nicht zugestellt werden."
|
492 |
|
493 |
+
#: bws_menu.php:570
|
494 |
msgid "Need help?"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: bws_menu.php:571
|
498 |
msgid "Client area"
|
499 |
msgstr ""
|
500 |
|
501 |
# @ captcha
|
502 |
+
#: bws_menu.php:572
|
503 |
+
#: bws_menu.php:883
|
504 |
msgid "System status"
|
505 |
msgstr "System Status"
|
506 |
|
507 |
# @ captcha
|
508 |
+
#: bws_menu.php:577
|
509 |
#, fuzzy
|
510 |
msgid "Plugins"
|
511 |
msgstr "BWS Plugins"
|
512 |
|
513 |
+
#: bws_menu.php:579
|
514 |
msgid "Themes"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: bws_menu.php:584
|
518 |
msgid "All"
|
519 |
msgstr ""
|
520 |
|
521 |
# @ default
|
522 |
+
#: bws_menu.php:585
|
523 |
#, fuzzy
|
524 |
msgid "Installed"
|
525 |
msgstr "Installiere %s"
|
526 |
|
527 |
# @ captcha
|
528 |
+
#: bws_menu.php:586
|
529 |
#, fuzzy
|
530 |
msgid "Recommended"
|
531 |
msgstr "Empfohlene Plugins"
|
532 |
|
533 |
# @ captcha
|
534 |
+
#: bws_menu.php:590
|
535 |
msgid "Installed plugins"
|
536 |
msgstr "Installierte Plugins"
|
537 |
|
538 |
# @ captcha
|
539 |
+
#: bws_menu.php:622
|
540 |
+
#: bws_menu.php:671
|
541 |
msgid "Settings"
|
542 |
msgstr "Einstellungen"
|
543 |
|
544 |
# @ captcha
|
545 |
+
#: bws_menu.php:643
|
546 |
+
#: bws_menu.php:700
|
547 |
#, fuzzy
|
548 |
msgid "Activate this plugin"
|
549 |
msgstr "Aktivierte Plugins"
|
550 |
|
551 |
+
#: bws_menu.php:658
|
552 |
+
#: bws_menu.php:688
|
553 |
+
#: bws_menu.php:734
|
554 |
msgid "Go"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: bws_menu.php:662
|
558 |
+
#: bws_menu.php:692
|
559 |
+
#: bws_menu.php:738
|
560 |
msgid "DONATE"
|
561 |
msgstr ""
|
562 |
|
563 |
# @ captcha
|
564 |
+
#: bws_menu.php:708
|
565 |
msgid "Recommended plugins"
|
566 |
msgstr "Empfohlene Plugins"
|
567 |
|
568 |
# @ default
|
569 |
+
#: bws_menu.php:746
|
570 |
#, fuzzy
|
571 |
msgid "Install now"
|
572 |
msgstr "Installiere %s"
|
573 |
|
574 |
+
#: bws_menu.php:767
|
575 |
msgid "Try again"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: bws_menu.php:785
|
579 |
#, php-format
|
580 |
msgid "Preview “%s”"
|
581 |
msgstr ""
|
582 |
|
583 |
# @ default
|
584 |
+
#: bws_menu.php:816
|
585 |
#, php-format
|
586 |
msgid "Install %s"
|
587 |
msgstr "Installiere %s"
|
588 |
|
589 |
# @ default
|
590 |
+
#: bws_menu.php:816
|
591 |
#, fuzzy
|
592 |
msgid "Install Now"
|
593 |
msgstr "Installiere %s"
|
594 |
|
595 |
+
#: bws_menu.php:819
|
596 |
#, php-format
|
597 |
msgid "Update to version %s"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: bws_menu.php:819
|
601 |
msgid "Update"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: bws_menu.php:826
|
605 |
#, php-format
|
606 |
msgid "Preview %s"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: bws_menu.php:826
|
610 |
msgid "Preview"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: bws_menu.php:832
|
614 |
+
#: bws_menu.php:864
|
615 |
#, php-format
|
616 |
msgid "By %s"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: bws_menu.php:838
|
620 |
msgid "Details"
|
621 |
msgstr ""
|
622 |
|
623 |
# @ default
|
624 |
+
#: bws_menu.php:870
|
625 |
#, fuzzy
|
626 |
msgid "Already Installed"
|
627 |
msgstr "Installiere %s"
|
628 |
|
629 |
# @ captcha
|
630 |
+
#: bws_menu.php:886
|
631 |
msgid "Environment"
|
632 |
msgstr "Umgebungsvariable"
|
633 |
|
634 |
# @ captcha
|
635 |
+
#: bws_menu.php:897
|
636 |
msgid "Active Plugins"
|
637 |
msgstr "Aktivierte Plugins"
|
638 |
|
639 |
# @ captcha
|
640 |
+
#: bws_menu.php:910
|
641 |
msgid "Inactive Plugins"
|
642 |
msgstr "Inactive Plugins"
|
643 |
|
644 |
# @ captcha
|
645 |
+
#: bws_menu.php:926
|
646 |
msgid "Send to support"
|
647 |
msgstr "Sende zuzm Support"
|
648 |
|
649 |
# @ captcha
|
650 |
+
#: bws_menu.php:933
|
651 |
msgid "Send to custom email »"
|
652 |
msgstr "Senden Sie eine benutzerdefinierte E-Mail zu »"
|
653 |
|
654 |
# @ captcha
|
655 |
#~ msgid "Pro plugins"
|
656 |
#~ msgstr "BWS Plugins"
|
|
|
657 |
# @ captcha
|
658 |
#~ msgid "Activated plugins"
|
659 |
#~ msgstr "Aktivierte Plugins"
|
|
|
660 |
# @ captcha
|
661 |
#~ msgid "Read more"
|
662 |
#~ msgstr "Lesen Sie mehr"
|
|
|
663 |
# @ captcha
|
664 |
#~ msgid "Purchase"
|
665 |
#~ msgstr "Kaufen"
|
|
|
666 |
# @ captcha
|
667 |
#~ msgid "Free plugins"
|
668 |
#~ msgstr "Freie Plugins"
|
|
|
669 |
# @ captcha
|
670 |
#~ msgid "Download"
|
671 |
#~ msgstr "Herunterladen"
|
|
|
672 |
# @ captcha
|
673 |
#~ msgid "Install now from wordpress.org"
|
674 |
#~ msgstr "Installiere jetzt von wordpress.org"
|
|
|
675 |
# @ captcha
|
676 |
#, fuzzy
|
677 |
#~ msgid "Activated theme"
|
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"
|
@@ -14,510 +14,581 @@ msgstr ""
|
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"Plural-Forms: nplurals=2;plural=n>2;\n"
|
17 |
-
"X-Generator: Poedit 1.5.
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: bws_functions.php:
|
21 |
-
#, fuzzy
|
22 |
msgid "requires"
|
23 |
-
msgstr "
|
24 |
|
25 |
-
#: bws_functions.php:
|
26 |
-
msgid ""
|
27 |
-
"
|
28 |
-
"try again."
|
29 |
-
msgstr ""
|
30 |
|
31 |
-
#: bws_functions.php:
|
32 |
msgid "Back to the WordPress"
|
33 |
-
msgstr ""
|
34 |
|
35 |
-
#: bws_functions.php:
|
36 |
-
#, fuzzy
|
37 |
msgid "Plugins page"
|
38 |
-
msgstr "
|
39 |
-
|
40 |
-
#: bws_functions.php:134
|
41 |
-
#, fuzzy
|
42 |
-
msgid "Learn More"
|
43 |
-
msgstr "En savoir plus"
|
44 |
|
45 |
-
#: bws_functions.php:
|
46 |
msgid "It’s time to upgrade your"
|
47 |
-
msgstr ""
|
48 |
|
49 |
-
#: bws_functions.php:
|
50 |
msgid "to"
|
51 |
-
msgstr ""
|
52 |
|
53 |
-
#: bws_functions.php:
|
54 |
-
#, fuzzy
|
55 |
msgid "version!"
|
56 |
-
msgstr "
|
57 |
|
58 |
-
#: bws_functions.php:
|
59 |
msgid "Extend standard plugin functionality with new great options."
|
60 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
61 |
|
62 |
-
#: bws_functions.php:
|
63 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
64 |
-
msgstr ""
|
65 |
|
66 |
-
#: bws_functions.php:
|
67 |
-
#, fuzzy
|
68 |
msgid "Rate the plugin"
|
69 |
-
msgstr "
|
70 |
|
71 |
-
#: bws_functions.php:
|
72 |
-
#, fuzzy
|
73 |
msgid "If there is something wrong about it, please contact us"
|
74 |
-
msgstr "Si vous avez
|
75 |
|
76 |
-
#: bws_functions.php:
|
|
|
77 |
msgid "Wrong license key"
|
78 |
-
msgstr ""
|
79 |
|
80 |
-
#: bws_functions.php:
|
81 |
-
|
82 |
-
|
83 |
-
"please contact us"
|
84 |
-
msgstr ""
|
85 |
|
86 |
-
#: bws_functions.php:
|
|
|
|
|
87 |
msgid "We are sorry for inconvenience."
|
88 |
-
msgstr ""
|
89 |
|
90 |
-
#: bws_functions.php:
|
91 |
msgid "This license key is bind to another site"
|
92 |
-
msgstr ""
|
93 |
|
94 |
-
#: bws_functions.php:
|
95 |
-
|
96 |
-
"Unfortunately, you have exceeded the number of available tries per day. "
|
97 |
-
"
|
98 |
-
msgstr ""
|
99 |
|
100 |
-
#: bws_functions.php:
|
101 |
-
msgid ""
|
102 |
-
"
|
103 |
-
"support and plugin updates you should extend it in your"
|
104 |
-
msgstr ""
|
105 |
|
106 |
-
#: bws_functions.php:
|
107 |
-
msgid ""
|
108 |
-
"
|
109 |
-
"Trial license can be installed only once."
|
110 |
-
msgstr ""
|
111 |
|
112 |
-
#: bws_functions.php:
|
|
|
|
|
113 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
114 |
-
msgstr ""
|
115 |
|
116 |
-
#: bws_functions.php:
|
117 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
118 |
-
msgstr ""
|
119 |
|
120 |
-
#: bws_functions.php:
|
121 |
-
msgid ""
|
122 |
-
"
|
123 |
-
"plugin manually"
|
124 |
-
msgstr ""
|
125 |
|
126 |
-
#: bws_functions.php:
|
127 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
128 |
-
msgstr ""
|
129 |
|
130 |
-
#: bws_functions.php:
|
131 |
-
msgid ""
|
132 |
-
"
|
133 |
-
"sorry for inconvenience."
|
134 |
-
msgstr ""
|
135 |
|
136 |
-
#: bws_functions.php:
|
137 |
-
#, fuzzy
|
138 |
msgid "Please, enter Your license key"
|
139 |
-
msgstr "Merci de saisir votre
|
140 |
|
141 |
-
#: bws_functions.php:
|
142 |
-
msgid ""
|
143 |
-
"
|
144 |
-
"activated."
|
145 |
-
msgstr ""
|
146 |
|
147 |
-
#: bws_functions.php:
|
|
|
148 |
msgid "Please, go to"
|
149 |
-
msgstr ""
|
150 |
|
151 |
-
#: bws_functions.php:
|
152 |
-
|
153 |
msgid "the setting page"
|
154 |
msgstr "Options supplémentaires"
|
155 |
|
156 |
-
#: bws_functions.php:
|
|
|
157 |
msgid "You will be redirected automatically in 5 seconds."
|
158 |
-
msgstr ""
|
159 |
|
160 |
-
#: bws_functions.php:
|
161 |
msgid "You can download and activate"
|
162 |
-
msgstr ""
|
163 |
|
164 |
-
#: bws_functions.php:
|
165 |
msgid "version of this plugin by entering Your license key."
|
166 |
-
msgstr ""
|
167 |
|
168 |
-
#: bws_functions.php:
|
169 |
-
|
170 |
-
"You can find your license key on your personal page Client area, by clicking "
|
171 |
-
"
|
172 |
-
msgstr ""
|
173 |
|
174 |
-
#: bws_functions.php:
|
|
|
175 |
msgid "(your username is the email you specify when purchasing the product)."
|
176 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
177 |
|
178 |
-
#: bws_functions.php:
|
179 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
180 |
msgid "Activate"
|
181 |
msgstr "Activé"
|
182 |
|
183 |
-
#: bws_functions.php:
|
184 |
-
|
185 |
-
|
186 |
-
"
|
187 |
-
msgstr ""
|
188 |
|
189 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
191 |
-
msgstr ""
|
192 |
|
193 |
-
#: bws_functions.php:
|
194 |
-
msgid "
|
195 |
-
msgstr ""
|
196 |
|
197 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
198 |
msgid "The license key is valid."
|
199 |
-
msgstr ""
|
200 |
|
201 |
-
#: bws_functions.php:
|
202 |
-
|
|
|
|
|
|
|
203 |
msgid "Please, enter your license key"
|
204 |
-
msgstr "Merci de saisir votre
|
205 |
|
206 |
-
#: bws_functions.php:
|
207 |
-
msgid ""
|
208 |
-
"
|
209 |
-
"field below. You can find your license key on your personal page - Client "
|
210 |
-
"area - on our website"
|
211 |
-
msgstr ""
|
212 |
|
213 |
-
#: bws_functions.php:
|
214 |
-
msgid ""
|
215 |
-
"(
|
216 |
-
"necessary, please submit \"Lost your password?\" request."
|
217 |
-
msgstr ""
|
218 |
|
219 |
-
#: bws_functions.php:
|
220 |
msgid "Check license key"
|
221 |
-
msgstr ""
|
222 |
|
223 |
-
#: bws_functions.php:
|
224 |
-
msgid ""
|
225 |
-
"WARNING: We have noticed illegal use of our plugin by you. We strongly "
|
226 |
-
"recommend you to solve the problem within 24 hours, otherwise the plugin "
|
227 |
-
"will be deactivated. Please go to your personal"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: bws_functions.php:
|
231 |
-
|
232 |
-
"
|
233 |
-
"
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
244 |
msgid "Learn more"
|
245 |
msgstr "En savoir plus"
|
246 |
|
247 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
248 |
msgid "You license for"
|
249 |
-
msgstr ""
|
250 |
|
251 |
-
#: bws_functions.php:
|
252 |
msgid "expires on"
|
253 |
-
msgstr ""
|
254 |
|
255 |
-
#: bws_functions.php:
|
256 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
257 |
-
msgstr ""
|
258 |
|
259 |
-
#: bws_functions.php:
|
260 |
msgid "Close"
|
261 |
-
msgstr ""
|
262 |
|
263 |
-
#: bws_menu.php:
|
264 |
msgid "Not set"
|
265 |
msgstr "Not set"
|
266 |
|
267 |
-
#: bws_menu.php:
|
|
|
268 |
msgid "On"
|
269 |
msgstr "On"
|
270 |
|
271 |
-
#: bws_menu.php:
|
|
|
272 |
msgid "Off"
|
273 |
msgstr "Off"
|
274 |
|
275 |
-
#: bws_menu.php:
|
276 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
|
|
277 |
msgid "N/A"
|
278 |
msgstr "N/A"
|
279 |
|
280 |
-
#: bws_menu.php:
|
281 |
msgid " Mb"
|
282 |
msgstr " Mb"
|
283 |
|
284 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
285 |
msgid "Yes"
|
286 |
msgstr "Yes"
|
287 |
|
288 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
289 |
msgid "No"
|
290 |
msgstr "No"
|
291 |
|
292 |
-
#: bws_menu.php:
|
293 |
msgid "Operating System"
|
294 |
msgstr "Operating System"
|
295 |
|
296 |
-
#: bws_menu.php:
|
297 |
msgid "Server"
|
298 |
msgstr "Server"
|
299 |
|
300 |
-
#: bws_menu.php:
|
301 |
msgid "Memory usage"
|
302 |
msgstr "Memory usage"
|
303 |
|
304 |
-
#: bws_menu.php:
|
305 |
msgid "MYSQL Version"
|
306 |
msgstr "MYSQL Version"
|
307 |
|
308 |
-
#: bws_menu.php:
|
309 |
msgid "SQL Mode"
|
310 |
msgstr "SQL Mode"
|
311 |
|
312 |
-
#: bws_menu.php:
|
313 |
msgid "PHP Version"
|
314 |
msgstr "PHP Version"
|
315 |
|
316 |
-
#: bws_menu.php:
|
317 |
msgid "PHP Safe Mode"
|
318 |
msgstr "PHP Safe Mode"
|
319 |
|
320 |
-
#: bws_menu.php:
|
321 |
msgid "PHP Allow URL fopen"
|
322 |
msgstr "PHP Allow URL fopen"
|
323 |
|
324 |
-
#: bws_menu.php:
|
325 |
msgid "PHP Memory Limit"
|
326 |
msgstr "PHP Memory Limit"
|
327 |
|
328 |
-
#: bws_menu.php:
|
329 |
msgid "PHP Max Upload Size"
|
330 |
msgstr "PHP Max Upload Size"
|
331 |
|
332 |
-
#: bws_menu.php:
|
333 |
msgid "PHP Max Post Size"
|
334 |
msgstr "PHP Max Post Size"
|
335 |
|
336 |
-
#: bws_menu.php:
|
337 |
msgid "PHP Max Script Execute Time"
|
338 |
msgstr "PHP Max Script Execute Time"
|
339 |
|
340 |
-
#: bws_menu.php:
|
341 |
msgid "PHP Exif support"
|
342 |
msgstr "PHP Exif support"
|
343 |
|
344 |
-
#: bws_menu.php:
|
345 |
msgid "PHP IPTC support"
|
346 |
msgstr "PHP IPTC support"
|
347 |
|
348 |
-
#: bws_menu.php:
|
349 |
msgid "PHP XML support"
|
350 |
msgstr "PHP XML support"
|
351 |
|
352 |
-
#: bws_menu.php:
|
353 |
msgid "Site URL"
|
354 |
msgstr "Site URL"
|
355 |
|
356 |
-
#: bws_menu.php:
|
357 |
msgid "Home URL"
|
358 |
msgstr "Home URL"
|
359 |
|
360 |
-
#: bws_menu.php:
|
361 |
msgid "WordPress Version"
|
362 |
msgstr "WordPress Version"
|
363 |
|
364 |
-
#: bws_menu.php:
|
365 |
msgid "WordPress DB Version"
|
366 |
msgstr "WordPress DB Version"
|
367 |
|
368 |
-
#: bws_menu.php:
|
369 |
msgid "Multisite"
|
370 |
msgstr "Multisite"
|
371 |
|
372 |
-
#: bws_menu.php:
|
373 |
msgid "Active Theme"
|
374 |
msgstr "Active Theme"
|
375 |
|
376 |
-
#: bws_menu.php:
|
377 |
msgid "Please enter a valid email address."
|
378 |
msgstr "Merci de saisir une adresse e-mail valide."
|
379 |
|
380 |
-
#: bws_menu.php:
|
381 |
msgid "Email with system info is sent to "
|
382 |
msgstr "Le courriel avec les informations système est envoyé à"
|
383 |
|
384 |
-
#: bws_menu.php:
|
385 |
msgid "Thank you for contacting us."
|
386 |
msgstr "Merci de nous avoir contacté."
|
387 |
|
388 |
-
#: bws_menu.php:
|
389 |
msgid "Sorry, email message could not be delivered."
|
390 |
msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
|
391 |
|
392 |
-
#: bws_menu.php:
|
393 |
msgid "Need help?"
|
394 |
msgstr "Besoin d'aide ?"
|
395 |
|
396 |
-
#: bws_menu.php:
|
397 |
msgid "Client area"
|
398 |
msgstr "Espace client"
|
399 |
|
400 |
-
#: bws_menu.php:
|
|
|
401 |
msgid "System status"
|
402 |
msgstr "System status"
|
403 |
|
404 |
-
#: bws_menu.php:
|
405 |
msgid "Plugins"
|
406 |
msgstr "Externsions"
|
407 |
|
408 |
-
#: bws_menu.php:
|
409 |
msgid "Themes"
|
410 |
msgstr "Thèmes"
|
411 |
|
412 |
-
#: bws_menu.php:
|
413 |
msgid "All"
|
414 |
msgstr "Tous"
|
415 |
|
416 |
-
#: bws_menu.php:
|
417 |
msgid "Installed"
|
418 |
msgstr "Installé"
|
419 |
|
420 |
-
#: bws_menu.php:
|
421 |
msgid "Recommended"
|
422 |
msgstr "Recommandé"
|
423 |
|
424 |
-
#: bws_menu.php:
|
425 |
msgid "Installed plugins"
|
426 |
msgstr "Plugin installé"
|
427 |
|
428 |
-
#: bws_menu.php:
|
|
|
429 |
msgid "Settings"
|
430 |
msgstr "Réglages"
|
431 |
|
432 |
-
#: bws_menu.php:
|
|
|
433 |
msgid "Activate this plugin"
|
434 |
msgstr "Activer cette extension"
|
435 |
|
436 |
-
#: bws_menu.php:
|
|
|
|
|
437 |
msgid "Go"
|
438 |
msgstr "Passez"
|
439 |
|
440 |
-
#: bws_menu.php:
|
|
|
|
|
441 |
msgid "DONATE"
|
442 |
msgstr "Faire un don"
|
443 |
|
444 |
-
#: bws_menu.php:
|
445 |
msgid "Recommended plugins"
|
446 |
msgstr "Plugin recommandé"
|
447 |
|
448 |
-
#: bws_menu.php:
|
449 |
msgid "Install now"
|
450 |
msgstr "Installer maintenant"
|
451 |
|
452 |
-
#: bws_menu.php:
|
453 |
msgid "Try again"
|
454 |
msgstr "Essayer de nouveau"
|
455 |
|
456 |
-
#: bws_menu.php:
|
457 |
#, php-format
|
458 |
msgid "Preview “%s”"
|
459 |
msgstr "Pré-visualiser “%s”"
|
460 |
|
461 |
-
#: bws_menu.php:
|
462 |
#, php-format
|
463 |
msgid "Install %s"
|
464 |
msgstr "%s installé"
|
465 |
|
466 |
-
#: bws_menu.php:
|
467 |
msgid "Install Now"
|
468 |
msgstr "Installa Ora"
|
469 |
|
470 |
-
#: bws_menu.php:
|
471 |
#, php-format
|
472 |
msgid "Update to version %s"
|
473 |
msgstr "Mettre à jour pour la version %s"
|
474 |
|
475 |
-
#: bws_menu.php:
|
476 |
msgid "Update"
|
477 |
msgstr "Mettre à jour"
|
478 |
|
479 |
-
#: bws_menu.php:
|
480 |
#, php-format
|
481 |
msgid "Preview %s"
|
482 |
msgstr "Pré-visualiser %s"
|
483 |
|
484 |
-
#: bws_menu.php:
|
485 |
msgid "Preview"
|
486 |
msgstr "Pré-visualiser"
|
487 |
|
488 |
-
#: bws_menu.php:
|
|
|
489 |
#, php-format
|
490 |
msgid "By %s"
|
491 |
msgstr "Par %s"
|
492 |
|
493 |
-
#: bws_menu.php:
|
494 |
msgid "Details"
|
495 |
msgstr "Détails"
|
496 |
|
497 |
-
#: bws_menu.php:
|
498 |
msgid "Already Installed"
|
499 |
msgstr "Déjà installé"
|
500 |
|
501 |
-
#: bws_menu.php:
|
502 |
msgid "Environment"
|
503 |
msgstr "Environment"
|
504 |
|
505 |
-
#: bws_menu.php:
|
506 |
msgid "Active Plugins"
|
507 |
msgstr "Plugin actifs"
|
508 |
|
509 |
-
#: bws_menu.php:
|
510 |
msgid "Inactive Plugins"
|
511 |
msgstr "Plugin inactifs"
|
512 |
|
513 |
-
#: bws_menu.php:
|
514 |
msgid "Send to support"
|
515 |
msgstr "Envoyé au support"
|
516 |
|
517 |
-
#: bws_menu.php:
|
518 |
msgid "Send to custom email »"
|
519 |
msgstr "Envoyer un e-mail spécifique »"
|
520 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
521 |
#~ msgid "Switch to new interface"
|
522 |
#~ msgstr "Basculer vers la nouvelle interface"
|
523 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-05-11 14:11+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-05-11 14:11+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"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"Plural-Forms: nplurals=2;plural=n>2;\n"
|
17 |
+
"X-Generator: Poedit 1.5.7\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: bws_functions.php:89
|
|
|
21 |
msgid "requires"
|
22 |
+
msgstr "obligatoire"
|
23 |
|
24 |
+
#: bws_functions.php:91
|
25 |
+
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
26 |
+
msgstr "ou supérieure, c'est pourquoi il a été désactivé! Merci de faire la mise à jour de WordPress puis de ré-essayer."
|
|
|
|
|
27 |
|
28 |
+
#: bws_functions.php:92
|
29 |
msgid "Back to the WordPress"
|
30 |
+
msgstr "Retour à WordPress"
|
31 |
|
32 |
+
#: bws_functions.php:94
|
|
|
33 |
msgid "Plugins page"
|
34 |
+
msgstr "Page des extensions"
|
|
|
|
|
|
|
|
|
|
|
35 |
|
36 |
+
#: bws_functions.php:151
|
37 |
msgid "It’s time to upgrade your"
|
38 |
+
msgstr "C'est le moment de mettre à jour votre "
|
39 |
|
40 |
+
#: bws_functions.php:151
|
41 |
msgid "to"
|
42 |
+
msgstr "à"
|
43 |
|
44 |
+
#: bws_functions.php:151
|
|
|
45 |
msgid "version!"
|
46 |
+
msgstr "version"
|
47 |
|
48 |
+
#: bws_functions.php:152
|
49 |
msgid "Extend standard plugin functionality with new great options."
|
50 |
+
msgstr "Etend les fonctionalités classiques de l'extension avec des nouvelles options."
|
51 |
+
|
52 |
+
#: bws_functions.php:155
|
53 |
+
#: bws_functions.php:542
|
54 |
+
msgid "Learn More"
|
55 |
+
msgstr "En savoir plus"
|
56 |
|
57 |
+
#: bws_functions.php:172
|
58 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
59 |
+
msgstr "Si notre extension vous satisfait, merci de la notée avec 5 étoiles dans Wordpress"
|
60 |
|
61 |
+
#: bws_functions.php:173
|
|
|
62 |
msgid "Rate the plugin"
|
63 |
+
msgstr "Voter pour l'extension"
|
64 |
|
65 |
+
#: bws_functions.php:176
|
|
|
66 |
msgid "If there is something wrong about it, please contact us"
|
67 |
+
msgstr "Si vous avez une question, n'hésitez pas à nous contacter"
|
68 |
|
69 |
+
#: bws_functions.php:193
|
70 |
+
#: bws_functions.php:229
|
71 |
msgid "Wrong license key"
|
72 |
+
msgstr "Clé de licence incorrecte"
|
73 |
|
74 |
+
#: bws_functions.php:223
|
75 |
+
#: bws_functions.php:455
|
76 |
+
#: bws_functions.php:506
|
77 |
+
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
78 |
+
msgstr "Il est survenu une erreur. Essayer de nouveau. Si l'erreur se produit de nouveau, merci de contacter <a href=http://support.bestwebsoft.com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
|
79 |
|
80 |
+
#: bws_functions.php:223
|
81 |
+
#: bws_functions.php:455
|
82 |
+
#: bws_functions.php:506
|
83 |
msgid "We are sorry for inconvenience."
|
84 |
+
msgstr "Nous sommes désolés pour le désagrément."
|
85 |
|
86 |
+
#: bws_functions.php:231
|
87 |
msgid "This license key is bind to another site"
|
88 |
+
msgstr "La clé de licence correspond à un autre site."
|
89 |
|
90 |
+
#: bws_functions.php:233
|
91 |
+
#: bws_functions.php:365
|
92 |
+
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
93 |
+
msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
|
|
|
94 |
|
95 |
+
#: bws_functions.php:235
|
96 |
+
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
97 |
+
msgstr "Désoler, votre licence est terminée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller dans votre"
|
|
|
|
|
98 |
|
99 |
+
#: bws_functions.php:237
|
100 |
+
msgid "Unfortunately, the PRO licence was already installed to this domain. The PRO Trial license can be installed only once."
|
101 |
+
msgstr "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne peut-être installée qu'une seule fois."
|
|
|
|
|
102 |
|
103 |
+
#: bws_functions.php:248
|
104 |
+
#: bws_functions.php:270
|
105 |
+
#: bws_functions.php:292
|
106 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
107 |
+
msgstr "Erreur de téléchargement de l'archive ZIP. Merci de télécharger l'extension manuellement."
|
108 |
|
109 |
+
#: bws_functions.php:260
|
110 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
111 |
+
msgstr "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension manuellement."
|
112 |
|
113 |
+
#: bws_functions.php:266
|
114 |
+
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
115 |
+
msgstr "Votre server n'a pas le support du format des archives ZIP ou Phar. Merci de télécharger l'extension manuellement."
|
|
|
|
|
116 |
|
117 |
+
#: bws_functions.php:273
|
118 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
119 |
+
msgstr "Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension manuellement."
|
120 |
|
121 |
+
#: bws_functions.php:296
|
122 |
+
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
123 |
+
msgstr "Il est survenu une erreur. Essayer de nouveau ou bien télécharger l'extension manuellement.Nous sommes désolés pour le désagrément."
|
|
|
|
|
124 |
|
125 |
+
#: bws_functions.php:321
|
|
|
126 |
msgid "Please, enter Your license key"
|
127 |
+
msgstr "Merci de saisir votre clé de licence"
|
128 |
|
129 |
+
#: bws_functions.php:338
|
130 |
+
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
131 |
+
msgstr "Félicitations! La version PRO de cette extension a été téléchargée et activée avec succès."
|
|
|
|
|
132 |
|
133 |
+
#: bws_functions.php:340
|
134 |
+
#: bws_functions.php:422
|
135 |
msgid "Please, go to"
|
136 |
+
msgstr "Merci d'allez à"
|
137 |
|
138 |
+
#: bws_functions.php:340
|
139 |
+
#: bws_functions.php:422
|
140 |
msgid "the setting page"
|
141 |
msgstr "Options supplémentaires"
|
142 |
|
143 |
+
#: bws_functions.php:341
|
144 |
+
#: bws_functions.php:423
|
145 |
msgid "You will be redirected automatically in 5 seconds."
|
146 |
+
msgstr "Vous allez être redirigé automatiquement dans 5 secondes"
|
147 |
|
148 |
+
#: bws_functions.php:346
|
149 |
msgid "You can download and activate"
|
150 |
+
msgstr "Vous pouvez télécharger et activer la version "
|
151 |
|
152 |
+
#: bws_functions.php:348
|
153 |
msgid "version of this plugin by entering Your license key."
|
154 |
+
msgstr " de cette extension en donnant votre clé de licence."
|
155 |
|
156 |
+
#: bws_functions.php:350
|
157 |
+
#: bws_functions.php:391
|
158 |
+
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
159 |
+
msgstr "Vous pouvez trouver votre clé de licence sur votre page personnelle dans la zone cliente en cliquant sur le lien"
|
|
|
160 |
|
161 |
+
#: bws_functions.php:352
|
162 |
+
#: bws_functions.php:393
|
163 |
msgid "(your username is the email you specify when purchasing the product)."
|
164 |
+
msgstr "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de l'achat de l'extension)."
|
165 |
+
|
166 |
+
#: bws_functions.php:356
|
167 |
+
msgid "or"
|
168 |
+
msgstr "ou"
|
169 |
|
170 |
+
#: bws_functions.php:356
|
171 |
+
#, php-format
|
172 |
+
msgid "Start Your Free %s-Day Trial Now"
|
173 |
+
msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
|
174 |
+
|
175 |
+
#: bws_functions.php:362
|
176 |
+
#: bws_functions.php:371
|
177 |
+
#: bws_functions.php:401
|
178 |
+
#: bws_functions.php:409
|
179 |
+
#: bws_menu.php:643
|
180 |
+
#: bws_menu.php:700
|
181 |
msgid "Activate"
|
182 |
msgstr "Activé"
|
183 |
|
184 |
+
#: bws_functions.php:388
|
185 |
+
#: bws_functions.php:481
|
186 |
+
#, php-format
|
187 |
+
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
188 |
+
msgstr "Afin de pouvoir continuer à utiliser cette extension il est nécessaire d'acheter une licence %s."
|
189 |
|
190 |
+
#: bws_functions.php:389
|
191 |
+
msgid "After that you can activate it by entering your license key."
|
192 |
+
msgstr " Après vous pouvez activer cette extension en donnant votre clé de licence."
|
193 |
+
|
194 |
+
#: bws_functions.php:403
|
195 |
+
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
196 |
+
msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
|
197 |
+
|
198 |
+
#: bws_functions.php:420
|
199 |
+
msgid "Congratulations! The PRO license of the plugin is successfully activated."
|
200 |
+
msgstr "Félicitations! La version PRO de cette extension a été téléchargée et activée avec succès."
|
201 |
+
|
202 |
+
#: bws_functions.php:461
|
203 |
+
msgid "Wrong license key."
|
204 |
+
msgstr "Clé de licence incorrecte."
|
205 |
+
|
206 |
+
#: bws_functions.php:463
|
207 |
+
msgid "This license key is bind to another site."
|
208 |
+
msgstr "La clé de licence correspond à un autre site."
|
209 |
+
|
210 |
+
#: bws_functions.php:465
|
211 |
+
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
212 |
+
msgstr "La clé de licence est valide mais votre durée de validité est passée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller."
|
213 |
+
|
214 |
+
#: bws_functions.php:467
|
215 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
216 |
+
msgstr "Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de télécharger l'extension manuellement."
|
217 |
|
218 |
+
#: bws_functions.php:469
|
219 |
+
msgid "Unfortunately, the PRO Trial licence was already installed to this domain. The PRO Trial license can be installed only once."
|
220 |
+
msgstr "Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne peut-être installée qu'une seule fois."
|
221 |
|
222 |
+
#: bws_functions.php:473
|
223 |
+
msgid "The PRO Trial license key is valid."
|
224 |
+
msgstr "La clé de licence d'évaluation est valide."
|
225 |
+
|
226 |
+
#: bws_functions.php:475
|
227 |
msgid "The license key is valid."
|
228 |
+
msgstr "La clé de licence est valide."
|
229 |
|
230 |
+
#: bws_functions.php:478
|
231 |
+
msgid "Your license will expire on"
|
232 |
+
msgstr "Votre licence se termine le "
|
233 |
+
|
234 |
+
#: bws_functions.php:511
|
235 |
msgid "Please, enter your license key"
|
236 |
+
msgstr "Merci de saisir votre clé de licence"
|
237 |
|
238 |
+
#: bws_functions.php:524
|
239 |
+
msgid "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"
|
240 |
+
msgstr "Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la saisir de nouveau dans le champ ci-dessous. Vous pouvez trouver votre clé de licence sur votre page personnelle (zone client) sur notre site web."
|
|
|
|
|
|
|
241 |
|
242 |
+
#: bws_functions.php:524
|
243 |
+
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
244 |
+
msgstr "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de l'achat de l'extension). Si nécessaire, utilisez la fonction de demande de mot de passe perdu."
|
|
|
|
|
245 |
|
246 |
+
#: bws_functions.php:528
|
247 |
msgid "Check license key"
|
248 |
+
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 "AVERTISSEMENT : 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"
|
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"
|
261 |
+
msgstr "Votre licence d'évaluation est terminée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller."
|
262 |
+
|
263 |
+
#: bws_functions.php:552
|
264 |
+
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
265 |
+
msgstr "Votre licence est terminée. Pour continuer à disposer du support rapide et des mises à jour de l'extension vous devez la renouveller."
|
266 |
+
|
267 |
+
#: bws_functions.php:552
|
268 |
+
#: bws_functions.php:605
|
269 |
+
#: bws_menu.php:619
|
270 |
+
#: bws_menu.php:641
|
271 |
+
#: bws_menu.php:668
|
272 |
+
#: bws_menu.php:698
|
273 |
+
#: bws_menu.php:744
|
274 |
msgid "Learn more"
|
275 |
msgstr "En savoir plus"
|
276 |
|
277 |
+
#: bws_functions.php:562
|
278 |
+
#, php-format
|
279 |
+
msgid "Notice: You are using the PRO Trial license of %s plugin."
|
280 |
+
msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension %s."
|
281 |
+
|
282 |
+
#: bws_functions.php:564
|
283 |
+
msgid "Notice: You are using the PRO Trial license of plugin."
|
284 |
+
msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension."
|
285 |
+
|
286 |
+
#: bws_functions.php:567
|
287 |
+
msgid "The PRO Trial license will expire on"
|
288 |
+
msgstr "Votre licence se termine le "
|
289 |
+
|
290 |
+
#: bws_functions.php:605
|
291 |
msgid "You license for"
|
292 |
+
msgstr "Votre licence pour"
|
293 |
|
294 |
+
#: bws_functions.php:605
|
295 |
msgid "expires on"
|
296 |
+
msgstr "se termine le"
|
297 |
|
298 |
+
#: bws_functions.php:605
|
299 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
300 |
+
msgstr "et vous ne diposerez plus du support rapide et des mises à jour."
|
301 |
|
302 |
+
#: bws_functions.php:680
|
303 |
msgid "Close"
|
304 |
+
msgstr "Fermer"
|
305 |
|
306 |
+
#: bws_menu.php:456
|
307 |
msgid "Not set"
|
308 |
msgstr "Not set"
|
309 |
|
310 |
+
#: bws_menu.php:458
|
311 |
+
#: bws_menu.php:459
|
312 |
msgid "On"
|
313 |
msgstr "On"
|
314 |
|
315 |
+
#: bws_menu.php:458
|
316 |
+
#: bws_menu.php:459
|
317 |
msgid "Off"
|
318 |
msgstr "Off"
|
319 |
|
320 |
+
#: bws_menu.php:460
|
321 |
+
#: bws_menu.php:461
|
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:464
|
330 |
msgid " Mb"
|
331 |
msgstr " Mb"
|
332 |
|
333 |
+
#: bws_menu.php:465
|
334 |
+
#: bws_menu.php:466
|
335 |
+
#: bws_menu.php:467
|
336 |
+
#: bws_menu.php:472
|
337 |
msgid "Yes"
|
338 |
msgstr "Yes"
|
339 |
|
340 |
+
#: bws_menu.php:465
|
341 |
+
#: bws_menu.php:466
|
342 |
+
#: bws_menu.php:467
|
343 |
+
#: bws_menu.php:474
|
344 |
msgid "No"
|
345 |
msgstr "No"
|
346 |
|
347 |
+
#: bws_menu.php:484
|
348 |
msgid "Operating System"
|
349 |
msgstr "Operating System"
|
350 |
|
351 |
+
#: bws_menu.php:485
|
352 |
msgid "Server"
|
353 |
msgstr "Server"
|
354 |
|
355 |
+
#: bws_menu.php:486
|
356 |
msgid "Memory usage"
|
357 |
msgstr "Memory usage"
|
358 |
|
359 |
+
#: bws_menu.php:487
|
360 |
msgid "MYSQL Version"
|
361 |
msgstr "MYSQL Version"
|
362 |
|
363 |
+
#: bws_menu.php:488
|
364 |
msgid "SQL Mode"
|
365 |
msgstr "SQL Mode"
|
366 |
|
367 |
+
#: bws_menu.php:489
|
368 |
msgid "PHP Version"
|
369 |
msgstr "PHP Version"
|
370 |
|
371 |
+
#: bws_menu.php:490
|
372 |
msgid "PHP Safe Mode"
|
373 |
msgstr "PHP Safe Mode"
|
374 |
|
375 |
+
#: bws_menu.php:491
|
376 |
msgid "PHP Allow URL fopen"
|
377 |
msgstr "PHP Allow URL fopen"
|
378 |
|
379 |
+
#: bws_menu.php:492
|
380 |
msgid "PHP Memory Limit"
|
381 |
msgstr "PHP Memory Limit"
|
382 |
|
383 |
+
#: bws_menu.php:493
|
384 |
msgid "PHP Max Upload Size"
|
385 |
msgstr "PHP Max Upload Size"
|
386 |
|
387 |
+
#: bws_menu.php:494
|
388 |
msgid "PHP Max Post Size"
|
389 |
msgstr "PHP Max Post Size"
|
390 |
|
391 |
+
#: bws_menu.php:495
|
392 |
msgid "PHP Max Script Execute Time"
|
393 |
msgstr "PHP Max Script Execute Time"
|
394 |
|
395 |
+
#: bws_menu.php:496
|
396 |
msgid "PHP Exif support"
|
397 |
msgstr "PHP Exif support"
|
398 |
|
399 |
+
#: bws_menu.php:497
|
400 |
msgid "PHP IPTC support"
|
401 |
msgstr "PHP IPTC support"
|
402 |
|
403 |
+
#: bws_menu.php:498
|
404 |
msgid "PHP XML support"
|
405 |
msgstr "PHP XML support"
|
406 |
|
407 |
+
#: bws_menu.php:499
|
408 |
msgid "Site URL"
|
409 |
msgstr "Site URL"
|
410 |
|
411 |
+
#: bws_menu.php:500
|
412 |
msgid "Home URL"
|
413 |
msgstr "Home URL"
|
414 |
|
415 |
+
#: bws_menu.php:503
|
416 |
msgid "WordPress Version"
|
417 |
msgstr "WordPress Version"
|
418 |
|
419 |
+
#: bws_menu.php:504
|
420 |
msgid "WordPress DB Version"
|
421 |
msgstr "WordPress DB Version"
|
422 |
|
423 |
+
#: bws_menu.php:505
|
424 |
msgid "Multisite"
|
425 |
msgstr "Multisite"
|
426 |
|
427 |
+
#: bws_menu.php:506
|
428 |
msgid "Active Theme"
|
429 |
msgstr "Active Theme"
|
430 |
|
431 |
+
#: bws_menu.php:521
|
432 |
msgid "Please enter a valid email address."
|
433 |
msgstr "Merci de saisir une adresse e-mail valide."
|
434 |
|
435 |
+
#: bws_menu.php:525
|
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:529
|
440 |
msgid "Thank you for contacting us."
|
441 |
msgstr "Merci de nous avoir contacté."
|
442 |
|
443 |
+
#: bws_menu.php:562
|
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:570
|
448 |
msgid "Need help?"
|
449 |
msgstr "Besoin d'aide ?"
|
450 |
|
451 |
+
#: bws_menu.php:571
|
452 |
msgid "Client area"
|
453 |
msgstr "Espace client"
|
454 |
|
455 |
+
#: bws_menu.php:572
|
456 |
+
#: bws_menu.php:883
|
457 |
msgid "System status"
|
458 |
msgstr "System status"
|
459 |
|
460 |
+
#: bws_menu.php:577
|
461 |
msgid "Plugins"
|
462 |
msgstr "Externsions"
|
463 |
|
464 |
+
#: bws_menu.php:579
|
465 |
msgid "Themes"
|
466 |
msgstr "Thèmes"
|
467 |
|
468 |
+
#: bws_menu.php:584
|
469 |
msgid "All"
|
470 |
msgstr "Tous"
|
471 |
|
472 |
+
#: bws_menu.php:585
|
473 |
msgid "Installed"
|
474 |
msgstr "Installé"
|
475 |
|
476 |
+
#: bws_menu.php:586
|
477 |
msgid "Recommended"
|
478 |
msgstr "Recommandé"
|
479 |
|
480 |
+
#: bws_menu.php:590
|
481 |
msgid "Installed plugins"
|
482 |
msgstr "Plugin installé"
|
483 |
|
484 |
+
#: bws_menu.php:622
|
485 |
+
#: bws_menu.php:671
|
486 |
msgid "Settings"
|
487 |
msgstr "Réglages"
|
488 |
|
489 |
+
#: bws_menu.php:643
|
490 |
+
#: bws_menu.php:700
|
491 |
msgid "Activate this plugin"
|
492 |
msgstr "Activer cette extension"
|
493 |
|
494 |
+
#: bws_menu.php:658
|
495 |
+
#: bws_menu.php:688
|
496 |
+
#: bws_menu.php:734
|
497 |
msgid "Go"
|
498 |
msgstr "Passez"
|
499 |
|
500 |
+
#: bws_menu.php:662
|
501 |
+
#: bws_menu.php:692
|
502 |
+
#: bws_menu.php:738
|
503 |
msgid "DONATE"
|
504 |
msgstr "Faire un don"
|
505 |
|
506 |
+
#: bws_menu.php:708
|
507 |
msgid "Recommended plugins"
|
508 |
msgstr "Plugin recommandé"
|
509 |
|
510 |
+
#: bws_menu.php:746
|
511 |
msgid "Install now"
|
512 |
msgstr "Installer maintenant"
|
513 |
|
514 |
+
#: bws_menu.php:767
|
515 |
msgid "Try again"
|
516 |
msgstr "Essayer de nouveau"
|
517 |
|
518 |
+
#: bws_menu.php:785
|
519 |
#, php-format
|
520 |
msgid "Preview “%s”"
|
521 |
msgstr "Pré-visualiser “%s”"
|
522 |
|
523 |
+
#: bws_menu.php:816
|
524 |
#, php-format
|
525 |
msgid "Install %s"
|
526 |
msgstr "%s installé"
|
527 |
|
528 |
+
#: bws_menu.php:816
|
529 |
msgid "Install Now"
|
530 |
msgstr "Installa Ora"
|
531 |
|
532 |
+
#: bws_menu.php:819
|
533 |
#, php-format
|
534 |
msgid "Update to version %s"
|
535 |
msgstr "Mettre à jour pour la version %s"
|
536 |
|
537 |
+
#: bws_menu.php:819
|
538 |
msgid "Update"
|
539 |
msgstr "Mettre à jour"
|
540 |
|
541 |
+
#: bws_menu.php:826
|
542 |
#, php-format
|
543 |
msgid "Preview %s"
|
544 |
msgstr "Pré-visualiser %s"
|
545 |
|
546 |
+
#: bws_menu.php:826
|
547 |
msgid "Preview"
|
548 |
msgstr "Pré-visualiser"
|
549 |
|
550 |
+
#: bws_menu.php:832
|
551 |
+
#: bws_menu.php:864
|
552 |
#, php-format
|
553 |
msgid "By %s"
|
554 |
msgstr "Par %s"
|
555 |
|
556 |
+
#: bws_menu.php:838
|
557 |
msgid "Details"
|
558 |
msgstr "Détails"
|
559 |
|
560 |
+
#: bws_menu.php:870
|
561 |
msgid "Already Installed"
|
562 |
msgstr "Déjà installé"
|
563 |
|
564 |
+
#: bws_menu.php:886
|
565 |
msgid "Environment"
|
566 |
msgstr "Environment"
|
567 |
|
568 |
+
#: bws_menu.php:897
|
569 |
msgid "Active Plugins"
|
570 |
msgstr "Plugin actifs"
|
571 |
|
572 |
+
#: bws_menu.php:910
|
573 |
msgid "Inactive Plugins"
|
574 |
msgstr "Plugin inactifs"
|
575 |
|
576 |
+
#: bws_menu.php:926
|
577 |
msgid "Send to support"
|
578 |
msgstr "Envoyé au support"
|
579 |
|
580 |
+
#: bws_menu.php:933
|
581 |
msgid "Send to custom email »"
|
582 |
msgstr "Envoyer un e-mail spécifique »"
|
583 |
|
584 |
+
#~ msgid ""
|
585 |
+
#~ "(your username is the email you specify when purchasing the product), "
|
586 |
+
#~ "where you can make the necessary changes."
|
587 |
+
#~ msgstr ""
|
588 |
+
#~ "(votre nom d'utilisateur est l'adresse e-mail que vous avez donné lors de "
|
589 |
+
#~ "l'achat de l'extension), où vous pourrez faire les modifications "
|
590 |
+
#~ "nécessaires."
|
591 |
+
|
592 |
#~ msgid "Switch to new interface"
|
593 |
#~ msgstr "Basculer vers la nouvelle interface"
|
594 |
|
bws_menu/languages/bestwebsoft-it_IT.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-it_IT.po
CHANGED
@@ -2,10 +2,11 @@ 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 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -15,602 +16,667 @@ msgstr ""
|
|
15 |
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
"X-Poedit-Basepath: ..\n"
|
17 |
"X-Textdomain-Support: yes\n"
|
18 |
-
"Language: it_IT\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: bws_functions.php:
|
22 |
msgid "requires"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: bws_functions.php:
|
26 |
-
msgid ""
|
27 |
-
"or higher, that is why it has been deactivated! Please upgrade WordPress and "
|
28 |
-
"try again."
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: bws_functions.php:
|
32 |
msgid "Back to the WordPress"
|
33 |
msgstr ""
|
34 |
|
35 |
# @ bestwebsoft
|
36 |
-
#: bws_functions.php:
|
37 |
#, fuzzy
|
38 |
msgid "Plugins page"
|
39 |
msgstr "Plugin Pro"
|
40 |
|
41 |
-
|
42 |
-
#: bws_functions.php:134
|
43 |
-
#, fuzzy
|
44 |
-
msgid "Learn More"
|
45 |
-
msgstr "Leggi tutto"
|
46 |
-
|
47 |
-
#: bws_functions.php:137
|
48 |
msgid "It’s time to upgrade your"
|
49 |
msgstr ""
|
50 |
|
51 |
# @ captcha
|
52 |
-
#: bws_functions.php:
|
53 |
#, fuzzy
|
54 |
msgid "to"
|
55 |
msgstr "due"
|
56 |
|
57 |
# @ bestwebsoft
|
58 |
-
#: bws_functions.php:
|
59 |
#, fuzzy
|
60 |
msgid "version!"
|
61 |
msgstr "Versione PHP"
|
62 |
|
63 |
-
#: bws_functions.php:
|
64 |
msgid "Extend standard plugin functionality with new great options."
|
65 |
msgstr ""
|
66 |
|
67 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
69 |
msgstr ""
|
70 |
|
71 |
# @ bestwebsoft
|
72 |
-
#: bws_functions.php:
|
73 |
#, fuzzy
|
74 |
msgid "Rate the plugin"
|
75 |
msgstr "Plugin attivi"
|
76 |
|
77 |
# @ bestwebsoft
|
78 |
-
#: bws_functions.php:
|
79 |
#, fuzzy
|
80 |
msgid "If there is something wrong about it, please contact us"
|
81 |
msgstr "Se hai domande, contattaci tramite"
|
82 |
|
83 |
-
#: bws_functions.php:
|
|
|
84 |
msgid "Wrong license key"
|
85 |
msgstr ""
|
86 |
|
87 |
-
#: bws_functions.php:
|
88 |
-
|
89 |
-
|
90 |
-
"please contact us"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: bws_functions.php:
|
|
|
|
|
94 |
msgid "We are sorry for inconvenience."
|
95 |
msgstr ""
|
96 |
|
97 |
-
#: bws_functions.php:
|
98 |
msgid "This license key is bind to another site"
|
99 |
msgstr ""
|
100 |
|
101 |
-
#: bws_functions.php:
|
102 |
-
|
103 |
-
"Unfortunately, you have exceeded the number of available tries per day. "
|
104 |
-
"Please, upload the plugin manually."
|
105 |
msgstr ""
|
106 |
|
107 |
-
#: bws_functions.php:
|
108 |
-
msgid ""
|
109 |
-
"Unfortunately, Your license has expired. To continue getting top-priority "
|
110 |
-
"support and plugin updates you should extend it in your"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: bws_functions.php:
|
114 |
-
msgid ""
|
115 |
-
"Unfortunately, the PRO licence was already installed to this domain. The PRO "
|
116 |
-
"Trial license can be installed only once."
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: bws_functions.php:
|
|
|
|
|
120 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: bws_functions.php:
|
124 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: bws_functions.php:
|
128 |
-
msgid ""
|
129 |
-
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
130 |
-
"plugin manually"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: bws_functions.php:
|
134 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
135 |
msgstr ""
|
136 |
|
137 |
-
#: bws_functions.php:
|
138 |
-
msgid ""
|
139 |
-
"Something went wrong. Try again later or upload the plugin manually. We are "
|
140 |
-
"sorry for inconvenience."
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: bws_functions.php:
|
144 |
msgid "Please, enter Your license key"
|
145 |
msgstr ""
|
146 |
|
147 |
-
#: bws_functions.php:
|
148 |
-
msgid ""
|
149 |
-
"Congratulations! The PRO version of the plugin is successfully download and "
|
150 |
-
"activated."
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: bws_functions.php:
|
|
|
154 |
msgid "Please, go to"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: bws_functions.php:
|
|
|
158 |
msgid "the setting page"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: bws_functions.php:
|
|
|
162 |
msgid "You will be redirected automatically in 5 seconds."
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: bws_functions.php:
|
166 |
msgid "You can download and activate"
|
167 |
msgstr ""
|
168 |
|
169 |
-
#: bws_functions.php:
|
170 |
msgid "version of this plugin by entering Your license key."
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: bws_functions.php:
|
174 |
-
|
175 |
-
"You can find your license key on your personal page Client area, by clicking "
|
176 |
-
"on the link"
|
177 |
msgstr ""
|
178 |
|
179 |
-
#: bws_functions.php:
|
|
|
180 |
msgid "(your username is the email you specify when purchasing the product)."
|
181 |
msgstr ""
|
182 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
183 |
# @ bestwebsoft
|
184 |
-
#: bws_functions.php:
|
185 |
-
#:
|
|
|
|
|
|
|
|
|
186 |
#, fuzzy
|
187 |
msgid "Activate"
|
188 |
msgstr "Plugin attivi"
|
189 |
|
190 |
-
#: bws_functions.php:
|
191 |
-
|
192 |
-
|
193 |
-
"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
197 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: bws_functions.php:
|
201 |
-
msgid "
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
205 |
msgid "The license key is valid."
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
209 |
msgid "Please, enter your license key"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: bws_functions.php:
|
213 |
-
msgid ""
|
214 |
-
"If needed you can check if the license key is correct or reenter it in the "
|
215 |
-
"field below. You can find your license key on your personal page - Client "
|
216 |
-
"area - on our website"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: bws_functions.php:
|
220 |
-
msgid ""
|
221 |
-
"(your username is the email you specify when purchasing the product). If "
|
222 |
-
"necessary, please submit \"Lost your password?\" request."
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: bws_functions.php:
|
226 |
msgid "Check license key"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: bws_functions.php:
|
230 |
-
msgid ""
|
231 |
-
"WARNING: We have noticed illegal use of our plugin by you. We strongly "
|
232 |
-
"recommend you to solve the problem within 24 hours, otherwise the plugin "
|
233 |
-
"will be deactivated. Please go to your personal"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: bws_functions.php:
|
237 |
-
msgid ""
|
238 |
-
"(your username is the email you specify when purchasing the product), where "
|
239 |
-
"you can make the necessary changes."
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: bws_functions.php:
|
243 |
-
msgid ""
|
244 |
-
|
245 |
-
|
|
|
|
|
246 |
msgstr ""
|
247 |
|
248 |
# @ bestwebsoft
|
249 |
-
#: bws_functions.php:
|
250 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
251 |
#, fuzzy
|
252 |
msgid "Learn more"
|
253 |
msgstr "Leggi tutto"
|
254 |
|
255 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
256 |
msgid "You license for"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: bws_functions.php:
|
260 |
msgid "expires on"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: bws_functions.php:
|
264 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: bws_functions.php:
|
268 |
msgid "Close"
|
269 |
msgstr ""
|
270 |
|
271 |
# @ bestwebsoft
|
272 |
-
#: bws_menu.php:
|
273 |
msgid "Not set"
|
274 |
msgstr "Non impostato"
|
275 |
|
276 |
# @ bestwebsoft
|
277 |
-
#: bws_menu.php:
|
|
|
278 |
msgid "On"
|
279 |
msgstr "Abilitato"
|
280 |
|
281 |
# @ bestwebsoft
|
282 |
-
#: bws_menu.php:
|
|
|
283 |
msgid "Off"
|
284 |
msgstr "Disabilitato"
|
285 |
|
286 |
# @ bestwebsoft
|
287 |
-
#: bws_menu.php:
|
288 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
|
|
289 |
msgid "N/A"
|
290 |
msgstr "Non disponibile"
|
291 |
|
292 |
# @ bestwebsoft
|
293 |
-
#: bws_menu.php:
|
294 |
msgid " Mb"
|
295 |
msgstr "Mb"
|
296 |
|
297 |
# @ bestwebsoft
|
298 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
299 |
msgid "Yes"
|
300 |
msgstr "Sì"
|
301 |
|
302 |
# @ bestwebsoft
|
303 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
304 |
msgid "No"
|
305 |
msgstr "No"
|
306 |
|
307 |
# @ bestwebsoft
|
308 |
-
#: bws_menu.php:
|
309 |
msgid "Operating System"
|
310 |
msgstr "Sistema operativo"
|
311 |
|
312 |
# @ bestwebsoft
|
313 |
-
#: bws_menu.php:
|
314 |
msgid "Server"
|
315 |
msgstr "Server"
|
316 |
|
317 |
# @ bestwebsoft
|
318 |
-
#: bws_menu.php:
|
319 |
msgid "Memory usage"
|
320 |
msgstr "Utilizzo memoria"
|
321 |
|
322 |
# @ bestwebsoft
|
323 |
-
#: bws_menu.php:
|
324 |
msgid "MYSQL Version"
|
325 |
msgstr "Versione MYSQL"
|
326 |
|
327 |
# @ bestwebsoft
|
328 |
-
#: bws_menu.php:
|
329 |
msgid "SQL Mode"
|
330 |
msgstr "Modalità SQL"
|
331 |
|
332 |
# @ bestwebsoft
|
333 |
-
#: bws_menu.php:
|
334 |
msgid "PHP Version"
|
335 |
msgstr "Versione PHP"
|
336 |
|
337 |
# @ bestwebsoft
|
338 |
-
#: bws_menu.php:
|
339 |
msgid "PHP Safe Mode"
|
340 |
msgstr "Safe Mode PHP"
|
341 |
|
342 |
# @ bestwebsoft
|
343 |
-
#: bws_menu.php:
|
344 |
msgid "PHP Allow URL fopen"
|
345 |
msgstr "Consenti URL fopen PHP"
|
346 |
|
347 |
# @ bestwebsoft
|
348 |
-
#: bws_menu.php:
|
349 |
msgid "PHP Memory Limit"
|
350 |
msgstr "Limite di memoria PHP"
|
351 |
|
352 |
# @ bestwebsoft
|
353 |
-
#: bws_menu.php:
|
354 |
msgid "PHP Max Upload Size"
|
355 |
msgstr "Dimensione upload massima PHP"
|
356 |
|
357 |
# @ bestwebsoft
|
358 |
-
#: bws_menu.php:
|
359 |
msgid "PHP Max Post Size"
|
360 |
msgstr "Dimensione massima Post PHP"
|
361 |
|
362 |
# @ bestwebsoft
|
363 |
-
#: bws_menu.php:
|
364 |
msgid "PHP Max Script Execute Time"
|
365 |
msgstr "Tempo massimo di esecuzione PHP"
|
366 |
|
367 |
# @ bestwebsoft
|
368 |
-
#: bws_menu.php:
|
369 |
msgid "PHP Exif support"
|
370 |
msgstr "Supporto Exif PHP"
|
371 |
|
372 |
# @ bestwebsoft
|
373 |
-
#: bws_menu.php:
|
374 |
msgid "PHP IPTC support"
|
375 |
msgstr "Supporto IPTC PHP"
|
376 |
|
377 |
# @ bestwebsoft
|
378 |
-
#: bws_menu.php:
|
379 |
msgid "PHP XML support"
|
380 |
msgstr "Supporto XML PHP"
|
381 |
|
382 |
# @ bestwebsoft
|
383 |
-
#: bws_menu.php:
|
384 |
msgid "Site URL"
|
385 |
msgstr "URL sito"
|
386 |
|
387 |
# @ bestwebsoft
|
388 |
-
#: bws_menu.php:
|
389 |
msgid "Home URL"
|
390 |
msgstr "URL home"
|
391 |
|
392 |
# @ bestwebsoft
|
393 |
-
#: bws_menu.php:
|
394 |
msgid "WordPress Version"
|
395 |
msgstr "Versione WordPress"
|
396 |
|
397 |
# @ bestwebsoft
|
398 |
-
#: bws_menu.php:
|
399 |
msgid "WordPress DB Version"
|
400 |
msgstr "Versione DB WordPress"
|
401 |
|
402 |
# @ bestwebsoft
|
403 |
-
#: bws_menu.php:
|
404 |
msgid "Multisite"
|
405 |
msgstr "Multisito"
|
406 |
|
407 |
# @ bestwebsoft
|
408 |
-
#: bws_menu.php:
|
409 |
msgid "Active Theme"
|
410 |
msgstr "Tema attivo"
|
411 |
|
412 |
# @ bestwebsoft
|
413 |
-
#: bws_menu.php:
|
414 |
msgid "Please enter a valid email address."
|
415 |
msgstr "Per favore inserisci un indirizzo e-mail valido."
|
416 |
|
417 |
# @ bestwebsoft
|
418 |
-
#: bws_menu.php:
|
419 |
msgid "Email with system info is sent to "
|
420 |
msgstr "Email con informazioni di sistema spedita a "
|
421 |
|
422 |
# @ bestwebsoft
|
423 |
-
#: bws_menu.php:
|
424 |
msgid "Thank you for contacting us."
|
425 |
msgstr "Grazie per averci contattato."
|
426 |
|
427 |
# @ bestwebsoft
|
428 |
-
#: bws_menu.php:
|
429 |
msgid "Sorry, email message could not be delivered."
|
430 |
msgstr "Spiacenti, il messaggio email non può essere inviato."
|
431 |
|
432 |
-
#: bws_menu.php:
|
433 |
msgid "Need help?"
|
434 |
msgstr ""
|
435 |
|
436 |
-
#: bws_menu.php:
|
437 |
msgid "Client area"
|
438 |
msgstr ""
|
439 |
|
440 |
# @ bestwebsoft
|
441 |
-
#: bws_menu.php:
|
|
|
442 |
msgid "System status"
|
443 |
msgstr "Stato sistema"
|
444 |
|
445 |
# @ bestwebsoft
|
446 |
-
#: bws_menu.php:
|
447 |
#, fuzzy
|
448 |
msgid "Plugins"
|
449 |
msgstr "Plugin Pro"
|
450 |
|
451 |
-
#: bws_menu.php:
|
452 |
msgid "Themes"
|
453 |
msgstr ""
|
454 |
|
455 |
-
#: bws_menu.php:
|
456 |
msgid "All"
|
457 |
msgstr ""
|
458 |
|
459 |
# @ default
|
460 |
-
#: bws_menu.php:
|
461 |
#, fuzzy
|
462 |
msgid "Installed"
|
463 |
msgstr "Installa %s"
|
464 |
|
465 |
# @ bestwebsoft
|
466 |
-
#: bws_menu.php:
|
467 |
#, fuzzy
|
468 |
msgid "Recommended"
|
469 |
msgstr "Plugin raccomandati"
|
470 |
|
471 |
# @ bestwebsoft
|
472 |
-
#: bws_menu.php:
|
473 |
msgid "Installed plugins"
|
474 |
msgstr "Plugin installati"
|
475 |
|
476 |
# @ bestwebsoft
|
477 |
# @ captcha
|
478 |
-
#: bws_menu.php:
|
|
|
479 |
msgid "Settings"
|
480 |
msgstr "Impostazioni"
|
481 |
|
482 |
# @ bestwebsoft
|
483 |
-
#: bws_menu.php:
|
|
|
484 |
#, fuzzy
|
485 |
msgid "Activate this plugin"
|
486 |
msgstr "Plugin attivi"
|
487 |
|
488 |
-
#: bws_menu.php:
|
|
|
|
|
489 |
msgid "Go"
|
490 |
msgstr ""
|
491 |
|
492 |
-
#: bws_menu.php:
|
|
|
|
|
493 |
msgid "DONATE"
|
494 |
msgstr ""
|
495 |
|
496 |
# @ bestwebsoft
|
497 |
-
#: bws_menu.php:
|
498 |
msgid "Recommended plugins"
|
499 |
msgstr "Plugin raccomandati"
|
500 |
|
501 |
# @ default
|
502 |
-
#: bws_menu.php:
|
503 |
#, fuzzy
|
504 |
msgid "Install now"
|
505 |
msgstr "Installa %s"
|
506 |
|
507 |
-
#: bws_menu.php:
|
508 |
msgid "Try again"
|
509 |
msgstr ""
|
510 |
|
511 |
-
#: bws_menu.php:
|
512 |
#, php-format
|
513 |
msgid "Preview “%s”"
|
514 |
msgstr ""
|
515 |
|
516 |
# @ default
|
517 |
-
#: bws_menu.php:
|
518 |
#, php-format
|
519 |
msgid "Install %s"
|
520 |
msgstr "Installa %s"
|
521 |
|
522 |
# @ default
|
523 |
-
#: bws_menu.php:
|
524 |
#, fuzzy
|
525 |
msgid "Install Now"
|
526 |
msgstr "Installa %s"
|
527 |
|
528 |
-
#: bws_menu.php:
|
529 |
#, php-format
|
530 |
msgid "Update to version %s"
|
531 |
msgstr ""
|
532 |
|
533 |
-
#: bws_menu.php:
|
534 |
msgid "Update"
|
535 |
msgstr ""
|
536 |
|
537 |
-
#: bws_menu.php:
|
538 |
#, php-format
|
539 |
msgid "Preview %s"
|
540 |
msgstr ""
|
541 |
|
542 |
-
#: bws_menu.php:
|
543 |
msgid "Preview"
|
544 |
msgstr ""
|
545 |
|
546 |
-
#: bws_menu.php:
|
|
|
547 |
#, php-format
|
548 |
msgid "By %s"
|
549 |
msgstr ""
|
550 |
|
551 |
-
#: bws_menu.php:
|
552 |
msgid "Details"
|
553 |
msgstr ""
|
554 |
|
555 |
# @ default
|
556 |
-
#: bws_menu.php:
|
557 |
#, fuzzy
|
558 |
msgid "Already Installed"
|
559 |
msgstr "Installa %s"
|
560 |
|
561 |
# @ bestwebsoft
|
562 |
-
#: bws_menu.php:
|
563 |
msgid "Environment"
|
564 |
msgstr "Ambiente"
|
565 |
|
566 |
# @ bestwebsoft
|
567 |
-
#: bws_menu.php:
|
568 |
msgid "Active Plugins"
|
569 |
msgstr "Plugin attivi"
|
570 |
|
571 |
# @ bestwebsoft
|
572 |
-
#: bws_menu.php:
|
573 |
msgid "Inactive Plugins"
|
574 |
msgstr "Plugin inattivi"
|
575 |
|
576 |
# @ bestwebsoft
|
577 |
-
#: bws_menu.php:
|
578 |
msgid "Send to support"
|
579 |
msgstr "Invia al supporto"
|
580 |
|
581 |
# @ bestwebsoft
|
582 |
-
#: bws_menu.php:
|
583 |
msgid "Send to custom email »"
|
584 |
msgstr "Invia a una email personalizzata »"
|
585 |
|
586 |
# @ bestwebsoft
|
587 |
#~ msgid "Pro plugins"
|
588 |
#~ msgstr "Plugin Pro"
|
589 |
-
|
590 |
# @ bestwebsoft
|
591 |
#~ msgid "Activated plugins"
|
592 |
#~ msgstr "Plugin attivi"
|
593 |
-
|
594 |
# @ bestwebsoft
|
595 |
#~ msgid "Read more"
|
596 |
#~ msgstr "Leggi tutto"
|
597 |
-
|
598 |
# @ bestwebsoft
|
599 |
#~ msgid "Purchase"
|
600 |
#~ msgstr "Acquista"
|
601 |
-
|
602 |
# @ bestwebsoft
|
603 |
#~ msgid "Free plugins"
|
604 |
#~ msgstr "Plugin gratuiti"
|
605 |
-
|
606 |
# @ bestwebsoft
|
607 |
#~ msgid "Download"
|
608 |
#~ msgstr "Scarica"
|
609 |
-
|
610 |
# @ bestwebsoft
|
611 |
#~ msgid "Install now from wordpress.org"
|
612 |
#~ msgstr "Installa ora da wordpress.org"
|
613 |
-
|
614 |
# @ bestwebsoft
|
615 |
#, fuzzy
|
616 |
#~ msgid "Activated theme"
|
@@ -639,11 +705,9 @@ msgstr "Invia a una email personalizzata »"
|
|
639 |
# @ captcha
|
640 |
#~ msgid "Captcha"
|
641 |
#~ msgstr "Captcha"
|
642 |
-
|
643 |
# @ captcha
|
644 |
#~ msgid "Login form"
|
645 |
#~ msgstr "Modulo di login"
|
646 |
-
|
647 |
# @ captcha
|
648 |
#, fuzzy
|
649 |
#~ msgid "Registration form"
|
@@ -652,7 +716,6 @@ msgstr "Invia a una email personalizzata »"
|
|
652 |
# @ captcha
|
653 |
#~ msgid "Register form"
|
654 |
#~ msgstr "Modulo di registrazione"
|
655 |
-
|
656 |
# @ captcha
|
657 |
#, fuzzy
|
658 |
#~ msgid "Reset Password form"
|
@@ -661,31 +724,24 @@ msgstr "Invia a una email personalizzata »"
|
|
661 |
# @ captcha
|
662 |
#~ msgid "Lost password form"
|
663 |
#~ msgstr "Modulo recupero password"
|
664 |
-
|
665 |
# @ captcha
|
666 |
#~ msgid "Comments form"
|
667 |
#~ msgstr "Modulo dei commenti"
|
668 |
-
|
669 |
# @ captcha
|
670 |
#~ msgid "Hide CAPTCHA for registered users"
|
671 |
#~ msgstr "Nascondi CAPTCHA per gli utenti registrati"
|
672 |
-
|
673 |
# @ captcha
|
674 |
#~ msgid "Plus (+)"
|
675 |
#~ msgstr "Addizione (+)"
|
676 |
-
|
677 |
# @ captcha
|
678 |
#~ msgid "Plus"
|
679 |
#~ msgstr "Più"
|
680 |
-
|
681 |
# @ captcha
|
682 |
#~ msgid "Minus (−)"
|
683 |
#~ msgstr "Sottrazione (−)"
|
684 |
-
|
685 |
# @ captcha
|
686 |
#~ msgid "Minus"
|
687 |
#~ msgstr "Meno"
|
688 |
-
|
689 |
# @ captcha
|
690 |
#, fuzzy
|
691 |
#~ msgid "Multiplication (×)"
|
@@ -699,19 +755,15 @@ msgstr "Invia a una email personalizzata »"
|
|
699 |
# @ captcha
|
700 |
#~ msgid "Numbers"
|
701 |
#~ msgstr "Numeri"
|
702 |
-
|
703 |
# @ captcha
|
704 |
#~ msgid "Words"
|
705 |
#~ msgstr "Parole"
|
706 |
-
|
707 |
# @ captcha
|
708 |
#~ msgid "FAQ"
|
709 |
#~ msgstr "FAQ"
|
710 |
-
|
711 |
# @ captcha
|
712 |
#~ msgid "Support"
|
713 |
#~ msgstr "Supporto"
|
714 |
-
|
715 |
# @ captcha
|
716 |
#, fuzzy
|
717 |
#~ msgid ""
|
@@ -723,7 +775,6 @@ msgstr "Invia a una email personalizzata »"
|
|
723 |
# @ captcha
|
724 |
#~ msgid "Options saved."
|
725 |
#~ msgstr "Impostazioni salvate."
|
726 |
-
|
727 |
# @ captcha
|
728 |
#, fuzzy
|
729 |
#~ msgid "Enable CAPTCHA for:"
|
@@ -732,19 +783,15 @@ msgstr "Invia a una email personalizzata »"
|
|
732 |
# @ captcha
|
733 |
#~ msgid "Contact form"
|
734 |
#~ msgstr "Modulo di contatto"
|
735 |
-
|
736 |
# @ captcha
|
737 |
#~ msgid "powered by"
|
738 |
#~ msgstr "powered by"
|
739 |
-
|
740 |
# @ captcha
|
741 |
#~ msgid "Activate contact form"
|
742 |
#~ msgstr "Attiva modulo di contatto"
|
743 |
-
|
744 |
# @ captcha
|
745 |
#~ msgid "Download contact form"
|
746 |
#~ msgstr "Scarica il plugin per il modulo di contatto"
|
747 |
-
|
748 |
# @ captcha
|
749 |
#, fuzzy
|
750 |
#~ msgid ""
|
@@ -756,7 +803,6 @@ msgstr "Invia a una email personalizzata »"
|
|
756 |
# @ captcha
|
757 |
#~ msgid "\"Create a Group\" form"
|
758 |
#~ msgstr "Modulo \"Crea un gruppo\""
|
759 |
-
|
760 |
# @ captcha
|
761 |
#~ msgid ""
|
762 |
#~ "This functionality is available in the Pro version of the plugin. For "
|
@@ -764,7 +810,6 @@ msgstr "Invia a una email personalizzata »"
|
|
764 |
#~ msgstr ""
|
765 |
#~ "Questa funzionalità è disponibile nella versione Pro del plugin. Per "
|
766 |
#~ "maggiori dettagli, per favore vai al link"
|
767 |
-
|
768 |
# @ captcha
|
769 |
#, fuzzy
|
770 |
#~ msgid "Title for CAPTCHA in the form"
|
@@ -773,23 +818,18 @@ msgstr "Invia a una email personalizzata »"
|
|
773 |
# @ captcha
|
774 |
#~ msgid "Arithmetic actions for CAPTCHA"
|
775 |
#~ msgstr "Operazioni aritmetiche per il CAPTCHA"
|
776 |
-
|
777 |
# @ captcha
|
778 |
#~ msgid "CAPTCHA complexity level"
|
779 |
#~ msgstr "Livello complessità CAPTCHA"
|
780 |
-
|
781 |
# @ default
|
782 |
#~ msgid "Save Changes"
|
783 |
#~ msgstr "Salva le modifiche"
|
784 |
-
|
785 |
# @ captcha
|
786 |
#~ msgid "ERROR"
|
787 |
#~ msgstr "ERRORE"
|
788 |
-
|
789 |
# @ captcha
|
790 |
#~ msgid "Please fill the form."
|
791 |
#~ msgstr "Per favore compila il modulo."
|
792 |
-
|
793 |
# @ captcha
|
794 |
#, fuzzy
|
795 |
#~ msgid "Please enter a valid CAPTCHA value."
|
@@ -807,115 +847,84 @@ msgstr "Invia a una email personalizzata »"
|
|
807 |
# @ captcha
|
808 |
#~ msgid "zero"
|
809 |
#~ msgstr "zero"
|
810 |
-
|
811 |
# @ captcha
|
812 |
#~ msgid "one"
|
813 |
#~ msgstr "uno"
|
814 |
-
|
815 |
# @ captcha
|
816 |
#~ msgid "three"
|
817 |
#~ msgstr "tre"
|
818 |
-
|
819 |
-
# @ captcha
|
820 |
-
#~ msgid "four"
|
821 |
-
#~ msgstr "quattro"
|
822 |
-
|
823 |
# @ captcha
|
824 |
#~ msgid "five"
|
825 |
#~ msgstr "cinque"
|
826 |
-
|
827 |
# @ captcha
|
828 |
#~ msgid "six"
|
829 |
#~ msgstr "sei"
|
830 |
-
|
831 |
# @ captcha
|
832 |
#~ msgid "seven"
|
833 |
#~ msgstr "sette"
|
834 |
-
|
835 |
# @ captcha
|
836 |
#~ msgid "eight"
|
837 |
#~ msgstr "otto"
|
838 |
-
|
839 |
# @ captcha
|
840 |
#~ msgid "nine"
|
841 |
#~ msgstr "nove"
|
842 |
-
|
843 |
# @ captcha
|
844 |
#~ msgid "eleven"
|
845 |
#~ msgstr "undici"
|
846 |
-
|
847 |
# @ captcha
|
848 |
#~ msgid "twelve"
|
849 |
#~ msgstr "dodici"
|
850 |
-
|
851 |
# @ captcha
|
852 |
#~ msgid "thirteen"
|
853 |
#~ msgstr "tredici"
|
854 |
-
|
855 |
# @ captcha
|
856 |
#~ msgid "fourteen"
|
857 |
#~ msgstr "quattordici"
|
858 |
-
|
859 |
# @ captcha
|
860 |
#~ msgid "fifteen"
|
861 |
#~ msgstr "quindici"
|
862 |
-
|
863 |
# @ captcha
|
864 |
#~ msgid "sixteen"
|
865 |
#~ msgstr "sedici"
|
866 |
-
|
867 |
# @ captcha
|
868 |
#~ msgid "seventeen"
|
869 |
#~ msgstr "diciassette"
|
870 |
-
|
871 |
# @ captcha
|
872 |
#~ msgid "eighteen"
|
873 |
#~ msgstr "diciotto"
|
874 |
-
|
875 |
# @ captcha
|
876 |
#~ msgid "nineteen"
|
877 |
#~ msgstr "diciannove"
|
878 |
-
|
879 |
# @ captcha
|
880 |
#~ msgid "ten"
|
881 |
#~ msgstr "dieci"
|
882 |
-
|
883 |
# @ captcha
|
884 |
#~ msgid "twenty"
|
885 |
#~ msgstr "venti"
|
886 |
-
|
887 |
# @ captcha
|
888 |
#~ msgid "thirty"
|
889 |
#~ msgstr "trenta"
|
890 |
-
|
891 |
# @ captcha
|
892 |
#~ msgid "forty"
|
893 |
#~ msgstr "quaranta"
|
894 |
-
|
895 |
# @ captcha
|
896 |
#~ msgid "fifty"
|
897 |
#~ msgstr "cinquanta"
|
898 |
-
|
899 |
# @ captcha
|
900 |
#~ msgid "sixty"
|
901 |
#~ msgstr "sessanta"
|
902 |
-
|
903 |
# @ captcha
|
904 |
#~ msgid "seventy"
|
905 |
#~ msgstr "settanta"
|
906 |
-
|
907 |
# @ captcha
|
908 |
#~ msgid "eighty"
|
909 |
#~ msgstr "ottanta"
|
910 |
-
|
911 |
# @ captcha
|
912 |
#~ msgid "ninety"
|
913 |
#~ msgstr "novanta"
|
914 |
-
|
915 |
# @ captcha
|
916 |
#~ msgid "and"
|
917 |
#~ msgstr "e"
|
918 |
-
|
919 |
# @ captcha
|
920 |
#, fuzzy
|
921 |
#~ msgid "Encryption password is not set"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-05-11 14:11+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-05-11 14:11+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Marco <marco@blackstudio.it>\n"
|
9 |
+
"Language: it_IT\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
"X-Poedit-Basepath: ..\n"
|
18 |
"X-Textdomain-Support: yes\n"
|
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: bws_functions.php:89
|
22 |
msgid "requires"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: bws_functions.php:91
|
26 |
+
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
|
|
|
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: bws_functions.php:92
|
30 |
msgid "Back to the WordPress"
|
31 |
msgstr ""
|
32 |
|
33 |
# @ bestwebsoft
|
34 |
+
#: bws_functions.php:94
|
35 |
#, fuzzy
|
36 |
msgid "Plugins page"
|
37 |
msgstr "Plugin Pro"
|
38 |
|
39 |
+
#: bws_functions.php:151
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
msgid "It’s time to upgrade your"
|
41 |
msgstr ""
|
42 |
|
43 |
# @ captcha
|
44 |
+
#: bws_functions.php:151
|
45 |
#, fuzzy
|
46 |
msgid "to"
|
47 |
msgstr "due"
|
48 |
|
49 |
# @ bestwebsoft
|
50 |
+
#: bws_functions.php:151
|
51 |
#, fuzzy
|
52 |
msgid "version!"
|
53 |
msgstr "Versione PHP"
|
54 |
|
55 |
+
#: bws_functions.php:152
|
56 |
msgid "Extend standard plugin functionality with new great options."
|
57 |
msgstr ""
|
58 |
|
59 |
+
# @ bestwebsoft
|
60 |
+
#: bws_functions.php:155
|
61 |
+
#: bws_functions.php:542
|
62 |
+
#, fuzzy
|
63 |
+
msgid "Learn More"
|
64 |
+
msgstr "Leggi tutto"
|
65 |
+
|
66 |
+
#: bws_functions.php:172
|
67 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
68 |
msgstr ""
|
69 |
|
70 |
# @ bestwebsoft
|
71 |
+
#: bws_functions.php:173
|
72 |
#, fuzzy
|
73 |
msgid "Rate the plugin"
|
74 |
msgstr "Plugin attivi"
|
75 |
|
76 |
# @ bestwebsoft
|
77 |
+
#: bws_functions.php:176
|
78 |
#, fuzzy
|
79 |
msgid "If there is something wrong about it, please contact us"
|
80 |
msgstr "Se hai domande, contattaci tramite"
|
81 |
|
82 |
+
#: bws_functions.php:193
|
83 |
+
#: bws_functions.php:229
|
84 |
msgid "Wrong license key"
|
85 |
msgstr ""
|
86 |
|
87 |
+
#: bws_functions.php:223
|
88 |
+
#: bws_functions.php:455
|
89 |
+
#: bws_functions.php:506
|
90 |
+
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
91 |
msgstr ""
|
92 |
|
93 |
+
#: bws_functions.php:223
|
94 |
+
#: bws_functions.php:455
|
95 |
+
#: bws_functions.php:506
|
96 |
msgid "We are sorry for inconvenience."
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: bws_functions.php:231
|
100 |
msgid "This license key is bind to another site"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: bws_functions.php:233
|
104 |
+
#: bws_functions.php:365
|
105 |
+
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
|
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: bws_functions.php:235
|
109 |
+
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
|
|
|
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: bws_functions.php:237
|
113 |
+
msgid "Unfortunately, the PRO licence was already installed to this domain. The PRO Trial license can be installed only once."
|
|
|
|
|
114 |
msgstr ""
|
115 |
|
116 |
+
#: bws_functions.php:248
|
117 |
+
#: bws_functions.php:270
|
118 |
+
#: bws_functions.php:292
|
119 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: bws_functions.php:260
|
123 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: bws_functions.php:266
|
127 |
+
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
|
|
|
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: bws_functions.php:273
|
131 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: bws_functions.php:296
|
135 |
+
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
|
|
|
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: bws_functions.php:321
|
139 |
msgid "Please, enter Your license key"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: bws_functions.php:338
|
143 |
+
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
|
|
|
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: bws_functions.php:340
|
147 |
+
#: bws_functions.php:422
|
148 |
msgid "Please, go to"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: bws_functions.php:340
|
152 |
+
#: bws_functions.php:422
|
153 |
msgid "the setting page"
|
154 |
msgstr ""
|
155 |
|
156 |
+
#: bws_functions.php:341
|
157 |
+
#: bws_functions.php:423
|
158 |
msgid "You will be redirected automatically in 5 seconds."
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: bws_functions.php:346
|
162 |
msgid "You can download and activate"
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: bws_functions.php:348
|
166 |
msgid "version of this plugin by entering Your license key."
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: bws_functions.php:350
|
170 |
+
#: bws_functions.php:391
|
171 |
+
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
|
|
172 |
msgstr ""
|
173 |
|
174 |
+
#: bws_functions.php:352
|
175 |
+
#: bws_functions.php:393
|
176 |
msgid "(your username is the email you specify when purchasing the product)."
|
177 |
msgstr ""
|
178 |
|
179 |
+
# @ captcha
|
180 |
+
#: bws_functions.php:356
|
181 |
+
#, fuzzy
|
182 |
+
msgid "or"
|
183 |
+
msgstr "quattro"
|
184 |
+
|
185 |
+
#: bws_functions.php:356
|
186 |
+
#, php-format
|
187 |
+
msgid "Start Your Free %s-Day Trial Now"
|
188 |
+
msgstr ""
|
189 |
+
|
190 |
# @ bestwebsoft
|
191 |
+
#: bws_functions.php:362
|
192 |
+
#: bws_functions.php:371
|
193 |
+
#: bws_functions.php:401
|
194 |
+
#: bws_functions.php:409
|
195 |
+
#: bws_menu.php:643
|
196 |
+
#: bws_menu.php:700
|
197 |
#, fuzzy
|
198 |
msgid "Activate"
|
199 |
msgstr "Plugin attivi"
|
200 |
|
201 |
+
#: bws_functions.php:388
|
202 |
+
#: bws_functions.php:481
|
203 |
+
#, php-format
|
204 |
+
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: bws_functions.php:389
|
208 |
+
msgid "After that you can activate it by entering your license key."
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: bws_functions.php:403
|
212 |
+
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: bws_functions.php:420
|
216 |
+
msgid "Congratulations! The PRO license of the plugin is successfully activated."
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: bws_functions.php:461
|
220 |
+
msgid "Wrong license key."
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: bws_functions.php:463
|
224 |
+
msgid "This license key is bind to another site."
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: bws_functions.php:465
|
228 |
+
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
#: bws_functions.php:467
|
232 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: bws_functions.php:469
|
236 |
+
msgid "Unfortunately, the PRO Trial licence was already installed to this domain. The PRO Trial license can be installed only once."
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: bws_functions.php:473
|
240 |
+
msgid "The PRO Trial license key is valid."
|
241 |
+
msgstr ""
|
242 |
+
|
243 |
+
#: bws_functions.php:475
|
244 |
msgid "The license key is valid."
|
245 |
msgstr ""
|
246 |
|
247 |
+
#: bws_functions.php:478
|
248 |
+
msgid "Your license will expire on"
|
249 |
+
msgstr ""
|
250 |
+
|
251 |
+
#: bws_functions.php:511
|
252 |
msgid "Please, enter your license key"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: bws_functions.php:524
|
256 |
+
msgid "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"
|
|
|
|
|
|
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: bws_functions.php:524
|
260 |
+
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
|
|
|
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: bws_functions.php:528
|
264 |
msgid "Check license key"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: bws_functions.php:542
|
268 |
+
msgid "WARNING: Illegal use notification"
|
|
|
|
|
|
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: bws_functions.php:542
|
272 |
+
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."
|
|
|
|
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: bws_functions.php:550
|
276 |
+
msgid "Notice: Your PRO Trial license has expired. To continue using the plugin you should buy a PRO license"
|
277 |
+
msgstr ""
|
278 |
+
|
279 |
+
#: bws_functions.php:552
|
280 |
+
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
281 |
msgstr ""
|
282 |
|
283 |
# @ bestwebsoft
|
284 |
+
#: bws_functions.php:552
|
285 |
+
#: bws_functions.php:605
|
286 |
+
#: bws_menu.php:619
|
287 |
+
#: bws_menu.php:641
|
288 |
+
#: bws_menu.php:668
|
289 |
+
#: bws_menu.php:698
|
290 |
+
#: bws_menu.php:744
|
291 |
#, fuzzy
|
292 |
msgid "Learn more"
|
293 |
msgstr "Leggi tutto"
|
294 |
|
295 |
+
#: bws_functions.php:562
|
296 |
+
#, php-format
|
297 |
+
msgid "Notice: You are using the PRO Trial license of %s plugin."
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: bws_functions.php:564
|
301 |
+
msgid "Notice: You are using the PRO Trial license of plugin."
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: bws_functions.php:567
|
305 |
+
msgid "The PRO Trial license will expire on"
|
306 |
+
msgstr ""
|
307 |
+
|
308 |
+
#: bws_functions.php:605
|
309 |
msgid "You license for"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: bws_functions.php:605
|
313 |
msgid "expires on"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: bws_functions.php:605
|
317 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: bws_functions.php:680
|
321 |
msgid "Close"
|
322 |
msgstr ""
|
323 |
|
324 |
# @ bestwebsoft
|
325 |
+
#: bws_menu.php:456
|
326 |
msgid "Not set"
|
327 |
msgstr "Non impostato"
|
328 |
|
329 |
# @ bestwebsoft
|
330 |
+
#: bws_menu.php:458
|
331 |
+
#: bws_menu.php:459
|
332 |
msgid "On"
|
333 |
msgstr "Abilitato"
|
334 |
|
335 |
# @ bestwebsoft
|
336 |
+
#: bws_menu.php:458
|
337 |
+
#: bws_menu.php:459
|
338 |
msgid "Off"
|
339 |
msgstr "Disabilitato"
|
340 |
|
341 |
# @ bestwebsoft
|
342 |
+
#: bws_menu.php:460
|
343 |
+
#: bws_menu.php:461
|
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:464
|
353 |
msgid " Mb"
|
354 |
msgstr "Mb"
|
355 |
|
356 |
# @ bestwebsoft
|
357 |
+
#: bws_menu.php:465
|
358 |
+
#: bws_menu.php:466
|
359 |
+
#: bws_menu.php:467
|
360 |
+
#: bws_menu.php:472
|
361 |
msgid "Yes"
|
362 |
msgstr "Sì"
|
363 |
|
364 |
# @ bestwebsoft
|
365 |
+
#: bws_menu.php:465
|
366 |
+
#: bws_menu.php:466
|
367 |
+
#: bws_menu.php:467
|
368 |
+
#: bws_menu.php:474
|
369 |
msgid "No"
|
370 |
msgstr "No"
|
371 |
|
372 |
# @ bestwebsoft
|
373 |
+
#: bws_menu.php:484
|
374 |
msgid "Operating System"
|
375 |
msgstr "Sistema operativo"
|
376 |
|
377 |
# @ bestwebsoft
|
378 |
+
#: bws_menu.php:485
|
379 |
msgid "Server"
|
380 |
msgstr "Server"
|
381 |
|
382 |
# @ bestwebsoft
|
383 |
+
#: bws_menu.php:486
|
384 |
msgid "Memory usage"
|
385 |
msgstr "Utilizzo memoria"
|
386 |
|
387 |
# @ bestwebsoft
|
388 |
+
#: bws_menu.php:487
|
389 |
msgid "MYSQL Version"
|
390 |
msgstr "Versione MYSQL"
|
391 |
|
392 |
# @ bestwebsoft
|
393 |
+
#: bws_menu.php:488
|
394 |
msgid "SQL Mode"
|
395 |
msgstr "Modalità SQL"
|
396 |
|
397 |
# @ bestwebsoft
|
398 |
+
#: bws_menu.php:489
|
399 |
msgid "PHP Version"
|
400 |
msgstr "Versione PHP"
|
401 |
|
402 |
# @ bestwebsoft
|
403 |
+
#: bws_menu.php:490
|
404 |
msgid "PHP Safe Mode"
|
405 |
msgstr "Safe Mode PHP"
|
406 |
|
407 |
# @ bestwebsoft
|
408 |
+
#: bws_menu.php:491
|
409 |
msgid "PHP Allow URL fopen"
|
410 |
msgstr "Consenti URL fopen PHP"
|
411 |
|
412 |
# @ bestwebsoft
|
413 |
+
#: bws_menu.php:492
|
414 |
msgid "PHP Memory Limit"
|
415 |
msgstr "Limite di memoria PHP"
|
416 |
|
417 |
# @ bestwebsoft
|
418 |
+
#: bws_menu.php:493
|
419 |
msgid "PHP Max Upload Size"
|
420 |
msgstr "Dimensione upload massima PHP"
|
421 |
|
422 |
# @ bestwebsoft
|
423 |
+
#: bws_menu.php:494
|
424 |
msgid "PHP Max Post Size"
|
425 |
msgstr "Dimensione massima Post PHP"
|
426 |
|
427 |
# @ bestwebsoft
|
428 |
+
#: bws_menu.php:495
|
429 |
msgid "PHP Max Script Execute Time"
|
430 |
msgstr "Tempo massimo di esecuzione PHP"
|
431 |
|
432 |
# @ bestwebsoft
|
433 |
+
#: bws_menu.php:496
|
434 |
msgid "PHP Exif support"
|
435 |
msgstr "Supporto Exif PHP"
|
436 |
|
437 |
# @ bestwebsoft
|
438 |
+
#: bws_menu.php:497
|
439 |
msgid "PHP IPTC support"
|
440 |
msgstr "Supporto IPTC PHP"
|
441 |
|
442 |
# @ bestwebsoft
|
443 |
+
#: bws_menu.php:498
|
444 |
msgid "PHP XML support"
|
445 |
msgstr "Supporto XML PHP"
|
446 |
|
447 |
# @ bestwebsoft
|
448 |
+
#: bws_menu.php:499
|
449 |
msgid "Site URL"
|
450 |
msgstr "URL sito"
|
451 |
|
452 |
# @ bestwebsoft
|
453 |
+
#: bws_menu.php:500
|
454 |
msgid "Home URL"
|
455 |
msgstr "URL home"
|
456 |
|
457 |
# @ bestwebsoft
|
458 |
+
#: bws_menu.php:503
|
459 |
msgid "WordPress Version"
|
460 |
msgstr "Versione WordPress"
|
461 |
|
462 |
# @ bestwebsoft
|
463 |
+
#: bws_menu.php:504
|
464 |
msgid "WordPress DB Version"
|
465 |
msgstr "Versione DB WordPress"
|
466 |
|
467 |
# @ bestwebsoft
|
468 |
+
#: bws_menu.php:505
|
469 |
msgid "Multisite"
|
470 |
msgstr "Multisito"
|
471 |
|
472 |
# @ bestwebsoft
|
473 |
+
#: bws_menu.php:506
|
474 |
msgid "Active Theme"
|
475 |
msgstr "Tema attivo"
|
476 |
|
477 |
# @ bestwebsoft
|
478 |
+
#: bws_menu.php:521
|
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:525
|
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:529
|
489 |
msgid "Thank you for contacting us."
|
490 |
msgstr "Grazie per averci contattato."
|
491 |
|
492 |
# @ bestwebsoft
|
493 |
+
#: bws_menu.php:562
|
494 |
msgid "Sorry, email message could not be delivered."
|
495 |
msgstr "Spiacenti, il messaggio email non può essere inviato."
|
496 |
|
497 |
+
#: bws_menu.php:570
|
498 |
msgid "Need help?"
|
499 |
msgstr ""
|
500 |
|
501 |
+
#: bws_menu.php:571
|
502 |
msgid "Client area"
|
503 |
msgstr ""
|
504 |
|
505 |
# @ bestwebsoft
|
506 |
+
#: bws_menu.php:572
|
507 |
+
#: bws_menu.php:883
|
508 |
msgid "System status"
|
509 |
msgstr "Stato sistema"
|
510 |
|
511 |
# @ bestwebsoft
|
512 |
+
#: bws_menu.php:577
|
513 |
#, fuzzy
|
514 |
msgid "Plugins"
|
515 |
msgstr "Plugin Pro"
|
516 |
|
517 |
+
#: bws_menu.php:579
|
518 |
msgid "Themes"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: bws_menu.php:584
|
522 |
msgid "All"
|
523 |
msgstr ""
|
524 |
|
525 |
# @ default
|
526 |
+
#: bws_menu.php:585
|
527 |
#, fuzzy
|
528 |
msgid "Installed"
|
529 |
msgstr "Installa %s"
|
530 |
|
531 |
# @ bestwebsoft
|
532 |
+
#: bws_menu.php:586
|
533 |
#, fuzzy
|
534 |
msgid "Recommended"
|
535 |
msgstr "Plugin raccomandati"
|
536 |
|
537 |
# @ bestwebsoft
|
538 |
+
#: bws_menu.php:590
|
539 |
msgid "Installed plugins"
|
540 |
msgstr "Plugin installati"
|
541 |
|
542 |
# @ bestwebsoft
|
543 |
# @ captcha
|
544 |
+
#: bws_menu.php:622
|
545 |
+
#: bws_menu.php:671
|
546 |
msgid "Settings"
|
547 |
msgstr "Impostazioni"
|
548 |
|
549 |
# @ bestwebsoft
|
550 |
+
#: bws_menu.php:643
|
551 |
+
#: bws_menu.php:700
|
552 |
#, fuzzy
|
553 |
msgid "Activate this plugin"
|
554 |
msgstr "Plugin attivi"
|
555 |
|
556 |
+
#: bws_menu.php:658
|
557 |
+
#: bws_menu.php:688
|
558 |
+
#: bws_menu.php:734
|
559 |
msgid "Go"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: bws_menu.php:662
|
563 |
+
#: bws_menu.php:692
|
564 |
+
#: bws_menu.php:738
|
565 |
msgid "DONATE"
|
566 |
msgstr ""
|
567 |
|
568 |
# @ bestwebsoft
|
569 |
+
#: bws_menu.php:708
|
570 |
msgid "Recommended plugins"
|
571 |
msgstr "Plugin raccomandati"
|
572 |
|
573 |
# @ default
|
574 |
+
#: bws_menu.php:746
|
575 |
#, fuzzy
|
576 |
msgid "Install now"
|
577 |
msgstr "Installa %s"
|
578 |
|
579 |
+
#: bws_menu.php:767
|
580 |
msgid "Try again"
|
581 |
msgstr ""
|
582 |
|
583 |
+
#: bws_menu.php:785
|
584 |
#, php-format
|
585 |
msgid "Preview “%s”"
|
586 |
msgstr ""
|
587 |
|
588 |
# @ default
|
589 |
+
#: bws_menu.php:816
|
590 |
#, php-format
|
591 |
msgid "Install %s"
|
592 |
msgstr "Installa %s"
|
593 |
|
594 |
# @ default
|
595 |
+
#: bws_menu.php:816
|
596 |
#, fuzzy
|
597 |
msgid "Install Now"
|
598 |
msgstr "Installa %s"
|
599 |
|
600 |
+
#: bws_menu.php:819
|
601 |
#, php-format
|
602 |
msgid "Update to version %s"
|
603 |
msgstr ""
|
604 |
|
605 |
+
#: bws_menu.php:819
|
606 |
msgid "Update"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: bws_menu.php:826
|
610 |
#, php-format
|
611 |
msgid "Preview %s"
|
612 |
msgstr ""
|
613 |
|
614 |
+
#: bws_menu.php:826
|
615 |
msgid "Preview"
|
616 |
msgstr ""
|
617 |
|
618 |
+
#: bws_menu.php:832
|
619 |
+
#: bws_menu.php:864
|
620 |
#, php-format
|
621 |
msgid "By %s"
|
622 |
msgstr ""
|
623 |
|
624 |
+
#: bws_menu.php:838
|
625 |
msgid "Details"
|
626 |
msgstr ""
|
627 |
|
628 |
# @ default
|
629 |
+
#: bws_menu.php:870
|
630 |
#, fuzzy
|
631 |
msgid "Already Installed"
|
632 |
msgstr "Installa %s"
|
633 |
|
634 |
# @ bestwebsoft
|
635 |
+
#: bws_menu.php:886
|
636 |
msgid "Environment"
|
637 |
msgstr "Ambiente"
|
638 |
|
639 |
# @ bestwebsoft
|
640 |
+
#: bws_menu.php:897
|
641 |
msgid "Active Plugins"
|
642 |
msgstr "Plugin attivi"
|
643 |
|
644 |
# @ bestwebsoft
|
645 |
+
#: bws_menu.php:910
|
646 |
msgid "Inactive Plugins"
|
647 |
msgstr "Plugin inattivi"
|
648 |
|
649 |
# @ bestwebsoft
|
650 |
+
#: bws_menu.php:926
|
651 |
msgid "Send to support"
|
652 |
msgstr "Invia al supporto"
|
653 |
|
654 |
# @ bestwebsoft
|
655 |
+
#: bws_menu.php:933
|
656 |
msgid "Send to custom email »"
|
657 |
msgstr "Invia a una email personalizzata »"
|
658 |
|
659 |
# @ bestwebsoft
|
660 |
#~ msgid "Pro plugins"
|
661 |
#~ msgstr "Plugin Pro"
|
|
|
662 |
# @ bestwebsoft
|
663 |
#~ msgid "Activated plugins"
|
664 |
#~ msgstr "Plugin attivi"
|
|
|
665 |
# @ bestwebsoft
|
666 |
#~ msgid "Read more"
|
667 |
#~ msgstr "Leggi tutto"
|
|
|
668 |
# @ bestwebsoft
|
669 |
#~ msgid "Purchase"
|
670 |
#~ msgstr "Acquista"
|
|
|
671 |
# @ bestwebsoft
|
672 |
#~ msgid "Free plugins"
|
673 |
#~ msgstr "Plugin gratuiti"
|
|
|
674 |
# @ bestwebsoft
|
675 |
#~ msgid "Download"
|
676 |
#~ msgstr "Scarica"
|
|
|
677 |
# @ bestwebsoft
|
678 |
#~ msgid "Install now from wordpress.org"
|
679 |
#~ msgstr "Installa ora da wordpress.org"
|
|
|
680 |
# @ bestwebsoft
|
681 |
#, fuzzy
|
682 |
#~ msgid "Activated theme"
|
705 |
# @ captcha
|
706 |
#~ msgid "Captcha"
|
707 |
#~ msgstr "Captcha"
|
|
|
708 |
# @ captcha
|
709 |
#~ msgid "Login form"
|
710 |
#~ msgstr "Modulo di login"
|
|
|
711 |
# @ captcha
|
712 |
#, fuzzy
|
713 |
#~ msgid "Registration form"
|
716 |
# @ captcha
|
717 |
#~ msgid "Register form"
|
718 |
#~ msgstr "Modulo di registrazione"
|
|
|
719 |
# @ captcha
|
720 |
#, fuzzy
|
721 |
#~ msgid "Reset Password form"
|
724 |
# @ captcha
|
725 |
#~ msgid "Lost password form"
|
726 |
#~ msgstr "Modulo recupero password"
|
|
|
727 |
# @ captcha
|
728 |
#~ msgid "Comments form"
|
729 |
#~ msgstr "Modulo dei commenti"
|
|
|
730 |
# @ captcha
|
731 |
#~ msgid "Hide CAPTCHA for registered users"
|
732 |
#~ msgstr "Nascondi CAPTCHA per gli utenti registrati"
|
|
|
733 |
# @ captcha
|
734 |
#~ msgid "Plus (+)"
|
735 |
#~ msgstr "Addizione (+)"
|
|
|
736 |
# @ captcha
|
737 |
#~ msgid "Plus"
|
738 |
#~ msgstr "Più"
|
|
|
739 |
# @ captcha
|
740 |
#~ msgid "Minus (−)"
|
741 |
#~ msgstr "Sottrazione (−)"
|
|
|
742 |
# @ captcha
|
743 |
#~ msgid "Minus"
|
744 |
#~ msgstr "Meno"
|
|
|
745 |
# @ captcha
|
746 |
#, fuzzy
|
747 |
#~ msgid "Multiplication (×)"
|
755 |
# @ captcha
|
756 |
#~ msgid "Numbers"
|
757 |
#~ msgstr "Numeri"
|
|
|
758 |
# @ captcha
|
759 |
#~ msgid "Words"
|
760 |
#~ msgstr "Parole"
|
|
|
761 |
# @ captcha
|
762 |
#~ msgid "FAQ"
|
763 |
#~ msgstr "FAQ"
|
|
|
764 |
# @ captcha
|
765 |
#~ msgid "Support"
|
766 |
#~ msgstr "Supporto"
|
|
|
767 |
# @ captcha
|
768 |
#, fuzzy
|
769 |
#~ msgid ""
|
775 |
# @ captcha
|
776 |
#~ msgid "Options saved."
|
777 |
#~ msgstr "Impostazioni salvate."
|
|
|
778 |
# @ captcha
|
779 |
#, fuzzy
|
780 |
#~ msgid "Enable CAPTCHA for:"
|
783 |
# @ captcha
|
784 |
#~ msgid "Contact form"
|
785 |
#~ msgstr "Modulo di contatto"
|
|
|
786 |
# @ captcha
|
787 |
#~ msgid "powered by"
|
788 |
#~ msgstr "powered by"
|
|
|
789 |
# @ captcha
|
790 |
#~ msgid "Activate contact form"
|
791 |
#~ msgstr "Attiva modulo di contatto"
|
|
|
792 |
# @ captcha
|
793 |
#~ msgid "Download contact form"
|
794 |
#~ msgstr "Scarica il plugin per il modulo di contatto"
|
|
|
795 |
# @ captcha
|
796 |
#, fuzzy
|
797 |
#~ msgid ""
|
803 |
# @ captcha
|
804 |
#~ msgid "\"Create a Group\" form"
|
805 |
#~ msgstr "Modulo \"Crea un gruppo\""
|
|
|
806 |
# @ captcha
|
807 |
#~ msgid ""
|
808 |
#~ "This functionality is available in the Pro version of the plugin. For "
|
810 |
#~ msgstr ""
|
811 |
#~ "Questa funzionalità è disponibile nella versione Pro del plugin. Per "
|
812 |
#~ "maggiori dettagli, per favore vai al link"
|
|
|
813 |
# @ captcha
|
814 |
#, fuzzy
|
815 |
#~ msgid "Title for CAPTCHA in the form"
|
818 |
# @ captcha
|
819 |
#~ msgid "Arithmetic actions for CAPTCHA"
|
820 |
#~ msgstr "Operazioni aritmetiche per il CAPTCHA"
|
|
|
821 |
# @ captcha
|
822 |
#~ msgid "CAPTCHA complexity level"
|
823 |
#~ msgstr "Livello complessità CAPTCHA"
|
|
|
824 |
# @ default
|
825 |
#~ msgid "Save Changes"
|
826 |
#~ msgstr "Salva le modifiche"
|
|
|
827 |
# @ captcha
|
828 |
#~ msgid "ERROR"
|
829 |
#~ msgstr "ERRORE"
|
|
|
830 |
# @ captcha
|
831 |
#~ msgid "Please fill the form."
|
832 |
#~ msgstr "Per favore compila il modulo."
|
|
|
833 |
# @ captcha
|
834 |
#, fuzzy
|
835 |
#~ msgid "Please enter a valid CAPTCHA value."
|
847 |
# @ captcha
|
848 |
#~ msgid "zero"
|
849 |
#~ msgstr "zero"
|
|
|
850 |
# @ captcha
|
851 |
#~ msgid "one"
|
852 |
#~ msgstr "uno"
|
|
|
853 |
# @ captcha
|
854 |
#~ msgid "three"
|
855 |
#~ msgstr "tre"
|
|
|
|
|
|
|
|
|
|
|
856 |
# @ captcha
|
857 |
#~ msgid "five"
|
858 |
#~ msgstr "cinque"
|
|
|
859 |
# @ captcha
|
860 |
#~ msgid "six"
|
861 |
#~ msgstr "sei"
|
|
|
862 |
# @ captcha
|
863 |
#~ msgid "seven"
|
864 |
#~ msgstr "sette"
|
|
|
865 |
# @ captcha
|
866 |
#~ msgid "eight"
|
867 |
#~ msgstr "otto"
|
|
|
868 |
# @ captcha
|
869 |
#~ msgid "nine"
|
870 |
#~ msgstr "nove"
|
|
|
871 |
# @ captcha
|
872 |
#~ msgid "eleven"
|
873 |
#~ msgstr "undici"
|
|
|
874 |
# @ captcha
|
875 |
#~ msgid "twelve"
|
876 |
#~ msgstr "dodici"
|
|
|
877 |
# @ captcha
|
878 |
#~ msgid "thirteen"
|
879 |
#~ msgstr "tredici"
|
|
|
880 |
# @ captcha
|
881 |
#~ msgid "fourteen"
|
882 |
#~ msgstr "quattordici"
|
|
|
883 |
# @ captcha
|
884 |
#~ msgid "fifteen"
|
885 |
#~ msgstr "quindici"
|
|
|
886 |
# @ captcha
|
887 |
#~ msgid "sixteen"
|
888 |
#~ msgstr "sedici"
|
|
|
889 |
# @ captcha
|
890 |
#~ msgid "seventeen"
|
891 |
#~ msgstr "diciassette"
|
|
|
892 |
# @ captcha
|
893 |
#~ msgid "eighteen"
|
894 |
#~ msgstr "diciotto"
|
|
|
895 |
# @ captcha
|
896 |
#~ msgid "nineteen"
|
897 |
#~ msgstr "diciannove"
|
|
|
898 |
# @ captcha
|
899 |
#~ msgid "ten"
|
900 |
#~ msgstr "dieci"
|
|
|
901 |
# @ captcha
|
902 |
#~ msgid "twenty"
|
903 |
#~ msgstr "venti"
|
|
|
904 |
# @ captcha
|
905 |
#~ msgid "thirty"
|
906 |
#~ msgstr "trenta"
|
|
|
907 |
# @ captcha
|
908 |
#~ msgid "forty"
|
909 |
#~ msgstr "quaranta"
|
|
|
910 |
# @ captcha
|
911 |
#~ msgid "fifty"
|
912 |
#~ msgstr "cinquanta"
|
|
|
913 |
# @ captcha
|
914 |
#~ msgid "sixty"
|
915 |
#~ msgstr "sessanta"
|
|
|
916 |
# @ captcha
|
917 |
#~ msgid "seventy"
|
918 |
#~ msgstr "settanta"
|
|
|
919 |
# @ captcha
|
920 |
#~ msgid "eighty"
|
921 |
#~ msgstr "ottanta"
|
|
|
922 |
# @ captcha
|
923 |
#~ msgid "ninety"
|
924 |
#~ msgstr "novanta"
|
|
|
925 |
# @ captcha
|
926 |
#~ msgid "and"
|
927 |
#~ msgstr "e"
|
|
|
928 |
# @ captcha
|
929 |
#, fuzzy
|
930 |
#~ msgid "Encryption password is not set"
|
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"
|
@@ -16,512 +16,583 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: bws_functions.php:
|
20 |
#, fuzzy
|
21 |
msgid "requires"
|
22 |
msgstr "必須フィールド"
|
23 |
|
24 |
-
#: bws_functions.php:
|
25 |
-
msgid ""
|
26 |
-
"or higher, that is why it has been deactivated! Please upgrade WordPress and "
|
27 |
-
"try again."
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: bws_functions.php:
|
31 |
msgid "Back to the WordPress"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: bws_functions.php:
|
35 |
#, fuzzy
|
36 |
msgid "Plugins page"
|
37 |
msgstr "Pro Plugins"
|
38 |
|
39 |
-
#: bws_functions.php:
|
40 |
-
#, fuzzy
|
41 |
-
msgid "Learn More"
|
42 |
-
msgstr "もっと読む"
|
43 |
-
|
44 |
-
#: bws_functions.php:137
|
45 |
msgid "It’s time to upgrade your"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: bws_functions.php:
|
49 |
msgid "to"
|
50 |
msgstr ""
|
51 |
|
52 |
-
#: bws_functions.php:
|
53 |
#, fuzzy
|
54 |
msgid "version!"
|
55 |
msgstr "PHP バージョン"
|
56 |
|
57 |
-
#: bws_functions.php:
|
58 |
msgid "Extend standard plugin functionality with new great options."
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: bws_functions.php:
|
66 |
#, fuzzy
|
67 |
msgid "Rate the plugin"
|
68 |
msgstr "有効なプラグイン"
|
69 |
|
70 |
-
#: bws_functions.php:
|
71 |
#, fuzzy
|
72 |
msgid "If there is something wrong about it, please contact us"
|
73 |
msgstr "もそご質問がある場合は、以下の方法でご連絡下さい:"
|
74 |
|
75 |
-
#: bws_functions.php:
|
|
|
76 |
msgid "Wrong license key"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: bws_functions.php:
|
80 |
-
|
81 |
-
|
82 |
-
"please contact us"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: bws_functions.php:
|
|
|
|
|
86 |
msgid "We are sorry for inconvenience."
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: bws_functions.php:
|
90 |
msgid "This license key is bind to another site"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: bws_functions.php:
|
94 |
-
|
95 |
-
"Unfortunately, you have exceeded the number of available tries per day. "
|
96 |
-
"Please, upload the plugin manually."
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: bws_functions.php:
|
100 |
-
msgid ""
|
101 |
-
"Unfortunately, Your license has expired. To continue getting top-priority "
|
102 |
-
"support and plugin updates you should extend it in your"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: bws_functions.php:
|
106 |
-
msgid ""
|
107 |
-
"Unfortunately, the PRO licence was already installed to this domain. The PRO "
|
108 |
-
"Trial license can be installed only once."
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: bws_functions.php:
|
|
|
|
|
112 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: bws_functions.php:
|
116 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: bws_functions.php:
|
120 |
-
msgid ""
|
121 |
-
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
122 |
-
"plugin manually"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: bws_functions.php:
|
126 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: bws_functions.php:
|
130 |
-
msgid ""
|
131 |
-
"Something went wrong. Try again later or upload the plugin manually. We are "
|
132 |
-
"sorry for inconvenience."
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: bws_functions.php:
|
136 |
#, fuzzy
|
137 |
msgid "Please, enter Your license key"
|
138 |
msgstr "メッセージを入力して下さい..."
|
139 |
|
140 |
-
#: bws_functions.php:
|
141 |
-
msgid ""
|
142 |
-
"Congratulations! The PRO version of the plugin is successfully download and "
|
143 |
-
"activated."
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: bws_functions.php:
|
|
|
147 |
msgid "Please, go to"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: bws_functions.php:
|
|
|
151 |
#, fuzzy
|
152 |
msgid "the setting page"
|
153 |
msgstr "追加設定"
|
154 |
|
155 |
-
#: bws_functions.php:
|
|
|
156 |
msgid "You will be redirected automatically in 5 seconds."
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: bws_functions.php:
|
160 |
msgid "You can download and activate"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: bws_functions.php:
|
164 |
msgid "version of this plugin by entering Your license key."
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: bws_functions.php:
|
168 |
-
|
169 |
-
"You can find your license key on your personal page Client area, by clicking "
|
170 |
-
"on the link"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: bws_functions.php:
|
|
|
174 |
msgid "(your username is the email you specify when purchasing the product)."
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: bws_functions.php:
|
178 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
179 |
#, fuzzy
|
180 |
msgid "Activate"
|
181 |
msgstr "有効なcaptcha"
|
182 |
|
183 |
-
#: bws_functions.php:
|
184 |
-
|
185 |
-
|
186 |
-
"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: bws_functions.php:
|
194 |
-
msgid "
|
|
|
|
|
|
|
|
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: bws_functions.php:
|
198 |
msgid "The license key is valid."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
202 |
#, fuzzy
|
203 |
msgid "Please, enter your license key"
|
204 |
msgstr "メッセージを入力して下さい..."
|
205 |
|
206 |
-
#: bws_functions.php:
|
207 |
-
msgid ""
|
208 |
-
"If needed you can check if the license key is correct or reenter it in the "
|
209 |
-
"field below. You can find your license key on your personal page - Client "
|
210 |
-
"area - on our website"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: bws_functions.php:
|
214 |
-
msgid ""
|
215 |
-
"(your username is the email you specify when purchasing the product). If "
|
216 |
-
"necessary, please submit \"Lost your password?\" request."
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: bws_functions.php:
|
220 |
msgid "Check license key"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: bws_functions.php:
|
224 |
-
msgid ""
|
225 |
-
"WARNING: We have noticed illegal use of our plugin by you. We strongly "
|
226 |
-
"recommend you to solve the problem within 24 hours, otherwise the plugin "
|
227 |
-
"will be deactivated. Please go to your personal"
|
228 |
msgstr ""
|
229 |
|
230 |
-
#: bws_functions.php:
|
231 |
-
msgid ""
|
232 |
-
"(your username is the email you specify when purchasing the product), where "
|
233 |
-
"you can make the necessary changes."
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: bws_functions.php:
|
237 |
-
msgid ""
|
238 |
-
|
239 |
-
|
|
|
|
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: bws_functions.php:
|
243 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
244 |
#, fuzzy
|
245 |
msgid "Learn more"
|
246 |
msgstr "もっと読む"
|
247 |
|
248 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
msgid "You license for"
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: bws_functions.php:
|
253 |
msgid "expires on"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: bws_functions.php:
|
257 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: bws_functions.php:
|
261 |
msgid "Close"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: bws_menu.php:
|
265 |
msgid "Not set"
|
266 |
msgstr "未設定"
|
267 |
|
268 |
-
#: bws_menu.php:
|
|
|
269 |
msgid "On"
|
270 |
msgstr "On"
|
271 |
|
272 |
-
#: bws_menu.php:
|
|
|
273 |
msgid "Off"
|
274 |
msgstr "Off"
|
275 |
|
276 |
-
#: bws_menu.php:
|
277 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
|
|
278 |
msgid "N/A"
|
279 |
msgstr "該当なし"
|
280 |
|
281 |
-
#: bws_menu.php:
|
282 |
msgid " Mb"
|
283 |
msgstr " Mb"
|
284 |
|
285 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
286 |
msgid "Yes"
|
287 |
msgstr "はい"
|
288 |
|
289 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
290 |
msgid "No"
|
291 |
msgstr "いいえ"
|
292 |
|
293 |
-
#: bws_menu.php:
|
294 |
msgid "Operating System"
|
295 |
msgstr "オペレーション・システム"
|
296 |
|
297 |
-
#: bws_menu.php:
|
298 |
msgid "Server"
|
299 |
msgstr "サーバ"
|
300 |
|
301 |
-
#: bws_menu.php:
|
302 |
msgid "Memory usage"
|
303 |
msgstr "メモリー使用"
|
304 |
|
305 |
-
#: bws_menu.php:
|
306 |
msgid "MYSQL Version"
|
307 |
msgstr "MYSQL バージョン"
|
308 |
|
309 |
-
#: bws_menu.php:
|
310 |
msgid "SQL Mode"
|
311 |
msgstr "SQLモード"
|
312 |
|
313 |
-
#: bws_menu.php:
|
314 |
msgid "PHP Version"
|
315 |
msgstr "PHP バージョン"
|
316 |
|
317 |
-
#: bws_menu.php:
|
318 |
msgid "PHP Safe Mode"
|
319 |
msgstr "PHP Safe Mode"
|
320 |
|
321 |
-
#: bws_menu.php:
|
322 |
msgid "PHP Allow URL fopen"
|
323 |
msgstr "PHP Allow URL fopen"
|
324 |
|
325 |
-
#: bws_menu.php:
|
326 |
msgid "PHP Memory Limit"
|
327 |
msgstr "PHP Memory Limit"
|
328 |
|
329 |
-
#: bws_menu.php:
|
330 |
msgid "PHP Max Upload Size"
|
331 |
msgstr "PHP Max Upload Size"
|
332 |
|
333 |
-
#: bws_menu.php:
|
334 |
msgid "PHP Max Post Size"
|
335 |
msgstr "PHP Max Post Size"
|
336 |
|
337 |
-
#: bws_menu.php:
|
338 |
msgid "PHP Max Script Execute Time"
|
339 |
msgstr "PHP Max Script Execute Time"
|
340 |
|
341 |
-
#: bws_menu.php:
|
342 |
msgid "PHP Exif support"
|
343 |
msgstr "PHP Exif サポート"
|
344 |
|
345 |
-
#: bws_menu.php:
|
346 |
msgid "PHP IPTC support"
|
347 |
msgstr "PHP IPTC サポート"
|
348 |
|
349 |
-
#: bws_menu.php:
|
350 |
msgid "PHP XML support"
|
351 |
msgstr "PHP XML サポート"
|
352 |
|
353 |
-
#: bws_menu.php:
|
354 |
msgid "Site URL"
|
355 |
msgstr "サイトURL"
|
356 |
|
357 |
-
#: bws_menu.php:
|
358 |
msgid "Home URL"
|
359 |
msgstr "ホームURL"
|
360 |
|
361 |
-
#: bws_menu.php:
|
362 |
msgid "WordPress Version"
|
363 |
msgstr "WordPress バージョン"
|
364 |
|
365 |
-
#: bws_menu.php:
|
366 |
msgid "WordPress DB Version"
|
367 |
msgstr "WordPress データベース バージョン"
|
368 |
|
369 |
-
#: bws_menu.php:
|
370 |
msgid "Multisite"
|
371 |
msgstr "複数サイト"
|
372 |
|
373 |
-
#: bws_menu.php:
|
374 |
msgid "Active Theme"
|
375 |
msgstr "有効なテーマ"
|
376 |
|
377 |
-
#: bws_menu.php:
|
378 |
msgid "Please enter a valid email address."
|
379 |
msgstr "正確なEメール・アドレスを入力して下さい。"
|
380 |
|
381 |
-
#: bws_menu.php:
|
382 |
msgid "Email with system info is sent to "
|
383 |
msgstr "システム情報をメールで送信:"
|
384 |
|
385 |
-
#: bws_menu.php:
|
386 |
msgid "Thank you for contacting us."
|
387 |
msgstr "ご連絡ありがとうございます"
|
388 |
|
389 |
-
#: bws_menu.php:
|
390 |
msgid "Sorry, email message could not be delivered."
|
391 |
msgstr "申し訳ございませんが、貴方のemailは配信できませんでした。"
|
392 |
|
393 |
-
#: bws_menu.php:
|
394 |
msgid "Need help?"
|
395 |
msgstr ""
|
396 |
|
397 |
-
#: bws_menu.php:
|
398 |
msgid "Client area"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#: bws_menu.php:
|
|
|
402 |
msgid "System status"
|
403 |
msgstr "システム状況"
|
404 |
|
405 |
-
#: bws_menu.php:
|
406 |
#, fuzzy
|
407 |
msgid "Plugins"
|
408 |
msgstr "Pro Plugins"
|
409 |
|
410 |
-
#: bws_menu.php:
|
411 |
msgid "Themes"
|
412 |
msgstr ""
|
413 |
|
414 |
-
#: bws_menu.php:
|
415 |
msgid "All"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#: bws_menu.php:
|
419 |
#, fuzzy
|
420 |
msgid "Installed"
|
421 |
msgstr "%s 導入"
|
422 |
|
423 |
-
#: bws_menu.php:
|
424 |
#, fuzzy
|
425 |
msgid "Recommended"
|
426 |
msgstr "推奨プラグイン"
|
427 |
|
428 |
-
#: bws_menu.php:
|
429 |
msgid "Installed plugins"
|
430 |
msgstr "導入済みプラグイン"
|
431 |
|
432 |
-
#: bws_menu.php:
|
|
|
433 |
msgid "Settings"
|
434 |
msgstr "設定"
|
435 |
|
436 |
-
#: bws_menu.php:
|
|
|
437 |
#, fuzzy
|
438 |
msgid "Activate this plugin"
|
439 |
msgstr "有効なプラグイン"
|
440 |
|
441 |
-
#: bws_menu.php:
|
|
|
|
|
442 |
msgid "Go"
|
443 |
msgstr ""
|
444 |
|
445 |
-
#: bws_menu.php:
|
|
|
|
|
446 |
msgid "DONATE"
|
447 |
msgstr ""
|
448 |
|
449 |
-
#: bws_menu.php:
|
450 |
msgid "Recommended plugins"
|
451 |
msgstr "推奨プラグイン"
|
452 |
|
453 |
-
#: bws_menu.php:
|
454 |
#, fuzzy
|
455 |
msgid "Install now"
|
456 |
msgstr "Installa Ora"
|
457 |
|
458 |
-
#: bws_menu.php:
|
459 |
msgid "Try again"
|
460 |
msgstr ""
|
461 |
|
462 |
-
#: bws_menu.php:
|
463 |
#, php-format
|
464 |
msgid "Preview “%s”"
|
465 |
msgstr ""
|
466 |
|
467 |
-
#: bws_menu.php:
|
468 |
#, php-format
|
469 |
msgid "Install %s"
|
470 |
msgstr "%s 導入"
|
471 |
|
472 |
-
#: bws_menu.php:
|
473 |
msgid "Install Now"
|
474 |
msgstr "Installa Ora"
|
475 |
|
476 |
-
#: bws_menu.php:
|
477 |
#, php-format
|
478 |
msgid "Update to version %s"
|
479 |
msgstr ""
|
480 |
|
481 |
-
#: bws_menu.php:
|
482 |
msgid "Update"
|
483 |
msgstr ""
|
484 |
|
485 |
-
#: bws_menu.php:
|
486 |
#, php-format
|
487 |
msgid "Preview %s"
|
488 |
msgstr ""
|
489 |
|
490 |
-
#: bws_menu.php:
|
491 |
msgid "Preview"
|
492 |
msgstr ""
|
493 |
|
494 |
-
#: bws_menu.php:
|
|
|
495 |
#, php-format
|
496 |
msgid "By %s"
|
497 |
msgstr ""
|
498 |
|
499 |
-
#: bws_menu.php:
|
500 |
msgid "Details"
|
501 |
msgstr ""
|
502 |
|
503 |
-
#: bws_menu.php:
|
504 |
#, fuzzy
|
505 |
msgid "Already Installed"
|
506 |
msgstr "%s 導入"
|
507 |
|
508 |
-
#: bws_menu.php:
|
509 |
msgid "Environment"
|
510 |
msgstr "環境"
|
511 |
|
512 |
-
#: bws_menu.php:
|
513 |
msgid "Active Plugins"
|
514 |
msgstr "有効なプラグイン"
|
515 |
|
516 |
-
#: bws_menu.php:
|
517 |
msgid "Inactive Plugins"
|
518 |
msgstr "無効なプラグイン"
|
519 |
|
520 |
-
#: bws_menu.php:
|
521 |
msgid "Send to support"
|
522 |
msgstr "サポートに送信"
|
523 |
|
524 |
-
#: bws_menu.php:
|
525 |
msgid "Send to custom email »"
|
526 |
msgstr "カスタムEメールに送信»"
|
527 |
|
@@ -664,9 +735,6 @@ msgstr "カスタムEメールに送信»"
|
|
664 |
#~ "コンタクトフォームをあなたのサイトに追加したい場合は、このショートカットを"
|
665 |
#~ "投稿、ページ又はウェジットにコピーして貼り付けるだけです:"
|
666 |
|
667 |
-
#~ msgid "or"
|
668 |
-
#~ msgstr "又は"
|
669 |
-
|
670 |
#~ msgid ""
|
671 |
#~ "If have any problems with the standard shortcode [contact_form], you "
|
672 |
#~ "should use the shortcode"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-05-11 14:11+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-05-11 14:11+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: foken <foken@gmx.com>\n"
|
9 |
"Language: ja_JP\n"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: bws_functions.php:89
|
20 |
#, fuzzy
|
21 |
msgid "requires"
|
22 |
msgstr "必須フィールド"
|
23 |
|
24 |
+
#: bws_functions.php:91
|
25 |
+
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
|
|
|
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: bws_functions.php:92
|
29 |
msgid "Back to the WordPress"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: bws_functions.php:94
|
33 |
#, fuzzy
|
34 |
msgid "Plugins page"
|
35 |
msgstr "Pro Plugins"
|
36 |
|
37 |
+
#: bws_functions.php:151
|
|
|
|
|
|
|
|
|
|
|
38 |
msgid "It’s time to upgrade your"
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: bws_functions.php:151
|
42 |
msgid "to"
|
43 |
msgstr ""
|
44 |
|
45 |
+
#: bws_functions.php:151
|
46 |
#, fuzzy
|
47 |
msgid "version!"
|
48 |
msgstr "PHP バージョン"
|
49 |
|
50 |
+
#: bws_functions.php:152
|
51 |
msgid "Extend standard plugin functionality with new great options."
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: bws_functions.php:155
|
55 |
+
#: bws_functions.php:542
|
56 |
+
#, fuzzy
|
57 |
+
msgid "Learn More"
|
58 |
+
msgstr "もっと読む"
|
59 |
+
|
60 |
+
#: bws_functions.php:172
|
61 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: bws_functions.php:173
|
65 |
#, fuzzy
|
66 |
msgid "Rate the plugin"
|
67 |
msgstr "有効なプラグイン"
|
68 |
|
69 |
+
#: bws_functions.php:176
|
70 |
#, fuzzy
|
71 |
msgid "If there is something wrong about it, please contact us"
|
72 |
msgstr "もそご質問がある場合は、以下の方法でご連絡下さい:"
|
73 |
|
74 |
+
#: bws_functions.php:193
|
75 |
+
#: bws_functions.php:229
|
76 |
msgid "Wrong license key"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: bws_functions.php:223
|
80 |
+
#: bws_functions.php:455
|
81 |
+
#: bws_functions.php:506
|
82 |
+
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: bws_functions.php:223
|
86 |
+
#: bws_functions.php:455
|
87 |
+
#: bws_functions.php:506
|
88 |
msgid "We are sorry for inconvenience."
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: bws_functions.php:231
|
92 |
msgid "This license key is bind to another site"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: bws_functions.php:233
|
96 |
+
#: bws_functions.php:365
|
97 |
+
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
|
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: bws_functions.php:235
|
101 |
+
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
|
|
|
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: bws_functions.php:237
|
105 |
+
msgid "Unfortunately, the PRO licence was already installed to this domain. The PRO Trial license can be installed only once."
|
|
|
|
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: bws_functions.php:248
|
109 |
+
#: bws_functions.php:270
|
110 |
+
#: bws_functions.php:292
|
111 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: bws_functions.php:260
|
115 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: bws_functions.php:266
|
119 |
+
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
|
|
|
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: bws_functions.php:273
|
123 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: bws_functions.php:296
|
127 |
+
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
|
|
|
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: bws_functions.php:321
|
131 |
#, fuzzy
|
132 |
msgid "Please, enter Your license key"
|
133 |
msgstr "メッセージを入力して下さい..."
|
134 |
|
135 |
+
#: bws_functions.php:338
|
136 |
+
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
|
|
|
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: bws_functions.php:340
|
140 |
+
#: bws_functions.php:422
|
141 |
msgid "Please, go to"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: bws_functions.php:340
|
145 |
+
#: bws_functions.php:422
|
146 |
#, fuzzy
|
147 |
msgid "the setting page"
|
148 |
msgstr "追加設定"
|
149 |
|
150 |
+
#: bws_functions.php:341
|
151 |
+
#: bws_functions.php:423
|
152 |
msgid "You will be redirected automatically in 5 seconds."
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: bws_functions.php:346
|
156 |
msgid "You can download and activate"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: bws_functions.php:348
|
160 |
msgid "version of this plugin by entering Your license key."
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: bws_functions.php:350
|
164 |
+
#: bws_functions.php:391
|
165 |
+
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
|
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: bws_functions.php:352
|
169 |
+
#: bws_functions.php:393
|
170 |
msgid "(your username is the email you specify when purchasing the product)."
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: bws_functions.php:356
|
174 |
+
msgid "or"
|
175 |
+
msgstr "又は"
|
176 |
+
|
177 |
+
#: bws_functions.php:356
|
178 |
+
#, php-format
|
179 |
+
msgid "Start Your Free %s-Day Trial Now"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: bws_functions.php:362
|
183 |
+
#: bws_functions.php:371
|
184 |
+
#: bws_functions.php:401
|
185 |
+
#: bws_functions.php:409
|
186 |
+
#: bws_menu.php:643
|
187 |
+
#: bws_menu.php:700
|
188 |
#, fuzzy
|
189 |
msgid "Activate"
|
190 |
msgstr "有効なcaptcha"
|
191 |
|
192 |
+
#: bws_functions.php:388
|
193 |
+
#: bws_functions.php:481
|
194 |
+
#, php-format
|
195 |
+
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: bws_functions.php:389
|
199 |
+
msgid "After that you can activate it by entering your license key."
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: bws_functions.php:403
|
203 |
+
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: bws_functions.php:420
|
207 |
+
msgid "Congratulations! The PRO license of the plugin is successfully activated."
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: bws_functions.php:461
|
211 |
+
msgid "Wrong license key."
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: bws_functions.php:463
|
215 |
+
msgid "This license key is bind to another site."
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: bws_functions.php:465
|
219 |
+
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: bws_functions.php:467
|
223 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: bws_functions.php:469
|
227 |
+
msgid "Unfortunately, the PRO Trial licence was already installed to this domain. The PRO Trial license can be installed only once."
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: bws_functions.php:473
|
231 |
+
msgid "The PRO Trial license key is valid."
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: bws_functions.php:475
|
235 |
msgid "The license key is valid."
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: bws_functions.php:478
|
239 |
+
msgid "Your license will expire on"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: bws_functions.php:511
|
243 |
#, fuzzy
|
244 |
msgid "Please, enter your license key"
|
245 |
msgstr "メッセージを入力して下さい..."
|
246 |
|
247 |
+
#: bws_functions.php:524
|
248 |
+
msgid "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"
|
|
|
|
|
|
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: bws_functions.php:524
|
252 |
+
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
|
|
|
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: bws_functions.php:528
|
256 |
msgid "Check license key"
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: bws_functions.php:542
|
260 |
+
msgid "WARNING: Illegal use notification"
|
|
|
|
|
|
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: bws_functions.php:542
|
264 |
+
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."
|
|
|
|
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: bws_functions.php:550
|
268 |
+
msgid "Notice: Your PRO Trial license has expired. To continue using the plugin you should buy a PRO license"
|
269 |
+
msgstr ""
|
270 |
+
|
271 |
+
#: bws_functions.php:552
|
272 |
+
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: bws_functions.php:552
|
276 |
+
#: bws_functions.php:605
|
277 |
+
#: bws_menu.php:619
|
278 |
+
#: bws_menu.php:641
|
279 |
+
#: bws_menu.php:668
|
280 |
+
#: bws_menu.php:698
|
281 |
+
#: bws_menu.php:744
|
282 |
#, fuzzy
|
283 |
msgid "Learn more"
|
284 |
msgstr "もっと読む"
|
285 |
|
286 |
+
#: bws_functions.php:562
|
287 |
+
#, php-format
|
288 |
+
msgid "Notice: You are using the PRO Trial license of %s plugin."
|
289 |
+
msgstr ""
|
290 |
+
|
291 |
+
#: bws_functions.php:564
|
292 |
+
msgid "Notice: You are using the PRO Trial license of plugin."
|
293 |
+
msgstr ""
|
294 |
+
|
295 |
+
#: bws_functions.php:567
|
296 |
+
msgid "The PRO Trial license will expire on"
|
297 |
+
msgstr ""
|
298 |
+
|
299 |
+
#: bws_functions.php:605
|
300 |
msgid "You license for"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: bws_functions.php:605
|
304 |
msgid "expires on"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: bws_functions.php:605
|
308 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: bws_functions.php:680
|
312 |
msgid "Close"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: bws_menu.php:456
|
316 |
msgid "Not set"
|
317 |
msgstr "未設定"
|
318 |
|
319 |
+
#: bws_menu.php:458
|
320 |
+
#: bws_menu.php:459
|
321 |
msgid "On"
|
322 |
msgstr "On"
|
323 |
|
324 |
+
#: bws_menu.php:458
|
325 |
+
#: bws_menu.php:459
|
326 |
msgid "Off"
|
327 |
msgstr "Off"
|
328 |
|
329 |
+
#: bws_menu.php:460
|
330 |
+
#: bws_menu.php:461
|
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:464
|
339 |
msgid " Mb"
|
340 |
msgstr " Mb"
|
341 |
|
342 |
+
#: bws_menu.php:465
|
343 |
+
#: bws_menu.php:466
|
344 |
+
#: bws_menu.php:467
|
345 |
+
#: bws_menu.php:472
|
346 |
msgid "Yes"
|
347 |
msgstr "はい"
|
348 |
|
349 |
+
#: bws_menu.php:465
|
350 |
+
#: bws_menu.php:466
|
351 |
+
#: bws_menu.php:467
|
352 |
+
#: bws_menu.php:474
|
353 |
msgid "No"
|
354 |
msgstr "いいえ"
|
355 |
|
356 |
+
#: bws_menu.php:484
|
357 |
msgid "Operating System"
|
358 |
msgstr "オペレーション・システム"
|
359 |
|
360 |
+
#: bws_menu.php:485
|
361 |
msgid "Server"
|
362 |
msgstr "サーバ"
|
363 |
|
364 |
+
#: bws_menu.php:486
|
365 |
msgid "Memory usage"
|
366 |
msgstr "メモリー使用"
|
367 |
|
368 |
+
#: bws_menu.php:487
|
369 |
msgid "MYSQL Version"
|
370 |
msgstr "MYSQL バージョン"
|
371 |
|
372 |
+
#: bws_menu.php:488
|
373 |
msgid "SQL Mode"
|
374 |
msgstr "SQLモード"
|
375 |
|
376 |
+
#: bws_menu.php:489
|
377 |
msgid "PHP Version"
|
378 |
msgstr "PHP バージョン"
|
379 |
|
380 |
+
#: bws_menu.php:490
|
381 |
msgid "PHP Safe Mode"
|
382 |
msgstr "PHP Safe Mode"
|
383 |
|
384 |
+
#: bws_menu.php:491
|
385 |
msgid "PHP Allow URL fopen"
|
386 |
msgstr "PHP Allow URL fopen"
|
387 |
|
388 |
+
#: bws_menu.php:492
|
389 |
msgid "PHP Memory Limit"
|
390 |
msgstr "PHP Memory Limit"
|
391 |
|
392 |
+
#: bws_menu.php:493
|
393 |
msgid "PHP Max Upload Size"
|
394 |
msgstr "PHP Max Upload Size"
|
395 |
|
396 |
+
#: bws_menu.php:494
|
397 |
msgid "PHP Max Post Size"
|
398 |
msgstr "PHP Max Post Size"
|
399 |
|
400 |
+
#: bws_menu.php:495
|
401 |
msgid "PHP Max Script Execute Time"
|
402 |
msgstr "PHP Max Script Execute Time"
|
403 |
|
404 |
+
#: bws_menu.php:496
|
405 |
msgid "PHP Exif support"
|
406 |
msgstr "PHP Exif サポート"
|
407 |
|
408 |
+
#: bws_menu.php:497
|
409 |
msgid "PHP IPTC support"
|
410 |
msgstr "PHP IPTC サポート"
|
411 |
|
412 |
+
#: bws_menu.php:498
|
413 |
msgid "PHP XML support"
|
414 |
msgstr "PHP XML サポート"
|
415 |
|
416 |
+
#: bws_menu.php:499
|
417 |
msgid "Site URL"
|
418 |
msgstr "サイトURL"
|
419 |
|
420 |
+
#: bws_menu.php:500
|
421 |
msgid "Home URL"
|
422 |
msgstr "ホームURL"
|
423 |
|
424 |
+
#: bws_menu.php:503
|
425 |
msgid "WordPress Version"
|
426 |
msgstr "WordPress バージョン"
|
427 |
|
428 |
+
#: bws_menu.php:504
|
429 |
msgid "WordPress DB Version"
|
430 |
msgstr "WordPress データベース バージョン"
|
431 |
|
432 |
+
#: bws_menu.php:505
|
433 |
msgid "Multisite"
|
434 |
msgstr "複数サイト"
|
435 |
|
436 |
+
#: bws_menu.php:506
|
437 |
msgid "Active Theme"
|
438 |
msgstr "有効なテーマ"
|
439 |
|
440 |
+
#: bws_menu.php:521
|
441 |
msgid "Please enter a valid email address."
|
442 |
msgstr "正確なEメール・アドレスを入力して下さい。"
|
443 |
|
444 |
+
#: bws_menu.php:525
|
445 |
msgid "Email with system info is sent to "
|
446 |
msgstr "システム情報をメールで送信:"
|
447 |
|
448 |
+
#: bws_menu.php:529
|
449 |
msgid "Thank you for contacting us."
|
450 |
msgstr "ご連絡ありがとうございます"
|
451 |
|
452 |
+
#: bws_menu.php:562
|
453 |
msgid "Sorry, email message could not be delivered."
|
454 |
msgstr "申し訳ございませんが、貴方のemailは配信できませんでした。"
|
455 |
|
456 |
+
#: bws_menu.php:570
|
457 |
msgid "Need help?"
|
458 |
msgstr ""
|
459 |
|
460 |
+
#: bws_menu.php:571
|
461 |
msgid "Client area"
|
462 |
msgstr ""
|
463 |
|
464 |
+
#: bws_menu.php:572
|
465 |
+
#: bws_menu.php:883
|
466 |
msgid "System status"
|
467 |
msgstr "システム状況"
|
468 |
|
469 |
+
#: bws_menu.php:577
|
470 |
#, fuzzy
|
471 |
msgid "Plugins"
|
472 |
msgstr "Pro Plugins"
|
473 |
|
474 |
+
#: bws_menu.php:579
|
475 |
msgid "Themes"
|
476 |
msgstr ""
|
477 |
|
478 |
+
#: bws_menu.php:584
|
479 |
msgid "All"
|
480 |
msgstr ""
|
481 |
|
482 |
+
#: bws_menu.php:585
|
483 |
#, fuzzy
|
484 |
msgid "Installed"
|
485 |
msgstr "%s 導入"
|
486 |
|
487 |
+
#: bws_menu.php:586
|
488 |
#, fuzzy
|
489 |
msgid "Recommended"
|
490 |
msgstr "推奨プラグイン"
|
491 |
|
492 |
+
#: bws_menu.php:590
|
493 |
msgid "Installed plugins"
|
494 |
msgstr "導入済みプラグイン"
|
495 |
|
496 |
+
#: bws_menu.php:622
|
497 |
+
#: bws_menu.php:671
|
498 |
msgid "Settings"
|
499 |
msgstr "設定"
|
500 |
|
501 |
+
#: bws_menu.php:643
|
502 |
+
#: bws_menu.php:700
|
503 |
#, fuzzy
|
504 |
msgid "Activate this plugin"
|
505 |
msgstr "有効なプラグイン"
|
506 |
|
507 |
+
#: bws_menu.php:658
|
508 |
+
#: bws_menu.php:688
|
509 |
+
#: bws_menu.php:734
|
510 |
msgid "Go"
|
511 |
msgstr ""
|
512 |
|
513 |
+
#: bws_menu.php:662
|
514 |
+
#: bws_menu.php:692
|
515 |
+
#: bws_menu.php:738
|
516 |
msgid "DONATE"
|
517 |
msgstr ""
|
518 |
|
519 |
+
#: bws_menu.php:708
|
520 |
msgid "Recommended plugins"
|
521 |
msgstr "推奨プラグイン"
|
522 |
|
523 |
+
#: bws_menu.php:746
|
524 |
#, fuzzy
|
525 |
msgid "Install now"
|
526 |
msgstr "Installa Ora"
|
527 |
|
528 |
+
#: bws_menu.php:767
|
529 |
msgid "Try again"
|
530 |
msgstr ""
|
531 |
|
532 |
+
#: bws_menu.php:785
|
533 |
#, php-format
|
534 |
msgid "Preview “%s”"
|
535 |
msgstr ""
|
536 |
|
537 |
+
#: bws_menu.php:816
|
538 |
#, php-format
|
539 |
msgid "Install %s"
|
540 |
msgstr "%s 導入"
|
541 |
|
542 |
+
#: bws_menu.php:816
|
543 |
msgid "Install Now"
|
544 |
msgstr "Installa Ora"
|
545 |
|
546 |
+
#: bws_menu.php:819
|
547 |
#, php-format
|
548 |
msgid "Update to version %s"
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: bws_menu.php:819
|
552 |
msgid "Update"
|
553 |
msgstr ""
|
554 |
|
555 |
+
#: bws_menu.php:826
|
556 |
#, php-format
|
557 |
msgid "Preview %s"
|
558 |
msgstr ""
|
559 |
|
560 |
+
#: bws_menu.php:826
|
561 |
msgid "Preview"
|
562 |
msgstr ""
|
563 |
|
564 |
+
#: bws_menu.php:832
|
565 |
+
#: bws_menu.php:864
|
566 |
#, php-format
|
567 |
msgid "By %s"
|
568 |
msgstr ""
|
569 |
|
570 |
+
#: bws_menu.php:838
|
571 |
msgid "Details"
|
572 |
msgstr ""
|
573 |
|
574 |
+
#: bws_menu.php:870
|
575 |
#, fuzzy
|
576 |
msgid "Already Installed"
|
577 |
msgstr "%s 導入"
|
578 |
|
579 |
+
#: bws_menu.php:886
|
580 |
msgid "Environment"
|
581 |
msgstr "環境"
|
582 |
|
583 |
+
#: bws_menu.php:897
|
584 |
msgid "Active Plugins"
|
585 |
msgstr "有効なプラグイン"
|
586 |
|
587 |
+
#: bws_menu.php:910
|
588 |
msgid "Inactive Plugins"
|
589 |
msgstr "無効なプラグイン"
|
590 |
|
591 |
+
#: bws_menu.php:926
|
592 |
msgid "Send to support"
|
593 |
msgstr "サポートに送信"
|
594 |
|
595 |
+
#: bws_menu.php:933
|
596 |
msgid "Send to custom email »"
|
597 |
msgstr "カスタムEメールに送信»"
|
598 |
|
735 |
#~ "コンタクトフォームをあなたのサイトに追加したい場合は、このショートカットを"
|
736 |
#~ "投稿、ページ又はウェジットにコピーして貼り付けるだけです:"
|
737 |
|
|
|
|
|
|
|
738 |
#~ msgid ""
|
739 |
#~ "If have any problems with the standard shortcode [contact_form], you "
|
740 |
#~ "should use the shortcode"
|
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"
|
@@ -18,596 +18,660 @@ msgstr ""
|
|
18 |
"X-Textdomain-Support: yes\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: bws_functions.php:
|
22 |
msgid "requires"
|
23 |
msgstr ""
|
24 |
|
25 |
-
#: bws_functions.php:
|
26 |
-
msgid ""
|
27 |
-
"or higher, that is why it has been deactivated! Please upgrade WordPress and "
|
28 |
-
"try again."
|
29 |
msgstr ""
|
30 |
|
31 |
-
#: bws_functions.php:
|
32 |
msgid "Back to the WordPress"
|
33 |
msgstr ""
|
34 |
|
35 |
# @ captcha
|
36 |
-
#: bws_functions.php:
|
37 |
#, fuzzy
|
38 |
msgid "Plugins page"
|
39 |
msgstr "Plugins Pro"
|
40 |
|
41 |
-
|
42 |
-
#: bws_functions.php:134
|
43 |
-
#, fuzzy
|
44 |
-
msgid "Learn More"
|
45 |
-
msgstr "Leia Mais"
|
46 |
-
|
47 |
-
#: bws_functions.php:137
|
48 |
msgid "It’s time to upgrade your"
|
49 |
msgstr ""
|
50 |
|
51 |
-
#: bws_functions.php:
|
52 |
msgid "to"
|
53 |
msgstr ""
|
54 |
|
55 |
# @ captcha
|
56 |
-
#: bws_functions.php:
|
57 |
#, fuzzy
|
58 |
msgid "version!"
|
59 |
msgstr "Versão do PHP"
|
60 |
|
61 |
-
#: bws_functions.php:
|
62 |
msgid "Extend standard plugin functionality with new great options."
|
63 |
msgstr ""
|
64 |
|
65 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
67 |
msgstr ""
|
68 |
|
69 |
# @ captcha
|
70 |
-
#: bws_functions.php:
|
71 |
#, fuzzy
|
72 |
msgid "Rate the plugin"
|
73 |
msgstr "Plugins ativados"
|
74 |
|
75 |
# @ captcha
|
76 |
-
#: bws_functions.php:
|
77 |
#, fuzzy
|
78 |
msgid "If there is something wrong about it, please contact us"
|
79 |
msgstr "Se você tiver quaisquer perguntas, por favor entre em contato via"
|
80 |
|
81 |
-
#: bws_functions.php:
|
|
|
82 |
msgid "Wrong license key"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: bws_functions.php:
|
86 |
-
|
87 |
-
|
88 |
-
"please contact us"
|
89 |
msgstr ""
|
90 |
|
91 |
-
#: bws_functions.php:
|
|
|
|
|
92 |
msgid "We are sorry for inconvenience."
|
93 |
msgstr ""
|
94 |
|
95 |
-
#: bws_functions.php:
|
96 |
msgid "This license key is bind to another site"
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: bws_functions.php:
|
100 |
-
|
101 |
-
"Unfortunately, you have exceeded the number of available tries per day. "
|
102 |
-
"Please, upload the plugin manually."
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: bws_functions.php:
|
106 |
-
msgid ""
|
107 |
-
"Unfortunately, Your license has expired. To continue getting top-priority "
|
108 |
-
"support and plugin updates you should extend it in your"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: bws_functions.php:
|
112 |
-
msgid ""
|
113 |
-
"Unfortunately, the PRO licence was already installed to this domain. The PRO "
|
114 |
-
"Trial license can be installed only once."
|
115 |
msgstr ""
|
116 |
|
117 |
-
#: bws_functions.php:
|
|
|
|
|
118 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: bws_functions.php:
|
122 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: bws_functions.php:
|
126 |
-
msgid ""
|
127 |
-
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
128 |
-
"plugin manually"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: bws_functions.php:
|
132 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: bws_functions.php:
|
136 |
-
msgid ""
|
137 |
-
"Something went wrong. Try again later or upload the plugin manually. We are "
|
138 |
-
"sorry for inconvenience."
|
139 |
msgstr ""
|
140 |
|
141 |
-
#: bws_functions.php:
|
142 |
msgid "Please, enter Your license key"
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: bws_functions.php:
|
146 |
-
msgid ""
|
147 |
-
"Congratulations! The PRO version of the plugin is successfully download and "
|
148 |
-
"activated."
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: bws_functions.php:
|
|
|
152 |
msgid "Please, go to"
|
153 |
msgstr ""
|
154 |
|
155 |
-
#: bws_functions.php:
|
|
|
156 |
msgid "the setting page"
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: bws_functions.php:
|
|
|
160 |
msgid "You will be redirected automatically in 5 seconds."
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: bws_functions.php:
|
164 |
msgid "You can download and activate"
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: bws_functions.php:
|
168 |
msgid "version of this plugin by entering Your license key."
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: bws_functions.php:
|
172 |
-
|
173 |
-
"You can find your license key on your personal page Client area, by clicking "
|
174 |
-
"on the link"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: bws_functions.php:
|
|
|
178 |
msgid "(your username is the email you specify when purchasing the product)."
|
179 |
msgstr ""
|
180 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
181 |
# @ captcha
|
182 |
-
#: bws_functions.php:
|
183 |
-
#:
|
|
|
|
|
|
|
|
|
184 |
#, fuzzy
|
185 |
msgid "Activate"
|
186 |
msgstr "Plugins ativados"
|
187 |
|
188 |
-
#: bws_functions.php:
|
189 |
-
|
190 |
-
|
191 |
-
"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
195 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: bws_functions.php:
|
199 |
-
msgid "
|
200 |
msgstr ""
|
201 |
|
202 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
203 |
msgid "The license key is valid."
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
207 |
msgid "Please, enter your license key"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: bws_functions.php:
|
211 |
-
msgid ""
|
212 |
-
"If needed you can check if the license key is correct or reenter it in the "
|
213 |
-
"field below. You can find your license key on your personal page - Client "
|
214 |
-
"area - on our website"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: bws_functions.php:
|
218 |
-
msgid ""
|
219 |
-
"(your username is the email you specify when purchasing the product). If "
|
220 |
-
"necessary, please submit \"Lost your password?\" request."
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: bws_functions.php:
|
224 |
msgid "Check license key"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: bws_functions.php:
|
228 |
-
msgid ""
|
229 |
-
"WARNING: We have noticed illegal use of our plugin by you. We strongly "
|
230 |
-
"recommend you to solve the problem within 24 hours, otherwise the plugin "
|
231 |
-
"will be deactivated. Please go to your personal"
|
232 |
msgstr ""
|
233 |
|
234 |
-
#: bws_functions.php:
|
235 |
-
msgid ""
|
236 |
-
"(your username is the email you specify when purchasing the product), where "
|
237 |
-
"you can make the necessary changes."
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: bws_functions.php:
|
241 |
-
msgid ""
|
242 |
-
|
243 |
-
|
|
|
|
|
244 |
msgstr ""
|
245 |
|
246 |
# @ captcha
|
247 |
-
#: bws_functions.php:
|
248 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
249 |
#, fuzzy
|
250 |
msgid "Learn more"
|
251 |
msgstr "Leia Mais"
|
252 |
|
253 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
254 |
msgid "You license for"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: bws_functions.php:
|
258 |
msgid "expires on"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: bws_functions.php:
|
262 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: bws_functions.php:
|
266 |
msgid "Close"
|
267 |
msgstr ""
|
268 |
|
269 |
# @ captcha
|
270 |
-
#: bws_menu.php:
|
271 |
msgid "Not set"
|
272 |
msgstr "Não definido"
|
273 |
|
274 |
# @ captcha
|
275 |
-
#: bws_menu.php:
|
|
|
276 |
msgid "On"
|
277 |
msgstr "Ligado"
|
278 |
|
279 |
# @ captcha
|
280 |
-
#: bws_menu.php:
|
|
|
281 |
msgid "Off"
|
282 |
msgstr "Desligado"
|
283 |
|
284 |
# @ captcha
|
285 |
-
#: bws_menu.php:
|
286 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
|
|
287 |
msgid "N/A"
|
288 |
msgstr "N/D"
|
289 |
|
290 |
# @ captcha
|
291 |
-
#: bws_menu.php:
|
292 |
msgid " Mb"
|
293 |
msgstr " Mb"
|
294 |
|
295 |
# @ captcha
|
296 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
297 |
msgid "Yes"
|
298 |
msgstr "Sim"
|
299 |
|
300 |
# @ captcha
|
301 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
302 |
msgid "No"
|
303 |
msgstr "Não"
|
304 |
|
305 |
# @ captcha
|
306 |
-
#: bws_menu.php:
|
307 |
msgid "Operating System"
|
308 |
msgstr "Sistema Operacional"
|
309 |
|
310 |
# @ captcha
|
311 |
-
#: bws_menu.php:
|
312 |
msgid "Server"
|
313 |
msgstr "Servidor"
|
314 |
|
315 |
# @ captcha
|
316 |
-
#: bws_menu.php:
|
317 |
msgid "Memory usage"
|
318 |
msgstr "Uso de memória"
|
319 |
|
320 |
# @ captcha
|
321 |
-
#: bws_menu.php:
|
322 |
msgid "MYSQL Version"
|
323 |
msgstr "Versão do MySQL"
|
324 |
|
325 |
# @ captcha
|
326 |
-
#: bws_menu.php:
|
327 |
msgid "SQL Mode"
|
328 |
msgstr "Modo SQL"
|
329 |
|
330 |
# @ captcha
|
331 |
-
#: bws_menu.php:
|
332 |
msgid "PHP Version"
|
333 |
msgstr "Versão do PHP"
|
334 |
|
335 |
# @ captcha
|
336 |
-
#: bws_menu.php:
|
337 |
msgid "PHP Safe Mode"
|
338 |
msgstr "Modo de Segurança do PHP"
|
339 |
|
340 |
# @ captcha
|
341 |
-
#: bws_menu.php:
|
342 |
msgid "PHP Allow URL fopen"
|
343 |
msgstr "Permissão de fopen de URL do PHP"
|
344 |
|
345 |
# @ captcha
|
346 |
-
#: bws_menu.php:
|
347 |
msgid "PHP Memory Limit"
|
348 |
msgstr "Limite de Memória do PHP"
|
349 |
|
350 |
# @ captcha
|
351 |
-
#: bws_menu.php:
|
352 |
msgid "PHP Max Upload Size"
|
353 |
msgstr "Tamanho Máximo de Upload no PHP"
|
354 |
|
355 |
# @ captcha
|
356 |
-
#: bws_menu.php:
|
357 |
msgid "PHP Max Post Size"
|
358 |
msgstr "Tamanho Máximo de Envio do PHP"
|
359 |
|
360 |
# @ captcha
|
361 |
-
#: bws_menu.php:
|
362 |
msgid "PHP Max Script Execute Time"
|
363 |
msgstr "Tempo de Execução Máximo do PHP"
|
364 |
|
365 |
# @ captcha
|
366 |
-
#: bws_menu.php:
|
367 |
msgid "PHP Exif support"
|
368 |
msgstr "Suporte a Exif no PHP"
|
369 |
|
370 |
# @ captcha
|
371 |
-
#: bws_menu.php:
|
372 |
msgid "PHP IPTC support"
|
373 |
msgstr "Suporte da IPTC no PHP"
|
374 |
|
375 |
# @ captcha
|
376 |
-
#: bws_menu.php:
|
377 |
msgid "PHP XML support"
|
378 |
msgstr "Suporte a XML no PHP"
|
379 |
|
380 |
# @ captcha
|
381 |
-
#: bws_menu.php:
|
382 |
msgid "Site URL"
|
383 |
msgstr "URL do Site"
|
384 |
|
385 |
# @ captcha
|
386 |
-
#: bws_menu.php:
|
387 |
msgid "Home URL"
|
388 |
msgstr "URL da Página Inicial"
|
389 |
|
390 |
# @ captcha
|
391 |
-
#: bws_menu.php:
|
392 |
msgid "WordPress Version"
|
393 |
msgstr "Versão do WordPress"
|
394 |
|
395 |
# @ captcha
|
396 |
-
#: bws_menu.php:
|
397 |
msgid "WordPress DB Version"
|
398 |
msgstr "Versão do DB do WordPress"
|
399 |
|
400 |
# @ captcha
|
401 |
-
#: bws_menu.php:
|
402 |
msgid "Multisite"
|
403 |
msgstr "Multisite"
|
404 |
|
405 |
# @ captcha
|
406 |
-
#: bws_menu.php:
|
407 |
msgid "Active Theme"
|
408 |
msgstr "Tema Ativo"
|
409 |
|
410 |
# @ captcha
|
411 |
-
#: bws_menu.php:
|
412 |
msgid "Please enter a valid email address."
|
413 |
msgstr "Por favor, informe um endereço de email válido."
|
414 |
|
415 |
# @ captcha
|
416 |
-
#: bws_menu.php:
|
417 |
msgid "Email with system info is sent to "
|
418 |
msgstr "Email com informações do sistema é enviado para "
|
419 |
|
420 |
# @ captcha
|
421 |
-
#: bws_menu.php:
|
422 |
msgid "Thank you for contacting us."
|
423 |
msgstr "Obrigado por nos contatar."
|
424 |
|
425 |
# @ captcha
|
426 |
-
#: bws_menu.php:
|
427 |
msgid "Sorry, email message could not be delivered."
|
428 |
msgstr "Desculpe, a mensagem de email não pôde ser enviada."
|
429 |
|
430 |
-
#: bws_menu.php:
|
431 |
msgid "Need help?"
|
432 |
msgstr ""
|
433 |
|
434 |
-
#: bws_menu.php:
|
435 |
msgid "Client area"
|
436 |
msgstr ""
|
437 |
|
438 |
# @ captcha
|
439 |
-
#: bws_menu.php:
|
|
|
440 |
msgid "System status"
|
441 |
msgstr "Status do sistema"
|
442 |
|
443 |
# @ captcha
|
444 |
-
#: bws_menu.php:
|
445 |
#, fuzzy
|
446 |
msgid "Plugins"
|
447 |
msgstr "Plugins Pro"
|
448 |
|
449 |
-
#: bws_menu.php:
|
450 |
msgid "Themes"
|
451 |
msgstr ""
|
452 |
|
453 |
-
#: bws_menu.php:
|
454 |
msgid "All"
|
455 |
msgstr ""
|
456 |
|
457 |
# @ default
|
458 |
-
#: bws_menu.php:
|
459 |
#, fuzzy
|
460 |
msgid "Installed"
|
461 |
msgstr "Instalar %s"
|
462 |
|
463 |
# @ captcha
|
464 |
-
#: bws_menu.php:
|
465 |
#, fuzzy
|
466 |
msgid "Recommended"
|
467 |
msgstr "Plugins Recomendados"
|
468 |
|
469 |
# @ captcha
|
470 |
-
#: bws_menu.php:
|
471 |
msgid "Installed plugins"
|
472 |
msgstr "Plugins Instalados"
|
473 |
|
474 |
# @ captcha
|
475 |
-
#: bws_menu.php:
|
|
|
476 |
msgid "Settings"
|
477 |
msgstr "Configurações"
|
478 |
|
479 |
# @ captcha
|
480 |
-
#: bws_menu.php:
|
|
|
481 |
#, fuzzy
|
482 |
msgid "Activate this plugin"
|
483 |
msgstr "Plugins ativados"
|
484 |
|
485 |
-
#: bws_menu.php:
|
|
|
|
|
486 |
msgid "Go"
|
487 |
msgstr ""
|
488 |
|
489 |
-
#: bws_menu.php:
|
|
|
|
|
490 |
msgid "DONATE"
|
491 |
msgstr ""
|
492 |
|
493 |
# @ captcha
|
494 |
-
#: bws_menu.php:
|
495 |
msgid "Recommended plugins"
|
496 |
msgstr "Plugins Recomendados"
|
497 |
|
498 |
# @ default
|
499 |
-
#: bws_menu.php:
|
500 |
#, fuzzy
|
501 |
msgid "Install now"
|
502 |
msgstr "Instalar %s"
|
503 |
|
504 |
-
#: bws_menu.php:
|
505 |
msgid "Try again"
|
506 |
msgstr ""
|
507 |
|
508 |
-
#: bws_menu.php:
|
509 |
#, php-format
|
510 |
msgid "Preview “%s”"
|
511 |
msgstr ""
|
512 |
|
513 |
# @ default
|
514 |
-
#: bws_menu.php:
|
515 |
#, php-format
|
516 |
msgid "Install %s"
|
517 |
msgstr "Instalar %s"
|
518 |
|
519 |
# @ default
|
520 |
-
#: bws_menu.php:
|
521 |
#, fuzzy
|
522 |
msgid "Install Now"
|
523 |
msgstr "Instalar %s"
|
524 |
|
525 |
-
#: bws_menu.php:
|
526 |
#, php-format
|
527 |
msgid "Update to version %s"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#: bws_menu.php:
|
531 |
msgid "Update"
|
532 |
msgstr ""
|
533 |
|
534 |
-
#: bws_menu.php:
|
535 |
#, php-format
|
536 |
msgid "Preview %s"
|
537 |
msgstr ""
|
538 |
|
539 |
-
#: bws_menu.php:
|
540 |
msgid "Preview"
|
541 |
msgstr ""
|
542 |
|
543 |
-
#: bws_menu.php:
|
|
|
544 |
#, php-format
|
545 |
msgid "By %s"
|
546 |
msgstr ""
|
547 |
|
548 |
-
#: bws_menu.php:
|
549 |
msgid "Details"
|
550 |
msgstr ""
|
551 |
|
552 |
# @ default
|
553 |
-
#: bws_menu.php:
|
554 |
#, fuzzy
|
555 |
msgid "Already Installed"
|
556 |
msgstr "Instalar %s"
|
557 |
|
558 |
# @ captcha
|
559 |
-
#: bws_menu.php:
|
560 |
msgid "Environment"
|
561 |
msgstr "Ambiente"
|
562 |
|
563 |
# @ captcha
|
564 |
-
#: bws_menu.php:
|
565 |
msgid "Active Plugins"
|
566 |
msgstr "Plugins Ativos"
|
567 |
|
568 |
# @ captcha
|
569 |
-
#: bws_menu.php:
|
570 |
msgid "Inactive Plugins"
|
571 |
msgstr "Plugins Inativos"
|
572 |
|
573 |
# @ captcha
|
574 |
-
#: bws_menu.php:
|
575 |
msgid "Send to support"
|
576 |
msgstr "Enviar para o suporte"
|
577 |
|
578 |
# @ captcha
|
579 |
-
#: bws_menu.php:
|
580 |
msgid "Send to custom email »"
|
581 |
msgstr "Enviar para email personalizado »"
|
582 |
|
583 |
# @ captcha
|
584 |
#~ msgid "Pro plugins"
|
585 |
#~ msgstr "Plugins Pro"
|
586 |
-
|
587 |
# @ captcha
|
588 |
#~ msgid "Activated plugins"
|
589 |
#~ msgstr "Plugins ativados"
|
590 |
-
|
591 |
# @ captcha
|
592 |
#~ msgid "Read more"
|
593 |
#~ msgstr "Leia Mais"
|
594 |
-
|
595 |
# @ captcha
|
596 |
#~ msgid "Purchase"
|
597 |
#~ msgstr "Compra"
|
598 |
-
|
599 |
# @ captcha
|
600 |
#~ msgid "Free plugins"
|
601 |
#~ msgstr "Plugins Grátis"
|
602 |
-
|
603 |
# @ captcha
|
604 |
#~ msgid "Download"
|
605 |
#~ msgstr "Baixar"
|
606 |
-
|
607 |
# @ captcha
|
608 |
#~ msgid "Install now from wordpress.org"
|
609 |
#~ msgstr "Instale agora do site do wordpress (wordpress.org)"
|
610 |
-
|
611 |
# @ captcha
|
612 |
#, fuzzy
|
613 |
#~ msgid "Activated theme"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-05-11 14:11+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-05-11 14:11+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"
|
18 |
"X-Textdomain-Support: yes\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: bws_functions.php:89
|
22 |
msgid "requires"
|
23 |
msgstr ""
|
24 |
|
25 |
+
#: bws_functions.php:91
|
26 |
+
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
|
|
|
|
27 |
msgstr ""
|
28 |
|
29 |
+
#: bws_functions.php:92
|
30 |
msgid "Back to the WordPress"
|
31 |
msgstr ""
|
32 |
|
33 |
# @ captcha
|
34 |
+
#: bws_functions.php:94
|
35 |
#, fuzzy
|
36 |
msgid "Plugins page"
|
37 |
msgstr "Plugins Pro"
|
38 |
|
39 |
+
#: bws_functions.php:151
|
|
|
|
|
|
|
|
|
|
|
|
|
40 |
msgid "It’s time to upgrade your"
|
41 |
msgstr ""
|
42 |
|
43 |
+
#: bws_functions.php:151
|
44 |
msgid "to"
|
45 |
msgstr ""
|
46 |
|
47 |
# @ captcha
|
48 |
+
#: bws_functions.php:151
|
49 |
#, fuzzy
|
50 |
msgid "version!"
|
51 |
msgstr "Versão do PHP"
|
52 |
|
53 |
+
#: bws_functions.php:152
|
54 |
msgid "Extend standard plugin functionality with new great options."
|
55 |
msgstr ""
|
56 |
|
57 |
+
# @ captcha
|
58 |
+
#: bws_functions.php:155
|
59 |
+
#: bws_functions.php:542
|
60 |
+
#, fuzzy
|
61 |
+
msgid "Learn More"
|
62 |
+
msgstr "Leia Mais"
|
63 |
+
|
64 |
+
#: bws_functions.php:172
|
65 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
66 |
msgstr ""
|
67 |
|
68 |
# @ captcha
|
69 |
+
#: bws_functions.php:173
|
70 |
#, fuzzy
|
71 |
msgid "Rate the plugin"
|
72 |
msgstr "Plugins ativados"
|
73 |
|
74 |
# @ captcha
|
75 |
+
#: bws_functions.php:176
|
76 |
#, fuzzy
|
77 |
msgid "If there is something wrong about it, please contact us"
|
78 |
msgstr "Se você tiver quaisquer perguntas, por favor entre em contato via"
|
79 |
|
80 |
+
#: bws_functions.php:193
|
81 |
+
#: bws_functions.php:229
|
82 |
msgid "Wrong license key"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: bws_functions.php:223
|
86 |
+
#: bws_functions.php:455
|
87 |
+
#: bws_functions.php:506
|
88 |
+
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: bws_functions.php:223
|
92 |
+
#: bws_functions.php:455
|
93 |
+
#: bws_functions.php:506
|
94 |
msgid "We are sorry for inconvenience."
|
95 |
msgstr ""
|
96 |
|
97 |
+
#: bws_functions.php:231
|
98 |
msgid "This license key is bind to another site"
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: bws_functions.php:233
|
102 |
+
#: bws_functions.php:365
|
103 |
+
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
|
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: bws_functions.php:235
|
107 |
+
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
|
|
|
|
108 |
msgstr ""
|
109 |
|
110 |
+
#: bws_functions.php:237
|
111 |
+
msgid "Unfortunately, the PRO licence was already installed to this domain. The PRO Trial license can be installed only once."
|
|
|
|
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: bws_functions.php:248
|
115 |
+
#: bws_functions.php:270
|
116 |
+
#: bws_functions.php:292
|
117 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: bws_functions.php:260
|
121 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
122 |
msgstr ""
|
123 |
|
124 |
+
#: bws_functions.php:266
|
125 |
+
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
|
|
|
|
126 |
msgstr ""
|
127 |
|
128 |
+
#: bws_functions.php:273
|
129 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#: bws_functions.php:296
|
133 |
+
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
|
|
|
|
134 |
msgstr ""
|
135 |
|
136 |
+
#: bws_functions.php:321
|
137 |
msgid "Please, enter Your license key"
|
138 |
msgstr ""
|
139 |
|
140 |
+
#: bws_functions.php:338
|
141 |
+
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
|
|
|
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: bws_functions.php:340
|
145 |
+
#: bws_functions.php:422
|
146 |
msgid "Please, go to"
|
147 |
msgstr ""
|
148 |
|
149 |
+
#: bws_functions.php:340
|
150 |
+
#: bws_functions.php:422
|
151 |
msgid "the setting page"
|
152 |
msgstr ""
|
153 |
|
154 |
+
#: bws_functions.php:341
|
155 |
+
#: bws_functions.php:423
|
156 |
msgid "You will be redirected automatically in 5 seconds."
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: bws_functions.php:346
|
160 |
msgid "You can download and activate"
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: bws_functions.php:348
|
164 |
msgid "version of this plugin by entering Your license key."
|
165 |
msgstr ""
|
166 |
|
167 |
+
#: bws_functions.php:350
|
168 |
+
#: bws_functions.php:391
|
169 |
+
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
|
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: bws_functions.php:352
|
173 |
+
#: bws_functions.php:393
|
174 |
msgid "(your username is the email you specify when purchasing the product)."
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: bws_functions.php:356
|
178 |
+
msgid "or"
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: bws_functions.php:356
|
182 |
+
#, php-format
|
183 |
+
msgid "Start Your Free %s-Day Trial Now"
|
184 |
+
msgstr ""
|
185 |
+
|
186 |
# @ captcha
|
187 |
+
#: bws_functions.php:362
|
188 |
+
#: bws_functions.php:371
|
189 |
+
#: bws_functions.php:401
|
190 |
+
#: bws_functions.php:409
|
191 |
+
#: bws_menu.php:643
|
192 |
+
#: bws_menu.php:700
|
193 |
#, fuzzy
|
194 |
msgid "Activate"
|
195 |
msgstr "Plugins ativados"
|
196 |
|
197 |
+
#: bws_functions.php:388
|
198 |
+
#: bws_functions.php:481
|
199 |
+
#, php-format
|
200 |
+
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
201 |
msgstr ""
|
202 |
|
203 |
+
#: bws_functions.php:389
|
204 |
+
msgid "After that you can activate it by entering your license key."
|
205 |
+
msgstr ""
|
206 |
+
|
207 |
+
#: bws_functions.php:403
|
208 |
+
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
209 |
+
msgstr ""
|
210 |
+
|
211 |
+
#: bws_functions.php:420
|
212 |
+
msgid "Congratulations! The PRO license of the plugin is successfully activated."
|
213 |
+
msgstr ""
|
214 |
+
|
215 |
+
#: bws_functions.php:461
|
216 |
+
msgid "Wrong license key."
|
217 |
+
msgstr ""
|
218 |
+
|
219 |
+
#: bws_functions.php:463
|
220 |
+
msgid "This license key is bind to another site."
|
221 |
+
msgstr ""
|
222 |
+
|
223 |
+
#: bws_functions.php:465
|
224 |
+
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
225 |
+
msgstr ""
|
226 |
+
|
227 |
+
#: bws_functions.php:467
|
228 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
229 |
msgstr ""
|
230 |
|
231 |
+
#: bws_functions.php:469
|
232 |
+
msgid "Unfortunately, the PRO Trial licence was already installed to this domain. The PRO Trial license can be installed only once."
|
233 |
msgstr ""
|
234 |
|
235 |
+
#: bws_functions.php:473
|
236 |
+
msgid "The PRO Trial license key is valid."
|
237 |
+
msgstr ""
|
238 |
+
|
239 |
+
#: bws_functions.php:475
|
240 |
msgid "The license key is valid."
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: bws_functions.php:478
|
244 |
+
msgid "Your license will expire on"
|
245 |
+
msgstr ""
|
246 |
+
|
247 |
+
#: bws_functions.php:511
|
248 |
msgid "Please, enter your license key"
|
249 |
msgstr ""
|
250 |
|
251 |
+
#: bws_functions.php:524
|
252 |
+
msgid "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"
|
|
|
|
|
|
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: bws_functions.php:524
|
256 |
+
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
|
|
|
|
257 |
msgstr ""
|
258 |
|
259 |
+
#: bws_functions.php:528
|
260 |
msgid "Check license key"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: bws_functions.php:542
|
264 |
+
msgid "WARNING: Illegal use notification"
|
|
|
|
|
|
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: bws_functions.php:542
|
268 |
+
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."
|
|
|
|
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: bws_functions.php:550
|
272 |
+
msgid "Notice: Your PRO Trial license has expired. To continue using the plugin you should buy a PRO license"
|
273 |
+
msgstr ""
|
274 |
+
|
275 |
+
#: bws_functions.php:552
|
276 |
+
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
277 |
msgstr ""
|
278 |
|
279 |
# @ captcha
|
280 |
+
#: bws_functions.php:552
|
281 |
+
#: bws_functions.php:605
|
282 |
+
#: bws_menu.php:619
|
283 |
+
#: bws_menu.php:641
|
284 |
+
#: bws_menu.php:668
|
285 |
+
#: bws_menu.php:698
|
286 |
+
#: bws_menu.php:744
|
287 |
#, fuzzy
|
288 |
msgid "Learn more"
|
289 |
msgstr "Leia Mais"
|
290 |
|
291 |
+
#: bws_functions.php:562
|
292 |
+
#, php-format
|
293 |
+
msgid "Notice: You are using the PRO Trial license of %s plugin."
|
294 |
+
msgstr ""
|
295 |
+
|
296 |
+
#: bws_functions.php:564
|
297 |
+
msgid "Notice: You are using the PRO Trial license of plugin."
|
298 |
+
msgstr ""
|
299 |
+
|
300 |
+
#: bws_functions.php:567
|
301 |
+
msgid "The PRO Trial license will expire on"
|
302 |
+
msgstr ""
|
303 |
+
|
304 |
+
#: bws_functions.php:605
|
305 |
msgid "You license for"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: bws_functions.php:605
|
309 |
msgid "expires on"
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: bws_functions.php:605
|
313 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: bws_functions.php:680
|
317 |
msgid "Close"
|
318 |
msgstr ""
|
319 |
|
320 |
# @ captcha
|
321 |
+
#: bws_menu.php:456
|
322 |
msgid "Not set"
|
323 |
msgstr "Não definido"
|
324 |
|
325 |
# @ captcha
|
326 |
+
#: bws_menu.php:458
|
327 |
+
#: bws_menu.php:459
|
328 |
msgid "On"
|
329 |
msgstr "Ligado"
|
330 |
|
331 |
# @ captcha
|
332 |
+
#: bws_menu.php:458
|
333 |
+
#: bws_menu.php:459
|
334 |
msgid "Off"
|
335 |
msgstr "Desligado"
|
336 |
|
337 |
# @ captcha
|
338 |
+
#: bws_menu.php:460
|
339 |
+
#: bws_menu.php:461
|
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:464
|
349 |
msgid " Mb"
|
350 |
msgstr " Mb"
|
351 |
|
352 |
# @ captcha
|
353 |
+
#: bws_menu.php:465
|
354 |
+
#: bws_menu.php:466
|
355 |
+
#: bws_menu.php:467
|
356 |
+
#: bws_menu.php:472
|
357 |
msgid "Yes"
|
358 |
msgstr "Sim"
|
359 |
|
360 |
# @ captcha
|
361 |
+
#: bws_menu.php:465
|
362 |
+
#: bws_menu.php:466
|
363 |
+
#: bws_menu.php:467
|
364 |
+
#: bws_menu.php:474
|
365 |
msgid "No"
|
366 |
msgstr "Não"
|
367 |
|
368 |
# @ captcha
|
369 |
+
#: bws_menu.php:484
|
370 |
msgid "Operating System"
|
371 |
msgstr "Sistema Operacional"
|
372 |
|
373 |
# @ captcha
|
374 |
+
#: bws_menu.php:485
|
375 |
msgid "Server"
|
376 |
msgstr "Servidor"
|
377 |
|
378 |
# @ captcha
|
379 |
+
#: bws_menu.php:486
|
380 |
msgid "Memory usage"
|
381 |
msgstr "Uso de memória"
|
382 |
|
383 |
# @ captcha
|
384 |
+
#: bws_menu.php:487
|
385 |
msgid "MYSQL Version"
|
386 |
msgstr "Versão do MySQL"
|
387 |
|
388 |
# @ captcha
|
389 |
+
#: bws_menu.php:488
|
390 |
msgid "SQL Mode"
|
391 |
msgstr "Modo SQL"
|
392 |
|
393 |
# @ captcha
|
394 |
+
#: bws_menu.php:489
|
395 |
msgid "PHP Version"
|
396 |
msgstr "Versão do PHP"
|
397 |
|
398 |
# @ captcha
|
399 |
+
#: bws_menu.php:490
|
400 |
msgid "PHP Safe Mode"
|
401 |
msgstr "Modo de Segurança do PHP"
|
402 |
|
403 |
# @ captcha
|
404 |
+
#: bws_menu.php:491
|
405 |
msgid "PHP Allow URL fopen"
|
406 |
msgstr "Permissão de fopen de URL do PHP"
|
407 |
|
408 |
# @ captcha
|
409 |
+
#: bws_menu.php:492
|
410 |
msgid "PHP Memory Limit"
|
411 |
msgstr "Limite de Memória do PHP"
|
412 |
|
413 |
# @ captcha
|
414 |
+
#: bws_menu.php:493
|
415 |
msgid "PHP Max Upload Size"
|
416 |
msgstr "Tamanho Máximo de Upload no PHP"
|
417 |
|
418 |
# @ captcha
|
419 |
+
#: bws_menu.php:494
|
420 |
msgid "PHP Max Post Size"
|
421 |
msgstr "Tamanho Máximo de Envio do PHP"
|
422 |
|
423 |
# @ captcha
|
424 |
+
#: bws_menu.php:495
|
425 |
msgid "PHP Max Script Execute Time"
|
426 |
msgstr "Tempo de Execução Máximo do PHP"
|
427 |
|
428 |
# @ captcha
|
429 |
+
#: bws_menu.php:496
|
430 |
msgid "PHP Exif support"
|
431 |
msgstr "Suporte a Exif no PHP"
|
432 |
|
433 |
# @ captcha
|
434 |
+
#: bws_menu.php:497
|
435 |
msgid "PHP IPTC support"
|
436 |
msgstr "Suporte da IPTC no PHP"
|
437 |
|
438 |
# @ captcha
|
439 |
+
#: bws_menu.php:498
|
440 |
msgid "PHP XML support"
|
441 |
msgstr "Suporte a XML no PHP"
|
442 |
|
443 |
# @ captcha
|
444 |
+
#: bws_menu.php:499
|
445 |
msgid "Site URL"
|
446 |
msgstr "URL do Site"
|
447 |
|
448 |
# @ captcha
|
449 |
+
#: bws_menu.php:500
|
450 |
msgid "Home URL"
|
451 |
msgstr "URL da Página Inicial"
|
452 |
|
453 |
# @ captcha
|
454 |
+
#: bws_menu.php:503
|
455 |
msgid "WordPress Version"
|
456 |
msgstr "Versão do WordPress"
|
457 |
|
458 |
# @ captcha
|
459 |
+
#: bws_menu.php:504
|
460 |
msgid "WordPress DB Version"
|
461 |
msgstr "Versão do DB do WordPress"
|
462 |
|
463 |
# @ captcha
|
464 |
+
#: bws_menu.php:505
|
465 |
msgid "Multisite"
|
466 |
msgstr "Multisite"
|
467 |
|
468 |
# @ captcha
|
469 |
+
#: bws_menu.php:506
|
470 |
msgid "Active Theme"
|
471 |
msgstr "Tema Ativo"
|
472 |
|
473 |
# @ captcha
|
474 |
+
#: bws_menu.php:521
|
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:525
|
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:529
|
485 |
msgid "Thank you for contacting us."
|
486 |
msgstr "Obrigado por nos contatar."
|
487 |
|
488 |
# @ captcha
|
489 |
+
#: bws_menu.php:562
|
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:570
|
494 |
msgid "Need help?"
|
495 |
msgstr ""
|
496 |
|
497 |
+
#: bws_menu.php:571
|
498 |
msgid "Client area"
|
499 |
msgstr ""
|
500 |
|
501 |
# @ captcha
|
502 |
+
#: bws_menu.php:572
|
503 |
+
#: bws_menu.php:883
|
504 |
msgid "System status"
|
505 |
msgstr "Status do sistema"
|
506 |
|
507 |
# @ captcha
|
508 |
+
#: bws_menu.php:577
|
509 |
#, fuzzy
|
510 |
msgid "Plugins"
|
511 |
msgstr "Plugins Pro"
|
512 |
|
513 |
+
#: bws_menu.php:579
|
514 |
msgid "Themes"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: bws_menu.php:584
|
518 |
msgid "All"
|
519 |
msgstr ""
|
520 |
|
521 |
# @ default
|
522 |
+
#: bws_menu.php:585
|
523 |
#, fuzzy
|
524 |
msgid "Installed"
|
525 |
msgstr "Instalar %s"
|
526 |
|
527 |
# @ captcha
|
528 |
+
#: bws_menu.php:586
|
529 |
#, fuzzy
|
530 |
msgid "Recommended"
|
531 |
msgstr "Plugins Recomendados"
|
532 |
|
533 |
# @ captcha
|
534 |
+
#: bws_menu.php:590
|
535 |
msgid "Installed plugins"
|
536 |
msgstr "Plugins Instalados"
|
537 |
|
538 |
# @ captcha
|
539 |
+
#: bws_menu.php:622
|
540 |
+
#: bws_menu.php:671
|
541 |
msgid "Settings"
|
542 |
msgstr "Configurações"
|
543 |
|
544 |
# @ captcha
|
545 |
+
#: bws_menu.php:643
|
546 |
+
#: bws_menu.php:700
|
547 |
#, fuzzy
|
548 |
msgid "Activate this plugin"
|
549 |
msgstr "Plugins ativados"
|
550 |
|
551 |
+
#: bws_menu.php:658
|
552 |
+
#: bws_menu.php:688
|
553 |
+
#: bws_menu.php:734
|
554 |
msgid "Go"
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: bws_menu.php:662
|
558 |
+
#: bws_menu.php:692
|
559 |
+
#: bws_menu.php:738
|
560 |
msgid "DONATE"
|
561 |
msgstr ""
|
562 |
|
563 |
# @ captcha
|
564 |
+
#: bws_menu.php:708
|
565 |
msgid "Recommended plugins"
|
566 |
msgstr "Plugins Recomendados"
|
567 |
|
568 |
# @ default
|
569 |
+
#: bws_menu.php:746
|
570 |
#, fuzzy
|
571 |
msgid "Install now"
|
572 |
msgstr "Instalar %s"
|
573 |
|
574 |
+
#: bws_menu.php:767
|
575 |
msgid "Try again"
|
576 |
msgstr ""
|
577 |
|
578 |
+
#: bws_menu.php:785
|
579 |
#, php-format
|
580 |
msgid "Preview “%s”"
|
581 |
msgstr ""
|
582 |
|
583 |
# @ default
|
584 |
+
#: bws_menu.php:816
|
585 |
#, php-format
|
586 |
msgid "Install %s"
|
587 |
msgstr "Instalar %s"
|
588 |
|
589 |
# @ default
|
590 |
+
#: bws_menu.php:816
|
591 |
#, fuzzy
|
592 |
msgid "Install Now"
|
593 |
msgstr "Instalar %s"
|
594 |
|
595 |
+
#: bws_menu.php:819
|
596 |
#, php-format
|
597 |
msgid "Update to version %s"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: bws_menu.php:819
|
601 |
msgid "Update"
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: bws_menu.php:826
|
605 |
#, php-format
|
606 |
msgid "Preview %s"
|
607 |
msgstr ""
|
608 |
|
609 |
+
#: bws_menu.php:826
|
610 |
msgid "Preview"
|
611 |
msgstr ""
|
612 |
|
613 |
+
#: bws_menu.php:832
|
614 |
+
#: bws_menu.php:864
|
615 |
#, php-format
|
616 |
msgid "By %s"
|
617 |
msgstr ""
|
618 |
|
619 |
+
#: bws_menu.php:838
|
620 |
msgid "Details"
|
621 |
msgstr ""
|
622 |
|
623 |
# @ default
|
624 |
+
#: bws_menu.php:870
|
625 |
#, fuzzy
|
626 |
msgid "Already Installed"
|
627 |
msgstr "Instalar %s"
|
628 |
|
629 |
# @ captcha
|
630 |
+
#: bws_menu.php:886
|
631 |
msgid "Environment"
|
632 |
msgstr "Ambiente"
|
633 |
|
634 |
# @ captcha
|
635 |
+
#: bws_menu.php:897
|
636 |
msgid "Active Plugins"
|
637 |
msgstr "Plugins Ativos"
|
638 |
|
639 |
# @ captcha
|
640 |
+
#: bws_menu.php:910
|
641 |
msgid "Inactive Plugins"
|
642 |
msgstr "Plugins Inativos"
|
643 |
|
644 |
# @ captcha
|
645 |
+
#: bws_menu.php:926
|
646 |
msgid "Send to support"
|
647 |
msgstr "Enviar para o suporte"
|
648 |
|
649 |
# @ captcha
|
650 |
+
#: bws_menu.php:933
|
651 |
msgid "Send to custom email »"
|
652 |
msgstr "Enviar para email personalizado »"
|
653 |
|
654 |
# @ captcha
|
655 |
#~ msgid "Pro plugins"
|
656 |
#~ msgstr "Plugins Pro"
|
|
|
657 |
# @ captcha
|
658 |
#~ msgid "Activated plugins"
|
659 |
#~ msgstr "Plugins ativados"
|
|
|
660 |
# @ captcha
|
661 |
#~ msgid "Read more"
|
662 |
#~ msgstr "Leia Mais"
|
|
|
663 |
# @ captcha
|
664 |
#~ msgid "Purchase"
|
665 |
#~ msgstr "Compra"
|
|
|
666 |
# @ captcha
|
667 |
#~ msgid "Free plugins"
|
668 |
#~ msgstr "Plugins Grátis"
|
|
|
669 |
# @ captcha
|
670 |
#~ msgid "Download"
|
671 |
#~ msgstr "Baixar"
|
|
|
672 |
# @ captcha
|
673 |
#~ msgid "Install now from wordpress.org"
|
674 |
#~ msgstr "Instale agora do site do wordpress (wordpress.org)"
|
|
|
675 |
# @ captcha
|
676 |
#, fuzzy
|
677 |
#~ msgid "Activated theme"
|
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"
|
@@ -16,503 +16,576 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: bws_functions.php:
|
20 |
msgid "requires"
|
21 |
msgstr "требует"
|
22 |
|
23 |
-
#: bws_functions.php:
|
24 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
25 |
msgstr "или выше, поэтому он был деактивирован! Пожалуйста, обновите WordPress и попробуйте еще раз."
|
26 |
|
27 |
-
#: bws_functions.php:
|
28 |
msgid "Back to the WordPress"
|
29 |
msgstr "Вернуться к WordPress на"
|
30 |
|
31 |
-
#: bws_functions.php:
|
32 |
msgid "Plugins page"
|
33 |
msgstr "Страницу плагинов"
|
34 |
|
35 |
-
#: bws_functions.php:
|
36 |
-
msgid "Learn More"
|
37 |
-
msgstr "Подробнее"
|
38 |
-
|
39 |
-
#: bws_functions.php:137
|
40 |
msgid "It’s time to upgrade your"
|
41 |
msgstr "Настало время обновить Ваш"
|
42 |
|
43 |
-
#: bws_functions.php:
|
44 |
msgid "to"
|
45 |
msgstr "до"
|
46 |
|
47 |
-
#: bws_functions.php:
|
48 |
msgid "version!"
|
49 |
msgstr "версии!"
|
50 |
|
51 |
-
#: bws_functions.php:
|
52 |
msgid "Extend standard plugin functionality with new great options."
|
53 |
msgstr "Расширяет возможности стандартного функционала плагина."
|
54 |
|
55 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
56 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
57 |
msgstr "Если вам понравился плагин, пожалуйста, поставьте нам 5 звезд на WordPress"
|
58 |
|
59 |
-
#: bws_functions.php:
|
60 |
msgid "Rate the plugin"
|
61 |
msgstr "Оценить плагин"
|
62 |
|
63 |
-
#: bws_functions.php:
|
64 |
msgid "If there is something wrong about it, please contact us"
|
65 |
msgstr "Если у вас есть какие-то вопросы, обращайтесь"
|
66 |
|
67 |
-
#: bws_functions.php:
|
68 |
-
#: bws_functions.php:
|
69 |
-
#: bws_functions.php:395
|
70 |
msgid "Wrong license key"
|
71 |
msgstr "Неправильный лицензионный ключ"
|
72 |
|
73 |
-
#: bws_functions.php:
|
74 |
-
#: bws_functions.php:
|
75 |
-
#: bws_functions.php:
|
76 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
77 |
msgstr "Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, пожалуйста, свяжитесь с нами"
|
78 |
|
79 |
-
#: bws_functions.php:
|
80 |
-
#: bws_functions.php:
|
81 |
-
#: bws_functions.php:
|
82 |
msgid "We are sorry for inconvenience."
|
83 |
msgstr "Приносим извинения за неудобства."
|
84 |
|
85 |
-
#: bws_functions.php:
|
86 |
-
#: bws_functions.php:397
|
87 |
msgid "This license key is bind to another site"
|
88 |
msgstr "Этот лицензионный ключ привязан к другому сайту"
|
89 |
|
90 |
-
#: bws_functions.php:
|
91 |
-
#: bws_functions.php:
|
92 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
93 |
msgstr "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, загрузите плагин вручную."
|
94 |
|
95 |
-
#: bws_functions.php:
|
96 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
97 |
msgstr "К сожалению, время использования вашей лицензии истекло. Для получения обновлений приоритетного саппорта вам нужно продлить лицензию перейдя на вашей"
|
98 |
|
99 |
-
#: bws_functions.php:
|
100 |
msgid "Unfortunately, the PRO licence was already installed to this domain. The PRO Trial license can be installed only once."
|
101 |
msgstr "К сожалению, PRO лицензия уже была установлена на этом доменен. PRO Trial лицензия может быть установлена только один раз."
|
102 |
|
103 |
-
#: bws_functions.php:
|
104 |
-
#: bws_functions.php:
|
105 |
-
#: bws_functions.php:
|
106 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
107 |
msgstr "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
|
108 |
|
109 |
-
#: bws_functions.php:
|
110 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
111 |
msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
|
112 |
|
113 |
-
#: bws_functions.php:
|
114 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
115 |
msgstr "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. Пожалуйста, загрузите плагин вручную"
|
116 |
|
117 |
-
#: bws_functions.php:
|
118 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
119 |
msgstr "Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
|
120 |
|
121 |
-
#: bws_functions.php:
|
122 |
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
123 |
msgstr "Что-то пошло не так. Повторите попытку позже или загрузите плагин вручную. Приносим извинения за неудобства."
|
124 |
|
125 |
-
#: bws_functions.php:
|
126 |
msgid "Please, enter Your license key"
|
127 |
msgstr "Пожалуйста, введите ваш лицензионный ключ"
|
128 |
|
129 |
-
#: bws_functions.php:
|
130 |
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
131 |
msgstr "Поздравляем! PRO версия плагина была успешно загружена и активирована."
|
132 |
|
133 |
-
#: bws_functions.php:
|
|
|
134 |
msgid "Please, go to"
|
135 |
msgstr "Пожалуйста, перейдите на"
|
136 |
|
137 |
-
#: bws_functions.php:
|
|
|
138 |
msgid "the setting page"
|
139 |
msgstr "страницу настроек"
|
140 |
|
141 |
-
#: bws_functions.php:
|
|
|
142 |
msgid "You will be redirected automatically in 5 seconds."
|
143 |
msgstr "Вы будете перенаправлены автоматически через 5 секунд."
|
144 |
|
145 |
-
#: bws_functions.php:
|
146 |
msgid "You can download and activate"
|
147 |
msgstr "Вы можете скачать и активировать"
|
148 |
|
149 |
-
#: bws_functions.php:
|
150 |
msgid "version of this plugin by entering Your license key."
|
151 |
msgstr "версию этого плагина, введя ваш лицензионный ключ."
|
152 |
|
153 |
-
#: bws_functions.php:
|
|
|
154 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
155 |
msgstr "Вы можете найти ваш лицензионный ключ на вашей личной странице Client area, нажав на ссылку"
|
156 |
|
157 |
-
#: bws_functions.php:
|
|
|
158 |
msgid "(your username is the email you specify when purchasing the product)."
|
159 |
msgstr "(ваше имя пользователя - это электронный адрес, указанный при покупке продукта)."
|
160 |
|
161 |
-
#: bws_functions.php:
|
162 |
-
|
163 |
-
|
164 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
165 |
msgid "Activate"
|
166 |
msgstr "Активировать"
|
167 |
|
168 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
169 |
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
170 |
msgstr "Лицензионный ключ принят, но срок действия лицензии истек. Если вы хотите обновлять плагин в будущем, вы должны продлить лицензию."
|
171 |
|
172 |
-
#: bws_functions.php:
|
173 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
174 |
msgstr "К сожалению, вы превысили количество доступных попыток."
|
175 |
|
176 |
-
#: bws_functions.php:
|
177 |
-
msgid "
|
178 |
-
msgstr "
|
179 |
|
180 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
181 |
msgid "The license key is valid."
|
182 |
msgstr "Лицензионный ключ принят."
|
183 |
|
184 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
185 |
msgid "Please, enter your license key"
|
186 |
msgstr "Пожалуйста, введите Ваш лицензионный ключ"
|
187 |
|
188 |
-
#: bws_functions.php:
|
189 |
msgid "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"
|
190 |
msgstr "При необходимости вы можете проверить валидность лицензионного ключа или повторно ввести его в поле ниже. Вы можете найти ваш лицензионный ключ на своей личной странице - Client area - на нашем сайте"
|
191 |
|
192 |
-
#: bws_functions.php:
|
193 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
194 |
msgstr "(ваш пользователь это емейл, который вы указывали при покупке продукта). При необходимости нажмите \"Lost your password?\"."
|
195 |
|
196 |
-
#: bws_functions.php:
|
197 |
msgid "Check license key"
|
198 |
msgstr "Проверка лицензионного ключа"
|
199 |
|
200 |
-
#: bws_functions.php:
|
201 |
-
msgid "WARNING:
|
202 |
-
msgstr "ВНИМАНИЕ:
|
|
|
|
|
|
|
|
|
203 |
|
204 |
-
#: bws_functions.php:
|
205 |
-
msgid "
|
206 |
-
msgstr "
|
207 |
|
208 |
-
#: bws_functions.php:
|
209 |
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
210 |
msgstr "Время использования вашей лицензии истекло. Если вы хотите обновлять ваш плагин в дальшем и иметь приоритетную тех.поддержку, то вам нужно продлить лицензию."
|
211 |
|
212 |
-
#: bws_functions.php:
|
213 |
-
#: bws_functions.php:
|
214 |
-
#: bws_menu.php:
|
215 |
-
#: bws_menu.php:
|
216 |
-
#: bws_menu.php:638
|
217 |
#: bws_menu.php:668
|
218 |
-
#: bws_menu.php:
|
|
|
219 |
msgid "Learn more"
|
220 |
msgstr "Подробнее"
|
221 |
|
222 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
223 |
msgid "You license for"
|
224 |
msgstr "Ваш лицензионный ключ для"
|
225 |
|
226 |
-
#: bws_functions.php:
|
227 |
msgid "expires on"
|
228 |
msgstr "истекает"
|
229 |
|
230 |
-
#: bws_functions.php:
|
231 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
232 |
msgstr "и вы не будете получать приоритетную тех.поддержку или обновления."
|
233 |
|
234 |
-
#: bws_functions.php:
|
235 |
msgid "Close"
|
236 |
msgstr "Закрыть"
|
237 |
|
238 |
-
#: bws_menu.php:
|
239 |
msgid "Not set"
|
240 |
msgstr "Не задан"
|
241 |
|
242 |
-
#: bws_menu.php:
|
243 |
-
#: bws_menu.php:
|
244 |
msgid "On"
|
245 |
msgstr "Вкл"
|
246 |
|
247 |
-
#: bws_menu.php:
|
248 |
-
#: bws_menu.php:
|
249 |
msgid "Off"
|
250 |
msgstr "Выкл"
|
251 |
|
252 |
-
#: bws_menu.php:
|
253 |
-
#: bws_menu.php:
|
254 |
-
#: bws_menu.php:
|
255 |
-
#: bws_menu.php:
|
256 |
-
#: bws_menu.php:
|
257 |
-
#: bws_menu.php:
|
258 |
msgid "N/A"
|
259 |
msgstr "Неизвестно"
|
260 |
|
261 |
-
#: bws_menu.php:
|
262 |
msgid " Mb"
|
263 |
msgstr "Mb"
|
264 |
|
265 |
-
#: bws_menu.php:
|
266 |
-
#: bws_menu.php:
|
267 |
-
#: bws_menu.php:
|
268 |
-
#: bws_menu.php:
|
269 |
msgid "Yes"
|
270 |
msgstr "Да"
|
271 |
|
272 |
-
#: bws_menu.php:
|
273 |
-
#: bws_menu.php:
|
274 |
-
#: bws_menu.php:
|
275 |
-
#: bws_menu.php:
|
276 |
msgid "No"
|
277 |
msgstr "Нет"
|
278 |
|
279 |
-
#: bws_menu.php:
|
280 |
msgid "Operating System"
|
281 |
msgstr "Операционная система"
|
282 |
|
283 |
-
#: bws_menu.php:
|
284 |
msgid "Server"
|
285 |
msgstr "Тип сервера"
|
286 |
|
287 |
-
#: bws_menu.php:
|
288 |
msgid "Memory usage"
|
289 |
msgstr "Памяти использовано"
|
290 |
|
291 |
-
#: bws_menu.php:
|
292 |
msgid "MYSQL Version"
|
293 |
msgstr "Версия MYSQL"
|
294 |
|
295 |
-
#: bws_menu.php:
|
296 |
msgid "SQL Mode"
|
297 |
msgstr "Режим SQL"
|
298 |
|
299 |
-
#: bws_menu.php:
|
300 |
msgid "PHP Version"
|
301 |
msgstr "Версия PHP"
|
302 |
|
303 |
-
#: bws_menu.php:
|
304 |
msgid "PHP Safe Mode"
|
305 |
msgstr "PHP Safe Mode"
|
306 |
|
307 |
-
#: bws_menu.php:
|
308 |
msgid "PHP Allow URL fopen"
|
309 |
msgstr "PHP Allow URL fopen"
|
310 |
|
311 |
-
#: bws_menu.php:
|
312 |
msgid "PHP Memory Limit"
|
313 |
msgstr "Лимит памяти"
|
314 |
|
315 |
-
#: bws_menu.php:
|
316 |
msgid "PHP Max Upload Size"
|
317 |
msgstr "Макс. размер загружаемого файла"
|
318 |
|
319 |
-
#: bws_menu.php:
|
320 |
msgid "PHP Max Post Size"
|
321 |
msgstr "Макс. размер записи"
|
322 |
|
323 |
-
#: bws_menu.php:
|
324 |
msgid "PHP Max Script Execute Time"
|
325 |
msgstr "Макс. время выполнения сценария"
|
326 |
|
327 |
-
#: bws_menu.php:
|
328 |
msgid "PHP Exif support"
|
329 |
msgstr "Поддержка PHP Exif"
|
330 |
|
331 |
-
#: bws_menu.php:
|
332 |
msgid "PHP IPTC support"
|
333 |
msgstr "Поддержка PHP IPTC"
|
334 |
|
335 |
-
#: bws_menu.php:
|
336 |
msgid "PHP XML support"
|
337 |
msgstr "Поддержка PHP XML"
|
338 |
|
339 |
-
#: bws_menu.php:
|
340 |
msgid "Site URL"
|
341 |
msgstr "Адрес сайта"
|
342 |
|
343 |
-
#: bws_menu.php:
|
344 |
msgid "Home URL"
|
345 |
msgstr "Основной адрес сайта"
|
346 |
|
347 |
-
#: bws_menu.php:
|
348 |
msgid "WordPress Version"
|
349 |
msgstr "Версия WordPress"
|
350 |
|
351 |
-
#: bws_menu.php:
|
352 |
msgid "WordPress DB Version"
|
353 |
msgstr "Версия базы данных WordPress"
|
354 |
|
355 |
-
#: bws_menu.php:
|
356 |
msgid "Multisite"
|
357 |
msgstr "Мультиблог"
|
358 |
|
359 |
-
#: bws_menu.php:
|
360 |
msgid "Active Theme"
|
361 |
msgstr "Текущая тема"
|
362 |
|
363 |
-
#: bws_menu.php:
|
364 |
msgid "Please enter a valid email address."
|
365 |
msgstr "Пожалуйста, введите валидный емайл."
|
366 |
|
367 |
-
#: bws_menu.php:
|
368 |
msgid "Email with system info is sent to "
|
369 |
msgstr "E-mail с системной информацией отправлен на"
|
370 |
|
371 |
-
#: bws_menu.php:
|
372 |
msgid "Thank you for contacting us."
|
373 |
msgstr "Спасибо что связались с нами."
|
374 |
|
375 |
-
#: bws_menu.php:
|
376 |
msgid "Sorry, email message could not be delivered."
|
377 |
msgstr "Извините, ваш email не может быть отправлен."
|
378 |
|
379 |
-
#: bws_menu.php:
|
380 |
msgid "Need help?"
|
381 |
msgstr "Нужна помощь?"
|
382 |
|
383 |
-
#: bws_menu.php:
|
384 |
msgid "Client area"
|
385 |
msgstr "Client area"
|
386 |
|
387 |
-
#: bws_menu.php:
|
388 |
-
#: bws_menu.php:
|
389 |
msgid "System status"
|
390 |
msgstr "Системная информация"
|
391 |
|
392 |
-
#: bws_menu.php:
|
393 |
msgid "Plugins"
|
394 |
msgstr "Плагины"
|
395 |
|
396 |
-
#: bws_menu.php:
|
397 |
msgid "Themes"
|
398 |
msgstr "Темы"
|
399 |
|
400 |
-
#: bws_menu.php:
|
401 |
msgid "All"
|
402 |
msgstr "Все"
|
403 |
|
404 |
-
#: bws_menu.php:
|
405 |
msgid "Installed"
|
406 |
msgstr "Установленные"
|
407 |
|
408 |
-
#: bws_menu.php:
|
409 |
msgid "Recommended"
|
410 |
msgstr "Рекомендованные"
|
411 |
|
412 |
-
#: bws_menu.php:
|
413 |
msgid "Installed plugins"
|
414 |
msgstr "Установленные плагины"
|
415 |
|
416 |
-
#: bws_menu.php:
|
417 |
-
#: bws_menu.php:
|
418 |
msgid "Settings"
|
419 |
msgstr "Настройки"
|
420 |
|
421 |
-
#: bws_menu.php:
|
422 |
-
#: bws_menu.php:
|
423 |
msgid "Activate this plugin"
|
424 |
msgstr "Активировать плагин"
|
425 |
|
426 |
-
#: bws_menu.php:628
|
427 |
#: bws_menu.php:658
|
428 |
-
#: bws_menu.php:
|
|
|
429 |
msgid "Go"
|
430 |
msgstr "Перейти на"
|
431 |
|
432 |
-
#: bws_menu.php:632
|
433 |
#: bws_menu.php:662
|
434 |
-
#: bws_menu.php:
|
|
|
435 |
msgid "DONATE"
|
436 |
msgstr "Пожертвовать"
|
437 |
|
438 |
-
#: bws_menu.php:
|
439 |
msgid "Recommended plugins"
|
440 |
msgstr "Рекомендованные к установке плагины"
|
441 |
|
442 |
-
#: bws_menu.php:
|
443 |
msgid "Install now"
|
444 |
msgstr "Установить"
|
445 |
|
446 |
-
#: bws_menu.php:
|
447 |
msgid "Try again"
|
448 |
msgstr "Попробовать снова"
|
449 |
|
450 |
-
#: bws_menu.php:
|
451 |
#, php-format
|
452 |
msgid "Preview “%s”"
|
453 |
msgstr "Просмотр “%s”"
|
454 |
|
455 |
-
#: bws_menu.php:
|
456 |
#, php-format
|
457 |
msgid "Install %s"
|
458 |
msgstr "Установлено %s"
|
459 |
|
460 |
-
#: bws_menu.php:
|
461 |
msgid "Install Now"
|
462 |
msgstr "Установить"
|
463 |
|
464 |
-
#: bws_menu.php:
|
465 |
#, php-format
|
466 |
msgid "Update to version %s"
|
467 |
msgstr "Обновить до версии %s"
|
468 |
|
469 |
-
#: bws_menu.php:
|
470 |
msgid "Update"
|
471 |
msgstr "Обновить"
|
472 |
|
473 |
-
#: bws_menu.php:
|
474 |
#, php-format
|
475 |
msgid "Preview %s"
|
476 |
msgstr "Просмотр %s"
|
477 |
|
478 |
-
#: bws_menu.php:
|
479 |
msgid "Preview"
|
480 |
msgstr "Просмотр"
|
481 |
|
482 |
-
#: bws_menu.php:
|
483 |
-
#: bws_menu.php:
|
484 |
#, php-format
|
485 |
msgid "By %s"
|
486 |
msgstr "%s"
|
487 |
|
488 |
-
#: bws_menu.php:
|
489 |
msgid "Details"
|
490 |
msgstr "Детали"
|
491 |
|
492 |
-
#: bws_menu.php:
|
493 |
msgid "Already Installed"
|
494 |
msgstr "Уже установлена"
|
495 |
|
496 |
-
#: bws_menu.php:
|
497 |
msgid "Environment"
|
498 |
msgstr "Системная среда"
|
499 |
|
500 |
-
#: bws_menu.php:
|
501 |
msgid "Active Plugins"
|
502 |
msgstr "Активированные плагины"
|
503 |
|
504 |
-
#: bws_menu.php:
|
505 |
msgid "Inactive Plugins"
|
506 |
msgstr "Неактивированные плагины"
|
507 |
|
508 |
-
#: bws_menu.php:
|
509 |
msgid "Send to support"
|
510 |
msgstr "Отправить в тех. поддержку"
|
511 |
|
512 |
-
#: bws_menu.php:
|
513 |
msgid "Send to custom email »"
|
514 |
msgstr "Отправить на емейл »"
|
515 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
516 |
#~ msgid "Switch to new interface"
|
517 |
#~ msgstr "Переключится на новый интерфейс"
|
518 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-05-11 14:11+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-05-11 14: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"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: bws_functions.php:89
|
20 |
msgid "requires"
|
21 |
msgstr "требует"
|
22 |
|
23 |
+
#: bws_functions.php:91
|
24 |
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
25 |
msgstr "или выше, поэтому он был деактивирован! Пожалуйста, обновите WordPress и попробуйте еще раз."
|
26 |
|
27 |
+
#: bws_functions.php:92
|
28 |
msgid "Back to the WordPress"
|
29 |
msgstr "Вернуться к WordPress на"
|
30 |
|
31 |
+
#: bws_functions.php:94
|
32 |
msgid "Plugins page"
|
33 |
msgstr "Страницу плагинов"
|
34 |
|
35 |
+
#: bws_functions.php:151
|
|
|
|
|
|
|
|
|
36 |
msgid "It’s time to upgrade your"
|
37 |
msgstr "Настало время обновить Ваш"
|
38 |
|
39 |
+
#: bws_functions.php:151
|
40 |
msgid "to"
|
41 |
msgstr "до"
|
42 |
|
43 |
+
#: bws_functions.php:151
|
44 |
msgid "version!"
|
45 |
msgstr "версии!"
|
46 |
|
47 |
+
#: bws_functions.php:152
|
48 |
msgid "Extend standard plugin functionality with new great options."
|
49 |
msgstr "Расширяет возможности стандартного функционала плагина."
|
50 |
|
51 |
+
#: bws_functions.php:155
|
52 |
+
#: bws_functions.php:542
|
53 |
+
msgid "Learn More"
|
54 |
+
msgstr "Подробнее"
|
55 |
+
|
56 |
+
#: bws_functions.php:172
|
57 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
58 |
msgstr "Если вам понравился плагин, пожалуйста, поставьте нам 5 звезд на WordPress"
|
59 |
|
60 |
+
#: bws_functions.php:173
|
61 |
msgid "Rate the plugin"
|
62 |
msgstr "Оценить плагин"
|
63 |
|
64 |
+
#: bws_functions.php:176
|
65 |
msgid "If there is something wrong about it, please contact us"
|
66 |
msgstr "Если у вас есть какие-то вопросы, обращайтесь"
|
67 |
|
68 |
+
#: bws_functions.php:193
|
69 |
+
#: bws_functions.php:229
|
|
|
70 |
msgid "Wrong license key"
|
71 |
msgstr "Неправильный лицензионный ключ"
|
72 |
|
73 |
+
#: bws_functions.php:223
|
74 |
+
#: bws_functions.php:455
|
75 |
+
#: bws_functions.php:506
|
76 |
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
77 |
msgstr "Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, пожалуйста, свяжитесь с нами"
|
78 |
|
79 |
+
#: bws_functions.php:223
|
80 |
+
#: bws_functions.php:455
|
81 |
+
#: bws_functions.php:506
|
82 |
msgid "We are sorry for inconvenience."
|
83 |
msgstr "Приносим извинения за неудобства."
|
84 |
|
85 |
+
#: bws_functions.php:231
|
|
|
86 |
msgid "This license key is bind to another site"
|
87 |
msgstr "Этот лицензионный ключ привязан к другому сайту"
|
88 |
|
89 |
+
#: bws_functions.php:233
|
90 |
+
#: bws_functions.php:365
|
91 |
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
92 |
msgstr "К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, загрузите плагин вручную."
|
93 |
|
94 |
+
#: bws_functions.php:235
|
95 |
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
96 |
msgstr "К сожалению, время использования вашей лицензии истекло. Для получения обновлений приоритетного саппорта вам нужно продлить лицензию перейдя на вашей"
|
97 |
|
98 |
+
#: bws_functions.php:237
|
99 |
msgid "Unfortunately, the PRO licence was already installed to this domain. The PRO Trial license can be installed only once."
|
100 |
msgstr "К сожалению, PRO лицензия уже была установлена на этом доменен. PRO Trial лицензия может быть установлена только один раз."
|
101 |
|
102 |
+
#: bws_functions.php:248
|
103 |
+
#: bws_functions.php:270
|
104 |
+
#: bws_functions.php:292
|
105 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
106 |
msgstr "Не удалось загрузить архив плагина. Пожалуйста, загрузите плагин вручную"
|
107 |
|
108 |
+
#: bws_functions.php:260
|
109 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
110 |
msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
|
111 |
|
112 |
+
#: bws_functions.php:266
|
113 |
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
114 |
msgstr "Ваш сервер не поддерживает ни библиотеку ZipArchive, ни библиотеку Phar. Пожалуйста, загрузите плагин вручную"
|
115 |
|
116 |
+
#: bws_functions.php:273
|
117 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
118 |
msgstr "Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
|
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"
|
126 |
msgstr "Пожалуйста, введите ваш лицензионный ключ"
|
127 |
|
128 |
+
#: bws_functions.php:338
|
129 |
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
130 |
msgstr "Поздравляем! PRO версия плагина была успешно загружена и активирована."
|
131 |
|
132 |
+
#: bws_functions.php:340
|
133 |
+
#: bws_functions.php:422
|
134 |
msgid "Please, go to"
|
135 |
msgstr "Пожалуйста, перейдите на"
|
136 |
|
137 |
+
#: bws_functions.php:340
|
138 |
+
#: bws_functions.php:422
|
139 |
msgid "the setting page"
|
140 |
msgstr "страницу настроек"
|
141 |
|
142 |
+
#: bws_functions.php:341
|
143 |
+
#: bws_functions.php:423
|
144 |
msgid "You will be redirected automatically in 5 seconds."
|
145 |
msgstr "Вы будете перенаправлены автоматически через 5 секунд."
|
146 |
|
147 |
+
#: bws_functions.php:346
|
148 |
msgid "You can download and activate"
|
149 |
msgstr "Вы можете скачать и активировать"
|
150 |
|
151 |
+
#: bws_functions.php:348
|
152 |
msgid "version of this plugin by entering Your license key."
|
153 |
msgstr "версию этого плагина, введя ваш лицензионный ключ."
|
154 |
|
155 |
+
#: bws_functions.php:350
|
156 |
+
#: bws_functions.php:391
|
157 |
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
158 |
msgstr "Вы можете найти ваш лицензионный ключ на вашей личной странице Client area, нажав на ссылку"
|
159 |
|
160 |
+
#: bws_functions.php:352
|
161 |
+
#: bws_functions.php:393
|
162 |
msgid "(your username is the email you specify when purchasing the product)."
|
163 |
msgstr "(ваше имя пользователя - это электронный адрес, указанный при покупке продукта)."
|
164 |
|
165 |
+
#: bws_functions.php:356
|
166 |
+
msgid "or"
|
167 |
+
msgstr "или"
|
168 |
+
|
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:643
|
179 |
+
#: bws_menu.php:700
|
180 |
msgid "Activate"
|
181 |
msgstr "Активировать"
|
182 |
|
183 |
+
#: bws_functions.php:388
|
184 |
+
#: bws_functions.php:481
|
185 |
+
#, php-format
|
186 |
+
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
187 |
+
msgstr "Чтобы продолжить пользоваться плагином, необходимо приобрести %s лицензию."
|
188 |
+
|
189 |
+
#: bws_functions.php:389
|
190 |
+
msgid "After that you can activate it by entering your license key."
|
191 |
+
msgstr "После этого вы сможете активировать его введя лицензионный ключ."
|
192 |
+
|
193 |
+
#: bws_functions.php:403
|
194 |
+
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
195 |
+
msgstr "К сожалению, вы превысили количество доступных попыток."
|
196 |
+
|
197 |
+
#: bws_functions.php:420
|
198 |
+
msgid "Congratulations! The PRO license of the plugin is successfully activated."
|
199 |
+
msgstr "Поздравляем! PRO версия плагина была успешно активирована."
|
200 |
+
|
201 |
+
#: bws_functions.php:461
|
202 |
+
msgid "Wrong license key."
|
203 |
+
msgstr "Неправильный лицензионный ключ."
|
204 |
+
|
205 |
+
#: bws_functions.php:463
|
206 |
+
msgid "This license key is bind to another site."
|
207 |
+
msgstr "Этот лицензионный ключ привязан к другому сайту."
|
208 |
+
|
209 |
+
#: bws_functions.php:465
|
210 |
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
211 |
msgstr "Лицензионный ключ принят, но срок действия лицензии истек. Если вы хотите обновлять плагин в будущем, вы должны продлить лицензию."
|
212 |
|
213 |
+
#: bws_functions.php:467
|
214 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
215 |
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 "К сожалению, триал PRO версия плагина уже устанавливалась на этот домен. Триал PRO версию можно устанавливать лишь один раз."
|
220 |
|
221 |
+
#: bws_functions.php:473
|
222 |
+
msgid "The PRO Trial license key is valid."
|
223 |
+
msgstr "Ключ триала PRO версии верен."
|
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"
|
231 |
+
msgstr "Ваша лицензия истечет"
|
232 |
+
|
233 |
+
#: bws_functions.php:511
|
234 |
msgid "Please, enter your license key"
|
235 |
msgstr "Пожалуйста, введите Ваш лицензионный ключ"
|
236 |
|
237 |
+
#: bws_functions.php:524
|
238 |
msgid "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"
|
239 |
msgstr "При необходимости вы можете проверить валидность лицензионного ключа или повторно ввести его в поле ниже. Вы можете найти ваш лицензионный ключ на своей личной странице - Client area - на нашем сайте"
|
240 |
|
241 |
+
#: bws_functions.php:524
|
242 |
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
243 |
msgstr "(ваш пользователь это емейл, который вы указывали при покупке продукта). При необходимости нажмите \"Lost your password?\"."
|
244 |
|
245 |
+
#: bws_functions.php:528
|
246 |
msgid "Check license key"
|
247 |
msgstr "Проверка лицензионного ключа"
|
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 "Вы можете использовать одну лицензию 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 версии истек. Чтобы продолжить пользоваться плагином, пожалуйста, приобретите лицензию 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:619
|
268 |
+
#: bws_menu.php:641
|
|
|
269 |
#: bws_menu.php:668
|
270 |
+
#: bws_menu.php:698
|
271 |
+
#: bws_menu.php:744
|
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 версию плагина %s."
|
279 |
+
|
280 |
+
#: bws_functions.php:564
|
281 |
+
msgid "Notice: You are using the PRO Trial license of plugin."
|
282 |
+
msgstr "Внимание: Вы используете триал PRO версию плагина."
|
283 |
+
|
284 |
+
#: bws_functions.php:567
|
285 |
+
msgid "The PRO Trial license will expire on"
|
286 |
+
msgstr "Триал период PRO версии плагина истекает"
|
287 |
+
|
288 |
+
#: bws_functions.php:605
|
289 |
msgid "You license for"
|
290 |
msgstr "Ваш лицензионный ключ для"
|
291 |
|
292 |
+
#: bws_functions.php:605
|
293 |
msgid "expires on"
|
294 |
msgstr "истекает"
|
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_menu.php:456
|
305 |
msgid "Not set"
|
306 |
msgstr "Не задан"
|
307 |
|
308 |
+
#: bws_menu.php:458
|
309 |
+
#: bws_menu.php:459
|
310 |
msgid "On"
|
311 |
msgstr "Вкл"
|
312 |
|
313 |
+
#: bws_menu.php:458
|
314 |
+
#: bws_menu.php:459
|
315 |
msgid "Off"
|
316 |
msgstr "Выкл"
|
317 |
|
318 |
+
#: bws_menu.php:460
|
319 |
+
#: bws_menu.php:461
|
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:464
|
328 |
msgid " Mb"
|
329 |
msgstr "Mb"
|
330 |
|
331 |
+
#: bws_menu.php:465
|
332 |
+
#: bws_menu.php:466
|
333 |
+
#: bws_menu.php:467
|
334 |
+
#: bws_menu.php:472
|
335 |
msgid "Yes"
|
336 |
msgstr "Да"
|
337 |
|
338 |
+
#: bws_menu.php:465
|
339 |
+
#: bws_menu.php:466
|
340 |
+
#: bws_menu.php:467
|
341 |
+
#: bws_menu.php:474
|
342 |
msgid "No"
|
343 |
msgstr "Нет"
|
344 |
|
345 |
+
#: bws_menu.php:484
|
346 |
msgid "Operating System"
|
347 |
msgstr "Операционная система"
|
348 |
|
349 |
+
#: bws_menu.php:485
|
350 |
msgid "Server"
|
351 |
msgstr "Тип сервера"
|
352 |
|
353 |
+
#: bws_menu.php:486
|
354 |
msgid "Memory usage"
|
355 |
msgstr "Памяти использовано"
|
356 |
|
357 |
+
#: bws_menu.php:487
|
358 |
msgid "MYSQL Version"
|
359 |
msgstr "Версия MYSQL"
|
360 |
|
361 |
+
#: bws_menu.php:488
|
362 |
msgid "SQL Mode"
|
363 |
msgstr "Режим SQL"
|
364 |
|
365 |
+
#: bws_menu.php:489
|
366 |
msgid "PHP Version"
|
367 |
msgstr "Версия PHP"
|
368 |
|
369 |
+
#: bws_menu.php:490
|
370 |
msgid "PHP Safe Mode"
|
371 |
msgstr "PHP Safe Mode"
|
372 |
|
373 |
+
#: bws_menu.php:491
|
374 |
msgid "PHP Allow URL fopen"
|
375 |
msgstr "PHP Allow URL fopen"
|
376 |
|
377 |
+
#: bws_menu.php:492
|
378 |
msgid "PHP Memory Limit"
|
379 |
msgstr "Лимит памяти"
|
380 |
|
381 |
+
#: bws_menu.php:493
|
382 |
msgid "PHP Max Upload Size"
|
383 |
msgstr "Макс. размер загружаемого файла"
|
384 |
|
385 |
+
#: bws_menu.php:494
|
386 |
msgid "PHP Max Post Size"
|
387 |
msgstr "Макс. размер записи"
|
388 |
|
389 |
+
#: bws_menu.php:495
|
390 |
msgid "PHP Max Script Execute Time"
|
391 |
msgstr "Макс. время выполнения сценария"
|
392 |
|
393 |
+
#: bws_menu.php:496
|
394 |
msgid "PHP Exif support"
|
395 |
msgstr "Поддержка PHP Exif"
|
396 |
|
397 |
+
#: bws_menu.php:497
|
398 |
msgid "PHP IPTC support"
|
399 |
msgstr "Поддержка PHP IPTC"
|
400 |
|
401 |
+
#: bws_menu.php:498
|
402 |
msgid "PHP XML support"
|
403 |
msgstr "Поддержка PHP XML"
|
404 |
|
405 |
+
#: bws_menu.php:499
|
406 |
msgid "Site URL"
|
407 |
msgstr "Адрес сайта"
|
408 |
|
409 |
+
#: bws_menu.php:500
|
410 |
msgid "Home URL"
|
411 |
msgstr "Основной адрес сайта"
|
412 |
|
413 |
+
#: bws_menu.php:503
|
414 |
msgid "WordPress Version"
|
415 |
msgstr "Версия WordPress"
|
416 |
|
417 |
+
#: bws_menu.php:504
|
418 |
msgid "WordPress DB Version"
|
419 |
msgstr "Версия базы данных WordPress"
|
420 |
|
421 |
+
#: bws_menu.php:505
|
422 |
msgid "Multisite"
|
423 |
msgstr "Мультиблог"
|
424 |
|
425 |
+
#: bws_menu.php:506
|
426 |
msgid "Active Theme"
|
427 |
msgstr "Текущая тема"
|
428 |
|
429 |
+
#: bws_menu.php:521
|
430 |
msgid "Please enter a valid email address."
|
431 |
msgstr "Пожалуйста, введите валидный емайл."
|
432 |
|
433 |
+
#: bws_menu.php:525
|
434 |
msgid "Email with system info is sent to "
|
435 |
msgstr "E-mail с системной информацией отправлен на"
|
436 |
|
437 |
+
#: bws_menu.php:529
|
438 |
msgid "Thank you for contacting us."
|
439 |
msgstr "Спасибо что связались с нами."
|
440 |
|
441 |
+
#: bws_menu.php:562
|
442 |
msgid "Sorry, email message could not be delivered."
|
443 |
msgstr "Извините, ваш email не может быть отправлен."
|
444 |
|
445 |
+
#: bws_menu.php:570
|
446 |
msgid "Need help?"
|
447 |
msgstr "Нужна помощь?"
|
448 |
|
449 |
+
#: bws_menu.php:571
|
450 |
msgid "Client area"
|
451 |
msgstr "Client area"
|
452 |
|
453 |
+
#: bws_menu.php:572
|
454 |
+
#: bws_menu.php:883
|
455 |
msgid "System status"
|
456 |
msgstr "Системная информация"
|
457 |
|
458 |
+
#: bws_menu.php:577
|
459 |
msgid "Plugins"
|
460 |
msgstr "Плагины"
|
461 |
|
462 |
+
#: bws_menu.php:579
|
463 |
msgid "Themes"
|
464 |
msgstr "Темы"
|
465 |
|
466 |
+
#: bws_menu.php:584
|
467 |
msgid "All"
|
468 |
msgstr "Все"
|
469 |
|
470 |
+
#: bws_menu.php:585
|
471 |
msgid "Installed"
|
472 |
msgstr "Установленные"
|
473 |
|
474 |
+
#: bws_menu.php:586
|
475 |
msgid "Recommended"
|
476 |
msgstr "Рекомендованные"
|
477 |
|
478 |
+
#: bws_menu.php:590
|
479 |
msgid "Installed plugins"
|
480 |
msgstr "Установленные плагины"
|
481 |
|
482 |
+
#: bws_menu.php:622
|
483 |
+
#: bws_menu.php:671
|
484 |
msgid "Settings"
|
485 |
msgstr "Настройки"
|
486 |
|
487 |
+
#: bws_menu.php:643
|
488 |
+
#: bws_menu.php:700
|
489 |
msgid "Activate this plugin"
|
490 |
msgstr "Активировать плагин"
|
491 |
|
|
|
492 |
#: bws_menu.php:658
|
493 |
+
#: bws_menu.php:688
|
494 |
+
#: bws_menu.php:734
|
495 |
msgid "Go"
|
496 |
msgstr "Перейти на"
|
497 |
|
|
|
498 |
#: bws_menu.php:662
|
499 |
+
#: bws_menu.php:692
|
500 |
+
#: bws_menu.php:738
|
501 |
msgid "DONATE"
|
502 |
msgstr "Пожертвовать"
|
503 |
|
504 |
+
#: bws_menu.php:708
|
505 |
msgid "Recommended plugins"
|
506 |
msgstr "Рекомендованные к установке плагины"
|
507 |
|
508 |
+
#: bws_menu.php:746
|
509 |
msgid "Install now"
|
510 |
msgstr "Установить"
|
511 |
|
512 |
+
#: bws_menu.php:767
|
513 |
msgid "Try again"
|
514 |
msgstr "Попробовать снова"
|
515 |
|
516 |
+
#: bws_menu.php:785
|
517 |
#, php-format
|
518 |
msgid "Preview “%s”"
|
519 |
msgstr "Просмотр “%s”"
|
520 |
|
521 |
+
#: bws_menu.php:816
|
522 |
#, php-format
|
523 |
msgid "Install %s"
|
524 |
msgstr "Установлено %s"
|
525 |
|
526 |
+
#: bws_menu.php:816
|
527 |
msgid "Install Now"
|
528 |
msgstr "Установить"
|
529 |
|
530 |
+
#: bws_menu.php:819
|
531 |
#, php-format
|
532 |
msgid "Update to version %s"
|
533 |
msgstr "Обновить до версии %s"
|
534 |
|
535 |
+
#: bws_menu.php:819
|
536 |
msgid "Update"
|
537 |
msgstr "Обновить"
|
538 |
|
539 |
+
#: bws_menu.php:826
|
540 |
#, php-format
|
541 |
msgid "Preview %s"
|
542 |
msgstr "Просмотр %s"
|
543 |
|
544 |
+
#: bws_menu.php:826
|
545 |
msgid "Preview"
|
546 |
msgstr "Просмотр"
|
547 |
|
548 |
+
#: bws_menu.php:832
|
549 |
+
#: bws_menu.php:864
|
550 |
#, php-format
|
551 |
msgid "By %s"
|
552 |
msgstr "%s"
|
553 |
|
554 |
+
#: bws_menu.php:838
|
555 |
msgid "Details"
|
556 |
msgstr "Детали"
|
557 |
|
558 |
+
#: bws_menu.php:870
|
559 |
msgid "Already Installed"
|
560 |
msgstr "Уже установлена"
|
561 |
|
562 |
+
#: bws_menu.php:886
|
563 |
msgid "Environment"
|
564 |
msgstr "Системная среда"
|
565 |
|
566 |
+
#: bws_menu.php:897
|
567 |
msgid "Active Plugins"
|
568 |
msgstr "Активированные плагины"
|
569 |
|
570 |
+
#: bws_menu.php:910
|
571 |
msgid "Inactive Plugins"
|
572 |
msgstr "Неактивированные плагины"
|
573 |
|
574 |
+
#: bws_menu.php:926
|
575 |
msgid "Send to support"
|
576 |
msgstr "Отправить в тех. поддержку"
|
577 |
|
578 |
+
#: bws_menu.php:933
|
579 |
msgid "Send to custom email »"
|
580 |
msgstr "Отправить на емейл »"
|
581 |
|
582 |
+
#~ msgid ""
|
583 |
+
#~ "(your username is the email you specify when purchasing the product), "
|
584 |
+
#~ "where you can make the necessary changes."
|
585 |
+
#~ msgstr ""
|
586 |
+
#~ "(ваш пользователь это емейл, который вы указывали при покупке продукта), "
|
587 |
+
#~ "где вы можете сделать необходимые изменения."
|
588 |
+
|
589 |
#~ msgid "Switch to new interface"
|
590 |
#~ msgstr "Переключится на новый интерфейс"
|
591 |
|
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"
|
@@ -17,517 +17,588 @@ msgstr ""
|
|
17 |
"X-Generator: Poedit 1.5.4\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: bws_functions.php:
|
21 |
msgid "requires"
|
22 |
msgstr ""
|
23 |
|
24 |
-
#: bws_functions.php:
|
25 |
-
msgid ""
|
26 |
-
"or higher, that is why it has been deactivated! Please upgrade WordPress and "
|
27 |
-
"try again."
|
28 |
msgstr ""
|
29 |
|
30 |
-
#: bws_functions.php:
|
31 |
msgid "Back to the WordPress"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: bws_functions.php:
|
35 |
#, fuzzy
|
36 |
msgid "Plugins page"
|
37 |
msgstr "Pro moduli"
|
38 |
|
39 |
-
#: bws_functions.php:
|
40 |
-
#, fuzzy
|
41 |
-
msgid "Learn More"
|
42 |
-
msgstr "Pročitaj više"
|
43 |
-
|
44 |
-
#: bws_functions.php:137
|
45 |
msgid "It’s time to upgrade your"
|
46 |
msgstr ""
|
47 |
|
48 |
-
#: bws_functions.php:
|
49 |
#, fuzzy
|
50 |
msgid "to"
|
51 |
msgstr "vrh"
|
52 |
|
53 |
-
#: bws_functions.php:
|
54 |
#, fuzzy
|
55 |
msgid "version!"
|
56 |
msgstr "PHP Verzija"
|
57 |
|
58 |
-
#: bws_functions.php:
|
59 |
msgid "Extend standard plugin functionality with new great options."
|
60 |
msgstr ""
|
61 |
|
62 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
63 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: bws_functions.php:
|
67 |
#, fuzzy
|
68 |
msgid "Rate the plugin"
|
69 |
msgstr "Aktivirani moduli"
|
70 |
|
71 |
-
#: bws_functions.php:
|
72 |
#, fuzzy
|
73 |
msgid "If there is something wrong about it, please contact us"
|
74 |
msgstr "Ako imate pitanja molimo da nas kontaktirate preko"
|
75 |
|
76 |
-
#: bws_functions.php:
|
|
|
77 |
msgid "Wrong license key"
|
78 |
msgstr ""
|
79 |
|
80 |
-
#: bws_functions.php:
|
81 |
-
|
82 |
-
|
83 |
-
"please contact us"
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: bws_functions.php:
|
|
|
|
|
87 |
msgid "We are sorry for inconvenience."
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: bws_functions.php:
|
91 |
msgid "This license key is bind to another site"
|
92 |
msgstr ""
|
93 |
|
94 |
-
#: bws_functions.php:
|
95 |
-
|
96 |
-
"Unfortunately, you have exceeded the number of available tries per day. "
|
97 |
-
"Please, upload the plugin manually."
|
98 |
msgstr ""
|
99 |
|
100 |
-
#: bws_functions.php:
|
101 |
-
msgid ""
|
102 |
-
"Unfortunately, Your license has expired. To continue getting top-priority "
|
103 |
-
"support and plugin updates you should extend it in your"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: bws_functions.php:
|
107 |
-
msgid ""
|
108 |
-
"Unfortunately, the PRO licence was already installed to this domain. The PRO "
|
109 |
-
"Trial license can be installed only once."
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: bws_functions.php:
|
|
|
|
|
113 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
114 |
msgstr ""
|
115 |
|
116 |
-
#: bws_functions.php:
|
117 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: bws_functions.php:
|
121 |
-
msgid ""
|
122 |
-
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
123 |
-
"plugin manually"
|
124 |
msgstr ""
|
125 |
|
126 |
-
#: bws_functions.php:
|
127 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
128 |
msgstr ""
|
129 |
|
130 |
-
#: bws_functions.php:
|
131 |
-
msgid ""
|
132 |
-
"Something went wrong. Try again later or upload the plugin manually. We are "
|
133 |
-
"sorry for inconvenience."
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: bws_functions.php:
|
137 |
msgid "Please, enter Your license key"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: bws_functions.php:
|
141 |
-
msgid ""
|
142 |
-
"Congratulations! The PRO version of the plugin is successfully download and "
|
143 |
-
"activated."
|
144 |
msgstr ""
|
145 |
|
146 |
-
#: bws_functions.php:
|
|
|
147 |
msgid "Please, go to"
|
148 |
msgstr ""
|
149 |
|
150 |
-
#: bws_functions.php:
|
|
|
151 |
#, fuzzy
|
152 |
msgid "the setting page"
|
153 |
msgstr "na stranici za podešavanje modula ("
|
154 |
|
155 |
-
#: bws_functions.php:
|
|
|
156 |
msgid "You will be redirected automatically in 5 seconds."
|
157 |
msgstr ""
|
158 |
|
159 |
-
#: bws_functions.php:
|
160 |
msgid "You can download and activate"
|
161 |
msgstr ""
|
162 |
|
163 |
-
#: bws_functions.php:
|
164 |
msgid "version of this plugin by entering Your license key."
|
165 |
msgstr ""
|
166 |
|
167 |
-
#: bws_functions.php:
|
168 |
-
|
169 |
-
"You can find your license key on your personal page Client area, by clicking "
|
170 |
-
"on the link"
|
171 |
msgstr ""
|
172 |
|
173 |
-
#: bws_functions.php:
|
|
|
174 |
msgid "(your username is the email you specify when purchasing the product)."
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: bws_functions.php:
|
178 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
179 |
#, fuzzy
|
180 |
msgid "Activate"
|
181 |
msgstr "Aktivirani moduli"
|
182 |
|
183 |
-
#: bws_functions.php:
|
184 |
-
|
185 |
-
|
186 |
-
"
|
187 |
msgstr ""
|
188 |
|
189 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: bws_functions.php:
|
194 |
-
msgid "
|
|
|
|
|
|
|
|
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: bws_functions.php:
|
198 |
msgid "The license key is valid."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
202 |
msgid "Please, enter your license key"
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: bws_functions.php:
|
206 |
-
msgid ""
|
207 |
-
"If needed you can check if the license key is correct or reenter it in the "
|
208 |
-
"field below. You can find your license key on your personal page - Client "
|
209 |
-
"area - on our website"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: bws_functions.php:
|
213 |
-
msgid ""
|
214 |
-
"(your username is the email you specify when purchasing the product). If "
|
215 |
-
"necessary, please submit \"Lost your password?\" request."
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: bws_functions.php:
|
219 |
msgid "Check license key"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: bws_functions.php:
|
223 |
-
msgid ""
|
224 |
-
"WARNING: We have noticed illegal use of our plugin by you. We strongly "
|
225 |
-
"recommend you to solve the problem within 24 hours, otherwise the plugin "
|
226 |
-
"will be deactivated. Please go to your personal"
|
227 |
msgstr ""
|
228 |
|
229 |
-
#: bws_functions.php:
|
230 |
-
msgid ""
|
231 |
-
"(your username is the email you specify when purchasing the product), where "
|
232 |
-
"you can make the necessary changes."
|
233 |
msgstr ""
|
234 |
|
235 |
-
#: bws_functions.php:
|
236 |
-
msgid ""
|
237 |
-
|
238 |
-
|
|
|
|
|
239 |
msgstr ""
|
240 |
|
241 |
-
#: bws_functions.php:
|
242 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
243 |
#, fuzzy
|
244 |
msgid "Learn more"
|
245 |
msgstr "Pročitaj više"
|
246 |
|
247 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
248 |
msgid "You license for"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: bws_functions.php:
|
252 |
msgid "expires on"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: bws_functions.php:
|
256 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: bws_functions.php:
|
260 |
msgid "Close"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: bws_menu.php:
|
264 |
msgid "Not set"
|
265 |
msgstr "Nije podešeno"
|
266 |
|
267 |
-
#: bws_menu.php:
|
|
|
268 |
msgid "On"
|
269 |
msgstr "Uključeno"
|
270 |
|
271 |
-
#: bws_menu.php:
|
|
|
272 |
msgid "Off"
|
273 |
msgstr "Isključeno"
|
274 |
|
275 |
-
#: bws_menu.php:
|
276 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
|
|
277 |
msgid "N/A"
|
278 |
msgstr "N/A"
|
279 |
|
280 |
-
#: bws_menu.php:
|
281 |
msgid " Mb"
|
282 |
msgstr " Mb"
|
283 |
|
284 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
285 |
msgid "Yes"
|
286 |
msgstr "Da"
|
287 |
|
288 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
289 |
msgid "No"
|
290 |
msgstr "Ne"
|
291 |
|
292 |
-
#: bws_menu.php:
|
293 |
msgid "Operating System"
|
294 |
msgstr "Operativni Sistem"
|
295 |
|
296 |
-
#: bws_menu.php:
|
297 |
msgid "Server"
|
298 |
msgstr "Server"
|
299 |
|
300 |
-
#: bws_menu.php:
|
301 |
msgid "Memory usage"
|
302 |
msgstr "Upotreba memorije"
|
303 |
|
304 |
-
#: bws_menu.php:
|
305 |
msgid "MYSQL Version"
|
306 |
msgstr "MYSQL Verzija"
|
307 |
|
308 |
-
#: bws_menu.php:
|
309 |
msgid "SQL Mode"
|
310 |
msgstr "SQL način"
|
311 |
|
312 |
-
#: bws_menu.php:
|
313 |
msgid "PHP Version"
|
314 |
msgstr "PHP Verzija"
|
315 |
|
316 |
-
#: bws_menu.php:
|
317 |
msgid "PHP Safe Mode"
|
318 |
msgstr "PHP Sigurni način"
|
319 |
|
320 |
-
#: bws_menu.php:
|
321 |
msgid "PHP Allow URL fopen"
|
322 |
msgstr "PHP Dozvoli URL fopen"
|
323 |
|
324 |
-
#: bws_menu.php:
|
325 |
msgid "PHP Memory Limit"
|
326 |
msgstr "PHP Ograničenje memorije"
|
327 |
|
328 |
-
#: bws_menu.php:
|
329 |
#, fuzzy
|
330 |
msgid "PHP Max Upload Size"
|
331 |
msgstr "Envoi de fichier"
|
332 |
|
333 |
-
#: bws_menu.php:
|
334 |
msgid "PHP Max Post Size"
|
335 |
msgstr "PHP Max veličina za učitavanje"
|
336 |
|
337 |
-
#: bws_menu.php:
|
338 |
msgid "PHP Max Script Execute Time"
|
339 |
msgstr "PHP Max veličina posta"
|
340 |
|
341 |
-
#: bws_menu.php:
|
342 |
msgid "PHP Exif support"
|
343 |
msgstr "PHP Exif podrška"
|
344 |
|
345 |
-
#: bws_menu.php:
|
346 |
msgid "PHP IPTC support"
|
347 |
msgstr "PHP IPTC podrška"
|
348 |
|
349 |
-
#: bws_menu.php:
|
350 |
msgid "PHP XML support"
|
351 |
msgstr "PHP XML podrška"
|
352 |
|
353 |
-
#: bws_menu.php:
|
354 |
#, fuzzy
|
355 |
msgid "Site URL"
|
356 |
msgstr "URL du lien"
|
357 |
|
358 |
-
#: bws_menu.php:
|
359 |
msgid "Home URL"
|
360 |
msgstr "URL naslovne"
|
361 |
|
362 |
-
#: bws_menu.php:
|
363 |
msgid "WordPress Version"
|
364 |
msgstr "WordPress Verzija"
|
365 |
|
366 |
-
#: bws_menu.php:
|
367 |
msgid "WordPress DB Version"
|
368 |
msgstr "WordPress DB Verzija"
|
369 |
|
370 |
-
#: bws_menu.php:
|
371 |
msgid "Multisite"
|
372 |
msgstr "Višenamenski sajt"
|
373 |
|
374 |
-
#: bws_menu.php:
|
375 |
msgid "Active Theme"
|
376 |
msgstr "Aktivna tema"
|
377 |
|
378 |
-
#: bws_menu.php:
|
379 |
msgid "Please enter a valid email address."
|
380 |
msgstr "Molimo unesite važeću mejl adresu"
|
381 |
|
382 |
-
#: bws_menu.php:
|
383 |
msgid "Email with system info is sent to "
|
384 |
msgstr "Mejl sa sistemskim informacijama je poslat na"
|
385 |
|
386 |
-
#: bws_menu.php:
|
387 |
msgid "Thank you for contacting us."
|
388 |
msgstr "Hvala što ste nas kontaktirali"
|
389 |
|
390 |
-
#: bws_menu.php:
|
391 |
msgid "Sorry, email message could not be delivered."
|
392 |
msgstr "Nažalost mejl poruka nije prosleđena"
|
393 |
|
394 |
-
#: bws_menu.php:
|
395 |
msgid "Need help?"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: bws_menu.php:
|
399 |
msgid "Client area"
|
400 |
msgstr ""
|
401 |
|
402 |
-
#: bws_menu.php:
|
|
|
403 |
msgid "System status"
|
404 |
msgstr "Sistemski status"
|
405 |
|
406 |
-
#: bws_menu.php:
|
407 |
#, fuzzy
|
408 |
msgid "Plugins"
|
409 |
msgstr "Pro moduli"
|
410 |
|
411 |
-
#: bws_menu.php:
|
412 |
msgid "Themes"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: bws_menu.php:
|
416 |
msgid "All"
|
417 |
msgstr ""
|
418 |
|
419 |
-
#: bws_menu.php:
|
420 |
#, fuzzy
|
421 |
msgid "Installed"
|
422 |
msgstr "Instalacija %s"
|
423 |
|
424 |
-
#: bws_menu.php:
|
425 |
#, fuzzy
|
426 |
msgid "Recommended"
|
427 |
msgstr "Preporučeni moduli"
|
428 |
|
429 |
-
#: bws_menu.php:
|
430 |
msgid "Installed plugins"
|
431 |
msgstr "Instalirani moduli"
|
432 |
|
433 |
-
#: bws_menu.php:
|
|
|
434 |
msgid "Settings"
|
435 |
msgstr "Podešavanja"
|
436 |
|
437 |
-
#: bws_menu.php:
|
|
|
438 |
#, fuzzy
|
439 |
msgid "Activate this plugin"
|
440 |
msgstr "Aktivirani moduli"
|
441 |
|
442 |
-
#: bws_menu.php:
|
|
|
|
|
443 |
msgid "Go"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: bws_menu.php:
|
|
|
|
|
447 |
msgid "DONATE"
|
448 |
msgstr ""
|
449 |
|
450 |
-
#: bws_menu.php:
|
451 |
msgid "Recommended plugins"
|
452 |
msgstr "Preporučeni moduli"
|
453 |
|
454 |
-
#: bws_menu.php:
|
455 |
#, fuzzy
|
456 |
msgid "Install now"
|
457 |
msgstr "Instalacija %s"
|
458 |
|
459 |
-
#: bws_menu.php:
|
460 |
msgid "Try again"
|
461 |
msgstr ""
|
462 |
|
463 |
-
#: bws_menu.php:
|
464 |
#, php-format
|
465 |
msgid "Preview “%s”"
|
466 |
msgstr ""
|
467 |
|
468 |
-
#: bws_menu.php:
|
469 |
#, php-format
|
470 |
msgid "Install %s"
|
471 |
msgstr "Instalacija %s"
|
472 |
|
473 |
-
#: bws_menu.php:
|
474 |
#, fuzzy
|
475 |
msgid "Install Now"
|
476 |
msgstr "Instalacija %s"
|
477 |
|
478 |
-
#: bws_menu.php:
|
479 |
#, php-format
|
480 |
msgid "Update to version %s"
|
481 |
msgstr ""
|
482 |
|
483 |
-
#: bws_menu.php:
|
484 |
#, fuzzy
|
485 |
msgid "Update"
|
486 |
msgstr "date"
|
487 |
|
488 |
-
#: bws_menu.php:
|
489 |
#, php-format
|
490 |
msgid "Preview %s"
|
491 |
msgstr ""
|
492 |
|
493 |
-
#: bws_menu.php:
|
494 |
msgid "Preview"
|
495 |
msgstr ""
|
496 |
|
497 |
-
#: bws_menu.php:
|
|
|
498 |
#, php-format
|
499 |
msgid "By %s"
|
500 |
msgstr ""
|
501 |
|
502 |
-
#: bws_menu.php:
|
503 |
msgid "Details"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#: bws_menu.php:
|
507 |
#, fuzzy
|
508 |
msgid "Already Installed"
|
509 |
msgstr "Instalacija %s"
|
510 |
|
511 |
-
#: bws_menu.php:
|
512 |
msgid "Environment"
|
513 |
msgstr "Okruženje"
|
514 |
|
515 |
-
#: bws_menu.php:
|
516 |
#, fuzzy
|
517 |
msgid "Active Plugins"
|
518 |
msgstr "Extensions activées"
|
519 |
|
520 |
-
#: bws_menu.php:
|
521 |
#, fuzzy
|
522 |
msgid "Inactive Plugins"
|
523 |
msgstr "Extensions activées"
|
524 |
|
525 |
-
#: bws_menu.php:
|
526 |
#, fuzzy
|
527 |
msgid "Send to support"
|
528 |
msgstr "Soutien"
|
529 |
|
530 |
-
#: bws_menu.php:
|
531 |
msgid "Send to custom email »"
|
532 |
msgstr "Pošalji na korisnički mejl »"
|
533 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-05-11 14:14+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-05-11 14:14+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"
|
17 |
"X-Generator: Poedit 1.5.4\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: bws_functions.php:89
|
21 |
msgid "requires"
|
22 |
msgstr ""
|
23 |
|
24 |
+
#: bws_functions.php:91
|
25 |
+
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
|
|
|
|
26 |
msgstr ""
|
27 |
|
28 |
+
#: bws_functions.php:92
|
29 |
msgid "Back to the WordPress"
|
30 |
msgstr ""
|
31 |
|
32 |
+
#: bws_functions.php:94
|
33 |
#, fuzzy
|
34 |
msgid "Plugins page"
|
35 |
msgstr "Pro moduli"
|
36 |
|
37 |
+
#: bws_functions.php:151
|
|
|
|
|
|
|
|
|
|
|
38 |
msgid "It’s time to upgrade your"
|
39 |
msgstr ""
|
40 |
|
41 |
+
#: bws_functions.php:151
|
42 |
#, fuzzy
|
43 |
msgid "to"
|
44 |
msgstr "vrh"
|
45 |
|
46 |
+
#: bws_functions.php:151
|
47 |
#, fuzzy
|
48 |
msgid "version!"
|
49 |
msgstr "PHP Verzija"
|
50 |
|
51 |
+
#: bws_functions.php:152
|
52 |
msgid "Extend standard plugin functionality with new great options."
|
53 |
msgstr ""
|
54 |
|
55 |
+
#: bws_functions.php:155
|
56 |
+
#: bws_functions.php:542
|
57 |
+
#, fuzzy
|
58 |
+
msgid "Learn More"
|
59 |
+
msgstr "Pročitaj više"
|
60 |
+
|
61 |
+
#: bws_functions.php:172
|
62 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
63 |
msgstr ""
|
64 |
|
65 |
+
#: bws_functions.php:173
|
66 |
#, fuzzy
|
67 |
msgid "Rate the plugin"
|
68 |
msgstr "Aktivirani moduli"
|
69 |
|
70 |
+
#: bws_functions.php:176
|
71 |
#, fuzzy
|
72 |
msgid "If there is something wrong about it, please contact us"
|
73 |
msgstr "Ako imate pitanja molimo da nas kontaktirate preko"
|
74 |
|
75 |
+
#: bws_functions.php:193
|
76 |
+
#: bws_functions.php:229
|
77 |
msgid "Wrong license key"
|
78 |
msgstr ""
|
79 |
|
80 |
+
#: bws_functions.php:223
|
81 |
+
#: bws_functions.php:455
|
82 |
+
#: bws_functions.php:506
|
83 |
+
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: bws_functions.php:223
|
87 |
+
#: bws_functions.php:455
|
88 |
+
#: bws_functions.php:506
|
89 |
msgid "We are sorry for inconvenience."
|
90 |
msgstr ""
|
91 |
|
92 |
+
#: bws_functions.php:231
|
93 |
msgid "This license key is bind to another site"
|
94 |
msgstr ""
|
95 |
|
96 |
+
#: bws_functions.php:233
|
97 |
+
#: bws_functions.php:365
|
98 |
+
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
|
|
99 |
msgstr ""
|
100 |
|
101 |
+
#: bws_functions.php:235
|
102 |
+
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
|
|
|
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: bws_functions.php:237
|
106 |
+
msgid "Unfortunately, the PRO licence was already installed to this domain. The PRO Trial license can be installed only once."
|
|
|
|
|
107 |
msgstr ""
|
108 |
|
109 |
+
#: bws_functions.php:248
|
110 |
+
#: bws_functions.php:270
|
111 |
+
#: bws_functions.php:292
|
112 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: bws_functions.php:260
|
116 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: bws_functions.php:266
|
120 |
+
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
|
|
|
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: bws_functions.php:273
|
124 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: bws_functions.php:296
|
128 |
+
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
|
|
|
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: bws_functions.php:321
|
132 |
msgid "Please, enter Your license key"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: bws_functions.php:338
|
136 |
+
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
|
|
|
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: bws_functions.php:340
|
140 |
+
#: bws_functions.php:422
|
141 |
msgid "Please, go to"
|
142 |
msgstr ""
|
143 |
|
144 |
+
#: bws_functions.php:340
|
145 |
+
#: bws_functions.php:422
|
146 |
#, fuzzy
|
147 |
msgid "the setting page"
|
148 |
msgstr "na stranici za podešavanje modula ("
|
149 |
|
150 |
+
#: bws_functions.php:341
|
151 |
+
#: bws_functions.php:423
|
152 |
msgid "You will be redirected automatically in 5 seconds."
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: bws_functions.php:346
|
156 |
msgid "You can download and activate"
|
157 |
msgstr ""
|
158 |
|
159 |
+
#: bws_functions.php:348
|
160 |
msgid "version of this plugin by entering Your license key."
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: bws_functions.php:350
|
164 |
+
#: bws_functions.php:391
|
165 |
+
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
|
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: bws_functions.php:352
|
169 |
+
#: bws_functions.php:393
|
170 |
msgid "(your username is the email you specify when purchasing the product)."
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: bws_functions.php:356
|
174 |
+
msgid "or"
|
175 |
+
msgstr ""
|
176 |
+
|
177 |
+
#: bws_functions.php:356
|
178 |
+
#, php-format
|
179 |
+
msgid "Start Your Free %s-Day Trial Now"
|
180 |
+
msgstr ""
|
181 |
+
|
182 |
+
#: bws_functions.php:362
|
183 |
+
#: bws_functions.php:371
|
184 |
+
#: bws_functions.php:401
|
185 |
+
#: bws_functions.php:409
|
186 |
+
#: bws_menu.php:643
|
187 |
+
#: bws_menu.php:700
|
188 |
#, fuzzy
|
189 |
msgid "Activate"
|
190 |
msgstr "Aktivirani moduli"
|
191 |
|
192 |
+
#: bws_functions.php:388
|
193 |
+
#: bws_functions.php:481
|
194 |
+
#, php-format
|
195 |
+
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: bws_functions.php:389
|
199 |
+
msgid "After that you can activate it by entering your license key."
|
200 |
+
msgstr ""
|
201 |
+
|
202 |
+
#: bws_functions.php:403
|
203 |
+
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: bws_functions.php:420
|
207 |
+
msgid "Congratulations! The PRO license of the plugin is successfully activated."
|
208 |
+
msgstr ""
|
209 |
+
|
210 |
+
#: bws_functions.php:461
|
211 |
+
msgid "Wrong license key."
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: bws_functions.php:463
|
215 |
+
msgid "This license key is bind to another site."
|
216 |
+
msgstr ""
|
217 |
+
|
218 |
+
#: bws_functions.php:465
|
219 |
+
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
220 |
+
msgstr ""
|
221 |
+
|
222 |
+
#: bws_functions.php:467
|
223 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: bws_functions.php:469
|
227 |
+
msgid "Unfortunately, the PRO Trial licence was already installed to this domain. The PRO Trial license can be installed only once."
|
228 |
+
msgstr ""
|
229 |
+
|
230 |
+
#: bws_functions.php:473
|
231 |
+
msgid "The PRO Trial license key is valid."
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: bws_functions.php:475
|
235 |
msgid "The license key is valid."
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: bws_functions.php:478
|
239 |
+
msgid "Your license will expire on"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: bws_functions.php:511
|
243 |
msgid "Please, enter your license key"
|
244 |
msgstr ""
|
245 |
|
246 |
+
#: bws_functions.php:524
|
247 |
+
msgid "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"
|
|
|
|
|
|
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: bws_functions.php:524
|
251 |
+
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
|
|
|
|
252 |
msgstr ""
|
253 |
|
254 |
+
#: bws_functions.php:528
|
255 |
msgid "Check license key"
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: bws_functions.php:542
|
259 |
+
msgid "WARNING: Illegal use notification"
|
|
|
|
|
|
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: bws_functions.php:542
|
263 |
+
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."
|
|
|
|
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: bws_functions.php:550
|
267 |
+
msgid "Notice: Your PRO Trial license has expired. To continue using the plugin you should buy a PRO license"
|
268 |
+
msgstr ""
|
269 |
+
|
270 |
+
#: bws_functions.php:552
|
271 |
+
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: bws_functions.php:552
|
275 |
+
#: bws_functions.php:605
|
276 |
+
#: bws_menu.php:619
|
277 |
+
#: bws_menu.php:641
|
278 |
+
#: bws_menu.php:668
|
279 |
+
#: bws_menu.php:698
|
280 |
+
#: bws_menu.php:744
|
281 |
#, fuzzy
|
282 |
msgid "Learn more"
|
283 |
msgstr "Pročitaj više"
|
284 |
|
285 |
+
#: bws_functions.php:562
|
286 |
+
#, php-format
|
287 |
+
msgid "Notice: You are using the PRO Trial license of %s plugin."
|
288 |
+
msgstr ""
|
289 |
+
|
290 |
+
#: bws_functions.php:564
|
291 |
+
msgid "Notice: You are using the PRO Trial license of plugin."
|
292 |
+
msgstr ""
|
293 |
+
|
294 |
+
#: bws_functions.php:567
|
295 |
+
msgid "The PRO Trial license will expire on"
|
296 |
+
msgstr ""
|
297 |
+
|
298 |
+
#: bws_functions.php:605
|
299 |
msgid "You license for"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: bws_functions.php:605
|
303 |
msgid "expires on"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: bws_functions.php:605
|
307 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: bws_functions.php:680
|
311 |
msgid "Close"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: bws_menu.php:456
|
315 |
msgid "Not set"
|
316 |
msgstr "Nije podešeno"
|
317 |
|
318 |
+
#: bws_menu.php:458
|
319 |
+
#: bws_menu.php:459
|
320 |
msgid "On"
|
321 |
msgstr "Uključeno"
|
322 |
|
323 |
+
#: bws_menu.php:458
|
324 |
+
#: bws_menu.php:459
|
325 |
msgid "Off"
|
326 |
msgstr "Isključeno"
|
327 |
|
328 |
+
#: bws_menu.php:460
|
329 |
+
#: bws_menu.php:461
|
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:464
|
338 |
msgid " Mb"
|
339 |
msgstr " Mb"
|
340 |
|
341 |
+
#: bws_menu.php:465
|
342 |
+
#: bws_menu.php:466
|
343 |
+
#: bws_menu.php:467
|
344 |
+
#: bws_menu.php:472
|
345 |
msgid "Yes"
|
346 |
msgstr "Da"
|
347 |
|
348 |
+
#: bws_menu.php:465
|
349 |
+
#: bws_menu.php:466
|
350 |
+
#: bws_menu.php:467
|
351 |
+
#: bws_menu.php:474
|
352 |
msgid "No"
|
353 |
msgstr "Ne"
|
354 |
|
355 |
+
#: bws_menu.php:484
|
356 |
msgid "Operating System"
|
357 |
msgstr "Operativni Sistem"
|
358 |
|
359 |
+
#: bws_menu.php:485
|
360 |
msgid "Server"
|
361 |
msgstr "Server"
|
362 |
|
363 |
+
#: bws_menu.php:486
|
364 |
msgid "Memory usage"
|
365 |
msgstr "Upotreba memorije"
|
366 |
|
367 |
+
#: bws_menu.php:487
|
368 |
msgid "MYSQL Version"
|
369 |
msgstr "MYSQL Verzija"
|
370 |
|
371 |
+
#: bws_menu.php:488
|
372 |
msgid "SQL Mode"
|
373 |
msgstr "SQL način"
|
374 |
|
375 |
+
#: bws_menu.php:489
|
376 |
msgid "PHP Version"
|
377 |
msgstr "PHP Verzija"
|
378 |
|
379 |
+
#: bws_menu.php:490
|
380 |
msgid "PHP Safe Mode"
|
381 |
msgstr "PHP Sigurni način"
|
382 |
|
383 |
+
#: bws_menu.php:491
|
384 |
msgid "PHP Allow URL fopen"
|
385 |
msgstr "PHP Dozvoli URL fopen"
|
386 |
|
387 |
+
#: bws_menu.php:492
|
388 |
msgid "PHP Memory Limit"
|
389 |
msgstr "PHP Ograničenje memorije"
|
390 |
|
391 |
+
#: bws_menu.php:493
|
392 |
#, fuzzy
|
393 |
msgid "PHP Max Upload Size"
|
394 |
msgstr "Envoi de fichier"
|
395 |
|
396 |
+
#: bws_menu.php:494
|
397 |
msgid "PHP Max Post Size"
|
398 |
msgstr "PHP Max veličina za učitavanje"
|
399 |
|
400 |
+
#: bws_menu.php:495
|
401 |
msgid "PHP Max Script Execute Time"
|
402 |
msgstr "PHP Max veličina posta"
|
403 |
|
404 |
+
#: bws_menu.php:496
|
405 |
msgid "PHP Exif support"
|
406 |
msgstr "PHP Exif podrška"
|
407 |
|
408 |
+
#: bws_menu.php:497
|
409 |
msgid "PHP IPTC support"
|
410 |
msgstr "PHP IPTC podrška"
|
411 |
|
412 |
+
#: bws_menu.php:498
|
413 |
msgid "PHP XML support"
|
414 |
msgstr "PHP XML podrška"
|
415 |
|
416 |
+
#: bws_menu.php:499
|
417 |
#, fuzzy
|
418 |
msgid "Site URL"
|
419 |
msgstr "URL du lien"
|
420 |
|
421 |
+
#: bws_menu.php:500
|
422 |
msgid "Home URL"
|
423 |
msgstr "URL naslovne"
|
424 |
|
425 |
+
#: bws_menu.php:503
|
426 |
msgid "WordPress Version"
|
427 |
msgstr "WordPress Verzija"
|
428 |
|
429 |
+
#: bws_menu.php:504
|
430 |
msgid "WordPress DB Version"
|
431 |
msgstr "WordPress DB Verzija"
|
432 |
|
433 |
+
#: bws_menu.php:505
|
434 |
msgid "Multisite"
|
435 |
msgstr "Višenamenski sajt"
|
436 |
|
437 |
+
#: bws_menu.php:506
|
438 |
msgid "Active Theme"
|
439 |
msgstr "Aktivna tema"
|
440 |
|
441 |
+
#: bws_menu.php:521
|
442 |
msgid "Please enter a valid email address."
|
443 |
msgstr "Molimo unesite važeću mejl adresu"
|
444 |
|
445 |
+
#: bws_menu.php:525
|
446 |
msgid "Email with system info is sent to "
|
447 |
msgstr "Mejl sa sistemskim informacijama je poslat na"
|
448 |
|
449 |
+
#: bws_menu.php:529
|
450 |
msgid "Thank you for contacting us."
|
451 |
msgstr "Hvala što ste nas kontaktirali"
|
452 |
|
453 |
+
#: bws_menu.php:562
|
454 |
msgid "Sorry, email message could not be delivered."
|
455 |
msgstr "Nažalost mejl poruka nije prosleđena"
|
456 |
|
457 |
+
#: bws_menu.php:570
|
458 |
msgid "Need help?"
|
459 |
msgstr ""
|
460 |
|
461 |
+
#: bws_menu.php:571
|
462 |
msgid "Client area"
|
463 |
msgstr ""
|
464 |
|
465 |
+
#: bws_menu.php:572
|
466 |
+
#: bws_menu.php:883
|
467 |
msgid "System status"
|
468 |
msgstr "Sistemski status"
|
469 |
|
470 |
+
#: bws_menu.php:577
|
471 |
#, fuzzy
|
472 |
msgid "Plugins"
|
473 |
msgstr "Pro moduli"
|
474 |
|
475 |
+
#: bws_menu.php:579
|
476 |
msgid "Themes"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: bws_menu.php:584
|
480 |
msgid "All"
|
481 |
msgstr ""
|
482 |
|
483 |
+
#: bws_menu.php:585
|
484 |
#, fuzzy
|
485 |
msgid "Installed"
|
486 |
msgstr "Instalacija %s"
|
487 |
|
488 |
+
#: bws_menu.php:586
|
489 |
#, fuzzy
|
490 |
msgid "Recommended"
|
491 |
msgstr "Preporučeni moduli"
|
492 |
|
493 |
+
#: bws_menu.php:590
|
494 |
msgid "Installed plugins"
|
495 |
msgstr "Instalirani moduli"
|
496 |
|
497 |
+
#: bws_menu.php:622
|
498 |
+
#: bws_menu.php:671
|
499 |
msgid "Settings"
|
500 |
msgstr "Podešavanja"
|
501 |
|
502 |
+
#: bws_menu.php:643
|
503 |
+
#: bws_menu.php:700
|
504 |
#, fuzzy
|
505 |
msgid "Activate this plugin"
|
506 |
msgstr "Aktivirani moduli"
|
507 |
|
508 |
+
#: bws_menu.php:658
|
509 |
+
#: bws_menu.php:688
|
510 |
+
#: bws_menu.php:734
|
511 |
msgid "Go"
|
512 |
msgstr ""
|
513 |
|
514 |
+
#: bws_menu.php:662
|
515 |
+
#: bws_menu.php:692
|
516 |
+
#: bws_menu.php:738
|
517 |
msgid "DONATE"
|
518 |
msgstr ""
|
519 |
|
520 |
+
#: bws_menu.php:708
|
521 |
msgid "Recommended plugins"
|
522 |
msgstr "Preporučeni moduli"
|
523 |
|
524 |
+
#: bws_menu.php:746
|
525 |
#, fuzzy
|
526 |
msgid "Install now"
|
527 |
msgstr "Instalacija %s"
|
528 |
|
529 |
+
#: bws_menu.php:767
|
530 |
msgid "Try again"
|
531 |
msgstr ""
|
532 |
|
533 |
+
#: bws_menu.php:785
|
534 |
#, php-format
|
535 |
msgid "Preview “%s”"
|
536 |
msgstr ""
|
537 |
|
538 |
+
#: bws_menu.php:816
|
539 |
#, php-format
|
540 |
msgid "Install %s"
|
541 |
msgstr "Instalacija %s"
|
542 |
|
543 |
+
#: bws_menu.php:816
|
544 |
#, fuzzy
|
545 |
msgid "Install Now"
|
546 |
msgstr "Instalacija %s"
|
547 |
|
548 |
+
#: bws_menu.php:819
|
549 |
#, php-format
|
550 |
msgid "Update to version %s"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: bws_menu.php:819
|
554 |
#, fuzzy
|
555 |
msgid "Update"
|
556 |
msgstr "date"
|
557 |
|
558 |
+
#: bws_menu.php:826
|
559 |
#, php-format
|
560 |
msgid "Preview %s"
|
561 |
msgstr ""
|
562 |
|
563 |
+
#: bws_menu.php:826
|
564 |
msgid "Preview"
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: bws_menu.php:832
|
568 |
+
#: bws_menu.php:864
|
569 |
#, php-format
|
570 |
msgid "By %s"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: bws_menu.php:838
|
574 |
msgid "Details"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: bws_menu.php:870
|
578 |
#, fuzzy
|
579 |
msgid "Already Installed"
|
580 |
msgstr "Instalacija %s"
|
581 |
|
582 |
+
#: bws_menu.php:886
|
583 |
msgid "Environment"
|
584 |
msgstr "Okruženje"
|
585 |
|
586 |
+
#: bws_menu.php:897
|
587 |
#, fuzzy
|
588 |
msgid "Active Plugins"
|
589 |
msgstr "Extensions activées"
|
590 |
|
591 |
+
#: bws_menu.php:910
|
592 |
#, fuzzy
|
593 |
msgid "Inactive Plugins"
|
594 |
msgstr "Extensions activées"
|
595 |
|
596 |
+
#: bws_menu.php:926
|
597 |
#, fuzzy
|
598 |
msgid "Send to support"
|
599 |
msgstr "Soutien"
|
600 |
|
601 |
+
#: bws_menu.php:933
|
602 |
msgid "Send to custom email »"
|
603 |
msgstr "Pošalji na korisnički mejl »"
|
604 |
|
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"
|
@@ -16,509 +16,581 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: bws_functions.php:
|
20 |
msgid "requires"
|
21 |
msgstr ""
|
22 |
|
23 |
-
#: bws_functions.php:
|
24 |
-
msgid ""
|
25 |
-
"or higher, that is why it has been deactivated! Please upgrade WordPress and "
|
26 |
-
"try again."
|
27 |
msgstr ""
|
28 |
|
29 |
-
#: bws_functions.php:
|
30 |
msgid "Back to the WordPress"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: bws_functions.php:
|
34 |
#, fuzzy
|
35 |
msgid "Plugins page"
|
36 |
msgstr "Betaltillägg"
|
37 |
|
38 |
-
#: bws_functions.php:
|
39 |
-
#, fuzzy
|
40 |
-
msgid "Learn More"
|
41 |
-
msgstr "Läs mer"
|
42 |
-
|
43 |
-
#: bws_functions.php:137
|
44 |
msgid "It’s time to upgrade your"
|
45 |
msgstr ""
|
46 |
|
47 |
-
#: bws_functions.php:
|
48 |
#, fuzzy
|
49 |
msgid "to"
|
50 |
msgstr "två"
|
51 |
|
52 |
-
#: bws_functions.php:
|
53 |
#, fuzzy
|
54 |
msgid "version!"
|
55 |
msgstr "PHP-version"
|
56 |
|
57 |
-
#: bws_functions.php:
|
58 |
msgid "Extend standard plugin functionality with new great options."
|
59 |
msgstr ""
|
60 |
|
61 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
63 |
msgstr ""
|
64 |
|
65 |
-
#: bws_functions.php:
|
66 |
#, fuzzy
|
67 |
msgid "Rate the plugin"
|
68 |
msgstr "Aktiverade tillägg"
|
69 |
|
70 |
-
#: bws_functions.php:
|
71 |
#, fuzzy
|
72 |
msgid "If there is something wrong about it, please contact us"
|
73 |
msgstr "Om du har några frågor, kontakta oss via"
|
74 |
|
75 |
-
#: bws_functions.php:
|
|
|
76 |
msgid "Wrong license key"
|
77 |
msgstr ""
|
78 |
|
79 |
-
#: bws_functions.php:
|
80 |
-
|
81 |
-
|
82 |
-
"please contact us"
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: bws_functions.php:
|
|
|
|
|
86 |
msgid "We are sorry for inconvenience."
|
87 |
msgstr ""
|
88 |
|
89 |
-
#: bws_functions.php:
|
90 |
msgid "This license key is bind to another site"
|
91 |
msgstr ""
|
92 |
|
93 |
-
#: bws_functions.php:
|
94 |
-
|
95 |
-
"Unfortunately, you have exceeded the number of available tries per day. "
|
96 |
-
"Please, upload the plugin manually."
|
97 |
msgstr ""
|
98 |
|
99 |
-
#: bws_functions.php:
|
100 |
-
msgid ""
|
101 |
-
"Unfortunately, Your license has expired. To continue getting top-priority "
|
102 |
-
"support and plugin updates you should extend it in your"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: bws_functions.php:
|
106 |
-
msgid ""
|
107 |
-
"Unfortunately, the PRO licence was already installed to this domain. The PRO "
|
108 |
-
"Trial license can be installed only once."
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: bws_functions.php:
|
|
|
|
|
112 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
113 |
msgstr ""
|
114 |
|
115 |
-
#: bws_functions.php:
|
116 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: bws_functions.php:
|
120 |
-
msgid ""
|
121 |
-
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
122 |
-
"plugin manually"
|
123 |
msgstr ""
|
124 |
|
125 |
-
#: bws_functions.php:
|
126 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
127 |
msgstr ""
|
128 |
|
129 |
-
#: bws_functions.php:
|
130 |
-
msgid ""
|
131 |
-
"Something went wrong. Try again later or upload the plugin manually. We are "
|
132 |
-
"sorry for inconvenience."
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: bws_functions.php:
|
136 |
msgid "Please, enter Your license key"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: bws_functions.php:
|
140 |
-
msgid ""
|
141 |
-
"Congratulations! The PRO version of the plugin is successfully download and "
|
142 |
-
"activated."
|
143 |
msgstr ""
|
144 |
|
145 |
-
#: bws_functions.php:
|
|
|
146 |
msgid "Please, go to"
|
147 |
msgstr ""
|
148 |
|
149 |
-
#: bws_functions.php:
|
|
|
150 |
msgid "the setting page"
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: bws_functions.php:
|
|
|
154 |
msgid "You will be redirected automatically in 5 seconds."
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: bws_functions.php:
|
158 |
msgid "You can download and activate"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: bws_functions.php:
|
162 |
msgid "version of this plugin by entering Your license key."
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: bws_functions.php:
|
166 |
-
|
167 |
-
"You can find your license key on your personal page Client area, by clicking "
|
168 |
-
"on the link"
|
169 |
msgstr ""
|
170 |
|
171 |
-
#: bws_functions.php:
|
|
|
172 |
msgid "(your username is the email you specify when purchasing the product)."
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: bws_functions.php:
|
176 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
177 |
#, fuzzy
|
178 |
msgid "Activate"
|
179 |
msgstr "Aktiverade tillägg"
|
180 |
|
181 |
-
#: bws_functions.php:
|
182 |
-
|
183 |
-
|
184 |
-
"
|
185 |
msgstr ""
|
186 |
|
187 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
188 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
189 |
msgstr ""
|
190 |
|
191 |
-
#: bws_functions.php:
|
192 |
-
msgid "
|
|
|
|
|
|
|
|
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: bws_functions.php:
|
196 |
msgid "The license key is valid."
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
200 |
msgid "Please, enter your license key"
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: bws_functions.php:
|
204 |
-
msgid ""
|
205 |
-
"If needed you can check if the license key is correct or reenter it in the "
|
206 |
-
"field below. You can find your license key on your personal page - Client "
|
207 |
-
"area - on our website"
|
208 |
msgstr ""
|
209 |
|
210 |
-
#: bws_functions.php:
|
211 |
-
msgid ""
|
212 |
-
"(your username is the email you specify when purchasing the product). If "
|
213 |
-
"necessary, please submit \"Lost your password?\" request."
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: bws_functions.php:
|
217 |
msgid "Check license key"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: bws_functions.php:
|
221 |
-
msgid ""
|
222 |
-
"WARNING: We have noticed illegal use of our plugin by you. We strongly "
|
223 |
-
"recommend you to solve the problem within 24 hours, otherwise the plugin "
|
224 |
-
"will be deactivated. Please go to your personal"
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: bws_functions.php:
|
228 |
-
msgid ""
|
229 |
-
"(your username is the email you specify when purchasing the product), where "
|
230 |
-
"you can make the necessary changes."
|
231 |
msgstr ""
|
232 |
|
233 |
-
#: bws_functions.php:
|
234 |
-
msgid ""
|
235 |
-
|
236 |
-
|
|
|
|
|
237 |
msgstr ""
|
238 |
|
239 |
-
#: bws_functions.php:
|
240 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
241 |
#, fuzzy
|
242 |
msgid "Learn more"
|
243 |
msgstr "Läs mer"
|
244 |
|
245 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
246 |
msgid "You license for"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: bws_functions.php:
|
250 |
msgid "expires on"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: bws_functions.php:
|
254 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: bws_functions.php:
|
258 |
msgid "Close"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: bws_menu.php:
|
262 |
msgid "Not set"
|
263 |
msgstr "Inte angiven"
|
264 |
|
265 |
-
#: bws_menu.php:
|
|
|
266 |
msgid "On"
|
267 |
msgstr "På"
|
268 |
|
269 |
-
#: bws_menu.php:
|
|
|
270 |
msgid "Off"
|
271 |
msgstr "Av"
|
272 |
|
273 |
-
#: bws_menu.php:
|
274 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
|
|
275 |
msgid "N/A"
|
276 |
msgstr "Finns ej"
|
277 |
|
278 |
-
#: bws_menu.php:
|
279 |
msgid " Mb"
|
280 |
msgstr " Mb"
|
281 |
|
282 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
283 |
msgid "Yes"
|
284 |
msgstr "Ja"
|
285 |
|
286 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
287 |
msgid "No"
|
288 |
msgstr "Nej"
|
289 |
|
290 |
-
#: bws_menu.php:
|
291 |
msgid "Operating System"
|
292 |
msgstr "Operativsystem"
|
293 |
|
294 |
-
#: bws_menu.php:
|
295 |
msgid "Server"
|
296 |
msgstr "Server"
|
297 |
|
298 |
-
#: bws_menu.php:
|
299 |
msgid "Memory usage"
|
300 |
msgstr "Minnesanvändning"
|
301 |
|
302 |
-
#: bws_menu.php:
|
303 |
msgid "MYSQL Version"
|
304 |
msgstr "MySQL-version"
|
305 |
|
306 |
-
#: bws_menu.php:
|
307 |
msgid "SQL Mode"
|
308 |
msgstr "SQL-läge"
|
309 |
|
310 |
-
#: bws_menu.php:
|
311 |
msgid "PHP Version"
|
312 |
msgstr "PHP-version"
|
313 |
|
314 |
-
#: bws_menu.php:
|
315 |
msgid "PHP Safe Mode"
|
316 |
msgstr "PHP säkert läge"
|
317 |
|
318 |
-
#: bws_menu.php:
|
319 |
msgid "PHP Allow URL fopen"
|
320 |
msgstr "PHP tillåt URL fopen"
|
321 |
|
322 |
-
#: bws_menu.php:
|
323 |
msgid "PHP Memory Limit"
|
324 |
msgstr "PHP Minnesgräns"
|
325 |
|
326 |
-
#: bws_menu.php:
|
327 |
msgid "PHP Max Upload Size"
|
328 |
msgstr "PHP Max uppladdningstorlek"
|
329 |
|
330 |
-
#: bws_menu.php:
|
331 |
msgid "PHP Max Post Size"
|
332 |
msgstr "PHP Max poststorlek"
|
333 |
|
334 |
-
#: bws_menu.php:
|
335 |
msgid "PHP Max Script Execute Time"
|
336 |
msgstr "PHP Max skriptexekverinstid"
|
337 |
|
338 |
-
#: bws_menu.php:
|
339 |
msgid "PHP Exif support"
|
340 |
msgstr "PHP Exifstöd"
|
341 |
|
342 |
-
#: bws_menu.php:
|
343 |
msgid "PHP IPTC support"
|
344 |
msgstr "PHP ITPC-stöd"
|
345 |
|
346 |
-
#: bws_menu.php:
|
347 |
msgid "PHP XML support"
|
348 |
msgstr "PHP XML-stöd"
|
349 |
|
350 |
-
#: bws_menu.php:
|
351 |
msgid "Site URL"
|
352 |
msgstr "SajtURL"
|
353 |
|
354 |
-
#: bws_menu.php:
|
355 |
msgid "Home URL"
|
356 |
msgstr "HemURL"
|
357 |
|
358 |
-
#: bws_menu.php:
|
359 |
msgid "WordPress Version"
|
360 |
msgstr "WordPress-version"
|
361 |
|
362 |
-
#: bws_menu.php:
|
363 |
msgid "WordPress DB Version"
|
364 |
msgstr "WordPress-DB-version"
|
365 |
|
366 |
-
#: bws_menu.php:
|
367 |
msgid "Multisite"
|
368 |
msgstr "Multisajt"
|
369 |
|
370 |
-
#: bws_menu.php:
|
371 |
msgid "Active Theme"
|
372 |
msgstr "Aktivt tema"
|
373 |
|
374 |
-
#: bws_menu.php:
|
375 |
msgid "Please enter a valid email address."
|
376 |
msgstr "Var god ange en giltig epost-adress."
|
377 |
|
378 |
-
#: bws_menu.php:
|
379 |
msgid "Email with system info is sent to "
|
380 |
msgstr "Epost med systeminfo är skickat till"
|
381 |
|
382 |
-
#: bws_menu.php:
|
383 |
msgid "Thank you for contacting us."
|
384 |
msgstr "Tack för att du kontaktade oss."
|
385 |
|
386 |
-
#: bws_menu.php:
|
387 |
msgid "Sorry, email message could not be delivered."
|
388 |
msgstr "Ledsen, eposten kunde inte levereras."
|
389 |
|
390 |
-
#: bws_menu.php:
|
391 |
msgid "Need help?"
|
392 |
msgstr ""
|
393 |
|
394 |
-
#: bws_menu.php:
|
395 |
msgid "Client area"
|
396 |
msgstr ""
|
397 |
|
398 |
-
#: bws_menu.php:
|
|
|
399 |
msgid "System status"
|
400 |
msgstr "Systemstatus"
|
401 |
|
402 |
-
#: bws_menu.php:
|
403 |
#, fuzzy
|
404 |
msgid "Plugins"
|
405 |
msgstr "Betaltillägg"
|
406 |
|
407 |
-
#: bws_menu.php:
|
408 |
msgid "Themes"
|
409 |
msgstr ""
|
410 |
|
411 |
-
#: bws_menu.php:
|
412 |
msgid "All"
|
413 |
msgstr ""
|
414 |
|
415 |
-
#: bws_menu.php:
|
416 |
#, fuzzy
|
417 |
msgid "Installed"
|
418 |
msgstr "Installera %s"
|
419 |
|
420 |
-
#: bws_menu.php:
|
421 |
#, fuzzy
|
422 |
msgid "Recommended"
|
423 |
msgstr "Rekommenderade tillägg"
|
424 |
|
425 |
-
#: bws_menu.php:
|
426 |
msgid "Installed plugins"
|
427 |
msgstr "Installerade tillägg"
|
428 |
|
429 |
-
#: bws_menu.php:
|
|
|
430 |
msgid "Settings"
|
431 |
msgstr "Inställningar"
|
432 |
|
433 |
-
#: bws_menu.php:
|
|
|
434 |
#, fuzzy
|
435 |
msgid "Activate this plugin"
|
436 |
msgstr "Aktiverade tillägg"
|
437 |
|
438 |
-
#: bws_menu.php:
|
|
|
|
|
439 |
msgid "Go"
|
440 |
msgstr ""
|
441 |
|
442 |
-
#: bws_menu.php:
|
|
|
|
|
443 |
msgid "DONATE"
|
444 |
msgstr ""
|
445 |
|
446 |
-
#: bws_menu.php:
|
447 |
msgid "Recommended plugins"
|
448 |
msgstr "Rekommenderade tillägg"
|
449 |
|
450 |
-
#: bws_menu.php:
|
451 |
#, fuzzy
|
452 |
msgid "Install now"
|
453 |
msgstr "Установить сейчас"
|
454 |
|
455 |
-
#: bws_menu.php:
|
456 |
msgid "Try again"
|
457 |
msgstr ""
|
458 |
|
459 |
-
#: bws_menu.php:
|
460 |
#, php-format
|
461 |
msgid "Preview “%s”"
|
462 |
msgstr ""
|
463 |
|
464 |
-
#: bws_menu.php:
|
465 |
#, php-format
|
466 |
msgid "Install %s"
|
467 |
msgstr "Installera %s"
|
468 |
|
469 |
-
#: bws_menu.php:
|
470 |
msgid "Install Now"
|
471 |
msgstr "Установить сейчас"
|
472 |
|
473 |
-
#: bws_menu.php:
|
474 |
#, php-format
|
475 |
msgid "Update to version %s"
|
476 |
msgstr ""
|
477 |
|
478 |
-
#: bws_menu.php:
|
479 |
msgid "Update"
|
480 |
msgstr ""
|
481 |
|
482 |
-
#: bws_menu.php:
|
483 |
#, php-format
|
484 |
msgid "Preview %s"
|
485 |
msgstr ""
|
486 |
|
487 |
-
#: bws_menu.php:
|
488 |
msgid "Preview"
|
489 |
msgstr ""
|
490 |
|
491 |
-
#: bws_menu.php:
|
|
|
492 |
#, php-format
|
493 |
msgid "By %s"
|
494 |
msgstr ""
|
495 |
|
496 |
-
#: bws_menu.php:
|
497 |
msgid "Details"
|
498 |
msgstr ""
|
499 |
|
500 |
-
#: bws_menu.php:
|
501 |
#, fuzzy
|
502 |
msgid "Already Installed"
|
503 |
msgstr "Installera %s"
|
504 |
|
505 |
-
#: bws_menu.php:
|
506 |
msgid "Environment"
|
507 |
msgstr "Miljövariabler"
|
508 |
|
509 |
-
#: bws_menu.php:
|
510 |
msgid "Active Plugins"
|
511 |
msgstr "Aktiverade tillägg"
|
512 |
|
513 |
-
#: bws_menu.php:
|
514 |
msgid "Inactive Plugins"
|
515 |
msgstr "Inaktiverade tillägg"
|
516 |
|
517 |
-
#: bws_menu.php:
|
518 |
msgid "Send to support"
|
519 |
msgstr "Skicka till support"
|
520 |
|
521 |
-
#: bws_menu.php:
|
522 |
msgid "Send to custom email »"
|
523 |
msgstr "Skicka till anpassad epost »"
|
524 |
|
@@ -684,9 +756,6 @@ msgstr "Skicka till anpassad epost »"
|
|
684 |
#~ msgid "three"
|
685 |
#~ msgstr "tre"
|
686 |
|
687 |
-
#~ msgid "four"
|
688 |
-
#~ msgstr "fyra"
|
689 |
-
|
690 |
#~ msgid "five"
|
691 |
#~ msgstr "fem"
|
692 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-05-11 14:14+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-05-11 14:14+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"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: bws_functions.php:89
|
20 |
msgid "requires"
|
21 |
msgstr ""
|
22 |
|
23 |
+
#: bws_functions.php:91
|
24 |
+
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
|
|
|
|
25 |
msgstr ""
|
26 |
|
27 |
+
#: bws_functions.php:92
|
28 |
msgid "Back to the WordPress"
|
29 |
msgstr ""
|
30 |
|
31 |
+
#: bws_functions.php:94
|
32 |
#, fuzzy
|
33 |
msgid "Plugins page"
|
34 |
msgstr "Betaltillägg"
|
35 |
|
36 |
+
#: bws_functions.php:151
|
|
|
|
|
|
|
|
|
|
|
37 |
msgid "It’s time to upgrade your"
|
38 |
msgstr ""
|
39 |
|
40 |
+
#: bws_functions.php:151
|
41 |
#, fuzzy
|
42 |
msgid "to"
|
43 |
msgstr "två"
|
44 |
|
45 |
+
#: bws_functions.php:151
|
46 |
#, fuzzy
|
47 |
msgid "version!"
|
48 |
msgstr "PHP-version"
|
49 |
|
50 |
+
#: bws_functions.php:152
|
51 |
msgid "Extend standard plugin functionality with new great options."
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: bws_functions.php:155
|
55 |
+
#: bws_functions.php:542
|
56 |
+
#, fuzzy
|
57 |
+
msgid "Learn More"
|
58 |
+
msgstr "Läs mer"
|
59 |
+
|
60 |
+
#: bws_functions.php:172
|
61 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
62 |
msgstr ""
|
63 |
|
64 |
+
#: bws_functions.php:173
|
65 |
#, fuzzy
|
66 |
msgid "Rate the plugin"
|
67 |
msgstr "Aktiverade tillägg"
|
68 |
|
69 |
+
#: bws_functions.php:176
|
70 |
#, fuzzy
|
71 |
msgid "If there is something wrong about it, please contact us"
|
72 |
msgstr "Om du har några frågor, kontakta oss via"
|
73 |
|
74 |
+
#: bws_functions.php:193
|
75 |
+
#: bws_functions.php:229
|
76 |
msgid "Wrong license key"
|
77 |
msgstr ""
|
78 |
|
79 |
+
#: bws_functions.php:223
|
80 |
+
#: bws_functions.php:455
|
81 |
+
#: bws_functions.php:506
|
82 |
+
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: bws_functions.php:223
|
86 |
+
#: bws_functions.php:455
|
87 |
+
#: bws_functions.php:506
|
88 |
msgid "We are sorry for inconvenience."
|
89 |
msgstr ""
|
90 |
|
91 |
+
#: bws_functions.php:231
|
92 |
msgid "This license key is bind to another site"
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: bws_functions.php:233
|
96 |
+
#: bws_functions.php:365
|
97 |
+
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
|
|
98 |
msgstr ""
|
99 |
|
100 |
+
#: bws_functions.php:235
|
101 |
+
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
|
|
|
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: bws_functions.php:237
|
105 |
+
msgid "Unfortunately, the PRO licence was already installed to this domain. The PRO Trial license can be installed only once."
|
|
|
|
|
106 |
msgstr ""
|
107 |
|
108 |
+
#: bws_functions.php:248
|
109 |
+
#: bws_functions.php:270
|
110 |
+
#: bws_functions.php:292
|
111 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
112 |
msgstr ""
|
113 |
|
114 |
+
#: bws_functions.php:260
|
115 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
116 |
msgstr ""
|
117 |
|
118 |
+
#: bws_functions.php:266
|
119 |
+
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
|
|
|
|
120 |
msgstr ""
|
121 |
|
122 |
+
#: bws_functions.php:273
|
123 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: bws_functions.php:296
|
127 |
+
msgid "Something went wrong. Try again later or upload the plugin manually. We are sorry for inconvenience."
|
|
|
|
|
128 |
msgstr ""
|
129 |
|
130 |
+
#: bws_functions.php:321
|
131 |
msgid "Please, enter Your license key"
|
132 |
msgstr ""
|
133 |
|
134 |
+
#: bws_functions.php:338
|
135 |
+
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
|
|
|
|
136 |
msgstr ""
|
137 |
|
138 |
+
#: bws_functions.php:340
|
139 |
+
#: bws_functions.php:422
|
140 |
msgid "Please, go to"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: bws_functions.php:340
|
144 |
+
#: bws_functions.php:422
|
145 |
msgid "the setting page"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: bws_functions.php:341
|
149 |
+
#: bws_functions.php:423
|
150 |
msgid "You will be redirected automatically in 5 seconds."
|
151 |
msgstr ""
|
152 |
|
153 |
+
#: bws_functions.php:346
|
154 |
msgid "You can download and activate"
|
155 |
msgstr ""
|
156 |
|
157 |
+
#: bws_functions.php:348
|
158 |
msgid "version of this plugin by entering Your license key."
|
159 |
msgstr ""
|
160 |
|
161 |
+
#: bws_functions.php:350
|
162 |
+
#: bws_functions.php:391
|
163 |
+
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
|
|
164 |
msgstr ""
|
165 |
|
166 |
+
#: bws_functions.php:352
|
167 |
+
#: bws_functions.php:393
|
168 |
msgid "(your username is the email you specify when purchasing the product)."
|
169 |
msgstr ""
|
170 |
|
171 |
+
#: bws_functions.php:356
|
172 |
+
#, fuzzy
|
173 |
+
msgid "or"
|
174 |
+
msgstr "fyra"
|
175 |
+
|
176 |
+
#: bws_functions.php:356
|
177 |
+
#, php-format
|
178 |
+
msgid "Start Your Free %s-Day Trial Now"
|
179 |
+
msgstr ""
|
180 |
+
|
181 |
+
#: bws_functions.php:362
|
182 |
+
#: bws_functions.php:371
|
183 |
+
#: bws_functions.php:401
|
184 |
+
#: bws_functions.php:409
|
185 |
+
#: bws_menu.php:643
|
186 |
+
#: bws_menu.php:700
|
187 |
#, fuzzy
|
188 |
msgid "Activate"
|
189 |
msgstr "Aktiverade tillägg"
|
190 |
|
191 |
+
#: bws_functions.php:388
|
192 |
+
#: bws_functions.php:481
|
193 |
+
#, php-format
|
194 |
+
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: bws_functions.php:389
|
198 |
+
msgid "After that you can activate it by entering your license key."
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: bws_functions.php:403
|
202 |
+
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: bws_functions.php:420
|
206 |
+
msgid "Congratulations! The PRO license of the plugin is successfully activated."
|
207 |
+
msgstr ""
|
208 |
+
|
209 |
+
#: bws_functions.php:461
|
210 |
+
msgid "Wrong license key."
|
211 |
+
msgstr ""
|
212 |
+
|
213 |
+
#: bws_functions.php:463
|
214 |
+
msgid "This license key is bind to another site."
|
215 |
+
msgstr ""
|
216 |
+
|
217 |
+
#: bws_functions.php:465
|
218 |
+
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
219 |
+
msgstr ""
|
220 |
+
|
221 |
+
#: bws_functions.php:467
|
222 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
223 |
msgstr ""
|
224 |
|
225 |
+
#: bws_functions.php:469
|
226 |
+
msgid "Unfortunately, the PRO Trial licence was already installed to this domain. The PRO Trial license can be installed only once."
|
227 |
+
msgstr ""
|
228 |
+
|
229 |
+
#: bws_functions.php:473
|
230 |
+
msgid "The PRO Trial license key is valid."
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: bws_functions.php:475
|
234 |
msgid "The license key is valid."
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: bws_functions.php:478
|
238 |
+
msgid "Your license will expire on"
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
#: bws_functions.php:511
|
242 |
msgid "Please, enter your license key"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: bws_functions.php:524
|
246 |
+
msgid "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"
|
|
|
|
|
|
|
247 |
msgstr ""
|
248 |
|
249 |
+
#: bws_functions.php:524
|
250 |
+
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
|
|
|
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: bws_functions.php:528
|
254 |
msgid "Check license key"
|
255 |
msgstr ""
|
256 |
|
257 |
+
#: bws_functions.php:542
|
258 |
+
msgid "WARNING: Illegal use notification"
|
|
|
|
|
|
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: bws_functions.php:542
|
262 |
+
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."
|
|
|
|
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: bws_functions.php:550
|
266 |
+
msgid "Notice: Your PRO Trial license has expired. To continue using the plugin you should buy a PRO license"
|
267 |
+
msgstr ""
|
268 |
+
|
269 |
+
#: bws_functions.php:552
|
270 |
+
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: bws_functions.php:552
|
274 |
+
#: bws_functions.php:605
|
275 |
+
#: bws_menu.php:619
|
276 |
+
#: bws_menu.php:641
|
277 |
+
#: bws_menu.php:668
|
278 |
+
#: bws_menu.php:698
|
279 |
+
#: bws_menu.php:744
|
280 |
#, fuzzy
|
281 |
msgid "Learn more"
|
282 |
msgstr "Läs mer"
|
283 |
|
284 |
+
#: bws_functions.php:562
|
285 |
+
#, php-format
|
286 |
+
msgid "Notice: You are using the PRO Trial license of %s plugin."
|
287 |
+
msgstr ""
|
288 |
+
|
289 |
+
#: bws_functions.php:564
|
290 |
+
msgid "Notice: You are using the PRO Trial license of plugin."
|
291 |
+
msgstr ""
|
292 |
+
|
293 |
+
#: bws_functions.php:567
|
294 |
+
msgid "The PRO Trial license will expire on"
|
295 |
+
msgstr ""
|
296 |
+
|
297 |
+
#: bws_functions.php:605
|
298 |
msgid "You license for"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: bws_functions.php:605
|
302 |
msgid "expires on"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: bws_functions.php:605
|
306 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
307 |
msgstr ""
|
308 |
|
309 |
+
#: bws_functions.php:680
|
310 |
msgid "Close"
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: bws_menu.php:456
|
314 |
msgid "Not set"
|
315 |
msgstr "Inte angiven"
|
316 |
|
317 |
+
#: bws_menu.php:458
|
318 |
+
#: bws_menu.php:459
|
319 |
msgid "On"
|
320 |
msgstr "På"
|
321 |
|
322 |
+
#: bws_menu.php:458
|
323 |
+
#: bws_menu.php:459
|
324 |
msgid "Off"
|
325 |
msgstr "Av"
|
326 |
|
327 |
+
#: bws_menu.php:460
|
328 |
+
#: bws_menu.php:461
|
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:464
|
337 |
msgid " Mb"
|
338 |
msgstr " Mb"
|
339 |
|
340 |
+
#: bws_menu.php:465
|
341 |
+
#: bws_menu.php:466
|
342 |
+
#: bws_menu.php:467
|
343 |
+
#: bws_menu.php:472
|
344 |
msgid "Yes"
|
345 |
msgstr "Ja"
|
346 |
|
347 |
+
#: bws_menu.php:465
|
348 |
+
#: bws_menu.php:466
|
349 |
+
#: bws_menu.php:467
|
350 |
+
#: bws_menu.php:474
|
351 |
msgid "No"
|
352 |
msgstr "Nej"
|
353 |
|
354 |
+
#: bws_menu.php:484
|
355 |
msgid "Operating System"
|
356 |
msgstr "Operativsystem"
|
357 |
|
358 |
+
#: bws_menu.php:485
|
359 |
msgid "Server"
|
360 |
msgstr "Server"
|
361 |
|
362 |
+
#: bws_menu.php:486
|
363 |
msgid "Memory usage"
|
364 |
msgstr "Minnesanvändning"
|
365 |
|
366 |
+
#: bws_menu.php:487
|
367 |
msgid "MYSQL Version"
|
368 |
msgstr "MySQL-version"
|
369 |
|
370 |
+
#: bws_menu.php:488
|
371 |
msgid "SQL Mode"
|
372 |
msgstr "SQL-läge"
|
373 |
|
374 |
+
#: bws_menu.php:489
|
375 |
msgid "PHP Version"
|
376 |
msgstr "PHP-version"
|
377 |
|
378 |
+
#: bws_menu.php:490
|
379 |
msgid "PHP Safe Mode"
|
380 |
msgstr "PHP säkert läge"
|
381 |
|
382 |
+
#: bws_menu.php:491
|
383 |
msgid "PHP Allow URL fopen"
|
384 |
msgstr "PHP tillåt URL fopen"
|
385 |
|
386 |
+
#: bws_menu.php:492
|
387 |
msgid "PHP Memory Limit"
|
388 |
msgstr "PHP Minnesgräns"
|
389 |
|
390 |
+
#: bws_menu.php:493
|
391 |
msgid "PHP Max Upload Size"
|
392 |
msgstr "PHP Max uppladdningstorlek"
|
393 |
|
394 |
+
#: bws_menu.php:494
|
395 |
msgid "PHP Max Post Size"
|
396 |
msgstr "PHP Max poststorlek"
|
397 |
|
398 |
+
#: bws_menu.php:495
|
399 |
msgid "PHP Max Script Execute Time"
|
400 |
msgstr "PHP Max skriptexekverinstid"
|
401 |
|
402 |
+
#: bws_menu.php:496
|
403 |
msgid "PHP Exif support"
|
404 |
msgstr "PHP Exifstöd"
|
405 |
|
406 |
+
#: bws_menu.php:497
|
407 |
msgid "PHP IPTC support"
|
408 |
msgstr "PHP ITPC-stöd"
|
409 |
|
410 |
+
#: bws_menu.php:498
|
411 |
msgid "PHP XML support"
|
412 |
msgstr "PHP XML-stöd"
|
413 |
|
414 |
+
#: bws_menu.php:499
|
415 |
msgid "Site URL"
|
416 |
msgstr "SajtURL"
|
417 |
|
418 |
+
#: bws_menu.php:500
|
419 |
msgid "Home URL"
|
420 |
msgstr "HemURL"
|
421 |
|
422 |
+
#: bws_menu.php:503
|
423 |
msgid "WordPress Version"
|
424 |
msgstr "WordPress-version"
|
425 |
|
426 |
+
#: bws_menu.php:504
|
427 |
msgid "WordPress DB Version"
|
428 |
msgstr "WordPress-DB-version"
|
429 |
|
430 |
+
#: bws_menu.php:505
|
431 |
msgid "Multisite"
|
432 |
msgstr "Multisajt"
|
433 |
|
434 |
+
#: bws_menu.php:506
|
435 |
msgid "Active Theme"
|
436 |
msgstr "Aktivt tema"
|
437 |
|
438 |
+
#: bws_menu.php:521
|
439 |
msgid "Please enter a valid email address."
|
440 |
msgstr "Var god ange en giltig epost-adress."
|
441 |
|
442 |
+
#: bws_menu.php:525
|
443 |
msgid "Email with system info is sent to "
|
444 |
msgstr "Epost med systeminfo är skickat till"
|
445 |
|
446 |
+
#: bws_menu.php:529
|
447 |
msgid "Thank you for contacting us."
|
448 |
msgstr "Tack för att du kontaktade oss."
|
449 |
|
450 |
+
#: bws_menu.php:562
|
451 |
msgid "Sorry, email message could not be delivered."
|
452 |
msgstr "Ledsen, eposten kunde inte levereras."
|
453 |
|
454 |
+
#: bws_menu.php:570
|
455 |
msgid "Need help?"
|
456 |
msgstr ""
|
457 |
|
458 |
+
#: bws_menu.php:571
|
459 |
msgid "Client area"
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: bws_menu.php:572
|
463 |
+
#: bws_menu.php:883
|
464 |
msgid "System status"
|
465 |
msgstr "Systemstatus"
|
466 |
|
467 |
+
#: bws_menu.php:577
|
468 |
#, fuzzy
|
469 |
msgid "Plugins"
|
470 |
msgstr "Betaltillägg"
|
471 |
|
472 |
+
#: bws_menu.php:579
|
473 |
msgid "Themes"
|
474 |
msgstr ""
|
475 |
|
476 |
+
#: bws_menu.php:584
|
477 |
msgid "All"
|
478 |
msgstr ""
|
479 |
|
480 |
+
#: bws_menu.php:585
|
481 |
#, fuzzy
|
482 |
msgid "Installed"
|
483 |
msgstr "Installera %s"
|
484 |
|
485 |
+
#: bws_menu.php:586
|
486 |
#, fuzzy
|
487 |
msgid "Recommended"
|
488 |
msgstr "Rekommenderade tillägg"
|
489 |
|
490 |
+
#: bws_menu.php:590
|
491 |
msgid "Installed plugins"
|
492 |
msgstr "Installerade tillägg"
|
493 |
|
494 |
+
#: bws_menu.php:622
|
495 |
+
#: bws_menu.php:671
|
496 |
msgid "Settings"
|
497 |
msgstr "Inställningar"
|
498 |
|
499 |
+
#: bws_menu.php:643
|
500 |
+
#: bws_menu.php:700
|
501 |
#, fuzzy
|
502 |
msgid "Activate this plugin"
|
503 |
msgstr "Aktiverade tillägg"
|
504 |
|
505 |
+
#: bws_menu.php:658
|
506 |
+
#: bws_menu.php:688
|
507 |
+
#: bws_menu.php:734
|
508 |
msgid "Go"
|
509 |
msgstr ""
|
510 |
|
511 |
+
#: bws_menu.php:662
|
512 |
+
#: bws_menu.php:692
|
513 |
+
#: bws_menu.php:738
|
514 |
msgid "DONATE"
|
515 |
msgstr ""
|
516 |
|
517 |
+
#: bws_menu.php:708
|
518 |
msgid "Recommended plugins"
|
519 |
msgstr "Rekommenderade tillägg"
|
520 |
|
521 |
+
#: bws_menu.php:746
|
522 |
#, fuzzy
|
523 |
msgid "Install now"
|
524 |
msgstr "Установить сейчас"
|
525 |
|
526 |
+
#: bws_menu.php:767
|
527 |
msgid "Try again"
|
528 |
msgstr ""
|
529 |
|
530 |
+
#: bws_menu.php:785
|
531 |
#, php-format
|
532 |
msgid "Preview “%s”"
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: bws_menu.php:816
|
536 |
#, php-format
|
537 |
msgid "Install %s"
|
538 |
msgstr "Installera %s"
|
539 |
|
540 |
+
#: bws_menu.php:816
|
541 |
msgid "Install Now"
|
542 |
msgstr "Установить сейчас"
|
543 |
|
544 |
+
#: bws_menu.php:819
|
545 |
#, php-format
|
546 |
msgid "Update to version %s"
|
547 |
msgstr ""
|
548 |
|
549 |
+
#: bws_menu.php:819
|
550 |
msgid "Update"
|
551 |
msgstr ""
|
552 |
|
553 |
+
#: bws_menu.php:826
|
554 |
#, php-format
|
555 |
msgid "Preview %s"
|
556 |
msgstr ""
|
557 |
|
558 |
+
#: bws_menu.php:826
|
559 |
msgid "Preview"
|
560 |
msgstr ""
|
561 |
|
562 |
+
#: bws_menu.php:832
|
563 |
+
#: bws_menu.php:864
|
564 |
#, php-format
|
565 |
msgid "By %s"
|
566 |
msgstr ""
|
567 |
|
568 |
+
#: bws_menu.php:838
|
569 |
msgid "Details"
|
570 |
msgstr ""
|
571 |
|
572 |
+
#: bws_menu.php:870
|
573 |
#, fuzzy
|
574 |
msgid "Already Installed"
|
575 |
msgstr "Installera %s"
|
576 |
|
577 |
+
#: bws_menu.php:886
|
578 |
msgid "Environment"
|
579 |
msgstr "Miljövariabler"
|
580 |
|
581 |
+
#: bws_menu.php:897
|
582 |
msgid "Active Plugins"
|
583 |
msgstr "Aktiverade tillägg"
|
584 |
|
585 |
+
#: bws_menu.php:910
|
586 |
msgid "Inactive Plugins"
|
587 |
msgstr "Inaktiverade tillägg"
|
588 |
|
589 |
+
#: bws_menu.php:926
|
590 |
msgid "Send to support"
|
591 |
msgstr "Skicka till support"
|
592 |
|
593 |
+
#: bws_menu.php:933
|
594 |
msgid "Send to custom email »"
|
595 |
msgstr "Skicka till anpassad epost »"
|
596 |
|
756 |
#~ msgid "three"
|
757 |
#~ msgstr "tre"
|
758 |
|
|
|
|
|
|
|
759 |
#~ msgid "five"
|
760 |
#~ msgstr "fem"
|
761 |
|
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"
|
@@ -16,536 +16,577 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: bws_functions.php:
|
20 |
msgid "requires"
|
21 |
msgstr "потребує"
|
22 |
|
23 |
-
#: bws_functions.php:
|
24 |
-
msgid ""
|
25 |
-
"
|
26 |
-
"try again."
|
27 |
-
msgstr ""
|
28 |
-
"чи вище, тому його було деактивовано! Будь ласка оновіть WordPress та "
|
29 |
-
"спробуйте ще раз."
|
30 |
|
31 |
-
#: bws_functions.php:
|
32 |
msgid "Back to the WordPress"
|
33 |
msgstr "Повернутися на WordPress на"
|
34 |
|
35 |
-
#: bws_functions.php:
|
36 |
msgid "Plugins page"
|
37 |
msgstr "Сторінку Плагінів"
|
38 |
|
39 |
-
#: bws_functions.php:
|
40 |
-
msgid "Learn More"
|
41 |
-
msgstr "Дізнатись більше"
|
42 |
-
|
43 |
-
#: bws_functions.php:137
|
44 |
msgid "It’s time to upgrade your"
|
45 |
msgstr "Настав час модернізувати Ваш"
|
46 |
|
47 |
-
#: bws_functions.php:
|
48 |
msgid "to"
|
49 |
msgstr "до"
|
50 |
|
51 |
-
#: bws_functions.php:
|
52 |
msgid "version!"
|
53 |
msgstr "версії!"
|
54 |
|
55 |
-
#: bws_functions.php:
|
56 |
msgid "Extend standard plugin functionality with new great options."
|
57 |
msgstr "Розширює можливості стандартного функціоналу плагіна."
|
58 |
|
59 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
60 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
61 |
-
msgstr ""
|
62 |
-
"Якщо вам сподобався плагін, будь ласка, поставте нам 5 зірочок на WordPress"
|
63 |
|
64 |
-
#: bws_functions.php:
|
65 |
msgid "Rate the plugin"
|
66 |
msgstr "Оцінити плагін"
|
67 |
|
68 |
-
#: bws_functions.php:
|
69 |
msgid "If there is something wrong about it, please contact us"
|
70 |
msgstr "Якщо щось не так, будь ласка, повідомте нам"
|
71 |
|
72 |
-
#: bws_functions.php:
|
|
|
73 |
msgid "Wrong license key"
|
74 |
msgstr "Невірний ключ ліцензії"
|
75 |
|
76 |
-
#: bws_functions.php:
|
77 |
-
|
78 |
-
|
79 |
-
"please contact us"
|
80 |
-
msgstr ""
|
81 |
-
"Щось не так, спробуйте пізніше. Якщо помилка повториться, будь ласка, "
|
82 |
-
"повідомте нам"
|
83 |
|
84 |
-
#: bws_functions.php:
|
|
|
|
|
85 |
msgid "We are sorry for inconvenience."
|
86 |
msgstr "Просимо вибачення за незручності."
|
87 |
|
88 |
-
#: bws_functions.php:
|
89 |
msgid "This license key is bind to another site"
|
90 |
msgstr "Цей ліцензійний ключ прив'язано до іншого сайту"
|
91 |
|
92 |
-
#: bws_functions.php:
|
93 |
-
|
94 |
-
"Unfortunately, you have exceeded the number of available tries per day. "
|
95 |
-
"
|
96 |
-
msgstr ""
|
97 |
-
"На жаль, ви перевищили кількість доступних спроб на день. Будь ласка, "
|
98 |
-
"завантажте плагін вручну"
|
99 |
|
100 |
-
#: bws_functions.php:
|
101 |
-
msgid ""
|
102 |
-
"
|
103 |
-
"support and plugin updates you should extend it in your"
|
104 |
-
msgstr ""
|
105 |
-
"На жаль, ваша ліцензія скінчилась. Для того, щоб і надалі отримувати "
|
106 |
-
"першочергову техпідтримку і оновлення, будь ласка, продовжте ліцензію"
|
107 |
|
108 |
-
#: bws_functions.php:
|
109 |
-
msgid ""
|
110 |
-
"
|
111 |
-
"Trial license can be installed only once."
|
112 |
-
msgstr ""
|
113 |
-
"На жаль, PRO ліцензія уже використовувалась на цьому домені. Тріал PRO "
|
114 |
-
"версії плагіну можна використати лише один раз"
|
115 |
|
116 |
-
#: bws_functions.php:
|
|
|
|
|
117 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
118 |
-
msgstr ""
|
119 |
-
"Помилка при завантаженні zip-архіву. Будь ласка, завантажте плагін вручну"
|
120 |
|
121 |
-
#: bws_functions.php:
|
122 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
123 |
msgstr "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну"
|
124 |
|
125 |
-
#: bws_functions.php:
|
126 |
-
msgid ""
|
127 |
-
"
|
128 |
-
"plugin manually"
|
129 |
-
msgstr ""
|
130 |
-
"Ваш сервер не підтримує формати Zip і Phar. Будь ласка, завантажте плагін "
|
131 |
-
"вручну"
|
132 |
|
133 |
-
#: bws_functions.php:
|
134 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
135 |
-
msgstr ""
|
136 |
-
"Немає доступу до теки завантажень WordPress. Будь ласка, завантажте плагін "
|
137 |
-
"вручну"
|
138 |
|
139 |
-
#: bws_functions.php:
|
140 |
-
msgid ""
|
141 |
-
"
|
142 |
-
"sorry for inconvenience."
|
143 |
-
msgstr ""
|
144 |
-
"Виникли певні проблеми. Спробуйте ще раз пізніше або завантажте плагін "
|
145 |
-
"вручну. Просимо вібачення за незручності."
|
146 |
|
147 |
-
#: bws_functions.php:
|
148 |
msgid "Please, enter Your license key"
|
149 |
msgstr "Будь ласка, впишіть ваш ліцензійний ключ"
|
150 |
|
151 |
-
#: bws_functions.php:
|
152 |
-
msgid ""
|
153 |
-
"Congratulations! The PRO version of the plugin is successfully download and "
|
154 |
-
"activated."
|
155 |
msgstr "Вітаємо! PRO версію плагіну успішно завантажено та активовано."
|
156 |
|
157 |
-
#: bws_functions.php:
|
|
|
158 |
msgid "Please, go to"
|
159 |
msgstr "Будь ласка, перейдіть на"
|
160 |
|
161 |
-
#: bws_functions.php:
|
|
|
162 |
msgid "the setting page"
|
163 |
msgstr "сторінку установок"
|
164 |
|
165 |
-
#: bws_functions.php:
|
|
|
166 |
msgid "You will be redirected automatically in 5 seconds."
|
167 |
msgstr "Вас буде перенаправлено автоматично через 5 секунд."
|
168 |
|
169 |
-
#: bws_functions.php:
|
170 |
msgid "You can download and activate"
|
171 |
msgstr "Ви можете завантажити та активувати"
|
172 |
|
173 |
-
#: bws_functions.php:
|
174 |
msgid "version of this plugin by entering Your license key."
|
175 |
msgstr "версію цього плагіну, якщо впишете ваш ліцензійний ключ."
|
176 |
|
177 |
-
#: bws_functions.php:
|
178 |
-
|
179 |
-
"You can find your license key on your personal page Client area, by clicking "
|
180 |
-
"
|
181 |
-
msgstr ""
|
182 |
-
"Ви можете знайти ваш ліцензійний ключ на вашій персональній сторінці у "
|
183 |
-
"Client area, перейшовши за посиланням"
|
184 |
|
185 |
-
#: bws_functions.php:
|
|
|
186 |
msgid "(your username is the email you specify when purchasing the product)."
|
187 |
msgstr "(ваше ім'я - це емейл, який ви вказували при купівлі плагіну)"
|
188 |
|
189 |
-
#: bws_functions.php:
|
190 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
191 |
msgid "Activate"
|
192 |
msgstr "Активувати"
|
193 |
|
194 |
-
#: bws_functions.php:
|
195 |
-
|
196 |
-
|
197 |
-
"
|
198 |
-
msgstr ""
|
199 |
-
"Даний ліцензійний ключ дійсний, але строк вашої ліцензії витік. Якщо ви "
|
200 |
-
"хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
|
201 |
|
202 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
203 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
204 |
msgstr "На жаль, ви перевищили кількість допустимих спроб."
|
205 |
|
206 |
-
#: bws_functions.php:
|
207 |
-
msgid "
|
208 |
-
msgstr "
|
|
|
|
|
|
|
|
|
209 |
|
210 |
-
#: bws_functions.php:
|
211 |
msgid "The license key is valid."
|
212 |
msgstr "Ліцензійний ключ дійсний."
|
213 |
|
214 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
215 |
msgid "Please, enter your license key"
|
216 |
msgstr "Будь ласка, введіть ваш ліцензійний ключ"
|
217 |
|
218 |
-
#: bws_functions.php:
|
219 |
-
msgid ""
|
220 |
-
"
|
221 |
-
"field below. You can find your license key on your personal page - Client "
|
222 |
-
"area - on our website"
|
223 |
-
msgstr ""
|
224 |
-
"При необхідності ви можете перевірити правильність вашого ліцензійного ключа "
|
225 |
-
"або знову ввести його у полі, що знаходиться нижче. Ви можете знайти свій "
|
226 |
-
"ліцензійний ключ на вашій персональній сторінці - Client area - на нашому "
|
227 |
-
"сайті."
|
228 |
|
229 |
-
#: bws_functions.php:
|
230 |
-
msgid ""
|
231 |
-
"(
|
232 |
-
"necessary, please submit \"Lost your password?\" request."
|
233 |
-
msgstr ""
|
234 |
-
"(ім'я користувача - це електронна адреса, яку ви вказуєте при купівлі "
|
235 |
-
"продукту). При необхідності, будь ласка, відправте запит на відновлення "
|
236 |
-
"вашого паролю."
|
237 |
|
238 |
-
#: bws_functions.php:
|
239 |
msgid "Check license key"
|
240 |
msgstr "Перевірте ліцензійний ключ"
|
241 |
|
242 |
-
#: bws_functions.php:
|
243 |
-
msgid ""
|
244 |
-
"WARNING: We have noticed illegal use of our plugin by you. We strongly "
|
245 |
-
"recommend you to solve the problem within 24 hours, otherwise the plugin "
|
246 |
-
"will be deactivated. Please go to your personal"
|
247 |
msgstr ""
|
248 |
-
"Застереження: Ми помітили, що ви нелегально використовуєте наш плагін. Ми "
|
249 |
-
"радимо вам вирішити цю проблему протягом доби, у противному разі плагін буде "
|
250 |
-
"деактивовано. Будь ласка, зайдіть на вашу персональну сторінку"
|
251 |
|
252 |
-
#: bws_functions.php:
|
253 |
-
|
254 |
-
"
|
255 |
-
"
|
256 |
-
|
257 |
-
|
258 |
-
"
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
"Your license has expired. To continue getting top-priority support and "
|
263 |
-
"
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
#:
|
269 |
-
#: bws_menu.php:
|
|
|
|
|
270 |
msgid "Learn more"
|
271 |
msgstr "Дізнатись більше"
|
272 |
|
273 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
274 |
msgid "You license for"
|
275 |
msgstr "Ваша ліцензія для"
|
276 |
|
277 |
-
#: bws_functions.php:
|
278 |
msgid "expires on"
|
279 |
msgstr "витікає"
|
280 |
|
281 |
-
#: bws_functions.php:
|
282 |
msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
283 |
-
msgstr ""
|
284 |
-
"та ви більше не будете оримувати першочергову технічну підтримку та "
|
285 |
-
"оновлення."
|
286 |
|
287 |
-
#: bws_functions.php:
|
288 |
msgid "Close"
|
289 |
msgstr "Закрити"
|
290 |
|
291 |
-
#: bws_menu.php:
|
292 |
msgid "Not set"
|
293 |
msgstr "Не задано"
|
294 |
|
295 |
-
#: bws_menu.php:
|
|
|
296 |
msgid "On"
|
297 |
msgstr "Увімк."
|
298 |
|
299 |
-
#: bws_menu.php:
|
|
|
300 |
msgid "Off"
|
301 |
msgstr "Вимк."
|
302 |
|
303 |
-
#: bws_menu.php:
|
304 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
|
|
305 |
msgid "N/A"
|
306 |
msgstr "Невідомо"
|
307 |
|
308 |
-
#: bws_menu.php:
|
309 |
msgid " Mb"
|
310 |
msgstr "Мб"
|
311 |
|
312 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
313 |
msgid "Yes"
|
314 |
msgstr "Так"
|
315 |
|
316 |
-
#: bws_menu.php:
|
|
|
|
|
|
|
317 |
msgid "No"
|
318 |
msgstr "Ні"
|
319 |
|
320 |
-
#: bws_menu.php:
|
321 |
msgid "Operating System"
|
322 |
msgstr "Операційна система"
|
323 |
|
324 |
-
#: bws_menu.php:
|
325 |
msgid "Server"
|
326 |
msgstr "Тип серверу"
|
327 |
|
328 |
-
#: bws_menu.php:
|
329 |
msgid "Memory usage"
|
330 |
msgstr "Пам’яті використано"
|
331 |
|
332 |
-
#: bws_menu.php:
|
333 |
msgid "MYSQL Version"
|
334 |
msgstr "Версія MYSQL"
|
335 |
|
336 |
-
#: bws_menu.php:
|
337 |
msgid "SQL Mode"
|
338 |
msgstr "Режим SQL"
|
339 |
|
340 |
-
#: bws_menu.php:
|
341 |
msgid "PHP Version"
|
342 |
msgstr "Версія PHP"
|
343 |
|
344 |
-
#: bws_menu.php:
|
345 |
msgid "PHP Safe Mode"
|
346 |
msgstr "PHP Безпечний режим"
|
347 |
|
348 |
-
#: bws_menu.php:
|
349 |
msgid "PHP Allow URL fopen"
|
350 |
msgstr "Дозволити PHP URL fopen"
|
351 |
|
352 |
-
#: bws_menu.php:
|
353 |
msgid "PHP Memory Limit"
|
354 |
msgstr "Ліміт пам’яті"
|
355 |
|
356 |
-
#: bws_menu.php:
|
357 |
msgid "PHP Max Upload Size"
|
358 |
msgstr "Макс. розмір файлу, що завантажується"
|
359 |
|
360 |
-
#: bws_menu.php:
|
361 |
msgid "PHP Max Post Size"
|
362 |
msgstr "Макс. розмір посту"
|
363 |
|
364 |
-
#: bws_menu.php:
|
365 |
msgid "PHP Max Script Execute Time"
|
366 |
msgstr "Макс. час виконання сценарію"
|
367 |
|
368 |
-
#: bws_menu.php:
|
369 |
msgid "PHP Exif support"
|
370 |
msgstr "Підтримка PHP Exif"
|
371 |
|
372 |
-
#: bws_menu.php:
|
373 |
msgid "PHP IPTC support"
|
374 |
msgstr "Підтримка PHP IPTC"
|
375 |
|
376 |
-
#: bws_menu.php:
|
377 |
msgid "PHP XML support"
|
378 |
msgstr "Підтримка PHP XML"
|
379 |
|
380 |
-
#: bws_menu.php:
|
381 |
msgid "Site URL"
|
382 |
msgstr "Адреса сайту"
|
383 |
|
384 |
-
#: bws_menu.php:
|
385 |
msgid "Home URL"
|
386 |
msgstr "Адреса домашньої сторінки"
|
387 |
|
388 |
-
#: bws_menu.php:
|
389 |
msgid "WordPress Version"
|
390 |
msgstr "Версія WordPress"
|
391 |
|
392 |
-
#: bws_menu.php:
|
393 |
msgid "WordPress DB Version"
|
394 |
msgstr "Версія бази даних WordPress"
|
395 |
|
396 |
-
#: bws_menu.php:
|
397 |
msgid "Multisite"
|
398 |
msgstr "Мультисайт"
|
399 |
|
400 |
-
#: bws_menu.php:
|
401 |
msgid "Active Theme"
|
402 |
msgstr "Активна тема"
|
403 |
|
404 |
-
#: bws_menu.php:
|
405 |
msgid "Please enter a valid email address."
|
406 |
msgstr "Будь ласка, введіть коректний емейл."
|
407 |
|
408 |
-
#: bws_menu.php:
|
409 |
msgid "Email with system info is sent to "
|
410 |
msgstr "Емейл з системною інформацією надіслано на"
|
411 |
|
412 |
-
#: bws_menu.php:
|
413 |
msgid "Thank you for contacting us."
|
414 |
msgstr "Дякуємо, що звернулись до нас."
|
415 |
|
416 |
-
#: bws_menu.php:
|
417 |
msgid "Sorry, email message could not be delivered."
|
418 |
msgstr "Вибачте, ваше емейл не може бути доставлено"
|
419 |
|
420 |
-
#: bws_menu.php:
|
421 |
msgid "Need help?"
|
422 |
msgstr "Потрібна допомога?"
|
423 |
|
424 |
-
#: bws_menu.php:
|
425 |
msgid "Client area"
|
426 |
msgstr "Клієнтам"
|
427 |
|
428 |
-
#: bws_menu.php:
|
|
|
429 |
msgid "System status"
|
430 |
msgstr "Системна інформація"
|
431 |
|
432 |
-
#: bws_menu.php:
|
433 |
msgid "Plugins"
|
434 |
msgstr "Плагіни"
|
435 |
|
436 |
-
#: bws_menu.php:
|
437 |
msgid "Themes"
|
438 |
msgstr "Теми"
|
439 |
|
440 |
-
#: bws_menu.php:
|
441 |
msgid "All"
|
442 |
msgstr "Всі"
|
443 |
|
444 |
-
#: bws_menu.php:
|
445 |
msgid "Installed"
|
446 |
msgstr "Встановлені"
|
447 |
|
448 |
-
#: bws_menu.php:
|
449 |
msgid "Recommended"
|
450 |
msgstr "Рекомендовані "
|
451 |
|
452 |
-
#: bws_menu.php:
|
453 |
msgid "Installed plugins"
|
454 |
msgstr "Встановлені плагіни"
|
455 |
|
456 |
-
#: bws_menu.php:
|
|
|
457 |
msgid "Settings"
|
458 |
msgstr "Налаштування"
|
459 |
|
460 |
-
#: bws_menu.php:
|
|
|
461 |
msgid "Activate this plugin"
|
462 |
msgstr "Активувати плагін"
|
463 |
|
464 |
-
#: bws_menu.php:
|
|
|
|
|
465 |
msgid "Go"
|
466 |
msgstr "Перейти"
|
467 |
|
468 |
-
#: bws_menu.php:
|
|
|
|
|
469 |
msgid "DONATE"
|
470 |
msgstr "Підтримати нас"
|
471 |
|
472 |
-
#: bws_menu.php:
|
473 |
msgid "Recommended plugins"
|
474 |
msgstr "Рекомендовані плагіни"
|
475 |
|
476 |
-
#: bws_menu.php:
|
477 |
msgid "Install now"
|
478 |
msgstr "Встановити"
|
479 |
|
480 |
-
#: bws_menu.php:
|
481 |
msgid "Try again"
|
482 |
msgstr "Спробувати ще раз"
|
483 |
|
484 |
-
#: bws_menu.php:
|
485 |
#, php-format
|
486 |
msgid "Preview “%s”"
|
487 |
msgstr "Попередній перегляд “%s”"
|
488 |
|
489 |
-
#: bws_menu.php:
|
490 |
#, php-format
|
491 |
msgid "Install %s"
|
492 |
msgstr "Встановити %s"
|
493 |
|
494 |
-
#: bws_menu.php:
|
495 |
msgid "Install Now"
|
496 |
msgstr "Встановити"
|
497 |
|
498 |
-
#: bws_menu.php:
|
499 |
#, php-format
|
500 |
msgid "Update to version %s"
|
501 |
msgstr "Оновити до версії %s"
|
502 |
|
503 |
-
#: bws_menu.php:
|
504 |
msgid "Update"
|
505 |
msgstr "Оновити"
|
506 |
|
507 |
-
#: bws_menu.php:
|
508 |
#, php-format
|
509 |
msgid "Preview %s"
|
510 |
msgstr "Попередній перегляд %s"
|
511 |
|
512 |
-
#: bws_menu.php:
|
513 |
msgid "Preview"
|
514 |
msgstr "Попередній перегляд"
|
515 |
|
516 |
-
#: bws_menu.php:
|
|
|
517 |
#, php-format
|
518 |
msgid "By %s"
|
519 |
msgstr "За %s"
|
520 |
|
521 |
-
#: bws_menu.php:
|
522 |
msgid "Details"
|
523 |
msgstr "Деталі"
|
524 |
|
525 |
-
#: bws_menu.php:
|
526 |
msgid "Already Installed"
|
527 |
msgstr "Уже встановлено %s"
|
528 |
|
529 |
-
#: bws_menu.php:
|
530 |
msgid "Environment"
|
531 |
msgstr "Системне оточення"
|
532 |
|
533 |
-
#: bws_menu.php:
|
534 |
msgid "Active Plugins"
|
535 |
msgstr "Активні плагіни"
|
536 |
|
537 |
-
#: bws_menu.php:
|
538 |
msgid "Inactive Plugins"
|
539 |
msgstr "Не активні плагіни"
|
540 |
|
541 |
-
#: bws_menu.php:
|
542 |
msgid "Send to support"
|
543 |
msgstr "Відправити службі тех. підтримки"
|
544 |
|
545 |
-
#: bws_menu.php:
|
546 |
msgid "Send to custom email »"
|
547 |
msgstr "Відправити на електронну адресу »"
|
548 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
549 |
#~ msgid "Pro plugins"
|
550 |
#~ msgstr "Плагіни про-версії"
|
551 |
|
@@ -707,9 +748,6 @@ msgstr "Відправити на електронну адресу »"
|
|
707 |
#~ msgid "three"
|
708 |
#~ msgstr "три"
|
709 |
|
710 |
-
#~ msgid "four"
|
711 |
-
#~ msgstr "четыре"
|
712 |
-
|
713 |
#~ msgid "five"
|
714 |
#~ msgstr "пять"
|
715 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-05-11 14:14+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-05-11 14:15+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"
|
16 |
"X-Generator: Poedit 1.5.4\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: bws_functions.php:89
|
20 |
msgid "requires"
|
21 |
msgstr "потребує"
|
22 |
|
23 |
+
#: bws_functions.php:91
|
24 |
+
msgid "or higher, that is why it has been deactivated! Please upgrade WordPress and try again."
|
25 |
+
msgstr "чи вище, тому його було деактивовано! Будь ласка оновіть WordPress та спробуйте ще раз."
|
|
|
|
|
|
|
|
|
26 |
|
27 |
+
#: bws_functions.php:92
|
28 |
msgid "Back to the WordPress"
|
29 |
msgstr "Повернутися на WordPress на"
|
30 |
|
31 |
+
#: bws_functions.php:94
|
32 |
msgid "Plugins page"
|
33 |
msgstr "Сторінку Плагінів"
|
34 |
|
35 |
+
#: bws_functions.php:151
|
|
|
|
|
|
|
|
|
36 |
msgid "It’s time to upgrade your"
|
37 |
msgstr "Настав час модернізувати Ваш"
|
38 |
|
39 |
+
#: bws_functions.php:151
|
40 |
msgid "to"
|
41 |
msgstr "до"
|
42 |
|
43 |
+
#: bws_functions.php:151
|
44 |
msgid "version!"
|
45 |
msgstr "версії!"
|
46 |
|
47 |
+
#: bws_functions.php:152
|
48 |
msgid "Extend standard plugin functionality with new great options."
|
49 |
msgstr "Розширює можливості стандартного функціоналу плагіна."
|
50 |
|
51 |
+
#: bws_functions.php:155
|
52 |
+
#: bws_functions.php:542
|
53 |
+
msgid "Learn More"
|
54 |
+
msgstr "Дізнатись більше"
|
55 |
+
|
56 |
+
#: bws_functions.php:172
|
57 |
msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
58 |
+
msgstr "Якщо вам сподобався плагін, будь ласка, поставте нам 5 зірочок на WordPress"
|
|
|
59 |
|
60 |
+
#: bws_functions.php:173
|
61 |
msgid "Rate the plugin"
|
62 |
msgstr "Оцінити плагін"
|
63 |
|
64 |
+
#: bws_functions.php:176
|
65 |
msgid "If there is something wrong about it, please contact us"
|
66 |
msgstr "Якщо щось не так, будь ласка, повідомте нам"
|
67 |
|
68 |
+
#: bws_functions.php:193
|
69 |
+
#: bws_functions.php:229
|
70 |
msgid "Wrong license key"
|
71 |
msgstr "Невірний ключ ліцензії"
|
72 |
|
73 |
+
#: bws_functions.php:223
|
74 |
+
#: bws_functions.php:455
|
75 |
+
#: bws_functions.php:506
|
76 |
+
msgid "Something went wrong. Please try again later. If the error appears again, please contact us"
|
77 |
+
msgstr "Щось не так, спробуйте пізніше. Якщо помилка повториться, будь ласка, повідомте нам"
|
|
|
|
|
78 |
|
79 |
+
#: bws_functions.php:223
|
80 |
+
#: bws_functions.php:455
|
81 |
+
#: bws_functions.php:506
|
82 |
msgid "We are sorry for inconvenience."
|
83 |
msgstr "Просимо вибачення за незручності."
|
84 |
|
85 |
+
#: bws_functions.php:231
|
86 |
msgid "This license key is bind to another site"
|
87 |
msgstr "Цей ліцензійний ключ прив'язано до іншого сайту"
|
88 |
|
89 |
+
#: bws_functions.php:233
|
90 |
+
#: bws_functions.php:365
|
91 |
+
msgid "Unfortunately, you have exceeded the number of available tries per day. Please, upload the plugin manually."
|
92 |
+
msgstr "На жаль, ви перевищили кількість доступних спроб на день. Будь ласка, завантажте плагін вручну"
|
|
|
|
|
|
|
93 |
|
94 |
+
#: bws_functions.php:235
|
95 |
+
msgid "Unfortunately, Your license has expired. To continue getting top-priority support and plugin updates you should extend it in your"
|
96 |
+
msgstr "На жаль, ваша ліцензія скінчилась. Для того, щоб і надалі отримувати першочергову техпідтримку і оновлення, будь ласка, продовжте ліцензію"
|
|
|
|
|
|
|
|
|
97 |
|
98 |
+
#: bws_functions.php:237
|
99 |
+
msgid "Unfortunately, the PRO licence was already installed to this domain. The PRO Trial license can be installed only once."
|
100 |
+
msgstr "На жаль, PRO ліцензія уже використовувалась на цьому домені. Тріал PRO версії плагіну можна використати лише один раз"
|
|
|
|
|
|
|
|
|
101 |
|
102 |
+
#: bws_functions.php:248
|
103 |
+
#: bws_functions.php:270
|
104 |
+
#: bws_functions.php:292
|
105 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
106 |
+
msgstr "Помилка при завантаженні zip-архіву. Будь ласка, завантажте плагін вручну"
|
|
|
107 |
|
108 |
+
#: bws_functions.php:260
|
109 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
110 |
msgstr "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну"
|
111 |
|
112 |
+
#: bws_functions.php:266
|
113 |
+
msgid "Your server does not support either ZipArchive or Phar. Please, upload the plugin manually"
|
114 |
+
msgstr "Ваш сервер не підтримує формати Zip і Phar. Будь ласка, завантажте плагін вручну"
|
|
|
|
|
|
|
|
|
115 |
|
116 |
+
#: bws_functions.php:273
|
117 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
118 |
+
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"
|
126 |
msgstr "Будь ласка, впишіть ваш ліцензійний ключ"
|
127 |
|
128 |
+
#: bws_functions.php:338
|
129 |
+
msgid "Congratulations! The PRO version of the plugin is successfully download and activated."
|
|
|
|
|
130 |
msgstr "Вітаємо! PRO версію плагіну успішно завантажено та активовано."
|
131 |
|
132 |
+
#: bws_functions.php:340
|
133 |
+
#: bws_functions.php:422
|
134 |
msgid "Please, go to"
|
135 |
msgstr "Будь ласка, перейдіть на"
|
136 |
|
137 |
+
#: bws_functions.php:340
|
138 |
+
#: bws_functions.php:422
|
139 |
msgid "the setting page"
|
140 |
msgstr "сторінку установок"
|
141 |
|
142 |
+
#: bws_functions.php:341
|
143 |
+
#: bws_functions.php:423
|
144 |
msgid "You will be redirected automatically in 5 seconds."
|
145 |
msgstr "Вас буде перенаправлено автоматично через 5 секунд."
|
146 |
|
147 |
+
#: bws_functions.php:346
|
148 |
msgid "You can download and activate"
|
149 |
msgstr "Ви можете завантажити та активувати"
|
150 |
|
151 |
+
#: bws_functions.php:348
|
152 |
msgid "version of this plugin by entering Your license key."
|
153 |
msgstr "версію цього плагіну, якщо впишете ваш ліцензійний ключ."
|
154 |
|
155 |
+
#: bws_functions.php:350
|
156 |
+
#: bws_functions.php:391
|
157 |
+
msgid "You can find your license key on your personal page Client area, by clicking on the link"
|
158 |
+
msgstr "Ви можете знайти ваш ліцензійний ключ на вашій персональній сторінці у Client area, перейшовши за посиланням"
|
|
|
|
|
|
|
159 |
|
160 |
+
#: bws_functions.php:352
|
161 |
+
#: bws_functions.php:393
|
162 |
msgid "(your username is the email you specify when purchasing the product)."
|
163 |
msgstr "(ваше ім'я - це емейл, який ви вказували при купівлі плагіну)"
|
164 |
|
165 |
+
#: bws_functions.php:356
|
166 |
+
msgid "or"
|
167 |
+
msgstr "або"
|
168 |
+
|
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:643
|
179 |
+
#: bws_menu.php:700
|
180 |
msgid "Activate"
|
181 |
msgstr "Активувати"
|
182 |
|
183 |
+
#: bws_functions.php:388
|
184 |
+
#: bws_functions.php:481
|
185 |
+
#, php-format
|
186 |
+
msgid "In order to continue using the plugin it is necessary to buy a %s license."
|
187 |
+
msgstr "Щоб продовжити користуватись плагіном, потрібно придбати %s ліцензію."
|
|
|
|
|
188 |
|
189 |
+
#: bws_functions.php:389
|
190 |
+
msgid "After that you can activate it by entering your license key."
|
191 |
+
msgstr "Після цього ви зможете активувати його ввівши ліцензійний ключ."
|
192 |
+
|
193 |
+
#: bws_functions.php:403
|
194 |
+
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
195 |
+
msgstr "На жаль, ви перевищили кількість допустимих спроб."
|
196 |
+
|
197 |
+
#: bws_functions.php:420
|
198 |
+
msgid "Congratulations! The PRO license of the plugin is successfully activated."
|
199 |
+
msgstr "Вітаємо! PRO версію плагіну успішно активовано."
|
200 |
+
|
201 |
+
#: bws_functions.php:461
|
202 |
+
msgid "Wrong license key."
|
203 |
+
msgstr "Неправильний ліцензійний ключ."
|
204 |
+
|
205 |
+
#: bws_functions.php:463
|
206 |
+
msgid "This license key is bind to another site."
|
207 |
+
msgstr "Цей ліцензійний ключ прив'язано до іншого сайту."
|
208 |
+
|
209 |
+
#: bws_functions.php:465
|
210 |
+
msgid "This license key is valid, but Your license has expired. If you want to update our plugin in future, you should extend the license."
|
211 |
+
msgstr "Даний ліцензійний ключ дійсний, але строк вашої ліцензії витік. Якщо ви хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
|
212 |
+
|
213 |
+
#: bws_functions.php:467
|
214 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
215 |
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 "На жаль, тріал PRO версія плагіну уже встановлювалась на цей домен. Тріал PRO версію можна встановлювати лише один раз."
|
220 |
+
|
221 |
+
#: bws_functions.php:473
|
222 |
+
msgid "The PRO Trial license key is valid."
|
223 |
+
msgstr "Ключ тріал PRO версії вірний."
|
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"
|
231 |
+
msgstr "Ваша ліцензія закінчується"
|
232 |
+
|
233 |
+
#: bws_functions.php:511
|
234 |
msgid "Please, enter your license key"
|
235 |
msgstr "Будь ласка, введіть ваш ліцензійний ключ"
|
236 |
|
237 |
+
#: bws_functions.php:524
|
238 |
+
msgid "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"
|
239 |
+
msgstr "При необхідності ви можете перевірити правильність вашого ліцензійного ключа або знову ввести його у полі, що знаходиться нижче. Ви можете знайти свій ліцензійний ключ на вашій персональній сторінці - Client area - на нашому сайті."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
240 |
|
241 |
+
#: bws_functions.php:524
|
242 |
+
msgid "(your username is the email you specify when purchasing the product). If necessary, please submit \"Lost your password?\" request."
|
243 |
+
msgstr "(ім'я користувача - це електронна адреса, яку ви вказуєте при купівлі продукту). При необхідності, будь ласка, відправте запит на відновлення вашого паролю."
|
|
|
|
|
|
|
|
|
|
|
244 |
|
245 |
+
#: bws_functions.php:528
|
246 |
msgid "Check license key"
|
247 |
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"
|
260 |
+
msgstr "Увага: Термін дії тріал періоду PRO версії плагіну скінчився. Щоб продовжити користуватись плагіном, будь ласка, придбайте ліцензію PRO"
|
261 |
+
|
262 |
+
#: bws_functions.php:552
|
263 |
+
msgid "Your license has expired. To continue getting top-priority support and plugin updates you should extend it."
|
264 |
+
msgstr "Строк вашої ліцензії витік. Якщо ви хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
|
265 |
+
|
266 |
+
#: bws_functions.php:552
|
267 |
+
#: bws_functions.php:605
|
268 |
+
#: bws_menu.php:619
|
269 |
+
#: bws_menu.php:641
|
270 |
+
#: bws_menu.php:668
|
271 |
+
#: bws_menu.php:698
|
272 |
+
#: bws_menu.php:744
|
273 |
msgid "Learn more"
|
274 |
msgstr "Дізнатись більше"
|
275 |
|
276 |
+
#: bws_functions.php:562
|
277 |
+
#, php-format
|
278 |
+
msgid "Notice: You are using the PRO Trial license of %s plugin."
|
279 |
+
msgstr "Увага: Ви використовуєте тріал PRO версію плагіну %s."
|
280 |
+
|
281 |
+
#: bws_functions.php:564
|
282 |
+
msgid "Notice: You are using the PRO Trial license of plugin."
|
283 |
+
msgstr "Увага: Ви використовуєте тріал PRO версію плагіну."
|
284 |
+
|
285 |
+
#: bws_functions.php:567
|
286 |
+
msgid "The PRO Trial license will expire on"
|
287 |
+
msgstr "Тріал період PRO версії плагіну закінчується"
|
288 |
+
|
289 |
+
#: bws_functions.php:605
|
290 |
msgid "You license for"
|
291 |
msgstr "Ваша ліцензія для"
|
292 |
|
293 |
+
#: bws_functions.php:605
|
294 |
msgid "expires on"
|
295 |
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 |
+
#: bws_menu.php:456
|
306 |
msgid "Not set"
|
307 |
msgstr "Не задано"
|
308 |
|
309 |
+
#: bws_menu.php:458
|
310 |
+
#: bws_menu.php:459
|
311 |
msgid "On"
|
312 |
msgstr "Увімк."
|
313 |
|
314 |
+
#: bws_menu.php:458
|
315 |
+
#: bws_menu.php:459
|
316 |
msgid "Off"
|
317 |
msgstr "Вимк."
|
318 |
|
319 |
+
#: bws_menu.php:460
|
320 |
+
#: bws_menu.php:461
|
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:464
|
329 |
msgid " Mb"
|
330 |
msgstr "Мб"
|
331 |
|
332 |
+
#: bws_menu.php:465
|
333 |
+
#: bws_menu.php:466
|
334 |
+
#: bws_menu.php:467
|
335 |
+
#: bws_menu.php:472
|
336 |
msgid "Yes"
|
337 |
msgstr "Так"
|
338 |
|
339 |
+
#: bws_menu.php:465
|
340 |
+
#: bws_menu.php:466
|
341 |
+
#: bws_menu.php:467
|
342 |
+
#: bws_menu.php:474
|
343 |
msgid "No"
|
344 |
msgstr "Ні"
|
345 |
|
346 |
+
#: bws_menu.php:484
|
347 |
msgid "Operating System"
|
348 |
msgstr "Операційна система"
|
349 |
|
350 |
+
#: bws_menu.php:485
|
351 |
msgid "Server"
|
352 |
msgstr "Тип серверу"
|
353 |
|
354 |
+
#: bws_menu.php:486
|
355 |
msgid "Memory usage"
|
356 |
msgstr "Пам’яті використано"
|
357 |
|
358 |
+
#: bws_menu.php:487
|
359 |
msgid "MYSQL Version"
|
360 |
msgstr "Версія MYSQL"
|
361 |
|
362 |
+
#: bws_menu.php:488
|
363 |
msgid "SQL Mode"
|
364 |
msgstr "Режим SQL"
|
365 |
|
366 |
+
#: bws_menu.php:489
|
367 |
msgid "PHP Version"
|
368 |
msgstr "Версія PHP"
|
369 |
|
370 |
+
#: bws_menu.php:490
|
371 |
msgid "PHP Safe Mode"
|
372 |
msgstr "PHP Безпечний режим"
|
373 |
|
374 |
+
#: bws_menu.php:491
|
375 |
msgid "PHP Allow URL fopen"
|
376 |
msgstr "Дозволити PHP URL fopen"
|
377 |
|
378 |
+
#: bws_menu.php:492
|
379 |
msgid "PHP Memory Limit"
|
380 |
msgstr "Ліміт пам’яті"
|
381 |
|
382 |
+
#: bws_menu.php:493
|
383 |
msgid "PHP Max Upload Size"
|
384 |
msgstr "Макс. розмір файлу, що завантажується"
|
385 |
|
386 |
+
#: bws_menu.php:494
|
387 |
msgid "PHP Max Post Size"
|
388 |
msgstr "Макс. розмір посту"
|
389 |
|
390 |
+
#: bws_menu.php:495
|
391 |
msgid "PHP Max Script Execute Time"
|
392 |
msgstr "Макс. час виконання сценарію"
|
393 |
|
394 |
+
#: bws_menu.php:496
|
395 |
msgid "PHP Exif support"
|
396 |
msgstr "Підтримка PHP Exif"
|
397 |
|
398 |
+
#: bws_menu.php:497
|
399 |
msgid "PHP IPTC support"
|
400 |
msgstr "Підтримка PHP IPTC"
|
401 |
|
402 |
+
#: bws_menu.php:498
|
403 |
msgid "PHP XML support"
|
404 |
msgstr "Підтримка PHP XML"
|
405 |
|
406 |
+
#: bws_menu.php:499
|
407 |
msgid "Site URL"
|
408 |
msgstr "Адреса сайту"
|
409 |
|
410 |
+
#: bws_menu.php:500
|
411 |
msgid "Home URL"
|
412 |
msgstr "Адреса домашньої сторінки"
|
413 |
|
414 |
+
#: bws_menu.php:503
|
415 |
msgid "WordPress Version"
|
416 |
msgstr "Версія WordPress"
|
417 |
|
418 |
+
#: bws_menu.php:504
|
419 |
msgid "WordPress DB Version"
|
420 |
msgstr "Версія бази даних WordPress"
|
421 |
|
422 |
+
#: bws_menu.php:505
|
423 |
msgid "Multisite"
|
424 |
msgstr "Мультисайт"
|
425 |
|
426 |
+
#: bws_menu.php:506
|
427 |
msgid "Active Theme"
|
428 |
msgstr "Активна тема"
|
429 |
|
430 |
+
#: bws_menu.php:521
|
431 |
msgid "Please enter a valid email address."
|
432 |
msgstr "Будь ласка, введіть коректний емейл."
|
433 |
|
434 |
+
#: bws_menu.php:525
|
435 |
msgid "Email with system info is sent to "
|
436 |
msgstr "Емейл з системною інформацією надіслано на"
|
437 |
|
438 |
+
#: bws_menu.php:529
|
439 |
msgid "Thank you for contacting us."
|
440 |
msgstr "Дякуємо, що звернулись до нас."
|
441 |
|
442 |
+
#: bws_menu.php:562
|
443 |
msgid "Sorry, email message could not be delivered."
|
444 |
msgstr "Вибачте, ваше емейл не може бути доставлено"
|
445 |
|
446 |
+
#: bws_menu.php:570
|
447 |
msgid "Need help?"
|
448 |
msgstr "Потрібна допомога?"
|
449 |
|
450 |
+
#: bws_menu.php:571
|
451 |
msgid "Client area"
|
452 |
msgstr "Клієнтам"
|
453 |
|
454 |
+
#: bws_menu.php:572
|
455 |
+
#: bws_menu.php:883
|
456 |
msgid "System status"
|
457 |
msgstr "Системна інформація"
|
458 |
|
459 |
+
#: bws_menu.php:577
|
460 |
msgid "Plugins"
|
461 |
msgstr "Плагіни"
|
462 |
|
463 |
+
#: bws_menu.php:579
|
464 |
msgid "Themes"
|
465 |
msgstr "Теми"
|
466 |
|
467 |
+
#: bws_menu.php:584
|
468 |
msgid "All"
|
469 |
msgstr "Всі"
|
470 |
|
471 |
+
#: bws_menu.php:585
|
472 |
msgid "Installed"
|
473 |
msgstr "Встановлені"
|
474 |
|
475 |
+
#: bws_menu.php:586
|
476 |
msgid "Recommended"
|
477 |
msgstr "Рекомендовані "
|
478 |
|
479 |
+
#: bws_menu.php:590
|
480 |
msgid "Installed plugins"
|
481 |
msgstr "Встановлені плагіни"
|
482 |
|
483 |
+
#: bws_menu.php:622
|
484 |
+
#: bws_menu.php:671
|
485 |
msgid "Settings"
|
486 |
msgstr "Налаштування"
|
487 |
|
488 |
+
#: bws_menu.php:643
|
489 |
+
#: bws_menu.php:700
|
490 |
msgid "Activate this plugin"
|
491 |
msgstr "Активувати плагін"
|
492 |
|
493 |
+
#: bws_menu.php:658
|
494 |
+
#: bws_menu.php:688
|
495 |
+
#: bws_menu.php:734
|
496 |
msgid "Go"
|
497 |
msgstr "Перейти"
|
498 |
|
499 |
+
#: bws_menu.php:662
|
500 |
+
#: bws_menu.php:692
|
501 |
+
#: bws_menu.php:738
|
502 |
msgid "DONATE"
|
503 |
msgstr "Підтримати нас"
|
504 |
|
505 |
+
#: bws_menu.php:708
|
506 |
msgid "Recommended plugins"
|
507 |
msgstr "Рекомендовані плагіни"
|
508 |
|
509 |
+
#: bws_menu.php:746
|
510 |
msgid "Install now"
|
511 |
msgstr "Встановити"
|
512 |
|
513 |
+
#: bws_menu.php:767
|
514 |
msgid "Try again"
|
515 |
msgstr "Спробувати ще раз"
|
516 |
|
517 |
+
#: bws_menu.php:785
|
518 |
#, php-format
|
519 |
msgid "Preview “%s”"
|
520 |
msgstr "Попередній перегляд “%s”"
|
521 |
|
522 |
+
#: bws_menu.php:816
|
523 |
#, php-format
|
524 |
msgid "Install %s"
|
525 |
msgstr "Встановити %s"
|
526 |
|
527 |
+
#: bws_menu.php:816
|
528 |
msgid "Install Now"
|
529 |
msgstr "Встановити"
|
530 |
|
531 |
+
#: bws_menu.php:819
|
532 |
#, php-format
|
533 |
msgid "Update to version %s"
|
534 |
msgstr "Оновити до версії %s"
|
535 |
|
536 |
+
#: bws_menu.php:819
|
537 |
msgid "Update"
|
538 |
msgstr "Оновити"
|
539 |
|
540 |
+
#: bws_menu.php:826
|
541 |
#, php-format
|
542 |
msgid "Preview %s"
|
543 |
msgstr "Попередній перегляд %s"
|
544 |
|
545 |
+
#: bws_menu.php:826
|
546 |
msgid "Preview"
|
547 |
msgstr "Попередній перегляд"
|
548 |
|
549 |
+
#: bws_menu.php:832
|
550 |
+
#: bws_menu.php:864
|
551 |
#, php-format
|
552 |
msgid "By %s"
|
553 |
msgstr "За %s"
|
554 |
|
555 |
+
#: bws_menu.php:838
|
556 |
msgid "Details"
|
557 |
msgstr "Деталі"
|
558 |
|
559 |
+
#: bws_menu.php:870
|
560 |
msgid "Already Installed"
|
561 |
msgstr "Уже встановлено %s"
|
562 |
|
563 |
+
#: bws_menu.php:886
|
564 |
msgid "Environment"
|
565 |
msgstr "Системне оточення"
|
566 |
|
567 |
+
#: bws_menu.php:897
|
568 |
msgid "Active Plugins"
|
569 |
msgstr "Активні плагіни"
|
570 |
|
571 |
+
#: bws_menu.php:910
|
572 |
msgid "Inactive Plugins"
|
573 |
msgstr "Не активні плагіни"
|
574 |
|
575 |
+
#: bws_menu.php:926
|
576 |
msgid "Send to support"
|
577 |
msgstr "Відправити службі тех. підтримки"
|
578 |
|
579 |
+
#: bws_menu.php:933
|
580 |
msgid "Send to custom email »"
|
581 |
msgstr "Відправити на електронну адресу »"
|
582 |
|
583 |
+
#~ msgid ""
|
584 |
+
#~ "(your username is the email you specify when purchasing the product), "
|
585 |
+
#~ "where you can make the necessary changes."
|
586 |
+
#~ msgstr ""
|
587 |
+
#~ "(ім'я користувача - це електронна адреса, яку ви вказуєте при купівлі "
|
588 |
+
#~ "продукту), де ви можете внести потрібні зміни."
|
589 |
+
|
590 |
#~ msgid "Pro plugins"
|
591 |
#~ msgstr "Плагіни про-версії"
|
592 |
|
748 |
#~ msgid "three"
|
749 |
#~ msgstr "три"
|
750 |
|
|
|
|
|
|
|
751 |
#~ msgid "five"
|
752 |
#~ msgstr "пять"
|
753 |
|
google-captcha.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Google Captcha (reCAPTCHA) by BestWebSoft
|
|
4 |
Plugin URI: http://bestwebsoft.com/products/
|
5 |
Description: Plugin Google Captcha intended to prove that the visitor is a human being and not a spam robot.
|
6 |
Author: BestWebSoft
|
7 |
-
Version: 1.
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv3 or later
|
10 |
*/
|
@@ -493,7 +493,8 @@ if ( ! function_exists( 'gglcptch_login_check' ) ) {
|
|
493 |
if ( isset( $_REQUEST['g-recaptcha-response'] ) && isset( $gglcptch_options['recaptcha_version'] ) && 'v2' == $gglcptch_options['recaptcha_version'] ) {
|
494 |
require_once( 'lib_v2/recaptchalib.php' );
|
495 |
$reCaptcha = new ReCaptcha( $privatekey );
|
496 |
-
$
|
|
|
497 |
|
498 |
if ( $resp != null && $resp->success )
|
499 |
return $user;
|
@@ -505,7 +506,9 @@ if ( ! function_exists( 'gglcptch_login_check' ) ) {
|
|
505 |
}
|
506 |
} elseif ( isset( $_POST['recaptcha_challenge_field'] ) && isset( $_POST['recaptcha_response_field'] ) ) {
|
507 |
require_once( 'lib/recaptchalib.php' );
|
508 |
-
$
|
|
|
|
|
509 |
|
510 |
if ( ! $resp->is_valid ) {
|
511 |
wp_clear_auth_cookie();
|
@@ -557,14 +560,17 @@ if ( ! function_exists( 'gglcptch_lostpassword_check' ) ) {
|
|
557 |
if ( isset( $gglcptch_options['recaptcha_version'] ) && 'v2' == $gglcptch_options['recaptcha_version'] ) {
|
558 |
require_once( 'lib_v2/recaptchalib.php' );
|
559 |
$reCaptcha = new ReCaptcha( $privatekey );
|
560 |
-
$
|
|
|
561 |
if ( $resp != null && $resp->success )
|
562 |
return;
|
563 |
else
|
564 |
wp_die( __( 'Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again.', 'google_captcha' ) );
|
565 |
} else {
|
566 |
require_once( 'lib/recaptchalib.php' );
|
567 |
-
$
|
|
|
|
|
568 |
if ( ! $resp->is_valid ) {
|
569 |
wp_die( __( 'Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again.', 'google_captcha' ) );
|
570 |
} else
|
@@ -618,14 +624,17 @@ if ( ! function_exists( 'gglcptch_captcha_check' ) ) {
|
|
618 |
if ( isset( $gglcptch_options['recaptcha_version'] ) && 'v2' == $gglcptch_options['recaptcha_version'] ) {
|
619 |
require_once( 'lib_v2/recaptchalib.php' );
|
620 |
$reCaptcha = new ReCaptcha( $privatekey );
|
621 |
-
$
|
|
|
622 |
if ( $resp != null && $resp->success )
|
623 |
echo "success";
|
624 |
else
|
625 |
echo "error";
|
626 |
} else {
|
627 |
require_once( 'lib/recaptchalib.php' );
|
628 |
-
$
|
|
|
|
|
629 |
if ( ! $resp->is_valid )
|
630 |
echo "error";
|
631 |
else
|
4 |
Plugin URI: http://bestwebsoft.com/products/
|
5 |
Description: Plugin Google Captcha intended to prove that the visitor is a human being and not a spam robot.
|
6 |
Author: BestWebSoft
|
7 |
+
Version: 1.16
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv3 or later
|
10 |
*/
|
493 |
if ( isset( $_REQUEST['g-recaptcha-response'] ) && isset( $gglcptch_options['recaptcha_version'] ) && 'v2' == $gglcptch_options['recaptcha_version'] ) {
|
494 |
require_once( 'lib_v2/recaptchalib.php' );
|
495 |
$reCaptcha = new ReCaptcha( $privatekey );
|
496 |
+
$gglcptch_g_recaptcha_response = isset( $_POST["g-recaptcha-response"] ) ? $_POST["g-recaptcha-response"] : '';
|
497 |
+
$resp = $reCaptcha->verifyResponse( $_SERVER["REMOTE_ADDR"], $gglcptch_g_recaptcha_response );
|
498 |
|
499 |
if ( $resp != null && $resp->success )
|
500 |
return $user;
|
506 |
}
|
507 |
} elseif ( isset( $_POST['recaptcha_challenge_field'] ) && isset( $_POST['recaptcha_response_field'] ) ) {
|
508 |
require_once( 'lib/recaptchalib.php' );
|
509 |
+
$gglcptch_recaptcha_challenge_field = isset( $_POST['recaptcha_challenge_field'] ) ? $_POST['recaptcha_challenge_field'] : '';
|
510 |
+
$gglcptch_recaptcha_response_field = isset( $_POST['recaptcha_response_field'] ) ? $_POST['recaptcha_response_field'] : '';
|
511 |
+
$resp = recaptcha_check_answer( $privatekey, $_SERVER['REMOTE_ADDR'], $gglcptch_recaptcha_challenge_field, $gglcptch_recaptcha_response_field );
|
512 |
|
513 |
if ( ! $resp->is_valid ) {
|
514 |
wp_clear_auth_cookie();
|
560 |
if ( isset( $gglcptch_options['recaptcha_version'] ) && 'v2' == $gglcptch_options['recaptcha_version'] ) {
|
561 |
require_once( 'lib_v2/recaptchalib.php' );
|
562 |
$reCaptcha = new ReCaptcha( $privatekey );
|
563 |
+
$gglcptch_g_recaptcha_response = isset( $_POST["g-recaptcha-response"] ) ? $_POST["g-recaptcha-response"] : '';
|
564 |
+
$resp = $reCaptcha->verifyResponse( $_SERVER["REMOTE_ADDR"], $gglcptch_g_recaptcha_response );
|
565 |
if ( $resp != null && $resp->success )
|
566 |
return;
|
567 |
else
|
568 |
wp_die( __( 'Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again.', 'google_captcha' ) );
|
569 |
} else {
|
570 |
require_once( 'lib/recaptchalib.php' );
|
571 |
+
$gglcptch_recaptcha_challenge_field = isset( $_POST['recaptcha_challenge_field'] ) ? $_POST['recaptcha_challenge_field'] : '';
|
572 |
+
$gglcptch_recaptcha_response_field = isset( $_POST['recaptcha_response_field'] ) ? $_POST['recaptcha_response_field'] : '';
|
573 |
+
$resp = recaptcha_check_answer( $privatekey, $_SERVER['REMOTE_ADDR'], $gglcptch_recaptcha_challenge_field, $gglcptch_recaptcha_response_field );
|
574 |
if ( ! $resp->is_valid ) {
|
575 |
wp_die( __( 'Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again.', 'google_captcha' ) );
|
576 |
} else
|
624 |
if ( isset( $gglcptch_options['recaptcha_version'] ) && 'v2' == $gglcptch_options['recaptcha_version'] ) {
|
625 |
require_once( 'lib_v2/recaptchalib.php' );
|
626 |
$reCaptcha = new ReCaptcha( $privatekey );
|
627 |
+
$gglcptch_g_recaptcha_response = isset( $_POST["g-recaptcha-response"] ) ? $_POST["g-recaptcha-response"] : '';
|
628 |
+
$resp = $reCaptcha->verifyResponse( $_SERVER["REMOTE_ADDR"], $gglcptch_g_recaptcha_response );
|
629 |
if ( $resp != null && $resp->success )
|
630 |
echo "success";
|
631 |
else
|
632 |
echo "error";
|
633 |
} else {
|
634 |
require_once( 'lib/recaptchalib.php' );
|
635 |
+
$gglcptch_recaptcha_challenge_field = isset( $_POST['recaptcha_challenge_field'] ) ? $_POST['recaptcha_challenge_field'] : '';
|
636 |
+
$gglcptch_recaptcha_response_field = isset( $_POST['recaptcha_response_field'] ) ? $_POST['recaptcha_response_field'] : '';
|
637 |
+
$resp = recaptcha_check_answer( $privatekey, $_SERVER['REMOTE_ADDR'], $gglcptch_recaptcha_challenge_field, $gglcptch_recaptcha_response_field );
|
638 |
if ( ! $resp->is_valid )
|
639 |
echo "error";
|
640 |
else
|
js/script.js
CHANGED
@@ -1,19 +1,21 @@
|
|
1 |
(function( $ ) {
|
2 |
$( document ).ready(function() {
|
3 |
-
$( '#recaptcha_widget_div #recaptcha_response_field' ).live( 'input paste change', function() {
|
4 |
-
$error = $( this ).parents( '#recaptcha_widget_div' ).next( '#gglcptch_error' );
|
5 |
-
if( $error.length ) {
|
6 |
-
$error.remove();
|
7 |
-
}
|
8 |
-
});
|
9 |
|
10 |
-
|
|
|
|
|
|
|
|
|
11 |
|
12 |
$( 'form' ).submit( function( e ) {
|
13 |
var $form = $( this ),
|
|
|
14 |
$captcha = $form.find( '#recaptcha_widget_div:visible' ),
|
15 |
$captcha_v2 = $form.find( '.g-recaptcha:visible' );
|
16 |
if ( $captcha.length ) {
|
|
|
|
|
|
|
17 |
$.ajax({
|
18 |
async : false,
|
19 |
cache : false,
|
@@ -27,7 +29,7 @@
|
|
27 |
recaptcha_challenge_field : $( '#recaptcha_challenge_field' ).val(),
|
28 |
recaptcha_response_field : $( '#recaptcha_response_field' ).val()
|
29 |
},
|
30 |
-
success
|
31 |
if ( data == 'error' ) {
|
32 |
if ( $captcha.next( '#gglcptch_error' ).length == 0 ) {
|
33 |
$captcha.after( '<label id="gglcptch_error">' + gglcptch_error_msg + '</label>' );
|
@@ -48,6 +50,9 @@
|
|
48 |
});
|
49 |
$( '#recaptcha_reload' ).trigger( 'click' );
|
50 |
} else if ( $captcha_v2.length ) {
|
|
|
|
|
|
|
51 |
$.ajax({
|
52 |
async : false,
|
53 |
cache : false,
|
@@ -60,7 +65,7 @@
|
|
60 |
action: 'gglcptch_captcha_check',
|
61 |
'g-recaptcha-response' : $form.find( '.g-recaptcha-response' ).val()
|
62 |
},
|
63 |
-
success
|
64 |
if ( data == 'error' ) {
|
65 |
if ( $captcha_v2.next( '#gglcptch_error' ).length == 0 ) {
|
66 |
$captcha_v2.after( '<label id="gglcptch_error">' + gglcptch_error_msg + '</label>' );
|
@@ -84,4 +89,12 @@
|
|
84 |
}
|
85 |
});
|
86 |
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
})(jQuery);
|
1 |
(function( $ ) {
|
2 |
$( document ).ready(function() {
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
|
4 |
+
if ( parseInt( $.fn.jquery ) >= 1.7 ) {
|
5 |
+
$( '#recaptcha_widget_div' ).on( 'input paste change', '#recaptcha_response_field', cleanError );
|
6 |
+
} else {
|
7 |
+
$( '#recaptcha_widget_div #recaptcha_response_field' ).live( 'input paste change', cleanError );
|
8 |
+
}
|
9 |
|
10 |
$( 'form' ).submit( function( e ) {
|
11 |
var $form = $( this ),
|
12 |
+
$gglcptch = $form.find( '.gglcptch' ),
|
13 |
$captcha = $form.find( '#recaptcha_widget_div:visible' ),
|
14 |
$captcha_v2 = $form.find( '.g-recaptcha:visible' );
|
15 |
if ( $captcha.length ) {
|
16 |
+
if ( $gglcptch.find( 'input[name="gglcptch_test_enable_js_field"]:hidden' ).length == 0 ) {
|
17 |
+
$gglcptch.append( '<input type="hidden" value="' + gglcptch_vars.nonce + '" name="gglcptch_test_enable_js_field" />' );
|
18 |
+
}
|
19 |
$.ajax({
|
20 |
async : false,
|
21 |
cache : false,
|
29 |
recaptcha_challenge_field : $( '#recaptcha_challenge_field' ).val(),
|
30 |
recaptcha_response_field : $( '#recaptcha_response_field' ).val()
|
31 |
},
|
32 |
+
success: function( data ) {
|
33 |
if ( data == 'error' ) {
|
34 |
if ( $captcha.next( '#gglcptch_error' ).length == 0 ) {
|
35 |
$captcha.after( '<label id="gglcptch_error">' + gglcptch_error_msg + '</label>' );
|
50 |
});
|
51 |
$( '#recaptcha_reload' ).trigger( 'click' );
|
52 |
} else if ( $captcha_v2.length ) {
|
53 |
+
if ( $gglcptch.find( 'input[name="gglcptch_test_enable_js_field"]:hidden' ).length == 0 ) {
|
54 |
+
$gglcptch.append( '<input type="hidden" value="' + gglcptch_vars.nonce + '" name="gglcptch_test_enable_js_field" />' );
|
55 |
+
}
|
56 |
$.ajax({
|
57 |
async : false,
|
58 |
cache : false,
|
65 |
action: 'gglcptch_captcha_check',
|
66 |
'g-recaptcha-response' : $form.find( '.g-recaptcha-response' ).val()
|
67 |
},
|
68 |
+
success: function( data ) {
|
69 |
if ( data == 'error' ) {
|
70 |
if ( $captcha_v2.next( '#gglcptch_error' ).length == 0 ) {
|
71 |
$captcha_v2.after( '<label id="gglcptch_error">' + gglcptch_error_msg + '</label>' );
|
89 |
}
|
90 |
});
|
91 |
});
|
92 |
+
|
93 |
+
function cleanError() {
|
94 |
+
$error = $( this ).parents( '#recaptcha_widget_div' ).next( '#gglcptch_error' );
|
95 |
+
if ( $error.length ) {
|
96 |
+
$error.remove();
|
97 |
+
}
|
98 |
+
}
|
99 |
+
|
100 |
})(jQuery);
|
languages/google_captcha-ar.mo
ADDED
Binary file
|
languages/google_captcha-ar.po
ADDED
@@ -0,0 +1,211 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: google_captcha\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-05-18 10:11+0300\n"
|
6 |
+
"PO-Revision-Date: 2015-05-18 10:11+0300\n"
|
7 |
+
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
+
"Language-Team: SAID MOULLA <mor0cc0@live.com >\n"
|
9 |
+
"Language: uk\n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10 >= 2 && n%10<=4 &&(n%100<10||n%100 >= 20)? 1 : 2);\n"
|
14 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Loco-Source-Locale: fr_FR\n"
|
16 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
17 |
+
"X-Poedit-Basepath: ..\n"
|
18 |
+
"X-Generator: Poedit 1.5.4\n"
|
19 |
+
"X-Loco-Parser: loco_parse_po\n"
|
20 |
+
"X-Loco-Target-Locale: uk_UA\n"
|
21 |
+
"X-Poedit-SearchPath-0: .\n"
|
22 |
+
|
23 |
+
#: google-captcha.php:32
|
24 |
+
#: google-captcha.php:230
|
25 |
+
msgid "Google Captcha Settings"
|
26 |
+
msgstr "إعدادات Google Captcha"
|
27 |
+
|
28 |
+
#: google-captcha.php:167
|
29 |
+
msgid "Site key"
|
30 |
+
msgstr "مفتاح الموقع"
|
31 |
+
|
32 |
+
#: google-captcha.php:172
|
33 |
+
msgid "Secret Key"
|
34 |
+
msgstr "المفتاح السري"
|
35 |
+
|
36 |
+
#: google-captcha.php:180
|
37 |
+
msgid "Login form"
|
38 |
+
msgstr "فورم تسجيل الدخول"
|
39 |
+
|
40 |
+
#: google-captcha.php:181
|
41 |
+
msgid "Registration form"
|
42 |
+
msgstr "فورم التسجيل"
|
43 |
+
|
44 |
+
#: google-captcha.php:182
|
45 |
+
msgid "Reset password form"
|
46 |
+
msgstr "فورم إعادة تعيين كلمة السر"
|
47 |
+
|
48 |
+
#: google-captcha.php:183
|
49 |
+
msgid "Comments form"
|
50 |
+
msgstr "فورم التعليقات"
|
51 |
+
|
52 |
+
#: google-captcha.php:198
|
53 |
+
msgid "Enter site key"
|
54 |
+
msgstr "أدخل مفتاح الموقع"
|
55 |
+
|
56 |
+
#: google-captcha.php:199
|
57 |
+
#: google-captcha.php:205
|
58 |
+
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
59 |
+
msgstr "تحذير: الكابتشا لن تعمل في حالة عدم إدخال المفاتيح."
|
60 |
+
|
61 |
+
#: google-captcha.php:204
|
62 |
+
msgid "Enter secret key"
|
63 |
+
msgstr "أدخل المفتاح السري"
|
64 |
+
|
65 |
+
#: google-captcha.php:232
|
66 |
+
#: google-captcha.php:597
|
67 |
+
#: google-captcha.php:610
|
68 |
+
msgid "Settings"
|
69 |
+
msgstr "إعدادات"
|
70 |
+
|
71 |
+
#: google-captcha.php:233
|
72 |
+
#: google-captcha.php:611
|
73 |
+
msgid "FAQ"
|
74 |
+
msgstr "أسئلة شائعة"
|
75 |
+
|
76 |
+
#: google-captcha.php:235
|
77 |
+
msgid "Notice:"
|
78 |
+
msgstr "ملاحظة :"
|
79 |
+
|
80 |
+
#: google-captcha.php:235
|
81 |
+
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
82 |
+
msgstr "تم حفظ إعدادات الإضافة بنجاح."
|
83 |
+
|
84 |
+
#: google-captcha.php:236
|
85 |
+
msgid "Settings saved"
|
86 |
+
msgstr "تم حفظ الإعدادات"
|
87 |
+
|
88 |
+
#: google-captcha.php:240
|
89 |
+
msgid "Google Captcha version 2 will not work correctly, since the option \"allow_url_fopen\" is disabled in the PHP settings of your hosting."
|
90 |
+
msgstr "النسخة الثانية من Google Captcha لن تعمل بشكل جيد، في حالة تم تعطيل الدالة \"allow_url_fopen\" في PHP الإستضافة."
|
91 |
+
|
92 |
+
#: google-captcha.php:241
|
93 |
+
msgid "Read more."
|
94 |
+
msgstr "إقرأ المزيد"
|
95 |
+
|
96 |
+
#: google-captcha.php:244
|
97 |
+
msgid "If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your post or page:"
|
98 |
+
msgstr "إذا كنت ترغب في إضافة Google Captcha إلى الفورم، فقط قم بنسخ ولصق هذا الكود في المقال أو الصفحة."
|
99 |
+
|
100 |
+
#: google-captcha.php:246
|
101 |
+
msgid "Authentication"
|
102 |
+
msgstr "المصادقة"
|
103 |
+
|
104 |
+
#: google-captcha.php:247
|
105 |
+
#, php-format
|
106 |
+
msgid "Before you are able to do something, you must to register %s here %s"
|
107 |
+
msgstr "قبل التفكير في عمل أي شيء، لابد من التسجيل %s من هنا %s"
|
108 |
+
|
109 |
+
#: google-captcha.php:248
|
110 |
+
msgid "Enter site key and secret key, that you get after registration."
|
111 |
+
msgstr "أدخل مفتاح الموقع والمفتاح السري، الذي حصلت عليه بعد التسجيل."
|
112 |
+
|
113 |
+
#: google-captcha.php:260
|
114 |
+
msgid "Options"
|
115 |
+
msgstr "خيارات"
|
116 |
+
|
117 |
+
#: google-captcha.php:263
|
118 |
+
msgid "Enable Google Captcha for:"
|
119 |
+
msgstr "تفعيل Google Captcha في كل من :"
|
120 |
+
|
121 |
+
#: google-captcha.php:273
|
122 |
+
#: google-captcha.php:276
|
123 |
+
#: google-captcha.php:280
|
124 |
+
msgid "Contact form"
|
125 |
+
msgstr "فورم الإتصال"
|
126 |
+
|
127 |
+
#: google-captcha.php:274
|
128 |
+
#: google-captcha.php:277
|
129 |
+
#: google-captcha.php:281
|
130 |
+
msgid "powered by"
|
131 |
+
msgstr "مدعوم من"
|
132 |
+
|
133 |
+
#: google-captcha.php:277
|
134 |
+
msgid "Activate contact form"
|
135 |
+
msgstr "تفعيل فورم الإتصال"
|
136 |
+
|
137 |
+
#: google-captcha.php:281
|
138 |
+
msgid "Download contact form"
|
139 |
+
msgstr "تحميل فورم الإتصال"
|
140 |
+
|
141 |
+
#: google-captcha.php:286
|
142 |
+
msgid "Hide captcha for:"
|
143 |
+
msgstr "تعطيل Google Captcha ل :"
|
144 |
+
|
145 |
+
#: google-captcha.php:294
|
146 |
+
msgid "reCAPTCHA version:"
|
147 |
+
msgstr "نسخة reCAPTCHA:"
|
148 |
+
|
149 |
+
#: google-captcha.php:296
|
150 |
+
#: google-captcha.php:297
|
151 |
+
msgid "version"
|
152 |
+
msgstr "النسخة"
|
153 |
+
|
154 |
+
#: google-captcha.php:302
|
155 |
+
#: google-captcha.php:315
|
156 |
+
msgid "Theme:"
|
157 |
+
msgstr "الإستايل :"
|
158 |
+
|
159 |
+
#: google-captcha.php:303
|
160 |
+
#: google-captcha.php:316
|
161 |
+
msgid "for reCAPTCHA version"
|
162 |
+
msgstr "لنسخة reCAPTCHA"
|
163 |
+
|
164 |
+
#: google-captcha.php:327
|
165 |
+
msgid "Save Changes"
|
166 |
+
msgstr "حفظ التغييرات"
|
167 |
+
|
168 |
+
#: google-captcha.php:377
|
169 |
+
msgid "To use Google Captcha you must get the keys from"
|
170 |
+
msgstr "لتفعيل Google Captcha لابد من الحصول على المفاتيح من"
|
171 |
+
|
172 |
+
#: google-captcha.php:378
|
173 |
+
msgid "here"
|
174 |
+
msgstr "هنا"
|
175 |
+
|
176 |
+
#: google-captcha.php:379
|
177 |
+
msgid "and enter them on the"
|
178 |
+
msgstr "ثم أدخلهم في"
|
179 |
+
|
180 |
+
#: google-captcha.php:381
|
181 |
+
msgid "plugin setting page"
|
182 |
+
msgstr "صفحة إعدادات الإضافة"
|
183 |
+
|
184 |
+
#: google-captcha.php:398
|
185 |
+
#: google-captcha.php:435
|
186 |
+
msgid "Error: You have entered an incorrect CAPTCHA value."
|
187 |
+
msgstr "خطأ: لقد أدخلت قيمة كابتشا بشكل خاطئ."
|
188 |
+
|
189 |
+
#: google-captcha.php:504
|
190 |
+
#: google-captcha.php:516
|
191 |
+
#: google-captcha.php:525
|
192 |
+
msgid "Error"
|
193 |
+
msgstr "خطأ"
|
194 |
+
|
195 |
+
#: google-captcha.php:504
|
196 |
+
#: google-captcha.php:516
|
197 |
+
#: google-captcha.php:525
|
198 |
+
msgid "You have entered an incorrect CAPTCHA value."
|
199 |
+
msgstr "لقد أدخلت قيمة كابتشا بشكل خاطئ"
|
200 |
+
|
201 |
+
#: google-captcha.php:568
|
202 |
+
#: google-captcha.php:575
|
203 |
+
msgid "Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again."
|
204 |
+
msgstr "خطأ: لقد أدخلت قيمة كابتشا بشكل خاطئ. اضغط زر الرجوع في المتصفح وحاول مجددا."
|
205 |
+
|
206 |
+
#: google-captcha.php:612
|
207 |
+
msgid "Support"
|
208 |
+
msgstr "الدعم الفني"
|
209 |
+
|
210 |
+
#~ msgid "Google Captcha"
|
211 |
+
#~ msgstr "Google Captcha"
|
languages/google_captcha-de_DE.mo
ADDED
Binary file
|
languages/google_captcha-de_DE.po
ADDED
@@ -0,0 +1,254 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: google_captcha\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-04-10 15:02+0300\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
+
"Language-Team: Fred Zimmer <fred.zimmer@medienconsulting.at>\n"
|
9 |
+
"Language: de_DE\n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
+
"X-Poedit-Basepath: ..\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.5.4\n"
|
17 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
+
"X-Poedit-SearchPath-0: .\n"
|
19 |
+
|
20 |
+
#: google-captcha.php:32
|
21 |
+
#: google-captcha.php:230
|
22 |
+
msgid "Google Captcha Settings"
|
23 |
+
msgstr "Google Captcha-Einstellungen"
|
24 |
+
|
25 |
+
#: google-captcha.php:167
|
26 |
+
msgid "Site key"
|
27 |
+
msgstr "Site-Schlüssel"
|
28 |
+
|
29 |
+
#: google-captcha.php:172
|
30 |
+
msgid "Secret Key"
|
31 |
+
msgstr "Geheimer Schlüssel"
|
32 |
+
|
33 |
+
#: google-captcha.php:180
|
34 |
+
msgid "Login form"
|
35 |
+
msgstr "Login Formular"
|
36 |
+
|
37 |
+
#: google-captcha.php:181
|
38 |
+
msgid "Registration form"
|
39 |
+
msgstr "Registrierungsformular"
|
40 |
+
|
41 |
+
#: google-captcha.php:182
|
42 |
+
msgid "Reset password form"
|
43 |
+
msgstr "Passwort Forumlar zurücksetzen"
|
44 |
+
|
45 |
+
#: google-captcha.php:183
|
46 |
+
msgid "Comments form"
|
47 |
+
msgstr "Kommentarformular"
|
48 |
+
|
49 |
+
#: google-captcha.php:198
|
50 |
+
msgid "Enter site key"
|
51 |
+
msgstr "Geben Sie den Site-Schlüssel ein"
|
52 |
+
|
53 |
+
#: google-captcha.php:199
|
54 |
+
#: google-captcha.php:205
|
55 |
+
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
56 |
+
msgstr "WARNUNG: das CAPTCHA wird nicht angezeigt wenn die Schlüsselfelder nicht ausgefüllt sind!"
|
57 |
+
|
58 |
+
#: google-captcha.php:204
|
59 |
+
msgid "Enter secret key"
|
60 |
+
msgstr "Geben Sie den geheimen Schlüssel ein"
|
61 |
+
|
62 |
+
#: google-captcha.php:232
|
63 |
+
#: google-captcha.php:591
|
64 |
+
#: google-captcha.php:604
|
65 |
+
msgid "Settings"
|
66 |
+
msgstr "Einstellungen"
|
67 |
+
|
68 |
+
#: google-captcha.php:233
|
69 |
+
#: google-captcha.php:605
|
70 |
+
msgid "FAQ"
|
71 |
+
msgstr "FAQ"
|
72 |
+
|
73 |
+
#: google-captcha.php:235
|
74 |
+
msgid "Notice:"
|
75 |
+
msgstr "Hinweis:"
|
76 |
+
|
77 |
+
#: google-captcha.php:235
|
78 |
+
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
79 |
+
msgstr "Das Plugin-Einstellungen wurden geändert. Vergessen Sie nicht auf die Schaltfläche 'Änderungen speichern' zu klicken."
|
80 |
+
|
81 |
+
#: google-captcha.php:236
|
82 |
+
msgid "Settings saved"
|
83 |
+
msgstr "Einstellungen gespeichert"
|
84 |
+
|
85 |
+
#: google-captcha.php:240
|
86 |
+
msgid "Google Captcha version 2 will not work correctly, since the option \"allow_url_fopen\" is disabled in the PHP settings of your hosting."
|
87 |
+
msgstr "Google Captcha Version 2 funktioniert nicht ordnungsgemäß, da die Option \"Allow_url_fopen\" in den PHP-Einstellungen von Ihrem hosting deaktiviert ist."
|
88 |
+
|
89 |
+
#: google-captcha.php:241
|
90 |
+
msgid "Read more."
|
91 |
+
msgstr "weiterlesen"
|
92 |
+
|
93 |
+
#: google-captcha.php:244
|
94 |
+
msgid "If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your post or page:"
|
95 |
+
msgstr "Wenn Sie Ihrem eigenen Formular Google CAPTCHA hinzufügen wollen, dann kopieren Sie diesen Shortcode in Ihren Beitrag oder Seite"
|
96 |
+
|
97 |
+
#: google-captcha.php:246
|
98 |
+
msgid "Authentication"
|
99 |
+
msgstr "Authentifizierung"
|
100 |
+
|
101 |
+
#: google-captcha.php:247
|
102 |
+
#, php-format
|
103 |
+
msgid "Before you are able to do something, you must to register %s here %s"
|
104 |
+
msgstr "Bevor Sie etwas tun können, müssen Sie %s hier %s registrieren"
|
105 |
+
|
106 |
+
#: google-captcha.php:248
|
107 |
+
msgid "Enter site key and secret key, that you get after registration."
|
108 |
+
msgstr "Geben Sie den Site- und Geheimen Schlüssel ein, den Sie nach der Registrierung erhalten werden."
|
109 |
+
|
110 |
+
#: google-captcha.php:260
|
111 |
+
msgid "Options"
|
112 |
+
msgstr "Optionen"
|
113 |
+
|
114 |
+
#: google-captcha.php:263
|
115 |
+
msgid "Enable Google Captcha for:"
|
116 |
+
msgstr "Aktivieren Sie Google Captcha für:"
|
117 |
+
|
118 |
+
#: google-captcha.php:273
|
119 |
+
#: google-captcha.php:276
|
120 |
+
#: google-captcha.php:280
|
121 |
+
msgid "Contact form"
|
122 |
+
msgstr "Kontaktformular"
|
123 |
+
|
124 |
+
#: google-captcha.php:274
|
125 |
+
#: google-captcha.php:277
|
126 |
+
#: google-captcha.php:281
|
127 |
+
msgid "powered by"
|
128 |
+
msgstr "Bereitgestellt von"
|
129 |
+
|
130 |
+
#: google-captcha.php:277
|
131 |
+
msgid "Activate contact form"
|
132 |
+
msgstr "Kontaktformular aktivieren"
|
133 |
+
|
134 |
+
#: google-captcha.php:281
|
135 |
+
msgid "Download contact form"
|
136 |
+
msgstr "Kontaktformular herunterladen"
|
137 |
+
|
138 |
+
#: google-captcha.php:286
|
139 |
+
msgid "Hide captcha for:"
|
140 |
+
msgstr "CAPTCHA verbergen bei:"
|
141 |
+
|
142 |
+
#: google-captcha.php:294
|
143 |
+
msgid "reCAPTCHA version:"
|
144 |
+
msgstr "ReCAPTCHA Version:"
|
145 |
+
|
146 |
+
#: google-captcha.php:296
|
147 |
+
#: google-captcha.php:297
|
148 |
+
msgid "version"
|
149 |
+
msgstr "Version"
|
150 |
+
|
151 |
+
#: google-captcha.php:302
|
152 |
+
#: google-captcha.php:315
|
153 |
+
msgid "Theme:"
|
154 |
+
msgstr "Theme:"
|
155 |
+
|
156 |
+
#: google-captcha.php:303
|
157 |
+
#: google-captcha.php:316
|
158 |
+
msgid "for reCAPTCHA version"
|
159 |
+
msgstr "für ReCAPTCHA-version"
|
160 |
+
|
161 |
+
#: google-captcha.php:327
|
162 |
+
msgid "Save Changes"
|
163 |
+
msgstr "Änderungen speichern"
|
164 |
+
|
165 |
+
#: google-captcha.php:377
|
166 |
+
msgid "To use Google Captcha you must get the keys from"
|
167 |
+
msgstr "Um Google Catpcha verwenden zu können, müssen Sie sich die Schlüssel holen bei"
|
168 |
+
|
169 |
+
#: google-captcha.php:378
|
170 |
+
msgid "here"
|
171 |
+
msgstr "hier"
|
172 |
+
|
173 |
+
#: google-captcha.php:379
|
174 |
+
msgid "and enter them on the"
|
175 |
+
msgstr "und geben Sie sie ein auf"
|
176 |
+
|
177 |
+
#: google-captcha.php:381
|
178 |
+
msgid "plugin setting page"
|
179 |
+
msgstr "Plugin Einstellungsseite"
|
180 |
+
|
181 |
+
#: google-captcha.php:398
|
182 |
+
#: google-captcha.php:435
|
183 |
+
msgid "Error: You have entered an incorrect CAPTCHA value."
|
184 |
+
msgstr "Fehler: Sie haben den CAPTCHA nicht korrekt eingegeben."
|
185 |
+
|
186 |
+
#: google-captcha.php:503
|
187 |
+
#: google-captcha.php:513
|
188 |
+
#: google-captcha.php:522
|
189 |
+
msgid "Error"
|
190 |
+
msgstr "Fehler"
|
191 |
+
|
192 |
+
#: google-captcha.php:503
|
193 |
+
#: google-captcha.php:513
|
194 |
+
#: google-captcha.php:522
|
195 |
+
msgid "You have entered an incorrect CAPTCHA value."
|
196 |
+
msgstr "Sie haben den CAPTCHA nicht korrekt eingegeben."
|
197 |
+
|
198 |
+
#: google-captcha.php:564
|
199 |
+
#: google-captcha.php:569
|
200 |
+
msgid "Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again."
|
201 |
+
msgstr "Fehler: Sie haben den CAPTCHA nicht korrekt eingegeben. Klicken Sie auf den \"zurück\" Knopf im Browser und versuchen Sie es nochmal."
|
202 |
+
|
203 |
+
#: google-captcha.php:606
|
204 |
+
msgid "Support"
|
205 |
+
msgstr "Support"
|
206 |
+
|
207 |
+
#~ msgid "Google Captcha"
|
208 |
+
#~ msgstr "Google Captcha"
|
209 |
+
|
210 |
+
#~ msgid "requires"
|
211 |
+
#~ msgstr "erfordert"
|
212 |
+
|
213 |
+
#~ msgid ""
|
214 |
+
#~ "or higher, that is why it has been deactivated! Please upgrade WordPress "
|
215 |
+
#~ "and try again."
|
216 |
+
#~ msgstr ""
|
217 |
+
#~ "oder höher, deshalb ist es deaktiviert! Bitte aktualisieren Sie WordPress "
|
218 |
+
#~ "und versuchen Sie es erneut."
|
219 |
+
|
220 |
+
#~ msgid "Back to the WordPress"
|
221 |
+
#~ msgstr "Zurück zu Wordpress"
|
222 |
+
|
223 |
+
#~ msgid "Plugins page"
|
224 |
+
#~ msgstr "Plugins Seite"
|
225 |
+
|
226 |
+
#~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
227 |
+
#~ msgstr ""
|
228 |
+
#~ "Bewerten Sie das Plugin mit 5 Sternen auf WordPress, wenn Sie es mögen."
|
229 |
+
|
230 |
+
#~ msgid "Rate the plugin"
|
231 |
+
#~ msgstr "Plugin bewerten"
|
232 |
+
|
233 |
+
#~ msgid "If there is something wrong about it, please contact us"
|
234 |
+
#~ msgstr "Wenn etwas nicht passt, kontieren Sie uns bitte"
|
235 |
+
|
236 |
+
#~ msgid "Public Key"
|
237 |
+
#~ msgstr "Öffentlicher Schlüssel"
|
238 |
+
|
239 |
+
#~ msgid "Private Key"
|
240 |
+
#~ msgstr "Privater Schlüssel"
|
241 |
+
|
242 |
+
#~ msgid "Enter public key"
|
243 |
+
#~ msgstr "Öffentlichen Schlüssel eingeben"
|
244 |
+
|
245 |
+
#~ msgid "Activated theme"
|
246 |
+
#~ msgstr "Oberfläche aktivieren"
|
247 |
+
|
248 |
+
#~ msgid "Themes"
|
249 |
+
#~ msgstr "Themes"
|
250 |
+
|
251 |
+
#~ msgid "WARNING: The captcha will not display while you not fill key fields."
|
252 |
+
#~ msgstr ""
|
253 |
+
#~ "Warnung: es werden keine CAPTCHA Felder angezeigt, solange die Schlüssel "
|
254 |
+
#~ "nicht eingegeben sind."
|
languages/google_captcha-hi.mo
ADDED
Binary file
|
languages/google_captcha-hi.po
ADDED
@@ -0,0 +1,422 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: google_captcha\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2015-05-18 10:13+0300\n"
|
6 |
+
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
+
"Language-Team: Development Logics Solutions Pvt Ltd <contact@developmentlogics.com>\n"
|
9 |
+
"Language: hi\n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
+
"X-Poedit-Basepath: ..\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.5.4\n"
|
17 |
+
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
+
"X-Poedit-SearchPath-0: .\n"
|
19 |
+
|
20 |
+
#: google-captcha.php:32
|
21 |
+
#: google-captcha.php:230
|
22 |
+
msgid "Google Captcha Settings"
|
23 |
+
msgstr "गूगल कॅप्चा सेटिंग्स"
|
24 |
+
|
25 |
+
#: google-captcha.php:167
|
26 |
+
msgid "Site key"
|
27 |
+
msgstr "साइट कुंजी "
|
28 |
+
|
29 |
+
#: google-captcha.php:172
|
30 |
+
msgid "Secret Key"
|
31 |
+
msgstr "गुप्त कुंजी"
|
32 |
+
|
33 |
+
#: google-captcha.php:180
|
34 |
+
msgid "Login form"
|
35 |
+
msgstr "प्रवेश फार्म"
|
36 |
+
|
37 |
+
#: google-captcha.php:181
|
38 |
+
msgid "Registration form"
|
39 |
+
msgstr "पंजीकरण फॉर्म"
|
40 |
+
|
41 |
+
#: google-captcha.php:182
|
42 |
+
msgid "Reset password form"
|
43 |
+
msgstr "पुन: पासवर्ड फार्म"
|
44 |
+
|
45 |
+
#: google-captcha.php:183
|
46 |
+
msgid "Comments form"
|
47 |
+
msgstr "टिप्पणियां फार्म"
|
48 |
+
|
49 |
+
#: google-captcha.php:198
|
50 |
+
msgid "Enter site key"
|
51 |
+
msgstr "दर्ज साइट कुंजी "
|
52 |
+
|
53 |
+
#: google-captcha.php:199
|
54 |
+
#: google-captcha.php:205
|
55 |
+
msgid "WARNING: The captcha will not display while you don't fill key fields."
|
56 |
+
msgstr "चेतावनी: यदि आप कुंजी क्षेत्र नहीं भरेंगें तो कैप्चा प्रदर्शित नहीं करेगा।"
|
57 |
+
|
58 |
+
#: google-captcha.php:204
|
59 |
+
msgid "Enter secret key"
|
60 |
+
msgstr "दर्ज गुप्त कुंजी"
|
61 |
+
|
62 |
+
#: google-captcha.php:232
|
63 |
+
#: google-captcha.php:597
|
64 |
+
#: google-captcha.php:610
|
65 |
+
msgid "Settings"
|
66 |
+
msgstr "सेटिंग्स"
|
67 |
+
|
68 |
+
#: google-captcha.php:233
|
69 |
+
#: google-captcha.php:611
|
70 |
+
msgid "FAQ"
|
71 |
+
msgstr "सामान्यतःपूछे जाने वाले प्रश्न (फ ए क्यू )"
|
72 |
+
|
73 |
+
#: google-captcha.php:235
|
74 |
+
msgid "Notice:"
|
75 |
+
msgstr "सूचना:"
|
76 |
+
|
77 |
+
#: google-captcha.php:235
|
78 |
+
msgid "The plugin's settings have been changed. In order to save them please don't forget to click the 'Save Changes' button."
|
79 |
+
msgstr "प्लगइन की सेटिंग्स बदल दी गयी है। उन्हें बचाने के लिए ,'परिवर्तन सुरक्षित' बटन क्लिक करना मत भूलना।"
|
80 |
+
|
81 |
+
#: google-captcha.php:236
|
82 |
+
msgid "Settings saved"
|
83 |
+
msgstr "सेटिंग्स सुरक्षित"
|
84 |
+
|
85 |
+
#: google-captcha.php:240
|
86 |
+
msgid "Google Captcha version 2 will not work correctly, since the option \"allow_url_fopen\" is disabled in the PHP settings of your hosting."
|
87 |
+
msgstr "गूगल कैप्चा संस्करण 2 सही ढंग से काम नहीं करेगा, क्यूंकि विकल्प \"allow_url_fopen\" आपके होस्टिंग के पीएचपी सेटिंग में अक्षम है ।"
|
88 |
+
|
89 |
+
#: google-captcha.php:241
|
90 |
+
msgid "Read more."
|
91 |
+
msgstr "और पढ़ें।"
|
92 |
+
|
93 |
+
#: google-captcha.php:244
|
94 |
+
msgid "If you would like to add the Google Captcha to your own form, just copy and paste this shortcode to your post or page:"
|
95 |
+
msgstr "अगर आप अपने खुद के फार्म में गूगल कैप्चा जोड़ना चाहते हैं तो बस इस शॉर्टकोड को अपने पृष्ठ या पोस्ट पर कॉपी और पेस्ट करेँ ।"
|
96 |
+
|
97 |
+
#: google-captcha.php:246
|
98 |
+
msgid "Authentication"
|
99 |
+
msgstr "प्रमाणीकरण"
|
100 |
+
|
101 |
+
#: google-captcha.php:247
|
102 |
+
#, php-format
|
103 |
+
msgid "Before you are able to do something, you must to register %s here %s"
|
104 |
+
msgstr " कुछ भी करने से पहले %s यहाँ %s पंजीकरण करायें "
|
105 |
+
|
106 |
+
#: google-captcha.php:248
|
107 |
+
msgid "Enter site key and secret key, that you get after registration."
|
108 |
+
msgstr "पंजीकरण के बाद जो साइट कुंजी और गुप्त कुंजी मिलती है उसे दर्ज करें।"
|
109 |
+
|
110 |
+
#: google-captcha.php:260
|
111 |
+
msgid "Options"
|
112 |
+
msgstr "विकल्प"
|
113 |
+
|
114 |
+
#: google-captcha.php:263
|
115 |
+
msgid "Enable Google Captcha for:"
|
116 |
+
msgstr "गूगल कैप्चा के लिए सक्षम करें:"
|
117 |
+
|
118 |
+
#: google-captcha.php:273
|
119 |
+
#: google-captcha.php:276
|
120 |
+
#: google-captcha.php:280
|
121 |
+
msgid "Contact form"
|
122 |
+
msgstr "संपर्क फार्म"
|
123 |
+
|
124 |
+
#: google-captcha.php:274
|
125 |
+
#: google-captcha.php:277
|
126 |
+
#: google-captcha.php:281
|
127 |
+
msgid "powered by"
|
128 |
+
msgstr "के द्वारा संचालित"
|
129 |
+
|
130 |
+
#: google-captcha.php:277
|
131 |
+
msgid "Activate contact form"
|
132 |
+
msgstr "संपर्क फ़ॉर्म को सक्रिय करें"
|
133 |
+
|
134 |
+
#: google-captcha.php:281
|
135 |
+
msgid "Download contact form"
|
136 |
+
msgstr "डाउनलोड संपर्क फ़ॉर्म"
|
137 |
+
|
138 |
+
#: google-captcha.php:286
|
139 |
+
msgid "Hide captcha for:"
|
140 |
+
msgstr "कैप्चा छुपाएं:"
|
141 |
+
|
142 |
+
#: google-captcha.php:294
|
143 |
+
msgid "reCAPTCHA version:"
|
144 |
+
msgstr "रीकैप्चा संस्करण:"
|
145 |
+
|
146 |
+
#: google-captcha.php:296
|
147 |
+
#: google-captcha.php:297
|
148 |
+
msgid "version"
|
149 |
+
msgstr "संस्करण"
|
150 |
+
|
151 |
+
#: google-captcha.php:302
|
152 |
+
#: google-captcha.php:315
|
153 |
+
msgid "Theme:"
|
154 |
+
msgstr "विषय:"
|
155 |
+
|
156 |
+
#: google-captcha.php:303
|
157 |
+
#: google-captcha.php:316
|
158 |
+
msgid "for reCAPTCHA version"
|
159 |
+
msgstr "रीकैप्चा संस्करण के लिए"
|
160 |
+
|
161 |
+
#: google-captcha.php:327
|
162 |
+
msgid "Save Changes"
|
163 |
+
msgstr "परिवर्तनों को सुरक्षित करें"
|
164 |
+
|
165 |
+
#: google-captcha.php:377
|
166 |
+
msgid "To use Google Captcha you must get the keys from"
|
167 |
+
msgstr "गूगल कॅप्चा का उपयोग करने के लिए,आप कुंजी लें "
|
168 |
+
|
169 |
+
#: google-captcha.php:378
|
170 |
+
msgid "here"
|
171 |
+
msgstr "यहाँ से "
|
172 |
+
|
173 |
+
#: google-captcha.php:379
|
174 |
+
msgid "and enter them on the"
|
175 |
+
msgstr "और उन्हें दर्ज करें "
|
176 |
+
|
177 |
+
#: google-captcha.php:381
|
178 |
+
msgid "plugin setting page"
|
179 |
+
msgstr "प्लगइन सेटिंग पृष्ठ पर "
|
180 |
+
|
181 |
+
#: google-captcha.php:398
|
182 |
+
#: google-captcha.php:435
|
183 |
+
msgid "Error: You have entered an incorrect CAPTCHA value."
|
184 |
+
msgstr "त्रुटि: आपने एक गलत कॅप्चा मान दर्ज किया है।"
|
185 |
+
|
186 |
+
#: google-captcha.php:504
|
187 |
+
#: google-captcha.php:516
|
188 |
+
#: google-captcha.php:525
|
189 |
+
msgid "Error"
|
190 |
+
msgstr "त्रुटि"
|
191 |
+
|
192 |
+
#: google-captcha.php:504
|
193 |
+
#: google-captcha.php:516
|
194 |
+
#: google-captcha.php:525
|
195 |
+
msgid "You have entered an incorrect CAPTCHA value."
|
196 |
+
msgstr "आपने एक गलत कॅप्चा मान दर्ज किया है।"
|
197 |
+
|
198 |
+
#: google-captcha.php:568
|
199 |
+
#: google-captcha.php:575
|
200 |
+
msgid "Error: You have entered an incorrect CAPTCHA value. Click the BACK button on your browser, and try again."
|
201 |
+
msgstr "त्रुटि: आपने एक गलत कॅप्चा मान दर्ज किया है। अपने ब्राउज़र पर वापस बटन क्लिक करें, और फिर कोशिश करें।"
|
202 |
+
|
203 |
+
#: google-captcha.php:612
|
204 |
+
msgid "Support"
|
205 |
+
msgstr "सहयोग"
|
206 |
+
|
207 |
+
#~ msgid "Google Captcha"
|
208 |
+
#~ msgstr "गूगल कॅप्चा"
|
209 |
+
|
210 |
+
#~ msgid "requires"
|
211 |
+
#~ msgstr "आवश्यकता है"
|
212 |
+
|
213 |
+
#~ msgid ""
|
214 |
+
#~ "or higher, that is why it has been deactivated! Please upgrade WordPress "
|
215 |
+
#~ "and try again."
|
216 |
+
#~ msgstr ""
|
217 |
+
#~ "या अधिक कि है,इसलिये यह निष्क्रिय कर दिया गया है। वर्डप्रेस का उन्नयन करो और फिर "
|
218 |
+
#~ "कोशिश करें।"
|
219 |
+
|
220 |
+
#~ msgid "Back to the WordPress"
|
221 |
+
#~ msgstr "वापस वर्डप्रेस पर"
|
222 |
+
|
223 |
+
#~ msgid "Plugins page"
|
224 |
+
#~ msgstr "प्लगइन्स पृष्ठ"
|
225 |
+
|
226 |
+
#~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
227 |
+
#~ msgstr "यदि आप हमारे प्लगइन को पसंद करें तो कृपया वर्डप्रेस पर हमें 5 सितारों दे ।"
|
228 |
+
|
229 |
+
#~ msgid "Rate the plugin"
|
230 |
+
#~ msgstr "प्लगइन का मुल्यांकन"
|
231 |
+
|
232 |
+
#~ msgid "If there is something wrong about it, please contact us"
|
233 |
+
#~ msgstr "अगर कुछ गलत लगे तो हमें संपर्क करें ।"
|
234 |
+
|
235 |
+
#~ msgid "Public Key"
|
236 |
+
#~ msgstr "सार्वजनिक कुंजी"
|
237 |
+
|
238 |
+
#~ msgid "Private Key"
|
239 |
+
#~ msgstr "निजी कुंजी"
|
240 |
+
|
241 |
+
#~ msgid "Enter public key"
|
242 |
+
#~ msgstr "सार्वजनिक कुंजी दर्ज करें"
|
243 |
+
|
244 |
+
#~ msgid "Not set"
|
245 |
+
#~ msgstr "सेट नहीं"
|
246 |
+
|
247 |
+
#~ msgid "On"
|
248 |
+
#~ msgstr "चालू "
|
249 |
+
|
250 |
+
#~ msgid "Off"
|
251 |
+
#~ msgstr "बंद"
|
252 |
+
|
253 |
+
#~ msgid "N/A"
|
254 |
+
#~ msgstr "लागू नहीं (एन / ए)"
|
255 |
+
|
256 |
+
#~ msgid " Mb"
|
257 |
+
#~ msgstr "एमबी"
|
258 |
+
|
259 |
+
#~ msgid "Yes"
|
260 |
+
#~ msgstr "हाँ"
|
261 |
+
|
262 |
+
#~ msgid "No"
|
263 |
+
#~ msgstr "नहीं "
|
264 |
+
|
265 |
+
#~ msgid "Operating System"
|
266 |
+
#~ msgstr "प्रचालन तंत्र"
|
267 |
+
|
268 |
+
#~ msgid "Server"
|
269 |
+
#~ msgstr "सर्वर"
|
270 |
+
|
271 |
+
#~ msgid "Memory usage"
|
272 |
+
#~ msgstr "स्मृति उपयोग"
|
273 |
+
|
274 |
+
#~ msgid "MYSQL Version"
|
275 |
+
#~ msgstr "MySQL संस्करण"
|
276 |
+
|
277 |
+
#~ msgid "SQL Mode"
|
278 |
+
#~ msgstr "SQL साधन"
|
279 |
+
|
280 |
+
#~ msgid "PHP Safe Mode"
|
281 |
+
#~ msgstr "पीएचपी सुरक्षित साधन"
|
282 |
+
|
283 |
+
#~ msgid "PHP Allow URL fopen"
|
284 |
+
#~ msgstr "पीएचपी URL fopen की अनुमति दें"
|
285 |
+
|
286 |
+
#~ msgid "PHP Memory Limit"
|
287 |
+
#~ msgstr "पीएचपी स्मृति सीमा"
|
288 |
+
|
289 |
+
#~ msgid "PHP Max Upload Size"
|
290 |
+
#~ msgstr "पीएचपी अधिकतम अपलोड विस्तार"
|
291 |
+
|
292 |
+
#~ msgid "PHP Max Post Size"
|
293 |
+
#~ msgstr "पीएचपी अधिकतम पोस्ट का विस्तार"
|
294 |
+
|
295 |
+
#~ msgid "PHP Max Script Execute Time"
|
296 |
+
#~ msgstr "पीएचपी अधिकतम स्क्रिप्ट समय निष्पादित"
|
297 |
+
|
298 |
+
#~ msgid "PHP Exif support"
|
299 |
+
#~ msgstr "पीएचपी Exif समर्थन"
|
300 |
+
|
301 |
+
#~ msgid "PHP IPTC support"
|
302 |
+
#~ msgstr "पीएचपी IPTC समर्थन"
|
303 |
+
|
304 |
+
#~ msgid "PHP XML support"
|
305 |
+
#~ msgstr "XML पीएचपी समर्थन"
|
306 |
+
|
307 |
+
#~ msgid "Home URL"
|
308 |
+
#~ msgstr "गृह URL "
|
309 |
+
|
310 |
+
#~ msgid "WordPress Version"
|
311 |
+
#~ msgstr "वर्डप्रेस संस्करण"
|
312 |
+
|
313 |
+
#~ msgid "WordPress DB Version"
|
314 |
+
#~ msgstr "वर्डप्रेस DB संस्करण"
|
315 |
+
|
316 |
+
#~ msgid "Multisite"
|
317 |
+
#~ msgstr "मल्टीसाइट"
|
318 |
+
|
319 |
+
#~ msgid "Active Theme"
|
320 |
+
#~ msgstr "सक्रिय विषय"
|
321 |
+
|
322 |
+
#~ msgid "Please enter a valid email address."
|
323 |
+
#~ msgstr "कृपया एक मान्य ईमेल पता दें।"
|
324 |
+
|
325 |
+
#~ msgid "Email with system info is sent to "
|
326 |
+
#~ msgstr "सिस्टम जानकारी के साथ ईमेल भेजा है"
|
327 |
+
|
328 |
+
#~ msgid "Thank you for contacting us."
|
329 |
+
#~ msgstr "हमें संपर्क करने के लिए धन्यवाद।"
|
330 |
+
|
331 |
+
#~ msgid "Sorry, email message could not be delivered."
|
332 |
+
#~ msgstr "क्षमा करें, ईमेल संदेश वितरित नहीं किया जा सका है।"
|
333 |
+
|
334 |
+
#~ msgid "Plugins"
|
335 |
+
#~ msgstr "प्लगइन्स"
|
336 |
+
|
337 |
+
#~ msgid "Themes"
|
338 |
+
#~ msgstr "विषयों"
|
339 |
+
|
340 |
+
#~ msgid "System status"
|
341 |
+
#~ msgstr "तंत्र की स्थिति"
|
342 |
+
|
343 |
+
#~ msgid "All"
|
344 |
+
#~ msgstr "सभी"
|
345 |
+
|
346 |
+
#~ msgid "Installed"
|
347 |
+
#~ msgstr "स्थापित"
|
348 |
+
|
349 |
+
#~ msgid "Recommended"
|
350 |
+
#~ msgstr "सलाह दी जाती है "
|
351 |
+
|
352 |
+
#~ msgid "Installed plugins"
|
353 |
+
#~ msgstr "स्थापित प्लगइन्स"
|
354 |
+
|
355 |
+
#~ msgid "Go"
|
356 |
+
#~ msgstr "जाएं"
|
357 |
+
|
358 |
+
#~ msgid "DONATE"
|
359 |
+
#~ msgstr "दान"
|
360 |
+
|
361 |
+
#~ msgid "Activate this plugin"
|
362 |
+
#~ msgstr "प्लगइन सक्रिय करना "
|
363 |
+
|
364 |
+
#~ msgid "Activate"
|
365 |
+
#~ msgstr "सक्रिय"
|
366 |
+
|
367 |
+
#~ msgid "Recommended plugins"
|
368 |
+
#~ msgstr "प्लगइन जिनकी सलाह दी जाती है "
|
369 |
+
|
370 |
+
#~ msgid "Install now"
|
371 |
+
#~ msgstr "अभी स्थापित करें"
|
372 |
+
|
373 |
+
#~ msgid "Try again"
|
374 |
+
#~ msgstr "पुनः प्रयास करें"
|
375 |
+
|
376 |
+
#~ msgid "Preview “%s”"
|
377 |
+
#~ msgstr "पूर्व दर्शन “%s”"
|
378 |
+
|
379 |
+
#~ msgid "Install %s"
|
380 |
+
#~ msgstr "स्थापित करें %s"
|
381 |
+
|
382 |
+
#~ msgid "Install Now"
|
383 |
+
#~ msgstr "अभी स्थापित करें"
|
384 |
+
|
385 |
+
#~ msgid "Update to version %s"
|
386 |
+
#~ msgstr "संस्करण अपडेट करें"
|
387 |
+
|
388 |
+
#~ msgid "Update"
|
389 |
+
#~ msgstr "अपडेट"
|
390 |
+
|
391 |
+
#~ msgid "Preview %s"
|
392 |
+
#~ msgstr "पूर्व दर्शन %s"
|
393 |
+
|
394 |
+
#~ msgid "Preview"
|
395 |
+
#~ msgstr "पूर्व दर्शन"
|
396 |
+
|
397 |
+
#~ msgid "By %s"
|
398 |
+
#~ msgstr "द्वारा %s"
|
399 |
+
|
400 |
+
#~ msgid "Details"
|
401 |
+
#~ msgstr "विवरण"
|
402 |
+
|
403 |
+
#~ msgid "Already Installed"
|
404 |
+
#~ msgstr "पहले से ही स्थापित"
|
405 |
+
|
406 |
+
#~ msgid "Environment"
|
407 |
+
#~ msgstr "पर्यावरण"
|
408 |
+
|
409 |
+
#~ msgid "Active Plugins"
|
410 |
+
#~ msgstr "सक्रिय प्लगइन्स"
|
411 |
+
|
412 |
+
#~ msgid "Inactive Plugins"
|
413 |
+
#~ msgstr "निष्क्रिय प्लगइन्स"
|
414 |
+
|
415 |
+
#~ msgid "Send to support"
|
416 |
+
#~ msgstr "मदद के लिए भेजें "
|
417 |
+
|
418 |
+
#~ msgid "Send to custom email »"
|
419 |
+
#~ msgstr "कस्टम ईमेल को भेजें »"
|
420 |
+
|
421 |
+
#~ msgid "WARNING: The captcha will not display while you not fill key fields."
|
422 |
+
#~ msgstr "चेतावनी: यदि आपने कुंजी क्षेत्रों नहीं भरें है तो कैप्चा प्रदर्शित नहीं करेगा।"
|
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Google Captcha (reCAPTCHA) by BestWebSoft ===
|
2 |
Contributors: bestwebsoft
|
3 |
-
Donate link:
|
4 |
Tags: antispam, anti-spam, capcha, anti-spam security, arithmetic actions, captcha, captha, capcha, catcha, cpatcha, captcha theme, comment, digitize books, digitize newspapers, digitize radio shows, google, gogle, google captcha, login, lost password, re captcha, recaptcha, re-captcha, registration, shortcode, site keys, spam, text captcha.
|
5 |
Requires at least: 3.0
|
6 |
-
Tested up to: 4.2
|
7 |
-
Stable tag: 1.
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -17,6 +17,8 @@ This captcha can be used for login, registration, password recovery, comments fo
|
|
17 |
|
18 |
http://www.youtube.com/watch?v=10ImOhmM0Cs
|
19 |
|
|
|
|
|
20 |
<a href="http://wordpress.org/plugins/google-captcha/faq/" target="_blank">FAQ</a>
|
21 |
|
22 |
<a href="http://support.bestwebsoft.com" target="_blank">Support</a>
|
@@ -41,11 +43,14 @@ There is also a premium version of the plugin <a href="http://bestwebsoft.com/pr
|
|
41 |
|
42 |
= Translation =
|
43 |
|
|
|
44 |
* Brazilian Portuguese (pt_BR) (thanks to <a href="mailto:epeetz@gmail.com">Elton Fernandes Peetz Prado</a>)
|
45 |
* Bulgarian (bg_BG) (thanks to <a href="mailto:me@ygeorgiev.com">Yasen Georgiev</a>)
|
46 |
* Chinese Traditional (zh_TW) (thanks to <a href="mailto:nick20080808@gmail.com">Nick Lai</a>)
|
47 |
-
*
|
48 |
* Greek (el) (thanks to Dimitris Karantonis, www.soft4real.com/en-UK)
|
|
|
|
|
49 |
* Polish (pl_PL) (thanks to <a href="mailto:ryszard.glegola@translanet.com">Ryszard Glegola</a>, www.translanet.com)
|
50 |
* Russian (ru_RU)
|
51 |
* Spanish (es_ES) (thanks to <a href="mailto:cloudzeroxyz@gmail.com">Cloudzeroxyz</a>)
|
@@ -70,6 +75,8 @@ We can fix some things for free for the users who provide translation of our plu
|
|
70 |
|
71 |
<a href="https://docs.google.com/document/d/1Nrccb-OLDN80yYjz_6-JPErdpZoslqfPV-g2IZ-GD0A/edit" target="_blank">View a Step-by-step Instruction on Google Captcha (reCAPTCHA) Installation</a>.
|
72 |
|
|
|
|
|
73 |
== Frequently Asked Questions ==
|
74 |
|
75 |
= How to get Google Captcha keys? =
|
@@ -133,6 +140,7 @@ If the form is HTML you should insert the line with the PHP tags:
|
|
133 |
= I have some problems with the plugin's work. What Information should I provide to receive proper support? =
|
134 |
|
135 |
Please make sure that the problem hasn't been discussed yet on our forum (<a href="http://support.bestwebsoft.com" target="_blank">http://support.bestwebsoft.com</a>). If no, please provide the following data along with your problem's description:
|
|
|
136 |
1. the link to the page where the problem occurs
|
137 |
2. the name of the plugin and its version. If you are using a pro version - your order number.
|
138 |
3. the version of your WordPress installation
|
@@ -150,6 +158,14 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
150 |
|
151 |
== Changelog ==
|
152 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
153 |
= V1.15 - 09.04.2015 =
|
154 |
* Bugfix : We fixed the bug with captcha check for users from the list of exceptions.
|
155 |
|
@@ -223,6 +239,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<a hre
|
|
223 |
|
224 |
== Upgrade Notice ==
|
225 |
|
|
|
|
|
|
|
226 |
= V1.15 =
|
227 |
We fixed the bug with captcha check for users from the list of exceptions.
|
228 |
|
1 |
=== Google Captcha (reCAPTCHA) by BestWebSoft ===
|
2 |
Contributors: bestwebsoft
|
3 |
+
Donate link: http://bestwebsoft.com/donate/
|
4 |
Tags: antispam, anti-spam, capcha, anti-spam security, arithmetic actions, captcha, captha, capcha, catcha, cpatcha, captcha theme, comment, digitize books, digitize newspapers, digitize radio shows, google, gogle, google captcha, login, lost password, re captcha, recaptcha, re-captcha, registration, shortcode, site keys, spam, text captcha.
|
5 |
Requires at least: 3.0
|
6 |
+
Tested up to: 4.2.2
|
7 |
+
Stable tag: 1.16
|
8 |
License: GPLv3 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
17 |
|
18 |
http://www.youtube.com/watch?v=10ImOhmM0Cs
|
19 |
|
20 |
+
<a href="http://www.youtube.com/watch?v=RUJ9VwZLFSY" target="_blank">Video instruction on Installation</a>
|
21 |
+
|
22 |
<a href="http://wordpress.org/plugins/google-captcha/faq/" target="_blank">FAQ</a>
|
23 |
|
24 |
<a href="http://support.bestwebsoft.com" target="_blank">Support</a>
|
43 |
|
44 |
= Translation =
|
45 |
|
46 |
+
* Arabic (ar) (thanks to <a href="mailto:mor0cc0@live.com">SAID MOULLA</a>, www.aljoulane.ma)
|
47 |
* Brazilian Portuguese (pt_BR) (thanks to <a href="mailto:epeetz@gmail.com">Elton Fernandes Peetz Prado</a>)
|
48 |
* Bulgarian (bg_BG) (thanks to <a href="mailto:me@ygeorgiev.com">Yasen Georgiev</a>)
|
49 |
* Chinese Traditional (zh_TW) (thanks to <a href="mailto:nick20080808@gmail.com">Nick Lai</a>)
|
50 |
+
* German (de_DE) (thanks to <a href="mailto:fred.zimmer@medienconsulting.at">Fred Zimmer</a>,www.medienconsulting.at)
|
51 |
* Greek (el) (thanks to Dimitris Karantonis, www.soft4real.com/en-UK)
|
52 |
+
* Hindi (hi) (thanks to <a href="mailto:contact@developmentlogics.com">Development Logics Solutions Pvt Ltd</a>, www.developmentlogics.com)
|
53 |
+
* Italian (it_IT) (thanks to <a href="mailto:wart17@hotmail.com">Istvan</a>)
|
54 |
* Polish (pl_PL) (thanks to <a href="mailto:ryszard.glegola@translanet.com">Ryszard Glegola</a>, www.translanet.com)
|
55 |
* Russian (ru_RU)
|
56 |
* Spanish (es_ES) (thanks to <a href="mailto:cloudzeroxyz@gmail.com">Cloudzeroxyz</a>)
|
75 |
|
76 |
<a href="https://docs.google.com/document/d/1Nrccb-OLDN80yYjz_6-JPErdpZoslqfPV-g2IZ-GD0A/edit" target="_blank">View a Step-by-step Instruction on Google Captcha (reCAPTCHA) Installation</a>.
|
77 |
|
78 |
+
http://www.youtube.com/watch?v=RUJ9VwZLFSY
|
79 |
+
|
80 |
== Frequently Asked Questions ==
|
81 |
|
82 |
= How to get Google Captcha keys? =
|
140 |
= I have some problems with the plugin's work. What Information should I provide to receive proper support? =
|
141 |
|
142 |
Please make sure that the problem hasn't been discussed yet on our forum (<a href="http://support.bestwebsoft.com" target="_blank">http://support.bestwebsoft.com</a>). If no, please provide the following data along with your problem's description:
|
143 |
+
|
144 |
1. the link to the page where the problem occurs
|
145 |
2. the name of the plugin and its version. If you are using a pro version - your order number.
|
146 |
3. the version of your WordPress installation
|
158 |
|
159 |
== Changelog ==
|
160 |
|
161 |
+
= V1.16 - 18.05.2015 =
|
162 |
+
* Bugfix : We fixed the bug with checking captcha when deleted 'recaptcha_widget_div'.
|
163 |
+
* Bugfix : We fixed the bug with using deprecated jQuery methods (thanks to Junio Vitorino, github.com/juniovitorino).
|
164 |
+
* NEW : The Arabic language file is added.
|
165 |
+
* NEW : The German language file is added.
|
166 |
+
* NEW : The Hindi language file is added.
|
167 |
+
* Update : We updated all functionality for wordpress 4.2.2.
|
168 |
+
|
169 |
= V1.15 - 09.04.2015 =
|
170 |
* Bugfix : We fixed the bug with captcha check for users from the list of exceptions.
|
171 |
|
239 |
|
240 |
== Upgrade Notice ==
|
241 |
|
242 |
+
= V1.16 =
|
243 |
+
We fixed the bug with checking captcha when deleted 'recaptcha_widget_div'. We fixed the bug with using deprecated jQuery methods (thanks to Junio Vitorino, github.com/juniovitorino). The Arabic language file is added. The German language file is added. The Hindi language file is added. We updated all functionality for wordpress 4.2.2.
|
244 |
+
|
245 |
= V1.15 =
|
246 |
We fixed the bug with captcha check for users from the list of exceptions.
|
247 |
|