Version Description
- 20.07.2017 =
- NEW : Ability to choose buttons size has been added.
- Update : Default button appearance has been updated.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Facebook Button by BestWebSoft |
Version | 2.55 |
Comparing to | |
See all releases |
Code changes from version 2.54 to 2.55
- bws_menu/bws_functions.php +16 -12
- bws_menu/bws_menu.php +11 -10
- bws_menu/class-bws-settings.php +7 -2
- bws_menu/css/general_style.css +22 -16
- bws_menu/fonts/bwsicons.eot +0 -0
- bws_menu/fonts/bwsicons.svg +3 -1
- bws_menu/fonts/bwsicons.ttf +0 -0
- bws_menu/fonts/bwsicons.woff +0 -0
- bws_menu/icons/plugins/db-manager.png +0 -0
- bws_menu/js/general_script.js +6 -0
- bws_menu/languages/bestwebsoft-cs_CZ.mo +0 -0
- bws_menu/languages/bestwebsoft-cs_CZ.po +465 -187
- bws_menu/languages/bestwebsoft-fr_FR.mo +0 -0
- bws_menu/languages/bestwebsoft-fr_FR.po +366 -48
- bws_menu/languages/bestwebsoft-id_ID.mo +0 -0
- bws_menu/languages/bestwebsoft-id_ID.po +2069 -0
- bws_menu/languages/bestwebsoft-nl_NL.mo +0 -0
- bws_menu/languages/bestwebsoft-nl_NL.po +1478 -0
- bws_menu/languages/bestwebsoft-pl_PL.mo +0 -0
- bws_menu/languages/bestwebsoft-pl_PL.po +342 -42
- bws_menu/languages/bestwebsoft-ru_RU.mo +0 -0
- bws_menu/languages/bestwebsoft-ru_RU.po +518 -51
- bws_menu/languages/bestwebsoft-uk.mo +0 -0
- bws_menu/languages/bestwebsoft-uk.po +511 -52
- bws_menu/product_list.php +117 -151
- css/style.css +4 -0
- facebook-button-plugin.php +10 -37
- images/facebook-ico.png +0 -0
- images/facebook-ico2.jpg +0 -0
- images/large-facebook-ico.png +0 -0
- images/standard-facebook-ico.png +0 -0
- includes/class-fcbkbttn-settings.php +32 -17
- js/script.js +6 -6
- languages/facebook-button-plugin-cs_CZ.mo +0 -0
- languages/facebook-button-plugin-cs_CZ.po +98 -81
- languages/facebook-button-plugin-es_ES.mo +0 -0
- languages/facebook-button-plugin-es_ES.po +103 -83
- languages/facebook-button-plugin-fi_FI.mo +0 -0
- languages/facebook-button-plugin-fi_FI.po +103 -83
- languages/facebook-button-plugin-fr_FR.mo +0 -0
- languages/facebook-button-plugin-fr_FR.po +96 -82
- languages/facebook-button-plugin-hu_HU.mo +0 -0
- languages/facebook-button-plugin-hu_HU.po +103 -83
- languages/facebook-button-plugin-id_ID.mo +0 -0
- languages/facebook-button-plugin-id_ID.po +96 -82
- languages/facebook-button-plugin-ru_RU.mo +0 -0
- languages/facebook-button-plugin-ru_RU.po +102 -82
- languages/facebook-button-plugin-tr_TR.mo +0 -0
- languages/facebook-button-plugin-tr_TR.po +103 -83
- languages/facebook-button-plugin-uk.mo +0 -0
- languages/facebook-button-plugin-uk.po +107 -85
- readme.txt +18 -16
- screenshot-1.png +0 -0
- screenshot-2.png +0 -0
- screenshot-3.png +0 -0
bws_menu/bws_functions.php
CHANGED
@@ -388,7 +388,7 @@ if ( ! function_exists ( 'bws_plugin_banner_timeout' ) ) {
|
|
388 |
|
389 |
if ( ! function_exists( 'bws_plugin_banner_to_settings' ) ) {
|
390 |
function bws_plugin_banner_to_settings( $plugin_info, $plugin_options_name, $banner_url_or_slug, $settings_url, $post_type_url = false ) {
|
391 |
-
global $
|
392 |
|
393 |
$is_network_admin = is_network_admin();
|
394 |
|
@@ -422,8 +422,6 @@ if ( ! function_exists( 'bws_plugin_banner_to_settings' ) ) {
|
|
422 |
|
423 |
if ( ! function_exists( 'bws_plugin_suggest_feature_banner' ) ) {
|
424 |
function bws_plugin_suggest_feature_banner( $plugin_info, $plugin_options_name, $banner_url_or_slug ) {
|
425 |
-
global $wp_version;
|
426 |
-
|
427 |
$is_network_admin = is_network_admin();
|
428 |
|
429 |
$plugin_options = $is_network_admin ? get_site_option( $plugin_options_name ) : get_option( $plugin_options_name );
|
@@ -546,7 +544,20 @@ if ( ! function_exists ( 'bws_plugins_admin_init' ) ) {
|
|
546 |
unset( $recent[ $plugin ] );
|
547 |
update_site_option( 'recently_activated', $recent );
|
548 |
}
|
549 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
550 |
exit();
|
551 |
}
|
552 |
|
@@ -683,9 +694,6 @@ if ( ! class_exists( 'BWS_admin_tooltip' ) ) {
|
|
683 |
private $tooltip_args;
|
684 |
|
685 |
public function __construct( $tooltip_args ) {
|
686 |
-
global $wp_version;
|
687 |
-
if ( 3.3 > $wp_version )
|
688 |
-
return;
|
689 |
/* Default arguments */
|
690 |
$tooltip_args_default = array(
|
691 |
'tooltip_id' => false,
|
@@ -804,9 +812,7 @@ if ( ! function_exists ( 'bws_form_restore_default_confirm' ) ) {
|
|
804 |
/* shortcode */
|
805 |
if ( ! function_exists( 'bws_add_editor_buttons' ) ) {
|
806 |
function bws_add_editor_buttons() {
|
807 |
-
global $bws_shortcode_list
|
808 |
-
if ( $wp_version < '3.3' )
|
809 |
-
return;
|
810 |
if ( ! empty( $bws_shortcode_list ) && current_user_can( 'edit_posts' ) && current_user_can( 'edit_pages' ) ) {
|
811 |
add_filter( 'mce_external_plugins', 'bws_add_buttons' );
|
812 |
add_filter( 'mce_buttons', 'bws_register_buttons' );
|
@@ -832,8 +838,6 @@ if ( ! function_exists( 'bws_register_buttons' ) ) {
|
|
832 |
if ( ! function_exists( 'bws_shortcode_media_button_popup' ) ) {
|
833 |
function bws_shortcode_media_button_popup() {
|
834 |
global $bws_shortcode_list, $wp_version;
|
835 |
-
if ( $wp_version < '3.3' )
|
836 |
-
return;
|
837 |
|
838 |
if ( ! empty( $bws_shortcode_list ) ) { ?>
|
839 |
<div id="bws_shortcode_popup" style="display:none;">
|
388 |
|
389 |
if ( ! function_exists( 'bws_plugin_banner_to_settings' ) ) {
|
390 |
function bws_plugin_banner_to_settings( $plugin_info, $plugin_options_name, $banner_url_or_slug, $settings_url, $post_type_url = false ) {
|
391 |
+
global $bws_plugin_banner_to_settings;
|
392 |
|
393 |
$is_network_admin = is_network_admin();
|
394 |
|
422 |
|
423 |
if ( ! function_exists( 'bws_plugin_suggest_feature_banner' ) ) {
|
424 |
function bws_plugin_suggest_feature_banner( $plugin_info, $plugin_options_name, $banner_url_or_slug ) {
|
|
|
|
|
425 |
$is_network_admin = is_network_admin();
|
426 |
|
427 |
$plugin_options = $is_network_admin ? get_site_option( $plugin_options_name ) : get_option( $plugin_options_name );
|
544 |
unset( $recent[ $plugin ] );
|
545 |
update_site_option( 'recently_activated', $recent );
|
546 |
}
|
547 |
+
/**
|
548 |
+
* @deprecated 1.9.8 (15.12.2016)
|
549 |
+
*/
|
550 |
+
$is_main_page = in_array( $_GET['page'], array( 'bws_panel', 'bws_themes', 'bws_system_status' ) );
|
551 |
+
$page = esc_attr( $_GET['page'] );
|
552 |
+
$tab = isset( $_GET['tab'] ) ? esc_attr( $_GET['tab'] ) : '';
|
553 |
+
|
554 |
+
if ( $is_main_page )
|
555 |
+
$current_page = 'admin.php?page=' . $page;
|
556 |
+
else
|
557 |
+
$current_page = isset( $_GET['tab'] ) ? 'admin.php?page=' . $page . '&tab=' . $tab : 'admin.php?page=' . $page;
|
558 |
+
/*end deprecated */
|
559 |
+
|
560 |
+
wp_redirect( self_admin_url( $current_page . '&activate=true' ) );
|
561 |
exit();
|
562 |
}
|
563 |
|
694 |
private $tooltip_args;
|
695 |
|
696 |
public function __construct( $tooltip_args ) {
|
|
|
|
|
|
|
697 |
/* Default arguments */
|
698 |
$tooltip_args_default = array(
|
699 |
'tooltip_id' => false,
|
812 |
/* shortcode */
|
813 |
if ( ! function_exists( 'bws_add_editor_buttons' ) ) {
|
814 |
function bws_add_editor_buttons() {
|
815 |
+
global $bws_shortcode_list;
|
|
|
|
|
816 |
if ( ! empty( $bws_shortcode_list ) && current_user_can( 'edit_posts' ) && current_user_can( 'edit_pages' ) ) {
|
817 |
add_filter( 'mce_external_plugins', 'bws_add_buttons' );
|
818 |
add_filter( 'mce_buttons', 'bws_register_buttons' );
|
838 |
if ( ! function_exists( 'bws_shortcode_media_button_popup' ) ) {
|
839 |
function bws_shortcode_media_button_popup() {
|
840 |
global $bws_shortcode_list, $wp_version;
|
|
|
|
|
841 |
|
842 |
if ( ! empty( $bws_shortcode_list ) ) { ?>
|
843 |
<div id="bws_shortcode_popup" style="display:none;">
|
bws_menu/bws_menu.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
-
* Version: 2.
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
|
@@ -178,7 +178,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
178 |
$post_max_size = ( ini_get( 'post_max_size' ) ) ? ini_get( 'post_max_size' ) : __( 'N/A', 'bestwebsoft' );
|
179 |
$max_execution_time = ( ini_get( 'max_execution_time' ) ) ? ini_get( 'max_execution_time' ) : __( 'N/A', 'bestwebsoft' );
|
180 |
$memory_limit = ( ini_get( 'memory_limit' ) ) ? ini_get( 'memory_limit' ) : __( 'N/A', 'bestwebsoft' );
|
181 |
-
$wp_memory_limit = ( defined( 'WP_MEMORY_LIMIT' ) ) ? WP_MEMORY_LIMIT : __( 'N/A', 'bestwebsoft' );
|
182 |
$memory_usage = ( function_exists( 'memory_get_usage' ) ) ? round( memory_get_usage() / 1024 / 1024, 2 ) . __( ' Mb', 'bestwebsoft' ) : __( 'N/A', 'bestwebsoft' );
|
183 |
$exif_read_data = ( is_callable( 'exif_read_data' ) ) ? __( 'Yes', 'bestwebsoft' ) . " ( V" . substr( phpversion( 'exif' ), 0,4 ) . ")" : __( 'No', 'bestwebsoft' );
|
184 |
$iptcparse = ( is_callable( 'iptcparse' ) ) ? __( 'Yes', 'bestwebsoft' ) : __( 'No', 'bestwebsoft' );
|
@@ -199,7 +199,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
199 |
__( 'Website URL', 'bestwebsoft' ) => get_option( 'siteurl' ),
|
200 |
__( 'WP Version', 'bestwebsoft' ) => $wp_version,
|
201 |
__( 'WP Multisite', 'bestwebsoft' ) => $multisite,
|
202 |
-
__( 'WP Memory Limit', 'bestwebsoft' ) => $wp_memory_limit,
|
203 |
__( 'Active Theme', 'bestwebsoft' ) => $theme['Name'] . ' ' . $theme['Version'] . ' (' . sprintf( __( 'by %s', 'bestwebsoft' ), $theme['Author'] ) . ')'
|
204 |
),
|
205 |
),
|
@@ -217,7 +217,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
217 |
__( 'PHP Max Script Execute Time', 'bestwebsoft' ) => $max_execution_time,
|
218 |
__( 'PHP Exif support', 'bestwebsoft' ) => $exif_read_data,
|
219 |
__( 'PHP IPTC support', 'bestwebsoft' ) => $iptcparse,
|
220 |
-
__( 'PHP XML support', 'bestwebsoft' ) => $xml_parser_create,
|
221 |
'$_SERVER[HTTP_HOST]' => $_SERVER['HTTP_HOST'],
|
222 |
'$_SERVER[SERVER_NAME]' => $_SERVER['SERVER_NAME'],
|
223 |
),
|
@@ -273,8 +273,8 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
273 |
$headers .= 'Content-type: text/html; charset=utf-8' . "\n";
|
274 |
$headers .= 'From: ' . get_option( 'admin_email' );
|
275 |
$message_text = '<html><head><title>System Info From ' . home_url() . '</title></head><body>';
|
276 |
-
foreach ( $system_info as $info ) {
|
277 |
-
if ( ! empty( $info['data'] ) ) {
|
278 |
$message_text .= '<h4>' . $info['name'];
|
279 |
if ( isset( $info['count'] ) )
|
280 |
$message_text .= ' (' . $info['count'] . ')';
|
@@ -301,7 +301,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
301 |
<span>panel</span>
|
302 |
</a>
|
303 |
</div>
|
304 |
-
<div class="bws-menu-item-icon">•••</div>
|
305 |
<div class="bws-nav-tab-wrapper">
|
306 |
<?php if ( $is_main_page ) { ?>
|
307 |
<a class="bws-nav-tab<?php if ( 'bws_panel' == $page ) echo ' bws-nav-tab-active'; ?>" href="<?php echo self_admin_url( 'admin.php?page=bws_panel' ); ?>"><?php _e( 'Plugins', 'bestwebsoft' ); ?></a>
|
@@ -532,7 +532,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
532 |
} ?>
|
533 |
</div>
|
534 |
<div class="bws_product_description">
|
535 |
-
<?php echo ( strlen( $value_plugin['description'] ) > 100 ) ?
|
536 |
</div>
|
537 |
<div class="bws_product_links">
|
538 |
<?php if ( $is_active || $is_pro_active ) {
|
@@ -685,7 +685,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
685 |
<strong>
|
686 |
<?php echo $info['name'];
|
687 |
if ( isset( $info['count'] ) )
|
688 |
-
echo ' (' . $info['count'] . ')'; ?>
|
689 |
</strong>
|
690 |
</th>
|
691 |
</tr>
|
@@ -699,7 +699,7 @@ if ( ! function_exists( 'bws_add_menu_render' ) ) {
|
|
699 |
<?php } ?>
|
700 |
</tbody>
|
701 |
</table>
|
702 |
-
<?php }
|
703 |
} ?>
|
704 |
</div>
|
705 |
</div>
|
@@ -710,6 +710,7 @@ if ( ! function_exists( 'bws_get_banner_array' ) ) {
|
|
710 |
function bws_get_banner_array() {
|
711 |
global $bstwbsftwppdtplgns_banner_array;
|
712 |
$bstwbsftwppdtplgns_banner_array = array(
|
|
|
713 |
array( 'sclbttns_hide_banner_on_plugin_page', 'social-buttons-pack/social-buttons-pack.php', '1.1.0' ),
|
714 |
array( 'tmsht_hide_banner_on_plugin_page', 'timesheet/timesheet.php', '0.1.3' ),
|
715 |
array( 'pgntn_hide_banner_on_plugin_page', 'pagination/pagination.php', '1.0.6' ),
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
+
* Version: 2.1.1
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
|
178 |
$post_max_size = ( ini_get( 'post_max_size' ) ) ? ini_get( 'post_max_size' ) : __( 'N/A', 'bestwebsoft' );
|
179 |
$max_execution_time = ( ini_get( 'max_execution_time' ) ) ? ini_get( 'max_execution_time' ) : __( 'N/A', 'bestwebsoft' );
|
180 |
$memory_limit = ( ini_get( 'memory_limit' ) ) ? ini_get( 'memory_limit' ) : __( 'N/A', 'bestwebsoft' );
|
181 |
+
$wp_memory_limit = ( defined( 'WP_MEMORY_LIMIT' ) ) ? WP_MEMORY_LIMIT : __( 'N/A', 'bestwebsoft' );
|
182 |
$memory_usage = ( function_exists( 'memory_get_usage' ) ) ? round( memory_get_usage() / 1024 / 1024, 2 ) . __( ' Mb', 'bestwebsoft' ) : __( 'N/A', 'bestwebsoft' );
|
183 |
$exif_read_data = ( is_callable( 'exif_read_data' ) ) ? __( 'Yes', 'bestwebsoft' ) . " ( V" . substr( phpversion( 'exif' ), 0,4 ) . ")" : __( 'No', 'bestwebsoft' );
|
184 |
$iptcparse = ( is_callable( 'iptcparse' ) ) ? __( 'Yes', 'bestwebsoft' ) : __( 'No', 'bestwebsoft' );
|
199 |
__( 'Website URL', 'bestwebsoft' ) => get_option( 'siteurl' ),
|
200 |
__( 'WP Version', 'bestwebsoft' ) => $wp_version,
|
201 |
__( 'WP Multisite', 'bestwebsoft' ) => $multisite,
|
202 |
+
__( 'WP Memory Limit', 'bestwebsoft' ) => $wp_memory_limit,
|
203 |
__( 'Active Theme', 'bestwebsoft' ) => $theme['Name'] . ' ' . $theme['Version'] . ' (' . sprintf( __( 'by %s', 'bestwebsoft' ), $theme['Author'] ) . ')'
|
204 |
),
|
205 |
),
|
217 |
__( 'PHP Max Script Execute Time', 'bestwebsoft' ) => $max_execution_time,
|
218 |
__( 'PHP Exif support', 'bestwebsoft' ) => $exif_read_data,
|
219 |
__( 'PHP IPTC support', 'bestwebsoft' ) => $iptcparse,
|
220 |
+
__( 'PHP XML support', 'bestwebsoft' ) => $xml_parser_create,
|
221 |
'$_SERVER[HTTP_HOST]' => $_SERVER['HTTP_HOST'],
|
222 |
'$_SERVER[SERVER_NAME]' => $_SERVER['SERVER_NAME'],
|
223 |
),
|
273 |
$headers .= 'Content-type: text/html; charset=utf-8' . "\n";
|
274 |
$headers .= 'From: ' . get_option( 'admin_email' );
|
275 |
$message_text = '<html><head><title>System Info From ' . home_url() . '</title></head><body>';
|
276 |
+
foreach ( $system_info as $info ) {
|
277 |
+
if ( ! empty( $info['data'] ) ) {
|
278 |
$message_text .= '<h4>' . $info['name'];
|
279 |
if ( isset( $info['count'] ) )
|
280 |
$message_text .= ' (' . $info['count'] . ')';
|
301 |
<span>panel</span>
|
302 |
</a>
|
303 |
</div>
|
304 |
+
<div class="bws-menu-item-icon">•••</div>
|
305 |
<div class="bws-nav-tab-wrapper">
|
306 |
<?php if ( $is_main_page ) { ?>
|
307 |
<a class="bws-nav-tab<?php if ( 'bws_panel' == $page ) echo ' bws-nav-tab-active'; ?>" href="<?php echo self_admin_url( 'admin.php?page=bws_panel' ); ?>"><?php _e( 'Plugins', 'bestwebsoft' ); ?></a>
|
532 |
} ?>
|
533 |
</div>
|
534 |
<div class="bws_product_description">
|
535 |
+
<?php echo ( strlen( $value_plugin['description'] ) > 100 ) ? mb_substr( $value_plugin['description'], 0, 100 ) . '...' : $value_plugin['description']; ?>
|
536 |
</div>
|
537 |
<div class="bws_product_links">
|
538 |
<?php if ( $is_active || $is_pro_active ) {
|
685 |
<strong>
|
686 |
<?php echo $info['name'];
|
687 |
if ( isset( $info['count'] ) )
|
688 |
+
echo ' (' . $info['count'] . ')'; ?>
|
689 |
</strong>
|
690 |
</th>
|
691 |
</tr>
|
699 |
<?php } ?>
|
700 |
</tbody>
|
701 |
</table>
|
702 |
+
<?php }
|
703 |
} ?>
|
704 |
</div>
|
705 |
</div>
|
710 |
function bws_get_banner_array() {
|
711 |
global $bstwbsftwppdtplgns_banner_array;
|
712 |
$bstwbsftwppdtplgns_banner_array = array(
|
713 |
+
array( 'gglstpvrfctn_hide_banner_on_plugin_page', 'bws-google-2-step-verification/bws-google-2-step-verification.php', '1.0.0' ),
|
714 |
array( 'sclbttns_hide_banner_on_plugin_page', 'social-buttons-pack/social-buttons-pack.php', '1.1.0' ),
|
715 |
array( 'tmsht_hide_banner_on_plugin_page', 'timesheet/timesheet.php', '0.1.3' ),
|
716 |
array( 'pgntn_hide_banner_on_plugin_page', 'pagination/pagination.php', '1.0.6' ),
|
bws_menu/class-bws-settings.php
CHANGED
@@ -791,7 +791,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
|
|
791 |
}
|
792 |
$current = get_site_transient( 'update_plugins' );
|
793 |
|
794 |
-
if ( ! empty( $this->all_plugins ) && isset( $current ) && is_array( $current->response ) ) {
|
795 |
$to_send = array();
|
796 |
$to_send["plugins"][ $this->plugin_basename ] = $this->all_plugins[ $this->plugin_basename ];
|
797 |
$to_send["plugins"][ $this->plugin_basename ]["bws_license_key"] = $bws_license_key;
|
@@ -895,7 +895,7 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
|
|
895 |
|
896 |
if ( ! array_key_exists( $bws_license_plugin, $this->all_plugins ) ) {
|
897 |
$current = get_site_transient( 'update_plugins' );
|
898 |
-
if ( ! empty( $current ) && is_array( $current->response ) ) {
|
899 |
$to_send = array();
|
900 |
$to_send["plugins"][ $bws_license_plugin ] = array();
|
901 |
$to_send["plugins"][ $bws_license_plugin ]["bws_license_key"] = $bws_license_key;
|
@@ -1071,6 +1071,11 @@ if ( ! class_exists( 'Bws_Settings_Tabs' ) ) {
|
|
1071 |
* @return void
|
1072 |
*/
|
1073 |
public function restore_options() {
|
|
|
|
|
|
|
|
|
|
|
1074 |
/**
|
1075 |
* filter - Change default_options array OR process custom functions
|
1076 |
*/
|
791 |
}
|
792 |
$current = get_site_transient( 'update_plugins' );
|
793 |
|
794 |
+
if ( ! empty( $this->all_plugins ) && ! empty( $current ) && isset( $current->response ) && is_array( $current->response ) ) {
|
795 |
$to_send = array();
|
796 |
$to_send["plugins"][ $this->plugin_basename ] = $this->all_plugins[ $this->plugin_basename ];
|
797 |
$to_send["plugins"][ $this->plugin_basename ]["bws_license_key"] = $bws_license_key;
|
895 |
|
896 |
if ( ! array_key_exists( $bws_license_plugin, $this->all_plugins ) ) {
|
897 |
$current = get_site_transient( 'update_plugins' );
|
898 |
+
if ( ! empty( $current ) && isset( $current->response ) && is_array( $current->response ) ) {
|
899 |
$to_send = array();
|
900 |
$to_send["plugins"][ $bws_license_plugin ] = array();
|
901 |
$to_send["plugins"][ $bws_license_plugin ]["bws_license_key"] = $bws_license_key;
|
1071 |
* @return void
|
1072 |
*/
|
1073 |
public function restore_options() {
|
1074 |
+
unset(
|
1075 |
+
$this->default_options['first_install'],
|
1076 |
+
$this->default_options['suggest_feature_banner'],
|
1077 |
+
$this->default_options['display_settings_notice']
|
1078 |
+
);
|
1079 |
/**
|
1080 |
* filter - Change default_options array OR process custom functions
|
1081 |
*/
|
bws_menu/css/general_style.css
CHANGED
@@ -39,7 +39,7 @@
|
|
39 |
#adminmenu #toplevel_page_bws_panel .wp-menu-image {
|
40 |
font-family: 'bwsicons' !important;
|
41 |
}
|
42 |
-
#adminmenu #toplevel_page_bws_panel
|
43 |
content: "\e93c";
|
44 |
font-family: 'bwsicons' !important;
|
45 |
}
|
@@ -56,6 +56,7 @@
|
|
56 |
}
|
57 |
div.bws_info {
|
58 |
margin-top: 7px;
|
|
|
59 |
}
|
60 |
.bws_info_small {
|
61 |
font-size: 11px !important;
|
@@ -87,22 +88,24 @@ div.updated.bws-notice {
|
|
87 |
.bws-plugin-reviews-rate,
|
88 |
.bws-plugin-reviews-support,
|
89 |
.bws-plugin-reviews-donate {
|
90 |
-
display: inline-block;
|
91 |
padding: 10px;
|
92 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
}
|
94 |
@media screen and (max-width: 1600px) {
|
95 |
.bws-plugin-reviews-rate,
|
96 |
.bws-plugin-reviews-support {
|
97 |
border-bottom: 1px solid #70A8C2;
|
98 |
border-right: none;
|
99 |
-
}
|
100 |
-
.bws-plugin-reviews-rate,
|
101 |
-
.bws-plugin-reviews-support,
|
102 |
-
.bws-plugin-reviews-donate {
|
103 |
-
width: initial;
|
104 |
-
display: block;
|
105 |
-
}
|
106 |
}
|
107 |
/*
|
108 |
* styles for Go PRO tab
|
@@ -240,7 +243,8 @@ a.bws_plugin_pro_version {
|
|
240 |
.bws_pro_version_tooltip .bws_info a {
|
241 |
display: block;
|
242 |
}
|
243 |
-
.bws_pro_version_tooltip .bws_button
|
|
|
244 |
margin: 10px 10px 5px;
|
245 |
float: none;
|
246 |
}
|
@@ -465,9 +469,7 @@ span.bws_code {
|
|
465 |
text-shadow: 0 0 2px #000;
|
466 |
padding: 4px 8px;
|
467 |
border: 1px solid rgba(255,255,255,0.25);
|
468 |
-
background
|
469 |
-
background-color: rgba(25,25,25,0.92);
|
470 |
-
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(transparent), to(#000));
|
471 |
border-radius: 3px;
|
472 |
-webkit-border-radius: 3px;
|
473 |
-moz-border-radius: 3px;
|
@@ -606,7 +608,7 @@ span.bws_code {
|
|
606 |
width: 161px;
|
607 |
margin: -1px 0 0 0;
|
608 |
border-top: 1px solid #ddd;
|
609 |
-
padding: 20px
|
610 |
color: #000 !important;
|
611 |
background: #fff !important;
|
612 |
}
|
@@ -646,7 +648,8 @@ span.bws_code {
|
|
646 |
#bws_settings_tabs li.bws-tab-import-export a:before {
|
647 |
content: "\f317";
|
648 |
}
|
649 |
-
#bws_settings_tabs li.bws-tab-errors a:before
|
|
|
650 |
font-family: 'bwsicons';
|
651 |
content: "\e93d";
|
652 |
font-size: 18px;
|
@@ -735,6 +738,9 @@ span.bws_code {
|
|
735 |
margin-right: 160px;
|
736 |
margin-left: 0;
|
737 |
}
|
|
|
|
|
|
|
738 |
@media only screen and (max-width: 1100px) {
|
739 |
#bws_settings_tabs {
|
740 |
width: 59px;
|
39 |
#adminmenu #toplevel_page_bws_panel .wp-menu-image {
|
40 |
font-family: 'bwsicons' !important;
|
41 |
}
|
42 |
+
#adminmenu #toplevel_page_bws_panel .wp-menu-image:before {
|
43 |
content: "\e93c";
|
44 |
font-family: 'bwsicons' !important;
|
45 |
}
|
56 |
}
|
57 |
div.bws_info {
|
58 |
margin-top: 7px;
|
59 |
+
word-break: break-all;
|
60 |
}
|
61 |
.bws_info_small {
|
62 |
font-size: 11px !important;
|
88 |
.bws-plugin-reviews-rate,
|
89 |
.bws-plugin-reviews-support,
|
90 |
.bws-plugin-reviews-donate {
|
|
|
91 |
padding: 10px;
|
92 |
+
display: block;
|
93 |
+
}
|
94 |
+
|
95 |
+
@media screen and (min-width: 1600px) {
|
96 |
+
.bws-plugin-reviews-rate,
|
97 |
+
.bws-plugin-reviews-support,
|
98 |
+
.bws-plugin-reviews-donate {
|
99 |
+
display: inline-block;
|
100 |
+
width: 30%;
|
101 |
+
}
|
102 |
}
|
103 |
@media screen and (max-width: 1600px) {
|
104 |
.bws-plugin-reviews-rate,
|
105 |
.bws-plugin-reviews-support {
|
106 |
border-bottom: 1px solid #70A8C2;
|
107 |
border-right: none;
|
108 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
}
|
110 |
/*
|
111 |
* styles for Go PRO tab
|
243 |
.bws_pro_version_tooltip .bws_info a {
|
244 |
display: block;
|
245 |
}
|
246 |
+
.bws_pro_version_tooltip .bws_button,
|
247 |
+
.bws_pro_version_tooltip .bws_button:hover {
|
248 |
margin: 10px 10px 5px;
|
249 |
float: none;
|
250 |
}
|
469 |
text-shadow: 0 0 2px #000;
|
470 |
padding: 4px 8px;
|
471 |
border: 1px solid rgba(255,255,255,0.25);
|
472 |
+
background: rgba(25,25,25,0.92);
|
|
|
|
|
473 |
border-radius: 3px;
|
474 |
-webkit-border-radius: 3px;
|
475 |
-moz-border-radius: 3px;
|
608 |
width: 161px;
|
609 |
margin: -1px 0 0 0;
|
610 |
border-top: 1px solid #ddd;
|
611 |
+
padding: 20px 21px 20px 45px;
|
612 |
color: #000 !important;
|
613 |
background: #fff !important;
|
614 |
}
|
648 |
#bws_settings_tabs li.bws-tab-import-export a:before {
|
649 |
content: "\f317";
|
650 |
}
|
651 |
+
#bws_settings_tabs li.bws-tab-errors a:before,
|
652 |
+
#bws_settings_tabs li.bws-tab-messages a:before {
|
653 |
font-family: 'bwsicons';
|
654 |
content: "\e93d";
|
655 |
font-size: 18px;
|
738 |
margin-right: 160px;
|
739 |
margin-left: 0;
|
740 |
}
|
741 |
+
.bws_margined_box {
|
742 |
+
margin: 1em 0;
|
743 |
+
}
|
744 |
@media only screen and (max-width: 1100px) {
|
745 |
#bws_settings_tabs {
|
746 |
width: 59px;
|
bws_menu/fonts/bwsicons.eot
CHANGED
Binary file
|
bws_menu/fonts/bwsicons.svg
CHANGED
@@ -34,7 +34,7 @@
|
|
34 |
<glyph unicode="" glyph-name="job-board" d="M640 356.16c0.064-28.608-12.864-36.16-41.408-36.16h-171.52c-28.608 0-43.072 7.552-43.072 36.16v18.432c-134.208 9.024-257.984 39.936-384 73.472v-355.712c0-51.008 33.472-92.352 84.416-92.352h847.296c50.944 0 92.288 41.344 92.288 92.352v355.648c-125.952-33.472-249.728-64.384-384-73.408v-18.432zM462.848 384h98.24c8.256 0 14.912 6.656 14.912 14.848v98.304c0 8.192-6.656 14.848-14.848 14.848h-98.304c-8.192 0-14.848-6.656-14.848-14.848v-98.24c0-8.256 6.656-14.912 14.848-14.912zM931.648 832h-227.648v20.864c0 60.352-29.504 107.136-89.856 107.136h-203.776c-60.352 0-90.368-46.784-90.368-107.136v-20.864h-235.328c-51.008 0-84.48-41.344-84.48-92.352v-144.256c125.952-33.472 249.6-73.664 383.808-82.688v12.864c0 28.608 22.464 51.712 51.008 51.712h154.112c28.544 0 50.88-23.104 50.88-51.712v-13.568c134.208 9.024 258.048 49.92 384 83.392v144.256c0 51.008-41.344 92.352-92.352 92.352zM640 832h-256v27.84c0 21.376 20.48 36.16 41.856 36.16h172.288c21.312 0 41.856-19.648 41.856-40.96v-23.040z" />
|
35 |
<glyph unicode="" glyph-name="latest-posts" d="M128.016 576.080h256.032v-64.008h-256.032v64.008zM128.016 448.064h128.016v-64.008h-128.016v64.008zM128.016 320.048h128.016v-64.008h-128.016v64.008zM128.016 704.096h512.064v-64.008h-512.064v64.008zM128.016 832.112h512.064v-64.008h-512.064v64.008zM768.096 626.518v234.525c0 54.663-43.141 99.084-96.14 99.084h-575.816c-52.999 0-96.14-44.486-96.14-99.084v-697.943c0-54.663 43.141-99.084 96.14-99.084h304.422c64.584-78.090 162.196-127.888 271.458-127.888 194.456 0 352.044 157.588 352.044 351.98 0.064 161.044-108.302 296.549-255.968 338.41zM96.14 128.024c-16.962 0-32.132 15.106-32.132 33.732v699.287c0 18.626 15.17 35.076 32.132 35.076h575.752c17.026 0 32.196-16.45 32.196-35.076v-222.556c-10.561 0.96-21.187 1.6-32.004 1.6-194.456 0-352.044-157.588-352.044-351.98 0-57.735 14.146-112.014 38.789-160.084h-262.689zM768.096 255.976h-128.016v256.032h64.008v-192.024h64.008v-64.008z" />
|
36 |
<glyph unicode="" glyph-name="limit-attempts" d="M990.208 314.24v55.104c0 50.88-42.432 78.656-94.144 78.656-51.776 0-93.696-27.776-93.696-78.656v-56.192c-17.28-0.96-34.368-9.728-34.368-26.944v-125.888c0-17.856 14.72-32.32 32.896-32.32h190.784c18.176 0 32.32 14.464 32.32 32.32v125.888c0 17.216-16.576 27.072-33.792 28.032zM926.016 182.016c-0.96-1.408-2.56-2.304-4.352-2.304h-51.392c-1.728 0-3.328 0.832-4.352 2.304-0.96 1.408-1.152 3.264-0.448 4.8l12.416 31.168c-6.592 5.312-10.496 13.248-10.496 21.696 0 15.488 12.8 28.032 28.544 28.032 15.68 0 28.544-12.608 28.544-28.032 0-8.448-3.904-16.384-10.496-21.696l12.416-31.168c0.768-1.6 0.576-3.392-0.384-4.8zM955.328 312.832h-119.168v56.512c0 25.6 34.304 44.864 60.416 44.864 26.048 0 58.752-19.2 58.752-44.864v-56.512zM315.008 460.8c-4.928-2.944-19.648-8.896-33.472-12.8 13.76-3.904 28.544-9.856 33.408-12.8 9.856-4.928 12.8-16.704 6.912-26.56s-16.704-12.8-26.56-6.912c-4.928 2.944-17.728 12.8-27.52 23.616 3.968-13.696 5.952-30.464 5.952-36.352 0-10.816-8.832-19.648-18.688-19.648s-18.688 8.832-18.688 19.648c0 5.888 1.984 22.592 5.888 36.352-9.856-10.816-22.592-20.672-27.52-23.616-7.872-5.824-19.712-2.88-24.576 6.912s-2.944 21.632 6.848 26.56c4.928 2.944 19.648 8.896 33.472 12.8-13.824 3.904-28.544 9.856-33.472 12.8-9.856 4.928-12.8 16.704-6.912 26.56 4.928 9.856 16.704 12.8 25.536 6.912 4.928-2.944 17.728-12.8 27.52-23.616-3.84 13.696-5.824 30.464-5.824 36.352 0 10.816 8.832 19.648 18.688 19.648s18.688-8.832 18.688-19.648c0-5.888-1.984-22.592-5.888-36.352 9.856 10.816 22.592 20.672 27.52 23.616 8.832 5.888 20.672 2.944 25.536-6.912 5.952-9.856 2.944-21.632-6.848-26.56zM507.008 460.8c-4.928-2.944-19.648-8.896-33.472-12.8 13.76-3.904 28.544-9.856 33.408-12.8 9.856-4.928 12.8-16.704 6.912-26.56s-16.704-12.8-26.56-6.912c-4.928 2.944-17.728 12.8-27.52 23.616 3.968-13.696 5.952-30.464 5.952-36.352 0-10.816-8.832-19.648-18.688-19.648s-18.688 8.832-18.688 19.648c0 5.888 1.984 22.592 5.888 36.352-9.856-10.816-22.592-20.672-27.52-23.616-7.872-5.824-19.712-2.88-24.576 6.912s-2.944 21.632 6.848 26.56c4.928 2.944 19.648 8.896 33.472 12.8-13.824 3.904-28.544 9.856-33.472 12.8-9.856 4.928-12.8 16.704-6.912 26.56 4.928 9.856 16.704 12.8 25.536 6.912 4.928-2.944 17.728-12.8 27.52-23.616-3.84 13.696-5.824 30.464-5.824 36.352 0 10.816 8.832 19.648 18.688 19.648s18.688-8.832 18.688-19.648c0-5.888-1.984-22.592-5.888-36.352 9.856 10.816 22.592 20.672 27.52 23.616 8.832 5.888 20.672 2.944 25.536-6.912 5.952-9.856 2.944-21.632-6.848-26.56zM699.008 460.8c-4.928-2.944-19.648-8.832-33.408-12.8 13.76-3.904 28.544-9.856 33.408-12.8 9.856-4.928 12.8-16.704 6.912-26.56s-16.704-12.8-26.56-6.912c-4.928 2.944-17.728 12.8-27.52 23.616 3.904-13.76 5.888-30.464 5.888-36.352 0-10.816-8.832-19.648-18.688-19.648s-18.688 8.832-18.688 19.648c0 5.888 1.984 22.592 5.888 36.352-9.856-10.816-22.592-20.672-27.52-23.616-7.872-5.824-19.712-2.88-24.576 6.912s-2.944 21.632 6.848 26.56c4.928 2.944 19.648 8.896 33.472 12.8-13.824 3.904-28.544 9.856-33.472 12.8-9.856 4.928-12.8 16.704-6.912 26.56 4.928 9.856 16.704 12.8 25.536 6.912 4.928-2.944 17.728-12.8 27.52-23.616-3.84 13.696-5.824 30.464-5.824 36.352 0 10.816 8.832 19.648 18.688 19.648s18.688-8.832 18.688-19.648c0-5.888-1.984-22.592-5.888-36.352 9.856 10.816 22.592 20.672 27.52 23.616 8.832 5.888 20.672 2.944 25.536-6.912 5.952-9.856 2.944-21.632-6.848-26.56zM704 320h-640v256h768v-64h64v48.448c0 43.904-36.736 79.552-81.92 79.552h-732.16c-5.632 0-11.136-0.576-16.448-1.6-2.688-0.576-5.312-1.216-7.872-1.984-33.344-10.112-57.6-40.32-57.6-75.968v0-224.96c0-32.896 20.672-61.184 50.112-73.28 4.928-1.984 10.048-3.584 15.36-4.672 5.312-0.96 10.816-1.536 16.448-1.536h622.080v64z" />
|
37 |
-
<glyph unicode="" glyph-name="linkedin" d="
|
38 |
<glyph unicode="" glyph-name="multilanguage" d="M152.64 228.224c0.128 0 17.28 0.32 23.616 4.032 16.128 10.048 37.888 34.752 56.96 57.152l5.952 6.912c24.192 27.712 48.704 59.776 73.024 95.552 4.48-3.328 10.368-7.872 15.168-11.584 9.408-7.168 18.816-14.4 22.912-17.024 9.088-5.952 43.904-24.96 52.224-28.672 1.472-0.576 3.84-1.536 6.592-2.688 17.152-7.168 26.368-10.624 32.192-10.624 6.336 0 9.728 3.968 10.816 7.68 1.216 4.736-3.136 38.784-14.72 42.56-3.776 1.408-71.232 28.992-81.216 33.6-5.76 2.816-17.472 7.68-27.136 11.712l-0.256 0.128c25.216 39.168 39.040 65.664 39.296 66.112 1.472 3.136 6.272 12.416 11.648 22.976 19.904 38.848 21.056 41.344 21.568 43.968 0.576 3.264 1.472 17.28 0.512 21.952l-2.752 8.128h-7.68c-3.584 0-7.232-1.472-13.312-3.84-3.584-1.472-7.936-3.136-12.8-4.736-7.168-2.368-16.64-7.296-25.728-12.16-8.512-4.48-19.136-10.048-23.808-10.816-7.424-1.728-24.832-7.808-41.664-13.696-6.848-2.432-13.312-4.672-18.368-6.4-16.192-5.44-46.976-14.4-60.288-17.92-6.336-1.728-12.352-2.688-17.536-3.456-5.632-0.896-10.56-1.728-14.208-2.944l-6.848-2.24 0.384-6.976c0.64-10.944 3.328-15.936 4.224-17.216 2.624-4.224 11.392-13.632 21.696-16 13.568-3.84 26.496-1.792 31.488-0.192 4.16 0.768 20.864 5.952 24.704 13.376 1.472 2.88 1.472 5.888 1.472 8.576 4.992 1.472 13.696 3.648 20.032 5.248 7.872 1.984 15.68 3.968 20.544 5.376l4.224 1.408c17.472 5.76 31.040 10.048 40.448 12.864-11.264-23.104-32.768-64.896-42.56-82.24-11.2-20.8-79.488-113.984-93.824-130.24-2.88-3.264-6.72-7.68-10.944-12.672-11.52-13.376-28.992-33.664-35.072-38.144l-12.16-8.896 13.568-6.656c1.92-0.896 4.16-1.28 7.616-1.28zM257.088 553.152l1.024-0.064c13.184 0 29.056 3.904 38.272 7.488 7.616 2.944 26.048 11.392 34.112 26.368 1.664 3.008 5.056 9.28 2.816 21.568-2.496 10.624-10.24 16.704-22.080 16.704h-0.128c-6.976-0.704-25.088-5.504-33.536-8.256l-4.544-1.28c-8.896-2.496-22.336-6.272-28.608-7.68-0.448-0.128-1.856-0.32-4.736-0.32-5.76 0-11.904 1.024-14.208 1.664l-1.984 1.92-10.24-0.192-2.432-5.44c-3.264-7.296 5.504-27.904 12.288-35.136 14.080-13.76 26.112-16.448 33.984-17.344zM706.496 35.776c-3.2-1.792-6.4-3.584-9.6-5.376-11.84-6.72-22.976-13.12-35.072-18.496-63.36-26.624-111.552-36.032-184.064-36.032-60.416 0-134.464 25.728-179.776 47.872-2.432 1.088-6.912 3.584-12.096 6.4-19.776 10.88-26.752 14.272-31.808 14.272-11.072 0-19.776-8.768-19.776-19.904 0-6.72 2.368-11.52 8.512-16.512 50.176-35.712 164.992-72 227.456-72h48.64c17.728 0 37.568 3.52 54.272 6.912 51.968 8.576 108.032 29.376 155.328 57.536l28.736-46.272 41.536 120.384-121.536 9.792 29.248-48.576zM684.672 446.912l80.512-23.744-36.48 128.512zM868.928 711.36v236.736c0 7.424-5.184 11.904-11.584 11.904-5.248 0-365.696-121.728-369.728-122.88l-323.328 112.128v-217.472c-49.28-16.448-84.608-27.776-86.4-28.288-3.456-1.152-8.128-2.304-11.584-6.272-1.152-1.152-1.728-3.904-2.304-5.632v-610.496c0-0.576 0.576-1.152 0.576-1.728 1.728-4.544 5.824-7.36 10.432-7.36 5.76 0 421.312 137.024 430.592 141.056 0 0 0.576 0 448.576-139.328v611.008l-85.248 26.624zM488.768 248.32l-383.424-123.328v539.2l383.424 131.968v-547.84zM827.584 902.656v-183.872l-294.592 85.824 294.592 98.048zM805.76 278.144l-21.44 76.48-122.304 36.8-26.048-62.272-59.072 17.536 125.184 303.552 57.984-17.536 104.896-372.096-59.2 17.536z" />
|
39 |
<glyph unicode="" glyph-name="pagination" d="M746.688 640v0h-234.688v-448h234.688c117.824 0 213.312 95.232 213.312 220.864 0 125.696-95.488 227.136-213.312 227.136zM814.464 384.448l-112.64-92.48c-6.656-5.568-14.848-8.512-23.552-8.512-12.416 0-24.064 6.4-31.232 17.024-11.84 17.728-8.448 41.984 7.744 55.168l74.176 60.928-71.936 60.032c-16 13.44-19.264 37.696-7.296 55.168 6.144 9.024 15.68 14.976 26.112 16.448 10.432 1.344 20.544-1.6 28.736-8.384l110.144-91.84c9.28-7.808 14.592-19.392 14.464-31.808 0.064-12.288-5.504-24.192-14.72-31.744zM0 412.864c0-125.632 95.488-220.864 213.312-220.864v0h234.688v448h-234.688c-117.824 0-213.312-101.44-213.312-227.136zM130.752 416.128c-0.064 12.416 5.184 24.064 14.528 31.872l110.144 91.904c8.192 6.784 18.304 9.664 28.736 8.32 10.432-1.472 19.904-7.424 26.112-16.448 11.904-17.536 8.704-41.728-7.296-55.168l-71.936-60.032 74.176-60.928c16.192-13.184 19.584-37.44 7.744-55.168-7.168-10.624-18.816-17.024-31.232-17.024-8.704 0-16.832 3.008-23.552 8.512l-112.64 92.48c-9.216 7.552-14.784 19.456-14.784 31.68z" />
|
40 |
<glyph unicode="" glyph-name="pdf-print" d="M960 704h-128v198.208c0 32.384-26.24 57.792-58.688 57.792h-522.624c-32.448 0-58.688-25.408-58.688-57.792v-198.208h-128c-35.328 0-64-28.672-64-64v-448c0-35.328 28.672-64 64-64h128v-134.784c0-31.616 25.6-57.216 57.216-57.216h525.568c31.616 0 57.216 25.6 57.216 57.216v134.784h128c35.328 0 64 28.672 64 64v448c0 35.328-28.672 64-64 64zM256 896h512v-192h-512v192zM768 128v-128h-512v192h512v-64zM768 512h-64v64h64v-64zM896 512h-64v64h64v-64z" />
|
@@ -69,4 +69,6 @@
|
|
69 |
<glyph unicode="" glyph-name="shortcode" d="M0 896v-896h384v192h-192v512h192v192h-192zM832 896h-192v-192h192v-512h-192v-192h384v896z" />
|
70 |
<glyph unicode="" glyph-name="bws-logo" d="M953.913 325.746c-21.447-38.855-46.592-77.198-75.435-114.233-68.551-100.466-192.91-193.365-254.919-225.052-38.457-19.684-89.088-34.702-126.805-44.316 204.459-39.538 403.285 114.46 466.034 352.37 6.997 26.852 12.004 53.134 15.417 78.734-7.566-15.872-15.588-31.744-24.292-47.502zM327.964 88.519c-70.087 61.952-114.176 154.169-114.176 264.533 0 207.076 154.852 374.898 345.884 374.898 117.931 0 222.151-64.114 284.501-161.906 1.479 4.494 3.129 9.045 4.437 13.54 17.010 57.799 23.438 113.38 18.887 162.816-35.442 34.93-77.995 62.976-126.862 82.716-207.588 83.854-477.753-63.431-543.346-312.946-40.789-154.51-9.899-309.931 70.485-420.58 19.058-3.527 39.14-4.494 60.188-3.072zM934.059 893.611c-119.694 109.682-325.632 79.019-507.79-59.392 44.658 22.357 92.16 36.807 139.89 42.098 103.31 41.529 200.932 38.343 264.704-19.342 70.656-63.886 83.797-180.167 46.364-307.314-25.145-85.618-73.159-176.185-141.995-258.958-154.567-185.742-454.428-341.902-620.203-137.671 13.596-54.67 39.481-102.059 78.62-137.842 96.313-88.178 248.377-85.618 398.962-9.33 85.504 43.349 170.61 110.364 244.565 198.201 38.286 45.397 70.884 93.127 97.564 141.54 116.224 210.603 121.97 435.655-0.683 548.011zM791.211 595.854c-4.38 5.86-23.666 26.226-28.956 30.436-56.092 45.056-124.985 71.68-199.68 71.68-46.99 0-91.648-10.468-132.38-29.468 15.246-6.656 30.322-14.165 45.284-22.756 155.989-89.088 240.64-247.808 205.824-372.224 2.788 3.3 5.518 6.599 8.021 9.785 54.784 71.054 114.859 157.298 144.953 243.712-12.174 23.78-26.453 46.82-43.065 68.836zM24.007 593.977c-71.794-176.469 23.154-384.683 207.303-496.299-24.86 33.451-41.7 72.42-56.149 121.344-137.444 102.741-194.446 258.162-134.087 372.907 39.708 75.662 123.79 115.029 221.355 114.404 33.166 41.017 72.704 74.524 115.996 99.214-158.549 1.877-299.065-75.264-354.418-211.57zM263.794 453.632c0.569 10.524 1.593 20.935 3.015 31.118-12.857-32.768-20.821-68.608-22.642-106.268-5.86-116.224 46.99-220.615 130.219-278.983 38.059 4.38 74.638 16.213 108.601 34.418-132.096 32.939-226.93 166.059-219.193 319.716z" />
|
71 |
<glyph unicode="" glyph-name="warning" d="M508.992-64c-287.040 3.136-512.64 235.584-508.928 524.352 3.52 274.112 239.040 502.592 514.944 499.648 287.040-3.136 512.64-235.584 508.928-524.352-3.52-274.112-239.040-502.592-514.944-499.648zM424.128 768c-0.576-5.44 11.84-247.744 17.92-365.76 0.704-14.208 5.952-18.24 5.952-18.24h128c0 0 5.568 6.784 6.4 25.472 3.584 82.752 16.64 321.152 18.304 358.528-60.16 0-117.12 0-176.576 0zM507.136 319.872c-68.288-2.688-108.352-41.088-105.408-101.056 2.816-57.472 46.592-92.544 113.152-90.752 69.952 1.92 107.264 39.168 104.384 104.256-2.496 55.808-46.4 90.112-112.128 87.552z" />
|
|
|
|
|
72 |
</font></defs></svg>
|
34 |
<glyph unicode="" glyph-name="job-board" d="M640 356.16c0.064-28.608-12.864-36.16-41.408-36.16h-171.52c-28.608 0-43.072 7.552-43.072 36.16v18.432c-134.208 9.024-257.984 39.936-384 73.472v-355.712c0-51.008 33.472-92.352 84.416-92.352h847.296c50.944 0 92.288 41.344 92.288 92.352v355.648c-125.952-33.472-249.728-64.384-384-73.408v-18.432zM462.848 384h98.24c8.256 0 14.912 6.656 14.912 14.848v98.304c0 8.192-6.656 14.848-14.848 14.848h-98.304c-8.192 0-14.848-6.656-14.848-14.848v-98.24c0-8.256 6.656-14.912 14.848-14.912zM931.648 832h-227.648v20.864c0 60.352-29.504 107.136-89.856 107.136h-203.776c-60.352 0-90.368-46.784-90.368-107.136v-20.864h-235.328c-51.008 0-84.48-41.344-84.48-92.352v-144.256c125.952-33.472 249.6-73.664 383.808-82.688v12.864c0 28.608 22.464 51.712 51.008 51.712h154.112c28.544 0 50.88-23.104 50.88-51.712v-13.568c134.208 9.024 258.048 49.92 384 83.392v144.256c0 51.008-41.344 92.352-92.352 92.352zM640 832h-256v27.84c0 21.376 20.48 36.16 41.856 36.16h172.288c21.312 0 41.856-19.648 41.856-40.96v-23.040z" />
|
35 |
<glyph unicode="" glyph-name="latest-posts" d="M128.016 576.080h256.032v-64.008h-256.032v64.008zM128.016 448.064h128.016v-64.008h-128.016v64.008zM128.016 320.048h128.016v-64.008h-128.016v64.008zM128.016 704.096h512.064v-64.008h-512.064v64.008zM128.016 832.112h512.064v-64.008h-512.064v64.008zM768.096 626.518v234.525c0 54.663-43.141 99.084-96.14 99.084h-575.816c-52.999 0-96.14-44.486-96.14-99.084v-697.943c0-54.663 43.141-99.084 96.14-99.084h304.422c64.584-78.090 162.196-127.888 271.458-127.888 194.456 0 352.044 157.588 352.044 351.98 0.064 161.044-108.302 296.549-255.968 338.41zM96.14 128.024c-16.962 0-32.132 15.106-32.132 33.732v699.287c0 18.626 15.17 35.076 32.132 35.076h575.752c17.026 0 32.196-16.45 32.196-35.076v-222.556c-10.561 0.96-21.187 1.6-32.004 1.6-194.456 0-352.044-157.588-352.044-351.98 0-57.735 14.146-112.014 38.789-160.084h-262.689zM768.096 255.976h-128.016v256.032h64.008v-192.024h64.008v-64.008z" />
|
36 |
<glyph unicode="" glyph-name="limit-attempts" d="M990.208 314.24v55.104c0 50.88-42.432 78.656-94.144 78.656-51.776 0-93.696-27.776-93.696-78.656v-56.192c-17.28-0.96-34.368-9.728-34.368-26.944v-125.888c0-17.856 14.72-32.32 32.896-32.32h190.784c18.176 0 32.32 14.464 32.32 32.32v125.888c0 17.216-16.576 27.072-33.792 28.032zM926.016 182.016c-0.96-1.408-2.56-2.304-4.352-2.304h-51.392c-1.728 0-3.328 0.832-4.352 2.304-0.96 1.408-1.152 3.264-0.448 4.8l12.416 31.168c-6.592 5.312-10.496 13.248-10.496 21.696 0 15.488 12.8 28.032 28.544 28.032 15.68 0 28.544-12.608 28.544-28.032 0-8.448-3.904-16.384-10.496-21.696l12.416-31.168c0.768-1.6 0.576-3.392-0.384-4.8zM955.328 312.832h-119.168v56.512c0 25.6 34.304 44.864 60.416 44.864 26.048 0 58.752-19.2 58.752-44.864v-56.512zM315.008 460.8c-4.928-2.944-19.648-8.896-33.472-12.8 13.76-3.904 28.544-9.856 33.408-12.8 9.856-4.928 12.8-16.704 6.912-26.56s-16.704-12.8-26.56-6.912c-4.928 2.944-17.728 12.8-27.52 23.616 3.968-13.696 5.952-30.464 5.952-36.352 0-10.816-8.832-19.648-18.688-19.648s-18.688 8.832-18.688 19.648c0 5.888 1.984 22.592 5.888 36.352-9.856-10.816-22.592-20.672-27.52-23.616-7.872-5.824-19.712-2.88-24.576 6.912s-2.944 21.632 6.848 26.56c4.928 2.944 19.648 8.896 33.472 12.8-13.824 3.904-28.544 9.856-33.472 12.8-9.856 4.928-12.8 16.704-6.912 26.56 4.928 9.856 16.704 12.8 25.536 6.912 4.928-2.944 17.728-12.8 27.52-23.616-3.84 13.696-5.824 30.464-5.824 36.352 0 10.816 8.832 19.648 18.688 19.648s18.688-8.832 18.688-19.648c0-5.888-1.984-22.592-5.888-36.352 9.856 10.816 22.592 20.672 27.52 23.616 8.832 5.888 20.672 2.944 25.536-6.912 5.952-9.856 2.944-21.632-6.848-26.56zM507.008 460.8c-4.928-2.944-19.648-8.896-33.472-12.8 13.76-3.904 28.544-9.856 33.408-12.8 9.856-4.928 12.8-16.704 6.912-26.56s-16.704-12.8-26.56-6.912c-4.928 2.944-17.728 12.8-27.52 23.616 3.968-13.696 5.952-30.464 5.952-36.352 0-10.816-8.832-19.648-18.688-19.648s-18.688 8.832-18.688 19.648c0 5.888 1.984 22.592 5.888 36.352-9.856-10.816-22.592-20.672-27.52-23.616-7.872-5.824-19.712-2.88-24.576 6.912s-2.944 21.632 6.848 26.56c4.928 2.944 19.648 8.896 33.472 12.8-13.824 3.904-28.544 9.856-33.472 12.8-9.856 4.928-12.8 16.704-6.912 26.56 4.928 9.856 16.704 12.8 25.536 6.912 4.928-2.944 17.728-12.8 27.52-23.616-3.84 13.696-5.824 30.464-5.824 36.352 0 10.816 8.832 19.648 18.688 19.648s18.688-8.832 18.688-19.648c0-5.888-1.984-22.592-5.888-36.352 9.856 10.816 22.592 20.672 27.52 23.616 8.832 5.888 20.672 2.944 25.536-6.912 5.952-9.856 2.944-21.632-6.848-26.56zM699.008 460.8c-4.928-2.944-19.648-8.832-33.408-12.8 13.76-3.904 28.544-9.856 33.408-12.8 9.856-4.928 12.8-16.704 6.912-26.56s-16.704-12.8-26.56-6.912c-4.928 2.944-17.728 12.8-27.52 23.616 3.904-13.76 5.888-30.464 5.888-36.352 0-10.816-8.832-19.648-18.688-19.648s-18.688 8.832-18.688 19.648c0 5.888 1.984 22.592 5.888 36.352-9.856-10.816-22.592-20.672-27.52-23.616-7.872-5.824-19.712-2.88-24.576 6.912s-2.944 21.632 6.848 26.56c4.928 2.944 19.648 8.896 33.472 12.8-13.824 3.904-28.544 9.856-33.472 12.8-9.856 4.928-12.8 16.704-6.912 26.56 4.928 9.856 16.704 12.8 25.536 6.912 4.928-2.944 17.728-12.8 27.52-23.616-3.84 13.696-5.824 30.464-5.824 36.352 0 10.816 8.832 19.648 18.688 19.648s18.688-8.832 18.688-19.648c0-5.888-1.984-22.592-5.888-36.352 9.856 10.816 22.592 20.672 27.52 23.616 8.832 5.888 20.672 2.944 25.536-6.912 5.952-9.856 2.944-21.632-6.848-26.56zM704 320h-640v256h768v-64h64v48.448c0 43.904-36.736 79.552-81.92 79.552h-732.16c-5.632 0-11.136-0.576-16.448-1.6-2.688-0.576-5.312-1.216-7.872-1.984-33.344-10.112-57.6-40.32-57.6-75.968v0-224.96c0-32.896 20.672-61.184 50.112-73.28 4.928-1.984 10.048-3.584 15.36-4.672 5.312-0.96 10.816-1.536 16.448-1.536h622.080v64z" />
|
37 |
+
<glyph unicode="" glyph-name="linkedin" d="M269.24 106.785h-191.248v574.196h191.195v-574.196zM252.106 787.621c-19.861-18.972-46.059-28.369-78.492-28.369h-1.168c-31.651 0-57.186 9.455-76.491 28.369s-28.981 42.5-28.981 70.648c0 28.594 9.959 52.237 29.815 70.982 19.914 18.746 45.894 28.091 77.991 28.091 32.042 0 57.741-9.402 77.046-28.091 19.303-18.746 29.151-42.389 29.536-70.982 0.391-28.148-9.346-51.733-29.259-70.648zM957.026 106.785h-190.637v307.123c0 40.555-7.844 72.318-23.476 95.292-15.688 22.973-40.051 34.434-73.317 34.434-24.368 0-44.728-6.677-61.136-19.969s-28.647-29.815-36.769-49.511c-4.285-11.568-6.4-27.202-6.4-46.949v-320.418h-190.637c0.778 154.145 1.168 279.142 1.168 374.934s-0.167 152.977-0.612 171.446l-0.556 27.814h190.637v-81.774c7.342 11.682 14.851 21.974 22.587 30.761 8.122 9.29 19.024 19.303 32.767 30.149 13.74 10.792 30.54 19.192 50.401 25.2 19.914 6.008 42.057 9.012 66.364 9.012 66.085 0 119.155-21.918 159.376-65.751 40.164-43.836 60.246-108.086 60.246-192.642v-329.152z" />
|
38 |
<glyph unicode="" glyph-name="multilanguage" d="M152.64 228.224c0.128 0 17.28 0.32 23.616 4.032 16.128 10.048 37.888 34.752 56.96 57.152l5.952 6.912c24.192 27.712 48.704 59.776 73.024 95.552 4.48-3.328 10.368-7.872 15.168-11.584 9.408-7.168 18.816-14.4 22.912-17.024 9.088-5.952 43.904-24.96 52.224-28.672 1.472-0.576 3.84-1.536 6.592-2.688 17.152-7.168 26.368-10.624 32.192-10.624 6.336 0 9.728 3.968 10.816 7.68 1.216 4.736-3.136 38.784-14.72 42.56-3.776 1.408-71.232 28.992-81.216 33.6-5.76 2.816-17.472 7.68-27.136 11.712l-0.256 0.128c25.216 39.168 39.040 65.664 39.296 66.112 1.472 3.136 6.272 12.416 11.648 22.976 19.904 38.848 21.056 41.344 21.568 43.968 0.576 3.264 1.472 17.28 0.512 21.952l-2.752 8.128h-7.68c-3.584 0-7.232-1.472-13.312-3.84-3.584-1.472-7.936-3.136-12.8-4.736-7.168-2.368-16.64-7.296-25.728-12.16-8.512-4.48-19.136-10.048-23.808-10.816-7.424-1.728-24.832-7.808-41.664-13.696-6.848-2.432-13.312-4.672-18.368-6.4-16.192-5.44-46.976-14.4-60.288-17.92-6.336-1.728-12.352-2.688-17.536-3.456-5.632-0.896-10.56-1.728-14.208-2.944l-6.848-2.24 0.384-6.976c0.64-10.944 3.328-15.936 4.224-17.216 2.624-4.224 11.392-13.632 21.696-16 13.568-3.84 26.496-1.792 31.488-0.192 4.16 0.768 20.864 5.952 24.704 13.376 1.472 2.88 1.472 5.888 1.472 8.576 4.992 1.472 13.696 3.648 20.032 5.248 7.872 1.984 15.68 3.968 20.544 5.376l4.224 1.408c17.472 5.76 31.040 10.048 40.448 12.864-11.264-23.104-32.768-64.896-42.56-82.24-11.2-20.8-79.488-113.984-93.824-130.24-2.88-3.264-6.72-7.68-10.944-12.672-11.52-13.376-28.992-33.664-35.072-38.144l-12.16-8.896 13.568-6.656c1.92-0.896 4.16-1.28 7.616-1.28zM257.088 553.152l1.024-0.064c13.184 0 29.056 3.904 38.272 7.488 7.616 2.944 26.048 11.392 34.112 26.368 1.664 3.008 5.056 9.28 2.816 21.568-2.496 10.624-10.24 16.704-22.080 16.704h-0.128c-6.976-0.704-25.088-5.504-33.536-8.256l-4.544-1.28c-8.896-2.496-22.336-6.272-28.608-7.68-0.448-0.128-1.856-0.32-4.736-0.32-5.76 0-11.904 1.024-14.208 1.664l-1.984 1.92-10.24-0.192-2.432-5.44c-3.264-7.296 5.504-27.904 12.288-35.136 14.080-13.76 26.112-16.448 33.984-17.344zM706.496 35.776c-3.2-1.792-6.4-3.584-9.6-5.376-11.84-6.72-22.976-13.12-35.072-18.496-63.36-26.624-111.552-36.032-184.064-36.032-60.416 0-134.464 25.728-179.776 47.872-2.432 1.088-6.912 3.584-12.096 6.4-19.776 10.88-26.752 14.272-31.808 14.272-11.072 0-19.776-8.768-19.776-19.904 0-6.72 2.368-11.52 8.512-16.512 50.176-35.712 164.992-72 227.456-72h48.64c17.728 0 37.568 3.52 54.272 6.912 51.968 8.576 108.032 29.376 155.328 57.536l28.736-46.272 41.536 120.384-121.536 9.792 29.248-48.576zM684.672 446.912l80.512-23.744-36.48 128.512zM868.928 711.36v236.736c0 7.424-5.184 11.904-11.584 11.904-5.248 0-365.696-121.728-369.728-122.88l-323.328 112.128v-217.472c-49.28-16.448-84.608-27.776-86.4-28.288-3.456-1.152-8.128-2.304-11.584-6.272-1.152-1.152-1.728-3.904-2.304-5.632v-610.496c0-0.576 0.576-1.152 0.576-1.728 1.728-4.544 5.824-7.36 10.432-7.36 5.76 0 421.312 137.024 430.592 141.056 0 0 0.576 0 448.576-139.328v611.008l-85.248 26.624zM488.768 248.32l-383.424-123.328v539.2l383.424 131.968v-547.84zM827.584 902.656v-183.872l-294.592 85.824 294.592 98.048zM805.76 278.144l-21.44 76.48-122.304 36.8-26.048-62.272-59.072 17.536 125.184 303.552 57.984-17.536 104.896-372.096-59.2 17.536z" />
|
39 |
<glyph unicode="" glyph-name="pagination" d="M746.688 640v0h-234.688v-448h234.688c117.824 0 213.312 95.232 213.312 220.864 0 125.696-95.488 227.136-213.312 227.136zM814.464 384.448l-112.64-92.48c-6.656-5.568-14.848-8.512-23.552-8.512-12.416 0-24.064 6.4-31.232 17.024-11.84 17.728-8.448 41.984 7.744 55.168l74.176 60.928-71.936 60.032c-16 13.44-19.264 37.696-7.296 55.168 6.144 9.024 15.68 14.976 26.112 16.448 10.432 1.344 20.544-1.6 28.736-8.384l110.144-91.84c9.28-7.808 14.592-19.392 14.464-31.808 0.064-12.288-5.504-24.192-14.72-31.744zM0 412.864c0-125.632 95.488-220.864 213.312-220.864v0h234.688v448h-234.688c-117.824 0-213.312-101.44-213.312-227.136zM130.752 416.128c-0.064 12.416 5.184 24.064 14.528 31.872l110.144 91.904c8.192 6.784 18.304 9.664 28.736 8.32 10.432-1.472 19.904-7.424 26.112-16.448 11.904-17.536 8.704-41.728-7.296-55.168l-71.936-60.032 74.176-60.928c16.192-13.184 19.584-37.44 7.744-55.168-7.168-10.624-18.816-17.024-31.232-17.024-8.704 0-16.832 3.008-23.552 8.512l-112.64 92.48c-9.216 7.552-14.784 19.456-14.784 31.68z" />
|
40 |
<glyph unicode="" glyph-name="pdf-print" d="M960 704h-128v198.208c0 32.384-26.24 57.792-58.688 57.792h-522.624c-32.448 0-58.688-25.408-58.688-57.792v-198.208h-128c-35.328 0-64-28.672-64-64v-448c0-35.328 28.672-64 64-64h128v-134.784c0-31.616 25.6-57.216 57.216-57.216h525.568c31.616 0 57.216 25.6 57.216 57.216v134.784h128c35.328 0 64 28.672 64 64v448c0 35.328-28.672 64-64 64zM256 896h512v-192h-512v192zM768 128v-128h-512v192h512v-64zM768 512h-64v64h64v-64zM896 512h-64v64h64v-64z" />
|
69 |
<glyph unicode="" glyph-name="shortcode" d="M0 896v-896h384v192h-192v512h192v192h-192zM832 896h-192v-192h192v-512h-192v-192h384v896z" />
|
70 |
<glyph unicode="" glyph-name="bws-logo" d="M953.913 325.746c-21.447-38.855-46.592-77.198-75.435-114.233-68.551-100.466-192.91-193.365-254.919-225.052-38.457-19.684-89.088-34.702-126.805-44.316 204.459-39.538 403.285 114.46 466.034 352.37 6.997 26.852 12.004 53.134 15.417 78.734-7.566-15.872-15.588-31.744-24.292-47.502zM327.964 88.519c-70.087 61.952-114.176 154.169-114.176 264.533 0 207.076 154.852 374.898 345.884 374.898 117.931 0 222.151-64.114 284.501-161.906 1.479 4.494 3.129 9.045 4.437 13.54 17.010 57.799 23.438 113.38 18.887 162.816-35.442 34.93-77.995 62.976-126.862 82.716-207.588 83.854-477.753-63.431-543.346-312.946-40.789-154.51-9.899-309.931 70.485-420.58 19.058-3.527 39.14-4.494 60.188-3.072zM934.059 893.611c-119.694 109.682-325.632 79.019-507.79-59.392 44.658 22.357 92.16 36.807 139.89 42.098 103.31 41.529 200.932 38.343 264.704-19.342 70.656-63.886 83.797-180.167 46.364-307.314-25.145-85.618-73.159-176.185-141.995-258.958-154.567-185.742-454.428-341.902-620.203-137.671 13.596-54.67 39.481-102.059 78.62-137.842 96.313-88.178 248.377-85.618 398.962-9.33 85.504 43.349 170.61 110.364 244.565 198.201 38.286 45.397 70.884 93.127 97.564 141.54 116.224 210.603 121.97 435.655-0.683 548.011zM791.211 595.854c-4.38 5.86-23.666 26.226-28.956 30.436-56.092 45.056-124.985 71.68-199.68 71.68-46.99 0-91.648-10.468-132.38-29.468 15.246-6.656 30.322-14.165 45.284-22.756 155.989-89.088 240.64-247.808 205.824-372.224 2.788 3.3 5.518 6.599 8.021 9.785 54.784 71.054 114.859 157.298 144.953 243.712-12.174 23.78-26.453 46.82-43.065 68.836zM24.007 593.977c-71.794-176.469 23.154-384.683 207.303-496.299-24.86 33.451-41.7 72.42-56.149 121.344-137.444 102.741-194.446 258.162-134.087 372.907 39.708 75.662 123.79 115.029 221.355 114.404 33.166 41.017 72.704 74.524 115.996 99.214-158.549 1.877-299.065-75.264-354.418-211.57zM263.794 453.632c0.569 10.524 1.593 20.935 3.015 31.118-12.857-32.768-20.821-68.608-22.642-106.268-5.86-116.224 46.99-220.615 130.219-278.983 38.059 4.38 74.638 16.213 108.601 34.418-132.096 32.939-226.93 166.059-219.193 319.716z" />
|
71 |
<glyph unicode="" glyph-name="warning" d="M508.992-64c-287.040 3.136-512.64 235.584-508.928 524.352 3.52 274.112 239.040 502.592 514.944 499.648 287.040-3.136 512.64-235.584 508.928-524.352-3.52-274.112-239.040-502.592-514.944-499.648zM424.128 768c-0.576-5.44 11.84-247.744 17.92-365.76 0.704-14.208 5.952-18.24 5.952-18.24h128c0 0 5.568 6.784 6.4 25.472 3.584 82.752 16.64 321.152 18.304 358.528-60.16 0-117.12 0-176.576 0zM507.136 319.872c-68.288-2.688-108.352-41.088-105.408-101.056 2.816-57.472 46.592-92.544 113.152-90.752 69.952 1.92 107.264 39.168 104.384 104.256-2.496 55.808-46.4 90.112-112.128 87.552z" />
|
72 |
+
<glyph unicode="" glyph-name="google-2-step-verification" d="M640 440.128c0 19.136-1.728 37.376-5.184 55.616h-308.032v-114.688h184.704c-13.632-92.224-98.752-143.424-184.704-143.424-113.152 0-203.328 95.552-203.328 210.304 0 114.688 90.176 210.304 203.328 210.304 47.616 0 95.36-16.576 130.24-51.328l88.448 87.808c-60.416 57.472-136.128 86.976-218.688 86.976-181.248 0-326.784-149.44-326.784-333.696s145.536-333.696 326.784-333.696c188.032 0 313.216 135.552 313.216 325.824zM970.688 522.304v52.352c0 66.24-43.584 115.648-106.688 115.648s-106.688-49.408-106.688-115.648v-53.696c-20.992-1.28-53.312-12.736-53.312-35.136v-201.408c0-23.232 25.792-42.112 47.872-42.112h232.704c22.144 0 39.424 18.816 39.424 42.112v201.408c0 22.4-32.32 35.2-53.312 36.48zM916.608 310.656c1.28-2.752 0.896-5.888-0.768-8.384s-4.416-3.968-7.488-3.968h-88.704c-3.008 0-5.76 1.472-7.488 3.968-1.6 2.432-1.92 5.632-0.768 8.384l21.44 69.376c-11.328 9.216-22.144 23.104-22.144 37.76 0 26.88 26.112 48.832 53.312 48.832 27.136 0 53.312-21.952 53.312-48.832 0-14.656-10.816-28.544-22.144-37.76l21.44-69.376zM917.312 522.304h-106.688v52.352c0 33.344 21.504 58.432 53.312 58.432 31.744 0 53.312-25.024 53.312-58.432v-52.352z" />
|
73 |
+
<glyph unicode="" glyph-name="slider" d="M768 704h-512c-26.432 0-64-37.568-64-64v-448c0-26.432 37.568-64 64-64h512c26.432 0 64 37.568 64 64v448c0 26.432-37.568 64-64 64zM640 330.24c0-5.632-3.2-10.24-7.040-10.24h-241.92c-3.84 0-7.040 4.608-7.040 10.24v43.52c0 5.632 3.2 10.24 7.040 10.24h241.92c3.84 0 7.040-4.608 7.040-10.24v-43.52zM707.008 458.688c0-5.888-4.8-10.688-10.56-10.688h-365.888c-5.824 0-10.56 4.8-10.56 10.688v42.624c0 5.888 4.736 10.688 10.56 10.688h365.824c5.824 0 10.56-4.8 10.56-10.688v-42.624zM1020.352 424.704l-85.312 83.904c-4.608 4.48-11.776 4.48-16.32 0l-19.072-18.752c-2.368-2.304-3.648-5.44-3.648-8.704 0-3.328 1.28-6.4 3.648-8.704l57.344-56.448-57.344-56.384c-2.368-2.304-3.648-5.44-3.648-8.768s1.28-6.4 3.648-8.704l19.072-18.752c2.304-2.24 5.248-3.392 8.192-3.392s5.888 1.152 8.192 3.392l85.312 83.904c2.304 2.304 3.584 5.376 3.584 8.704s-1.28 6.4-3.648 8.704zM128 481.152c0 3.328-1.28 6.4-3.648 8.704l-19.072 18.752c-4.608 4.48-11.776 4.544-16.32 0l-85.312-83.904c-2.368-2.304-3.648-5.376-3.648-8.704s1.28-6.4 3.648-8.704l85.312-83.904c2.24-2.24 5.184-3.392 8.128-3.392s5.888 1.152 8.192 3.392l19.072 18.752c2.368 2.304 3.648 5.44 3.648 8.704s-1.28 6.4-3.648 8.704l-57.344 56.448 57.344 56.384c2.368 2.304 3.648 5.44 3.648 8.768z" />
|
74 |
</font></defs></svg>
|
bws_menu/fonts/bwsicons.ttf
CHANGED
Binary file
|
bws_menu/fonts/bwsicons.woff
CHANGED
Binary file
|
bws_menu/icons/plugins/db-manager.png
DELETED
Binary file
|
bws_menu/js/general_script.js
CHANGED
@@ -69,6 +69,11 @@ function bws_show_settings_notice() {
|
|
69 |
|
70 |
/* help tooltips */
|
71 |
if ( $( '.bws_help_box' ).length > 0 ) {
|
|
|
|
|
|
|
|
|
|
|
72 |
$( document ).tooltip( {
|
73 |
items: $( '.bws_help_box' ),
|
74 |
content: function() {
|
@@ -76,6 +81,7 @@ function bws_show_settings_notice() {
|
|
76 |
},
|
77 |
show: null, /* show immediately */
|
78 |
tooltipClass: "bws-tooltip-content",
|
|
|
79 |
open: function( event, ui ) {
|
80 |
if ( typeof( event.originalEvent ) === 'undefined' ) {
|
81 |
return false;
|
69 |
|
70 |
/* help tooltips */
|
71 |
if ( $( '.bws_help_box' ).length > 0 ) {
|
72 |
+
if ( $( 'body' ).hasClass( 'rtl' ) ) {
|
73 |
+
var current_position = { my: "right top+15", at: "right bottom" };
|
74 |
+
} else {
|
75 |
+
var current_position = { my: "left top+15", at: "left bottom" };
|
76 |
+
}
|
77 |
$( document ).tooltip( {
|
78 |
items: $( '.bws_help_box' ),
|
79 |
content: function() {
|
81 |
},
|
82 |
show: null, /* show immediately */
|
83 |
tooltipClass: "bws-tooltip-content",
|
84 |
+
position: current_position,
|
85 |
open: function( event, ui ) {
|
86 |
if ( typeof( event.originalEvent ) === 'undefined' ) {
|
87 |
return false;
|
bws_menu/languages/bestwebsoft-cs_CZ.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-cs_CZ.po
CHANGED
@@ -2,15 +2,15 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-03
|
6 |
-
"PO-Revision-Date: 2017-03
|
7 |
"Last-Translator: Mik013\n"
|
8 |
"Language-Team: Mik013\n"
|
9 |
"Language: cs_CZ\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.8.7.1\n"
|
@@ -48,9 +48,9 @@ msgstr "Ohodnoťte jej"
|
|
48 |
msgid "Need help?"
|
49 |
msgstr "Potřebujete pomoc?"
|
50 |
|
51 |
-
#: bws_functions.php:103 bws_functions.php:
|
52 |
msgid "Visit Help Center"
|
53 |
-
msgstr "
|
54 |
|
55 |
#: bws_functions.php:106
|
56 |
msgid "Want to support the plugin?"
|
@@ -58,7 +58,7 @@ msgstr "Chcete podpořit plugin?"
|
|
58 |
|
59 |
#: bws_functions.php:107 bws_menu.php:553
|
60 |
msgid "Donate"
|
61 |
-
msgstr "
|
62 |
|
63 |
#: bws_functions.php:127
|
64 |
msgid "WARNING: Illegal use notification"
|
@@ -125,7 +125,7 @@ msgstr ""
|
|
125 |
#: bws_functions.php:207
|
126 |
#, php-format
|
127 |
msgid "Thank you for installing %s plugin!"
|
128 |
-
msgstr ""
|
129 |
|
130 |
#: bws_functions.php:208
|
131 |
msgid "Let's get started"
|
@@ -146,7 +146,7 @@ msgid "Add New"
|
|
146 |
msgstr "Přidat nový"
|
147 |
|
148 |
#: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
|
149 |
-
#: bws_functions.php:378 bws_functions.php:
|
150 |
msgid "Close notice"
|
151 |
msgstr "Zavřít poznámku"
|
152 |
|
@@ -197,12 +197,12 @@ msgstr ""
|
|
197 |
"Váš licenční klíč pro %s vyprší dne %s a nebudou vám poskytovány TOP-"
|
198 |
"PRIOROTNÍ PODPORA a AKTUALIZACE."
|
199 |
|
200 |
-
#: bws_functions.php:
|
201 |
#, php-format
|
202 |
msgid "Thank you for choosing %s plugin!"
|
203 |
-
msgstr ""
|
204 |
|
205 |
-
#: bws_functions.php:
|
206 |
msgid ""
|
207 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
208 |
"we'd love to hear about it!"
|
@@ -210,90 +210,98 @@ msgstr ""
|
|
210 |
"Máte-li nápad, nebo doporučení na novou vlastnost, kterou by jste v pluginu "
|
211 |
"chtěli vidět, rádi o něm uslyšíme!"
|
212 |
|
213 |
-
#: bws_functions.php:
|
214 |
msgid "Suggest a Feature"
|
215 |
msgstr "Navrhnout vlastnost"
|
216 |
|
217 |
-
#: bws_functions.php:
|
218 |
#: class-bws-settings.php:584 class-bws-settings.php:587
|
219 |
msgid "Notice"
|
220 |
msgstr "Poznámka"
|
221 |
|
222 |
-
#: bws_functions.php:
|
223 |
msgid "The plugin's settings have been changed."
|
224 |
msgstr "Nastavení pluginu bylo změněno."
|
225 |
|
226 |
-
#: bws_functions.php:
|
227 |
#: deprecated.php:640
|
228 |
msgid "Save Changes"
|
229 |
msgstr "Uložit změny"
|
230 |
|
231 |
-
#: bws_functions.php:
|
232 |
msgid ""
|
233 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
234 |
"the \"Misc\" tab."
|
235 |
msgstr ""
|
236 |
"Vždy se můžete podívat na možnosti prémiové verze, kliknutím na \"PRO "
|
237 |
-
"nastavení\" na \"Go PRO\" záložce"
|
|
|
|
|
|
|
|
|
238 |
|
239 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
240 |
msgid "Add shortcode"
|
241 |
msgstr "Přidat krátký kód"
|
242 |
|
243 |
-
#: bws_functions.php:
|
244 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
245 |
msgstr ""
|
246 |
"Pomocí tohoto tlačítka můžete přidávat krátké kódy BestWebSoft pluginu."
|
247 |
|
248 |
-
#: bws_functions.php:
|
249 |
msgid "Close"
|
250 |
msgstr "Zavřít"
|
251 |
|
252 |
-
#: bws_functions.php:
|
253 |
msgid "Are you sure you want to restore default settings?"
|
254 |
msgstr "Jste si jisti, že chcete obnovit výchozí nastavení?"
|
255 |
|
256 |
-
#: bws_functions.php:
|
257 |
msgid "Yes, restore all settings"
|
258 |
msgstr "Ano, obnovit veškerá nastavení"
|
259 |
|
260 |
-
#: bws_functions.php:
|
261 |
msgid "No, go back to the settings page"
|
262 |
msgstr "Ne, vrátit se zpět na stránku nastavení"
|
263 |
|
264 |
-
#: bws_functions.php:
|
265 |
msgid "Plugin"
|
266 |
msgstr "Plugin"
|
267 |
|
268 |
-
#: bws_functions.php:
|
269 |
msgid "Shortcode settings"
|
270 |
msgstr "Nastavení krátkých kódů"
|
271 |
|
272 |
-
#: bws_functions.php:
|
273 |
msgid "The shortcode will be inserted"
|
274 |
msgstr "Bude vložen krátký kód"
|
275 |
|
276 |
-
#: bws_functions.php:
|
277 |
msgid "Insert"
|
278 |
msgstr "Vložit"
|
279 |
|
280 |
-
#: bws_functions.php:
|
281 |
msgid "FAQ"
|
282 |
msgstr "Často kladené otázky (FAQ)"
|
283 |
|
284 |
-
#: bws_functions.php:
|
285 |
msgid "For more information:"
|
286 |
msgstr "Pro více informací:"
|
287 |
|
288 |
-
#: bws_functions.php:
|
289 |
msgid "Documentation"
|
290 |
msgstr "Dokumentace"
|
291 |
|
292 |
-
#: bws_functions.php:
|
293 |
msgid "Video Instructions"
|
294 |
msgstr "Video instrukce"
|
295 |
|
296 |
-
#: bws_functions.php:
|
297 |
msgid "Submit a Request"
|
298 |
msgstr "Odeslat požadavek"
|
299 |
|
@@ -320,7 +328,7 @@ msgstr "Omlouváme se za nepříjemnosti."
|
|
320 |
#: bws_menu.php:128 class-bws-settings.php:813 class-bws-settings.php:916
|
321 |
#: deprecated.php:139 deprecated.php:358
|
322 |
msgid "Wrong license key."
|
323 |
-
msgstr "Neplatný licenční
|
324 |
|
325 |
#: bws_menu.php:130
|
326 |
msgid ""
|
@@ -357,7 +365,7 @@ msgstr ""
|
|
357 |
|
358 |
#: bws_menu.php:142 class-bws-settings.php:828 deprecated.php:153
|
359 |
msgid "The license key is valid."
|
360 |
-
msgstr "Licenční klíč je
|
361 |
|
362 |
#: bws_menu.php:144 class-bws-settings.php:831 deprecated.php:156
|
363 |
msgid "Your license will expire on"
|
@@ -623,7 +631,7 @@ msgstr "Stahování instalačního balíčku z"
|
|
623 |
#: class-bws-settings.php:992 deprecated.php:387 deprecated.php:409
|
624 |
#: deprecated.php:431
|
625 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
626 |
-
msgstr "Stažení zip archivu selhalo. Prosíme, nahrajte plugin
|
627 |
|
628 |
#: bws_menu.php:408
|
629 |
msgid "Unpacking the package"
|
@@ -635,7 +643,7 @@ msgstr "Instalace pluginu"
|
|
635 |
|
636 |
#: bws_menu.php:417 class-bws-settings.php:960 deprecated.php:399
|
637 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
638 |
-
msgstr "Otevření zip archivu selhalo. Prosíme, nahrajte plugin
|
639 |
|
640 |
#: bws_menu.php:424 class-bws-settings.php:966 deprecated.php:405
|
641 |
msgid ""
|
@@ -781,7 +789,7 @@ msgstr "Verze"
|
|
781 |
|
782 |
#: class-bws-settings.php:282
|
783 |
msgid "All plugin settings were restored."
|
784 |
-
msgstr "Všechna nastavení pluginu byla obnovena"
|
785 |
|
786 |
#: class-bws-settings.php:420
|
787 |
msgid "Custom Code"
|
@@ -893,7 +901,7 @@ msgstr "Gratulujeme! PRO licence byla úspěšně aktivována."
|
|
893 |
#: class-bws-settings.php:715
|
894 |
#, php-format
|
895 |
msgid "You will be automatically redirected to the %s in %s seconds."
|
896 |
-
msgstr ""
|
897 |
|
898 |
#: class-bws-settings.php:715
|
899 |
msgid "Settings page"
|
@@ -970,7 +978,7 @@ msgstr ""
|
|
970 |
|
971 |
#: class-bws-settings.php:826 deprecated.php:151
|
972 |
msgid "The Pro Trial license key is valid."
|
973 |
-
msgstr "Licenční klíč zkušební Pro verze je
|
974 |
|
975 |
#: class-bws-settings.php:834 deprecated.php:159 deprecated.php:246
|
976 |
#, php-format
|
@@ -1005,7 +1013,7 @@ msgstr "Stav systému"
|
|
1005 |
|
1006 |
#: deprecated.php:204
|
1007 |
msgid "Please, enter your license key"
|
1008 |
-
msgstr "Prosím, vložte váš licenční
|
1009 |
|
1010 |
#: deprecated.php:223
|
1011 |
msgid ""
|
@@ -1060,7 +1068,7 @@ msgstr "Zkontrolujte prémiové možnosti na stránce nastavení pluginů!"
|
|
1060 |
|
1061 |
#: deprecated.php:478
|
1062 |
msgid "Restore all plugin settings to defaults"
|
1063 |
-
msgstr "Obnovit veškerá nastavení pluginu na výchozí hodnoty
|
1064 |
|
1065 |
#: deprecated.php:480
|
1066 |
msgid "Restore settings"
|
@@ -1102,173 +1110,443 @@ msgid "version of the plugin."
|
|
1102 |
msgstr "verze pluginu."
|
1103 |
|
1104 |
#: product_list.php:7
|
1105 |
-
msgid "
|
1106 |
-
msgstr "
|
1107 |
|
1108 |
#: product_list.php:8
|
1109 |
-
msgid "Content
|
1110 |
-
msgstr "Obsah
|
1111 |
|
1112 |
#: product_list.php:9
|
1113 |
-
msgid "
|
1114 |
-
msgstr "
|
1115 |
|
1116 |
#: product_list.php:10
|
1117 |
-
msgid "
|
1118 |
-
msgstr "
|
1119 |
|
1120 |
#: product_list.php:11
|
1121 |
-
msgid "
|
1122 |
-
msgstr "
|
1123 |
|
1124 |
#: product_list.php:12
|
1125 |
-
msgid "
|
1126 |
-
msgstr "
|
1127 |
|
1128 |
#: product_list.php:13
|
1129 |
-
msgid "
|
1130 |
-
msgstr "
|
1131 |
|
1132 |
#: product_list.php:14
|
1133 |
-
msgid "
|
1134 |
-
msgstr "
|
1135 |
|
1136 |
#: product_list.php:15
|
1137 |
-
msgid "
|
1138 |
-
msgstr "
|
1139 |
|
1140 |
-
|
1141 |
-
|
|
|
|
|
|
|
1142 |
|
1143 |
-
|
1144 |
-
|
|
|
1145 |
|
1146 |
-
|
1147 |
-
|
1148 |
-
|
1149 |
-
|
1150 |
-
|
1151 |
-
|
1152 |
-
|
1153 |
-
#~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
1154 |
-
#~ msgstr ""
|
1155 |
-
#~ "Pokud se Vám náš plugin líbí, dejte mu prosím 5 hvězdiček na WordPressu"
|
1156 |
-
|
1157 |
-
#~ msgid "Rate the plugin"
|
1158 |
-
#~ msgstr "Hodnotit plugin"
|
1159 |
-
|
1160 |
-
#~ msgid "If there is something wrong about it, please contact us"
|
1161 |
-
#~ msgstr "Pokud cokoli není v pořádku, obraťte se na nás"
|
1162 |
-
|
1163 |
-
#~ msgid "Donations play an important role in supporting great projects"
|
1164 |
-
#~ msgstr "Dary hrají důležitou roli v podpoře velkých projektů"
|
1165 |
-
|
1166 |
-
#~ msgid "This license key is bind to another site"
|
1167 |
-
#~ msgstr "Tento licenční klíč se váže k jinému webu"
|
1168 |
-
|
1169 |
-
#~ msgid ""
|
1170 |
-
#~ "Unfortunately, Your license has expired. To continue getting top-priority "
|
1171 |
-
#~ "support and plugin updates you should extend it in your"
|
1172 |
-
#~ msgstr ""
|
1173 |
-
#~ "Bohužel, Vaše licence vypršela. Chcete-li pokračovat v získávání top-"
|
1174 |
-
#~ "prioritní podpory a aktualizace pluginu měli byste ji prodloužit ve vašem"
|
1175 |
-
|
1176 |
-
#~ msgid ""
|
1177 |
-
#~ "Congratulations! Pro version of the plugin is successfully installed and "
|
1178 |
-
#~ "activated."
|
1179 |
-
#~ msgstr ""
|
1180 |
-
#~ "Gratulujeme! PRO verze pluginu byla úspěšně instalována a aktivována."
|
1181 |
-
|
1182 |
-
#~ msgid "After that you can activate it by entering your license key."
|
1183 |
-
#~ msgstr "Poté, co jej aktivujete vložením vašeho licenčního klíče."
|
1184 |
-
|
1185 |
-
#~ msgid ""
|
1186 |
-
#~ "Congratulations! The Pro license of the plugin is successfully activated."
|
1187 |
-
#~ msgstr "Gratulujeme! PRO licence pluginu je úspěšně aktivována."
|
1188 |
-
|
1189 |
-
#~ msgid "This license key is bind to another site."
|
1190 |
-
#~ msgstr "Tento licenční klíč je přidružen k jiným webovým stránkám."
|
1191 |
-
|
1192 |
-
#~ msgid ""
|
1193 |
-
#~ "If needed you can check if the license key is correct or reenter it in "
|
1194 |
-
#~ "the field below. You can find your license key on your personal page - "
|
1195 |
-
#~ "Client area - on our website"
|
1196 |
-
#~ msgstr ""
|
1197 |
-
#~ "V případě potřeby zkontrolujte, je-li licenční klíč správně zadán, "
|
1198 |
-
#~ "případně jej do pole níže vložte znova. Váš licenční klíč najdete na vaší "
|
1199 |
-
#~ "osobní stránce - Client area - na našem webu"
|
1200 |
-
|
1201 |
-
#~ msgid ""
|
1202 |
-
#~ "Notice: Your Pro Trial license has expired. To continue using the plugin "
|
1203 |
-
#~ "you should buy a Pro license"
|
1204 |
-
#~ msgstr ""
|
1205 |
-
#~ "Poznámka: Vaše zkušební Pro verze pluginu vypršela. Pro další využíváni "
|
1206 |
-
#~ "pluginu bude nutné zakoupit Pro licenci"
|
1207 |
-
|
1208 |
-
#~ msgid ""
|
1209 |
-
#~ "Your license has expired. To continue getting top-priority support and "
|
1210 |
-
#~ "plugin updates you should extend it."
|
1211 |
-
#~ msgstr ""
|
1212 |
-
#~ "Vaše licence vypršela. Pro přístup k top-prioritní podpoře a aktualizacím "
|
1213 |
-
#~ "pluginu ji budete muset prodloužit."
|
1214 |
-
|
1215 |
-
#~ msgid "You license for"
|
1216 |
-
#~ msgstr "Vaše licence pro"
|
1217 |
-
|
1218 |
-
#~ msgid "expires on"
|
1219 |
-
#~ msgstr "vyprší"
|
1220 |
-
|
1221 |
-
#~ msgid "and you won't be granted TOP-PRIORITY SUPPORT or UPDATES."
|
1222 |
-
#~ msgstr "a nebudete mít přístup k TOP-PRIORITNÍ PODPOŘE nebo AKTUALIZACÍM."
|
1223 |
-
|
1224 |
-
#~ msgid ""
|
1225 |
-
#~ "You can always look at premium options by clicking on the \"Show Pro "
|
1226 |
-
#~ "features\" in the \"Go PRO\" tab"
|
1227 |
-
#~ msgstr ""
|
1228 |
-
#~ "Vždy se můžete podívat na možnosti prémiové verze, kliknutím na "
|
1229 |
-
#~ "\"Zobrazit Pro vlastnosti\" na \"Go PRO\" záložce"
|
1230 |
-
|
1231 |
-
#~ msgid "Are you sure you want to restore all settings by default?"
|
1232 |
-
#~ msgstr ""
|
1233 |
-
#~ "Jste si jisti, že chcete obnovit veškerá nastavení na výchozí hodnoty?"
|
1234 |
-
|
1235 |
-
#~ msgid ""
|
1236 |
-
#~ "This license key is bind to another website. Change it via personal "
|
1237 |
-
#~ "Client Area."
|
1238 |
-
#~ msgstr ""
|
1239 |
-
#~ "Tento licenční klíč je přidružen k jiným webovým stránkám. Změňte jej "
|
1240 |
-
#~ "prostřednictvím osobní Klientské zóny."
|
1241 |
-
|
1242 |
-
#~ msgid "Congratulations! Pro Membership license is successfully activated."
|
1243 |
-
#~ msgstr "Gratulujeme! Členská PRO licence byla úspěšně aktivována."
|
1244 |
-
|
1245 |
-
#~ msgid "Memory usage"
|
1246 |
-
#~ msgstr "Využití paměti"
|
1247 |
-
|
1248 |
-
#~ msgid "MYSQL Version"
|
1249 |
-
#~ msgstr "Verze MYSQL"
|
1250 |
-
|
1251 |
-
#~ msgid "Site URL"
|
1252 |
-
#~ msgstr "URL webových stránek"
|
1253 |
-
|
1254 |
-
#~ msgid "WordPress Version"
|
1255 |
-
#~ msgstr "Verze WordPress"
|
1256 |
-
|
1257 |
-
#~ msgid "WordPress DB Version"
|
1258 |
-
#~ msgstr "WordPress verze DB"
|
1259 |
|
1260 |
-
|
1261 |
-
|
1262 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1263 |
|
1264 |
-
#~ msgid "
|
1265 |
-
#~ msgstr "
|
1266 |
|
1267 |
-
#~ msgid "
|
1268 |
-
#~ msgstr "
|
1269 |
|
1270 |
-
#~ msgid "
|
1271 |
-
#~ msgstr "
|
1272 |
|
1273 |
-
#~ msgid "
|
1274 |
-
#~ msgstr "
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-07-03 13:18+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-07-03 13:18+0300\n"
|
7 |
"Last-Translator: Mik013\n"
|
8 |
"Language-Team: Mik013\n"
|
9 |
"Language: cs_CZ\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Generator: Poedit 1.8.7.1\n"
|
48 |
msgid "Need help?"
|
49 |
msgstr "Potřebujete pomoc?"
|
50 |
|
51 |
+
#: bws_functions.php:103 bws_functions.php:920 class-bws-settings.php:1047
|
52 |
msgid "Visit Help Center"
|
53 |
+
msgstr "Navštivte Centrum pomoci"
|
54 |
|
55 |
#: bws_functions.php:106
|
56 |
msgid "Want to support the plugin?"
|
58 |
|
59 |
#: bws_functions.php:107 bws_menu.php:553
|
60 |
msgid "Donate"
|
61 |
+
msgstr "Darujte"
|
62 |
|
63 |
#: bws_functions.php:127
|
64 |
msgid "WARNING: Illegal use notification"
|
125 |
#: bws_functions.php:207
|
126 |
#, php-format
|
127 |
msgid "Thank you for installing %s plugin!"
|
128 |
+
msgstr "Děkujeme vám za instalaci %s pluginu!"
|
129 |
|
130 |
#: bws_functions.php:208
|
131 |
msgid "Let's get started"
|
146 |
msgstr "Přidat nový"
|
147 |
|
148 |
#: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
|
149 |
+
#: bws_functions.php:378 bws_functions.php:480
|
150 |
msgid "Close notice"
|
151 |
msgstr "Zavřít poznámku"
|
152 |
|
197 |
"Váš licenční klíč pro %s vyprší dne %s a nebudou vám poskytovány TOP-"
|
198 |
"PRIOROTNÍ PODPORA a AKTUALIZACE."
|
199 |
|
200 |
+
#: bws_functions.php:475
|
201 |
#, php-format
|
202 |
msgid "Thank you for choosing %s plugin!"
|
203 |
+
msgstr "Děkujeme, že jste si vybrali %s plugin!"
|
204 |
|
205 |
+
#: bws_functions.php:476
|
206 |
msgid ""
|
207 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
208 |
"we'd love to hear about it!"
|
210 |
"Máte-li nápad, nebo doporučení na novou vlastnost, kterou by jste v pluginu "
|
211 |
"chtěli vidět, rádi o něm uslyšíme!"
|
212 |
|
213 |
+
#: bws_functions.php:477
|
214 |
msgid "Suggest a Feature"
|
215 |
msgstr "Navrhnout vlastnost"
|
216 |
|
217 |
+
#: bws_functions.php:493 class-bws-settings.php:533 class-bws-settings.php:536
|
218 |
#: class-bws-settings.php:584 class-bws-settings.php:587
|
219 |
msgid "Notice"
|
220 |
msgstr "Poznámka"
|
221 |
|
222 |
+
#: bws_functions.php:493
|
223 |
msgid "The plugin's settings have been changed."
|
224 |
msgstr "Nastavení pluginu bylo změněno."
|
225 |
|
226 |
+
#: bws_functions.php:494 class-bws-settings.php:182 class-bws-settings.php:202
|
227 |
#: deprecated.php:640
|
228 |
msgid "Save Changes"
|
229 |
msgstr "Uložit změny"
|
230 |
|
231 |
+
#: bws_functions.php:508
|
232 |
msgid ""
|
233 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
234 |
"the \"Misc\" tab."
|
235 |
msgstr ""
|
236 |
"Vždy se můžete podívat na možnosti prémiové verze, kliknutím na \"PRO "
|
237 |
+
"nastavení\" na \"Go PRO\" záložce."
|
238 |
+
|
239 |
+
#: bws_functions.php:642
|
240 |
+
msgid "Add BWS Shortcode"
|
241 |
+
msgstr "Přidávejte zkrácený kód BWS"
|
242 |
|
243 |
+
#: bws_functions.php:643
|
244 |
+
msgid "Add BWS Plugins Shortcode"
|
245 |
+
msgstr "Přidávejte zkrácený kód BWS pluginů"
|
246 |
+
|
247 |
+
#: bws_functions.php:662
|
248 |
msgid "Add shortcode"
|
249 |
msgstr "Přidat krátký kód"
|
250 |
|
251 |
+
#: bws_functions.php:662
|
252 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
253 |
msgstr ""
|
254 |
"Pomocí tohoto tlačítka můžete přidávat krátké kódy BestWebSoft pluginu."
|
255 |
|
256 |
+
#: bws_functions.php:708
|
257 |
msgid "Close"
|
258 |
msgstr "Zavřít"
|
259 |
|
260 |
+
#: bws_functions.php:800
|
261 |
msgid "Are you sure you want to restore default settings?"
|
262 |
msgstr "Jste si jisti, že chcete obnovit výchozí nastavení?"
|
263 |
|
264 |
+
#: bws_functions.php:803
|
265 |
msgid "Yes, restore all settings"
|
266 |
msgstr "Ano, obnovit veškerá nastavení"
|
267 |
|
268 |
+
#: bws_functions.php:804
|
269 |
msgid "No, go back to the settings page"
|
270 |
msgstr "Ne, vrátit se zpět na stránku nastavení"
|
271 |
|
272 |
+
#: bws_functions.php:846
|
273 |
msgid "Plugin"
|
274 |
msgstr "Plugin"
|
275 |
|
276 |
+
#: bws_functions.php:855
|
277 |
msgid "Shortcode settings"
|
278 |
msgstr "Nastavení krátkých kódů"
|
279 |
|
280 |
+
#: bws_functions.php:860
|
281 |
msgid "The shortcode will be inserted"
|
282 |
msgstr "Bude vložen krátký kód"
|
283 |
|
284 |
+
#: bws_functions.php:865
|
285 |
msgid "Insert"
|
286 |
msgstr "Vložit"
|
287 |
|
288 |
+
#: bws_functions.php:925
|
289 |
msgid "FAQ"
|
290 |
msgstr "Často kladené otázky (FAQ)"
|
291 |
|
292 |
+
#: bws_functions.php:931
|
293 |
msgid "For more information:"
|
294 |
msgstr "Pro více informací:"
|
295 |
|
296 |
+
#: bws_functions.php:932
|
297 |
msgid "Documentation"
|
298 |
msgstr "Dokumentace"
|
299 |
|
300 |
+
#: bws_functions.php:933
|
301 |
msgid "Video Instructions"
|
302 |
msgstr "Video instrukce"
|
303 |
|
304 |
+
#: bws_functions.php:934
|
305 |
msgid "Submit a Request"
|
306 |
msgstr "Odeslat požadavek"
|
307 |
|
328 |
#: bws_menu.php:128 class-bws-settings.php:813 class-bws-settings.php:916
|
329 |
#: deprecated.php:139 deprecated.php:358
|
330 |
msgid "Wrong license key."
|
331 |
+
msgstr "Neplatný licenční klíč."
|
332 |
|
333 |
#: bws_menu.php:130
|
334 |
msgid ""
|
365 |
|
366 |
#: bws_menu.php:142 class-bws-settings.php:828 deprecated.php:153
|
367 |
msgid "The license key is valid."
|
368 |
+
msgstr "Licenční klíč je platný."
|
369 |
|
370 |
#: bws_menu.php:144 class-bws-settings.php:831 deprecated.php:156
|
371 |
msgid "Your license will expire on"
|
631 |
#: class-bws-settings.php:992 deprecated.php:387 deprecated.php:409
|
632 |
#: deprecated.php:431
|
633 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
634 |
+
msgstr "Stažení zip archivu selhalo. Prosíme, nahrajte plugin ručně"
|
635 |
|
636 |
#: bws_menu.php:408
|
637 |
msgid "Unpacking the package"
|
643 |
|
644 |
#: bws_menu.php:417 class-bws-settings.php:960 deprecated.php:399
|
645 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
646 |
+
msgstr "Otevření zip archivu selhalo. Prosíme, nahrajte plugin ručně"
|
647 |
|
648 |
#: bws_menu.php:424 class-bws-settings.php:966 deprecated.php:405
|
649 |
msgid ""
|
789 |
|
790 |
#: class-bws-settings.php:282
|
791 |
msgid "All plugin settings were restored."
|
792 |
+
msgstr "Všechna nastavení pluginu byla obnovena."
|
793 |
|
794 |
#: class-bws-settings.php:420
|
795 |
msgid "Custom Code"
|
901 |
#: class-bws-settings.php:715
|
902 |
#, php-format
|
903 |
msgid "You will be automatically redirected to the %s in %s seconds."
|
904 |
+
msgstr "Za %s sekund budete automaticky přesměrováni na %s."
|
905 |
|
906 |
#: class-bws-settings.php:715
|
907 |
msgid "Settings page"
|
978 |
|
979 |
#: class-bws-settings.php:826 deprecated.php:151
|
980 |
msgid "The Pro Trial license key is valid."
|
981 |
+
msgstr "Licenční klíč zkušební Pro verze je platný."
|
982 |
|
983 |
#: class-bws-settings.php:834 deprecated.php:159 deprecated.php:246
|
984 |
#, php-format
|
1013 |
|
1014 |
#: deprecated.php:204
|
1015 |
msgid "Please, enter your license key"
|
1016 |
+
msgstr "Prosím, vložte váš licenční klíč"
|
1017 |
|
1018 |
#: deprecated.php:223
|
1019 |
msgid ""
|
1068 |
|
1069 |
#: deprecated.php:478
|
1070 |
msgid "Restore all plugin settings to defaults"
|
1071 |
+
msgstr "Obnovit veškerá nastavení pluginu na výchozí hodnoty"
|
1072 |
|
1073 |
#: deprecated.php:480
|
1074 |
msgid "Restore settings"
|
1110 |
msgstr "verze pluginu."
|
1111 |
|
1112 |
#: product_list.php:7
|
1113 |
+
msgid "Admin Tools"
|
1114 |
+
msgstr "Administrační nástroje"
|
1115 |
|
1116 |
#: product_list.php:8
|
1117 |
+
msgid "Content"
|
1118 |
+
msgstr "Obsah"
|
1119 |
|
1120 |
#: product_list.php:9
|
1121 |
+
msgid "eCommerce"
|
1122 |
+
msgstr "eCommerce"
|
1123 |
|
1124 |
#: product_list.php:10
|
1125 |
+
msgid "Marketing"
|
1126 |
+
msgstr "Marketing"
|
1127 |
|
1128 |
#: product_list.php:11
|
1129 |
+
msgid "Navigation"
|
1130 |
+
msgstr "Navigace"
|
1131 |
|
1132 |
#: product_list.php:12
|
1133 |
+
msgid "Recommended"
|
1134 |
+
msgstr "Doporučeno"
|
1135 |
|
1136 |
#: product_list.php:13
|
1137 |
+
msgid "Security"
|
1138 |
+
msgstr "Bezpečnost"
|
1139 |
|
1140 |
#: product_list.php:14
|
1141 |
+
msgid "SEO"
|
1142 |
+
msgstr "SEO"
|
1143 |
|
1144 |
#: product_list.php:15
|
1145 |
+
msgid "SMM"
|
1146 |
+
msgstr "SMM"
|
1147 |
|
1148 |
+
#: product_list.php:22
|
1149 |
+
msgid ""
|
1150 |
+
"Protect WordPress website forms from spam entries by means of math logic."
|
1151 |
+
msgstr ""
|
1152 |
+
"Chraňte WordPress webové formuláře před spamem pomocí matematické logiky."
|
1153 |
|
1154 |
+
#: product_list.php:32
|
1155 |
+
msgid "Create your personal car rental/booking and reservation website."
|
1156 |
+
msgstr "Vytvořte si osobní rezervační web - auta/hotely."
|
1157 |
|
1158 |
+
#: product_list.php:42
|
1159 |
+
msgid ""
|
1160 |
+
"Allow customers to reach you using secure contact form plugin any website "
|
1161 |
+
"must have."
|
1162 |
+
msgstr ""
|
1163 |
+
"Umožněte zákazníkům kontaktovat vás pomocí pluginu zabezpečeného kontaktního "
|
1164 |
+
"formuláře, tohle musí mít každý web."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1165 |
|
1166 |
+
#: product_list.php:52
|
1167 |
+
msgid "Add unlimited number of contact forms to WordPress website."
|
1168 |
+
msgstr "Přidávejte neomezený počet kontaktních formulářů na WordPress web."
|
1169 |
+
|
1170 |
+
#: product_list.php:62
|
1171 |
+
msgid "Save and manage Contact Form messages. Never lose important data."
|
1172 |
+
msgstr ""
|
1173 |
+
"Ukládejte a spravujte zprávy z kontaktního formuláře. Už nikdy neztraťte "
|
1174 |
+
"důležitá data."
|
1175 |
+
|
1176 |
+
#: product_list.php:72
|
1177 |
+
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1178 |
+
msgstr ""
|
1179 |
+
"Přidávejte neomezený počet vlastních stránek do WordPress admin nástěnky."
|
1180 |
+
|
1181 |
+
#: product_list.php:79
|
1182 |
+
msgid "Add custom fields to WordPress website search results."
|
1183 |
+
msgstr "Přidávejte vlastní pole do výsledků vyhledání na webu WordPress."
|
1184 |
+
|
1185 |
+
#: product_list.php:86
|
1186 |
+
msgid ""
|
1187 |
+
"Add custom post types and taxonomies to WordPress website search results."
|
1188 |
+
msgstr ""
|
1189 |
+
"Přidávejte vlastní typy příspěvků a taxonomie do výsledků vyhledání na webu "
|
1190 |
+
"WordPress."
|
1191 |
+
|
1192 |
+
#: product_list.php:96
|
1193 |
+
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1194 |
+
msgstr "Přidávejte darovací tlačítka PayPal a 2CO pro příjem příspěvků."
|
1195 |
+
|
1196 |
+
#: product_list.php:103
|
1197 |
+
msgid ""
|
1198 |
+
"Automatically add outgoing email messages to queue instead of sending them "
|
1199 |
+
"immediately."
|
1200 |
+
msgstr ""
|
1201 |
+
"Automaticky přidávejte odchozí e-mailové zprávy do fronty namísto jejich "
|
1202 |
+
"okamžitého odesílání."
|
1203 |
+
|
1204 |
+
#: product_list.php:110
|
1205 |
+
msgid ""
|
1206 |
+
"Get latest error log messages to diagnose website problems. Define and fix "
|
1207 |
+
"issues faster."
|
1208 |
+
msgstr ""
|
1209 |
+
"Získejte nejnovější zprávy z error logu při diagnostice problémů s webem. "
|
1210 |
+
"Definujte a opravte problémy rychleji."
|
1211 |
+
|
1212 |
+
#: product_list.php:117
|
1213 |
+
msgid ""
|
1214 |
+
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1215 |
+
"widgets."
|
1216 |
+
msgstr ""
|
1217 |
+
"Přidávejte Facebooková tlačítka sledovat, to se mi líbí a sdílet do "
|
1218 |
+
"WordPress příspěvků, stránek a widgetů."
|
1219 |
+
|
1220 |
+
#: product_list.php:127
|
1221 |
+
msgid ""
|
1222 |
+
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1223 |
+
"clicks."
|
1224 |
+
msgstr ""
|
1225 |
+
"Přidávejte na váš WordPress web krásné galerie, alba a obrázky během "
|
1226 |
+
"několika kliknutí."
|
1227 |
+
|
1228 |
+
#: product_list.php:137
|
1229 |
+
msgid ""
|
1230 |
+
"Add unlimited gallery categories. Organize images to make the navigation "
|
1231 |
+
"through content easier."
|
1232 |
+
msgstr ""
|
1233 |
+
"Přidávejte neomezený počet kategorií galerie. Organizujte obrázky pro "
|
1234 |
+
"jednodušší orientaci v obsahu."
|
1235 |
+
|
1236 |
+
#: product_list.php:144
|
1237 |
+
msgid ""
|
1238 |
+
"Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
|
1239 |
+
"posts, pages and widgets."
|
1240 |
+
msgstr ""
|
1241 |
+
"Přidávejte Google +1 tlačítka sdílet, sledovat, Hangout a profile badge do "
|
1242 |
+
"WordPress příspěvků, stránek a widgetů."
|
1243 |
+
|
1244 |
+
#: product_list.php:154
|
1245 |
+
msgid ""
|
1246 |
+
"Stronger security solution which protects your WordPress website from hacks "
|
1247 |
+
"and unauthorized login attempts."
|
1248 |
+
msgstr ""
|
1249 |
+
|
1250 |
+
#: product_list.php:164
|
1251 |
+
msgid ""
|
1252 |
+
"Add Adsense ads to WordPress website pages, posts, custom posts, search "
|
1253 |
+
"results, categories, tags, and widgets."
|
1254 |
+
msgstr ""
|
1255 |
+
"Přidávejte reklamy Adsense do webu WordPress, příspěvky, vlastní příspěvky, "
|
1256 |
+
"výsledky vyhledávání, rubriky, štítky a widgety."
|
1257 |
+
|
1258 |
+
#: product_list.php:174
|
1259 |
+
msgid "Add Google Analytics code to WordPress website and track basic stats."
|
1260 |
+
msgstr ""
|
1261 |
+
"Přidávejte Google Analytics kód do WordPress webu a sledujte základní "
|
1262 |
+
"statistiky."
|
1263 |
+
|
1264 |
+
#: product_list.php:184
|
1265 |
+
msgid ""
|
1266 |
+
"Protect WordPress website forms from spam entries with Google Captcha "
|
1267 |
+
"(reCaptcha)."
|
1268 |
+
msgstr ""
|
1269 |
+
"Chraňte WordPress webové formuláře před spamem s Google Captcha (\"reCAPTCHA"
|
1270 |
+
"\")."
|
1271 |
+
|
1272 |
+
#: product_list.php:194
|
1273 |
+
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1274 |
+
msgstr ""
|
1275 |
+
"Přidávejte vlastní mapy Google do WordPress příspěvků, stránek a widgetů."
|
1276 |
+
|
1277 |
+
#: product_list.php:204
|
1278 |
+
msgid ""
|
1279 |
+
"Generate and add XML sitemap to WordPress website. Help search engines index "
|
1280 |
+
"your blog."
|
1281 |
+
msgstr ""
|
1282 |
+
"Generujte a přidávejte sitemap.xml na vaše WordPress weby. Pomožte "
|
1283 |
+
"vyhledávačům indexovat váš blog."
|
1284 |
+
|
1285 |
+
#: product_list.php:214
|
1286 |
+
msgid ""
|
1287 |
+
"Replace external WordPress website links with Google shortlinks and track "
|
1288 |
+
"click stats."
|
1289 |
+
msgstr ""
|
1290 |
+
"Nahradit externí odkazy WordPress webu pomocí Google shortlinks a sledujte "
|
1291 |
+
"statistiky kliknutí."
|
1292 |
+
|
1293 |
+
#: product_list.php:221
|
1294 |
+
msgid ""
|
1295 |
+
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1296 |
+
"hostnames, etc."
|
1297 |
+
msgstr ""
|
1298 |
+
"Chráňte WordPress web– povolte či odepřete přístup pro určité IP adresy, "
|
1299 |
+
"hostnames, atd."
|
1300 |
+
|
1301 |
+
#: product_list.php:231
|
1302 |
+
msgid ""
|
1303 |
+
"Create your personal job board and listing WordPress website. Search jobs, "
|
1304 |
+
"submit CV/resumes, choose candidates."
|
1305 |
+
msgstr ""
|
1306 |
+
"Vytvořte si osobní nástěnku pracovních míst na WordPress webu. Hledání "
|
1307 |
+
"zaměstnání, odeslání CV/životopisu, výběr kandidátů."
|
1308 |
+
|
1309 |
+
#: product_list.php:238
|
1310 |
+
msgid ""
|
1311 |
+
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1312 |
+
"attempts."
|
1313 |
+
msgstr ""
|
1314 |
+
"Chraňte WordPress web proti útokům hrubou silou. Omezte počet pokusů o "
|
1315 |
+
"přihlášení."
|
1316 |
+
|
1317 |
+
#: product_list.php:248
|
1318 |
+
msgid ""
|
1319 |
+
"Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
|
1320 |
+
"5 plugins included – profile, insider, etc."
|
1321 |
+
msgstr ""
|
1322 |
+
"Přidávejte LinkedIn tlačítka sdílet a sledovat do WordPress příspěvků, "
|
1323 |
+
"stránek a widgetů. 5 pluginů zahrnuje - profil, insider, atd."
|
1324 |
+
|
1325 |
+
#: product_list.php:258
|
1326 |
+
msgid ""
|
1327 |
+
"Translate WordPress website content to other languages manually. Create "
|
1328 |
+
"multilingual pages, posts, widgets, menus, etc."
|
1329 |
+
msgstr ""
|
1330 |
+
"Přeložte manuálně obsah webu WordPress do jiných jazyků. Vytvořte "
|
1331 |
+
"vícejazyčné stránky, příspěvky, widgety, menu, atd."
|
1332 |
+
|
1333 |
+
#: product_list.php:268
|
1334 |
+
msgid ""
|
1335 |
+
"Add customizable pagination to WordPress website. Split long content to "
|
1336 |
+
"multiple pages for better navigation."
|
1337 |
+
msgstr ""
|
1338 |
+
"Přidávejte nastavitelné stránkování na web WordPress. Pro lepší navigaci "
|
1339 |
+
"rozdělte dlouhý obsah na více stránek."
|
1340 |
+
|
1341 |
+
#: product_list.php:278
|
1342 |
+
msgid ""
|
1343 |
+
"Generate PDF files and print WordPress posts/pages. Customize document "
|
1344 |
+
"header/footer styles and appearance."
|
1345 |
+
msgstr ""
|
1346 |
+
"Generujte PDF soubory a tiskněte WordPress příspěvky/stránky. Vlastní "
|
1347 |
+
"záhlaví/zápatí dokumentu, styly a vzhled."
|
1348 |
+
|
1349 |
+
#: product_list.php:288
|
1350 |
+
msgid ""
|
1351 |
+
"Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
|
1352 |
+
"Profile) to WordPress posts, pages and widgets."
|
1353 |
+
msgstr ""
|
1354 |
+
"Přidávejte Pinterest tlačítka sledovat a připnout a profilový widget (Pin, "
|
1355 |
+
"Board, Profile) do WordPress příspěvků, stránek a widgetů."
|
1356 |
+
|
1357 |
+
#: product_list.php:298
|
1358 |
+
msgid ""
|
1359 |
+
"Create your personal portfolio WordPress website. Manage and showcase past "
|
1360 |
+
"projects to get more clients."
|
1361 |
+
msgstr ""
|
1362 |
+
"Vytvořte si osobní portfolio WordPress webů. Spravujte a představte své "
|
1363 |
+
"nedávné projekty a získejte více klientů."
|
1364 |
+
|
1365 |
+
#: product_list.php:308
|
1366 |
+
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1367 |
+
msgstr ""
|
1368 |
+
"Exportujte snadno vaše WordPress příspěvky do souboru formátu CSV. "
|
1369 |
+
"Konfigurujte pořadí dat."
|
1370 |
+
|
1371 |
+
#: product_list.php:315
|
1372 |
+
msgid ""
|
1373 |
+
"Add extra fields to default WordPress user profile. The easiest way to "
|
1374 |
+
"create and manage additional custom values."
|
1375 |
+
msgstr ""
|
1376 |
+
"Přidávejte další pole do výchozího profilu uživatele WordPress. "
|
1377 |
+
"Nejjednodušší způsob, jak vytvořit a spravovat vlastní hodnoty."
|
1378 |
+
|
1379 |
+
#: product_list.php:322
|
1380 |
+
msgid ""
|
1381 |
+
"Add and display HTML advertisement banner on WordPress website. Customize "
|
1382 |
+
"bar styles and appearance."
|
1383 |
+
msgstr ""
|
1384 |
+
"Přidávejte a zobrazujte HTML reklamní banner na webu WordPress. Úpravte styl "
|
1385 |
+
"a vzhled lišt."
|
1386 |
+
|
1387 |
+
#: product_list.php:332
|
1388 |
+
msgid ""
|
1389 |
+
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1390 |
+
"widgets."
|
1391 |
+
msgstr ""
|
1392 |
+
"Přidávejte přizpůsobitelné nabídky a bloky s tipy do WordPress příspěvků, "
|
1393 |
+
"stránek a widgetů."
|
1394 |
+
|
1395 |
+
#: product_list.php:339
|
1396 |
+
msgid ""
|
1397 |
+
"Add rating plugin to your WordPress website to receive feedback from your "
|
1398 |
+
"customers."
|
1399 |
+
msgstr ""
|
1400 |
+
"Přidávejte do vašeho WordPress webu plugin hodnocení k získání zpětné vazby "
|
1401 |
+
"od vašich zákazníků."
|
1402 |
+
|
1403 |
+
#: product_list.php:346
|
1404 |
+
msgid ""
|
1405 |
+
"Create your personal real estate WordPress website. Sell, rent and buy "
|
1406 |
+
"properties. Add, search and browse listings easily."
|
1407 |
+
msgstr ""
|
1408 |
+
"Vytvořte si osobní realitní stránky na WordPress webu. Prodávejte, "
|
1409 |
+
"pronajímejte a kupujte nemovitosti. Snadno přidejte hledání a procházení "
|
1410 |
+
"seznamy."
|
1411 |
+
|
1412 |
+
#: product_list.php:356
|
1413 |
+
msgid ""
|
1414 |
+
"Attach, un-attach and re-attach media files quickly to WordPress posts and "
|
1415 |
+
"pages."
|
1416 |
+
msgstr ""
|
1417 |
+
"Připojujte, odpojujte a znovu připojujte mediální soubory do WordPress "
|
1418 |
+
"příspěvků a stránek."
|
1419 |
+
|
1420 |
+
#: product_list.php:363
|
1421 |
+
msgid ""
|
1422 |
+
"Add related, featured, latest, and popular posts to your WordPress website. "
|
1423 |
+
"Connect your blog readers with a relevant content."
|
1424 |
+
msgstr ""
|
1425 |
+
"Přidávejte související, nejlepší, nejnovější a populární příspěvky do vašeho "
|
1426 |
+
"WordPress webu. Propojte čtenáře vašeho blogu s příslušným obsahem."
|
1427 |
+
|
1428 |
+
#: product_list.php:370
|
1429 |
+
msgid ""
|
1430 |
+
"Send bulk email messages to WordPress users. Custom templates, advanced "
|
1431 |
+
"settings and detailed reports."
|
1432 |
+
msgstr ""
|
1433 |
+
"Odesílejte hromadné e-maily WordPress uživatelům. Vlastní šablony, rozšířené "
|
1434 |
+
"nastavení a podrobné reporty."
|
1435 |
+
|
1436 |
+
#: product_list.php:380
|
1437 |
+
msgid ""
|
1438 |
+
"The best responsive slider plugin for your WordPress website. Create "
|
1439 |
+
"beautifully animated slides just in a few clicks."
|
1440 |
+
msgstr ""
|
1441 |
+
"Nejlepší responzivní slider plugin pro váše WordPress web. Vytvořte krásné "
|
1442 |
+
"animované snímky během pár kliknutí."
|
1443 |
+
|
1444 |
+
#: product_list.php:387
|
1445 |
+
msgid ""
|
1446 |
+
"Configure SMTP server to receive email messages from WordPress to Gmail, "
|
1447 |
+
"Yahoo, Hotmail and other services."
|
1448 |
+
msgstr ""
|
1449 |
+
"Konfigurujte SMTP server pro příjem e-mailových zpráv z WordPress na Gmail, "
|
1450 |
+
"Yahoo, Hotmail a dalších službách."
|
1451 |
+
|
1452 |
+
#: product_list.php:394
|
1453 |
+
msgid ""
|
1454 |
+
"Add social media buttons and widgets to WordPress posts, pages and widgets. "
|
1455 |
+
"FB, Twitter, G+1, Pinterest, LinkedIn."
|
1456 |
+
msgstr ""
|
1457 |
+
"Přidávejte tlačítka sociálních sítí a widgety do WordPress příspěvků, "
|
1458 |
+
"stránek a widgetů. Facebook, Twitter, G+1, Pinterest, LinkedIn."
|
1459 |
+
|
1460 |
+
#: product_list.php:404
|
1461 |
+
msgid ""
|
1462 |
+
"Add social media login, registration, and commenting to your WordPress "
|
1463 |
+
"website."
|
1464 |
+
msgstr ""
|
1465 |
+
"Přidávejte na váš WordPress web login, registraci či komentáře "
|
1466 |
+
"prostřednictvím sociálních sítí."
|
1467 |
+
|
1468 |
+
#: product_list.php:411
|
1469 |
+
msgid ""
|
1470 |
+
"Add email newsletter sign up form to WordPress posts, pages and widgets. "
|
1471 |
+
"Collect data and subscribe your users."
|
1472 |
+
msgstr ""
|
1473 |
+
"Přidávejte registrační formulář e-mailového zpravodaje do WordPress "
|
1474 |
+
"příspěvků, stránek a widgetů. Shromažďujte data a přihlaste k odběru vaše "
|
1475 |
+
"uživatele."
|
1476 |
+
|
1477 |
+
#: product_list.php:421
|
1478 |
+
msgid ""
|
1479 |
+
"Add testimonials and feedbacks from your customers to WordPress website "
|
1480 |
+
"posts, pages, and widgets."
|
1481 |
+
msgstr ""
|
1482 |
+
"Přidávejte potvrzení a zpětnou vazbu od vašich zákazníků do WordPress "
|
1483 |
+
"příspěvků, stránek a widgetů."
|
1484 |
+
|
1485 |
+
#: product_list.php:428
|
1486 |
+
msgid ""
|
1487 |
+
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1488 |
+
"attendance and generate reports."
|
1489 |
+
msgstr ""
|
1490 |
+
"Nejlepší timesheet plugin pro WordPress. Sledujte časy zaměstnanců, "
|
1491 |
+
"kontrolujte jejich přítomnost a generujte sestavy."
|
1492 |
+
|
1493 |
+
#: product_list.php:438
|
1494 |
+
msgid ""
|
1495 |
+
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1496 |
+
"and pages."
|
1497 |
+
msgstr ""
|
1498 |
+
"Přidávejte Twitter tlačítka sledovat, twítnout a zmínit do WordPress "
|
1499 |
+
"příspěvků a stránek."
|
1500 |
+
|
1501 |
+
#: product_list.php:448
|
1502 |
+
msgid ""
|
1503 |
+
"Automatically check and update WordPress website core with all installed "
|
1504 |
+
"plugins and themes to the latest versions."
|
1505 |
+
msgstr ""
|
1506 |
+
"Automaticky kontrolujte a aktualizujte na nejnovější verzi WordPress jádro i "
|
1507 |
+
"všechny nainstalované pluginy a šablony."
|
1508 |
+
|
1509 |
+
#: product_list.php:458
|
1510 |
+
msgid ""
|
1511 |
+
"Powerful user role management plugin for WordPress website. Create, edit, "
|
1512 |
+
"copy, and delete user roles."
|
1513 |
+
msgstr ""
|
1514 |
+
"Plugin robustní správy užiatelů pro WordPress web. Vytvářejte, upravujte, "
|
1515 |
+
"kopírujte a odstraňujte uživatelské role."
|
1516 |
+
|
1517 |
+
#: product_list.php:468
|
1518 |
+
msgid ""
|
1519 |
+
"Display live count of online visitors who are currently browsing your "
|
1520 |
+
"WordPress website."
|
1521 |
+
msgstr ""
|
1522 |
+
"Zobrazujte počet aktivních online návštěvníků, kteří dané chvíli procházejí "
|
1523 |
+
"váš WordPress web."
|
1524 |
+
|
1525 |
+
#: product_list.php:478
|
1526 |
+
msgid ""
|
1527 |
+
"Backup and export Zendesk Help Center content automatically to your "
|
1528 |
+
"WordPress website database."
|
1529 |
+
msgstr ""
|
1530 |
+
"Automaticky zálohujte a exportujte obsah centra nápovědy Zendesk do databáze "
|
1531 |
+
"vašeho WordPress webu."
|
1532 |
+
|
1533 |
+
#~ msgid "Advertisement"
|
1534 |
+
#~ msgstr "Reklama"
|
1535 |
+
|
1536 |
+
#~ msgid "Content & Media"
|
1537 |
+
#~ msgstr "Obsah & Média"
|
1538 |
+
|
1539 |
+
#~ msgid "Management"
|
1540 |
+
#~ msgstr "Správa"
|
1541 |
|
1542 |
+
#~ msgid "Site Stats"
|
1543 |
+
#~ msgstr "Statistiky webu"
|
1544 |
|
1545 |
+
#~ msgid "Social"
|
1546 |
+
#~ msgstr "Sociální"
|
1547 |
|
1548 |
+
#~ msgid "Utilities"
|
1549 |
+
#~ msgstr "Utility"
|
1550 |
|
1551 |
+
#~ msgid "Other"
|
1552 |
+
#~ msgstr "Ostatní"
|
bws_menu/languages/bestwebsoft-fr_FR.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-fr_FR.po
CHANGED
@@ -2,15 +2,15 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
|
8 |
"Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
|
9 |
"Language: fr_FR\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"Plural-Forms: nplurals=2;plural=n>2;\n"
|
@@ -49,7 +49,7 @@ msgstr "Notez là"
|
|
49 |
msgid "Need help?"
|
50 |
msgstr "Besoin d'aide ?"
|
51 |
|
52 |
-
#: bws_functions.php:103 bws_functions.php:
|
53 |
msgid "Visit Help Center"
|
54 |
msgstr "Visiter le site du support"
|
55 |
|
@@ -149,7 +149,7 @@ msgid "Add New"
|
|
149 |
msgstr "Ajouter"
|
150 |
|
151 |
#: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
|
152 |
-
#: bws_functions.php:378 bws_functions.php:
|
153 |
msgid "Close notice"
|
154 |
msgstr "Effacer l'avertissement"
|
155 |
|
@@ -203,12 +203,12 @@ msgstr ""
|
|
203 |
"Votre clé de licence pour %s est terminée le %s et vous ne disposerez plus "
|
204 |
"du support rapide et des mises à jour."
|
205 |
|
206 |
-
#: bws_functions.php:
|
207 |
#, php-format
|
208 |
msgid "Thank you for choosing %s plugin!"
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: bws_functions.php:
|
212 |
msgid ""
|
213 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
214 |
"we'd love to hear about it!"
|
@@ -216,25 +216,25 @@ msgstr ""
|
|
216 |
"Si vous avez une fonctionnalité, une suggestion ou une idée que vous "
|
217 |
"souhaitez pour cette extension, nous serons ravis d'en parler avec vous !"
|
218 |
|
219 |
-
#: bws_functions.php:
|
220 |
msgid "Suggest a Feature"
|
221 |
msgstr "Proposer une fonctionnalité"
|
222 |
|
223 |
-
#: bws_functions.php:
|
224 |
#: class-bws-settings.php:584 class-bws-settings.php:587
|
225 |
msgid "Notice"
|
226 |
msgstr "Avertissement"
|
227 |
|
228 |
-
#: bws_functions.php:
|
229 |
msgid "The plugin's settings have been changed."
|
230 |
msgstr "Les paramètres de l'extension ont été modifiés."
|
231 |
|
232 |
-
#: bws_functions.php:
|
233 |
#: deprecated.php:640
|
234 |
msgid "Save Changes"
|
235 |
msgstr "Enregistrer les modifications"
|
236 |
|
237 |
-
#: bws_functions.php:
|
238 |
msgid ""
|
239 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
240 |
"the \"Misc\" tab."
|
@@ -242,63 +242,71 @@ msgstr ""
|
|
242 |
"Vous pouvez toujours consulter les options premium en cliquant sur le lien "
|
243 |
"\"Voir les fonctionnalités de la version PRO\" dans l'onglet divers."
|
244 |
|
245 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
246 |
msgid "Add shortcode"
|
247 |
msgstr "Ajouter le code court"
|
248 |
|
249 |
-
#: bws_functions.php:
|
250 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
251 |
msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
|
252 |
|
253 |
-
#: bws_functions.php:
|
254 |
msgid "Close"
|
255 |
msgstr "Fermer"
|
256 |
|
257 |
-
#: bws_functions.php:
|
258 |
msgid "Are you sure you want to restore default settings?"
|
259 |
msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
|
260 |
|
261 |
-
#: bws_functions.php:
|
262 |
msgid "Yes, restore all settings"
|
263 |
msgstr "Oui, remettre les valeurs par défaut"
|
264 |
|
265 |
-
#: bws_functions.php:
|
266 |
msgid "No, go back to the settings page"
|
267 |
msgstr "Non, retourner à la page des paramètres"
|
268 |
|
269 |
-
#: bws_functions.php:
|
270 |
msgid "Plugin"
|
271 |
msgstr "Extension"
|
272 |
|
273 |
-
#: bws_functions.php:
|
274 |
msgid "Shortcode settings"
|
275 |
msgstr "Paramètres du code court"
|
276 |
|
277 |
-
#: bws_functions.php:
|
278 |
msgid "The shortcode will be inserted"
|
279 |
msgstr "Le code court sera inséré"
|
280 |
|
281 |
-
#: bws_functions.php:
|
282 |
msgid "Insert"
|
283 |
msgstr "Insérer"
|
284 |
|
285 |
-
#: bws_functions.php:
|
286 |
msgid "FAQ"
|
287 |
msgstr "FAQ"
|
288 |
|
289 |
-
#: bws_functions.php:
|
290 |
msgid "For more information:"
|
291 |
msgstr "Pour plus d'informations :"
|
292 |
|
293 |
-
#: bws_functions.php:
|
294 |
msgid "Documentation"
|
295 |
msgstr "Documentation"
|
296 |
|
297 |
-
#: bws_functions.php:
|
298 |
msgid "Video Instructions"
|
299 |
msgstr "Vidéo explicative"
|
300 |
|
301 |
-
#: bws_functions.php:
|
302 |
msgid "Submit a Request"
|
303 |
msgstr "Soumettre une requête"
|
304 |
|
@@ -1135,40 +1143,353 @@ msgid "version of the plugin."
|
|
1135 |
msgstr "version de l'extension."
|
1136 |
|
1137 |
#: product_list.php:7
|
1138 |
-
msgid "
|
1139 |
-
msgstr "
|
1140 |
|
1141 |
#: product_list.php:8
|
1142 |
-
msgid "Content
|
1143 |
-
msgstr "
|
1144 |
|
1145 |
#: product_list.php:9
|
1146 |
-
msgid "
|
1147 |
-
msgstr "
|
1148 |
|
1149 |
#: product_list.php:10
|
1150 |
-
msgid "
|
1151 |
-
msgstr "
|
1152 |
|
1153 |
#: product_list.php:11
|
1154 |
-
msgid "
|
1155 |
-
msgstr "
|
1156 |
|
1157 |
#: product_list.php:12
|
1158 |
-
msgid "
|
1159 |
-
msgstr "
|
1160 |
|
1161 |
#: product_list.php:13
|
1162 |
-
msgid "
|
1163 |
-
msgstr "
|
1164 |
|
1165 |
#: product_list.php:14
|
1166 |
-
msgid "
|
1167 |
-
msgstr "
|
1168 |
|
1169 |
#: product_list.php:15
|
1170 |
-
msgid "
|
1171 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1172 |
|
1173 |
#~ msgid "Thank you for installing"
|
1174 |
#~ msgstr "Merci d'avoir installé"
|
@@ -1268,9 +1589,6 @@ msgstr "Autre"
|
|
1268 |
#~ "Vous pouvez trouver votre clé de licence sur votre page personnelle dans "
|
1269 |
#~ "la zone cliente en cliquant sur le lien"
|
1270 |
|
1271 |
-
#~ msgid "Add BWS Plugins Shortcode"
|
1272 |
-
#~ msgstr "Ajouter le code court de l'extension BWS"
|
1273 |
-
|
1274 |
#~ msgid ""
|
1275 |
#~ "(your username is the email you specify when purchasing the product), "
|
1276 |
#~ "where you can make the necessary changes."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-06-08 15:43+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-06-08 15:43+0300\n"
|
7 |
"Last-Translator: Luc Capronnier <lcapronnier@yahoo.com>\n"
|
8 |
"Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
|
9 |
"Language: fr_FR\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"Plural-Forms: nplurals=2;plural=n>2;\n"
|
49 |
msgid "Need help?"
|
50 |
msgstr "Besoin d'aide ?"
|
51 |
|
52 |
+
#: bws_functions.php:103 bws_functions.php:907 class-bws-settings.php:1047
|
53 |
msgid "Visit Help Center"
|
54 |
msgstr "Visiter le site du support"
|
55 |
|
149 |
msgstr "Ajouter"
|
150 |
|
151 |
#: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
|
152 |
+
#: bws_functions.php:378 bws_functions.php:480
|
153 |
msgid "Close notice"
|
154 |
msgstr "Effacer l'avertissement"
|
155 |
|
203 |
"Votre clé de licence pour %s est terminée le %s et vous ne disposerez plus "
|
204 |
"du support rapide et des mises à jour."
|
205 |
|
206 |
+
#: bws_functions.php:475
|
207 |
#, php-format
|
208 |
msgid "Thank you for choosing %s plugin!"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: bws_functions.php:476
|
212 |
msgid ""
|
213 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
214 |
"we'd love to hear about it!"
|
216 |
"Si vous avez une fonctionnalité, une suggestion ou une idée que vous "
|
217 |
"souhaitez pour cette extension, nous serons ravis d'en parler avec vous !"
|
218 |
|
219 |
+
#: bws_functions.php:477
|
220 |
msgid "Suggest a Feature"
|
221 |
msgstr "Proposer une fonctionnalité"
|
222 |
|
223 |
+
#: bws_functions.php:493 class-bws-settings.php:533 class-bws-settings.php:536
|
224 |
#: class-bws-settings.php:584 class-bws-settings.php:587
|
225 |
msgid "Notice"
|
226 |
msgstr "Avertissement"
|
227 |
|
228 |
+
#: bws_functions.php:493
|
229 |
msgid "The plugin's settings have been changed."
|
230 |
msgstr "Les paramètres de l'extension ont été modifiés."
|
231 |
|
232 |
+
#: bws_functions.php:494 class-bws-settings.php:182 class-bws-settings.php:202
|
233 |
#: deprecated.php:640
|
234 |
msgid "Save Changes"
|
235 |
msgstr "Enregistrer les modifications"
|
236 |
|
237 |
+
#: bws_functions.php:508
|
238 |
msgid ""
|
239 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
240 |
"the \"Misc\" tab."
|
242 |
"Vous pouvez toujours consulter les options premium en cliquant sur le lien "
|
243 |
"\"Voir les fonctionnalités de la version PRO\" dans l'onglet divers."
|
244 |
|
245 |
+
#: bws_functions.php:629
|
246 |
+
msgid "Add BWS Shortcode"
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: bws_functions.php:630
|
250 |
+
msgid "Add BWS Plugins Shortcode"
|
251 |
+
msgstr "Ajouter le code court de l'extension BWS"
|
252 |
+
|
253 |
+
#: bws_functions.php:649
|
254 |
msgid "Add shortcode"
|
255 |
msgstr "Ajouter le code court"
|
256 |
|
257 |
+
#: bws_functions.php:649
|
258 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
259 |
msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
|
260 |
|
261 |
+
#: bws_functions.php:695
|
262 |
msgid "Close"
|
263 |
msgstr "Fermer"
|
264 |
|
265 |
+
#: bws_functions.php:787
|
266 |
msgid "Are you sure you want to restore default settings?"
|
267 |
msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
|
268 |
|
269 |
+
#: bws_functions.php:790
|
270 |
msgid "Yes, restore all settings"
|
271 |
msgstr "Oui, remettre les valeurs par défaut"
|
272 |
|
273 |
+
#: bws_functions.php:791
|
274 |
msgid "No, go back to the settings page"
|
275 |
msgstr "Non, retourner à la page des paramètres"
|
276 |
|
277 |
+
#: bws_functions.php:833
|
278 |
msgid "Plugin"
|
279 |
msgstr "Extension"
|
280 |
|
281 |
+
#: bws_functions.php:842
|
282 |
msgid "Shortcode settings"
|
283 |
msgstr "Paramètres du code court"
|
284 |
|
285 |
+
#: bws_functions.php:847
|
286 |
msgid "The shortcode will be inserted"
|
287 |
msgstr "Le code court sera inséré"
|
288 |
|
289 |
+
#: bws_functions.php:852
|
290 |
msgid "Insert"
|
291 |
msgstr "Insérer"
|
292 |
|
293 |
+
#: bws_functions.php:912
|
294 |
msgid "FAQ"
|
295 |
msgstr "FAQ"
|
296 |
|
297 |
+
#: bws_functions.php:918
|
298 |
msgid "For more information:"
|
299 |
msgstr "Pour plus d'informations :"
|
300 |
|
301 |
+
#: bws_functions.php:919
|
302 |
msgid "Documentation"
|
303 |
msgstr "Documentation"
|
304 |
|
305 |
+
#: bws_functions.php:920
|
306 |
msgid "Video Instructions"
|
307 |
msgstr "Vidéo explicative"
|
308 |
|
309 |
+
#: bws_functions.php:921
|
310 |
msgid "Submit a Request"
|
311 |
msgstr "Soumettre une requête"
|
312 |
|
1143 |
msgstr "version de l'extension."
|
1144 |
|
1145 |
#: product_list.php:7
|
1146 |
+
msgid "Admin Tools"
|
1147 |
+
msgstr ""
|
1148 |
|
1149 |
#: product_list.php:8
|
1150 |
+
msgid "Content"
|
1151 |
+
msgstr ""
|
1152 |
|
1153 |
#: product_list.php:9
|
1154 |
+
msgid "eCommerce"
|
1155 |
+
msgstr ""
|
1156 |
|
1157 |
#: product_list.php:10
|
1158 |
+
msgid "Marketing"
|
1159 |
+
msgstr ""
|
1160 |
|
1161 |
#: product_list.php:11
|
1162 |
+
msgid "Navigation"
|
1163 |
+
msgstr ""
|
1164 |
|
1165 |
#: product_list.php:12
|
1166 |
+
msgid "Recommended"
|
1167 |
+
msgstr "Recommandé"
|
1168 |
|
1169 |
#: product_list.php:13
|
1170 |
+
msgid "Security"
|
1171 |
+
msgstr "Sécurité"
|
1172 |
|
1173 |
#: product_list.php:14
|
1174 |
+
msgid "SEO"
|
1175 |
+
msgstr ""
|
1176 |
|
1177 |
#: product_list.php:15
|
1178 |
+
msgid "SMM"
|
1179 |
+
msgstr ""
|
1180 |
+
|
1181 |
+
#: product_list.php:22
|
1182 |
+
msgid ""
|
1183 |
+
"Protect WordPress website forms from spam entries by means of math logic."
|
1184 |
+
msgstr ""
|
1185 |
+
|
1186 |
+
#: product_list.php:32
|
1187 |
+
msgid "Create your personal car rental/booking and reservation website."
|
1188 |
+
msgstr ""
|
1189 |
+
|
1190 |
+
#: product_list.php:42
|
1191 |
+
msgid ""
|
1192 |
+
"Allow customers to reach you using secure contact form plugin any website "
|
1193 |
+
"must have."
|
1194 |
+
msgstr ""
|
1195 |
+
|
1196 |
+
#: product_list.php:52
|
1197 |
+
msgid "Add unlimited number of contact forms to WordPress website."
|
1198 |
+
msgstr ""
|
1199 |
+
|
1200 |
+
#: product_list.php:62
|
1201 |
+
msgid "Save and manage Contact Form messages. Never lose important data."
|
1202 |
+
msgstr ""
|
1203 |
+
|
1204 |
+
#: product_list.php:72
|
1205 |
+
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1206 |
+
msgstr ""
|
1207 |
+
|
1208 |
+
#: product_list.php:79
|
1209 |
+
msgid "Add custom fields to WordPress website search results."
|
1210 |
+
msgstr ""
|
1211 |
+
|
1212 |
+
#: product_list.php:86
|
1213 |
+
msgid ""
|
1214 |
+
"Add custom post types and taxonomies to WordPress website search results."
|
1215 |
+
msgstr ""
|
1216 |
+
|
1217 |
+
#: product_list.php:96
|
1218 |
+
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1219 |
+
msgstr ""
|
1220 |
+
|
1221 |
+
#: product_list.php:103
|
1222 |
+
msgid ""
|
1223 |
+
"Automatically add outgoing email messages to queue instead of sending them "
|
1224 |
+
"immediately."
|
1225 |
+
msgstr ""
|
1226 |
+
|
1227 |
+
#: product_list.php:110
|
1228 |
+
msgid ""
|
1229 |
+
"Get latest error log messages to diagnose website problems. Define and fix "
|
1230 |
+
"issues faster."
|
1231 |
+
msgstr ""
|
1232 |
+
|
1233 |
+
#: product_list.php:117
|
1234 |
+
msgid ""
|
1235 |
+
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1236 |
+
"widgets."
|
1237 |
+
msgstr ""
|
1238 |
+
|
1239 |
+
#: product_list.php:127
|
1240 |
+
msgid ""
|
1241 |
+
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1242 |
+
"clicks."
|
1243 |
+
msgstr ""
|
1244 |
+
|
1245 |
+
#: product_list.php:137
|
1246 |
+
msgid ""
|
1247 |
+
"Add unlimited gallery categories. Organize images to make the navigation "
|
1248 |
+
"through content easier."
|
1249 |
+
msgstr ""
|
1250 |
+
|
1251 |
+
#: product_list.php:144
|
1252 |
+
msgid ""
|
1253 |
+
"Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
|
1254 |
+
"posts, pages and widgets."
|
1255 |
+
msgstr ""
|
1256 |
+
|
1257 |
+
#: product_list.php:154
|
1258 |
+
msgid ""
|
1259 |
+
"Stronger security solution which protects your WordPress website from hacks "
|
1260 |
+
"and unauthorized login attempts."
|
1261 |
+
msgstr ""
|
1262 |
+
|
1263 |
+
#: product_list.php:164
|
1264 |
+
msgid ""
|
1265 |
+
"Add Adsense ads to WordPress website pages, posts, custom posts, search "
|
1266 |
+
"results, categories, tags, and widgets."
|
1267 |
+
msgstr ""
|
1268 |
+
|
1269 |
+
#: product_list.php:174
|
1270 |
+
msgid "Add Google Analytics code to WordPress website and track basic stats."
|
1271 |
+
msgstr ""
|
1272 |
+
|
1273 |
+
#: product_list.php:184
|
1274 |
+
msgid ""
|
1275 |
+
"Protect WordPress website forms from spam entries with Google Captcha "
|
1276 |
+
"(reCaptcha)."
|
1277 |
+
msgstr ""
|
1278 |
+
|
1279 |
+
#: product_list.php:194
|
1280 |
+
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1281 |
+
msgstr ""
|
1282 |
+
|
1283 |
+
#: product_list.php:204
|
1284 |
+
msgid ""
|
1285 |
+
"Generate and add XML sitemap to WordPress website. Help search engines index "
|
1286 |
+
"your blog."
|
1287 |
+
msgstr ""
|
1288 |
+
|
1289 |
+
#: product_list.php:214
|
1290 |
+
msgid ""
|
1291 |
+
"Replace external WordPress website links with Google shortlinks and track "
|
1292 |
+
"click stats."
|
1293 |
+
msgstr ""
|
1294 |
+
|
1295 |
+
#: product_list.php:221
|
1296 |
+
msgid ""
|
1297 |
+
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1298 |
+
"hostnames, etc."
|
1299 |
+
msgstr ""
|
1300 |
+
|
1301 |
+
#: product_list.php:231
|
1302 |
+
msgid ""
|
1303 |
+
"Create your personal job board and listing WordPress website. Search jobs, "
|
1304 |
+
"submit CV/resumes, choose candidates."
|
1305 |
+
msgstr ""
|
1306 |
+
|
1307 |
+
#: product_list.php:238
|
1308 |
+
msgid ""
|
1309 |
+
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1310 |
+
"attempts."
|
1311 |
+
msgstr ""
|
1312 |
+
|
1313 |
+
#: product_list.php:248
|
1314 |
+
msgid ""
|
1315 |
+
"Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
|
1316 |
+
"5 plugins included – profile, insider, etc."
|
1317 |
+
msgstr ""
|
1318 |
+
|
1319 |
+
#: product_list.php:258
|
1320 |
+
msgid ""
|
1321 |
+
"Translate WordPress website content to other languages manually. Create "
|
1322 |
+
"multilingual pages, posts, widgets, menus, etc."
|
1323 |
+
msgstr ""
|
1324 |
+
|
1325 |
+
#: product_list.php:268
|
1326 |
+
msgid ""
|
1327 |
+
"Add customizable pagination to WordPress website. Split long content to "
|
1328 |
+
"multiple pages for better navigation."
|
1329 |
+
msgstr ""
|
1330 |
+
|
1331 |
+
#: product_list.php:278
|
1332 |
+
msgid ""
|
1333 |
+
"Generate PDF files and print WordPress posts/pages. Customize document "
|
1334 |
+
"header/footer styles and appearance."
|
1335 |
+
msgstr ""
|
1336 |
+
|
1337 |
+
#: product_list.php:288
|
1338 |
+
msgid ""
|
1339 |
+
"Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
|
1340 |
+
"Profile) to WordPress posts, pages and widgets."
|
1341 |
+
msgstr ""
|
1342 |
+
|
1343 |
+
#: product_list.php:298
|
1344 |
+
msgid ""
|
1345 |
+
"Create your personal portfolio WordPress website. Manage and showcase past "
|
1346 |
+
"projects to get more clients."
|
1347 |
+
msgstr ""
|
1348 |
+
|
1349 |
+
#: product_list.php:308
|
1350 |
+
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1351 |
+
msgstr ""
|
1352 |
+
|
1353 |
+
#: product_list.php:315
|
1354 |
+
msgid ""
|
1355 |
+
"Add extra fields to default WordPress user profile. The easiest way to "
|
1356 |
+
"create and manage additional custom values."
|
1357 |
+
msgstr ""
|
1358 |
+
|
1359 |
+
#: product_list.php:322
|
1360 |
+
msgid ""
|
1361 |
+
"Add and display HTML advertisement banner on WordPress website. Customize "
|
1362 |
+
"bar styles and appearance."
|
1363 |
+
msgstr ""
|
1364 |
+
|
1365 |
+
#: product_list.php:332
|
1366 |
+
msgid ""
|
1367 |
+
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1368 |
+
"widgets."
|
1369 |
+
msgstr ""
|
1370 |
+
|
1371 |
+
#: product_list.php:339
|
1372 |
+
msgid ""
|
1373 |
+
"Add rating plugin to your WordPress website to receive feedback from your "
|
1374 |
+
"customers."
|
1375 |
+
msgstr ""
|
1376 |
+
|
1377 |
+
#: product_list.php:346
|
1378 |
+
msgid ""
|
1379 |
+
"Create your personal real estate WordPress website. Sell, rent and buy "
|
1380 |
+
"properties. Add, search and browse listings easily."
|
1381 |
+
msgstr ""
|
1382 |
+
|
1383 |
+
#: product_list.php:356
|
1384 |
+
msgid ""
|
1385 |
+
"Attach, un-attach and re-attach media files quickly to WordPress posts and "
|
1386 |
+
"pages."
|
1387 |
+
msgstr ""
|
1388 |
+
|
1389 |
+
#: product_list.php:363
|
1390 |
+
msgid ""
|
1391 |
+
"Add related, featured, latest, and popular posts to your WordPress website. "
|
1392 |
+
"Connect your blog readers with a relevant content."
|
1393 |
+
msgstr ""
|
1394 |
+
|
1395 |
+
#: product_list.php:370
|
1396 |
+
msgid ""
|
1397 |
+
"Send bulk email messages to WordPress users. Custom templates, advanced "
|
1398 |
+
"settings and detailed reports."
|
1399 |
+
msgstr ""
|
1400 |
+
|
1401 |
+
#: product_list.php:380
|
1402 |
+
msgid ""
|
1403 |
+
"The best responsive slider plugin for your WordPress website. Create "
|
1404 |
+
"beautifully animated slides just in a few clicks."
|
1405 |
+
msgstr ""
|
1406 |
+
|
1407 |
+
#: product_list.php:387
|
1408 |
+
msgid ""
|
1409 |
+
"Configure SMTP server to receive email messages from WordPress to Gmail, "
|
1410 |
+
"Yahoo, Hotmail and other services."
|
1411 |
+
msgstr ""
|
1412 |
+
|
1413 |
+
#: product_list.php:394
|
1414 |
+
msgid ""
|
1415 |
+
"Add social media buttons and widgets to WordPress posts, pages and widgets. "
|
1416 |
+
"FB, Twitter, G+1, Pinterest, LinkedIn."
|
1417 |
+
msgstr ""
|
1418 |
+
|
1419 |
+
#: product_list.php:404
|
1420 |
+
msgid ""
|
1421 |
+
"Add social media login, registration, and commenting to your WordPress "
|
1422 |
+
"website."
|
1423 |
+
msgstr ""
|
1424 |
+
|
1425 |
+
#: product_list.php:411
|
1426 |
+
msgid ""
|
1427 |
+
"Add email newsletter sign up form to WordPress posts, pages and widgets. "
|
1428 |
+
"Collect data and subscribe your users."
|
1429 |
+
msgstr ""
|
1430 |
+
|
1431 |
+
#: product_list.php:421
|
1432 |
+
msgid ""
|
1433 |
+
"Add testimonials and feedbacks from your customers to WordPress website "
|
1434 |
+
"posts, pages, and widgets."
|
1435 |
+
msgstr ""
|
1436 |
+
|
1437 |
+
#: product_list.php:428
|
1438 |
+
msgid ""
|
1439 |
+
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1440 |
+
"attendance and generate reports."
|
1441 |
+
msgstr ""
|
1442 |
+
|
1443 |
+
#: product_list.php:438
|
1444 |
+
msgid ""
|
1445 |
+
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1446 |
+
"and pages."
|
1447 |
+
msgstr ""
|
1448 |
+
|
1449 |
+
#: product_list.php:448
|
1450 |
+
msgid ""
|
1451 |
+
"Automatically check and update WordPress website core with all installed "
|
1452 |
+
"plugins and themes to the latest versions."
|
1453 |
+
msgstr ""
|
1454 |
+
|
1455 |
+
#: product_list.php:458
|
1456 |
+
msgid ""
|
1457 |
+
"Powerful user role management plugin for WordPress website. Create, edit, "
|
1458 |
+
"copy, and delete user roles."
|
1459 |
+
msgstr ""
|
1460 |
+
|
1461 |
+
#: product_list.php:468
|
1462 |
+
msgid ""
|
1463 |
+
"Display live count of online visitors who are currently browsing your "
|
1464 |
+
"WordPress website."
|
1465 |
+
msgstr ""
|
1466 |
+
|
1467 |
+
#: product_list.php:478
|
1468 |
+
msgid ""
|
1469 |
+
"Backup and export Zendesk Help Center content automatically to your "
|
1470 |
+
"WordPress website database."
|
1471 |
+
msgstr ""
|
1472 |
+
|
1473 |
+
#~ msgid "Advertisement"
|
1474 |
+
#~ msgstr "Publicité"
|
1475 |
+
|
1476 |
+
#~ msgid "Content & Media"
|
1477 |
+
#~ msgstr "Contenu & média"
|
1478 |
+
|
1479 |
+
#~ msgid "Management"
|
1480 |
+
#~ msgstr "Administration"
|
1481 |
+
|
1482 |
+
#~ msgid "Site Stats"
|
1483 |
+
#~ msgstr "Statistiques"
|
1484 |
+
|
1485 |
+
#~ msgid "Social"
|
1486 |
+
#~ msgstr "Social"
|
1487 |
+
|
1488 |
+
#~ msgid "Utilities"
|
1489 |
+
#~ msgstr "Utilitaires"
|
1490 |
+
|
1491 |
+
#~ msgid "Other"
|
1492 |
+
#~ msgstr "Autre"
|
1493 |
|
1494 |
#~ msgid "Thank you for installing"
|
1495 |
#~ msgstr "Merci d'avoir installé"
|
1589 |
#~ "Vous pouvez trouver votre clé de licence sur votre page personnelle dans "
|
1590 |
#~ "la zone cliente en cliquant sur le lien"
|
1591 |
|
|
|
|
|
|
|
1592 |
#~ msgid ""
|
1593 |
#~ "(your username is the email you specify when purchasing the product), "
|
1594 |
#~ "where you can make the necessary changes."
|
bws_menu/languages/bestwebsoft-id_ID.mo
ADDED
Binary file
|
bws_menu/languages/bestwebsoft-id_ID.po
ADDED
@@ -0,0 +1,2069 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: bestwebsoft\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-06-08 15:43+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-06-08 15:43+0300\n"
|
7 |
+
"Last-Translator: Jordan Silaen <jordan.silaen@chameleonjohn.com>\n"
|
8 |
+
"Language-Team: chameleonjohn.com <jordan.silaen@chameleonjohn.com>\n"
|
9 |
+
"Language: id\n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
|
14 |
+
"X-Poedit-Basepath: ..\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
17 |
+
"X-Generator: Poedit 1.8.7.1\n"
|
18 |
+
"X-Poedit-SearchPath-0: .\n"
|
19 |
+
|
20 |
+
#: bws_functions.php:72 bws_functions.php:190
|
21 |
+
msgid "requires"
|
22 |
+
msgstr "membutuhkan"
|
23 |
+
|
24 |
+
#: bws_functions.php:74
|
25 |
+
msgid ""
|
26 |
+
"or higher, that is why it has been deactivated! Please upgrade WordPress and "
|
27 |
+
"try again."
|
28 |
+
msgstr ""
|
29 |
+
"atau lebih tinggi, itu sebabnya telah dinonaktifkan! Silakan upgrade "
|
30 |
+
"WordPress dan coba lagi."
|
31 |
+
|
32 |
+
#: bws_functions.php:75
|
33 |
+
msgid "Back to the WordPress"
|
34 |
+
msgstr "Kembali ke WordPress"
|
35 |
+
|
36 |
+
#: bws_functions.php:77
|
37 |
+
msgid "Plugins page"
|
38 |
+
msgstr "halaman plugin"
|
39 |
+
|
40 |
+
#: bws_functions.php:91
|
41 |
+
msgid "Like the plugin?"
|
42 |
+
msgstr "Seperti plugin?"
|
43 |
+
|
44 |
+
#: bws_functions.php:93
|
45 |
+
msgid "Rate it"
|
46 |
+
msgstr "Menilai itu"
|
47 |
+
|
48 |
+
#: bws_functions.php:102
|
49 |
+
msgid "Need help?"
|
50 |
+
msgstr "Butuh bantuan?"
|
51 |
+
|
52 |
+
#: bws_functions.php:103 bws_functions.php:907 class-bws-settings.php:1047
|
53 |
+
msgid "Visit Help Center"
|
54 |
+
msgstr "Kunjungi Pusat Bantuan"
|
55 |
+
|
56 |
+
#: bws_functions.php:106
|
57 |
+
msgid "Want to support the plugin?"
|
58 |
+
msgstr "Ingin mendukung plugin?"
|
59 |
+
|
60 |
+
#: bws_functions.php:107 bws_menu.php:553
|
61 |
+
msgid "Donate"
|
62 |
+
msgstr "Menyumbangkan"
|
63 |
+
|
64 |
+
#: bws_functions.php:127
|
65 |
+
msgid "WARNING: Illegal use notification"
|
66 |
+
msgstr "PERINGATAN: Illegal penggunaan notifikasi"
|
67 |
+
|
68 |
+
#: bws_functions.php:127
|
69 |
+
msgid ""
|
70 |
+
"You can use one license of the Pro plugin for one domain only. Please check "
|
71 |
+
"and edit your license or domain if necessary using you personal Client Area. "
|
72 |
+
"We strongly recommend you to solve the problem within 24 hours, otherwise "
|
73 |
+
"the Pro plugin will be deactivated."
|
74 |
+
msgstr ""
|
75 |
+
"Anda dapat menggunakan satu lisensi dari plugin Pro untuk satu domain saja. "
|
76 |
+
"Silakan periksa dan mengedit lisensi atau domain jika perlu menggunakan Anda "
|
77 |
+
"pribadi Area Klien. Kami sangat menyarankan Anda untuk memecahkan masalah "
|
78 |
+
"dalam waktu 24 jam, dinyatakan plugin Pro akan dinonaktifkan."
|
79 |
+
|
80 |
+
#: bws_functions.php:127 bws_functions.php:339 bws_menu.php:627
|
81 |
+
#: class-bws-settings.php:143
|
82 |
+
msgid "Learn More"
|
83 |
+
msgstr "Belajarlah lagi"
|
84 |
+
|
85 |
+
#: bws_functions.php:144
|
86 |
+
msgid ""
|
87 |
+
"Notice: Your Pro Trial license has expired. To continue using the plugin, "
|
88 |
+
"you should buy a Pro license"
|
89 |
+
msgstr ""
|
90 |
+
"Perhatikan: lisensi Percobaan Pro Anda telah kedaluwarsa. Untuk terus "
|
91 |
+
"menggunakan plugin, Anda harus membeli lisensi Pro"
|
92 |
+
|
93 |
+
#: bws_functions.php:146
|
94 |
+
msgid ""
|
95 |
+
"Your license has expired. To continue getting top-priority support and "
|
96 |
+
"plugin updates, you should extend it."
|
97 |
+
msgstr ""
|
98 |
+
"lisensi Anda telah berakhir. Untuk terus mendapatkan dukungan top-prioritas "
|
99 |
+
"dan update Plugin, Anda harus memperpanjang."
|
100 |
+
|
101 |
+
#: bws_functions.php:146 bws_functions.php:382 deprecated.php:584
|
102 |
+
msgid "Learn more"
|
103 |
+
msgstr "Belajarlah lagi"
|
104 |
+
|
105 |
+
#: bws_functions.php:164
|
106 |
+
#, php-format
|
107 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
108 |
+
msgstr "Perhatikan: Anda menggunakan lisensi Percobaan Pro dari %s Plugin."
|
109 |
+
|
110 |
+
#: bws_functions.php:166
|
111 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
112 |
+
msgstr "Perhatikan: Anda menggunakan lisensi Percobaan Pro plugin."
|
113 |
+
|
114 |
+
#: bws_functions.php:169
|
115 |
+
msgid "The Pro Trial license will expire on"
|
116 |
+
msgstr "Lisensi Percobaan Pro akan berakhir pada"
|
117 |
+
|
118 |
+
#: bws_functions.php:192
|
119 |
+
msgid ""
|
120 |
+
"or higher! We do not guarantee that our plugin will work correctly. Please "
|
121 |
+
"upgrade to WordPress latest version."
|
122 |
+
msgstr ""
|
123 |
+
"atau lebih tinggi! Kami tidak menjamin bahwa plugin kami akan bekerja dengan "
|
124 |
+
"benar. Silakan upgrade ke WordPress versi terbaru."
|
125 |
+
|
126 |
+
#: bws_functions.php:207
|
127 |
+
#, php-format
|
128 |
+
msgid "Thank you for installing %s plugin!"
|
129 |
+
msgstr ""
|
130 |
+
|
131 |
+
#: bws_functions.php:208
|
132 |
+
msgid "Let's get started"
|
133 |
+
msgstr "Mari kita mulai"
|
134 |
+
|
135 |
+
#: bws_functions.php:209 bws_functions.php:242 bws_menu.php:557
|
136 |
+
#: bws_menu.php:559
|
137 |
+
msgid "Settings"
|
138 |
+
msgstr "pengaturan"
|
139 |
+
|
140 |
+
#: bws_functions.php:211 bws_menu.php:328 class-bws-settings.php:736
|
141 |
+
#: class-bws-settings.php:1049 class-bws-settings.php:1059 deprecated.php:694
|
142 |
+
msgid "or"
|
143 |
+
msgstr "atau"
|
144 |
+
|
145 |
+
#: bws_functions.php:212 bws_functions.php:244
|
146 |
+
msgid "Add New"
|
147 |
+
msgstr "Tambah baru"
|
148 |
+
|
149 |
+
#: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
|
150 |
+
#: bws_functions.php:378 bws_functions.php:480
|
151 |
+
msgid "Close notice"
|
152 |
+
msgstr "Tutup pemberitahuan"
|
153 |
+
|
154 |
+
#: bws_functions.php:231
|
155 |
+
msgid "Thank you for installing plugins by BestWebSoft!"
|
156 |
+
msgstr "Terima kasih untuk menginstal plugin dengan BestWebSoft!"
|
157 |
+
|
158 |
+
#: bws_functions.php:233
|
159 |
+
msgid "More Details"
|
160 |
+
msgstr "Keterangan lebih lanjut"
|
161 |
+
|
162 |
+
#: bws_functions.php:234
|
163 |
+
msgid "Less Details"
|
164 |
+
msgstr "Kurang Detail"
|
165 |
+
|
166 |
+
#: bws_functions.php:262
|
167 |
+
msgid "Deprecated function(-s) is used on the site here:"
|
168 |
+
msgstr "Fungsi usang (-s) digunakan di situs di sini:"
|
169 |
+
|
170 |
+
#: bws_functions.php:276
|
171 |
+
msgid ""
|
172 |
+
"This function(-s) will be removed over time. Please update the product(-s)."
|
173 |
+
msgstr ""
|
174 |
+
"Fungsi ini (-s) akan dihapus dari waktu ke waktu. Perbarui produk (-s)."
|
175 |
+
|
176 |
+
#: bws_functions.php:335
|
177 |
+
msgid "It’s time to upgrade your"
|
178 |
+
msgstr "Saatnya untuk meng-upgrade Anda"
|
179 |
+
|
180 |
+
#: bws_functions.php:335
|
181 |
+
msgid "to"
|
182 |
+
msgstr "untuk"
|
183 |
+
|
184 |
+
#: bws_functions.php:335
|
185 |
+
msgid "version!"
|
186 |
+
msgstr "versi!"
|
187 |
+
|
188 |
+
#: bws_functions.php:336
|
189 |
+
msgid "Extend standard plugin functionality with new great options."
|
190 |
+
msgstr "Memperluas fungsi Plugin standar dengan pilihan besar baru."
|
191 |
+
|
192 |
+
#: bws_functions.php:382
|
193 |
+
#, php-format
|
194 |
+
msgid ""
|
195 |
+
"Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
|
196 |
+
"SUPPORT or UPDATES."
|
197 |
+
msgstr ""
|
198 |
+
"Kunci lisensi untuk %s berakhir pada %s dan Anda tidak akan diberikan TOP-"
|
199 |
+
"PRIORITAS DUKUNGAN atau PEMBARUAN."
|
200 |
+
|
201 |
+
#: bws_functions.php:475
|
202 |
+
#, php-format
|
203 |
+
msgid "Thank you for choosing %s plugin!"
|
204 |
+
msgstr ""
|
205 |
+
|
206 |
+
#: bws_functions.php:476
|
207 |
+
msgid ""
|
208 |
+
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
209 |
+
"we'd love to hear about it!"
|
210 |
+
msgstr ""
|
211 |
+
"Jika Anda memiliki fitur, saran atau ide yang ingin Anda lihat di plugin, "
|
212 |
+
"kami akan senang mendengar tentang hal itu!"
|
213 |
+
|
214 |
+
#: bws_functions.php:477
|
215 |
+
msgid "Suggest a Feature"
|
216 |
+
msgstr "Sarankan Fitur sebuah"
|
217 |
+
|
218 |
+
#: bws_functions.php:493 class-bws-settings.php:533 class-bws-settings.php:536
|
219 |
+
#: class-bws-settings.php:584 class-bws-settings.php:587
|
220 |
+
msgid "Notice"
|
221 |
+
msgstr "Melihat"
|
222 |
+
|
223 |
+
#: bws_functions.php:493
|
224 |
+
msgid "The plugin's settings have been changed."
|
225 |
+
msgstr "pengaturan plugin ini telah berubah."
|
226 |
+
|
227 |
+
#: bws_functions.php:494 class-bws-settings.php:182 class-bws-settings.php:202
|
228 |
+
#: deprecated.php:640
|
229 |
+
msgid "Save Changes"
|
230 |
+
msgstr "Simpan perubahan"
|
231 |
+
|
232 |
+
#: bws_functions.php:508
|
233 |
+
msgid ""
|
234 |
+
"You can always look at premium options by checking the \"Pro Options\" in "
|
235 |
+
"the \"Misc\" tab."
|
236 |
+
msgstr ""
|
237 |
+
"Anda selalu dapat melihat pilihan premium dengan memeriksa \\ \"Pro Options "
|
238 |
+
"\" di \\ tab \"Misc \"."
|
239 |
+
|
240 |
+
#: bws_functions.php:629
|
241 |
+
msgid "Add BWS Shortcode"
|
242 |
+
msgstr ""
|
243 |
+
|
244 |
+
#: bws_functions.php:630
|
245 |
+
msgid "Add BWS Plugins Shortcode"
|
246 |
+
msgstr "Tambahkan BWS Plugin pendek"
|
247 |
+
|
248 |
+
#: bws_functions.php:649
|
249 |
+
msgid "Add shortcode"
|
250 |
+
msgstr "Tambahkan shortcode"
|
251 |
+
|
252 |
+
#: bws_functions.php:649
|
253 |
+
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
254 |
+
msgstr "Tambahkan shortcode BestWebSoft plugin 'menggunakan tombol ini."
|
255 |
+
|
256 |
+
#: bws_functions.php:695
|
257 |
+
msgid "Close"
|
258 |
+
msgstr "Dekat"
|
259 |
+
|
260 |
+
#: bws_functions.php:787
|
261 |
+
msgid "Are you sure you want to restore default settings?"
|
262 |
+
msgstr "Apakah Anda yakin ingin mengembalikan pengaturan default?"
|
263 |
+
|
264 |
+
#: bws_functions.php:790
|
265 |
+
msgid "Yes, restore all settings"
|
266 |
+
msgstr "Ya, mengembalikan semua pengaturan"
|
267 |
+
|
268 |
+
#: bws_functions.php:791
|
269 |
+
msgid "No, go back to the settings page"
|
270 |
+
msgstr "Tidak, kembali ke halaman pengaturan"
|
271 |
+
|
272 |
+
#: bws_functions.php:833
|
273 |
+
msgid "Plugin"
|
274 |
+
msgstr "Plugin"
|
275 |
+
|
276 |
+
#: bws_functions.php:842
|
277 |
+
msgid "Shortcode settings"
|
278 |
+
msgstr "pengaturan shortcode"
|
279 |
+
|
280 |
+
#: bws_functions.php:847
|
281 |
+
msgid "The shortcode will be inserted"
|
282 |
+
msgstr "shortcode akan dimasukkan"
|
283 |
+
|
284 |
+
#: bws_functions.php:852
|
285 |
+
msgid "Insert"
|
286 |
+
msgstr "Memasukkan"
|
287 |
+
|
288 |
+
#: bws_functions.php:912
|
289 |
+
msgid "FAQ"
|
290 |
+
msgstr "FAQ"
|
291 |
+
|
292 |
+
#: bws_functions.php:918
|
293 |
+
msgid "For more information:"
|
294 |
+
msgstr "Untuk informasi lebih lanjut:"
|
295 |
+
|
296 |
+
#: bws_functions.php:919
|
297 |
+
msgid "Documentation"
|
298 |
+
msgstr "Dokumentasi"
|
299 |
+
|
300 |
+
#: bws_functions.php:920
|
301 |
+
msgid "Video Instructions"
|
302 |
+
msgstr "Petunjuk Video"
|
303 |
+
|
304 |
+
#: bws_functions.php:921
|
305 |
+
msgid "Submit a Request"
|
306 |
+
msgstr "Mengajukan permohonan"
|
307 |
+
|
308 |
+
#: bws_menu.php:101 class-bws-settings.php:781 deprecated.php:322
|
309 |
+
msgid "Wrong license key"
|
310 |
+
msgstr "kunci lisensi yang salah"
|
311 |
+
|
312 |
+
#: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
|
313 |
+
#: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
|
314 |
+
#: deprecated.php:352
|
315 |
+
msgid ""
|
316 |
+
"Something went wrong. Please try again later. If the error appears again, "
|
317 |
+
"please contact us"
|
318 |
+
msgstr ""
|
319 |
+
"Ada yang salah. Silakan coba lagi nanti. Jika kesalahan muncul lagi, "
|
320 |
+
"silahkan hubungi kami"
|
321 |
+
|
322 |
+
#: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
|
323 |
+
#: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
|
324 |
+
#: deprecated.php:352
|
325 |
+
msgid "We are sorry for inconvenience."
|
326 |
+
msgstr "Kami mohon maaf atas ketidaknyamanan."
|
327 |
+
|
328 |
+
#: bws_menu.php:128 class-bws-settings.php:813 class-bws-settings.php:916
|
329 |
+
#: deprecated.php:139 deprecated.php:358
|
330 |
+
msgid "Wrong license key."
|
331 |
+
msgstr "kunci lisensi yang salah."
|
332 |
+
|
333 |
+
#: bws_menu.php:130
|
334 |
+
msgid ""
|
335 |
+
"This license key is bound to another site. Change it via personal Client "
|
336 |
+
"Area."
|
337 |
+
msgstr ""
|
338 |
+
"kunci lisensi ini terikat ke situs lain. Mengubahnya melalui personal Area "
|
339 |
+
"Klien."
|
340 |
+
|
341 |
+
#: bws_menu.php:130
|
342 |
+
msgid "Log in"
|
343 |
+
msgstr "Masuk"
|
344 |
+
|
345 |
+
#: bws_menu.php:132 bws_menu.php:334 deprecated.php:261
|
346 |
+
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
347 |
+
msgstr "Sayangnya, Anda telah melebihi jumlah mencoba tersedia per hari."
|
348 |
+
|
349 |
+
#: bws_menu.php:134 class-bws-settings.php:922 deprecated.php:364
|
350 |
+
#, php-format
|
351 |
+
msgid ""
|
352 |
+
"Unfortunately, Your license has expired. To continue getting top-priority "
|
353 |
+
"support and plugin updates, you should extend it in your %s"
|
354 |
+
msgstr ""
|
355 |
+
"Sayangnya, lisensi Anda telah kedaluwarsa. Untuk terus mendapatkan dukungan "
|
356 |
+
"top-prioritas dan Plugin update, Anda harus memperpanjang di Anda %s"
|
357 |
+
|
358 |
+
#: bws_menu.php:136 class-bws-settings.php:924 deprecated.php:366
|
359 |
+
msgid ""
|
360 |
+
"Unfortunately, the Pro licence was already installed to this domain. The Pro "
|
361 |
+
"Trial license can be installed only once."
|
362 |
+
msgstr ""
|
363 |
+
"Sayangnya, lisensi Pro sudah dipasang untuk domain ini. Lisensi Percobaan "
|
364 |
+
"Pro dapat diinstal hanya sekali."
|
365 |
+
|
366 |
+
#: bws_menu.php:142 class-bws-settings.php:828 deprecated.php:153
|
367 |
+
msgid "The license key is valid."
|
368 |
+
msgstr "Kunci lisensi berlaku."
|
369 |
+
|
370 |
+
#: bws_menu.php:144 class-bws-settings.php:831 deprecated.php:156
|
371 |
+
msgid "Your license will expire on"
|
372 |
+
msgstr "lisensi Anda akan berakhir pada"
|
373 |
+
|
374 |
+
#: bws_menu.php:146
|
375 |
+
msgid "Congratulations! Pro Membership license is activated successfully."
|
376 |
+
msgstr "Selamat! lisensi Keanggotaan Pro berhasil diaktifkan."
|
377 |
+
|
378 |
+
#: bws_menu.php:153 class-bws-settings.php:996 deprecated.php:435
|
379 |
+
msgid ""
|
380 |
+
"Something went wrong. Try again later or upload the plugin manually. We are "
|
381 |
+
"sorry for inconvenience."
|
382 |
+
msgstr ""
|
383 |
+
"Ada yang salah. Coba lagi nanti atau meng-upload plugin secara manual. Kami "
|
384 |
+
"mohon maaf atas ketidaknyamanan."
|
385 |
+
|
386 |
+
#: bws_menu.php:163
|
387 |
+
msgid "Please enter your license key."
|
388 |
+
msgstr "Masukkan kunci lisensi Anda."
|
389 |
+
|
390 |
+
#: bws_menu.php:174
|
391 |
+
msgid "Not set"
|
392 |
+
msgstr "Tidak diatur"
|
393 |
+
|
394 |
+
#: bws_menu.php:176
|
395 |
+
msgid "On"
|
396 |
+
msgstr "Di"
|
397 |
+
|
398 |
+
#: bws_menu.php:176
|
399 |
+
msgid "Off"
|
400 |
+
msgstr "Mati"
|
401 |
+
|
402 |
+
#: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
|
403 |
+
#: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
|
404 |
+
msgid "N/A"
|
405 |
+
msgstr "N / A"
|
406 |
+
|
407 |
+
#: bws_menu.php:182
|
408 |
+
msgid " Mb"
|
409 |
+
msgstr " Mb"
|
410 |
+
|
411 |
+
#: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
|
412 |
+
msgid "Yes"
|
413 |
+
msgstr "iya nih"
|
414 |
+
|
415 |
+
#: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
|
416 |
+
msgid "No"
|
417 |
+
msgstr "Tidak"
|
418 |
+
|
419 |
+
#: bws_menu.php:196
|
420 |
+
msgid "WordPress Environment"
|
421 |
+
msgstr "WordPress Lingkungan"
|
422 |
+
|
423 |
+
#: bws_menu.php:198
|
424 |
+
msgid "Home URL"
|
425 |
+
msgstr "URL rumah"
|
426 |
+
|
427 |
+
#: bws_menu.php:199
|
428 |
+
msgid "Website URL"
|
429 |
+
msgstr "alamat situs web"
|
430 |
+
|
431 |
+
#: bws_menu.php:200
|
432 |
+
msgid "WP Version"
|
433 |
+
msgstr "WP Versi"
|
434 |
+
|
435 |
+
#: bws_menu.php:201
|
436 |
+
msgid "WP Multisite"
|
437 |
+
msgstr "WP Multisite"
|
438 |
+
|
439 |
+
#: bws_menu.php:202
|
440 |
+
msgid "WP Memory Limit"
|
441 |
+
msgstr "WP Memory Limit"
|
442 |
+
|
443 |
+
#: bws_menu.php:203
|
444 |
+
msgid "Active Theme"
|
445 |
+
msgstr "Tema aktif"
|
446 |
+
|
447 |
+
#: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
|
448 |
+
#, php-format
|
449 |
+
msgid "by %s"
|
450 |
+
msgstr "oleh %s"
|
451 |
+
|
452 |
+
#: bws_menu.php:207
|
453 |
+
msgid "Server Environment"
|
454 |
+
msgstr "Server Lingkungan"
|
455 |
+
|
456 |
+
#: bws_menu.php:209
|
457 |
+
msgid "Operating System"
|
458 |
+
msgstr "Sistem operasi"
|
459 |
+
|
460 |
+
#: bws_menu.php:210
|
461 |
+
msgid "Server"
|
462 |
+
msgstr "Server"
|
463 |
+
|
464 |
+
#: bws_menu.php:211
|
465 |
+
msgid "PHP Version"
|
466 |
+
msgstr "PHP Versi"
|
467 |
+
|
468 |
+
#: bws_menu.php:212
|
469 |
+
msgid "PHP Allow URL fopen"
|
470 |
+
msgstr "PHP Izinkan URL fopen"
|
471 |
+
|
472 |
+
#: bws_menu.php:213
|
473 |
+
msgid "PHP Memory Limit"
|
474 |
+
msgstr "PHP Memory Limit"
|
475 |
+
|
476 |
+
#: bws_menu.php:214
|
477 |
+
msgid "Memory Usage"
|
478 |
+
msgstr "memory Usage"
|
479 |
+
|
480 |
+
#: bws_menu.php:215
|
481 |
+
msgid "PHP Max Upload Size"
|
482 |
+
msgstr "Ukuran PHP Max Upload"
|
483 |
+
|
484 |
+
#: bws_menu.php:216
|
485 |
+
msgid "PHP Max Post Size"
|
486 |
+
msgstr "PHP Max Pos Ukuran"
|
487 |
+
|
488 |
+
#: bws_menu.php:217
|
489 |
+
msgid "PHP Max Script Execute Time"
|
490 |
+
msgstr "PHP Max Script Jalankan Waktu"
|
491 |
+
|
492 |
+
#: bws_menu.php:218
|
493 |
+
msgid "PHP Exif support"
|
494 |
+
msgstr "dukungan PHP Exif"
|
495 |
+
|
496 |
+
#: bws_menu.php:219
|
497 |
+
msgid "PHP IPTC support"
|
498 |
+
msgstr "dukungan PHP IPTC"
|
499 |
+
|
500 |
+
#: bws_menu.php:220
|
501 |
+
msgid "PHP XML support"
|
502 |
+
msgstr "dukungan XML PHP"
|
503 |
+
|
504 |
+
#: bws_menu.php:226
|
505 |
+
msgid "Database"
|
506 |
+
msgstr "database"
|
507 |
+
|
508 |
+
#: bws_menu.php:228
|
509 |
+
msgid "WP DB version"
|
510 |
+
msgstr "Versi WP DB"
|
511 |
+
|
512 |
+
#: bws_menu.php:229
|
513 |
+
msgid "MySQL version"
|
514 |
+
msgstr "versi MySQL"
|
515 |
+
|
516 |
+
#: bws_menu.php:230
|
517 |
+
msgid "SQL Mode"
|
518 |
+
msgstr "SQL Modus"
|
519 |
+
|
520 |
+
#: bws_menu.php:234
|
521 |
+
msgid "Active Plugins"
|
522 |
+
msgstr "Plugin aktif"
|
523 |
+
|
524 |
+
#: bws_menu.php:239
|
525 |
+
msgid "Inactive Plugins"
|
526 |
+
msgstr "Plugin tidak aktif"
|
527 |
+
|
528 |
+
#: bws_menu.php:260
|
529 |
+
msgid "Please enter a valid email address."
|
530 |
+
msgstr "Silakan isi alamat email."
|
531 |
+
|
532 |
+
#: bws_menu.php:264
|
533 |
+
msgid "Email with system info is sent to"
|
534 |
+
msgstr "Email dengan info sistem dikirim ke"
|
535 |
+
|
536 |
+
#: bws_menu.php:268
|
537 |
+
msgid "Thank you for contacting us."
|
538 |
+
msgstr "Terima kasih sudah menghubungi kami."
|
539 |
+
|
540 |
+
#: bws_menu.php:291
|
541 |
+
msgid "Sorry, email message could not be delivered."
|
542 |
+
msgstr "Maaf, pesan email tidak dapat disampaikan."
|
543 |
+
|
544 |
+
#: bws_menu.php:307 bws_menu.php:311 bws_menu.php:360 deprecated.php:91
|
545 |
+
msgid "Plugins"
|
546 |
+
msgstr "plugin"
|
547 |
+
|
548 |
+
#: bws_menu.php:308 bws_menu.php:312 bws_menu.php:611 deprecated.php:92
|
549 |
+
msgid "Themes"
|
550 |
+
msgstr "tema"
|
551 |
+
|
552 |
+
#: bws_menu.php:309 bws_menu.php:313 bws_menu.php:662
|
553 |
+
msgid "System status"
|
554 |
+
msgstr "Status sistem"
|
555 |
+
|
556 |
+
#: bws_menu.php:317
|
557 |
+
msgid "Support"
|
558 |
+
msgstr "Mendukung"
|
559 |
+
|
560 |
+
#: bws_menu.php:318
|
561 |
+
msgid "Manage purchased licenses & subscriptions"
|
562 |
+
msgstr "Mengelola membeli lisensi & langganan"
|
563 |
+
|
564 |
+
#: bws_menu.php:326
|
565 |
+
#, php-format
|
566 |
+
msgid "Get Access to %s+ Premium Plugins"
|
567 |
+
msgstr "Dapatkan Akses ke %s + Premium Plugin"
|
568 |
+
|
569 |
+
#: bws_menu.php:328
|
570 |
+
msgid "Subscribe to Pro Membership"
|
571 |
+
msgstr "Berlangganan Pro Keanggotaan"
|
572 |
+
|
573 |
+
#: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:749
|
574 |
+
#: deprecated.php:227
|
575 |
+
msgid "Check license key"
|
576 |
+
msgstr "Periksa kunci lisensi"
|
577 |
+
|
578 |
+
#: bws_menu.php:339
|
579 |
+
msgid "Enter your license key"
|
580 |
+
msgstr "Masukkan kunci lisensi Anda"
|
581 |
+
|
582 |
+
#: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
|
583 |
+
#: class-bws-settings.php:728 deprecated.php:259 deprecated.php:267
|
584 |
+
#: deprecated.php:629 deprecated.php:700 deprecated.php:709
|
585 |
+
msgid "Activate"
|
586 |
+
msgstr "Mengaktifkan"
|
587 |
+
|
588 |
+
#: bws_menu.php:361
|
589 |
+
msgid "Upload Plugin"
|
590 |
+
msgstr "Upload Plugin"
|
591 |
+
|
592 |
+
#: bws_menu.php:365
|
593 |
+
#, php-format
|
594 |
+
msgid ""
|
595 |
+
"The plugin generated %d characters of <strong>unexpected output</strong> "
|
596 |
+
"during activation. If you notice “headers already sent” "
|
597 |
+
"messages, problems with syndication feeds or other issues, try deactivating "
|
598 |
+
"or removing this plugin."
|
599 |
+
msgstr ""
|
600 |
+
"Plugin yang dihasilkan %d karakter dari <strong> tak terduga keluaran </ "
|
601 |
+
"strong> selama aktivasi. Jika Anda melihat & # 8220; header sudah dikirim & "
|
602 |
+
"# 8221; pesan, masalah dengan feed sindikasi atau masalah lain, coba "
|
603 |
+
"menonaktifkan atau menghapus plugin ini."
|
604 |
+
|
605 |
+
#: bws_menu.php:367
|
606 |
+
msgid ""
|
607 |
+
"Plugin could not be activated because it triggered a <strong>fatal error</"
|
608 |
+
"strong>."
|
609 |
+
msgstr ""
|
610 |
+
"Plugin tidak dapat diaktifkan karena memicu <strong> kesalahan fatal </ "
|
611 |
+
"strong>."
|
612 |
+
|
613 |
+
#: bws_menu.php:370
|
614 |
+
msgid "Plugin <strong>activated</strong>."
|
615 |
+
msgstr "Plugin <strong> diaktifkan </ strong>."
|
616 |
+
|
617 |
+
#: bws_menu.php:377
|
618 |
+
msgid "Installing Plugin"
|
619 |
+
msgstr "Instalasi Plugin"
|
620 |
+
|
621 |
+
#: bws_menu.php:383
|
622 |
+
msgid "Downloading install package from"
|
623 |
+
msgstr "Men-download menginstal paket dari"
|
624 |
+
|
625 |
+
#: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
|
626 |
+
#: class-bws-settings.php:948 class-bws-settings.php:970
|
627 |
+
#: class-bws-settings.php:992 deprecated.php:387 deprecated.php:409
|
628 |
+
#: deprecated.php:431
|
629 |
+
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
630 |
+
msgstr "Gagal mengunduh arsip zip. Silakan, upload plugin secara manual"
|
631 |
+
|
632 |
+
#: bws_menu.php:408
|
633 |
+
msgid "Unpacking the package"
|
634 |
+
msgstr "Membuka paket"
|
635 |
+
|
636 |
+
#: bws_menu.php:413 bws_menu.php:421
|
637 |
+
msgid "Installing the plugin"
|
638 |
+
msgstr "Instalasi plugin"
|
639 |
+
|
640 |
+
#: bws_menu.php:417 class-bws-settings.php:960 deprecated.php:399
|
641 |
+
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
642 |
+
msgstr "Gagal membuka arsip zip. Silakan, upload plugin secara manual"
|
643 |
+
|
644 |
+
#: bws_menu.php:424 class-bws-settings.php:966 deprecated.php:405
|
645 |
+
msgid ""
|
646 |
+
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
647 |
+
"plugin manually"
|
648 |
+
msgstr ""
|
649 |
+
"server Anda tidak mendukung baik ZipArchive atau Phar. Silakan, upload "
|
650 |
+
"plugin secara manual"
|
651 |
+
|
652 |
+
#: bws_menu.php:427
|
653 |
+
#, php-format
|
654 |
+
msgid "The plugin %s is successfully installed."
|
655 |
+
msgstr "Plugin %s berhasil diinstal."
|
656 |
+
|
657 |
+
#: bws_menu.php:434 class-bws-settings.php:973 deprecated.php:412
|
658 |
+
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
659 |
+
msgstr "UploadDir tidak dapat ditulis. Silakan, upload plugin secara manual"
|
660 |
+
|
661 |
+
#: bws_menu.php:439
|
662 |
+
msgid "Activate Plugin"
|
663 |
+
msgstr "Aktifkan Plugin"
|
664 |
+
|
665 |
+
#: bws_menu.php:439 bws_menu.php:445
|
666 |
+
msgid "Return to BestWebSoft Panel"
|
667 |
+
msgstr "Kembali ke BestWebSoft Panel"
|
668 |
+
|
669 |
+
#: bws_menu.php:449 bws_menu.php:464 bws_menu.php:593
|
670 |
+
msgid "All"
|
671 |
+
msgstr "Semua"
|
672 |
+
|
673 |
+
#: bws_menu.php:450 bws_menu.php:650
|
674 |
+
msgid "Installed"
|
675 |
+
msgstr "dipasang"
|
676 |
+
|
677 |
+
#: bws_menu.php:451
|
678 |
+
msgid "Not Installed"
|
679 |
+
msgstr "Tidak terpasang"
|
680 |
+
|
681 |
+
#: bws_menu.php:457
|
682 |
+
msgid "Filter results"
|
683 |
+
msgstr "Filter hasil"
|
684 |
+
|
685 |
+
#: bws_menu.php:460 bws_menu.php:589
|
686 |
+
msgid "Category"
|
687 |
+
msgstr "Kategori"
|
688 |
+
|
689 |
+
#: bws_menu.php:524
|
690 |
+
msgid "Not installed"
|
691 |
+
msgstr "Tidak terpasang"
|
692 |
+
|
693 |
+
#: bws_menu.php:528
|
694 |
+
msgid "Renew to get updates"
|
695 |
+
msgstr "Renew untuk mendapatkan update"
|
696 |
+
|
697 |
+
#: bws_menu.php:531
|
698 |
+
#, php-format
|
699 |
+
msgid "Update to v %s"
|
700 |
+
msgstr "Update untuk v %s"
|
701 |
+
|
702 |
+
#: bws_menu.php:543 bws_menu.php:566 bws_menu.php:575
|
703 |
+
msgid "Install Now"
|
704 |
+
msgstr "Pasang sekarang"
|
705 |
+
|
706 |
+
#: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
|
707 |
+
msgid "Upgrade to Pro"
|
708 |
+
msgstr "Upgrade ke yang lebih baik"
|
709 |
+
|
710 |
+
#: bws_menu.php:563 bws_menu.php:572
|
711 |
+
msgid "Activate this plugin"
|
712 |
+
msgstr "Aktifkan plugin ini"
|
713 |
+
|
714 |
+
#: bws_menu.php:575
|
715 |
+
msgid "Install this plugin"
|
716 |
+
msgstr "Menginstal plugin ini"
|
717 |
+
|
718 |
+
#: bws_menu.php:584
|
719 |
+
msgid "Nothing found. Try another criteria."
|
720 |
+
msgstr "Tidak ada yang ditemukan. Coba kriteria lain."
|
721 |
+
|
722 |
+
#: bws_menu.php:621 bws_menu.php:641
|
723 |
+
#, php-format
|
724 |
+
msgid "By %s"
|
725 |
+
msgstr "Oleh %s"
|
726 |
+
|
727 |
+
#: bws_menu.php:648
|
728 |
+
msgid "Already Installed"
|
729 |
+
msgstr "sudah Dipasang"
|
730 |
+
|
731 |
+
#: bws_menu.php:659
|
732 |
+
msgid "Browse Free WordPress Themes"
|
733 |
+
msgstr "Isi Gratis WordPress Themes"
|
734 |
+
|
735 |
+
#: bws_menu.php:668
|
736 |
+
msgid "Send to support"
|
737 |
+
msgstr "Kirim untuk mendukung"
|
738 |
+
|
739 |
+
#: bws_menu.php:675
|
740 |
+
msgid "Send to custom email »"
|
741 |
+
msgstr "Kirim ke email khusus & # 187;"
|
742 |
+
|
743 |
+
#: class-bws-settings.php:135
|
744 |
+
msgid "Information"
|
745 |
+
msgstr "Informasi"
|
746 |
+
|
747 |
+
#: class-bws-settings.php:143
|
748 |
+
msgid "Inactive"
|
749 |
+
msgstr "non-aktif"
|
750 |
+
|
751 |
+
#: class-bws-settings.php:151
|
752 |
+
msgid "Expired"
|
753 |
+
msgstr "kedaluwarsa"
|
754 |
+
|
755 |
+
#: class-bws-settings.php:154
|
756 |
+
#, php-format
|
757 |
+
msgid "%s day(-s) left"
|
758 |
+
msgstr "%s hari (-s) kiri"
|
759 |
+
|
760 |
+
#: class-bws-settings.php:160
|
761 |
+
#, php-format
|
762 |
+
msgid "Expired on %s"
|
763 |
+
msgstr "Berakhir pada %s"
|
764 |
+
|
765 |
+
#: class-bws-settings.php:160
|
766 |
+
msgid "Renew Now"
|
767 |
+
msgstr "Perbarui sekarang"
|
768 |
+
|
769 |
+
#: class-bws-settings.php:162
|
770 |
+
msgid "Active"
|
771 |
+
msgstr "Aktif"
|
772 |
+
|
773 |
+
#: class-bws-settings.php:167
|
774 |
+
msgid "License"
|
775 |
+
msgstr "Lisensi"
|
776 |
+
|
777 |
+
#: class-bws-settings.php:170
|
778 |
+
msgid "Status"
|
779 |
+
msgstr "Status"
|
780 |
+
|
781 |
+
#: class-bws-settings.php:174
|
782 |
+
msgid "Version"
|
783 |
+
msgstr "Versi"
|
784 |
+
|
785 |
+
#: class-bws-settings.php:282
|
786 |
+
msgid "All plugin settings were restored."
|
787 |
+
msgstr "Semua pengaturan Plugin dipulihkan."
|
788 |
+
|
789 |
+
#: class-bws-settings.php:420
|
790 |
+
msgid "Custom Code"
|
791 |
+
msgstr "Kode kustom"
|
792 |
+
|
793 |
+
#: class-bws-settings.php:424 deprecated.php:497
|
794 |
+
msgid "You do not have sufficient permissions to edit plugins for this site."
|
795 |
+
msgstr ""
|
796 |
+
"Anda tidak memiliki cukup izin untuk menyunting plugin untuk situs ini."
|
797 |
+
|
798 |
+
#: class-bws-settings.php:429 deprecated.php:618
|
799 |
+
msgid "These styles will be added to the header on all pages of your site."
|
800 |
+
msgstr "Gaya ini akan ditambahkan ke header pada semua halaman situs Anda."
|
801 |
+
|
802 |
+
#: class-bws-settings.php:432 deprecated.php:620
|
803 |
+
#, php-format
|
804 |
+
msgid ""
|
805 |
+
"This PHP code will be hooked to the %s action and will be printed on front "
|
806 |
+
"end only."
|
807 |
+
msgstr ""
|
808 |
+
"Kode PHP ini akan ketagihan untuk %s tindakan dan akan dicetak pada ujung "
|
809 |
+
"depan saja."
|
810 |
+
|
811 |
+
#: class-bws-settings.php:435
|
812 |
+
msgid "These code will be added to the header on all pages of your site."
|
813 |
+
msgstr "Kode ini akan ditambahkan ke header pada semua halaman situs Anda."
|
814 |
+
|
815 |
+
#: class-bws-settings.php:443 deprecated.php:644
|
816 |
+
#, php-format
|
817 |
+
msgid ""
|
818 |
+
"You need to make this files writable before you can save your changes. See "
|
819 |
+
"%s the Codex %s for more information."
|
820 |
+
msgstr ""
|
821 |
+
"Anda perlu membuat file ini ditulis sebelum Anda dapat menyimpan perubahan. "
|
822 |
+
"Lihat %s Codex %s untuk informasi lebih lanjut."
|
823 |
+
|
824 |
+
#: class-bws-settings.php:453 deprecated.php:626
|
825 |
+
msgid "Browsing"
|
826 |
+
msgstr "Browsing"
|
827 |
+
|
828 |
+
#: class-bws-settings.php:457
|
829 |
+
#, php-format
|
830 |
+
msgid "Activate custom %s code."
|
831 |
+
msgstr "Aktifkan kustom %s kode."
|
832 |
+
|
833 |
+
#: class-bws-settings.php:464 deprecated.php:633
|
834 |
+
#, php-format
|
835 |
+
msgid "Learn more about %s"
|
836 |
+
msgstr "Pelajari lebih lanjut tentang %s"
|
837 |
+
|
838 |
+
#: class-bws-settings.php:524
|
839 |
+
msgid "Miscellaneous Settings"
|
840 |
+
msgstr "Pengaturan Miscellaneous"
|
841 |
+
|
842 |
+
#: class-bws-settings.php:533 class-bws-settings.php:584
|
843 |
+
#, php-format
|
844 |
+
msgid ""
|
845 |
+
"It is prohibited to change %s settings on this site in the %s network "
|
846 |
+
"settings."
|
847 |
+
msgstr ""
|
848 |
+
"Dilarang mengubah %s pengaturan di situs ini di %s pengaturan jaringan."
|
849 |
+
|
850 |
+
#: class-bws-settings.php:536 class-bws-settings.php:587
|
851 |
+
#, php-format
|
852 |
+
msgid ""
|
853 |
+
"It is prohibited to view %s settings on this site in the %s network settings."
|
854 |
+
msgstr "Dilarang melihat %s pengaturan di situs ini di %s pengaturan jaringan."
|
855 |
+
|
856 |
+
#: class-bws-settings.php:545
|
857 |
+
msgid "Pro Options"
|
858 |
+
msgstr "Pro Pilihan"
|
859 |
+
|
860 |
+
#: class-bws-settings.php:548
|
861 |
+
msgid "Enable to display plugin Pro options."
|
862 |
+
msgstr "Memungkinkan untuk menampilkan opsi Pro Plugin."
|
863 |
+
|
864 |
+
#: class-bws-settings.php:553
|
865 |
+
msgid "Track Usage"
|
866 |
+
msgstr "track Penggunaan"
|
867 |
+
|
868 |
+
#: class-bws-settings.php:556
|
869 |
+
msgid ""
|
870 |
+
"Enable to allow tracking plugin usage anonymously in order to make it better."
|
871 |
+
msgstr ""
|
872 |
+
"Aktifkan untuk memungkinkan pelacakan penggunaan Plugin anonim untuk "
|
873 |
+
"membuatnya lebih baik."
|
874 |
+
|
875 |
+
#: class-bws-settings.php:560
|
876 |
+
msgid "Default Settings"
|
877 |
+
msgstr "Pengaturan default"
|
878 |
+
|
879 |
+
#: class-bws-settings.php:562
|
880 |
+
msgid "Restore Settings"
|
881 |
+
msgstr "Kembalikan Pengaturan"
|
882 |
+
|
883 |
+
#: class-bws-settings.php:563
|
884 |
+
msgid "This will restore plugin settings to defaults."
|
885 |
+
msgstr "Ini akan mengembalikan pengaturan plugin untuk default."
|
886 |
+
|
887 |
+
#: class-bws-settings.php:575
|
888 |
+
msgid "Import / Export"
|
889 |
+
msgstr "Ekspor Impor"
|
890 |
+
|
891 |
+
#: class-bws-settings.php:691 class-bws-settings.php:724
|
892 |
+
#: class-bws-settings.php:746
|
893 |
+
msgid "License Key"
|
894 |
+
msgstr "Kunci lisensi"
|
895 |
+
|
896 |
+
#: class-bws-settings.php:714
|
897 |
+
msgid "Congratulations! Pro license is activated successfully."
|
898 |
+
msgstr "Selamat! lisensi Pro berhasil diaktifkan."
|
899 |
+
|
900 |
+
#: class-bws-settings.php:715
|
901 |
+
#, php-format
|
902 |
+
msgid "You will be automatically redirected to the %s in %s seconds."
|
903 |
+
msgstr ""
|
904 |
+
|
905 |
+
#: class-bws-settings.php:715
|
906 |
+
msgid "Settings page"
|
907 |
+
msgstr "halaman pengaturan"
|
908 |
+
|
909 |
+
#: class-bws-settings.php:730
|
910 |
+
#, php-format
|
911 |
+
msgid "Enter your license key to activate %s and get premium plugin features."
|
912 |
+
msgstr ""
|
913 |
+
"Masukkan kunci lisensi Anda untuk mengaktifkan %s dan mendapatkan fitur "
|
914 |
+
"Plugin premium."
|
915 |
+
|
916 |
+
#: class-bws-settings.php:733 class-bws-settings.php:920 deprecated.php:362
|
917 |
+
#: deprecated.php:703
|
918 |
+
msgid ""
|
919 |
+
"Unfortunately, you have exceeded the number of available tries per day. "
|
920 |
+
"Please, upload the plugin manually."
|
921 |
+
msgstr ""
|
922 |
+
"Sayangnya, Anda telah melebihi jumlah mencoba tersedia per hari. Silakan, "
|
923 |
+
"upload plugin secara manual."
|
924 |
+
|
925 |
+
#: class-bws-settings.php:736 deprecated.php:694
|
926 |
+
#, php-format
|
927 |
+
msgid "Start Your Free %s-Day Trial Now"
|
928 |
+
msgstr "Mulai Anda gratis %s -Day Percobaan Sekarang"
|
929 |
+
|
930 |
+
#: class-bws-settings.php:751
|
931 |
+
msgid ""
|
932 |
+
"If necessary, you can check if the license key is correct or reenter it in "
|
933 |
+
"the field below."
|
934 |
+
msgstr ""
|
935 |
+
"Jika perlu, Anda dapat memeriksa apakah kunci lisensi benar atau masuk "
|
936 |
+
"kembali ke dalam bidang di bawah."
|
937 |
+
|
938 |
+
#: class-bws-settings.php:756
|
939 |
+
msgid "Manage License Settings"
|
940 |
+
msgstr "Kelola Setelan License"
|
941 |
+
|
942 |
+
#: class-bws-settings.php:758
|
943 |
+
msgid "Login to Client Area"
|
944 |
+
msgstr "Login ke Area Klien"
|
945 |
+
|
946 |
+
#: class-bws-settings.php:760
|
947 |
+
msgid ""
|
948 |
+
"Manage active licenses, download BWS products, and view your payment history "
|
949 |
+
"using BestWebSoft Client Area."
|
950 |
+
msgstr ""
|
951 |
+
"Mengelola lisensi aktif, men-download produk BWS, dan melihat riwayat "
|
952 |
+
"pembayaran Anda menggunakan BestWebSoft Client Area."
|
953 |
+
|
954 |
+
#: class-bws-settings.php:815 class-bws-settings.php:918 deprecated.php:141
|
955 |
+
#: deprecated.php:360
|
956 |
+
msgid "This license key is bound to another site."
|
957 |
+
msgstr "kunci lisensi ini terikat ke situs lain."
|
958 |
+
|
959 |
+
#: class-bws-settings.php:817 deprecated.php:143
|
960 |
+
msgid ""
|
961 |
+
"This license key is valid, but Your license has expired. If you want to "
|
962 |
+
"update our plugin in future, you should extend the license."
|
963 |
+
msgstr ""
|
964 |
+
"kunci lisensi ini berlaku, tetapi lisensi Anda telah kedaluwarsa. Jika Anda "
|
965 |
+
"ingin memperbarui plugin kami di masa depan, Anda harus memperpanjang "
|
966 |
+
"lisensi."
|
967 |
+
|
968 |
+
#: class-bws-settings.php:819 deprecated.php:145
|
969 |
+
msgid "Unfortunately, you have exceeded the number of available tries."
|
970 |
+
msgstr "Sayangnya, Anda telah melebihi jumlah mencoba tersedia."
|
971 |
+
|
972 |
+
#: class-bws-settings.php:821 deprecated.php:147
|
973 |
+
msgid ""
|
974 |
+
"Unfortunately, the Pro Trial licence was already installed to this domain. "
|
975 |
+
"The Pro Trial license can be installed only once."
|
976 |
+
msgstr ""
|
977 |
+
"Sayangnya, lisensi Percobaan Pro sudah dipasang untuk domain ini. Lisensi "
|
978 |
+
"Percobaan Pro dapat diinstal hanya sekali."
|
979 |
+
|
980 |
+
#: class-bws-settings.php:826 deprecated.php:151
|
981 |
+
msgid "The Pro Trial license key is valid."
|
982 |
+
msgstr "Kunci lisensi Percobaan Pro berlaku."
|
983 |
+
|
984 |
+
#: class-bws-settings.php:834 deprecated.php:159 deprecated.php:246
|
985 |
+
#, php-format
|
986 |
+
msgid ""
|
987 |
+
"In order to continue using the plugin it is necessary to buy a %s license."
|
988 |
+
msgstr ""
|
989 |
+
"Dalam rangka untuk terus menggunakan plugin perlu untuk membeli %s lisensi."
|
990 |
+
|
991 |
+
#: class-bws-settings.php:1031 deprecated.php:463
|
992 |
+
msgid "Please, enter Your license key"
|
993 |
+
msgstr "Silakan, masukkan kunci lisensi Anda"
|
994 |
+
|
995 |
+
#: class-bws-settings.php:1043
|
996 |
+
msgid "Need Help?"
|
997 |
+
msgstr "Butuh bantuan?"
|
998 |
+
|
999 |
+
#: class-bws-settings.php:1045
|
1000 |
+
msgid "Read the Instruction"
|
1001 |
+
msgstr "Baca Instruksi"
|
1002 |
+
|
1003 |
+
#: class-bws-settings.php:1049
|
1004 |
+
msgid "Watch the Video"
|
1005 |
+
msgstr "Saksikan Video"
|
1006 |
+
|
1007 |
+
#: class-bws-settings.php:1060
|
1008 |
+
msgid "Start Your Free Trial"
|
1009 |
+
msgstr "Mulai Uji Coba Gratis"
|
1010 |
+
|
1011 |
+
#: deprecated.php:93
|
1012 |
+
msgid "System Status"
|
1013 |
+
msgstr "Status sistem"
|
1014 |
+
|
1015 |
+
#: deprecated.php:204
|
1016 |
+
msgid "Please, enter your license key"
|
1017 |
+
msgstr "Silakan, masukkan kunci lisensi Anda"
|
1018 |
+
|
1019 |
+
#: deprecated.php:223
|
1020 |
+
msgid ""
|
1021 |
+
"If necessary, you can check if the license key is correct or reenter it in "
|
1022 |
+
"the field below. You can find your license key on your personal page - "
|
1023 |
+
"Client Area - on our website"
|
1024 |
+
msgstr ""
|
1025 |
+
"Jika perlu, Anda dapat memeriksa apakah kunci lisensi benar atau masuk "
|
1026 |
+
"kembali ke dalam bidang di bawah. Anda dapat menemukan kunci lisensi Anda "
|
1027 |
+
"pada halaman pribadi Anda - Area Klien - di website kami"
|
1028 |
+
|
1029 |
+
#: deprecated.php:223
|
1030 |
+
msgid ""
|
1031 |
+
"(your username is the email address specified during the purchase). If "
|
1032 |
+
"necessary, please submit \"Lost your password?\" request."
|
1033 |
+
msgstr ""
|
1034 |
+
"(Nama pengguna adalah alamat email yang ditentukan selama pembelian). Jika "
|
1035 |
+
"perlu, silahkan pilih \\ \"Kehilangan kata sandi Anda? \" Permintaan."
|
1036 |
+
|
1037 |
+
#: deprecated.php:247
|
1038 |
+
msgid "After that, you can activate it by entering your license key."
|
1039 |
+
msgstr ""
|
1040 |
+
"Setelah itu, Anda dapat mengaktifkannya dengan memasukkan kunci lisensi Anda."
|
1041 |
+
|
1042 |
+
#: deprecated.php:249 deprecated.php:688
|
1043 |
+
msgid "License key can be found in the"
|
1044 |
+
msgstr "kunci lisensi dapat ditemukan di"
|
1045 |
+
|
1046 |
+
#: deprecated.php:251 deprecated.php:690
|
1047 |
+
msgid "(your username is the email address specified during the purchase)."
|
1048 |
+
msgstr "(Nama pengguna adalah alamat email yang ditentukan selama pembelian)."
|
1049 |
+
|
1050 |
+
#: deprecated.php:278
|
1051 |
+
msgid ""
|
1052 |
+
"Congratulations! The Pro license of the plugin is activated successfully."
|
1053 |
+
msgstr "Selamat! Lisensi Pro plugin tersebut berhasil diaktifkan."
|
1054 |
+
|
1055 |
+
#: deprecated.php:280 deprecated.php:669
|
1056 |
+
msgid "Please, go to"
|
1057 |
+
msgstr "Tolong, pergi ke"
|
1058 |
+
|
1059 |
+
#: deprecated.php:280 deprecated.php:669
|
1060 |
+
msgid "the setting page"
|
1061 |
+
msgstr "halaman pengaturan"
|
1062 |
+
|
1063 |
+
#: deprecated.php:281 deprecated.php:670
|
1064 |
+
msgid "You will be redirected automatically in 5 seconds."
|
1065 |
+
msgstr "Anda akan diarahkan secara otomatis dalam 5 detik."
|
1066 |
+
|
1067 |
+
#: deprecated.php:315
|
1068 |
+
msgid "Check premium options on the plugin settings page!"
|
1069 |
+
msgstr "Periksa pilihan premium di halaman pengaturan plugin!"
|
1070 |
+
|
1071 |
+
#: deprecated.php:478
|
1072 |
+
msgid "Restore all plugin settings to defaults"
|
1073 |
+
msgstr "Mengembalikan semua pengaturan plugin untuk default"
|
1074 |
+
|
1075 |
+
#: deprecated.php:480
|
1076 |
+
msgid "Restore settings"
|
1077 |
+
msgstr "mengembalikan pengaturan"
|
1078 |
+
|
1079 |
+
#: deprecated.php:548 deprecated.php:575
|
1080 |
+
#, php-format
|
1081 |
+
msgid "File %s edited successfully."
|
1082 |
+
msgstr "File %s berhasil diedit."
|
1083 |
+
|
1084 |
+
#: deprecated.php:550 deprecated.php:577
|
1085 |
+
msgid "Not enough permissions to create or update the file"
|
1086 |
+
msgstr "Tidak cukup izin untuk membuat atau memperbarui file"
|
1087 |
+
|
1088 |
+
#: deprecated.php:580
|
1089 |
+
msgid "Not enough permissions to create the file"
|
1090 |
+
msgstr "Tidak cukup izin untuk membuat file"
|
1091 |
+
|
1092 |
+
#: deprecated.php:624
|
1093 |
+
msgid "Editing"
|
1094 |
+
msgstr "editing"
|
1095 |
+
|
1096 |
+
#: deprecated.php:667
|
1097 |
+
msgid ""
|
1098 |
+
"Congratulations! Pro version of the plugin is installed and activated "
|
1099 |
+
"successfully."
|
1100 |
+
msgstr "Selamat! Versi Pro plugin diinstal dan diaktifkan berhasil."
|
1101 |
+
|
1102 |
+
#: deprecated.php:677
|
1103 |
+
msgid "Show Pro features"
|
1104 |
+
msgstr "Tampilkan fitur Pro"
|
1105 |
+
|
1106 |
+
#: deprecated.php:684
|
1107 |
+
msgid "Enter your license key to install and activate"
|
1108 |
+
msgstr "Masukkan kunci lisensi Anda untuk menginstal dan mengaktifkan"
|
1109 |
+
|
1110 |
+
#: deprecated.php:686
|
1111 |
+
msgid "version of the plugin."
|
1112 |
+
msgstr "versi plugin."
|
1113 |
+
|
1114 |
+
#: product_list.php:7
|
1115 |
+
msgid "Admin Tools"
|
1116 |
+
msgstr ""
|
1117 |
+
|
1118 |
+
#: product_list.php:8
|
1119 |
+
msgid "Content"
|
1120 |
+
msgstr ""
|
1121 |
+
|
1122 |
+
#: product_list.php:9
|
1123 |
+
msgid "eCommerce"
|
1124 |
+
msgstr ""
|
1125 |
+
|
1126 |
+
#: product_list.php:10
|
1127 |
+
msgid "Marketing"
|
1128 |
+
msgstr ""
|
1129 |
+
|
1130 |
+
#: product_list.php:11
|
1131 |
+
msgid "Navigation"
|
1132 |
+
msgstr ""
|
1133 |
+
|
1134 |
+
#: product_list.php:12
|
1135 |
+
msgid "Recommended"
|
1136 |
+
msgstr "Direkomendasikan"
|
1137 |
+
|
1138 |
+
#: product_list.php:13
|
1139 |
+
msgid "Security"
|
1140 |
+
msgstr "Keamanan"
|
1141 |
+
|
1142 |
+
#: product_list.php:14
|
1143 |
+
msgid "SEO"
|
1144 |
+
msgstr ""
|
1145 |
+
|
1146 |
+
#: product_list.php:15
|
1147 |
+
msgid "SMM"
|
1148 |
+
msgstr ""
|
1149 |
+
|
1150 |
+
#: product_list.php:22
|
1151 |
+
msgid ""
|
1152 |
+
"Protect WordPress website forms from spam entries by means of math logic."
|
1153 |
+
msgstr ""
|
1154 |
+
|
1155 |
+
#: product_list.php:32
|
1156 |
+
msgid "Create your personal car rental/booking and reservation website."
|
1157 |
+
msgstr ""
|
1158 |
+
|
1159 |
+
#: product_list.php:42
|
1160 |
+
msgid ""
|
1161 |
+
"Allow customers to reach you using secure contact form plugin any website "
|
1162 |
+
"must have."
|
1163 |
+
msgstr ""
|
1164 |
+
|
1165 |
+
#: product_list.php:52
|
1166 |
+
msgid "Add unlimited number of contact forms to WordPress website."
|
1167 |
+
msgstr ""
|
1168 |
+
|
1169 |
+
#: product_list.php:62
|
1170 |
+
msgid "Save and manage Contact Form messages. Never lose important data."
|
1171 |
+
msgstr ""
|
1172 |
+
|
1173 |
+
#: product_list.php:72
|
1174 |
+
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1175 |
+
msgstr ""
|
1176 |
+
|
1177 |
+
#: product_list.php:79
|
1178 |
+
msgid "Add custom fields to WordPress website search results."
|
1179 |
+
msgstr ""
|
1180 |
+
|
1181 |
+
#: product_list.php:86
|
1182 |
+
msgid ""
|
1183 |
+
"Add custom post types and taxonomies to WordPress website search results."
|
1184 |
+
msgstr ""
|
1185 |
+
|
1186 |
+
#: product_list.php:96
|
1187 |
+
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1188 |
+
msgstr ""
|
1189 |
+
|
1190 |
+
#: product_list.php:103
|
1191 |
+
msgid ""
|
1192 |
+
"Automatically add outgoing email messages to queue instead of sending them "
|
1193 |
+
"immediately."
|
1194 |
+
msgstr ""
|
1195 |
+
|
1196 |
+
#: product_list.php:110
|
1197 |
+
msgid ""
|
1198 |
+
"Get latest error log messages to diagnose website problems. Define and fix "
|
1199 |
+
"issues faster."
|
1200 |
+
msgstr ""
|
1201 |
+
|
1202 |
+
#: product_list.php:117
|
1203 |
+
msgid ""
|
1204 |
+
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1205 |
+
"widgets."
|
1206 |
+
msgstr ""
|
1207 |
+
|
1208 |
+
#: product_list.php:127
|
1209 |
+
msgid ""
|
1210 |
+
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1211 |
+
"clicks."
|
1212 |
+
msgstr ""
|
1213 |
+
|
1214 |
+
#: product_list.php:137
|
1215 |
+
msgid ""
|
1216 |
+
"Add unlimited gallery categories. Organize images to make the navigation "
|
1217 |
+
"through content easier."
|
1218 |
+
msgstr ""
|
1219 |
+
|
1220 |
+
#: product_list.php:144
|
1221 |
+
msgid ""
|
1222 |
+
"Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
|
1223 |
+
"posts, pages and widgets."
|
1224 |
+
msgstr ""
|
1225 |
+
|
1226 |
+
#: product_list.php:154
|
1227 |
+
msgid ""
|
1228 |
+
"Stronger security solution which protects your WordPress website from hacks "
|
1229 |
+
"and unauthorized login attempts."
|
1230 |
+
msgstr ""
|
1231 |
+
|
1232 |
+
#: product_list.php:164
|
1233 |
+
msgid ""
|
1234 |
+
"Add Adsense ads to WordPress website pages, posts, custom posts, search "
|
1235 |
+
"results, categories, tags, and widgets."
|
1236 |
+
msgstr ""
|
1237 |
+
|
1238 |
+
#: product_list.php:174
|
1239 |
+
msgid "Add Google Analytics code to WordPress website and track basic stats."
|
1240 |
+
msgstr ""
|
1241 |
+
|
1242 |
+
#: product_list.php:184
|
1243 |
+
msgid ""
|
1244 |
+
"Protect WordPress website forms from spam entries with Google Captcha "
|
1245 |
+
"(reCaptcha)."
|
1246 |
+
msgstr ""
|
1247 |
+
|
1248 |
+
#: product_list.php:194
|
1249 |
+
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1250 |
+
msgstr ""
|
1251 |
+
|
1252 |
+
#: product_list.php:204
|
1253 |
+
msgid ""
|
1254 |
+
"Generate and add XML sitemap to WordPress website. Help search engines index "
|
1255 |
+
"your blog."
|
1256 |
+
msgstr ""
|
1257 |
+
|
1258 |
+
#: product_list.php:214
|
1259 |
+
msgid ""
|
1260 |
+
"Replace external WordPress website links with Google shortlinks and track "
|
1261 |
+
"click stats."
|
1262 |
+
msgstr ""
|
1263 |
+
|
1264 |
+
#: product_list.php:221
|
1265 |
+
msgid ""
|
1266 |
+
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1267 |
+
"hostnames, etc."
|
1268 |
+
msgstr ""
|
1269 |
+
|
1270 |
+
#: product_list.php:231
|
1271 |
+
msgid ""
|
1272 |
+
"Create your personal job board and listing WordPress website. Search jobs, "
|
1273 |
+
"submit CV/resumes, choose candidates."
|
1274 |
+
msgstr ""
|
1275 |
+
|
1276 |
+
#: product_list.php:238
|
1277 |
+
msgid ""
|
1278 |
+
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1279 |
+
"attempts."
|
1280 |
+
msgstr ""
|
1281 |
+
|
1282 |
+
#: product_list.php:248
|
1283 |
+
msgid ""
|
1284 |
+
"Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
|
1285 |
+
"5 plugins included – profile, insider, etc."
|
1286 |
+
msgstr ""
|
1287 |
+
|
1288 |
+
#: product_list.php:258
|
1289 |
+
msgid ""
|
1290 |
+
"Translate WordPress website content to other languages manually. Create "
|
1291 |
+
"multilingual pages, posts, widgets, menus, etc."
|
1292 |
+
msgstr ""
|
1293 |
+
|
1294 |
+
#: product_list.php:268
|
1295 |
+
msgid ""
|
1296 |
+
"Add customizable pagination to WordPress website. Split long content to "
|
1297 |
+
"multiple pages for better navigation."
|
1298 |
+
msgstr ""
|
1299 |
+
|
1300 |
+
#: product_list.php:278
|
1301 |
+
msgid ""
|
1302 |
+
"Generate PDF files and print WordPress posts/pages. Customize document "
|
1303 |
+
"header/footer styles and appearance."
|
1304 |
+
msgstr ""
|
1305 |
+
|
1306 |
+
#: product_list.php:288
|
1307 |
+
msgid ""
|
1308 |
+
"Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
|
1309 |
+
"Profile) to WordPress posts, pages and widgets."
|
1310 |
+
msgstr ""
|
1311 |
+
|
1312 |
+
#: product_list.php:298
|
1313 |
+
msgid ""
|
1314 |
+
"Create your personal portfolio WordPress website. Manage and showcase past "
|
1315 |
+
"projects to get more clients."
|
1316 |
+
msgstr ""
|
1317 |
+
|
1318 |
+
#: product_list.php:308
|
1319 |
+
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1320 |
+
msgstr ""
|
1321 |
+
|
1322 |
+
#: product_list.php:315
|
1323 |
+
msgid ""
|
1324 |
+
"Add extra fields to default WordPress user profile. The easiest way to "
|
1325 |
+
"create and manage additional custom values."
|
1326 |
+
msgstr ""
|
1327 |
+
|
1328 |
+
#: product_list.php:322
|
1329 |
+
msgid ""
|
1330 |
+
"Add and display HTML advertisement banner on WordPress website. Customize "
|
1331 |
+
"bar styles and appearance."
|
1332 |
+
msgstr ""
|
1333 |
+
|
1334 |
+
#: product_list.php:332
|
1335 |
+
msgid ""
|
1336 |
+
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1337 |
+
"widgets."
|
1338 |
+
msgstr ""
|
1339 |
+
|
1340 |
+
#: product_list.php:339
|
1341 |
+
msgid ""
|
1342 |
+
"Add rating plugin to your WordPress website to receive feedback from your "
|
1343 |
+
"customers."
|
1344 |
+
msgstr ""
|
1345 |
+
|
1346 |
+
#: product_list.php:346
|
1347 |
+
msgid ""
|
1348 |
+
"Create your personal real estate WordPress website. Sell, rent and buy "
|
1349 |
+
"properties. Add, search and browse listings easily."
|
1350 |
+
msgstr ""
|
1351 |
+
|
1352 |
+
#: product_list.php:356
|
1353 |
+
msgid ""
|
1354 |
+
"Attach, un-attach and re-attach media files quickly to WordPress posts and "
|
1355 |
+
"pages."
|
1356 |
+
msgstr ""
|
1357 |
+
|
1358 |
+
#: product_list.php:363
|
1359 |
+
msgid ""
|
1360 |
+
"Add related, featured, latest, and popular posts to your WordPress website. "
|
1361 |
+
"Connect your blog readers with a relevant content."
|
1362 |
+
msgstr ""
|
1363 |
+
|
1364 |
+
#: product_list.php:370
|
1365 |
+
msgid ""
|
1366 |
+
"Send bulk email messages to WordPress users. Custom templates, advanced "
|
1367 |
+
"settings and detailed reports."
|
1368 |
+
msgstr ""
|
1369 |
+
|
1370 |
+
#: product_list.php:380
|
1371 |
+
msgid ""
|
1372 |
+
"The best responsive slider plugin for your WordPress website. Create "
|
1373 |
+
"beautifully animated slides just in a few clicks."
|
1374 |
+
msgstr ""
|
1375 |
+
|
1376 |
+
#: product_list.php:387
|
1377 |
+
msgid ""
|
1378 |
+
"Configure SMTP server to receive email messages from WordPress to Gmail, "
|
1379 |
+
"Yahoo, Hotmail and other services."
|
1380 |
+
msgstr ""
|
1381 |
+
|
1382 |
+
#: product_list.php:394
|
1383 |
+
msgid ""
|
1384 |
+
"Add social media buttons and widgets to WordPress posts, pages and widgets. "
|
1385 |
+
"FB, Twitter, G+1, Pinterest, LinkedIn."
|
1386 |
+
msgstr ""
|
1387 |
+
|
1388 |
+
#: product_list.php:404
|
1389 |
+
msgid ""
|
1390 |
+
"Add social media login, registration, and commenting to your WordPress "
|
1391 |
+
"website."
|
1392 |
+
msgstr ""
|
1393 |
+
|
1394 |
+
#: product_list.php:411
|
1395 |
+
msgid ""
|
1396 |
+
"Add email newsletter sign up form to WordPress posts, pages and widgets. "
|
1397 |
+
"Collect data and subscribe your users."
|
1398 |
+
msgstr ""
|
1399 |
+
|
1400 |
+
#: product_list.php:421
|
1401 |
+
msgid ""
|
1402 |
+
"Add testimonials and feedbacks from your customers to WordPress website "
|
1403 |
+
"posts, pages, and widgets."
|
1404 |
+
msgstr ""
|
1405 |
+
|
1406 |
+
#: product_list.php:428
|
1407 |
+
msgid ""
|
1408 |
+
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1409 |
+
"attendance and generate reports."
|
1410 |
+
msgstr ""
|
1411 |
+
|
1412 |
+
#: product_list.php:438
|
1413 |
+
msgid ""
|
1414 |
+
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1415 |
+
"and pages."
|
1416 |
+
msgstr ""
|
1417 |
+
|
1418 |
+
#: product_list.php:448
|
1419 |
+
msgid ""
|
1420 |
+
"Automatically check and update WordPress website core with all installed "
|
1421 |
+
"plugins and themes to the latest versions."
|
1422 |
+
msgstr ""
|
1423 |
+
|
1424 |
+
#: product_list.php:458
|
1425 |
+
msgid ""
|
1426 |
+
"Powerful user role management plugin for WordPress website. Create, edit, "
|
1427 |
+
"copy, and delete user roles."
|
1428 |
+
msgstr ""
|
1429 |
+
|
1430 |
+
#: product_list.php:468
|
1431 |
+
msgid ""
|
1432 |
+
"Display live count of online visitors who are currently browsing your "
|
1433 |
+
"WordPress website."
|
1434 |
+
msgstr ""
|
1435 |
+
|
1436 |
+
#: product_list.php:478
|
1437 |
+
msgid ""
|
1438 |
+
"Backup and export Zendesk Help Center content automatically to your "
|
1439 |
+
"WordPress website database."
|
1440 |
+
msgstr ""
|
1441 |
+
|
1442 |
+
#~ msgid "Advertisement"
|
1443 |
+
#~ msgstr "Iklan"
|
1444 |
+
|
1445 |
+
#~ msgid "Content & Media"
|
1446 |
+
#~ msgstr "Content & Media"
|
1447 |
+
|
1448 |
+
#~ msgid "Management"
|
1449 |
+
#~ msgstr "Pengelolaan"
|
1450 |
+
|
1451 |
+
#~ msgid "Site Stats"
|
1452 |
+
#~ msgstr "Statistik situs"
|
1453 |
+
|
1454 |
+
#~ msgid "Social"
|
1455 |
+
#~ msgstr "Sosial"
|
1456 |
+
|
1457 |
+
#~ msgid "Utilities"
|
1458 |
+
#~ msgstr "keperluan"
|
1459 |
+
|
1460 |
+
#~ msgid "Other"
|
1461 |
+
#~ msgstr "Lain"
|
1462 |
+
|
1463 |
+
#~ msgid "Thank you for installing"
|
1464 |
+
#~ msgstr "Terima kasih untuk menginstal"
|
1465 |
+
|
1466 |
+
#~ msgid "Thank you for choosing"
|
1467 |
+
#~ msgstr "Terima kasih telah memilih"
|
1468 |
+
|
1469 |
+
#~ msgid "PHP Safe Mode"
|
1470 |
+
#~ msgstr "PHP Safe Mode"
|
1471 |
+
|
1472 |
+
#~ msgid "You will be automatically redirected to the %s in 7 seconds."
|
1473 |
+
#~ msgstr "Anda akan secara otomatis diarahkan ke %s dalam 7 detik."
|
1474 |
+
|
1475 |
+
#~ msgid "You license for"
|
1476 |
+
#~ msgstr "Anda lisensi untuk"
|
1477 |
+
|
1478 |
+
#~ msgid "expires on"
|
1479 |
+
#~ msgstr "Kadaluarsa pada"
|
1480 |
+
|
1481 |
+
#~ msgid "This license key is bind to another site"
|
1482 |
+
#~ msgstr "kunci lisensi ini mengikat ke situs lain"
|
1483 |
+
|
1484 |
+
#~ msgid "Successfully installed the plugin"
|
1485 |
+
#~ msgstr "Berhasil menginstal plugin"
|
1486 |
+
|
1487 |
+
#~ msgid "Please, go to %s"
|
1488 |
+
#~ msgstr "Silakan, pergi ke %s"
|
1489 |
+
|
1490 |
+
#~ msgid "Client Area"
|
1491 |
+
#~ msgstr "area klien"
|
1492 |
+
|
1493 |
+
#~ msgid "If you enjoy our plugin, please give it 5 stars on WordPress"
|
1494 |
+
#~ msgstr ""
|
1495 |
+
#~ "Jika Anda menikmati plugin kami, silakan memberikan 5 bintang pada "
|
1496 |
+
#~ "WordPress"
|
1497 |
+
|
1498 |
+
#~ msgid "If there is something wrong about it, please contact us"
|
1499 |
+
#~ msgstr "Jika ada sesuatu yang salah tentang hal itu, silahkan hubungi kami"
|
1500 |
+
|
1501 |
+
#~ msgid "Donations play an important role in supporting great projects"
|
1502 |
+
#~ msgstr ""
|
1503 |
+
#~ "Sumbangan memainkan peran penting dalam mendukung proyek-proyek besar"
|
1504 |
+
|
1505 |
+
#~ msgid "WordPress Version"
|
1506 |
+
#~ msgstr "WordPress Versi"
|
1507 |
+
|
1508 |
+
#~ msgid "Activate Membership"
|
1509 |
+
#~ msgstr "Aktifkan Keanggotaan"
|
1510 |
+
|
1511 |
+
#~ msgid "Don’t have valid license key yet?"
|
1512 |
+
#~ msgstr "Tidak memiliki kunci lisensi yang valid belum?"
|
1513 |
+
|
1514 |
+
#~ msgid ""
|
1515 |
+
#~ "Join BestWebSoft Pro Membership today, cancel any time and use all "
|
1516 |
+
#~ "plugins on a single website %s for only %s per month."
|
1517 |
+
#~ msgstr ""
|
1518 |
+
#~ "Bergabung BestWebSoft Pro Keanggotaan hari ini, membatalkan setiap saat "
|
1519 |
+
#~ "dan menggunakan semua plugin pada situs Web %s hanya %s per bulan."
|
1520 |
+
|
1521 |
+
#~ msgid "My Account"
|
1522 |
+
#~ msgstr "Akun saya"
|
1523 |
+
|
1524 |
+
#~ msgid "Go"
|
1525 |
+
#~ msgstr "Pergi"
|
1526 |
+
|
1527 |
+
#~ msgid "DONATE"
|
1528 |
+
#~ msgstr "MENYUMBANGKAN"
|
1529 |
+
|
1530 |
+
#~ msgid "Recommended plugins"
|
1531 |
+
#~ msgstr "plugin direkomendasikan"
|
1532 |
+
|
1533 |
+
#~ msgid "Install now"
|
1534 |
+
#~ msgstr "Pasang sekarang"
|
1535 |
+
|
1536 |
+
#~ msgid "Configure Settings"
|
1537 |
+
#~ msgstr "Konfigurasi Pengaturan"
|
1538 |
+
|
1539 |
+
#~ msgid "Try again"
|
1540 |
+
#~ msgstr "Coba lagi"
|
1541 |
+
|
1542 |
+
#~ msgid "Preview “%s”"
|
1543 |
+
#~ msgstr "Preview & # 8220; %s & # 8221;"
|
1544 |
+
|
1545 |
+
#~ msgid "Install %s"
|
1546 |
+
#~ msgstr "Menginstal %s"
|
1547 |
+
|
1548 |
+
#~ msgid "Update"
|
1549 |
+
#~ msgstr "Memperbarui"
|
1550 |
+
|
1551 |
+
#~ msgid "Preview %s"
|
1552 |
+
#~ msgstr "Preview %s"
|
1553 |
+
|
1554 |
+
#~ msgid "Preview"
|
1555 |
+
#~ msgstr "Preview"
|
1556 |
+
|
1557 |
+
#~ msgid "You can download and activate"
|
1558 |
+
#~ msgstr "Anda dapat men-download dan mengaktifkan"
|
1559 |
+
|
1560 |
+
#~ msgid "version of this plugin by entering Your license key."
|
1561 |
+
#~ msgstr "versi plugin ini dengan memasukkan kunci lisensi Anda."
|
1562 |
+
|
1563 |
+
#~ msgid ""
|
1564 |
+
#~ "You can find your license key on your personal page Client area, by "
|
1565 |
+
#~ "clicking on the link"
|
1566 |
+
#~ msgstr ""
|
1567 |
+
#~ "Anda dapat menemukan kunci lisensi di daerah Klien halaman pribadi Anda, "
|
1568 |
+
#~ "dengan mengklik pada link"
|
1569 |
+
|
1570 |
+
#~ msgid ""
|
1571 |
+
#~ "(your username is the email you specify when purchasing the product), "
|
1572 |
+
#~ "where you can make the necessary changes."
|
1573 |
+
#~ msgstr ""
|
1574 |
+
#~ "(Username Anda adalah email yang Anda tentukan ketika membeli produk), di "
|
1575 |
+
#~ "mana Anda dapat membuat perubahan yang diperlukan."
|
1576 |
+
|
1577 |
+
#~ msgid "Switch to new interface"
|
1578 |
+
#~ msgstr "Beralih ke antarmuka baru"
|
1579 |
+
|
1580 |
+
#~ msgid "Activated plugins"
|
1581 |
+
#~ msgstr "plugin diaktifkan"
|
1582 |
+
|
1583 |
+
#~ msgid "Read more"
|
1584 |
+
#~ msgstr "Baca lebih banyak"
|
1585 |
+
|
1586 |
+
#~ msgid "Purchase"
|
1587 |
+
#~ msgstr "Membeli"
|
1588 |
+
|
1589 |
+
#~ msgid "Free plugins"
|
1590 |
+
#~ msgstr "plugin gratis"
|
1591 |
+
|
1592 |
+
#~ msgid "Download"
|
1593 |
+
#~ msgstr "Download"
|
1594 |
+
|
1595 |
+
#~ msgid "Install now from wordpress.org"
|
1596 |
+
#~ msgstr "Instal sekarang dari wordpress.org"
|
1597 |
+
|
1598 |
+
#~ msgid "Free themes"
|
1599 |
+
#~ msgstr "Free tema"
|
1600 |
+
|
1601 |
+
#~ msgid "Customize “%s”"
|
1602 |
+
#~ msgstr "Sesuaikan & # 8220; %s & # 8221;"
|
1603 |
+
|
1604 |
+
#~ msgid "Installed themes"
|
1605 |
+
#~ msgstr "tema diinstal"
|
1606 |
+
|
1607 |
+
#~ msgid "Recommended themes"
|
1608 |
+
#~ msgstr "tema direkomendasikan"
|
1609 |
+
|
1610 |
+
#~ msgid "Switch to old interface"
|
1611 |
+
#~ msgstr "Beralih ke antarmuka lama"
|
1612 |
+
|
1613 |
+
#~ msgid "installed"
|
1614 |
+
#~ msgstr "diinstal"
|
1615 |
+
|
1616 |
+
#~ msgid "Contact Form"
|
1617 |
+
#~ msgstr "formulir kontak"
|
1618 |
+
|
1619 |
+
#~ msgid "Contact Form Pro Extra Settings"
|
1620 |
+
#~ msgstr "Hubungi Form Extra Settings Pro"
|
1621 |
+
|
1622 |
+
#~ msgid "Contact Form Pro"
|
1623 |
+
#~ msgstr "Kontak Form Pro"
|
1624 |
+
|
1625 |
+
#~ msgid "Name:"
|
1626 |
+
#~ msgstr "Nama:"
|
1627 |
+
|
1628 |
+
#~ msgid "Address:"
|
1629 |
+
#~ msgstr "Alamat:"
|
1630 |
+
|
1631 |
+
#~ msgid "Email Address:"
|
1632 |
+
#~ msgstr "Alamat email:"
|
1633 |
+
|
1634 |
+
#~ msgid "Phone number:"
|
1635 |
+
#~ msgstr "Nomor telepon:"
|
1636 |
+
|
1637 |
+
#~ msgid "Subject:"
|
1638 |
+
#~ msgstr "Subyek:"
|
1639 |
+
|
1640 |
+
#~ msgid "Message:"
|
1641 |
+
#~ msgstr "Pesan:"
|
1642 |
+
|
1643 |
+
#~ msgid "Attachment:"
|
1644 |
+
#~ msgstr "Lampiran:"
|
1645 |
+
|
1646 |
+
#~ msgid "Send me a copy"
|
1647 |
+
#~ msgstr "Kirimkan saya salinan"
|
1648 |
+
|
1649 |
+
#~ msgid "Submit"
|
1650 |
+
#~ msgstr "Menyerahkan"
|
1651 |
+
|
1652 |
+
#~ msgid "Your name is required."
|
1653 |
+
#~ msgstr "Nama Anda diperlukan."
|
1654 |
+
|
1655 |
+
#~ msgid "Address is required."
|
1656 |
+
#~ msgstr "Alamat diperlukan."
|
1657 |
+
|
1658 |
+
#~ msgid "A valid email address is required."
|
1659 |
+
#~ msgstr "Sebuah alamat email yang valid diperlukan."
|
1660 |
+
|
1661 |
+
#~ msgid "Phone number is required."
|
1662 |
+
#~ msgstr "Nomor telepon diperlukan."
|
1663 |
+
|
1664 |
+
#~ msgid "Subject is required."
|
1665 |
+
#~ msgstr "Subjek diperlukan."
|
1666 |
+
|
1667 |
+
#~ msgid "Message text is required."
|
1668 |
+
#~ msgstr "Pesan teks diperlukan."
|
1669 |
+
|
1670 |
+
#~ msgid "File format is not valid."
|
1671 |
+
#~ msgstr "Format file tidak valid."
|
1672 |
+
|
1673 |
+
#~ msgid "File upload error."
|
1674 |
+
#~ msgstr "Berkas kesalahan upload."
|
1675 |
+
|
1676 |
+
#~ msgid "The file could not be uploaded."
|
1677 |
+
#~ msgstr "file tidak bisa di-upload."
|
1678 |
+
|
1679 |
+
#~ msgid "This file is too large."
|
1680 |
+
#~ msgstr "File ini terlalu besar."
|
1681 |
+
|
1682 |
+
#~ msgid "Please fill out the CAPTCHA."
|
1683 |
+
#~ msgstr "Silahkan mengisi CAPTCHA."
|
1684 |
+
|
1685 |
+
#~ msgid "Please make corrections below and try again."
|
1686 |
+
#~ msgstr "Silakan melakukan koreksi di bawah ini dan coba lagi."
|
1687 |
+
|
1688 |
+
#~ msgid ""
|
1689 |
+
#~ "If the 'Redirect to page' option is selected then the URL field should be "
|
1690 |
+
#~ "in the following format"
|
1691 |
+
#~ msgstr ""
|
1692 |
+
#~ "Si l'ioption 'Rediriger vers la page' est positionnée, alors le champ Url "
|
1693 |
+
#~ "doit être rempli avec le format suivant"
|
1694 |
+
|
1695 |
+
#~ msgid "Such user does not exist. Settings are not saved."
|
1696 |
+
#~ msgstr "pengguna tersebut tidak ada. Setelan tidak disimpan."
|
1697 |
+
|
1698 |
+
#~ msgid ""
|
1699 |
+
#~ "Please enter a valid email address in the 'FROM' field. Settings are not "
|
1700 |
+
#~ "saved."
|
1701 |
+
#~ msgstr ""
|
1702 |
+
#~ "Silakan masukkan alamat email yang valid di bidang 'DARI'. Setelan tidak "
|
1703 |
+
#~ "disimpan."
|
1704 |
+
|
1705 |
+
#~ msgid ""
|
1706 |
+
#~ "If you would like to add the Contact Form to your website, just copy and "
|
1707 |
+
#~ "paste this shortcode to your post or page or widget:"
|
1708 |
+
#~ msgstr ""
|
1709 |
+
#~ "Jika Anda ingin menambahkan Form Kontak ke website Anda, hanya copy dan "
|
1710 |
+
#~ "paste shortcode ini untuk posting atau halaman atau widget:"
|
1711 |
+
|
1712 |
+
#~ msgid ""
|
1713 |
+
#~ "If you leave the fields empty, the messages will be sent to the email "
|
1714 |
+
#~ "address specified during registration."
|
1715 |
+
#~ msgstr ""
|
1716 |
+
#~ "Jika Anda meninggalkan bidang kosong, pesan akan dikirim ke alamat email "
|
1717 |
+
#~ "yang ditentukan saat pendaftaran."
|
1718 |
+
|
1719 |
+
#~ msgid "The user's email address:"
|
1720 |
+
#~ msgstr "alamat email pengguna:"
|
1721 |
+
|
1722 |
+
#~ msgid "Create a username"
|
1723 |
+
#~ msgstr "Membuat username"
|
1724 |
+
|
1725 |
+
#~ msgid ""
|
1726 |
+
#~ "Enter a username of the person who should get the messages from the "
|
1727 |
+
#~ "contact form."
|
1728 |
+
#~ msgstr ""
|
1729 |
+
#~ "Masukkan username dari orang yang harus mendapatkan pesan dari formulir "
|
1730 |
+
#~ "kontak."
|
1731 |
+
|
1732 |
+
#~ msgid "Use this email address:"
|
1733 |
+
#~ msgstr "Gunakan alamat email ini:"
|
1734 |
+
|
1735 |
+
#~ msgid "Enter the email address you want the messages forwarded to."
|
1736 |
+
#~ msgstr "Masukkan alamat email Anda ingin pesan diteruskan ke."
|
1737 |
+
|
1738 |
+
#~ msgid "Additional options"
|
1739 |
+
#~ msgstr "Opsi tambahan"
|
1740 |
+
|
1741 |
+
#~ msgid "What to use?"
|
1742 |
+
#~ msgstr "Apa yang harus digunakan?"
|
1743 |
+
|
1744 |
+
#~ msgid "Wp-mail"
|
1745 |
+
#~ msgstr "Wp-mail"
|
1746 |
+
|
1747 |
+
#~ msgid "You can use the wp_mail function for mailing"
|
1748 |
+
#~ msgstr "Anda dapat menggunakan fungsi wp_mail untuk mailing"
|
1749 |
+
|
1750 |
+
#~ msgid "Mail"
|
1751 |
+
#~ msgstr "Surat"
|
1752 |
+
|
1753 |
+
#~ msgid "To send mail you can use the php mail function"
|
1754 |
+
#~ msgstr "Untuk mengirim email Anda dapat menggunakan fungsi php mail"
|
1755 |
+
|
1756 |
+
#~ msgid "Change text of the 'FROM' field"
|
1757 |
+
#~ msgstr "Perubahan teks dari bidang 'DARI'"
|
1758 |
+
|
1759 |
+
#~ msgid "Enter the email address in the 'From' field"
|
1760 |
+
#~ msgstr "Masukkan alamat email di bidang 'Dari'"
|
1761 |
+
|
1762 |
+
#~ msgid "User email"
|
1763 |
+
#~ msgstr "email pengguna"
|
1764 |
+
|
1765 |
+
#~ msgid ""
|
1766 |
+
#~ "The email address of the user who fills the form will be used in the "
|
1767 |
+
#~ "field 'From'."
|
1768 |
+
#~ msgstr ""
|
1769 |
+
#~ "Alamat email pengguna yang mengisi form akan digunakan dalam bidang "
|
1770 |
+
#~ "'Dari'."
|
1771 |
+
|
1772 |
+
#~ msgid "This email address will be used in the 'From' field."
|
1773 |
+
#~ msgstr "Alamat email ini akan digunakan dalam bidang 'Dari'."
|
1774 |
+
|
1775 |
+
#~ msgid "Display fields"
|
1776 |
+
#~ msgstr "bidang tampilan"
|
1777 |
+
|
1778 |
+
#~ msgid "Address"
|
1779 |
+
#~ msgstr "Alamat"
|
1780 |
+
|
1781 |
+
#~ msgid "Phone"
|
1782 |
+
#~ msgstr "Telepon"
|
1783 |
+
|
1784 |
+
#~ msgid "Attachment block"
|
1785 |
+
#~ msgstr "blok lampiran"
|
1786 |
+
|
1787 |
+
#~ msgid "Users can attach the following file formats"
|
1788 |
+
#~ msgstr "Pengguna dapat melampirkan format file berikut"
|
1789 |
+
|
1790 |
+
#~ msgid "Captcha"
|
1791 |
+
#~ msgstr "captcha"
|
1792 |
+
|
1793 |
+
#~ msgid "(powered by bestwebsoft.com)"
|
1794 |
+
#~ msgstr "(Didukung oleh bestwebsoft.com)"
|
1795 |
+
|
1796 |
+
#~ msgid "Download captcha"
|
1797 |
+
#~ msgstr "Download captcha"
|
1798 |
+
|
1799 |
+
#~ msgid "Display tips below the Attachment block"
|
1800 |
+
#~ msgstr "kiat tampilan di bawah blok Lampiran"
|
1801 |
+
|
1802 |
+
#~ msgid "Display 'Send me a copy' block"
|
1803 |
+
#~ msgstr "Menampilkan 'Kirimkan saya salinan' block"
|
1804 |
+
|
1805 |
+
#~ msgid "Name"
|
1806 |
+
#~ msgstr "Nama"
|
1807 |
+
|
1808 |
+
#~ msgid "Email Address"
|
1809 |
+
#~ msgstr "Alamat email"
|
1810 |
+
|
1811 |
+
#~ msgid "Subject"
|
1812 |
+
#~ msgstr "Subyek"
|
1813 |
+
|
1814 |
+
#~ msgid "Message"
|
1815 |
+
#~ msgstr "Pesan"
|
1816 |
+
|
1817 |
+
#~ msgid "Display additional info in the email"
|
1818 |
+
#~ msgstr "Menampilkan info tambahan dalam email"
|
1819 |
+
|
1820 |
+
#~ msgid "Sent from (ip address)"
|
1821 |
+
#~ msgstr "Dikirim dari (alamat ip)"
|
1822 |
+
|
1823 |
+
#~ msgid "Example: Sent from (IP address):\t127.0.0.1"
|
1824 |
+
#~ msgstr "Contoh: Dikirim dari (alamat IP): \\ t127.0.0.1"
|
1825 |
+
|
1826 |
+
#~ msgid "Date/Time"
|
1827 |
+
#~ msgstr "Tanggal Waktu"
|
1828 |
+
|
1829 |
+
#~ msgid "Sent from (referer)"
|
1830 |
+
#~ msgstr "Dikirim dari (referer)"
|
1831 |
+
|
1832 |
+
#~ msgid "Using (user agent)"
|
1833 |
+
#~ msgstr "Menggunakan (agen pengguna)"
|
1834 |
+
|
1835 |
+
#~ msgid "Language settings for the field names in the form"
|
1836 |
+
#~ msgstr "Pengaturan bahasa untuk nama field dalam bentuk"
|
1837 |
+
|
1838 |
+
#~ msgid "Add a language"
|
1839 |
+
#~ msgstr "Menambahkan bahasa"
|
1840 |
+
|
1841 |
+
#~ msgid "Change the names of the contact form fields and error messages"
|
1842 |
+
#~ msgstr "Mengubah nama-nama kolom formulir kontak dan pesan kesalahan"
|
1843 |
+
|
1844 |
+
#~ msgid "English"
|
1845 |
+
#~ msgstr "Inggris"
|
1846 |
+
|
1847 |
+
#~ msgid "Error message for the Name field"
|
1848 |
+
#~ msgstr "pesan kesalahan untuk bidang Nama"
|
1849 |
+
|
1850 |
+
#~ msgid "Error message for the Address field"
|
1851 |
+
#~ msgstr "pesan kesalahan untuk bidang Alamat"
|
1852 |
+
|
1853 |
+
#~ msgid "Error message for the Email field"
|
1854 |
+
#~ msgstr "pesan kesalahan untuk bidang Email"
|
1855 |
+
|
1856 |
+
#~ msgid "Error message for the Phone field"
|
1857 |
+
#~ msgstr "pesan kesalahan untuk bidang Telepon"
|
1858 |
+
|
1859 |
+
#~ msgid "Error message for the Subject field"
|
1860 |
+
#~ msgstr "pesan kesalahan untuk kolom Subyek"
|
1861 |
+
|
1862 |
+
#~ msgid "Error message for the Message field"
|
1863 |
+
#~ msgstr "pesan kesalahan untuk bidang Pesan"
|
1864 |
+
|
1865 |
+
#~ msgid "Error message about the file type for the Attachment field"
|
1866 |
+
#~ msgstr "pesan kesalahan tentang jenis file untuk bidang Lampiran"
|
1867 |
+
|
1868 |
+
#~ msgid ""
|
1869 |
+
#~ "Error message while uploading a file for the Attachment field to the "
|
1870 |
+
#~ "server"
|
1871 |
+
#~ msgstr ""
|
1872 |
+
#~ "pesan kesalahan saat mengunggah file untuk bidang Lampiran ke server"
|
1873 |
+
|
1874 |
+
#~ msgid "Error message while moving the file for the Attachment field"
|
1875 |
+
#~ msgstr "pesan kesalahan saat memindahkan file untuk bidang Lampiran"
|
1876 |
+
|
1877 |
+
#~ msgid ""
|
1878 |
+
#~ "Error message when file size limit for the Attachment field is exceeded"
|
1879 |
+
#~ msgstr "Pesan galat saat batas ukuran file untuk bidang Lampiran terlampaui"
|
1880 |
+
|
1881 |
+
#~ msgid "Error message for the Captcha field"
|
1882 |
+
#~ msgstr "pesan kesalahan untuk bidang Captcha"
|
1883 |
+
|
1884 |
+
#~ msgid "Error message for the whole form"
|
1885 |
+
#~ msgstr "pesan kesalahan untuk seluruh bentuk"
|
1886 |
+
|
1887 |
+
#~ msgid "for this language"
|
1888 |
+
#~ msgstr "untuk bahasa ini"
|
1889 |
+
|
1890 |
+
#~ msgid "Action after email is sent"
|
1891 |
+
#~ msgstr "Tindakan setelah email dikirim"
|
1892 |
+
|
1893 |
+
#~ msgid "Display text"
|
1894 |
+
#~ msgstr "menampilkan teks"
|
1895 |
+
|
1896 |
+
#~ msgid "Text"
|
1897 |
+
#~ msgstr "Teks"
|
1898 |
+
|
1899 |
+
#~ msgid "Url"
|
1900 |
+
#~ msgstr "url"
|
1901 |
+
|
1902 |
+
#~ msgid "Contact Form Pro | Extra Settings"
|
1903 |
+
#~ msgstr "Hubungi Formulir Pro | Pengaturan tambahan"
|
1904 |
+
|
1905 |
+
#~ msgid ""
|
1906 |
+
#~ "This functionality is available in the Pro version of the plugin. For "
|
1907 |
+
#~ "more details, please follow the link"
|
1908 |
+
#~ msgstr ""
|
1909 |
+
#~ "Fungsi ini tersedia dalam versi Pro plugin. Untuk lebih jelasnya, "
|
1910 |
+
#~ "silahkan ikuti link"
|
1911 |
+
|
1912 |
+
#~ msgid "Errors output"
|
1913 |
+
#~ msgstr "kesalahan keluaran"
|
1914 |
+
|
1915 |
+
#~ msgid "Display error messages"
|
1916 |
+
#~ msgstr "pesan kesalahan tampilan"
|
1917 |
+
|
1918 |
+
#~ msgid "Color of the input field errors."
|
1919 |
+
#~ msgstr "Warna kesalahan field input."
|
1920 |
+
|
1921 |
+
#~ msgid "Display error messages & color of the input field errors"
|
1922 |
+
#~ msgstr "pesan kesalahan display & warna kesalahan field input"
|
1923 |
+
|
1924 |
+
#~ msgid "Add placeholder to the input blocks"
|
1925 |
+
#~ msgstr "Menambahkan placeholder ke blok masukan"
|
1926 |
+
|
1927 |
+
#~ msgid "Add tooltips"
|
1928 |
+
#~ msgstr "Tambahkan tooltips"
|
1929 |
+
|
1930 |
+
#~ msgid "Email address"
|
1931 |
+
#~ msgstr "Alamat email"
|
1932 |
+
|
1933 |
+
#~ msgid "Phone Number"
|
1934 |
+
#~ msgstr "Nomor telepon"
|
1935 |
+
|
1936 |
+
#~ msgid "Attachment"
|
1937 |
+
#~ msgstr "Lampiran"
|
1938 |
+
|
1939 |
+
#~ msgid "Style options"
|
1940 |
+
#~ msgstr "Pilihan gaya"
|
1941 |
+
|
1942 |
+
#~ msgid "Text color"
|
1943 |
+
#~ msgstr "Warna teks"
|
1944 |
+
|
1945 |
+
#~ msgid "Default"
|
1946 |
+
#~ msgstr "kegagalan"
|
1947 |
+
|
1948 |
+
#~ msgid "Label text color"
|
1949 |
+
#~ msgstr "Warna teks Label"
|
1950 |
+
|
1951 |
+
#~ msgid "Placeholder color"
|
1952 |
+
#~ msgstr "warna placeholder"
|
1953 |
+
|
1954 |
+
#~ msgid "Errors color"
|
1955 |
+
#~ msgstr "warna kesalahan"
|
1956 |
+
|
1957 |
+
#~ msgid "Error text color"
|
1958 |
+
#~ msgstr "Warna teks kesalahan"
|
1959 |
+
|
1960 |
+
#~ msgid "Background color of the input field errors"
|
1961 |
+
#~ msgstr "warna latar belakang kesalahan field input"
|
1962 |
+
|
1963 |
+
#~ msgid "Border color of the input field errors"
|
1964 |
+
#~ msgstr "warna perbatasan kesalahan field input"
|
1965 |
+
|
1966 |
+
#~ msgid "Placeholder color of the input field errors"
|
1967 |
+
#~ msgstr "warna placeholder dari kesalahan field input"
|
1968 |
+
|
1969 |
+
#~ msgid "Input fields"
|
1970 |
+
#~ msgstr "field input"
|
1971 |
+
|
1972 |
+
#~ msgid "Input fields background color"
|
1973 |
+
#~ msgstr "Input field warna latar belakang"
|
1974 |
+
|
1975 |
+
#~ msgid "Text fields color"
|
1976 |
+
#~ msgstr "Teks ladang warna"
|
1977 |
+
|
1978 |
+
#~ msgid "Border width in px, numbers only"
|
1979 |
+
#~ msgstr "lebar perbatasan di px, angka saja"
|
1980 |
+
|
1981 |
+
#~ msgid "Border color"
|
1982 |
+
#~ msgstr "warna perbatasan"
|
1983 |
+
|
1984 |
+
#~ msgid "Width in px, numbers only"
|
1985 |
+
#~ msgstr "Lebar di px, angka saja"
|
1986 |
+
|
1987 |
+
#~ msgid "Button color"
|
1988 |
+
#~ msgstr "warna tombol"
|
1989 |
+
|
1990 |
+
#~ msgid "Button text color"
|
1991 |
+
#~ msgstr "Warna teks tombol"
|
1992 |
+
|
1993 |
+
#~ msgid "Contact Form Pro | Preview"
|
1994 |
+
#~ msgstr "Hubungi Formulir Pro | Preview"
|
1995 |
+
|
1996 |
+
#~ msgid "Show with errors"
|
1997 |
+
#~ msgstr "Tampilkan dengan kesalahan"
|
1998 |
+
|
1999 |
+
#~ msgid "Please enter your full name..."
|
2000 |
+
#~ msgstr "Masukkan nama lengkap Anda ..."
|
2001 |
+
|
2002 |
+
#~ msgid "Please enter your address..."
|
2003 |
+
#~ msgstr "Masukkan alamat Anda ..."
|
2004 |
+
|
2005 |
+
#~ msgid "Please enter your email address..."
|
2006 |
+
#~ msgstr "Masukkan alamat email Anda ..."
|
2007 |
+
|
2008 |
+
#~ msgid "Please enter your phone number..."
|
2009 |
+
#~ msgstr "Masukkan nomor telepon anda..."
|
2010 |
+
|
2011 |
+
#~ msgid "Please enter subject..."
|
2012 |
+
#~ msgstr "Masukkan subjek ..."
|
2013 |
+
|
2014 |
+
#~ msgid ""
|
2015 |
+
#~ "Supported file types: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, AI, "
|
2016 |
+
#~ "EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Max file "
|
2017 |
+
#~ "size: 2MB"
|
2018 |
+
#~ msgstr ""
|
2019 |
+
#~ "Jenis file yang didukung: HTML, TXT, CSS, GIF, PNG, JPEG, JPG, TIFF, BMP, "
|
2020 |
+
#~ "AI, EPS, PS, RTF, PDF, DOC, DOCX, XLS, ZIP, RAR, WAV, MP3, PPT. Ukuran "
|
2021 |
+
#~ "file Max: 2MB"
|
2022 |
+
|
2023 |
+
#~ msgid "You can attach the following file formats"
|
2024 |
+
#~ msgstr "Anda dapat melampirkan format file berikut"
|
2025 |
+
|
2026 |
+
#~ msgid "Contact from"
|
2027 |
+
#~ msgstr "kontak dari"
|
2028 |
+
|
2029 |
+
#~ msgid "Email"
|
2030 |
+
#~ msgstr "E-mail"
|
2031 |
+
|
2032 |
+
#~ msgid "Site"
|
2033 |
+
#~ msgstr "situs"
|
2034 |
+
|
2035 |
+
#~ msgid ""
|
2036 |
+
#~ "If you can see this MIME, it means that the MIME type is not supported by "
|
2037 |
+
#~ "your email client!"
|
2038 |
+
#~ msgstr ""
|
2039 |
+
#~ "Jika Anda dapat melihat MIME ini, itu berarti bahwa tipe MIME tidak "
|
2040 |
+
#~ "didukung oleh klien email Anda!"
|
2041 |
+
|
2042 |
+
#~ msgid "Display Attachment tips"
|
2043 |
+
#~ msgstr "Tips tampilan Lampiran"
|
2044 |
+
|
2045 |
+
#~ msgid "Display a phone number field"
|
2046 |
+
#~ msgstr "Menampilkan field nomor telepon"
|
2047 |
+
|
2048 |
+
#~ msgid "Please enter a valid email address. Settings are not saved."
|
2049 |
+
#~ msgstr "Silakan isi alamat email. Setelan tidak disimpan."
|
2050 |
+
|
2051 |
+
#~ msgid "E-Mail Address"
|
2052 |
+
#~ msgstr "Alamat email"
|
2053 |
+
|
2054 |
+
#~ msgid ""
|
2055 |
+
#~ "If you would like to add a Contact Form to your website, just copy and "
|
2056 |
+
#~ "put this shortcode onto your post or page:"
|
2057 |
+
#~ msgstr ""
|
2058 |
+
#~ "Jika Anda ingin menambahkan formulir kontak ke website Anda, hanya copy "
|
2059 |
+
#~ "dan menempatkan shortcode ini ke pos atau halaman:"
|
2060 |
+
|
2061 |
+
#~ msgid "Thank you for contact."
|
2062 |
+
#~ msgstr "Terima kasih untuk kontak."
|
2063 |
+
|
2064 |
+
#~ msgid "Set a name of user wo will get messages from a contact form."
|
2065 |
+
#~ msgstr ""
|
2066 |
+
#~ "Menetapkan nama pengguna wo akan mendapatkan pesan dari formulir kontak."
|
2067 |
+
|
2068 |
+
#~ msgid "E-Mail Addresse:"
|
2069 |
+
#~ msgstr "E-Mail alamat:"
|
bws_menu/languages/bestwebsoft-nl_NL.mo
ADDED
Binary file
|
bws_menu/languages/bestwebsoft-nl_NL.po
ADDED
@@ -0,0 +1,1478 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: bestwebsoft\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-06-08 15:43+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-06-08 15:43+0300\n"
|
7 |
+
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
+
"Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
|
9 |
+
"Language: nl_NL\n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
|
14 |
+
"X-Poedit-Basepath: ..\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.8.7.1\n"
|
17 |
+
"X-Poedit-SearchPath-0: .\n"
|
18 |
+
|
19 |
+
#: bws_functions.php:72 bws_functions.php:190
|
20 |
+
msgid "requires"
|
21 |
+
msgstr "benodigd"
|
22 |
+
|
23 |
+
#: bws_functions.php:74
|
24 |
+
msgid ""
|
25 |
+
"or higher, that is why it has been deactivated! Please upgrade WordPress and "
|
26 |
+
"try again."
|
27 |
+
msgstr ""
|
28 |
+
"of hoger, daarom is deze gedeactiveerd! Upgrade WordPress en probeer het "
|
29 |
+
"opnieuw."
|
30 |
+
|
31 |
+
#: bws_functions.php:75
|
32 |
+
msgid "Back to the WordPress"
|
33 |
+
msgstr "Terug naar WordPress"
|
34 |
+
|
35 |
+
#: bws_functions.php:77
|
36 |
+
msgid "Plugins page"
|
37 |
+
msgstr "Plugins pagina"
|
38 |
+
|
39 |
+
#: bws_functions.php:91
|
40 |
+
msgid "Like the plugin?"
|
41 |
+
msgstr "Like de plugin?"
|
42 |
+
|
43 |
+
#: bws_functions.php:93
|
44 |
+
msgid "Rate it"
|
45 |
+
msgstr "Rate it"
|
46 |
+
|
47 |
+
#: bws_functions.php:102
|
48 |
+
msgid "Need help?"
|
49 |
+
msgstr "Hulp nodig?"
|
50 |
+
|
51 |
+
#: bws_functions.php:103 bws_functions.php:907 class-bws-settings.php:1047
|
52 |
+
msgid "Visit Help Center"
|
53 |
+
msgstr "Bezoek het Helpcentrum"
|
54 |
+
|
55 |
+
#: bws_functions.php:106
|
56 |
+
msgid "Want to support the plugin?"
|
57 |
+
msgstr "Geef ondersteuning aan de plug-in?"
|
58 |
+
|
59 |
+
#: bws_functions.php:107 bws_menu.php:553
|
60 |
+
msgid "Donate"
|
61 |
+
msgstr "Doneer"
|
62 |
+
|
63 |
+
#: bws_functions.php:127
|
64 |
+
msgid "WARNING: Illegal use notification"
|
65 |
+
msgstr "LET OP!: Onwettige gebruiksmelding"
|
66 |
+
|
67 |
+
#: bws_functions.php:127
|
68 |
+
msgid ""
|
69 |
+
"You can use one license of the Pro plugin for one domain only. Please check "
|
70 |
+
"and edit your license or domain if necessary using you personal Client Area. "
|
71 |
+
"We strongly recommend you to solve the problem within 24 hours, otherwise "
|
72 |
+
"the Pro plugin will be deactivated."
|
73 |
+
msgstr ""
|
74 |
+
"U kunt één licentie van de Pro-plugin gebruiken voor één domein. Controleer "
|
75 |
+
"en bewerk uw licentie of domein indien nodig op uw persoonlijke "
|
76 |
+
"klantenomgeving. We raden u aan om het probleem binnen 24 uur op te lossen, "
|
77 |
+
"anders wordt de Pro-plugin gedeactiveerd."
|
78 |
+
|
79 |
+
#: bws_functions.php:127 bws_functions.php:339 bws_menu.php:627
|
80 |
+
#: class-bws-settings.php:143
|
81 |
+
msgid "Learn More"
|
82 |
+
msgstr "Leer meer"
|
83 |
+
|
84 |
+
#: bws_functions.php:144
|
85 |
+
msgid ""
|
86 |
+
"Notice: Your Pro Trial license has expired. To continue using the plugin, "
|
87 |
+
"you should buy a Pro license"
|
88 |
+
msgstr ""
|
89 |
+
"Opmerking: Uw Pro Trial licentie is verlopen. Om de plugin verder te "
|
90 |
+
"gebruiken, moet u een Pro-licentie kopen"
|
91 |
+
|
92 |
+
#: bws_functions.php:146
|
93 |
+
msgid ""
|
94 |
+
"Your license has expired. To continue getting top-priority support and "
|
95 |
+
"plugin updates, you should extend it."
|
96 |
+
msgstr ""
|
97 |
+
"Uw licentie is verlopen. Om voort te gaan met ondersteuning voor top-"
|
98 |
+
"prioriteit en plugin-updates, moet u het uitbreiden."
|
99 |
+
|
100 |
+
#: bws_functions.php:146 bws_functions.php:382 deprecated.php:584
|
101 |
+
msgid "Learn more"
|
102 |
+
msgstr "Leer meer"
|
103 |
+
|
104 |
+
#: bws_functions.php:164
|
105 |
+
#, php-format
|
106 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
107 |
+
msgstr "Opmerking: U maakt gebruikt van de Pro Trial licentie van %s plugin."
|
108 |
+
|
109 |
+
#: bws_functions.php:166
|
110 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
111 |
+
msgstr "Opmerking: U gebruikt de Pro Trial licentie van de plugin."
|
112 |
+
|
113 |
+
#: bws_functions.php:169
|
114 |
+
msgid "The Pro Trial license will expire on"
|
115 |
+
msgstr "De Pro Trial licentie vervalt op"
|
116 |
+
|
117 |
+
#: bws_functions.php:192
|
118 |
+
msgid ""
|
119 |
+
"or higher! We do not guarantee that our plugin will work correctly. Please "
|
120 |
+
"upgrade to WordPress latest version."
|
121 |
+
msgstr ""
|
122 |
+
"of hoger! Wij garanderen niet dat onze plugin correct blijft werken. Upgrade "
|
123 |
+
"nu naar de nieuwste versie van WordPress."
|
124 |
+
|
125 |
+
#: bws_functions.php:207
|
126 |
+
#, php-format
|
127 |
+
msgid "Thank you for installing %s plugin!"
|
128 |
+
msgstr "Dank u voor het installeren van %s plugin!"
|
129 |
+
|
130 |
+
#: bws_functions.php:208
|
131 |
+
msgid "Let's get started"
|
132 |
+
msgstr "Laten we aan de slag gaan"
|
133 |
+
|
134 |
+
#: bws_functions.php:209 bws_functions.php:242 bws_menu.php:557
|
135 |
+
#: bws_menu.php:559
|
136 |
+
msgid "Settings"
|
137 |
+
msgstr "Settings"
|
138 |
+
|
139 |
+
#: bws_functions.php:211 bws_menu.php:328 class-bws-settings.php:736
|
140 |
+
#: class-bws-settings.php:1049 class-bws-settings.php:1059 deprecated.php:694
|
141 |
+
msgid "or"
|
142 |
+
msgstr "of"
|
143 |
+
|
144 |
+
#: bws_functions.php:212 bws_functions.php:244
|
145 |
+
msgid "Add New"
|
146 |
+
msgstr "Nieuwe toevoegen"
|
147 |
+
|
148 |
+
#: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
|
149 |
+
#: bws_functions.php:378 bws_functions.php:480
|
150 |
+
msgid "Close notice"
|
151 |
+
msgstr "Opmerking sluiten"
|
152 |
+
|
153 |
+
#: bws_functions.php:231
|
154 |
+
msgid "Thank you for installing plugins by BestWebSoft!"
|
155 |
+
msgstr "Dank u voor het installeren van een plugin van BestWebSoft!"
|
156 |
+
|
157 |
+
#: bws_functions.php:233
|
158 |
+
msgid "More Details"
|
159 |
+
msgstr "Meer details"
|
160 |
+
|
161 |
+
#: bws_functions.php:234
|
162 |
+
msgid "Less Details"
|
163 |
+
msgstr "Minder details"
|
164 |
+
|
165 |
+
#: bws_functions.php:262
|
166 |
+
msgid "Deprecated function(-s) is used on the site here:"
|
167 |
+
msgstr "Deprecated functie(-s) word hier op de site gebruikt:"
|
168 |
+
|
169 |
+
#: bws_functions.php:276
|
170 |
+
msgid ""
|
171 |
+
"This function(-s) will be removed over time. Please update the product(-s)."
|
172 |
+
msgstr ""
|
173 |
+
"Deze function(-s) zal mettertijd worden verwijderd. Update het product of "
|
174 |
+
"producten."
|
175 |
+
|
176 |
+
#: bws_functions.php:335
|
177 |
+
msgid "It’s time to upgrade your"
|
178 |
+
msgstr "Het is tijd om te upgraden, "
|
179 |
+
|
180 |
+
#: bws_functions.php:335
|
181 |
+
msgid "to"
|
182 |
+
msgstr "aan"
|
183 |
+
|
184 |
+
#: bws_functions.php:335
|
185 |
+
msgid "version!"
|
186 |
+
msgstr "versie!"
|
187 |
+
|
188 |
+
#: bws_functions.php:336
|
189 |
+
msgid "Extend standard plugin functionality with new great options."
|
190 |
+
msgstr ""
|
191 |
+
"Verleng de standaard plugin functionaliteit met nieuwe geweldige opties."
|
192 |
+
|
193 |
+
#: bws_functions.php:382
|
194 |
+
#, php-format
|
195 |
+
msgid ""
|
196 |
+
"Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
|
197 |
+
"SUPPORT or UPDATES."
|
198 |
+
msgstr ""
|
199 |
+
"Uw licentiesleutel voor %s verloopt uit op %s en u krijgt geen TOP-"
|
200 |
+
"PRIORITEIT SUPPORT of UPDATES."
|
201 |
+
|
202 |
+
#: bws_functions.php:475
|
203 |
+
#, php-format
|
204 |
+
msgid "Thank you for choosing %s plugin!"
|
205 |
+
msgstr "Bedankt voor het kiezen van %s plugin!"
|
206 |
+
|
207 |
+
#: bws_functions.php:476
|
208 |
+
msgid ""
|
209 |
+
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
210 |
+
"we'd love to hear about it!"
|
211 |
+
msgstr ""
|
212 |
+
"Als u een feature, suggestie of idee hebt dat u graag wilt zien in de "
|
213 |
+
"plugin, zouden we het graag willen horen!"
|
214 |
+
|
215 |
+
#: bws_functions.php:477
|
216 |
+
msgid "Suggest a Feature"
|
217 |
+
msgstr "Deel een idee"
|
218 |
+
|
219 |
+
#: bws_functions.php:493 class-bws-settings.php:533 class-bws-settings.php:536
|
220 |
+
#: class-bws-settings.php:584 class-bws-settings.php:587
|
221 |
+
msgid "Notice"
|
222 |
+
msgstr "Opmerking"
|
223 |
+
|
224 |
+
#: bws_functions.php:493
|
225 |
+
msgid "The plugin's settings have been changed."
|
226 |
+
msgstr "De instellingen van de plugin zijn gewijzigd."
|
227 |
+
|
228 |
+
#: bws_functions.php:494 class-bws-settings.php:182 class-bws-settings.php:202
|
229 |
+
#: deprecated.php:640
|
230 |
+
msgid "Save Changes"
|
231 |
+
msgstr "Bewerkingen opslaan"
|
232 |
+
|
233 |
+
#: bws_functions.php:508
|
234 |
+
msgid ""
|
235 |
+
"You can always look at premium options by checking the \"Pro Options\" in "
|
236 |
+
"the \"Misc\" tab."
|
237 |
+
msgstr ""
|
238 |
+
"U kunt altijd premium opties bekijken door de \"Pro Options\" in het tabblad "
|
239 |
+
"\"Misc\" te controleren."
|
240 |
+
|
241 |
+
#: bws_functions.php:629
|
242 |
+
msgid "Add BWS Shortcode"
|
243 |
+
msgstr ""
|
244 |
+
|
245 |
+
#: bws_functions.php:630
|
246 |
+
msgid "Add BWS Plugins Shortcode"
|
247 |
+
msgstr ""
|
248 |
+
|
249 |
+
#: bws_functions.php:649
|
250 |
+
msgid "Add shortcode"
|
251 |
+
msgstr "Shortcode toevoegen"
|
252 |
+
|
253 |
+
#: bws_functions.php:649
|
254 |
+
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
255 |
+
msgstr "Voeg BestWebSoft plugins shortcodes toe aan deze knop."
|
256 |
+
|
257 |
+
#: bws_functions.php:695
|
258 |
+
msgid "Close"
|
259 |
+
msgstr "Sluiten"
|
260 |
+
|
261 |
+
#: bws_functions.php:787
|
262 |
+
msgid "Are you sure you want to restore default settings?"
|
263 |
+
msgstr "Weet u zeker dat u de standaardinstellingen wilt herstellen?"
|
264 |
+
|
265 |
+
#: bws_functions.php:790
|
266 |
+
msgid "Yes, restore all settings"
|
267 |
+
msgstr "Ja, herstel alle instellingen"
|
268 |
+
|
269 |
+
#: bws_functions.php:791
|
270 |
+
msgid "No, go back to the settings page"
|
271 |
+
msgstr "Nee, ga terug naar de instellingen"
|
272 |
+
|
273 |
+
#: bws_functions.php:833
|
274 |
+
msgid "Plugin"
|
275 |
+
msgstr "Plugin"
|
276 |
+
|
277 |
+
#: bws_functions.php:842
|
278 |
+
msgid "Shortcode settings"
|
279 |
+
msgstr "Shortcode instellingen"
|
280 |
+
|
281 |
+
#: bws_functions.php:847
|
282 |
+
msgid "The shortcode will be inserted"
|
283 |
+
msgstr "De shortcode wordt ingevoegd"
|
284 |
+
|
285 |
+
#: bws_functions.php:852
|
286 |
+
msgid "Insert"
|
287 |
+
msgstr "Invoegen"
|
288 |
+
|
289 |
+
#: bws_functions.php:912
|
290 |
+
msgid "FAQ"
|
291 |
+
msgstr "FAQ"
|
292 |
+
|
293 |
+
#: bws_functions.php:918
|
294 |
+
msgid "For more information:"
|
295 |
+
msgstr "Voor meer informatie:"
|
296 |
+
|
297 |
+
#: bws_functions.php:919
|
298 |
+
msgid "Documentation"
|
299 |
+
msgstr "Documentatie"
|
300 |
+
|
301 |
+
#: bws_functions.php:920
|
302 |
+
msgid "Video Instructions"
|
303 |
+
msgstr "Video Instructies"
|
304 |
+
|
305 |
+
#: bws_functions.php:921
|
306 |
+
msgid "Submit a Request"
|
307 |
+
msgstr "Verzend een verzoek"
|
308 |
+
|
309 |
+
#: bws_menu.php:101 class-bws-settings.php:781 deprecated.php:322
|
310 |
+
msgid "Wrong license key"
|
311 |
+
msgstr "Incorrecte licentiesleutel"
|
312 |
+
|
313 |
+
#: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
|
314 |
+
#: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
|
315 |
+
#: deprecated.php:352
|
316 |
+
msgid ""
|
317 |
+
"Something went wrong. Please try again later. If the error appears again, "
|
318 |
+
"please contact us"
|
319 |
+
msgstr ""
|
320 |
+
"Er is iets fout gegaan. Probeer het later nogmaals. Als de fout zich blijft "
|
321 |
+
"voordoen, neem dan contact met ons op"
|
322 |
+
|
323 |
+
#: bws_menu.php:122 class-bws-settings.php:807 class-bws-settings.php:874
|
324 |
+
#: class-bws-settings.php:910 deprecated.php:133 deprecated.php:199
|
325 |
+
#: deprecated.php:352
|
326 |
+
msgid "We are sorry for inconvenience."
|
327 |
+
msgstr "Het spijt ons voor het ongemak."
|
328 |
+
|
329 |
+
#: bws_menu.php:128 class-bws-settings.php:813 class-bws-settings.php:916
|
330 |
+
#: deprecated.php:139 deprecated.php:358
|
331 |
+
msgid "Wrong license key."
|
332 |
+
msgstr "Verkeerde licentiesleutel."
|
333 |
+
|
334 |
+
#: bws_menu.php:130
|
335 |
+
msgid ""
|
336 |
+
"This license key is bound to another site. Change it via personal Client "
|
337 |
+
"Area."
|
338 |
+
msgstr ""
|
339 |
+
"Deze licentiesleutel is gebonden aan een andere website. Verander het via je "
|
340 |
+
"persoonlijke beheeromgeving."
|
341 |
+
|
342 |
+
#: bws_menu.php:130
|
343 |
+
msgid "Log in"
|
344 |
+
msgstr "Log in"
|
345 |
+
|
346 |
+
#: bws_menu.php:132 bws_menu.php:334 deprecated.php:261
|
347 |
+
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
348 |
+
msgstr "Helaas heb je het aantal beschikbare pogingen per dag overschreden."
|
349 |
+
|
350 |
+
#: bws_menu.php:134 class-bws-settings.php:922 deprecated.php:364
|
351 |
+
#, php-format
|
352 |
+
msgid ""
|
353 |
+
"Unfortunately, Your license has expired. To continue getting top-priority "
|
354 |
+
"support and plugin updates, you should extend it in your %s"
|
355 |
+
msgstr ""
|
356 |
+
"Helaas is uw licentie verlopen. Om voort te gaan met ondersteuning voor top-"
|
357 |
+
"prioriteit en plugin-updates, moet u deze uitbreiden in uw %s"
|
358 |
+
|
359 |
+
#: bws_menu.php:136 class-bws-settings.php:924 deprecated.php:366
|
360 |
+
msgid ""
|
361 |
+
"Unfortunately, the Pro licence was already installed to this domain. The Pro "
|
362 |
+
"Trial license can be installed only once."
|
363 |
+
msgstr ""
|
364 |
+
"Helaas is de Pro licentie al geïnstalleerd op dit domein. De Pro Trial "
|
365 |
+
"licentie kan slechts één keer geïnstalleerd worden."
|
366 |
+
|
367 |
+
#: bws_menu.php:142 class-bws-settings.php:828 deprecated.php:153
|
368 |
+
msgid "The license key is valid."
|
369 |
+
msgstr "De licentiesleutel is geldig."
|
370 |
+
|
371 |
+
#: bws_menu.php:144 class-bws-settings.php:831 deprecated.php:156
|
372 |
+
msgid "Your license will expire on"
|
373 |
+
msgstr "Uw licentie vervalt op"
|
374 |
+
|
375 |
+
#: bws_menu.php:146
|
376 |
+
msgid "Congratulations! Pro Membership license is activated successfully."
|
377 |
+
msgstr ""
|
378 |
+
"Hartelijk gefeliciteerd! Uw Pro Membership licentie is succesvol geactiveerd."
|
379 |
+
|
380 |
+
#: bws_menu.php:153 class-bws-settings.php:996 deprecated.php:435
|
381 |
+
msgid ""
|
382 |
+
"Something went wrong. Try again later or upload the plugin manually. We are "
|
383 |
+
"sorry for inconvenience."
|
384 |
+
msgstr ""
|
385 |
+
"Er is iets fout gegaan. Probeer het later opnieuw of upload de plugin "
|
386 |
+
"handmatig. Het spijt ons voor ongemak."
|
387 |
+
|
388 |
+
#: bws_menu.php:163
|
389 |
+
msgid "Please enter your license key."
|
390 |
+
msgstr "Vul alstublieft uw licentiesleutel in."
|
391 |
+
|
392 |
+
#: bws_menu.php:174
|
393 |
+
msgid "Not set"
|
394 |
+
msgstr "Niet ingesteld"
|
395 |
+
|
396 |
+
#: bws_menu.php:176
|
397 |
+
msgid "On"
|
398 |
+
msgstr "Aan"
|
399 |
+
|
400 |
+
#: bws_menu.php:176
|
401 |
+
msgid "Off"
|
402 |
+
msgstr "Uit"
|
403 |
+
|
404 |
+
#: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
|
405 |
+
#: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
|
406 |
+
msgid "N/A"
|
407 |
+
msgstr "N/A"
|
408 |
+
|
409 |
+
#: bws_menu.php:182
|
410 |
+
msgid " Mb"
|
411 |
+
msgstr "Mb"
|
412 |
+
|
413 |
+
#: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
|
414 |
+
msgid "Yes"
|
415 |
+
msgstr "Ja"
|
416 |
+
|
417 |
+
#: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
|
418 |
+
msgid "No"
|
419 |
+
msgstr "Nee"
|
420 |
+
|
421 |
+
#: bws_menu.php:196
|
422 |
+
msgid "WordPress Environment"
|
423 |
+
msgstr "WordPress Omgeving"
|
424 |
+
|
425 |
+
#: bws_menu.php:198
|
426 |
+
msgid "Home URL"
|
427 |
+
msgstr "Home URL"
|
428 |
+
|
429 |
+
#: bws_menu.php:199
|
430 |
+
msgid "Website URL"
|
431 |
+
msgstr "Website URL"
|
432 |
+
|
433 |
+
#: bws_menu.php:200
|
434 |
+
msgid "WP Version"
|
435 |
+
msgstr "WP Versiie"
|
436 |
+
|
437 |
+
#: bws_menu.php:201
|
438 |
+
msgid "WP Multisite"
|
439 |
+
msgstr "WP Multisite"
|
440 |
+
|
441 |
+
#: bws_menu.php:202
|
442 |
+
msgid "WP Memory Limit"
|
443 |
+
msgstr "WP Memory Limit"
|
444 |
+
|
445 |
+
#: bws_menu.php:203
|
446 |
+
msgid "Active Theme"
|
447 |
+
msgstr "Activeer Thema"
|
448 |
+
|
449 |
+
#: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
|
450 |
+
#, php-format
|
451 |
+
msgid "by %s"
|
452 |
+
msgstr "by %s"
|
453 |
+
|
454 |
+
#: bws_menu.php:207
|
455 |
+
msgid "Server Environment"
|
456 |
+
msgstr "Server Omgeving"
|
457 |
+
|
458 |
+
#: bws_menu.php:209
|
459 |
+
msgid "Operating System"
|
460 |
+
msgstr "Besturingssysteem"
|
461 |
+
|
462 |
+
#: bws_menu.php:210
|
463 |
+
msgid "Server"
|
464 |
+
msgstr "Server"
|
465 |
+
|
466 |
+
#: bws_menu.php:211
|
467 |
+
msgid "PHP Version"
|
468 |
+
msgstr "PHP Versiie"
|
469 |
+
|
470 |
+
#: bws_menu.php:212
|
471 |
+
msgid "PHP Allow URL fopen"
|
472 |
+
msgstr "PHP Allow URL fopen"
|
473 |
+
|
474 |
+
#: bws_menu.php:213
|
475 |
+
msgid "PHP Memory Limit"
|
476 |
+
msgstr "PHP Memory Limit"
|
477 |
+
|
478 |
+
#: bws_menu.php:214
|
479 |
+
msgid "Memory Usage"
|
480 |
+
msgstr "Memory Usage"
|
481 |
+
|
482 |
+
#: bws_menu.php:215
|
483 |
+
msgid "PHP Max Upload Size"
|
484 |
+
msgstr "PHP Max Upload Size"
|
485 |
+
|
486 |
+
#: bws_menu.php:216
|
487 |
+
msgid "PHP Max Post Size"
|
488 |
+
msgstr "PHP Max Post Size"
|
489 |
+
|
490 |
+
#: bws_menu.php:217
|
491 |
+
msgid "PHP Max Script Execute Time"
|
492 |
+
msgstr "PHP Max Script Execute Time"
|
493 |
+
|
494 |
+
#: bws_menu.php:218
|
495 |
+
msgid "PHP Exif support"
|
496 |
+
msgstr "PHP Exif support"
|
497 |
+
|
498 |
+
#: bws_menu.php:219
|
499 |
+
msgid "PHP IPTC support"
|
500 |
+
msgstr "PHP IPTC support"
|
501 |
+
|
502 |
+
#: bws_menu.php:220
|
503 |
+
msgid "PHP XML support"
|
504 |
+
msgstr "PHP XML support"
|
505 |
+
|
506 |
+
#: bws_menu.php:226
|
507 |
+
msgid "Database"
|
508 |
+
msgstr "Database"
|
509 |
+
|
510 |
+
#: bws_menu.php:228
|
511 |
+
msgid "WP DB version"
|
512 |
+
msgstr "WP DB version"
|
513 |
+
|
514 |
+
#: bws_menu.php:229
|
515 |
+
msgid "MySQL version"
|
516 |
+
msgstr "MySQL version"
|
517 |
+
|
518 |
+
#: bws_menu.php:230
|
519 |
+
msgid "SQL Mode"
|
520 |
+
msgstr "SQL Mode"
|
521 |
+
|
522 |
+
#: bws_menu.php:234
|
523 |
+
msgid "Active Plugins"
|
524 |
+
msgstr "Active Plugins"
|
525 |
+
|
526 |
+
#: bws_menu.php:239
|
527 |
+
msgid "Inactive Plugins"
|
528 |
+
msgstr "Inactive Plugins"
|
529 |
+
|
530 |
+
#: bws_menu.php:260
|
531 |
+
msgid "Please enter a valid email address."
|
532 |
+
msgstr "Gelieve een geldig e-mailadres in te geven."
|
533 |
+
|
534 |
+
#: bws_menu.php:264
|
535 |
+
msgid "Email with system info is sent to"
|
536 |
+
msgstr "E-mail met systeeminformatie wordt verzonden naar"
|
537 |
+
|
538 |
+
#: bws_menu.php:268
|
539 |
+
msgid "Thank you for contacting us."
|
540 |
+
msgstr "Bedankt voor het contact met ons opnemen."
|
541 |
+
|
542 |
+
#: bws_menu.php:291
|
543 |
+
msgid "Sorry, email message could not be delivered."
|
544 |
+
msgstr "Sorry, e-mailbericht kon niet worden geleverd."
|
545 |
+
|
546 |
+
#: bws_menu.php:307 bws_menu.php:311 bws_menu.php:360 deprecated.php:91
|
547 |
+
msgid "Plugins"
|
548 |
+
msgstr "Plugins"
|
549 |
+
|
550 |
+
#: bws_menu.php:308 bws_menu.php:312 bws_menu.php:611 deprecated.php:92
|
551 |
+
msgid "Themes"
|
552 |
+
msgstr "Thema's"
|
553 |
+
|
554 |
+
#: bws_menu.php:309 bws_menu.php:313 bws_menu.php:662
|
555 |
+
msgid "System status"
|
556 |
+
msgstr "Systeem status"
|
557 |
+
|
558 |
+
#: bws_menu.php:317
|
559 |
+
msgid "Support"
|
560 |
+
msgstr "Support"
|
561 |
+
|
562 |
+
#: bws_menu.php:318
|
563 |
+
msgid "Manage purchased licenses & subscriptions"
|
564 |
+
msgstr "Beheerde licenties en abonnementen beheren"
|
565 |
+
|
566 |
+
#: bws_menu.php:326
|
567 |
+
#, php-format
|
568 |
+
msgid "Get Access to %s+ Premium Plugins"
|
569 |
+
msgstr "Krijg toegang tot %s+ Premium plugins"
|
570 |
+
|
571 |
+
#: bws_menu.php:328
|
572 |
+
msgid "Subscribe to Pro Membership"
|
573 |
+
msgstr "Abonneer je op de Pro Membership"
|
574 |
+
|
575 |
+
#: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:749
|
576 |
+
#: deprecated.php:227
|
577 |
+
msgid "Check license key"
|
578 |
+
msgstr "Controleer de licentiesleutel"
|
579 |
+
|
580 |
+
#: bws_menu.php:339
|
581 |
+
msgid "Enter your license key"
|
582 |
+
msgstr "Vul uw licentiesleutel in"
|
583 |
+
|
584 |
+
#: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
|
585 |
+
#: class-bws-settings.php:728 deprecated.php:259 deprecated.php:267
|
586 |
+
#: deprecated.php:629 deprecated.php:700 deprecated.php:709
|
587 |
+
msgid "Activate"
|
588 |
+
msgstr "Activateer"
|
589 |
+
|
590 |
+
#: bws_menu.php:361
|
591 |
+
msgid "Upload Plugin"
|
592 |
+
msgstr "Upload Plugin"
|
593 |
+
|
594 |
+
#: bws_menu.php:365
|
595 |
+
#, php-format
|
596 |
+
msgid ""
|
597 |
+
"The plugin generated %d characters of <strong>unexpected output</strong> "
|
598 |
+
"during activation. If you notice “headers already sent” "
|
599 |
+
"messages, problems with syndication feeds or other issues, try deactivating "
|
600 |
+
"or removing this plugin."
|
601 |
+
msgstr ""
|
602 |
+
"De plugin genereerde %d tekens van <strong>onverwachte uitvoer</strong> "
|
603 |
+
"tijdens de activering. Als merkt dat er headers al verstuurd zijn, problemen "
|
604 |
+
"met syndicationfeeds of andere problemen zijn; probeer deze plugin uit te "
|
605 |
+
"schakelen of te verwijderen."
|
606 |
+
|
607 |
+
#: bws_menu.php:367
|
608 |
+
msgid ""
|
609 |
+
"Plugin could not be activated because it triggered a <strong>fatal error</"
|
610 |
+
"strong>."
|
611 |
+
msgstr ""
|
612 |
+
"Plugin kan niet geactiveerd worden omdat het er <strong>fatal error</strong> "
|
613 |
+
"zich voordoet."
|
614 |
+
|
615 |
+
#: bws_menu.php:370
|
616 |
+
msgid "Plugin <strong>activated</strong>."
|
617 |
+
msgstr "Plugin <strong>geactiveerd</strong>."
|
618 |
+
|
619 |
+
#: bws_menu.php:377
|
620 |
+
msgid "Installing Plugin"
|
621 |
+
msgstr "Installatie Plugin bezig"
|
622 |
+
|
623 |
+
#: bws_menu.php:383
|
624 |
+
msgid "Downloading install package from"
|
625 |
+
msgstr "Installatiepakket downloaden vanaf"
|
626 |
+
|
627 |
+
#: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
|
628 |
+
#: class-bws-settings.php:948 class-bws-settings.php:970
|
629 |
+
#: class-bws-settings.php:992 deprecated.php:387 deprecated.php:409
|
630 |
+
#: deprecated.php:431
|
631 |
+
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
632 |
+
msgstr ""
|
633 |
+
"Het ziparchief kon niet worden geladen. Gelieve de plugin handmatig te "
|
634 |
+
"uploaden"
|
635 |
+
|
636 |
+
#: bws_menu.php:408
|
637 |
+
msgid "Unpacking the package"
|
638 |
+
msgstr "Uitpakken van het pakket"
|
639 |
+
|
640 |
+
#: bws_menu.php:413 bws_menu.php:421
|
641 |
+
msgid "Installing the plugin"
|
642 |
+
msgstr "De plugin installeren"
|
643 |
+
|
644 |
+
#: bws_menu.php:417 class-bws-settings.php:960 deprecated.php:399
|
645 |
+
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
646 |
+
msgstr ""
|
647 |
+
"Kan het zip-bestand niet openen. Gelieve de plugin handmatig te uploaden"
|
648 |
+
|
649 |
+
#: bws_menu.php:424 class-bws-settings.php:966 deprecated.php:405
|
650 |
+
msgid ""
|
651 |
+
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
652 |
+
"plugin manually"
|
653 |
+
msgstr ""
|
654 |
+
"Uw server ondersteunt geen ZipArchive of Phar. Gelieve de plugin handmatig "
|
655 |
+
"te uploaden"
|
656 |
+
|
657 |
+
#: bws_menu.php:427
|
658 |
+
#, php-format
|
659 |
+
msgid "The plugin %s is successfully installed."
|
660 |
+
msgstr "De plugin %s is succesvol geïnstalleerd."
|
661 |
+
|
662 |
+
#: bws_menu.php:434 class-bws-settings.php:973 deprecated.php:412
|
663 |
+
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
664 |
+
msgstr ""
|
665 |
+
"UploadDir is kan niet worden weggeschreven. Gelieve de plugin handmatig te "
|
666 |
+
"uploaden"
|
667 |
+
|
668 |
+
#: bws_menu.php:439
|
669 |
+
msgid "Activate Plugin"
|
670 |
+
msgstr "Activateer Plugin"
|
671 |
+
|
672 |
+
#: bws_menu.php:439 bws_menu.php:445
|
673 |
+
msgid "Return to BestWebSoft Panel"
|
674 |
+
msgstr "Terug naar het BestWebSoft Paneel"
|
675 |
+
|
676 |
+
#: bws_menu.php:449 bws_menu.php:464 bws_menu.php:593
|
677 |
+
msgid "All"
|
678 |
+
msgstr "Alle"
|
679 |
+
|
680 |
+
#: bws_menu.php:450 bws_menu.php:650
|
681 |
+
msgid "Installed"
|
682 |
+
msgstr "Geinstalleerd"
|
683 |
+
|
684 |
+
#: bws_menu.php:451
|
685 |
+
msgid "Not Installed"
|
686 |
+
msgstr "Niet geinstalleerd"
|
687 |
+
|
688 |
+
#: bws_menu.php:457
|
689 |
+
msgid "Filter results"
|
690 |
+
msgstr "Filter resultaten"
|
691 |
+
|
692 |
+
#: bws_menu.php:460 bws_menu.php:589
|
693 |
+
msgid "Category"
|
694 |
+
msgstr "Categorieen"
|
695 |
+
|
696 |
+
#: bws_menu.php:524
|
697 |
+
msgid "Not installed"
|
698 |
+
msgstr "Niet geinstalleerd"
|
699 |
+
|
700 |
+
#: bws_menu.php:528
|
701 |
+
msgid "Renew to get updates"
|
702 |
+
msgstr "Vernieuw om updates te verkrijgen"
|
703 |
+
|
704 |
+
#: bws_menu.php:531
|
705 |
+
#, php-format
|
706 |
+
msgid "Update to v %s"
|
707 |
+
msgstr "Update naar v %s"
|
708 |
+
|
709 |
+
#: bws_menu.php:543 bws_menu.php:566 bws_menu.php:575
|
710 |
+
msgid "Install Now"
|
711 |
+
msgstr "Installeer nu"
|
712 |
+
|
713 |
+
#: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
|
714 |
+
msgid "Upgrade to Pro"
|
715 |
+
msgstr "Upgrade naar Pro"
|
716 |
+
|
717 |
+
#: bws_menu.php:563 bws_menu.php:572
|
718 |
+
msgid "Activate this plugin"
|
719 |
+
msgstr "Activateer deze plugin"
|
720 |
+
|
721 |
+
#: bws_menu.php:575
|
722 |
+
msgid "Install this plugin"
|
723 |
+
msgstr "Installeer deze plugin"
|
724 |
+
|
725 |
+
#: bws_menu.php:584
|
726 |
+
msgid "Nothing found. Try another criteria."
|
727 |
+
msgstr "Niks gevonden. Probeer een ander criteria."
|
728 |
+
|
729 |
+
#: bws_menu.php:621 bws_menu.php:641
|
730 |
+
#, php-format
|
731 |
+
msgid "By %s"
|
732 |
+
msgstr "By %s"
|
733 |
+
|
734 |
+
#: bws_menu.php:648
|
735 |
+
msgid "Already Installed"
|
736 |
+
msgstr "Reeds geinstalleerd"
|
737 |
+
|
738 |
+
#: bws_menu.php:659
|
739 |
+
msgid "Browse Free WordPress Themes"
|
740 |
+
msgstr "Browse Gratis WordPress Themas"
|
741 |
+
|
742 |
+
#: bws_menu.php:668
|
743 |
+
msgid "Send to support"
|
744 |
+
msgstr "Stuur uw vraag"
|
745 |
+
|
746 |
+
#: bws_menu.php:675
|
747 |
+
msgid "Send to custom email »"
|
748 |
+
msgstr "Verzend naar aangepaste e-mail »"
|
749 |
+
|
750 |
+
#: class-bws-settings.php:135
|
751 |
+
msgid "Information"
|
752 |
+
msgstr "Informatie"
|
753 |
+
|
754 |
+
#: class-bws-settings.php:143
|
755 |
+
msgid "Inactive"
|
756 |
+
msgstr "Inactief"
|
757 |
+
|
758 |
+
#: class-bws-settings.php:151
|
759 |
+
msgid "Expired"
|
760 |
+
msgstr "Verlopen"
|
761 |
+
|
762 |
+
#: class-bws-settings.php:154
|
763 |
+
#, php-format
|
764 |
+
msgid "%s day(-s) left"
|
765 |
+
msgstr "%s dag(-en) over"
|
766 |
+
|
767 |
+
#: class-bws-settings.php:160
|
768 |
+
#, php-format
|
769 |
+
msgid "Expired on %s"
|
770 |
+
msgstr "Verlopen op %s"
|
771 |
+
|
772 |
+
#: class-bws-settings.php:160
|
773 |
+
msgid "Renew Now"
|
774 |
+
msgstr "Vernieuw nu"
|
775 |
+
|
776 |
+
#: class-bws-settings.php:162
|
777 |
+
msgid "Active"
|
778 |
+
msgstr "Actief"
|
779 |
+
|
780 |
+
#: class-bws-settings.php:167
|
781 |
+
msgid "License"
|
782 |
+
msgstr "Licentie"
|
783 |
+
|
784 |
+
#: class-bws-settings.php:170
|
785 |
+
msgid "Status"
|
786 |
+
msgstr "Status"
|
787 |
+
|
788 |
+
#: class-bws-settings.php:174
|
789 |
+
msgid "Version"
|
790 |
+
msgstr "Versiie"
|
791 |
+
|
792 |
+
#: class-bws-settings.php:282
|
793 |
+
msgid "All plugin settings were restored."
|
794 |
+
msgstr "Alle plugin-instellingen zijn hersteld."
|
795 |
+
|
796 |
+
#: class-bws-settings.php:420
|
797 |
+
msgid "Custom Code"
|
798 |
+
msgstr "Maatwerk Code"
|
799 |
+
|
800 |
+
#: class-bws-settings.php:424 deprecated.php:497
|
801 |
+
msgid "You do not have sufficient permissions to edit plugins for this site."
|
802 |
+
msgstr ""
|
803 |
+
"U heeft niet voldoende permissies om plugins voor deze website te bewerken."
|
804 |
+
|
805 |
+
#: class-bws-settings.php:429 deprecated.php:618
|
806 |
+
msgid "These styles will be added to the header on all pages of your site."
|
807 |
+
msgstr ""
|
808 |
+
"Deze stijlen worden toegevoegd aan de koptekst op alle pagina's van uw "
|
809 |
+
"website."
|
810 |
+
|
811 |
+
#: class-bws-settings.php:432 deprecated.php:620
|
812 |
+
#, php-format
|
813 |
+
msgid ""
|
814 |
+
"This PHP code will be hooked to the %s action and will be printed on front "
|
815 |
+
"end only."
|
816 |
+
msgstr ""
|
817 |
+
"Deze PHP-code wordt aangesloten op de %s actie en zal alleen op de website "
|
818 |
+
"worden getoond."
|
819 |
+
|
820 |
+
#: class-bws-settings.php:435
|
821 |
+
msgid "These code will be added to the header on all pages of your site."
|
822 |
+
msgstr ""
|
823 |
+
"Deze code wordt toegevoegd aan de koptekst op alle pagina's van uw website."
|
824 |
+
|
825 |
+
#: class-bws-settings.php:443 deprecated.php:644
|
826 |
+
#, php-format
|
827 |
+
msgid ""
|
828 |
+
"You need to make this files writable before you can save your changes. See "
|
829 |
+
"%s the Codex %s for more information."
|
830 |
+
msgstr ""
|
831 |
+
"U moet deze bestanden schrijfrechten geven voordat u de wijzigingen kunt "
|
832 |
+
"opslaan. Zie %s de Codex %s voor meer informatie."
|
833 |
+
|
834 |
+
#: class-bws-settings.php:453 deprecated.php:626
|
835 |
+
msgid "Browsing"
|
836 |
+
msgstr "Browsing"
|
837 |
+
|
838 |
+
#: class-bws-settings.php:457
|
839 |
+
#, php-format
|
840 |
+
msgid "Activate custom %s code."
|
841 |
+
msgstr "Activateer maatwerk %s code."
|
842 |
+
|
843 |
+
#: class-bws-settings.php:464 deprecated.php:633
|
844 |
+
#, php-format
|
845 |
+
msgid "Learn more about %s"
|
846 |
+
msgstr "Leer meer over %s"
|
847 |
+
|
848 |
+
#: class-bws-settings.php:524
|
849 |
+
msgid "Miscellaneous Settings"
|
850 |
+
msgstr "Diversen instellingen"
|
851 |
+
|
852 |
+
#: class-bws-settings.php:533 class-bws-settings.php:584
|
853 |
+
#, php-format
|
854 |
+
msgid ""
|
855 |
+
"It is prohibited to change %s settings on this site in the %s network "
|
856 |
+
"settings."
|
857 |
+
msgstr ""
|
858 |
+
"Het is verboden om %s instellingen op deze website te wijzigen in de %s "
|
859 |
+
"netwerkinstellingen."
|
860 |
+
|
861 |
+
#: class-bws-settings.php:536 class-bws-settings.php:587
|
862 |
+
#, php-format
|
863 |
+
msgid ""
|
864 |
+
"It is prohibited to view %s settings on this site in the %s network settings."
|
865 |
+
msgstr ""
|
866 |
+
"Het is verboden om %s instellingen op deze website te bekijken in de %s "
|
867 |
+
"netwerkinstellingen."
|
868 |
+
|
869 |
+
#: class-bws-settings.php:545
|
870 |
+
msgid "Pro Options"
|
871 |
+
msgstr "Pro Opties"
|
872 |
+
|
873 |
+
#: class-bws-settings.php:548
|
874 |
+
msgid "Enable to display plugin Pro options."
|
875 |
+
msgstr "Schakel in om plugin Pro opties te zien."
|
876 |
+
|
877 |
+
#: class-bws-settings.php:553
|
878 |
+
msgid "Track Usage"
|
879 |
+
msgstr "Track gebruik"
|
880 |
+
|
881 |
+
#: class-bws-settings.php:556
|
882 |
+
msgid ""
|
883 |
+
"Enable to allow tracking plugin usage anonymously in order to make it better."
|
884 |
+
msgstr ""
|
885 |
+
"Activeer het gebruik van anonieme tracking van de bijbehorende plug-in, om "
|
886 |
+
"het product beter te maken."
|
887 |
+
|
888 |
+
#: class-bws-settings.php:560
|
889 |
+
msgid "Default Settings"
|
890 |
+
msgstr "Standaard instellingen"
|
891 |
+
|
892 |
+
#: class-bws-settings.php:562
|
893 |
+
msgid "Restore Settings"
|
894 |
+
msgstr "Instellingen herstellen"
|
895 |
+
|
896 |
+
#: class-bws-settings.php:563
|
897 |
+
msgid "This will restore plugin settings to defaults."
|
898 |
+
msgstr ""
|
899 |
+
"Dit zal de plugininstellingen herstellen naar de standaardinstellingen."
|
900 |
+
|
901 |
+
#: class-bws-settings.php:575
|
902 |
+
msgid "Import / Export"
|
903 |
+
msgstr "Import / Export"
|
904 |
+
|
905 |
+
#: class-bws-settings.php:691 class-bws-settings.php:724
|
906 |
+
#: class-bws-settings.php:746
|
907 |
+
msgid "License Key"
|
908 |
+
msgstr "Licentiesleutel"
|
909 |
+
|
910 |
+
#: class-bws-settings.php:714
|
911 |
+
msgid "Congratulations! Pro license is activated successfully."
|
912 |
+
msgstr "Hartelijk gefeliciteerd! De Pro licentie is succesvol geactiveerd."
|
913 |
+
|
914 |
+
#: class-bws-settings.php:715
|
915 |
+
#, php-format
|
916 |
+
msgid "You will be automatically redirected to the %s in %s seconds."
|
917 |
+
msgstr "U wordt automatisch doorgestuurd naar %s in %s seconden."
|
918 |
+
|
919 |
+
#: class-bws-settings.php:715
|
920 |
+
msgid "Settings page"
|
921 |
+
msgstr "Instellingen"
|
922 |
+
|
923 |
+
#: class-bws-settings.php:730
|
924 |
+
#, php-format
|
925 |
+
msgid "Enter your license key to activate %s and get premium plugin features."
|
926 |
+
msgstr ""
|
927 |
+
"Voer uw licentiesleutel in om %s te activeren en premium-pluginfuncties te "
|
928 |
+
"krijgen."
|
929 |
+
|
930 |
+
#: class-bws-settings.php:733 class-bws-settings.php:920 deprecated.php:362
|
931 |
+
#: deprecated.php:703
|
932 |
+
msgid ""
|
933 |
+
"Unfortunately, you have exceeded the number of available tries per day. "
|
934 |
+
"Please, upload the plugin manually."
|
935 |
+
msgstr ""
|
936 |
+
"Helaas heeft u het aantal beschikbare pogingen per dag overschreden. Gelieve "
|
937 |
+
"de plugin handmatig te uploaden."
|
938 |
+
|
939 |
+
#: class-bws-settings.php:736 deprecated.php:694
|
940 |
+
#, php-format
|
941 |
+
msgid "Start Your Free %s-Day Trial Now"
|
942 |
+
msgstr "Start nu uw gratis %s dag trial"
|
943 |
+
|
944 |
+
#: class-bws-settings.php:751
|
945 |
+
msgid ""
|
946 |
+
"If necessary, you can check if the license key is correct or reenter it in "
|
947 |
+
"the field below."
|
948 |
+
msgstr ""
|
949 |
+
"Indien nodig kunt u controleren of de licentiesleutel juist is of u voert "
|
950 |
+
"het opnieuw in het onderstaande veld."
|
951 |
+
|
952 |
+
#: class-bws-settings.php:756
|
953 |
+
msgid "Manage License Settings"
|
954 |
+
msgstr "Beheer licentie instellingen"
|
955 |
+
|
956 |
+
#: class-bws-settings.php:758
|
957 |
+
msgid "Login to Client Area"
|
958 |
+
msgstr "Inloggen op client gebied"
|
959 |
+
|
960 |
+
#: class-bws-settings.php:760
|
961 |
+
msgid ""
|
962 |
+
"Manage active licenses, download BWS products, and view your payment history "
|
963 |
+
"using BestWebSoft Client Area."
|
964 |
+
msgstr ""
|
965 |
+
"Beheer actieve licenties, download BWS-producten en bekijk uw de "
|
966 |
+
"betalingsgeschiedenis met behulp van de BestWebSoft Klanten Omgeving."
|
967 |
+
|
968 |
+
#: class-bws-settings.php:815 class-bws-settings.php:918 deprecated.php:141
|
969 |
+
#: deprecated.php:360
|
970 |
+
msgid "This license key is bound to another site."
|
971 |
+
msgstr "Deze licentiesleutel is gebonden aan een andere website."
|
972 |
+
|
973 |
+
#: class-bws-settings.php:817 deprecated.php:143
|
974 |
+
msgid ""
|
975 |
+
"This license key is valid, but Your license has expired. If you want to "
|
976 |
+
"update our plugin in future, you should extend the license."
|
977 |
+
msgstr ""
|
978 |
+
"Deze licentiesleutel is geldig, maar uw licentie is verlopen. Als u onze "
|
979 |
+
"plugin in de toekomst wilt bijwerken, moet u de licentie verlengen."
|
980 |
+
|
981 |
+
#: class-bws-settings.php:819 deprecated.php:145
|
982 |
+
msgid "Unfortunately, you have exceeded the number of available tries."
|
983 |
+
msgstr "Helaas heeft u het aantal beschikbare pogingen overschreden."
|
984 |
+
|
985 |
+
#: class-bws-settings.php:821 deprecated.php:147
|
986 |
+
msgid ""
|
987 |
+
"Unfortunately, the Pro Trial licence was already installed to this domain. "
|
988 |
+
"The Pro Trial license can be installed only once."
|
989 |
+
msgstr ""
|
990 |
+
"Helaas, de Pro Trial licentie was al geïnstalleerd op dit domein. De Pro "
|
991 |
+
"Trial License kan helaas maar eenmalig gebruikt worden."
|
992 |
+
|
993 |
+
#: class-bws-settings.php:826 deprecated.php:151
|
994 |
+
msgid "The Pro Trial license key is valid."
|
995 |
+
msgstr "De Pro Trial licentiesleutel is geldig."
|
996 |
+
|
997 |
+
#: class-bws-settings.php:834 deprecated.php:159 deprecated.php:246
|
998 |
+
#, php-format
|
999 |
+
msgid ""
|
1000 |
+
"In order to continue using the plugin it is necessary to buy a %s license."
|
1001 |
+
msgstr ""
|
1002 |
+
"Om door te gaan met de plugin is het nodig om een %s licentie te kopen."
|
1003 |
+
|
1004 |
+
#: class-bws-settings.php:1031 deprecated.php:463
|
1005 |
+
msgid "Please, enter Your license key"
|
1006 |
+
msgstr "Vul alstublieft uw licentiesleutel in"
|
1007 |
+
|
1008 |
+
#: class-bws-settings.php:1043
|
1009 |
+
msgid "Need Help?"
|
1010 |
+
msgstr "Hulp nodig?"
|
1011 |
+
|
1012 |
+
#: class-bws-settings.php:1045
|
1013 |
+
msgid "Read the Instruction"
|
1014 |
+
msgstr "Lees de instructie"
|
1015 |
+
|
1016 |
+
#: class-bws-settings.php:1049
|
1017 |
+
msgid "Watch the Video"
|
1018 |
+
msgstr "Bekijk de Video"
|
1019 |
+
|
1020 |
+
#: class-bws-settings.php:1060
|
1021 |
+
msgid "Start Your Free Trial"
|
1022 |
+
msgstr "Begin uw gratis proefperiode"
|
1023 |
+
|
1024 |
+
#: deprecated.php:93
|
1025 |
+
msgid "System Status"
|
1026 |
+
msgstr "Systeem status"
|
1027 |
+
|
1028 |
+
#: deprecated.php:204
|
1029 |
+
msgid "Please, enter your license key"
|
1030 |
+
msgstr "Vul alstublieft uw licentiesleutel in"
|
1031 |
+
|
1032 |
+
#: deprecated.php:223
|
1033 |
+
msgid ""
|
1034 |
+
"If necessary, you can check if the license key is correct or reenter it in "
|
1035 |
+
"the field below. You can find your license key on your personal page - "
|
1036 |
+
"Client Area - on our website"
|
1037 |
+
msgstr ""
|
1038 |
+
"Indien nodig kunt u controleren of de licentiesleutel juist is of u voert "
|
1039 |
+
"het opnieuw in het onderstaande veld. U vindt uw licentiesleutel op uw "
|
1040 |
+
"persoonlijke omgeving - Klanten Omgeving - via onze website"
|
1041 |
+
|
1042 |
+
#: deprecated.php:223
|
1043 |
+
msgid ""
|
1044 |
+
"(your username is the email address specified during the purchase). If "
|
1045 |
+
"necessary, please submit \"Lost your password?\" request."
|
1046 |
+
msgstr ""
|
1047 |
+
"(Uw gebruikersnaam is het e-mailadres dat is opgegeven tijdens de aankoop). "
|
1048 |
+
"Indien nodig, verstuur alstublieft \"Verstuur uw wachtwoord?\" Verzoek."
|
1049 |
+
|
1050 |
+
#: deprecated.php:247
|
1051 |
+
msgid "After that, you can activate it by entering your license key."
|
1052 |
+
msgstr "Daarna kunt u activeren door uw licentiesleutel in te voeren."
|
1053 |
+
|
1054 |
+
#: deprecated.php:249 deprecated.php:688
|
1055 |
+
msgid "License key can be found in the"
|
1056 |
+
msgstr "Licentiesleutel is te vinden in de"
|
1057 |
+
|
1058 |
+
#: deprecated.php:251 deprecated.php:690
|
1059 |
+
msgid "(your username is the email address specified during the purchase)."
|
1060 |
+
msgstr ""
|
1061 |
+
"(Uw gebruikersnaam is het e-mailadres dat is opgegeven tijdens de aankoop)."
|
1062 |
+
|
1063 |
+
#: deprecated.php:278
|
1064 |
+
msgid ""
|
1065 |
+
"Congratulations! The Pro license of the plugin is activated successfully."
|
1066 |
+
msgstr ""
|
1067 |
+
"Hartelijk gefeliciteerd! De Pro-licentie van de plugin is succesvol "
|
1068 |
+
"geactiveerd."
|
1069 |
+
|
1070 |
+
#: deprecated.php:280 deprecated.php:669
|
1071 |
+
msgid "Please, go to"
|
1072 |
+
msgstr "Ga aub naar"
|
1073 |
+
|
1074 |
+
#: deprecated.php:280 deprecated.php:669
|
1075 |
+
msgid "the setting page"
|
1076 |
+
msgstr "de instellingen"
|
1077 |
+
|
1078 |
+
#: deprecated.php:281 deprecated.php:670
|
1079 |
+
msgid "You will be redirected automatically in 5 seconds."
|
1080 |
+
msgstr "U wordt na 5 seconden automatisch doorverwezen."
|
1081 |
+
|
1082 |
+
#: deprecated.php:315
|
1083 |
+
msgid "Check premium options on the plugin settings page!"
|
1084 |
+
msgstr "Controleer de premiumopties op de pagina met Plugin-instellingen!"
|
1085 |
+
|
1086 |
+
#: deprecated.php:478
|
1087 |
+
msgid "Restore all plugin settings to defaults"
|
1088 |
+
msgstr "Herstel alle plugin-instellingen naar de standaardinstellingen"
|
1089 |
+
|
1090 |
+
#: deprecated.php:480
|
1091 |
+
msgid "Restore settings"
|
1092 |
+
msgstr "Herstel instellingen"
|
1093 |
+
|
1094 |
+
#: deprecated.php:548 deprecated.php:575
|
1095 |
+
#, php-format
|
1096 |
+
msgid "File %s edited successfully."
|
1097 |
+
msgstr "Bestand %s is succesvol bewerkt"
|
1098 |
+
|
1099 |
+
#: deprecated.php:550 deprecated.php:577
|
1100 |
+
msgid "Not enough permissions to create or update the file"
|
1101 |
+
msgstr "Niet genoeg rechten om het bestand te maken of aan te passen"
|
1102 |
+
|
1103 |
+
#: deprecated.php:580
|
1104 |
+
msgid "Not enough permissions to create the file"
|
1105 |
+
msgstr "Niet genoeg rechten om het bestand te maken"
|
1106 |
+
|
1107 |
+
#: deprecated.php:624
|
1108 |
+
msgid "Editing"
|
1109 |
+
msgstr "Bewerken"
|
1110 |
+
|
1111 |
+
#: deprecated.php:667
|
1112 |
+
msgid ""
|
1113 |
+
"Congratulations! Pro version of the plugin is installed and activated "
|
1114 |
+
"successfully."
|
1115 |
+
msgstr ""
|
1116 |
+
"Hartelijk gefeliciteerd! De Pro-versie van de plugin is succesvol "
|
1117 |
+
"geïnstalleerd en geactiveerd."
|
1118 |
+
|
1119 |
+
#: deprecated.php:677
|
1120 |
+
msgid "Show Pro features"
|
1121 |
+
msgstr "Toon de Pro functies"
|
1122 |
+
|
1123 |
+
#: deprecated.php:684
|
1124 |
+
msgid "Enter your license key to install and activate"
|
1125 |
+
msgstr "Voer uw licentiesleutel in om te installeren en te activeren"
|
1126 |
+
|
1127 |
+
#: deprecated.php:686
|
1128 |
+
msgid "version of the plugin."
|
1129 |
+
msgstr "versie van de plugin."
|
1130 |
+
|
1131 |
+
#: product_list.php:7
|
1132 |
+
msgid "Admin Tools"
|
1133 |
+
msgstr ""
|
1134 |
+
|
1135 |
+
#: product_list.php:8
|
1136 |
+
msgid "Content"
|
1137 |
+
msgstr ""
|
1138 |
+
|
1139 |
+
#: product_list.php:9
|
1140 |
+
msgid "eCommerce"
|
1141 |
+
msgstr ""
|
1142 |
+
|
1143 |
+
#: product_list.php:10
|
1144 |
+
msgid "Marketing"
|
1145 |
+
msgstr ""
|
1146 |
+
|
1147 |
+
#: product_list.php:11
|
1148 |
+
msgid "Navigation"
|
1149 |
+
msgstr ""
|
1150 |
+
|
1151 |
+
#: product_list.php:12
|
1152 |
+
msgid "Recommended"
|
1153 |
+
msgstr "Aanbevolen"
|
1154 |
+
|
1155 |
+
#: product_list.php:13
|
1156 |
+
msgid "Security"
|
1157 |
+
msgstr "Veiligheid"
|
1158 |
+
|
1159 |
+
#: product_list.php:14
|
1160 |
+
msgid "SEO"
|
1161 |
+
msgstr ""
|
1162 |
+
|
1163 |
+
#: product_list.php:15
|
1164 |
+
msgid "SMM"
|
1165 |
+
msgstr ""
|
1166 |
+
|
1167 |
+
#: product_list.php:22
|
1168 |
+
msgid ""
|
1169 |
+
"Protect WordPress website forms from spam entries by means of math logic."
|
1170 |
+
msgstr ""
|
1171 |
+
|
1172 |
+
#: product_list.php:32
|
1173 |
+
msgid "Create your personal car rental/booking and reservation website."
|
1174 |
+
msgstr ""
|
1175 |
+
|
1176 |
+
#: product_list.php:42
|
1177 |
+
msgid ""
|
1178 |
+
"Allow customers to reach you using secure contact form plugin any website "
|
1179 |
+
"must have."
|
1180 |
+
msgstr ""
|
1181 |
+
|
1182 |
+
#: product_list.php:52
|
1183 |
+
msgid "Add unlimited number of contact forms to WordPress website."
|
1184 |
+
msgstr ""
|
1185 |
+
|
1186 |
+
#: product_list.php:62
|
1187 |
+
msgid "Save and manage Contact Form messages. Never lose important data."
|
1188 |
+
msgstr ""
|
1189 |
+
|
1190 |
+
#: product_list.php:72
|
1191 |
+
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1192 |
+
msgstr ""
|
1193 |
+
|
1194 |
+
#: product_list.php:79
|
1195 |
+
msgid "Add custom fields to WordPress website search results."
|
1196 |
+
msgstr ""
|
1197 |
+
|
1198 |
+
#: product_list.php:86
|
1199 |
+
msgid ""
|
1200 |
+
"Add custom post types and taxonomies to WordPress website search results."
|
1201 |
+
msgstr ""
|
1202 |
+
|
1203 |
+
#: product_list.php:96
|
1204 |
+
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1205 |
+
msgstr ""
|
1206 |
+
|
1207 |
+
#: product_list.php:103
|
1208 |
+
msgid ""
|
1209 |
+
"Automatically add outgoing email messages to queue instead of sending them "
|
1210 |
+
"immediately."
|
1211 |
+
msgstr ""
|
1212 |
+
|
1213 |
+
#: product_list.php:110
|
1214 |
+
msgid ""
|
1215 |
+
"Get latest error log messages to diagnose website problems. Define and fix "
|
1216 |
+
"issues faster."
|
1217 |
+
msgstr ""
|
1218 |
+
|
1219 |
+
#: product_list.php:117
|
1220 |
+
msgid ""
|
1221 |
+
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1222 |
+
"widgets."
|
1223 |
+
msgstr ""
|
1224 |
+
|
1225 |
+
#: product_list.php:127
|
1226 |
+
msgid ""
|
1227 |
+
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1228 |
+
"clicks."
|
1229 |
+
msgstr ""
|
1230 |
+
|
1231 |
+
#: product_list.php:137
|
1232 |
+
msgid ""
|
1233 |
+
"Add unlimited gallery categories. Organize images to make the navigation "
|
1234 |
+
"through content easier."
|
1235 |
+
msgstr ""
|
1236 |
+
|
1237 |
+
#: product_list.php:144
|
1238 |
+
msgid ""
|
1239 |
+
"Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
|
1240 |
+
"posts, pages and widgets."
|
1241 |
+
msgstr ""
|
1242 |
+
|
1243 |
+
#: product_list.php:154
|
1244 |
+
msgid ""
|
1245 |
+
"Stronger security solution which protects your WordPress website from hacks "
|
1246 |
+
"and unauthorized login attempts."
|
1247 |
+
msgstr ""
|
1248 |
+
|
1249 |
+
#: product_list.php:164
|
1250 |
+
msgid ""
|
1251 |
+
"Add Adsense ads to WordPress website pages, posts, custom posts, search "
|
1252 |
+
"results, categories, tags, and widgets."
|
1253 |
+
msgstr ""
|
1254 |
+
|
1255 |
+
#: product_list.php:174
|
1256 |
+
msgid "Add Google Analytics code to WordPress website and track basic stats."
|
1257 |
+
msgstr ""
|
1258 |
+
|
1259 |
+
#: product_list.php:184
|
1260 |
+
msgid ""
|
1261 |
+
"Protect WordPress website forms from spam entries with Google Captcha "
|
1262 |
+
"(reCaptcha)."
|
1263 |
+
msgstr ""
|
1264 |
+
|
1265 |
+
#: product_list.php:194
|
1266 |
+
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1267 |
+
msgstr ""
|
1268 |
+
|
1269 |
+
#: product_list.php:204
|
1270 |
+
msgid ""
|
1271 |
+
"Generate and add XML sitemap to WordPress website. Help search engines index "
|
1272 |
+
"your blog."
|
1273 |
+
msgstr ""
|
1274 |
+
|
1275 |
+
#: product_list.php:214
|
1276 |
+
msgid ""
|
1277 |
+
"Replace external WordPress website links with Google shortlinks and track "
|
1278 |
+
"click stats."
|
1279 |
+
msgstr ""
|
1280 |
+
|
1281 |
+
#: product_list.php:221
|
1282 |
+
msgid ""
|
1283 |
+
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1284 |
+
"hostnames, etc."
|
1285 |
+
msgstr ""
|
1286 |
+
|
1287 |
+
#: product_list.php:231
|
1288 |
+
msgid ""
|
1289 |
+
"Create your personal job board and listing WordPress website. Search jobs, "
|
1290 |
+
"submit CV/resumes, choose candidates."
|
1291 |
+
msgstr ""
|
1292 |
+
|
1293 |
+
#: product_list.php:238
|
1294 |
+
msgid ""
|
1295 |
+
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1296 |
+
"attempts."
|
1297 |
+
msgstr ""
|
1298 |
+
|
1299 |
+
#: product_list.php:248
|
1300 |
+
msgid ""
|
1301 |
+
"Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
|
1302 |
+
"5 plugins included – profile, insider, etc."
|
1303 |
+
msgstr ""
|
1304 |
+
|
1305 |
+
#: product_list.php:258
|
1306 |
+
msgid ""
|
1307 |
+
"Translate WordPress website content to other languages manually. Create "
|
1308 |
+
"multilingual pages, posts, widgets, menus, etc."
|
1309 |
+
msgstr ""
|
1310 |
+
|
1311 |
+
#: product_list.php:268
|
1312 |
+
msgid ""
|
1313 |
+
"Add customizable pagination to WordPress website. Split long content to "
|
1314 |
+
"multiple pages for better navigation."
|
1315 |
+
msgstr ""
|
1316 |
+
|
1317 |
+
#: product_list.php:278
|
1318 |
+
msgid ""
|
1319 |
+
"Generate PDF files and print WordPress posts/pages. Customize document "
|
1320 |
+
"header/footer styles and appearance."
|
1321 |
+
msgstr ""
|
1322 |
+
|
1323 |
+
#: product_list.php:288
|
1324 |
+
msgid ""
|
1325 |
+
"Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
|
1326 |
+
"Profile) to WordPress posts, pages and widgets."
|
1327 |
+
msgstr ""
|
1328 |
+
|
1329 |
+
#: product_list.php:298
|
1330 |
+
msgid ""
|
1331 |
+
"Create your personal portfolio WordPress website. Manage and showcase past "
|
1332 |
+
"projects to get more clients."
|
1333 |
+
msgstr ""
|
1334 |
+
|
1335 |
+
#: product_list.php:308
|
1336 |
+
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1337 |
+
msgstr ""
|
1338 |
+
|
1339 |
+
#: product_list.php:315
|
1340 |
+
msgid ""
|
1341 |
+
"Add extra fields to default WordPress user profile. The easiest way to "
|
1342 |
+
"create and manage additional custom values."
|
1343 |
+
msgstr ""
|
1344 |
+
|
1345 |
+
#: product_list.php:322
|
1346 |
+
msgid ""
|
1347 |
+
"Add and display HTML advertisement banner on WordPress website. Customize "
|
1348 |
+
"bar styles and appearance."
|
1349 |
+
msgstr ""
|
1350 |
+
|
1351 |
+
#: product_list.php:332
|
1352 |
+
msgid ""
|
1353 |
+
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1354 |
+
"widgets."
|
1355 |
+
msgstr ""
|
1356 |
+
|
1357 |
+
#: product_list.php:339
|
1358 |
+
msgid ""
|
1359 |
+
"Add rating plugin to your WordPress website to receive feedback from your "
|
1360 |
+
"customers."
|
1361 |
+
msgstr ""
|
1362 |
+
|
1363 |
+
#: product_list.php:346
|
1364 |
+
msgid ""
|
1365 |
+
"Create your personal real estate WordPress website. Sell, rent and buy "
|
1366 |
+
"properties. Add, search and browse listings easily."
|
1367 |
+
msgstr ""
|
1368 |
+
|
1369 |
+
#: product_list.php:356
|
1370 |
+
msgid ""
|
1371 |
+
"Attach, un-attach and re-attach media files quickly to WordPress posts and "
|
1372 |
+
"pages."
|
1373 |
+
msgstr ""
|
1374 |
+
|
1375 |
+
#: product_list.php:363
|
1376 |
+
msgid ""
|
1377 |
+
"Add related, featured, latest, and popular posts to your WordPress website. "
|
1378 |
+
"Connect your blog readers with a relevant content."
|
1379 |
+
msgstr ""
|
1380 |
+
|
1381 |
+
#: product_list.php:370
|
1382 |
+
msgid ""
|
1383 |
+
"Send bulk email messages to WordPress users. Custom templates, advanced "
|
1384 |
+
"settings and detailed reports."
|
1385 |
+
msgstr ""
|
1386 |
+
|
1387 |
+
#: product_list.php:380
|
1388 |
+
msgid ""
|
1389 |
+
"The best responsive slider plugin for your WordPress website. Create "
|
1390 |
+
"beautifully animated slides just in a few clicks."
|
1391 |
+
msgstr ""
|
1392 |
+
|
1393 |
+
#: product_list.php:387
|
1394 |
+
msgid ""
|
1395 |
+
"Configure SMTP server to receive email messages from WordPress to Gmail, "
|
1396 |
+
"Yahoo, Hotmail and other services."
|
1397 |
+
msgstr ""
|
1398 |
+
|
1399 |
+
#: product_list.php:394
|
1400 |
+
msgid ""
|
1401 |
+
"Add social media buttons and widgets to WordPress posts, pages and widgets. "
|
1402 |
+
"FB, Twitter, G+1, Pinterest, LinkedIn."
|
1403 |
+
msgstr ""
|
1404 |
+
|
1405 |
+
#: product_list.php:404
|
1406 |
+
msgid ""
|
1407 |
+
"Add social media login, registration, and commenting to your WordPress "
|
1408 |
+
"website."
|
1409 |
+
msgstr ""
|
1410 |
+
|
1411 |
+
#: product_list.php:411
|
1412 |
+
msgid ""
|
1413 |
+
"Add email newsletter sign up form to WordPress posts, pages and widgets. "
|
1414 |
+
"Collect data and subscribe your users."
|
1415 |
+
msgstr ""
|
1416 |
+
|
1417 |
+
#: product_list.php:421
|
1418 |
+
msgid ""
|
1419 |
+
"Add testimonials and feedbacks from your customers to WordPress website "
|
1420 |
+
"posts, pages, and widgets."
|
1421 |
+
msgstr ""
|
1422 |
+
|
1423 |
+
#: product_list.php:428
|
1424 |
+
msgid ""
|
1425 |
+
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1426 |
+
"attendance and generate reports."
|
1427 |
+
msgstr ""
|
1428 |
+
|
1429 |
+
#: product_list.php:438
|
1430 |
+
msgid ""
|
1431 |
+
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1432 |
+
"and pages."
|
1433 |
+
msgstr ""
|
1434 |
+
|
1435 |
+
#: product_list.php:448
|
1436 |
+
msgid ""
|
1437 |
+
"Automatically check and update WordPress website core with all installed "
|
1438 |
+
"plugins and themes to the latest versions."
|
1439 |
+
msgstr ""
|
1440 |
+
|
1441 |
+
#: product_list.php:458
|
1442 |
+
msgid ""
|
1443 |
+
"Powerful user role management plugin for WordPress website. Create, edit, "
|
1444 |
+
"copy, and delete user roles."
|
1445 |
+
msgstr ""
|
1446 |
+
|
1447 |
+
#: product_list.php:468
|
1448 |
+
msgid ""
|
1449 |
+
"Display live count of online visitors who are currently browsing your "
|
1450 |
+
"WordPress website."
|
1451 |
+
msgstr ""
|
1452 |
+
|
1453 |
+
#: product_list.php:478
|
1454 |
+
msgid ""
|
1455 |
+
"Backup and export Zendesk Help Center content automatically to your "
|
1456 |
+
"WordPress website database."
|
1457 |
+
msgstr ""
|
1458 |
+
|
1459 |
+
#~ msgid "Advertisement"
|
1460 |
+
#~ msgstr "Advertentie"
|
1461 |
+
|
1462 |
+
#~ msgid "Content & Media"
|
1463 |
+
#~ msgstr "Inhoud & Media"
|
1464 |
+
|
1465 |
+
#~ msgid "Management"
|
1466 |
+
#~ msgstr "Beheer"
|
1467 |
+
|
1468 |
+
#~ msgid "Site Stats"
|
1469 |
+
#~ msgstr "Website statistieken"
|
1470 |
+
|
1471 |
+
#~ msgid "Social"
|
1472 |
+
#~ msgstr "Sociaal"
|
1473 |
+
|
1474 |
+
#~ msgid "Utilities"
|
1475 |
+
#~ msgstr "Voorzieningen"
|
1476 |
+
|
1477 |
+
#~ msgid "Other"
|
1478 |
+
#~ msgstr "Anders"
|
bws_menu/languages/bestwebsoft-pl_PL.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-pl_PL.po
CHANGED
@@ -2,15 +2,15 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Damian Dąbrowski <contact@codester.pl>\n"
|
9 |
"Language: pl_PL\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.8.7.1\n"
|
@@ -51,7 +51,7 @@ msgstr ""
|
|
51 |
msgid "Need help?"
|
52 |
msgstr "Potrzebujesz pomocy?"
|
53 |
|
54 |
-
#: bws_functions.php:103 bws_functions.php:
|
55 |
msgid "Visit Help Center"
|
56 |
msgstr ""
|
57 |
|
@@ -152,7 +152,7 @@ msgid "Add New"
|
|
152 |
msgstr "Dodaj nowy"
|
153 |
|
154 |
#: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
|
155 |
-
#: bws_functions.php:378 bws_functions.php:
|
156 |
msgid "Close notice"
|
157 |
msgstr "Zamknij powiadomienie"
|
158 |
|
@@ -205,36 +205,36 @@ msgstr ""
|
|
205 |
"zostaniesz wówczas pozbawiony SZYBKIEGO DOSTĘDO DO SUPPORTU oraz "
|
206 |
"AKTUALIZACJI."
|
207 |
|
208 |
-
#: bws_functions.php:
|
209 |
#, php-format
|
210 |
msgid "Thank you for choosing %s plugin!"
|
211 |
msgstr ""
|
212 |
|
213 |
-
#: bws_functions.php:
|
214 |
msgid ""
|
215 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
216 |
"we'd love to hear about it!"
|
217 |
msgstr ""
|
218 |
|
219 |
-
#: bws_functions.php:
|
220 |
msgid "Suggest a Feature"
|
221 |
msgstr ""
|
222 |
|
223 |
-
#: bws_functions.php:
|
224 |
#: class-bws-settings.php:584 class-bws-settings.php:587
|
225 |
msgid "Notice"
|
226 |
msgstr "Uwaga"
|
227 |
|
228 |
-
#: bws_functions.php:
|
229 |
msgid "The plugin's settings have been changed."
|
230 |
msgstr "Ustawienia wtyczki zostały zmienione."
|
231 |
|
232 |
-
#: bws_functions.php:
|
233 |
#: deprecated.php:640
|
234 |
msgid "Save Changes"
|
235 |
msgstr "Zapisz zmiany"
|
236 |
|
237 |
-
#: bws_functions.php:
|
238 |
#, fuzzy
|
239 |
msgid ""
|
240 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
@@ -243,67 +243,75 @@ msgstr ""
|
|
243 |
"Zawsze możesz sprawdzić funkcje premium poprzez kliknięcie \"Pokaż funkcje "
|
244 |
"PRO\" w zakładce \"Go PRO\""
|
245 |
|
246 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
247 |
#, fuzzy
|
248 |
msgid "Add shortcode"
|
249 |
msgstr "Dodaj BWS Shortcode"
|
250 |
|
251 |
-
#: bws_functions.php:
|
252 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: bws_functions.php:
|
256 |
msgid "Close"
|
257 |
msgstr "Zamknij"
|
258 |
|
259 |
-
#: bws_functions.php:
|
260 |
#, fuzzy
|
261 |
msgid "Are you sure you want to restore default settings?"
|
262 |
msgstr ""
|
263 |
"Czy jesteś pewien, że chcesz przywrócić wszystkie ustawienia do wartości "
|
264 |
"domyślnych?"
|
265 |
|
266 |
-
#: bws_functions.php:
|
267 |
msgid "Yes, restore all settings"
|
268 |
msgstr "Tak, przywróć wszystkie ustawienia"
|
269 |
|
270 |
-
#: bws_functions.php:
|
271 |
msgid "No, go back to the settings page"
|
272 |
msgstr "Nie, wróć do ustawień"
|
273 |
|
274 |
-
#: bws_functions.php:
|
275 |
msgid "Plugin"
|
276 |
msgstr "Wtyczka"
|
277 |
|
278 |
-
#: bws_functions.php:
|
279 |
msgid "Shortcode settings"
|
280 |
msgstr "Ustawienia shortcode"
|
281 |
|
282 |
-
#: bws_functions.php:
|
283 |
msgid "The shortcode will be inserted"
|
284 |
msgstr "Shortcode zostanie umieszczony"
|
285 |
|
286 |
-
#: bws_functions.php:
|
287 |
msgid "Insert"
|
288 |
msgstr "Umieść"
|
289 |
|
290 |
-
#: bws_functions.php:
|
291 |
msgid "FAQ"
|
292 |
msgstr "FAQ"
|
293 |
|
294 |
-
#: bws_functions.php:
|
295 |
msgid "For more information:"
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: bws_functions.php:
|
299 |
msgid "Documentation"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: bws_functions.php:
|
303 |
msgid "Video Instructions"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: bws_functions.php:
|
307 |
#, fuzzy
|
308 |
msgid "Submit a Request"
|
309 |
msgstr "送信ボタン"
|
@@ -1148,42 +1156,337 @@ msgid "version of the plugin."
|
|
1148 |
msgstr "Oceń wtyczkę"
|
1149 |
|
1150 |
#: product_list.php:7
|
1151 |
-
msgid "
|
1152 |
msgstr ""
|
1153 |
|
1154 |
#: product_list.php:8
|
1155 |
-
msgid "Content
|
1156 |
msgstr ""
|
1157 |
|
1158 |
#: product_list.php:9
|
1159 |
-
msgid "
|
1160 |
msgstr ""
|
1161 |
|
1162 |
#: product_list.php:10
|
1163 |
-
msgid "
|
1164 |
-
msgstr "
|
1165 |
|
1166 |
#: product_list.php:11
|
1167 |
-
msgid "
|
1168 |
msgstr ""
|
1169 |
|
1170 |
#: product_list.php:12
|
1171 |
-
|
1172 |
-
|
1173 |
-
msgstr "Status systemu"
|
1174 |
|
1175 |
#: product_list.php:13
|
1176 |
-
msgid "
|
1177 |
msgstr ""
|
1178 |
|
1179 |
#: product_list.php:14
|
1180 |
-
msgid "
|
1181 |
msgstr ""
|
1182 |
|
1183 |
#: product_list.php:15
|
1184 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1185 |
msgstr ""
|
1186 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1187 |
#~ msgid "Thank you for installing"
|
1188 |
#~ msgstr "Dziękujemy za instalację"
|
1189 |
|
@@ -1274,9 +1577,6 @@ msgstr ""
|
|
1274 |
#~ msgid "Preview"
|
1275 |
#~ msgstr "Podgląd"
|
1276 |
|
1277 |
-
#~ msgid "Add BWS Plugins Shortcode"
|
1278 |
-
#~ msgstr "Dodaj BWS Shortcode"
|
1279 |
-
|
1280 |
#~ msgid "Activated plugins"
|
1281 |
#~ msgstr "有効なプラグイン"
|
1282 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-06-08 15:43+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-06-08 15:43+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: Damian Dąbrowski <contact@codester.pl>\n"
|
9 |
"Language: pl_PL\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Generator: Poedit 1.8.7.1\n"
|
51 |
msgid "Need help?"
|
52 |
msgstr "Potrzebujesz pomocy?"
|
53 |
|
54 |
+
#: bws_functions.php:103 bws_functions.php:907 class-bws-settings.php:1047
|
55 |
msgid "Visit Help Center"
|
56 |
msgstr ""
|
57 |
|
152 |
msgstr "Dodaj nowy"
|
153 |
|
154 |
#: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
|
155 |
+
#: bws_functions.php:378 bws_functions.php:480
|
156 |
msgid "Close notice"
|
157 |
msgstr "Zamknij powiadomienie"
|
158 |
|
205 |
"zostaniesz wówczas pozbawiony SZYBKIEGO DOSTĘDO DO SUPPORTU oraz "
|
206 |
"AKTUALIZACJI."
|
207 |
|
208 |
+
#: bws_functions.php:475
|
209 |
#, php-format
|
210 |
msgid "Thank you for choosing %s plugin!"
|
211 |
msgstr ""
|
212 |
|
213 |
+
#: bws_functions.php:476
|
214 |
msgid ""
|
215 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
216 |
"we'd love to hear about it!"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: bws_functions.php:477
|
220 |
msgid "Suggest a Feature"
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: bws_functions.php:493 class-bws-settings.php:533 class-bws-settings.php:536
|
224 |
#: class-bws-settings.php:584 class-bws-settings.php:587
|
225 |
msgid "Notice"
|
226 |
msgstr "Uwaga"
|
227 |
|
228 |
+
#: bws_functions.php:493
|
229 |
msgid "The plugin's settings have been changed."
|
230 |
msgstr "Ustawienia wtyczki zostały zmienione."
|
231 |
|
232 |
+
#: bws_functions.php:494 class-bws-settings.php:182 class-bws-settings.php:202
|
233 |
#: deprecated.php:640
|
234 |
msgid "Save Changes"
|
235 |
msgstr "Zapisz zmiany"
|
236 |
|
237 |
+
#: bws_functions.php:508
|
238 |
#, fuzzy
|
239 |
msgid ""
|
240 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
243 |
"Zawsze możesz sprawdzić funkcje premium poprzez kliknięcie \"Pokaż funkcje "
|
244 |
"PRO\" w zakładce \"Go PRO\""
|
245 |
|
246 |
+
#: bws_functions.php:629
|
247 |
+
msgid "Add BWS Shortcode"
|
248 |
+
msgstr ""
|
249 |
+
|
250 |
+
#: bws_functions.php:630
|
251 |
+
msgid "Add BWS Plugins Shortcode"
|
252 |
+
msgstr "Dodaj BWS Shortcode"
|
253 |
+
|
254 |
+
#: bws_functions.php:649
|
255 |
#, fuzzy
|
256 |
msgid "Add shortcode"
|
257 |
msgstr "Dodaj BWS Shortcode"
|
258 |
|
259 |
+
#: bws_functions.php:649
|
260 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: bws_functions.php:695
|
264 |
msgid "Close"
|
265 |
msgstr "Zamknij"
|
266 |
|
267 |
+
#: bws_functions.php:787
|
268 |
#, fuzzy
|
269 |
msgid "Are you sure you want to restore default settings?"
|
270 |
msgstr ""
|
271 |
"Czy jesteś pewien, że chcesz przywrócić wszystkie ustawienia do wartości "
|
272 |
"domyślnych?"
|
273 |
|
274 |
+
#: bws_functions.php:790
|
275 |
msgid "Yes, restore all settings"
|
276 |
msgstr "Tak, przywróć wszystkie ustawienia"
|
277 |
|
278 |
+
#: bws_functions.php:791
|
279 |
msgid "No, go back to the settings page"
|
280 |
msgstr "Nie, wróć do ustawień"
|
281 |
|
282 |
+
#: bws_functions.php:833
|
283 |
msgid "Plugin"
|
284 |
msgstr "Wtyczka"
|
285 |
|
286 |
+
#: bws_functions.php:842
|
287 |
msgid "Shortcode settings"
|
288 |
msgstr "Ustawienia shortcode"
|
289 |
|
290 |
+
#: bws_functions.php:847
|
291 |
msgid "The shortcode will be inserted"
|
292 |
msgstr "Shortcode zostanie umieszczony"
|
293 |
|
294 |
+
#: bws_functions.php:852
|
295 |
msgid "Insert"
|
296 |
msgstr "Umieść"
|
297 |
|
298 |
+
#: bws_functions.php:912
|
299 |
msgid "FAQ"
|
300 |
msgstr "FAQ"
|
301 |
|
302 |
+
#: bws_functions.php:918
|
303 |
msgid "For more information:"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: bws_functions.php:919
|
307 |
msgid "Documentation"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: bws_functions.php:920
|
311 |
msgid "Video Instructions"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: bws_functions.php:921
|
315 |
#, fuzzy
|
316 |
msgid "Submit a Request"
|
317 |
msgstr "送信ボタン"
|
1156 |
msgstr "Oceń wtyczkę"
|
1157 |
|
1158 |
#: product_list.php:7
|
1159 |
+
msgid "Admin Tools"
|
1160 |
msgstr ""
|
1161 |
|
1162 |
#: product_list.php:8
|
1163 |
+
msgid "Content"
|
1164 |
msgstr ""
|
1165 |
|
1166 |
#: product_list.php:9
|
1167 |
+
msgid "eCommerce"
|
1168 |
msgstr ""
|
1169 |
|
1170 |
#: product_list.php:10
|
1171 |
+
msgid "Marketing"
|
1172 |
+
msgstr ""
|
1173 |
|
1174 |
#: product_list.php:11
|
1175 |
+
msgid "Navigation"
|
1176 |
msgstr ""
|
1177 |
|
1178 |
#: product_list.php:12
|
1179 |
+
msgid "Recommended"
|
1180 |
+
msgstr "Polecane"
|
|
|
1181 |
|
1182 |
#: product_list.php:13
|
1183 |
+
msgid "Security"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
#: product_list.php:14
|
1187 |
+
msgid "SEO"
|
1188 |
msgstr ""
|
1189 |
|
1190 |
#: product_list.php:15
|
1191 |
+
msgid "SMM"
|
1192 |
+
msgstr ""
|
1193 |
+
|
1194 |
+
#: product_list.php:22
|
1195 |
+
msgid ""
|
1196 |
+
"Protect WordPress website forms from spam entries by means of math logic."
|
1197 |
+
msgstr ""
|
1198 |
+
|
1199 |
+
#: product_list.php:32
|
1200 |
+
msgid "Create your personal car rental/booking and reservation website."
|
1201 |
+
msgstr ""
|
1202 |
+
|
1203 |
+
#: product_list.php:42
|
1204 |
+
msgid ""
|
1205 |
+
"Allow customers to reach you using secure contact form plugin any website "
|
1206 |
+
"must have."
|
1207 |
+
msgstr ""
|
1208 |
+
|
1209 |
+
#: product_list.php:52
|
1210 |
+
msgid "Add unlimited number of contact forms to WordPress website."
|
1211 |
+
msgstr ""
|
1212 |
+
|
1213 |
+
#: product_list.php:62
|
1214 |
+
msgid "Save and manage Contact Form messages. Never lose important data."
|
1215 |
+
msgstr ""
|
1216 |
+
|
1217 |
+
#: product_list.php:72
|
1218 |
+
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1219 |
+
msgstr ""
|
1220 |
+
|
1221 |
+
#: product_list.php:79
|
1222 |
+
msgid "Add custom fields to WordPress website search results."
|
1223 |
+
msgstr ""
|
1224 |
+
|
1225 |
+
#: product_list.php:86
|
1226 |
+
msgid ""
|
1227 |
+
"Add custom post types and taxonomies to WordPress website search results."
|
1228 |
+
msgstr ""
|
1229 |
+
|
1230 |
+
#: product_list.php:96
|
1231 |
+
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1232 |
+
msgstr ""
|
1233 |
+
|
1234 |
+
#: product_list.php:103
|
1235 |
+
msgid ""
|
1236 |
+
"Automatically add outgoing email messages to queue instead of sending them "
|
1237 |
+
"immediately."
|
1238 |
msgstr ""
|
1239 |
|
1240 |
+
#: product_list.php:110
|
1241 |
+
msgid ""
|
1242 |
+
"Get latest error log messages to diagnose website problems. Define and fix "
|
1243 |
+
"issues faster."
|
1244 |
+
msgstr ""
|
1245 |
+
|
1246 |
+
#: product_list.php:117
|
1247 |
+
msgid ""
|
1248 |
+
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1249 |
+
"widgets."
|
1250 |
+
msgstr ""
|
1251 |
+
|
1252 |
+
#: product_list.php:127
|
1253 |
+
msgid ""
|
1254 |
+
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1255 |
+
"clicks."
|
1256 |
+
msgstr ""
|
1257 |
+
|
1258 |
+
#: product_list.php:137
|
1259 |
+
msgid ""
|
1260 |
+
"Add unlimited gallery categories. Organize images to make the navigation "
|
1261 |
+
"through content easier."
|
1262 |
+
msgstr ""
|
1263 |
+
|
1264 |
+
#: product_list.php:144
|
1265 |
+
msgid ""
|
1266 |
+
"Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
|
1267 |
+
"posts, pages and widgets."
|
1268 |
+
msgstr ""
|
1269 |
+
|
1270 |
+
#: product_list.php:154
|
1271 |
+
msgid ""
|
1272 |
+
"Stronger security solution which protects your WordPress website from hacks "
|
1273 |
+
"and unauthorized login attempts."
|
1274 |
+
msgstr ""
|
1275 |
+
|
1276 |
+
#: product_list.php:164
|
1277 |
+
msgid ""
|
1278 |
+
"Add Adsense ads to WordPress website pages, posts, custom posts, search "
|
1279 |
+
"results, categories, tags, and widgets."
|
1280 |
+
msgstr ""
|
1281 |
+
|
1282 |
+
#: product_list.php:174
|
1283 |
+
msgid "Add Google Analytics code to WordPress website and track basic stats."
|
1284 |
+
msgstr ""
|
1285 |
+
|
1286 |
+
#: product_list.php:184
|
1287 |
+
msgid ""
|
1288 |
+
"Protect WordPress website forms from spam entries with Google Captcha "
|
1289 |
+
"(reCaptcha)."
|
1290 |
+
msgstr ""
|
1291 |
+
|
1292 |
+
#: product_list.php:194
|
1293 |
+
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1294 |
+
msgstr ""
|
1295 |
+
|
1296 |
+
#: product_list.php:204
|
1297 |
+
msgid ""
|
1298 |
+
"Generate and add XML sitemap to WordPress website. Help search engines index "
|
1299 |
+
"your blog."
|
1300 |
+
msgstr ""
|
1301 |
+
|
1302 |
+
#: product_list.php:214
|
1303 |
+
msgid ""
|
1304 |
+
"Replace external WordPress website links with Google shortlinks and track "
|
1305 |
+
"click stats."
|
1306 |
+
msgstr ""
|
1307 |
+
|
1308 |
+
#: product_list.php:221
|
1309 |
+
msgid ""
|
1310 |
+
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1311 |
+
"hostnames, etc."
|
1312 |
+
msgstr ""
|
1313 |
+
|
1314 |
+
#: product_list.php:231
|
1315 |
+
msgid ""
|
1316 |
+
"Create your personal job board and listing WordPress website. Search jobs, "
|
1317 |
+
"submit CV/resumes, choose candidates."
|
1318 |
+
msgstr ""
|
1319 |
+
|
1320 |
+
#: product_list.php:238
|
1321 |
+
msgid ""
|
1322 |
+
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1323 |
+
"attempts."
|
1324 |
+
msgstr ""
|
1325 |
+
|
1326 |
+
#: product_list.php:248
|
1327 |
+
msgid ""
|
1328 |
+
"Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
|
1329 |
+
"5 plugins included – profile, insider, etc."
|
1330 |
+
msgstr ""
|
1331 |
+
|
1332 |
+
#: product_list.php:258
|
1333 |
+
msgid ""
|
1334 |
+
"Translate WordPress website content to other languages manually. Create "
|
1335 |
+
"multilingual pages, posts, widgets, menus, etc."
|
1336 |
+
msgstr ""
|
1337 |
+
|
1338 |
+
#: product_list.php:268
|
1339 |
+
msgid ""
|
1340 |
+
"Add customizable pagination to WordPress website. Split long content to "
|
1341 |
+
"multiple pages for better navigation."
|
1342 |
+
msgstr ""
|
1343 |
+
|
1344 |
+
#: product_list.php:278
|
1345 |
+
msgid ""
|
1346 |
+
"Generate PDF files and print WordPress posts/pages. Customize document "
|
1347 |
+
"header/footer styles and appearance."
|
1348 |
+
msgstr ""
|
1349 |
+
|
1350 |
+
#: product_list.php:288
|
1351 |
+
msgid ""
|
1352 |
+
"Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
|
1353 |
+
"Profile) to WordPress posts, pages and widgets."
|
1354 |
+
msgstr ""
|
1355 |
+
|
1356 |
+
#: product_list.php:298
|
1357 |
+
msgid ""
|
1358 |
+
"Create your personal portfolio WordPress website. Manage and showcase past "
|
1359 |
+
"projects to get more clients."
|
1360 |
+
msgstr ""
|
1361 |
+
|
1362 |
+
#: product_list.php:308
|
1363 |
+
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1364 |
+
msgstr ""
|
1365 |
+
|
1366 |
+
#: product_list.php:315
|
1367 |
+
msgid ""
|
1368 |
+
"Add extra fields to default WordPress user profile. The easiest way to "
|
1369 |
+
"create and manage additional custom values."
|
1370 |
+
msgstr ""
|
1371 |
+
|
1372 |
+
#: product_list.php:322
|
1373 |
+
msgid ""
|
1374 |
+
"Add and display HTML advertisement banner on WordPress website. Customize "
|
1375 |
+
"bar styles and appearance."
|
1376 |
+
msgstr ""
|
1377 |
+
|
1378 |
+
#: product_list.php:332
|
1379 |
+
msgid ""
|
1380 |
+
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1381 |
+
"widgets."
|
1382 |
+
msgstr ""
|
1383 |
+
|
1384 |
+
#: product_list.php:339
|
1385 |
+
msgid ""
|
1386 |
+
"Add rating plugin to your WordPress website to receive feedback from your "
|
1387 |
+
"customers."
|
1388 |
+
msgstr ""
|
1389 |
+
|
1390 |
+
#: product_list.php:346
|
1391 |
+
msgid ""
|
1392 |
+
"Create your personal real estate WordPress website. Sell, rent and buy "
|
1393 |
+
"properties. Add, search and browse listings easily."
|
1394 |
+
msgstr ""
|
1395 |
+
|
1396 |
+
#: product_list.php:356
|
1397 |
+
msgid ""
|
1398 |
+
"Attach, un-attach and re-attach media files quickly to WordPress posts and "
|
1399 |
+
"pages."
|
1400 |
+
msgstr ""
|
1401 |
+
|
1402 |
+
#: product_list.php:363
|
1403 |
+
msgid ""
|
1404 |
+
"Add related, featured, latest, and popular posts to your WordPress website. "
|
1405 |
+
"Connect your blog readers with a relevant content."
|
1406 |
+
msgstr ""
|
1407 |
+
|
1408 |
+
#: product_list.php:370
|
1409 |
+
msgid ""
|
1410 |
+
"Send bulk email messages to WordPress users. Custom templates, advanced "
|
1411 |
+
"settings and detailed reports."
|
1412 |
+
msgstr ""
|
1413 |
+
|
1414 |
+
#: product_list.php:380
|
1415 |
+
msgid ""
|
1416 |
+
"The best responsive slider plugin for your WordPress website. Create "
|
1417 |
+
"beautifully animated slides just in a few clicks."
|
1418 |
+
msgstr ""
|
1419 |
+
|
1420 |
+
#: product_list.php:387
|
1421 |
+
msgid ""
|
1422 |
+
"Configure SMTP server to receive email messages from WordPress to Gmail, "
|
1423 |
+
"Yahoo, Hotmail and other services."
|
1424 |
+
msgstr ""
|
1425 |
+
|
1426 |
+
#: product_list.php:394
|
1427 |
+
msgid ""
|
1428 |
+
"Add social media buttons and widgets to WordPress posts, pages and widgets. "
|
1429 |
+
"FB, Twitter, G+1, Pinterest, LinkedIn."
|
1430 |
+
msgstr ""
|
1431 |
+
|
1432 |
+
#: product_list.php:404
|
1433 |
+
msgid ""
|
1434 |
+
"Add social media login, registration, and commenting to your WordPress "
|
1435 |
+
"website."
|
1436 |
+
msgstr ""
|
1437 |
+
|
1438 |
+
#: product_list.php:411
|
1439 |
+
msgid ""
|
1440 |
+
"Add email newsletter sign up form to WordPress posts, pages and widgets. "
|
1441 |
+
"Collect data and subscribe your users."
|
1442 |
+
msgstr ""
|
1443 |
+
|
1444 |
+
#: product_list.php:421
|
1445 |
+
msgid ""
|
1446 |
+
"Add testimonials and feedbacks from your customers to WordPress website "
|
1447 |
+
"posts, pages, and widgets."
|
1448 |
+
msgstr ""
|
1449 |
+
|
1450 |
+
#: product_list.php:428
|
1451 |
+
msgid ""
|
1452 |
+
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1453 |
+
"attendance and generate reports."
|
1454 |
+
msgstr ""
|
1455 |
+
|
1456 |
+
#: product_list.php:438
|
1457 |
+
msgid ""
|
1458 |
+
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1459 |
+
"and pages."
|
1460 |
+
msgstr ""
|
1461 |
+
|
1462 |
+
#: product_list.php:448
|
1463 |
+
msgid ""
|
1464 |
+
"Automatically check and update WordPress website core with all installed "
|
1465 |
+
"plugins and themes to the latest versions."
|
1466 |
+
msgstr ""
|
1467 |
+
|
1468 |
+
#: product_list.php:458
|
1469 |
+
msgid ""
|
1470 |
+
"Powerful user role management plugin for WordPress website. Create, edit, "
|
1471 |
+
"copy, and delete user roles."
|
1472 |
+
msgstr ""
|
1473 |
+
|
1474 |
+
#: product_list.php:468
|
1475 |
+
msgid ""
|
1476 |
+
"Display live count of online visitors who are currently browsing your "
|
1477 |
+
"WordPress website."
|
1478 |
+
msgstr ""
|
1479 |
+
|
1480 |
+
#: product_list.php:478
|
1481 |
+
msgid ""
|
1482 |
+
"Backup and export Zendesk Help Center content automatically to your "
|
1483 |
+
"WordPress website database."
|
1484 |
+
msgstr ""
|
1485 |
+
|
1486 |
+
#, fuzzy
|
1487 |
+
#~ msgid "Site Stats"
|
1488 |
+
#~ msgstr "Status systemu"
|
1489 |
+
|
1490 |
#~ msgid "Thank you for installing"
|
1491 |
#~ msgstr "Dziękujemy za instalację"
|
1492 |
|
1577 |
#~ msgid "Preview"
|
1578 |
#~ msgstr "Podgląd"
|
1579 |
|
|
|
|
|
|
|
1580 |
#~ msgid "Activated plugins"
|
1581 |
#~ msgstr "有効なプラグイン"
|
1582 |
|
bws_menu/languages/bestwebsoft-ru_RU.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-ru_RU.po
CHANGED
@@ -2,17 +2,17 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-03
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
-
"X-Poedit-SourceCharset:
|
16 |
"X-Generator: Poedit 1.8.7.1\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
@@ -48,7 +48,7 @@ msgstr "Оценить"
|
|
48 |
msgid "Need help?"
|
49 |
msgstr "Нужна помощь?"
|
50 |
|
51 |
-
#: bws_functions.php:103 bws_functions.php:
|
52 |
msgid "Visit Help Center"
|
53 |
msgstr "Перейти в Help Center"
|
54 |
|
@@ -147,7 +147,7 @@ msgid "Add New"
|
|
147 |
msgstr "Добавить"
|
148 |
|
149 |
#: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
|
150 |
-
#: bws_functions.php:378 bws_functions.php:
|
151 |
msgid "Close notice"
|
152 |
msgstr "Закрыть"
|
153 |
|
@@ -199,12 +199,12 @@ msgstr ""
|
|
199 |
"Ваш лицензионный ключ для %s истекает %s и вы не будете получать "
|
200 |
"приоритетную тех.поддержку или обновления."
|
201 |
|
202 |
-
#: bws_functions.php:
|
203 |
#, php-format
|
204 |
msgid "Thank you for choosing %s plugin!"
|
205 |
msgstr "Спасибо за выбор плагина %s!"
|
206 |
|
207 |
-
#: bws_functions.php:
|
208 |
msgid ""
|
209 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
210 |
"we'd love to hear about it!"
|
@@ -213,25 +213,25 @@ msgstr ""
|
|
213 |
"функционала плагина, пожалуйста, присылайте их нам! Мы вседа открыты для "
|
214 |
"новых идей!"
|
215 |
|
216 |
-
#: bws_functions.php:
|
217 |
msgid "Suggest a Feature"
|
218 |
msgstr "Предложить функционал"
|
219 |
|
220 |
-
#: bws_functions.php:
|
221 |
#: class-bws-settings.php:584 class-bws-settings.php:587
|
222 |
msgid "Notice"
|
223 |
msgstr "Внимание"
|
224 |
|
225 |
-
#: bws_functions.php:
|
226 |
msgid "The plugin's settings have been changed."
|
227 |
msgstr "Настройки плагина были изменены"
|
228 |
|
229 |
-
#: bws_functions.php:
|
230 |
#: deprecated.php:640
|
231 |
msgid "Save Changes"
|
232 |
msgstr "Сохранить изменения"
|
233 |
|
234 |
-
#: bws_functions.php:
|
235 |
msgid ""
|
236 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
237 |
"the \"Misc\" tab."
|
@@ -239,65 +239,73 @@ msgstr ""
|
|
239 |
"Вы всегда можете просмотреть премиум опции нажав на кнопку \"Pro опции\" на "
|
240 |
"вкладке \"Разное\"."
|
241 |
|
242 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
243 |
msgid "Add shortcode"
|
244 |
msgstr "Добавить шорткод"
|
245 |
|
246 |
-
#: bws_functions.php:
|
247 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
248 |
msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
|
249 |
|
250 |
-
#: bws_functions.php:
|
251 |
msgid "Close"
|
252 |
msgstr "Закрыть"
|
253 |
|
254 |
-
#: bws_functions.php:
|
255 |
msgid "Are you sure you want to restore default settings?"
|
256 |
msgstr ""
|
257 |
"Вы уверены что хотите восстановить все настройки плагина к настройкам по "
|
258 |
"умолчанию?"
|
259 |
|
260 |
-
#: bws_functions.php:
|
261 |
msgid "Yes, restore all settings"
|
262 |
msgstr "Да, восстановить все настройки"
|
263 |
|
264 |
-
#: bws_functions.php:
|
265 |
msgid "No, go back to the settings page"
|
266 |
msgstr "Нет, вернуться на страницу настроек"
|
267 |
|
268 |
-
#: bws_functions.php:
|
269 |
msgid "Plugin"
|
270 |
msgstr "Плагин"
|
271 |
|
272 |
-
#: bws_functions.php:
|
273 |
msgid "Shortcode settings"
|
274 |
msgstr "Настройки шорткода"
|
275 |
|
276 |
-
#: bws_functions.php:
|
277 |
msgid "The shortcode will be inserted"
|
278 |
msgstr "Будет вставлен шорткод"
|
279 |
|
280 |
-
#: bws_functions.php:
|
281 |
msgid "Insert"
|
282 |
msgstr "Вставить"
|
283 |
|
284 |
-
#: bws_functions.php:
|
285 |
msgid "FAQ"
|
286 |
msgstr "FAQ"
|
287 |
|
288 |
-
#: bws_functions.php:
|
289 |
msgid "For more information:"
|
290 |
msgstr "Для дополнительной информации:"
|
291 |
|
292 |
-
#: bws_functions.php:
|
293 |
msgid "Documentation"
|
294 |
msgstr "Документация"
|
295 |
|
296 |
-
#: bws_functions.php:
|
297 |
msgid "Video Instructions"
|
298 |
msgstr "Видео инструкции"
|
299 |
|
300 |
-
#: bws_functions.php:
|
301 |
msgid "Submit a Request"
|
302 |
msgstr "Отправить запрос"
|
303 |
|
@@ -560,7 +568,7 @@ msgstr "Управление купленными лицензиями и под
|
|
560 |
#: bws_menu.php:326
|
561 |
#, php-format
|
562 |
msgid "Get Access to %s+ Premium Plugins"
|
563 |
-
msgstr "Получить
|
564 |
|
565 |
#: bws_menu.php:328
|
566 |
msgid "Subscribe to Pro Membership"
|
@@ -703,7 +711,7 @@ msgstr "Установить"
|
|
703 |
|
704 |
#: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
|
705 |
msgid "Upgrade to Pro"
|
706 |
-
msgstr "
|
707 |
|
708 |
#: bws_menu.php:563 bws_menu.php:572
|
709 |
msgid "Activate this plugin"
|
@@ -1109,40 +1117,502 @@ msgid "version of the plugin."
|
|
1109 |
msgstr "версия плагина."
|
1110 |
|
1111 |
#: product_list.php:7
|
1112 |
-
msgid "
|
1113 |
-
msgstr "
|
1114 |
|
1115 |
#: product_list.php:8
|
1116 |
-
msgid "Content
|
1117 |
-
msgstr "
|
1118 |
|
1119 |
#: product_list.php:9
|
1120 |
-
msgid "
|
1121 |
-
msgstr "
|
1122 |
|
1123 |
#: product_list.php:10
|
1124 |
-
msgid "
|
1125 |
-
msgstr "
|
1126 |
|
1127 |
#: product_list.php:11
|
1128 |
-
msgid "
|
1129 |
-
msgstr "
|
1130 |
|
1131 |
#: product_list.php:12
|
1132 |
-
msgid "
|
1133 |
-
msgstr "
|
1134 |
|
1135 |
#: product_list.php:13
|
1136 |
-
msgid "
|
1137 |
-
msgstr "
|
1138 |
|
1139 |
#: product_list.php:14
|
1140 |
-
msgid "
|
1141 |
-
msgstr "
|
1142 |
|
1143 |
#: product_list.php:15
|
1144 |
-
msgid "
|
1145 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1146 |
|
1147 |
#~ msgid "Thank you for installing"
|
1148 |
#~ msgstr "Спасибо за установку"
|
@@ -1259,9 +1729,6 @@ msgstr "Другое"
|
|
1259 |
#~ msgid "Preview"
|
1260 |
#~ msgstr "Просмотр"
|
1261 |
|
1262 |
-
#~ msgid "Add BWS Plugins Shortcode"
|
1263 |
-
#~ msgstr "Добавить шорткод BWS Плагина"
|
1264 |
-
|
1265 |
#~ msgid "Select Plugin"
|
1266 |
#~ msgstr "Выберите плагин"
|
1267 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-06-08 15:43+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-07-03 13:22+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Generator: Poedit 1.8.7.1\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
48 |
msgid "Need help?"
|
49 |
msgstr "Нужна помощь?"
|
50 |
|
51 |
+
#: bws_functions.php:103 bws_functions.php:907 class-bws-settings.php:1047
|
52 |
msgid "Visit Help Center"
|
53 |
msgstr "Перейти в Help Center"
|
54 |
|
147 |
msgstr "Добавить"
|
148 |
|
149 |
#: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
|
150 |
+
#: bws_functions.php:378 bws_functions.php:480
|
151 |
msgid "Close notice"
|
152 |
msgstr "Закрыть"
|
153 |
|
199 |
"Ваш лицензионный ключ для %s истекает %s и вы не будете получать "
|
200 |
"приоритетную тех.поддержку или обновления."
|
201 |
|
202 |
+
#: bws_functions.php:475
|
203 |
#, php-format
|
204 |
msgid "Thank you for choosing %s plugin!"
|
205 |
msgstr "Спасибо за выбор плагина %s!"
|
206 |
|
207 |
+
#: bws_functions.php:476
|
208 |
msgid ""
|
209 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
210 |
"we'd love to hear about it!"
|
213 |
"функционала плагина, пожалуйста, присылайте их нам! Мы вседа открыты для "
|
214 |
"новых идей!"
|
215 |
|
216 |
+
#: bws_functions.php:477
|
217 |
msgid "Suggest a Feature"
|
218 |
msgstr "Предложить функционал"
|
219 |
|
220 |
+
#: bws_functions.php:493 class-bws-settings.php:533 class-bws-settings.php:536
|
221 |
#: class-bws-settings.php:584 class-bws-settings.php:587
|
222 |
msgid "Notice"
|
223 |
msgstr "Внимание"
|
224 |
|
225 |
+
#: bws_functions.php:493
|
226 |
msgid "The plugin's settings have been changed."
|
227 |
msgstr "Настройки плагина были изменены"
|
228 |
|
229 |
+
#: bws_functions.php:494 class-bws-settings.php:182 class-bws-settings.php:202
|
230 |
#: deprecated.php:640
|
231 |
msgid "Save Changes"
|
232 |
msgstr "Сохранить изменения"
|
233 |
|
234 |
+
#: bws_functions.php:508
|
235 |
msgid ""
|
236 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
237 |
"the \"Misc\" tab."
|
239 |
"Вы всегда можете просмотреть премиум опции нажав на кнопку \"Pro опции\" на "
|
240 |
"вкладке \"Разное\"."
|
241 |
|
242 |
+
#: bws_functions.php:629
|
243 |
+
msgid "Add BWS Shortcode"
|
244 |
+
msgstr "Добавить BWS шорткод"
|
245 |
+
|
246 |
+
#: bws_functions.php:630
|
247 |
+
msgid "Add BWS Plugins Shortcode"
|
248 |
+
msgstr "Добавить шорткод BWS Плагина"
|
249 |
+
|
250 |
+
#: bws_functions.php:649
|
251 |
msgid "Add shortcode"
|
252 |
msgstr "Добавить шорткод"
|
253 |
|
254 |
+
#: bws_functions.php:649
|
255 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
256 |
msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
|
257 |
|
258 |
+
#: bws_functions.php:695
|
259 |
msgid "Close"
|
260 |
msgstr "Закрыть"
|
261 |
|
262 |
+
#: bws_functions.php:787
|
263 |
msgid "Are you sure you want to restore default settings?"
|
264 |
msgstr ""
|
265 |
"Вы уверены что хотите восстановить все настройки плагина к настройкам по "
|
266 |
"умолчанию?"
|
267 |
|
268 |
+
#: bws_functions.php:790
|
269 |
msgid "Yes, restore all settings"
|
270 |
msgstr "Да, восстановить все настройки"
|
271 |
|
272 |
+
#: bws_functions.php:791
|
273 |
msgid "No, go back to the settings page"
|
274 |
msgstr "Нет, вернуться на страницу настроек"
|
275 |
|
276 |
+
#: bws_functions.php:833
|
277 |
msgid "Plugin"
|
278 |
msgstr "Плагин"
|
279 |
|
280 |
+
#: bws_functions.php:842
|
281 |
msgid "Shortcode settings"
|
282 |
msgstr "Настройки шорткода"
|
283 |
|
284 |
+
#: bws_functions.php:847
|
285 |
msgid "The shortcode will be inserted"
|
286 |
msgstr "Будет вставлен шорткод"
|
287 |
|
288 |
+
#: bws_functions.php:852
|
289 |
msgid "Insert"
|
290 |
msgstr "Вставить"
|
291 |
|
292 |
+
#: bws_functions.php:912
|
293 |
msgid "FAQ"
|
294 |
msgstr "FAQ"
|
295 |
|
296 |
+
#: bws_functions.php:918
|
297 |
msgid "For more information:"
|
298 |
msgstr "Для дополнительной информации:"
|
299 |
|
300 |
+
#: bws_functions.php:919
|
301 |
msgid "Documentation"
|
302 |
msgstr "Документация"
|
303 |
|
304 |
+
#: bws_functions.php:920
|
305 |
msgid "Video Instructions"
|
306 |
msgstr "Видео инструкции"
|
307 |
|
308 |
+
#: bws_functions.php:921
|
309 |
msgid "Submit a Request"
|
310 |
msgstr "Отправить запрос"
|
311 |
|
568 |
#: bws_menu.php:326
|
569 |
#, php-format
|
570 |
msgid "Get Access to %s+ Premium Plugins"
|
571 |
+
msgstr "Получить доступ к %s+ премиум плагинам"
|
572 |
|
573 |
#: bws_menu.php:328
|
574 |
msgid "Subscribe to Pro Membership"
|
711 |
|
712 |
#: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
|
713 |
msgid "Upgrade to Pro"
|
714 |
+
msgstr "Обновить до Pro"
|
715 |
|
716 |
#: bws_menu.php:563 bws_menu.php:572
|
717 |
msgid "Activate this plugin"
|
1117 |
msgstr "версия плагина."
|
1118 |
|
1119 |
#: product_list.php:7
|
1120 |
+
msgid "Admin Tools"
|
1121 |
+
msgstr "Инструменты"
|
1122 |
|
1123 |
#: product_list.php:8
|
1124 |
+
msgid "Content"
|
1125 |
+
msgstr "Контент"
|
1126 |
|
1127 |
#: product_list.php:9
|
1128 |
+
msgid "eCommerce"
|
1129 |
+
msgstr "Коммерция"
|
1130 |
|
1131 |
#: product_list.php:10
|
1132 |
+
msgid "Marketing"
|
1133 |
+
msgstr "Маркетинг"
|
1134 |
|
1135 |
#: product_list.php:11
|
1136 |
+
msgid "Navigation"
|
1137 |
+
msgstr "Навигация"
|
1138 |
|
1139 |
#: product_list.php:12
|
1140 |
+
msgid "Recommended"
|
1141 |
+
msgstr "Рекомендованные"
|
1142 |
|
1143 |
#: product_list.php:13
|
1144 |
+
msgid "Security"
|
1145 |
+
msgstr "Безопасность"
|
1146 |
|
1147 |
#: product_list.php:14
|
1148 |
+
msgid "SEO"
|
1149 |
+
msgstr "Поисковая оптимизация"
|
1150 |
|
1151 |
#: product_list.php:15
|
1152 |
+
msgid "SMM"
|
1153 |
+
msgstr "СММ"
|
1154 |
+
|
1155 |
+
#: product_list.php:22
|
1156 |
+
msgid ""
|
1157 |
+
"Protect WordPress website forms from spam entries by means of math logic."
|
1158 |
+
msgstr ""
|
1159 |
+
"Защищайте формы вашего сайта WordPress от взлома путем математической логики."
|
1160 |
+
|
1161 |
+
#: product_list.php:32
|
1162 |
+
msgid "Create your personal car rental/booking and reservation website."
|
1163 |
+
msgstr "Создайте свой собственный сайт проката и резервирования автомобилей."
|
1164 |
+
|
1165 |
+
#: product_list.php:42
|
1166 |
+
msgid ""
|
1167 |
+
"Allow customers to reach you using secure contact form plugin any website "
|
1168 |
+
"must have."
|
1169 |
+
msgstr ""
|
1170 |
+
"Предоставьте возможность клиентам осуществлять связь с вами через безопасный "
|
1171 |
+
"плагин контактной формы, который должен иметь любой сайт."
|
1172 |
+
|
1173 |
+
#: product_list.php:52
|
1174 |
+
msgid "Add unlimited number of contact forms to WordPress website."
|
1175 |
+
msgstr ""
|
1176 |
+
"Добавляйте неограниченное количество контактных форм на ваш сайт WordPress."
|
1177 |
+
|
1178 |
+
#: product_list.php:62
|
1179 |
+
msgid "Save and manage Contact Form messages. Never lose important data."
|
1180 |
+
msgstr ""
|
1181 |
+
"Сохраняйте и управляйте сообщениями плагина Contact Form. Никогда не теряйте "
|
1182 |
+
"важные данные."
|
1183 |
+
|
1184 |
+
#: product_list.php:72
|
1185 |
+
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1186 |
+
msgstr ""
|
1187 |
+
"Добавляйте неограниченное количество пользовательских страниц в панели "
|
1188 |
+
"администратора WordPress."
|
1189 |
+
|
1190 |
+
#: product_list.php:79
|
1191 |
+
msgid "Add custom fields to WordPress website search results."
|
1192 |
+
msgstr ""
|
1193 |
+
"Добавляйте пользовательские поля в результаты поиска вашего сайта WordPress."
|
1194 |
+
|
1195 |
+
#: product_list.php:86
|
1196 |
+
msgid ""
|
1197 |
+
"Add custom post types and taxonomies to WordPress website search results."
|
1198 |
+
msgstr ""
|
1199 |
+
"Добавляйте пользовательские типы постов и таксономии в результаты поиска на "
|
1200 |
+
"вашем сайте WordPress."
|
1201 |
+
|
1202 |
+
#: product_list.php:96
|
1203 |
+
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1204 |
+
msgstr ""
|
1205 |
+
"Добавляйте кнопки PayPal и 2CO, чтобы получать пожертвования и "
|
1206 |
+
"благотворительные взносы."
|
1207 |
+
|
1208 |
+
#: product_list.php:103
|
1209 |
+
msgid ""
|
1210 |
+
"Automatically add outgoing email messages to queue instead of sending them "
|
1211 |
+
"immediately."
|
1212 |
+
msgstr ""
|
1213 |
+
"Автоматически формируйте очередь отправки исходящих электронных сообщений. "
|
1214 |
+
"Задавайте время и приоритет рассылки."
|
1215 |
+
|
1216 |
+
#: product_list.php:110
|
1217 |
+
msgid ""
|
1218 |
+
"Get latest error log messages to diagnose website problems. Define and fix "
|
1219 |
+
"issues faster."
|
1220 |
+
msgstr ""
|
1221 |
+
"Получайте последние сообщения из журнала ошибок для диагностики проблем "
|
1222 |
+
"сайта. Быстрее выявляйте и устраняйте проблемы."
|
1223 |
+
|
1224 |
+
#: product_list.php:117
|
1225 |
+
msgid ""
|
1226 |
+
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1227 |
+
"widgets."
|
1228 |
+
msgstr ""
|
1229 |
+
"Добавляйте кнопки Facebook \"Подписаться\", \"Нравится\" и \"Поделиться\" в "
|
1230 |
+
"посты, страницы и виджеты сайта WordPress."
|
1231 |
+
|
1232 |
+
#: product_list.php:127
|
1233 |
+
msgid ""
|
1234 |
+
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1235 |
+
"clicks."
|
1236 |
+
msgstr ""
|
1237 |
+
"Добавляйте живописные галереи, альбомы и изображения на ваш сайт WordPress "
|
1238 |
+
"всего в несколько кликов."
|
1239 |
+
|
1240 |
+
#: product_list.php:137
|
1241 |
+
msgid ""
|
1242 |
+
"Add unlimited gallery categories. Organize images to make the navigation "
|
1243 |
+
"through content easier."
|
1244 |
+
msgstr ""
|
1245 |
+
"Добавляйте неограниченное количество категорий галерей. Группируйте "
|
1246 |
+
"изображения, чтобы упростить навигацию по контенту."
|
1247 |
+
|
1248 |
+
#: product_list.php:144
|
1249 |
+
msgid ""
|
1250 |
+
"Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
|
1251 |
+
"posts, pages and widgets."
|
1252 |
+
msgstr ""
|
1253 |
+
"Добавляйте кнопки Google \"+1\", \"Поделиться\", \"Подписаться\", \"Hangout"
|
1254 |
+
"\" и значок профиля к постам, страницам и виджетам WordPress."
|
1255 |
+
|
1256 |
+
#: product_list.php:154
|
1257 |
+
msgid ""
|
1258 |
+
"Stronger security solution which protects your WordPress website from hacks "
|
1259 |
+
"and unauthorized login attempts."
|
1260 |
+
msgstr ""
|
1261 |
+
"Мощнейшее решение для безопасности, которое защищает ваш сайт WordPress от "
|
1262 |
+
"взломов и неавторизованных попыток входа в систему."
|
1263 |
+
|
1264 |
+
#: product_list.php:164
|
1265 |
+
msgid ""
|
1266 |
+
"Add Adsense ads to WordPress website pages, posts, custom posts, search "
|
1267 |
+
"results, categories, tags, and widgets."
|
1268 |
+
msgstr ""
|
1269 |
+
"Добавляйте рекламу сервиса Adsense на страницы, посты, пользовательские "
|
1270 |
+
"посты, результаты поиска, категории, теги и виджеты сайта WordPress."
|
1271 |
+
|
1272 |
+
#: product_list.php:174
|
1273 |
+
msgid "Add Google Analytics code to WordPress website and track basic stats."
|
1274 |
+
msgstr ""
|
1275 |
+
"Добавляйте код Google Analytics на ваш сайт WordPress и отслеживайте базовую "
|
1276 |
+
"статистику сайта."
|
1277 |
+
|
1278 |
+
#: product_list.php:184
|
1279 |
+
msgid ""
|
1280 |
+
"Protect WordPress website forms from spam entries with Google Captcha "
|
1281 |
+
"(reCaptcha)."
|
1282 |
+
msgstr ""
|
1283 |
+
"Защищайте формы вашего сайта WordPress от спама с помощью Google Captcha "
|
1284 |
+
"(reCaptcha)."
|
1285 |
+
|
1286 |
+
#: product_list.php:194
|
1287 |
+
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1288 |
+
msgstr ""
|
1289 |
+
"Добавляйте пользовательские карты Google в посты, страницы и виджеты "
|
1290 |
+
"WordPress."
|
1291 |
+
|
1292 |
+
#: product_list.php:204
|
1293 |
+
msgid ""
|
1294 |
+
"Generate and add XML sitemap to WordPress website. Help search engines index "
|
1295 |
+
"your blog."
|
1296 |
+
msgstr ""
|
1297 |
+
"Создавайте и добавляйте файлы XML sitemap на ваш сайт WordPress. Помогите "
|
1298 |
+
"поисковым системам проиндексировать ваш блог."
|
1299 |
+
|
1300 |
+
#: product_list.php:214
|
1301 |
+
msgid ""
|
1302 |
+
"Replace external WordPress website links with Google shortlinks and track "
|
1303 |
+
"click stats."
|
1304 |
+
msgstr ""
|
1305 |
+
"Замените внешние ссылки сайта WordPress на короткие ссылки Google и "
|
1306 |
+
"отслеживайте статистику кликов."
|
1307 |
+
|
1308 |
+
#: product_list.php:221
|
1309 |
+
msgid ""
|
1310 |
+
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1311 |
+
"hostnames, etc."
|
1312 |
+
msgstr ""
|
1313 |
+
"Защитите свой сайт WordPress - предоставляйте и запрещайте доступ с "
|
1314 |
+
"определенных IP-адресов, имен хостов и т.д."
|
1315 |
+
|
1316 |
+
#: product_list.php:231
|
1317 |
+
msgid ""
|
1318 |
+
"Create your personal job board and listing WordPress website. Search jobs, "
|
1319 |
+
"submit CV/resumes, choose candidates."
|
1320 |
+
msgstr ""
|
1321 |
+
"Создавайте свою собственную доску объявлений с перечнем вакансий на базе "
|
1322 |
+
"WordPress. Осуществляйте поиск вакансий, подачу резюме/CV кандидата, выбор "
|
1323 |
+
"кандидатов."
|
1324 |
+
|
1325 |
+
#: product_list.php:238
|
1326 |
+
msgid ""
|
1327 |
+
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1328 |
+
"attempts."
|
1329 |
+
msgstr ""
|
1330 |
+
"Защищайте свой сайт WordPress от брутфорс-атак. Ограничивайте количество "
|
1331 |
+
"попыток ввода логина."
|
1332 |
+
|
1333 |
+
#: product_list.php:248
|
1334 |
+
msgid ""
|
1335 |
+
"Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
|
1336 |
+
"5 plugins included – profile, insider, etc."
|
1337 |
+
msgstr ""
|
1338 |
+
"Добавляйте кнопки LinkedIn \"Поделиться\" и \"Отслеживать\" к постам, "
|
1339 |
+
"страницам и виджетам WordPress. 5 плагинов включено - Профиль, Инсайдер и т."
|
1340 |
+
"д."
|
1341 |
+
|
1342 |
+
#: product_list.php:258
|
1343 |
+
msgid ""
|
1344 |
+
"Translate WordPress website content to other languages manually. Create "
|
1345 |
+
"multilingual pages, posts, widgets, menus, etc."
|
1346 |
+
msgstr ""
|
1347 |
+
"Переводите содержимое сайта WordPress на другие языки вручную. Создавайте "
|
1348 |
+
"многоязычные страницы, посты, виджеты, меню и т.д."
|
1349 |
+
|
1350 |
+
#: product_list.php:268
|
1351 |
+
msgid ""
|
1352 |
+
"Add customizable pagination to WordPress website. Split long content to "
|
1353 |
+
"multiple pages for better navigation."
|
1354 |
+
msgstr ""
|
1355 |
+
"Добавляйте настраиваемую пагинацию на ваш сайт WordPress. Разбивайте "
|
1356 |
+
"объемный контент на несколько страниц для лучшей навигации."
|
1357 |
+
|
1358 |
+
#: product_list.php:278
|
1359 |
+
msgid ""
|
1360 |
+
"Generate PDF files and print WordPress posts/pages. Customize document "
|
1361 |
+
"header/footer styles and appearance."
|
1362 |
+
msgstr ""
|
1363 |
+
"Создавайте PDF-файлы и печатайте посты/страницы сайта WordPress. "
|
1364 |
+
"Настраивайте стили хедера/футера документа и его внешний вид."
|
1365 |
+
|
1366 |
+
#: product_list.php:288
|
1367 |
+
msgid ""
|
1368 |
+
"Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
|
1369 |
+
"Profile) to WordPress posts, pages and widgets."
|
1370 |
+
msgstr ""
|
1371 |
+
"Добавляйте кнопки Pinterest \"Подписаться\", \"Сохранить\" и виджеты профиля "
|
1372 |
+
"(Пин, Доска, Профиль) к постам, страницам и виджетам WordPress."
|
1373 |
+
|
1374 |
+
#: product_list.php:298
|
1375 |
+
msgid ""
|
1376 |
+
"Create your personal portfolio WordPress website. Manage and showcase past "
|
1377 |
+
"projects to get more clients."
|
1378 |
+
msgstr ""
|
1379 |
+
"Создавайте и добавляйте портфолио на свой сайт WordPress. Управляйте и "
|
1380 |
+
"демонстрируйте прошлые проекты, чтобы привлечь больше клиентов."
|
1381 |
+
|
1382 |
+
#: product_list.php:308
|
1383 |
+
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1384 |
+
msgstr ""
|
1385 |
+
"С легкостью экспортируйте посты WordPress в файлы формата CSV. Настраивайте "
|
1386 |
+
"порядок отображения данных."
|
1387 |
+
|
1388 |
+
#: product_list.php:315
|
1389 |
+
msgid ""
|
1390 |
+
"Add extra fields to default WordPress user profile. The easiest way to "
|
1391 |
+
"create and manage additional custom values."
|
1392 |
+
msgstr ""
|
1393 |
+
"Добавляйте пользовательские поля в стандартный профиль WordPress. Самый "
|
1394 |
+
"простой способ создания и управления дополнительными полями."
|
1395 |
+
|
1396 |
+
#: product_list.php:322
|
1397 |
+
msgid ""
|
1398 |
+
"Add and display HTML advertisement banner on WordPress website. Customize "
|
1399 |
+
"bar styles and appearance."
|
1400 |
+
msgstr ""
|
1401 |
+
"Добавляйте и отображайте баннерную HTML рекламу на сайте WordPress. "
|
1402 |
+
"Настраивайте стили и внешний вид баннера."
|
1403 |
+
|
1404 |
+
#: product_list.php:332
|
1405 |
+
msgid ""
|
1406 |
+
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1407 |
+
"widgets."
|
1408 |
+
msgstr ""
|
1409 |
+
"Добавляйте настраиваемые цитаты и подсказки к постам, страницам и виджетам "
|
1410 |
+
"WordPress."
|
1411 |
+
|
1412 |
+
#: product_list.php:339
|
1413 |
+
msgid ""
|
1414 |
+
"Add rating plugin to your WordPress website to receive feedback from your "
|
1415 |
+
"customers."
|
1416 |
+
msgstr ""
|
1417 |
+
"Добавляйте систему оценивания и рейтинга на ваш сайт WordPress и получайте "
|
1418 |
+
"отзывы от ваших клиентов."
|
1419 |
+
|
1420 |
+
#: product_list.php:346
|
1421 |
+
msgid ""
|
1422 |
+
"Create your personal real estate WordPress website. Sell, rent and buy "
|
1423 |
+
"properties. Add, search and browse listings easily."
|
1424 |
+
msgstr ""
|
1425 |
+
"Создайте свой личный сайт агентства недвижимости на базе WordPress. "
|
1426 |
+
"Продавайте, арендуйте и покупайте недвижимость. Легко добавляйте, находите и "
|
1427 |
+
"просматривайте листинги."
|
1428 |
+
|
1429 |
+
#: product_list.php:356
|
1430 |
+
msgid ""
|
1431 |
+
"Attach, un-attach and re-attach media files quickly to WordPress posts and "
|
1432 |
+
"pages."
|
1433 |
+
msgstr ""
|
1434 |
+
"Прикрепляйте, открепляйте и повторно прикрепляйте медиа файлы к постам и "
|
1435 |
+
"страницам WordPress."
|
1436 |
+
|
1437 |
+
#: product_list.php:363
|
1438 |
+
msgid ""
|
1439 |
+
"Add related, featured, latest, and popular posts to your WordPress website. "
|
1440 |
+
"Connect your blog readers with a relevant content."
|
1441 |
+
msgstr ""
|
1442 |
+
"Добавляйте похожие, избранные, последние и популярные посты на ваш сайт "
|
1443 |
+
"WordPress. Предоставляйте своим читателям контент схожей тематики."
|
1444 |
+
|
1445 |
+
#: product_list.php:370
|
1446 |
+
msgid ""
|
1447 |
+
"Send bulk email messages to WordPress users. Custom templates, advanced "
|
1448 |
+
"settings and detailed reports."
|
1449 |
+
msgstr ""
|
1450 |
+
"Осуществляйте массовую рассылку писем пользователям WordPress. "
|
1451 |
+
"Пользовательские шаблоны, дополнительные настройки и подробные отчеты."
|
1452 |
+
|
1453 |
+
#: product_list.php:380
|
1454 |
+
msgid ""
|
1455 |
+
"The best responsive slider plugin for your WordPress website. Create "
|
1456 |
+
"beautifully animated slides just in a few clicks."
|
1457 |
+
msgstr ""
|
1458 |
+
"Самый лучший адаптивный слайдер для вашего сайта WordPress. Создавайте "
|
1459 |
+
"красиво анимированные слайды всего в несколько кликов."
|
1460 |
+
|
1461 |
+
#: product_list.php:387
|
1462 |
+
msgid ""
|
1463 |
+
"Configure SMTP server to receive email messages from WordPress to Gmail, "
|
1464 |
+
"Yahoo, Hotmail and other services."
|
1465 |
+
msgstr ""
|
1466 |
+
"Настраивайте SMTP-сервер, чтобы получать электронные сообщения с сайта "
|
1467 |
+
"WordPress на такие почтовые службы как Gmail, Yahoo, Hotmail и многие другие."
|
1468 |
+
|
1469 |
+
#: product_list.php:394
|
1470 |
+
msgid ""
|
1471 |
+
"Add social media buttons and widgets to WordPress posts, pages and widgets. "
|
1472 |
+
"FB, Twitter, G+1, Pinterest, LinkedIn."
|
1473 |
+
msgstr ""
|
1474 |
+
"Добавляйте кнопки и виджеты социальных сетей к постам, страницам и виджетам "
|
1475 |
+
"WordPress. FB, Twitter, G+1, Pinterest, LinkedIn."
|
1476 |
+
|
1477 |
+
#: product_list.php:404
|
1478 |
+
msgid ""
|
1479 |
+
"Add social media login, registration, and commenting to your WordPress "
|
1480 |
+
"website."
|
1481 |
+
msgstr ""
|
1482 |
+
"Добавляйте на свой сайт WordPress возможность входа, регистрации и "
|
1483 |
+
"комментирования с использованием существующих аккаунтов социальных сетей."
|
1484 |
+
|
1485 |
+
#: product_list.php:411
|
1486 |
+
msgid ""
|
1487 |
+
"Add email newsletter sign up form to WordPress posts, pages and widgets. "
|
1488 |
+
"Collect data and subscribe your users."
|
1489 |
+
msgstr ""
|
1490 |
+
"Добавляйте форму подписки на новостную рассылку в посты, страницы и виджеты "
|
1491 |
+
"WordPress. Собирайте данные и осуществляйте подписку пользователей."
|
1492 |
+
|
1493 |
+
#: product_list.php:421
|
1494 |
+
msgid ""
|
1495 |
+
"Add testimonials and feedbacks from your customers to WordPress website "
|
1496 |
+
"posts, pages, and widgets."
|
1497 |
+
msgstr ""
|
1498 |
+
"Добавляйте рекомендации и отзывы ваших клиентов в посты, страницы и виджеты "
|
1499 |
+
"сайта WordPress."
|
1500 |
+
|
1501 |
+
#: product_list.php:428
|
1502 |
+
msgid ""
|
1503 |
+
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1504 |
+
"attendance and generate reports."
|
1505 |
+
msgstr ""
|
1506 |
+
"Лучший плагин учёта рабочего времени на сайте WordPress. Отслеживайте время "
|
1507 |
+
"работы сотрудников, оптимизируйте график работы в офисе и создавайте отчеты."
|
1508 |
+
|
1509 |
+
#: product_list.php:438
|
1510 |
+
msgid ""
|
1511 |
+
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1512 |
+
"and pages."
|
1513 |
+
msgstr ""
|
1514 |
+
"Добавляйте кнопки Твиттера \"Читать\", \"Твитнуть\", \"Метка\" и \"Упомянуть"
|
1515 |
+
"\" к постам и страницам WordPress. "
|
1516 |
+
|
1517 |
+
#: product_list.php:448
|
1518 |
+
msgid ""
|
1519 |
+
"Automatically check and update WordPress website core with all installed "
|
1520 |
+
"plugins and themes to the latest versions."
|
1521 |
+
msgstr ""
|
1522 |
+
"Выполняйте автоматическую проверку и обновление ядра WordPress до последних "
|
1523 |
+
"версий со всеми установленными плагинами и темами."
|
1524 |
+
|
1525 |
+
#: product_list.php:458
|
1526 |
+
msgid ""
|
1527 |
+
"Powerful user role management plugin for WordPress website. Create, edit, "
|
1528 |
+
"copy, and delete user roles."
|
1529 |
+
msgstr ""
|
1530 |
+
"Эффективный плагин управления ролями пользователей для сайта WordPress. "
|
1531 |
+
"Создавайте, редактируйте, копируйте и удаляйте роли пользователей."
|
1532 |
+
|
1533 |
+
#: product_list.php:468
|
1534 |
+
msgid ""
|
1535 |
+
"Display live count of online visitors who are currently browsing your "
|
1536 |
+
"WordPress website."
|
1537 |
+
msgstr ""
|
1538 |
+
"Ведите подсчет количества посетителей, которые в настоящее время "
|
1539 |
+
"просматривают ваш сайт WordPress."
|
1540 |
+
|
1541 |
+
#: product_list.php:478
|
1542 |
+
msgid ""
|
1543 |
+
"Backup and export Zendesk Help Center content automatically to your "
|
1544 |
+
"WordPress website database."
|
1545 |
+
msgstr ""
|
1546 |
+
"Делайте автоматическое резервное копирование и экспорт содержимого Zendesk "
|
1547 |
+
"Help Center в базу данных вашего сайта WordPress."
|
1548 |
+
|
1549 |
+
#~ msgid ""
|
1550 |
+
#~ "Add related posts to WordPress website posts or widgets. Link your "
|
1551 |
+
#~ "readers to relevant content."
|
1552 |
+
#~ msgstr ""
|
1553 |
+
#~ "Добавляйте связанные публикации в посты или виджеты сайта WordPress. "
|
1554 |
+
#~ "Предоставляйте своим читателям контент схожей тематики."
|
1555 |
+
|
1556 |
+
#~ msgid "Advertisement"
|
1557 |
+
#~ msgstr "Реклама"
|
1558 |
+
|
1559 |
+
#~ msgid "Content & Media"
|
1560 |
+
#~ msgstr "Содержание и мультимедийные элементы"
|
1561 |
+
|
1562 |
+
#~ msgid "Management"
|
1563 |
+
#~ msgstr "Управление"
|
1564 |
+
|
1565 |
+
#~ msgid "Site Stats"
|
1566 |
+
#~ msgstr "Статистика сайта"
|
1567 |
+
|
1568 |
+
#~ msgid "Social"
|
1569 |
+
#~ msgstr "Социальные сервисы"
|
1570 |
+
|
1571 |
+
#~ msgid "Utilities"
|
1572 |
+
#~ msgstr "Утилиты"
|
1573 |
+
|
1574 |
+
#~ msgid "Other"
|
1575 |
+
#~ msgstr "Другое"
|
1576 |
+
|
1577 |
+
#~ msgid ""
|
1578 |
+
#~ "Manage database and file system right from your WordPress admin dashboard."
|
1579 |
+
#~ msgstr ""
|
1580 |
+
#~ "Управляйте базой данных и файловой системой прямо из панели "
|
1581 |
+
#~ "администратора WordPress."
|
1582 |
+
|
1583 |
+
#~ msgid ""
|
1584 |
+
#~ "Add featured posts to WordPress website posts and widgets. Highlight "
|
1585 |
+
#~ "important information."
|
1586 |
+
#~ msgstr ""
|
1587 |
+
#~ "Добавляйте избранные публикации к постам и виджетам сайта WordPress. "
|
1588 |
+
#~ "Выделяйте важную информацию."
|
1589 |
+
|
1590 |
+
#~ msgid ""
|
1591 |
+
#~ "Add widgets Latest Posts or Latest Posts for Selected Categories to your "
|
1592 |
+
#~ "WordPress website."
|
1593 |
+
#~ msgstr ""
|
1594 |
+
#~ "Добавляйте виджет новейших постов или виджет новейших постов для "
|
1595 |
+
#~ "выбранной категории на сайт WordPress."
|
1596 |
+
|
1597 |
+
#~ msgid ""
|
1598 |
+
#~ "Track views, comments and add the most popular posts to Wordpress widgets."
|
1599 |
+
#~ msgstr ""
|
1600 |
+
#~ "Отслеживайте просмотры и комментарии, добавляйте самые популярные посты в "
|
1601 |
+
#~ "виджеты сайта Wordpress."
|
1602 |
+
|
1603 |
+
#~ msgid ""
|
1604 |
+
#~ "Add latest posts or latest posts for selected categories widgets to "
|
1605 |
+
#~ "WordPress website."
|
1606 |
+
#~ msgstr ""
|
1607 |
+
#~ "Добавляйте виджет новейших постов или виджет новейших постов для "
|
1608 |
+
#~ "выбранной категории на сайт WordPress."
|
1609 |
+
|
1610 |
+
#~ msgid ""
|
1611 |
+
#~ "Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress "
|
1612 |
+
#~ "posts, pages and widgets."
|
1613 |
+
#~ msgstr ""
|
1614 |
+
#~ "Добавляйте кнопки Твиттера \"Читать\", \"Твитнуть\", \"Метка\" и "
|
1615 |
+
#~ "\"Упомянуть\" к постам и страницам WordPress. "
|
1616 |
|
1617 |
#~ msgid "Thank you for installing"
|
1618 |
#~ msgstr "Спасибо за установку"
|
1729 |
#~ msgid "Preview"
|
1730 |
#~ msgstr "Просмотр"
|
1731 |
|
|
|
|
|
|
|
1732 |
#~ msgid "Select Plugin"
|
1733 |
#~ msgstr "Выберите плагин"
|
1734 |
|
bws_menu/languages/bestwebsoft-uk.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-uk.po
CHANGED
@@ -2,18 +2,20 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-03
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
|
9 |
-
"Language:
|
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.8.7.1\n"
|
|
|
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: bws_functions.php:72 bws_functions.php:190
|
@@ -48,7 +50,7 @@ msgstr "Оцінити"
|
|
48 |
msgid "Need help?"
|
49 |
msgstr "Потрібна допомога?"
|
50 |
|
51 |
-
#: bws_functions.php:103 bws_functions.php:
|
52 |
msgid "Visit Help Center"
|
53 |
msgstr "Перейти до Help Center"
|
54 |
|
@@ -146,7 +148,7 @@ msgid "Add New"
|
|
146 |
msgstr "Додати"
|
147 |
|
148 |
#: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
|
149 |
-
#: bws_functions.php:378 bws_functions.php:
|
150 |
msgid "Close notice"
|
151 |
msgstr "Закрити"
|
152 |
|
@@ -197,12 +199,12 @@ msgstr ""
|
|
197 |
"Ваш ліцензійний ключ для %s витікає %s та ви більше не будете отримувати "
|
198 |
"першочергову технічну підтримку та оновлення."
|
199 |
|
200 |
-
#: bws_functions.php:
|
201 |
#, php-format
|
202 |
msgid "Thank you for choosing %s plugin!"
|
203 |
msgstr "Дякую за вибір плагіна %s!"
|
204 |
|
205 |
-
#: bws_functions.php:
|
206 |
msgid ""
|
207 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
208 |
"we'd love to hear about it!"
|
@@ -211,25 +213,25 @@ msgstr ""
|
|
211 |
"функціоналу плагіна, будь ласка, надсилайте їх нам! Ми завжди відкриті для "
|
212 |
"нових ідей!"
|
213 |
|
214 |
-
#: bws_functions.php:
|
215 |
msgid "Suggest a Feature"
|
216 |
msgstr "Запропонувати функціонал"
|
217 |
|
218 |
-
#: bws_functions.php:
|
219 |
#: class-bws-settings.php:584 class-bws-settings.php:587
|
220 |
msgid "Notice"
|
221 |
msgstr "Зауважте"
|
222 |
|
223 |
-
#: bws_functions.php:
|
224 |
msgid "The plugin's settings have been changed."
|
225 |
msgstr "Налаштування плагіну змінено."
|
226 |
|
227 |
-
#: bws_functions.php:
|
228 |
#: deprecated.php:640
|
229 |
msgid "Save Changes"
|
230 |
msgstr "Зберегти зміни"
|
231 |
|
232 |
-
#: bws_functions.php:
|
233 |
msgid ""
|
234 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
235 |
"the \"Misc\" tab."
|
@@ -237,63 +239,71 @@ msgstr ""
|
|
237 |
"Ви завжди можете подивитися на преміум опції, натиснувши на кнопку \"Pro "
|
238 |
"опції\" на вкладці \"Різне\"."
|
239 |
|
240 |
-
#: bws_functions.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
241 |
msgid "Add shortcode"
|
242 |
msgstr "Додати шорткод"
|
243 |
|
244 |
-
#: bws_functions.php:
|
245 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
246 |
msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
|
247 |
|
248 |
-
#: bws_functions.php:
|
249 |
msgid "Close"
|
250 |
msgstr "Закрити"
|
251 |
|
252 |
-
#: bws_functions.php:
|
253 |
msgid "Are you sure you want to restore default settings?"
|
254 |
msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
|
255 |
|
256 |
-
#: bws_functions.php:
|
257 |
msgid "Yes, restore all settings"
|
258 |
msgstr "Так, скинути налаштування"
|
259 |
|
260 |
-
#: bws_functions.php:
|
261 |
msgid "No, go back to the settings page"
|
262 |
msgstr "Ні, повернутись назад на сторінку налаштувань"
|
263 |
|
264 |
-
#: bws_functions.php:
|
265 |
msgid "Plugin"
|
266 |
msgstr "Плагін"
|
267 |
|
268 |
-
#: bws_functions.php:
|
269 |
msgid "Shortcode settings"
|
270 |
msgstr "Налаштування шорткоду"
|
271 |
|
272 |
-
#: bws_functions.php:
|
273 |
msgid "The shortcode will be inserted"
|
274 |
msgstr "Буде вставлено шорткод"
|
275 |
|
276 |
-
#: bws_functions.php:
|
277 |
msgid "Insert"
|
278 |
msgstr "Вставити"
|
279 |
|
280 |
-
#: bws_functions.php:
|
281 |
msgid "FAQ"
|
282 |
msgstr "FAQ"
|
283 |
|
284 |
-
#: bws_functions.php:
|
285 |
msgid "For more information:"
|
286 |
msgstr "Для отримання додаткової інформації:"
|
287 |
|
288 |
-
#: bws_functions.php:
|
289 |
msgid "Documentation"
|
290 |
msgstr "Документація"
|
291 |
|
292 |
-
#: bws_functions.php:
|
293 |
msgid "Video Instructions"
|
294 |
msgstr "Відео інструкції"
|
295 |
|
296 |
-
#: bws_functions.php:
|
297 |
msgid "Submit a Request"
|
298 |
msgstr "Надіслати запит"
|
299 |
|
@@ -555,7 +565,7 @@ msgstr "Управління придбаними ліцензіями і під
|
|
555 |
#: bws_menu.php:326
|
556 |
#, php-format
|
557 |
msgid "Get Access to %s+ Premium Plugins"
|
558 |
-
msgstr "Отримати
|
559 |
|
560 |
#: bws_menu.php:328
|
561 |
msgid "Subscribe to Pro Membership"
|
@@ -699,7 +709,7 @@ msgstr "Встановити"
|
|
699 |
|
700 |
#: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
|
701 |
msgid "Upgrade to Pro"
|
702 |
-
msgstr "
|
703 |
|
704 |
#: bws_menu.php:563 bws_menu.php:572
|
705 |
msgid "Activate this plugin"
|
@@ -820,7 +830,7 @@ msgstr "Огляд"
|
|
820 |
#: class-bws-settings.php:457
|
821 |
#, php-format
|
822 |
msgid "Activate custom %s code."
|
823 |
-
msgstr "
|
824 |
|
825 |
#: class-bws-settings.php:464 deprecated.php:633
|
826 |
#, php-format
|
@@ -1105,40 +1115,492 @@ msgid "version of the plugin."
|
|
1105 |
msgstr "версія плагіна."
|
1106 |
|
1107 |
#: product_list.php:7
|
1108 |
-
msgid "
|
1109 |
-
msgstr "
|
1110 |
|
1111 |
#: product_list.php:8
|
1112 |
-
msgid "Content
|
1113 |
-
msgstr "
|
1114 |
|
1115 |
#: product_list.php:9
|
1116 |
-
msgid "
|
1117 |
-
msgstr "
|
1118 |
|
1119 |
#: product_list.php:10
|
1120 |
-
msgid "
|
1121 |
-
msgstr "
|
1122 |
|
1123 |
#: product_list.php:11
|
1124 |
-
msgid "
|
1125 |
-
msgstr "
|
1126 |
|
1127 |
#: product_list.php:12
|
1128 |
-
msgid "
|
1129 |
-
msgstr "
|
1130 |
|
1131 |
#: product_list.php:13
|
1132 |
-
msgid "
|
1133 |
-
msgstr "
|
1134 |
|
1135 |
#: product_list.php:14
|
1136 |
-
msgid "
|
1137 |
-
msgstr "
|
1138 |
|
1139 |
#: product_list.php:15
|
1140 |
-
msgid "
|
1141 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1142 |
|
1143 |
#~ msgid "Thank you for installing"
|
1144 |
#~ msgstr "Дякуємо, що встановили"
|
@@ -1256,9 +1718,6 @@ msgstr "Інше"
|
|
1256 |
#~ msgid "Preview"
|
1257 |
#~ msgstr "Попередній перегляд"
|
1258 |
|
1259 |
-
#~ msgid "Add BWS Plugins Shortcode"
|
1260 |
-
#~ msgstr "Додати BWS шорткод"
|
1261 |
-
|
1262 |
#~ msgid ""
|
1263 |
#~ "(your username is the email you specify when purchasing the product), "
|
1264 |
#~ "where you can make the necessary changes."
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-06-08 15:43+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-07-03 13:22+0300\n"
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
|
9 |
+
"Language: uk_UA\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Generator: Poedit 1.8.7.1\n"
|
17 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
18 |
+
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
#: bws_functions.php:72 bws_functions.php:190
|
50 |
msgid "Need help?"
|
51 |
msgstr "Потрібна допомога?"
|
52 |
|
53 |
+
#: bws_functions.php:103 bws_functions.php:907 class-bws-settings.php:1047
|
54 |
msgid "Visit Help Center"
|
55 |
msgstr "Перейти до Help Center"
|
56 |
|
148 |
msgstr "Додати"
|
149 |
|
150 |
#: bws_functions.php:216 bws_functions.php:226 bws_functions.php:330
|
151 |
+
#: bws_functions.php:378 bws_functions.php:480
|
152 |
msgid "Close notice"
|
153 |
msgstr "Закрити"
|
154 |
|
199 |
"Ваш ліцензійний ключ для %s витікає %s та ви більше не будете отримувати "
|
200 |
"першочергову технічну підтримку та оновлення."
|
201 |
|
202 |
+
#: bws_functions.php:475
|
203 |
#, php-format
|
204 |
msgid "Thank you for choosing %s plugin!"
|
205 |
msgstr "Дякую за вибір плагіна %s!"
|
206 |
|
207 |
+
#: bws_functions.php:476
|
208 |
msgid ""
|
209 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
210 |
"we'd love to hear about it!"
|
213 |
"функціоналу плагіна, будь ласка, надсилайте їх нам! Ми завжди відкриті для "
|
214 |
"нових ідей!"
|
215 |
|
216 |
+
#: bws_functions.php:477
|
217 |
msgid "Suggest a Feature"
|
218 |
msgstr "Запропонувати функціонал"
|
219 |
|
220 |
+
#: bws_functions.php:493 class-bws-settings.php:533 class-bws-settings.php:536
|
221 |
#: class-bws-settings.php:584 class-bws-settings.php:587
|
222 |
msgid "Notice"
|
223 |
msgstr "Зауважте"
|
224 |
|
225 |
+
#: bws_functions.php:493
|
226 |
msgid "The plugin's settings have been changed."
|
227 |
msgstr "Налаштування плагіну змінено."
|
228 |
|
229 |
+
#: bws_functions.php:494 class-bws-settings.php:182 class-bws-settings.php:202
|
230 |
#: deprecated.php:640
|
231 |
msgid "Save Changes"
|
232 |
msgstr "Зберегти зміни"
|
233 |
|
234 |
+
#: bws_functions.php:508
|
235 |
msgid ""
|
236 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
237 |
"the \"Misc\" tab."
|
239 |
"Ви завжди можете подивитися на преміум опції, натиснувши на кнопку \"Pro "
|
240 |
"опції\" на вкладці \"Різне\"."
|
241 |
|
242 |
+
#: bws_functions.php:629
|
243 |
+
msgid "Add BWS Shortcode"
|
244 |
+
msgstr "Додати BWS шорткод"
|
245 |
+
|
246 |
+
#: bws_functions.php:630
|
247 |
+
msgid "Add BWS Plugins Shortcode"
|
248 |
+
msgstr "Додати шорткод BWS плагіну"
|
249 |
+
|
250 |
+
#: bws_functions.php:649
|
251 |
msgid "Add shortcode"
|
252 |
msgstr "Додати шорткод"
|
253 |
|
254 |
+
#: bws_functions.php:649
|
255 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
256 |
msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
|
257 |
|
258 |
+
#: bws_functions.php:695
|
259 |
msgid "Close"
|
260 |
msgstr "Закрити"
|
261 |
|
262 |
+
#: bws_functions.php:787
|
263 |
msgid "Are you sure you want to restore default settings?"
|
264 |
msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
|
265 |
|
266 |
+
#: bws_functions.php:790
|
267 |
msgid "Yes, restore all settings"
|
268 |
msgstr "Так, скинути налаштування"
|
269 |
|
270 |
+
#: bws_functions.php:791
|
271 |
msgid "No, go back to the settings page"
|
272 |
msgstr "Ні, повернутись назад на сторінку налаштувань"
|
273 |
|
274 |
+
#: bws_functions.php:833
|
275 |
msgid "Plugin"
|
276 |
msgstr "Плагін"
|
277 |
|
278 |
+
#: bws_functions.php:842
|
279 |
msgid "Shortcode settings"
|
280 |
msgstr "Налаштування шорткоду"
|
281 |
|
282 |
+
#: bws_functions.php:847
|
283 |
msgid "The shortcode will be inserted"
|
284 |
msgstr "Буде вставлено шорткод"
|
285 |
|
286 |
+
#: bws_functions.php:852
|
287 |
msgid "Insert"
|
288 |
msgstr "Вставити"
|
289 |
|
290 |
+
#: bws_functions.php:912
|
291 |
msgid "FAQ"
|
292 |
msgstr "FAQ"
|
293 |
|
294 |
+
#: bws_functions.php:918
|
295 |
msgid "For more information:"
|
296 |
msgstr "Для отримання додаткової інформації:"
|
297 |
|
298 |
+
#: bws_functions.php:919
|
299 |
msgid "Documentation"
|
300 |
msgstr "Документація"
|
301 |
|
302 |
+
#: bws_functions.php:920
|
303 |
msgid "Video Instructions"
|
304 |
msgstr "Відео інструкції"
|
305 |
|
306 |
+
#: bws_functions.php:921
|
307 |
msgid "Submit a Request"
|
308 |
msgstr "Надіслати запит"
|
309 |
|
565 |
#: bws_menu.php:326
|
566 |
#, php-format
|
567 |
msgid "Get Access to %s+ Premium Plugins"
|
568 |
+
msgstr "Отримати доступ до %s+ преміум плагинам"
|
569 |
|
570 |
#: bws_menu.php:328
|
571 |
msgid "Subscribe to Pro Membership"
|
709 |
|
710 |
#: bws_menu.php:549 class-bws-settings.php:156 class-bws-settings.php:1056
|
711 |
msgid "Upgrade to Pro"
|
712 |
+
msgstr "Оновити до Pro"
|
713 |
|
714 |
#: bws_menu.php:563 bws_menu.php:572
|
715 |
msgid "Activate this plugin"
|
830 |
#: class-bws-settings.php:457
|
831 |
#, php-format
|
832 |
msgid "Activate custom %s code."
|
833 |
+
msgstr "Активувати користувацький %s код."
|
834 |
|
835 |
#: class-bws-settings.php:464 deprecated.php:633
|
836 |
#, php-format
|
1115 |
msgstr "версія плагіна."
|
1116 |
|
1117 |
#: product_list.php:7
|
1118 |
+
msgid "Admin Tools"
|
1119 |
+
msgstr "Інструменти"
|
1120 |
|
1121 |
#: product_list.php:8
|
1122 |
+
msgid "Content"
|
1123 |
+
msgstr "Контент"
|
1124 |
|
1125 |
#: product_list.php:9
|
1126 |
+
msgid "eCommerce"
|
1127 |
+
msgstr "Комерція"
|
1128 |
|
1129 |
#: product_list.php:10
|
1130 |
+
msgid "Marketing"
|
1131 |
+
msgstr "Маркетинг"
|
1132 |
|
1133 |
#: product_list.php:11
|
1134 |
+
msgid "Navigation"
|
1135 |
+
msgstr "Навігація"
|
1136 |
|
1137 |
#: product_list.php:12
|
1138 |
+
msgid "Recommended"
|
1139 |
+
msgstr "Рекомендовані "
|
1140 |
|
1141 |
#: product_list.php:13
|
1142 |
+
msgid "Security"
|
1143 |
+
msgstr "Безпека"
|
1144 |
|
1145 |
#: product_list.php:14
|
1146 |
+
msgid "SEO"
|
1147 |
+
msgstr "Пошукова оптимізація"
|
1148 |
|
1149 |
#: product_list.php:15
|
1150 |
+
msgid "SMM"
|
1151 |
+
msgstr "СММ"
|
1152 |
+
|
1153 |
+
#: product_list.php:22
|
1154 |
+
msgid ""
|
1155 |
+
"Protect WordPress website forms from spam entries by means of math logic."
|
1156 |
+
msgstr ""
|
1157 |
+
"Захищайте форми вашого сайту WordPress від зламування шляхом математичної "
|
1158 |
+
"логіки."
|
1159 |
+
|
1160 |
+
#: product_list.php:32
|
1161 |
+
msgid "Create your personal car rental/booking and reservation website."
|
1162 |
+
msgstr "Створіть свій власний сайт прокату і резервування автомобілів."
|
1163 |
+
|
1164 |
+
#: product_list.php:42
|
1165 |
+
msgid ""
|
1166 |
+
"Allow customers to reach you using secure contact form plugin any website "
|
1167 |
+
"must have."
|
1168 |
+
msgstr ""
|
1169 |
+
"Надайте можливість клієнтам здійснювати зв'язок з вами через безпечний "
|
1170 |
+
"плагін контактної форми, який повинен мати будь-який сайт."
|
1171 |
+
|
1172 |
+
#: product_list.php:52
|
1173 |
+
msgid "Add unlimited number of contact forms to WordPress website."
|
1174 |
+
msgstr "Додавайте необмежену кількість контактних форм на ваш сайт WordPress."
|
1175 |
+
|
1176 |
+
#: product_list.php:62
|
1177 |
+
msgid "Save and manage Contact Form messages. Never lose important data."
|
1178 |
+
msgstr ""
|
1179 |
+
"Зберігайте і керуйте повідомленнями плагіну Contact Form. Ніколи не "
|
1180 |
+
"втрачайте важливі дані."
|
1181 |
+
|
1182 |
+
#: product_list.php:72
|
1183 |
+
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1184 |
+
msgstr ""
|
1185 |
+
"Додавайте необмежену кількість користувацьких сторінок у панелі "
|
1186 |
+
"адміністратора WordPress."
|
1187 |
+
|
1188 |
+
#: product_list.php:79
|
1189 |
+
msgid "Add custom fields to WordPress website search results."
|
1190 |
+
msgstr ""
|
1191 |
+
"Додавайте користувацькі поля у результати пошуку вашого сайту WordPress."
|
1192 |
+
|
1193 |
+
#: product_list.php:86
|
1194 |
+
msgid ""
|
1195 |
+
"Add custom post types and taxonomies to WordPress website search results."
|
1196 |
+
msgstr ""
|
1197 |
+
"Додавайте користувацькі типи постів і таксономії у результати пошуку на "
|
1198 |
+
"вашому сайті WordPress."
|
1199 |
+
|
1200 |
+
#: product_list.php:96
|
1201 |
+
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1202 |
+
msgstr ""
|
1203 |
+
"Додавайте кнопки PayPal і 2CO, щоб отримувати пожертви та благодійні внески."
|
1204 |
+
|
1205 |
+
#: product_list.php:103
|
1206 |
+
msgid ""
|
1207 |
+
"Automatically add outgoing email messages to queue instead of sending them "
|
1208 |
+
"immediately."
|
1209 |
+
msgstr ""
|
1210 |
+
"Автоматично формуйте чергу відправки вихідних електронних повідомлень. "
|
1211 |
+
"Задавайте час і пріоритет розсилки."
|
1212 |
+
|
1213 |
+
#: product_list.php:110
|
1214 |
+
msgid ""
|
1215 |
+
"Get latest error log messages to diagnose website problems. Define and fix "
|
1216 |
+
"issues faster."
|
1217 |
+
msgstr ""
|
1218 |
+
"Отримуйте останні повідомлення з журналу помилок для діагностики проблем "
|
1219 |
+
"сайту. Швидше виявляйте і усувайте проблеми."
|
1220 |
+
|
1221 |
+
#: product_list.php:117
|
1222 |
+
msgid ""
|
1223 |
+
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1224 |
+
"widgets."
|
1225 |
+
msgstr ""
|
1226 |
+
"Додавайте кнопки Facebook \"Підписатися\", \"Подобається\" та \"Поділитися\" "
|
1227 |
+
"у пости, сторінки і віджети сайту WordPress."
|
1228 |
+
|
1229 |
+
#: product_list.php:127
|
1230 |
+
msgid ""
|
1231 |
+
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1232 |
+
"clicks."
|
1233 |
+
msgstr ""
|
1234 |
+
"Додавайте мальовничі галереї, альбоми і зображення на ваш сайт WordPress "
|
1235 |
+
"всього в декілька кліків."
|
1236 |
+
|
1237 |
+
#: product_list.php:137
|
1238 |
+
msgid ""
|
1239 |
+
"Add unlimited gallery categories. Organize images to make the navigation "
|
1240 |
+
"through content easier."
|
1241 |
+
msgstr ""
|
1242 |
+
"Додавайте необмежену кількість категорій галерей. Групуйте зображення, щоб "
|
1243 |
+
"спростити навігацію контентом."
|
1244 |
+
|
1245 |
+
#: product_list.php:144
|
1246 |
+
msgid ""
|
1247 |
+
"Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
|
1248 |
+
"posts, pages and widgets."
|
1249 |
+
msgstr ""
|
1250 |
+
"Додавайте кнопки Google \"+1\", \"Поділитися\", \"Підписатися\", \"Hangout\" "
|
1251 |
+
"і значок профілю до постів, сторінок та віджетів WordPress."
|
1252 |
+
|
1253 |
+
#: product_list.php:154
|
1254 |
+
msgid ""
|
1255 |
+
"Stronger security solution which protects your WordPress website from hacks "
|
1256 |
+
"and unauthorized login attempts."
|
1257 |
+
msgstr ""
|
1258 |
+
"Найпотужніше рішення безпеки, яке захищає ваш сайт WordPress від зломів та "
|
1259 |
+
"неавторизованих спроб входу в систему."
|
1260 |
+
|
1261 |
+
#: product_list.php:164
|
1262 |
+
msgid ""
|
1263 |
+
"Add Adsense ads to WordPress website pages, posts, custom posts, search "
|
1264 |
+
"results, categories, tags, and widgets."
|
1265 |
+
msgstr ""
|
1266 |
+
"Додавайте рекламу сервісу Adsense на сторінки, пости, користувацькі пости, "
|
1267 |
+
"результати пошуку, категорії, теги і віджети сайту WordPress."
|
1268 |
+
|
1269 |
+
#: product_list.php:174
|
1270 |
+
msgid "Add Google Analytics code to WordPress website and track basic stats."
|
1271 |
+
msgstr ""
|
1272 |
+
"Додавайте код Google Analytics на ваш сайт WordPress та відстежуйте базову "
|
1273 |
+
"статистику сайту."
|
1274 |
+
|
1275 |
+
#: product_list.php:184
|
1276 |
+
msgid ""
|
1277 |
+
"Protect WordPress website forms from spam entries with Google Captcha "
|
1278 |
+
"(reCaptcha)."
|
1279 |
+
msgstr ""
|
1280 |
+
"Захищайте форми вашого сайту WordPress від спаму за допомогою Google Captcha "
|
1281 |
+
"(reCaptcha)."
|
1282 |
+
|
1283 |
+
#: product_list.php:194
|
1284 |
+
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1285 |
+
msgstr ""
|
1286 |
+
"Додавайте користувацькі карти Google у пости, сторінки та віджети WordPress."
|
1287 |
+
|
1288 |
+
#: product_list.php:204
|
1289 |
+
msgid ""
|
1290 |
+
"Generate and add XML sitemap to WordPress website. Help search engines index "
|
1291 |
+
"your blog."
|
1292 |
+
msgstr ""
|
1293 |
+
"Створюйте та додавайте файли XML sitemap на ваш сайт WordPress. Допоможіть "
|
1294 |
+
"пошуковим системам проіндексувати ваш блог."
|
1295 |
+
|
1296 |
+
#: product_list.php:214
|
1297 |
+
msgid ""
|
1298 |
+
"Replace external WordPress website links with Google shortlinks and track "
|
1299 |
+
"click stats."
|
1300 |
+
msgstr ""
|
1301 |
+
"Замініть зовнішні посилання сайту WordPress на короткі посилання Google і "
|
1302 |
+
"відстежуйте статистику кліків."
|
1303 |
+
|
1304 |
+
#: product_list.php:221
|
1305 |
+
msgid ""
|
1306 |
+
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1307 |
+
"hostnames, etc."
|
1308 |
+
msgstr ""
|
1309 |
+
"Захистіть свій сайт WordPress - надавайте та забороняйте доступ з певних IP-"
|
1310 |
+
"адрес, імен хостів і т.д."
|
1311 |
+
|
1312 |
+
#: product_list.php:231
|
1313 |
+
msgid ""
|
1314 |
+
"Create your personal job board and listing WordPress website. Search jobs, "
|
1315 |
+
"submit CV/resumes, choose candidates."
|
1316 |
+
msgstr ""
|
1317 |
+
"Створюйте свою власну дошку оголошень з переліком вакансій на базі "
|
1318 |
+
"WordPress. Здійснюйте пошук вакансій, подачу резюме/CV кандидата, вибір "
|
1319 |
+
"кандидатів."
|
1320 |
+
|
1321 |
+
#: product_list.php:238
|
1322 |
+
msgid ""
|
1323 |
+
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1324 |
+
"attempts."
|
1325 |
+
msgstr ""
|
1326 |
+
"Захищайте свій сайт WordPress від брутфорс-атак. Обмежуйте кількість спроб "
|
1327 |
+
"введення логіна."
|
1328 |
+
|
1329 |
+
#: product_list.php:248
|
1330 |
+
msgid ""
|
1331 |
+
"Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
|
1332 |
+
"5 plugins included – profile, insider, etc."
|
1333 |
+
msgstr ""
|
1334 |
+
"Додавайте кнопки LinkedIn \"Поділитися\" та \"Відстежувати\" до постів, "
|
1335 |
+
"сторінок і віджетів WordPress. 5 плагінів включено - Профіль, Інсайдер і т.д."
|
1336 |
+
|
1337 |
+
#: product_list.php:258
|
1338 |
+
msgid ""
|
1339 |
+
"Translate WordPress website content to other languages manually. Create "
|
1340 |
+
"multilingual pages, posts, widgets, menus, etc."
|
1341 |
+
msgstr ""
|
1342 |
+
"Перекладайте вміст сайту WordPress іншими мовами вручну. Створюйте "
|
1343 |
+
"багатомовні сторінки, пости, віджети, меню і т.д."
|
1344 |
+
|
1345 |
+
#: product_list.php:268
|
1346 |
+
msgid ""
|
1347 |
+
"Add customizable pagination to WordPress website. Split long content to "
|
1348 |
+
"multiple pages for better navigation."
|
1349 |
+
msgstr ""
|
1350 |
+
"Додавайте пагінацію з можливістю налаштування на ваш сайт WordPress. "
|
1351 |
+
"Розбивайте об'ємний контент на декілька сторінок для кращої навігації."
|
1352 |
+
|
1353 |
+
#: product_list.php:278
|
1354 |
+
msgid ""
|
1355 |
+
"Generate PDF files and print WordPress posts/pages. Customize document "
|
1356 |
+
"header/footer styles and appearance."
|
1357 |
+
msgstr ""
|
1358 |
+
"Створюйте PDF-файли і друкуйте пости/сторінки сайту WordPress. Налаштовуйте "
|
1359 |
+
"стилі хедера/футера документа і його зовнішній вигляд."
|
1360 |
+
|
1361 |
+
#: product_list.php:288
|
1362 |
+
msgid ""
|
1363 |
+
"Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
|
1364 |
+
"Profile) to WordPress posts, pages and widgets."
|
1365 |
+
msgstr ""
|
1366 |
+
"Додавайте кнопки Pinterest \"Підписатися\", \"Зберегти\" і віджети профілю "
|
1367 |
+
"(Пін, Дошка, Профіль) до постів, сторінок і віджетів WordPress."
|
1368 |
+
|
1369 |
+
#: product_list.php:298
|
1370 |
+
msgid ""
|
1371 |
+
"Create your personal portfolio WordPress website. Manage and showcase past "
|
1372 |
+
"projects to get more clients."
|
1373 |
+
msgstr ""
|
1374 |
+
"Створюйте і додавайте портфоліо на свій сайт WordPress. Керуйте і "
|
1375 |
+
"демонструйте минулі проекти, щоб залучити більше клієнтів."
|
1376 |
+
|
1377 |
+
#: product_list.php:308
|
1378 |
+
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1379 |
+
msgstr ""
|
1380 |
+
"З легкістю експортуйте пости WordPress в файли формату CSV. Налаштуйте "
|
1381 |
+
"порядок відображення даних."
|
1382 |
+
|
1383 |
+
#: product_list.php:315
|
1384 |
+
msgid ""
|
1385 |
+
"Add extra fields to default WordPress user profile. The easiest way to "
|
1386 |
+
"create and manage additional custom values."
|
1387 |
+
msgstr ""
|
1388 |
+
"Додавайте користувацькі поля у стандартний профіль WordPress. Найпростіший "
|
1389 |
+
"спосіб створення і управління додатковими полями."
|
1390 |
+
|
1391 |
+
#: product_list.php:322
|
1392 |
+
msgid ""
|
1393 |
+
"Add and display HTML advertisement banner on WordPress website. Customize "
|
1394 |
+
"bar styles and appearance."
|
1395 |
+
msgstr ""
|
1396 |
+
"Додавайте відображення банерної HTML реклами на сайті WordPress. Налаштуйте "
|
1397 |
+
"стилі і зовнішній вигляд банеру."
|
1398 |
+
|
1399 |
+
#: product_list.php:332
|
1400 |
+
msgid ""
|
1401 |
+
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1402 |
+
"widgets."
|
1403 |
+
msgstr ""
|
1404 |
+
"Додавайте редаговані цитати та підказки до постів, сторінок і віджетів "
|
1405 |
+
"WordPress."
|
1406 |
+
|
1407 |
+
#: product_list.php:339
|
1408 |
+
msgid ""
|
1409 |
+
"Add rating plugin to your WordPress website to receive feedback from your "
|
1410 |
+
"customers."
|
1411 |
+
msgstr ""
|
1412 |
+
"Додавайте систему оцінювання і рейтингу на ваш сайт WordPress і отримуйте "
|
1413 |
+
"відгуки від ваших клієнтів."
|
1414 |
+
|
1415 |
+
#: product_list.php:346
|
1416 |
+
msgid ""
|
1417 |
+
"Create your personal real estate WordPress website. Sell, rent and buy "
|
1418 |
+
"properties. Add, search and browse listings easily."
|
1419 |
+
msgstr ""
|
1420 |
+
"Створіть свій особистий сайт агентства нерухомості на базі WordPress. "
|
1421 |
+
"Продавайте, орендуйте і купуйте нерухомість. Легко додавайте, знаходьте і "
|
1422 |
+
"переглядайте лістинги."
|
1423 |
+
|
1424 |
+
#: product_list.php:356
|
1425 |
+
msgid ""
|
1426 |
+
"Attach, un-attach and re-attach media files quickly to WordPress posts and "
|
1427 |
+
"pages."
|
1428 |
+
msgstr ""
|
1429 |
+
"Прикріплюйте, відкріплюйте і повторно прикріплюйте медіа файли до постів і "
|
1430 |
+
"сторінок WordPress."
|
1431 |
+
|
1432 |
+
#: product_list.php:363
|
1433 |
+
msgid ""
|
1434 |
+
"Add related, featured, latest, and popular posts to your WordPress website. "
|
1435 |
+
"Connect your blog readers with a relevant content."
|
1436 |
+
msgstr ""
|
1437 |
+
"Додавайте схожі, обрані, останні та популярні пости на ваш сайт WordPress. "
|
1438 |
+
"Надавайте своїм читачам контент схожої тематики."
|
1439 |
+
|
1440 |
+
#: product_list.php:370
|
1441 |
+
msgid ""
|
1442 |
+
"Send bulk email messages to WordPress users. Custom templates, advanced "
|
1443 |
+
"settings and detailed reports."
|
1444 |
+
msgstr ""
|
1445 |
+
"Здійснюйте масову розсилку листів користувачам WordPress. Користувацькі "
|
1446 |
+
"шаблони, додаткові налаштування і детальні звіти."
|
1447 |
+
|
1448 |
+
#: product_list.php:380
|
1449 |
+
msgid ""
|
1450 |
+
"The best responsive slider plugin for your WordPress website. Create "
|
1451 |
+
"beautifully animated slides just in a few clicks."
|
1452 |
+
msgstr ""
|
1453 |
+
"Найкращий адаптивний слайдер для вашого сайту WordPress. Створюйте красиво "
|
1454 |
+
"анімовані слайди всього в декілька кліків."
|
1455 |
+
|
1456 |
+
#: product_list.php:387
|
1457 |
+
msgid ""
|
1458 |
+
"Configure SMTP server to receive email messages from WordPress to Gmail, "
|
1459 |
+
"Yahoo, Hotmail and other services."
|
1460 |
+
msgstr ""
|
1461 |
+
"Налаштовуйте SMTP-сервер, щоб отримувати електронні повідомлення з сайту "
|
1462 |
+
"WordPress на такі поштові служби як Gmail, Yahoo, Hotmail і багато інших."
|
1463 |
+
|
1464 |
+
#: product_list.php:394
|
1465 |
+
msgid ""
|
1466 |
+
"Add social media buttons and widgets to WordPress posts, pages and widgets. "
|
1467 |
+
"FB, Twitter, G+1, Pinterest, LinkedIn."
|
1468 |
+
msgstr ""
|
1469 |
+
"Додавайте кнопки і віджети соціальних мереж до постів, сторінок і віджетів "
|
1470 |
+
"WordPress. FB, Twitter, G+1, Pinterest, LinkedIn."
|
1471 |
+
|
1472 |
+
#: product_list.php:404
|
1473 |
+
msgid ""
|
1474 |
+
"Add social media login, registration, and commenting to your WordPress "
|
1475 |
+
"website."
|
1476 |
+
msgstr ""
|
1477 |
+
"Додавайте на свій сайт WordPress можливість входу, реєстрації та "
|
1478 |
+
"коментування з використанням існуючих акаунтів соціальних мереж."
|
1479 |
+
|
1480 |
+
#: product_list.php:411
|
1481 |
+
msgid ""
|
1482 |
+
"Add email newsletter sign up form to WordPress posts, pages and widgets. "
|
1483 |
+
"Collect data and subscribe your users."
|
1484 |
+
msgstr ""
|
1485 |
+
"Додавайте форму підписки на розсилку новин у пости, сторінки і віджети "
|
1486 |
+
"WordPress. Збирайте дані і здійснюйте підписку користувачів."
|
1487 |
+
|
1488 |
+
#: product_list.php:421
|
1489 |
+
msgid ""
|
1490 |
+
"Add testimonials and feedbacks from your customers to WordPress website "
|
1491 |
+
"posts, pages, and widgets."
|
1492 |
+
msgstr ""
|
1493 |
+
"Додавайте рекомендації та відгуки ваших клієнтів в пости, сторінки і віджети "
|
1494 |
+
"сайту WordPress."
|
1495 |
+
|
1496 |
+
#: product_list.php:428
|
1497 |
+
msgid ""
|
1498 |
+
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1499 |
+
"attendance and generate reports."
|
1500 |
+
msgstr ""
|
1501 |
+
"Кращий плагін обліку робочого часу на сайті WordPress. Відстежуйте час "
|
1502 |
+
"роботи співробітників, оптимізуйте графік роботи в офісі і створюйте звіти."
|
1503 |
+
|
1504 |
+
#: product_list.php:438
|
1505 |
+
msgid ""
|
1506 |
+
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1507 |
+
"and pages."
|
1508 |
+
msgstr ""
|
1509 |
+
"Додавайте кнопки Твіттера \"Читати\", \"Твітнути\", \"Хештеґ\" і \"Згадати\" "
|
1510 |
+
"до постів і сторінок WordPress."
|
1511 |
+
|
1512 |
+
#: product_list.php:448
|
1513 |
+
msgid ""
|
1514 |
+
"Automatically check and update WordPress website core with all installed "
|
1515 |
+
"plugins and themes to the latest versions."
|
1516 |
+
msgstr ""
|
1517 |
+
"Виконуйте автоматичну перевірку і оновлення ядра WordPress до останніх "
|
1518 |
+
"версій з усіма встановленими плагінами та темами."
|
1519 |
+
|
1520 |
+
#: product_list.php:458
|
1521 |
+
msgid ""
|
1522 |
+
"Powerful user role management plugin for WordPress website. Create, edit, "
|
1523 |
+
"copy, and delete user roles."
|
1524 |
+
msgstr ""
|
1525 |
+
"Ефективний плагін управління ролями користувачів для сайту WordPress. "
|
1526 |
+
"Створюйте, редагуйте, копіюйте і видаляйте ролі користувачів."
|
1527 |
+
|
1528 |
+
#: product_list.php:468
|
1529 |
+
msgid ""
|
1530 |
+
"Display live count of online visitors who are currently browsing your "
|
1531 |
+
"WordPress website."
|
1532 |
+
msgstr ""
|
1533 |
+
"Ведіть підрахунок кількості відвідувачів, які в даний час переглядають ваш "
|
1534 |
+
"сайт WordPress."
|
1535 |
+
|
1536 |
+
#: product_list.php:478
|
1537 |
+
msgid ""
|
1538 |
+
"Backup and export Zendesk Help Center content automatically to your "
|
1539 |
+
"WordPress website database."
|
1540 |
+
msgstr ""
|
1541 |
+
"Робіть автоматичне резервне копіювання і експорт вмісту Zendesk Help Center "
|
1542 |
+
"в базу даних вашого сайту WordPress."
|
1543 |
+
|
1544 |
+
#~ msgid ""
|
1545 |
+
#~ "Add related posts to WordPress website posts or widgets. Link your "
|
1546 |
+
#~ "readers to relevant content."
|
1547 |
+
#~ msgstr ""
|
1548 |
+
#~ "Додавайте пов'язані публікації у пости або віджети сайту WordPress. "
|
1549 |
+
#~ "Надавайте своїм читачам контент схожої тематики."
|
1550 |
+
|
1551 |
+
#~ msgid "Advertisement"
|
1552 |
+
#~ msgstr "Реклама"
|
1553 |
+
|
1554 |
+
#~ msgid "Content & Media"
|
1555 |
+
#~ msgstr "Зміст та мультимедійні елементи"
|
1556 |
+
|
1557 |
+
#~ msgid "Management"
|
1558 |
+
#~ msgstr "Управління"
|
1559 |
+
|
1560 |
+
#~ msgid "Site Stats"
|
1561 |
+
#~ msgstr "Статистика сайту"
|
1562 |
+
|
1563 |
+
#~ msgid "Social"
|
1564 |
+
#~ msgstr "Соціальні сервіси"
|
1565 |
+
|
1566 |
+
#~ msgid "Utilities"
|
1567 |
+
#~ msgstr "Утиліти"
|
1568 |
+
|
1569 |
+
#~ msgid "Other"
|
1570 |
+
#~ msgstr "Інше"
|
1571 |
+
|
1572 |
+
#~ msgid ""
|
1573 |
+
#~ "Manage database and file system right from your WordPress admin dashboard."
|
1574 |
+
#~ msgstr ""
|
1575 |
+
#~ "Керуйте базою даних і файловою системою прямо з панелі адміністратора "
|
1576 |
+
#~ "WordPress."
|
1577 |
+
|
1578 |
+
#~ msgid ""
|
1579 |
+
#~ "Add featured posts to WordPress website posts and widgets. Highlight "
|
1580 |
+
#~ "important information."
|
1581 |
+
#~ msgstr ""
|
1582 |
+
#~ "Додавайте обрані публікації до постів і віджетів сайту WordPress. "
|
1583 |
+
#~ "Підкреслюйте важливу інформацію."
|
1584 |
+
|
1585 |
+
#~ msgid ""
|
1586 |
+
#~ "Add widgets Latest Posts or Latest Posts for Selected Categories to your "
|
1587 |
+
#~ "WordPress website."
|
1588 |
+
#~ msgstr ""
|
1589 |
+
#~ "Додавайте віджет найновішіх постів або найновішіх постів для обраних "
|
1590 |
+
#~ "категорій на сайт WordPress."
|
1591 |
+
|
1592 |
+
#~ msgid ""
|
1593 |
+
#~ "Track views, comments and add the most popular posts to Wordpress widgets."
|
1594 |
+
#~ msgstr ""
|
1595 |
+
#~ "Відстежуйте перегляди, коментарі та додавайте найпопулярніші пости у "
|
1596 |
+
#~ "віджети сайту Wordpress."
|
1597 |
+
|
1598 |
+
#~ msgid ""
|
1599 |
+
#~ "Add latest posts or latest posts for selected categories widgets to "
|
1600 |
+
#~ "WordPress website."
|
1601 |
+
#~ msgstr ""
|
1602 |
+
#~ "Додавайте віджет найновішіх постів або найновішіх постів для обраних "
|
1603 |
+
#~ "категорій на сайт WordPress."
|
1604 |
|
1605 |
#~ msgid "Thank you for installing"
|
1606 |
#~ msgstr "Дякуємо, що встановили"
|
1718 |
#~ msgid "Preview"
|
1719 |
#~ msgstr "Попередній перегляд"
|
1720 |
|
|
|
|
|
|
|
1721 |
#~ msgid ""
|
1722 |
#~ "(your username is the email you specify when purchasing the product), "
|
1723 |
#~ "where you can make the necessary changes."
|
bws_menu/product_list.php
CHANGED
@@ -4,22 +4,22 @@
|
|
4 |
*/
|
5 |
|
6 |
$bws_plugins_category = array(
|
7 |
-
'
|
8 |
-
'content
|
9 |
-
'
|
10 |
-
'
|
11 |
-
'
|
12 |
-
'
|
13 |
-
'
|
14 |
-
'
|
15 |
-
'
|
16 |
);
|
17 |
|
18 |
$bws_plugins = array(
|
19 |
'captcha/captcha.php' => array(
|
20 |
'category' => array( 'security', 'recommended' ),
|
21 |
'name' => 'Captcha',
|
22 |
-
'description' => 'Protect WordPress website forms from spam entries by means of math logic.',
|
23 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/captcha/?k=d678516c0990e781edfb6a6c874f0b8a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
24 |
'settings' => 'admin.php?page=captcha.php',
|
25 |
'pro_version' => 'captcha-pro/captcha_pro.php',
|
@@ -27,9 +27,9 @@ $bws_plugins = array(
|
|
27 |
'pro_settings' => 'admin.php?page=captcha_pro.php'
|
28 |
),
|
29 |
'car-rental/car-rental.php' => array(
|
30 |
-
'category' => array( '
|
31 |
'name' => 'Car Rental',
|
32 |
-
'description' => 'Create your personal car rental/booking and reservation website.',
|
33 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/car-rental/?k=444cac6df9a0d3a9763ab4753d24941b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
34 |
'settings' => 'admin.php?page=car-rental-settings',
|
35 |
'pro_version' => 'car-rental-pro/car-rental-pro.php',
|
@@ -37,9 +37,9 @@ $bws_plugins = array(
|
|
37 |
'pro_settings' => 'admin.php?page=car-rental-pro-settings'
|
38 |
),
|
39 |
'contact-form-plugin/contact_form.php' => array(
|
40 |
-
'category' => array( '
|
41 |
'name' => 'Contact Form',
|
42 |
-
'description' => 'Allow customers to reach you using secure contact form plugin any website must have.',
|
43 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/contact-form/?k=012327ef413e5b527883e031d43b088b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
44 |
'settings' => 'admin.php?page=contact_form.php',
|
45 |
'pro_version' => 'contact-form-pro/contact_form_pro.php',
|
@@ -47,9 +47,9 @@ $bws_plugins = array(
|
|
47 |
'pro_settings' => 'admin.php?page=contact_form_pro.php'
|
48 |
),
|
49 |
'contact-form-multi/contact-form-multi.php' => array(
|
50 |
-
'category' => array( '
|
51 |
'name' => 'Contact Form Multi',
|
52 |
-
'description' => 'Add unlimited number of contact forms to WordPress website.',
|
53 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/contact-form-multi/?k=83cdd9e72a9f4061122ad28a67293c72&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
54 |
'settings' => '',
|
55 |
'pro_version' => 'contact-form-multi-pro/contact-form-multi-pro.php',
|
@@ -57,9 +57,9 @@ $bws_plugins = array(
|
|
57 |
'pro_settings' => ''
|
58 |
),
|
59 |
'contact-form-to-db/contact_form_to_db.php' => array(
|
60 |
-
'category' => array( '
|
61 |
'name' => 'Contact Form to DB',
|
62 |
-
'description' => 'Save and manage
|
63 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/contact-form-to-db/?k=ba3747d317c2692e4136ca096a8989d6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
64 |
'settings' => 'admin.php?page=cntctfrmtdb_settings',
|
65 |
'pro_version' => 'contact-form-to-db-pro/contact_form_to_db_pro.php',
|
@@ -67,107 +67,87 @@ $bws_plugins = array(
|
|
67 |
'pro_settings' => 'admin.php?page=cntctfrmtdbpr_settings'
|
68 |
),
|
69 |
'custom-admin-page/custom-admin-page.php' => array(
|
70 |
-
'category' => array( '
|
71 |
'name' => 'Custom Admin Page',
|
72 |
-
'description' => 'Add unlimited custom pages to WordPress admin dashboard.',
|
73 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/custom-admin-page/?k=9ac03f16c25e845e8e055a221c3e1467&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
74 |
'settings' => 'admin.php?page=custom-admin-page.php'
|
75 |
),
|
76 |
'custom-fields-search/custom-fields-search.php' => array(
|
77 |
-
'category' => array( '
|
78 |
'name' => 'Custom Fields Search',
|
79 |
-
'description' => 'Add custom fields to WordPress website search results.',
|
80 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/custom-fields-search/?k=f3f8285bb069250c42c6ffac95ed3284&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
81 |
'settings' => 'admin.php?page=custom_fields_search.php'
|
82 |
),
|
83 |
'custom-search-plugin/custom-search-plugin.php' => array(
|
84 |
-
'category' => array( '
|
85 |
'name' => 'Custom Search',
|
86 |
-
'description' => 'Add custom post types to WordPress website search results.',
|
87 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/custom-search/?k=933be8f3a8b8719d95d1079d15443e29&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
88 |
'settings' => 'admin.php?page=custom_search.php',
|
89 |
'pro_version' => 'custom-search-pro/custom-search-pro.php',
|
90 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/custom-search/buy/?k=062b652ac6ac8ba863c9f30fc21d62c6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
91 |
'pro_settings' => 'admin.php?page=custom_search_pro.php'
|
92 |
),
|
93 |
-
'db-manager/db-manager.php' => array(
|
94 |
-
'category' => array( 'utilities' ),
|
95 |
-
'name' => 'DB Manager',
|
96 |
-
'description' => 'Manage database and file system right from your WordPress admin dashboard.',
|
97 |
-
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/db-manager/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
98 |
-
'install_url' => 'https://bestwebsoft.com/products/wordpress/plugins/db-manager/download/?k=01ed9731780d87f85f5901064b7d76d8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
99 |
-
'settings' => 'admin.php?page=db-manager.php',
|
100 |
-
'icon' => bws_menu_url( 'icons/plugins/' ) . 'db-manager.png'
|
101 |
-
),
|
102 |
'donate-button/donate.php' => array(
|
103 |
-
'category' => array( '
|
104 |
'name' => 'Donate',
|
105 |
-
'description' => 'Add PayPal and 2CO donate buttons to receive charity payments.',
|
106 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/donate/?k=a8b2e2a56914fb1765dd20297c26401b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
107 |
'settings' => 'admin.php?page=donate.php'
|
108 |
),
|
109 |
-
'email-queue/email-queue.php' => array(
|
110 |
-
'category' => array( 'other' ),
|
111 |
-
'name' => 'Email Queue',
|
112 |
-
'description' => 'Automatically add outgoing email messages to queue instead of sending them immediately.',
|
113 |
-
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/email-queue/?k=e345e1b6623f0dca119bc2d9433b130b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
114 |
-
'settings' => 'admin.php?page=mlq_settings'
|
115 |
-
),
|
116 |
'error-log-viewer/error-log-viewer.php' => array(
|
117 |
-
'category' => array( '
|
118 |
'name' => 'Error Log Viewer',
|
119 |
-
'description' => 'Get latest error log messages to diagnose website problems. Define and fix issues faster.',
|
120 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/error-log-viewer/?k=da0de8bd2c7a0b2fea5df64d55a368b3&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
121 |
'settings' => 'admin.php?page=rrrlgvwr.php&tab=settings'
|
122 |
),
|
123 |
'facebook-button-plugin/facebook-button-plugin.php' => array(
|
124 |
-
'category' => array( '
|
125 |
'name' => 'Facebook Button',
|
126 |
-
'description' => 'Add Facebook Like,
|
127 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/facebook-like-button/?k=05ec4f12327f55848335802581467d55&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
128 |
'settings' => 'admin.php?page=facebook-button-plugin.php',
|
129 |
'pro_version' => 'facebook-button-pro/facebook-button-pro.php',
|
130 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/facebook-like-button/buy/?k=8da168e60a831cfb3525417c333ad275&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
131 |
'pro_settings' => 'admin.php?page=facebook-button-pro.php'
|
132 |
),
|
133 |
-
'bws-featured-posts/bws-featured-posts.php' => array(
|
134 |
-
'category' => array( 'content-and-media' ),
|
135 |
-
'name' => 'Featured Posts',
|
136 |
-
'description' => 'Add featured posts to WordPress posts or widgets. Highlight important information.',
|
137 |
-
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/featured-posts/?k=f0afb31185ba7c7d6d598528d69f6d97&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
138 |
-
'settings' => 'admin.php?page=featured-posts.php'
|
139 |
-
),
|
140 |
'gallery-plugin/gallery-plugin.php' => array(
|
141 |
-
'category' => array( 'content
|
142 |
'name' => 'Gallery',
|
143 |
-
'description' => 'Add beautiful galleries, albums & images to your
|
144 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/gallery/?k=2da21c0a64eec7ebf16337fa134c5f78&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
145 |
'settings' => 'admin.php?page=gallery-plugin.php',
|
146 |
'pro_version' => 'gallery-plugin-pro/gallery-plugin-pro.php',
|
147 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/gallery/buy/?k=382e5ce7c96a6391f5ffa5e116b37fe0&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
148 |
'pro_settings' => 'admin.php?page=gallery-plugin-pro.php'
|
149 |
),
|
150 |
-
'gallery-categories/gallery-categories.php' => array(
|
151 |
-
'category' => array( 'content-and-media' ),
|
152 |
-
'name' => 'Gallery Categories',
|
153 |
-
'description' => 'Add unlimited gallery categories. Organize images to make the navigation through content easier.',
|
154 |
-
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/gallery-categories/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
155 |
-
'settings' => ''
|
156 |
-
),
|
157 |
'google-one/google-plus-one.php' => array(
|
158 |
-
'category' => array( '
|
159 |
'name' => 'Google +1',
|
160 |
-
'description' => 'Add Google +1 Share, Follow, Hangout buttons and profile badge to WordPress posts, pages and widgets.',
|
161 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-plus-one/?k=ce7a88837f0a857b3a2bb142f470853c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
162 |
'settings' => 'admin.php?page=google-plus-one.php',
|
163 |
'pro_version' => 'google-one-pro/google-plus-one-pro.php',
|
164 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/google-plus-one/buy/?k=f4b0a62d155c9df9601a0531ad5bd832&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
165 |
'pro_settings' => 'admin.php?page=google-plus-one-pro.php'
|
166 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
167 |
'adsense-plugin/adsense-plugin.php' => array(
|
168 |
-
'category' => array( '
|
169 |
'name' => 'Google AdSense',
|
170 |
-
'description' => 'Add Adsense ads to pages, posts, custom posts, search results, categories, tags,
|
171 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-adsense/?k=60e3979921e354feb0347e88e7d7b73d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
172 |
'settings' => 'admin.php?page=adsense-plugin.php',
|
173 |
'pro_version' => 'adsense-pro/adsense-pro.php',
|
@@ -175,9 +155,9 @@ $bws_plugins = array(
|
|
175 |
'pro_settings' => 'admin.php?page=adsense-pro.php'
|
176 |
),
|
177 |
'bws-google-analytics/bws-google-analytics.php' => array(
|
178 |
-
'category' => array( '
|
179 |
'name' => 'Google Analytics',
|
180 |
-
'description' => 'Add Google Analytics code to WordPress website and track basic stats.',
|
181 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/bws-google-analytics/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
182 |
'settings' => 'admin.php?page=bws-google-analytics.php',
|
183 |
'pro_version' => 'bws-google-analytics-pro/bws-google-analytics-pro.php',
|
@@ -187,7 +167,7 @@ $bws_plugins = array(
|
|
187 |
'google-captcha/google-captcha.php' => array(
|
188 |
'category' => array( 'security', 'recommended' ),
|
189 |
'name' => 'Google Captcha (reCAPTCHA)',
|
190 |
-
'description' => 'Protect WordPress website forms from spam entries with Google Captcha (reCaptcha).',
|
191 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-captcha/?k=7b59fbe542acf950b29f3e020d5ad735&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
192 |
'settings' => 'admin.php?page=google-captcha.php',
|
193 |
'pro_version' => 'google-captcha-pro/google-captcha-pro.php',
|
@@ -195,9 +175,9 @@ $bws_plugins = array(
|
|
195 |
'pro_settings' => 'admin.php?page=google-captcha-pro.php'
|
196 |
),
|
197 |
'bws-google-maps/bws-google-maps.php' => array(
|
198 |
-
'category' => array( 'content
|
199 |
'name' => 'Google Maps',
|
200 |
-
'description' => 'Add customized Google maps to WordPress posts, pages and widgets.',
|
201 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/bws-google-maps/?k=d8fac412d7359ebaa4ff53b46572f9f7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
202 |
'settings' => 'admin.php?page=bws-google-maps.php',
|
203 |
'pro_version' => 'bws-google-maps-pro/bws-google-maps-pro.php',
|
@@ -205,9 +185,9 @@ $bws_plugins = array(
|
|
205 |
'pro_settings' => 'admin.php?page=bws-google-maps-pro.php'
|
206 |
),
|
207 |
'google-sitemap-plugin/google-sitemap-plugin.php' => array(
|
208 |
-
'category' => array( '
|
209 |
'name' => 'Google Sitemap',
|
210 |
-
'description' => 'Generate and add XML sitemap to WordPress website. Help search engines index your blog.',
|
211 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-sitemap/?k=5202b2f5ce2cf85daee5e5f79a51d806&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
212 |
'settings' => 'admin.php?page=google-sitemap-plugin.php',
|
213 |
'pro_version' => 'google-sitemap-pro/google-sitemap-pro.php',
|
@@ -215,16 +195,16 @@ $bws_plugins = array(
|
|
215 |
'pro_settings' => 'admin.php?page=google-sitemap-pro.php'
|
216 |
),
|
217 |
'google-shortlink/google-shortlink.php' => array(
|
218 |
-
'category' => array( '
|
219 |
'name' => 'Google Shortlink',
|
220 |
-
'description' => 'Replace external WordPress website links with Google shortlinks and track click stats.',
|
221 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-shortlink/?k=afcf3eaed021bbbbeea1090e16bc22db&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
222 |
'settings' => 'admin.php?page=gglshrtlnk_options'
|
223 |
),
|
224 |
'htaccess/htaccess.php' => array(
|
225 |
'category' => array( 'security' ),
|
226 |
'name' => 'Htaccess',
|
227 |
-
'description' => 'Protect WordPress website – allow and deny access for certain IP addresses, hostnames, etc.',
|
228 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/htaccess/?k=2b865fcd56a935d22c5c4f1bba52ed46&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
229 |
'settings' => 'admin.php?page=htaccess.php',
|
230 |
'pro_version' => 'htaccess-pro/htaccess-pro.php',
|
@@ -232,23 +212,16 @@ $bws_plugins = array(
|
|
232 |
'pro_settings' => 'admin.php?page=htaccess-pro.php'
|
233 |
),
|
234 |
'job-board/job-board.php' => array(
|
235 |
-
'category' => array( '
|
236 |
'name' => 'Job Board',
|
237 |
-
'description' => 'Create your personal job board and listing WordPress website. Search jobs, submit CV/resumes, choose candidates.',
|
238 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/job-board/?k=b0c504c9ce6edd6692e04222af3fed6f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
239 |
'settings' => 'admin.php?page=job-board.php'
|
240 |
),
|
241 |
-
'bws-latest-posts/bws-latest-posts.php' => array(
|
242 |
-
'category' => array( 'content-and-media' ),
|
243 |
-
'name' => 'Latest Posts',
|
244 |
-
'description' => 'Add latest posts or latest posts for selected categories widgets to WordPress website.',
|
245 |
-
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/latest-posts/?k=ef4e125aadadd8d219140daa184a9399&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
246 |
-
'settings' => 'admin.php?page=latest-posts.php'
|
247 |
-
),
|
248 |
'limit-attempts/limit-attempts.php' => array(
|
249 |
'category' => array( 'security', 'recommended' ),
|
250 |
'name' => 'Limit Attempts',
|
251 |
-
'description' => 'Protect WordPress website against brute force attacks. Limit rate of login attempts.',
|
252 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/limit-attempts/?k=b14e1697ee4d008abcd4bd34d492573a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
253 |
'settings' => 'admin.php?page=limit-attempts.php',
|
254 |
'pro_version' => 'limit-attempts-pro/limit-attempts-pro.php',
|
@@ -256,9 +229,9 @@ $bws_plugins = array(
|
|
256 |
'pro_settings' => 'admin.php?page=limit-attempts-pro.php'
|
257 |
),
|
258 |
'bws-linkedin/bws-linkedin.php' => array(
|
259 |
-
'category' => array( '
|
260 |
'name' => 'LinkedIn',
|
261 |
-
'description' => 'Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. 5 plugins included – profile, insider, etc.',
|
262 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/linkedin/?k=d63c7319622ccc5f589dd2d545c1d77c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
263 |
'settings' => 'admin.php?page=linkedin.php',
|
264 |
'pro_version' => 'bws-linkedin-pro/bws-linkedin-pro.php',
|
@@ -266,9 +239,9 @@ $bws_plugins = array(
|
|
266 |
'pro_settings' => 'admin.php?page=linkedin-pro.php'
|
267 |
),
|
268 |
'multilanguage/multilanguage.php' => array(
|
269 |
-
'category' => array( 'content
|
270 |
'name' => 'Multilanguage',
|
271 |
-
'description' => 'Translate WordPress website content to other languages manually. Create multilingual pages, posts, widgets, menus, etc.',
|
272 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/multilanguage/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
273 |
'settings' => 'admin.php?page=mltlngg_settings',
|
274 |
'pro_version' => 'multilanguage-pro/multilanguage-pro.php',
|
@@ -276,9 +249,9 @@ $bws_plugins = array(
|
|
276 |
'pro_settings' => 'admin.php?page=mltlnggpr_settings'
|
277 |
),
|
278 |
'pagination/pagination.php' => array(
|
279 |
-
'category' => array( '
|
280 |
'name' => 'Pagination',
|
281 |
-
'description' => 'Add customizable pagination to WordPress website. Split long content to multiple pages for better navigation.',
|
282 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/pagination/?k=22adb940256f149559ba8fedcd728ac8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
283 |
'settings' => 'admin.php?page=pagination.php',
|
284 |
'pro_version' => 'pagination-pro/pagination-pro.php',
|
@@ -286,9 +259,9 @@ $bws_plugins = array(
|
|
286 |
'pro_settings' => 'admin.php?page=pagination-pro.php'
|
287 |
),
|
288 |
'pdf-print/pdf-print.php' => array(
|
289 |
-
'category' => array( '
|
290 |
'name' => 'PDF & Print',
|
291 |
-
'description' => 'Generate PDF files and print WordPress posts/pages. Customize document header/footer styles and appearance.',
|
292 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/pdf-print/?k=bfefdfb522a4c0ff0141daa3f271840c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
293 |
'settings' => 'admin.php?page=pdf-print.php',
|
294 |
'pro_version' => 'pdf-print-pro/pdf-print-pro.php',
|
@@ -296,26 +269,19 @@ $bws_plugins = array(
|
|
296 |
'pro_settings' => 'admin.php?page=pdf-print-pro.php'
|
297 |
),
|
298 |
'bws-pinterest/bws-pinterest.php' => array(
|
299 |
-
'category' => array( '
|
300 |
'name' => 'Pinterest',
|
301 |
-
'description' => 'Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, Profile) to WordPress posts, pages and widgets.',
|
302 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/pinterest/?k=504107b6213f247a67fe7ffb94e97c78&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
303 |
'settings' => 'admin.php?page=pinterest.php',
|
304 |
'pro_version' => 'bws-pinterest-pro/bws-pinterest-pro.php',
|
305 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/pinterest/buy/?k=ab0069edd1914a3ca8f541bfd88bb0bb&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
306 |
'pro_settings' => 'admin.php?page=pinterest-pro.php'
|
307 |
),
|
308 |
-
'bws-popular-posts/bws-popular-posts.php' => array(
|
309 |
-
'category' => array( 'content-and-media', 'recommended' ),
|
310 |
-
'name' => 'Popular Posts',
|
311 |
-
'description' => 'Track views, comments and add most popular posts to Wordpress widgets.',
|
312 |
-
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/popular-posts/?k=4d529f116d2b7f7df3a78018c383f975&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
313 |
-
'settings' => 'admin.php?page=popular-posts.php'
|
314 |
-
),
|
315 |
'portfolio/portfolio.php' => array(
|
316 |
-
'category' => array( 'content
|
317 |
'name' => 'Portfolio',
|
318 |
-
'description' => 'Create your personal portfolio WordPress website. Manage and showcase past projects to get more clients.',
|
319 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/portfolio/?k=1249a890c5b7bba6bda3f528a94f768b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
320 |
'settings' => 'admin.php?page=portfolio.php',
|
321 |
'pro_version' => 'portfolio-pro/portfolio-pro.php',
|
@@ -323,23 +289,23 @@ $bws_plugins = array(
|
|
323 |
'pro_settings' => 'admin.php?page=portfolio-pro.php'
|
324 |
),
|
325 |
'post-to-csv/post-to-csv.php' => array(
|
326 |
-
'category' => array( '
|
327 |
'name' => 'Post to CSV',
|
328 |
-
'description' => 'Export WordPress posts to CSV file format easily. Configure data order.',
|
329 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/post-to-csv/?k=653aa55518ae17409293a7a894268b8f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
330 |
'settings' => 'admin.php?page=post-to-csv.php'
|
331 |
),
|
332 |
'profile-extra-fields/profile-extra-fields.php' => array(
|
333 |
-
'category' => array( '
|
334 |
'name' => 'Profile Extra Fields',
|
335 |
-
'description' => 'Add extra fields to default WordPress user profile. The easiest way to create and manage additional custom values.',
|
336 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/profile-extra-fields/?k=fe3b6c3dbc80bd4b1cf9a27a2f339820&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
337 |
'settings' => 'admin.php?page=profile-extra-fields.php'
|
338 |
),
|
339 |
'promobar/promobar.php' => array(
|
340 |
-
'category' => array( '
|
341 |
'name' => 'PromoBar',
|
342 |
-
'description' => 'Add and display HTML advertisement on WordPress website. Customize bar styles and appearance.',
|
343 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/promobar/?k=619eac2232d9cfa382c4e678c3b14766&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
344 |
'settings' => 'admin.php?page=promobar.php',
|
345 |
'pro_version' => 'promobar-pro/promobar-pro.php',
|
@@ -347,64 +313,64 @@ $bws_plugins = array(
|
|
347 |
'pro_settings' => 'admin.php?page=promobar-pro.php'
|
348 |
),
|
349 |
'quotes-and-tips/quotes-and-tips.php' => array(
|
350 |
-
'category' => array( 'content
|
351 |
'name' => 'Quotes and Tips',
|
352 |
-
'description' => 'Add customizable quotes and tips blocks to WordPress posts, pages and widgets.',
|
353 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/quotes-and-tips/?k=5738a4e85a798c4a5162240c6515098d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
354 |
'settings' => 'admin.php?page=quotes-and-tips.php'
|
355 |
),
|
356 |
'rating-bws/rating-bws.php' => array(
|
357 |
-
'category' => array( '
|
358 |
'name' => 'Rating',
|
359 |
-
'description' => 'Add rating plugin to your WordPress website to receive feedback from your customers.',
|
360 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/rating/?k=c00e0824bb999735a3224616ef51f4c5&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
361 |
'settings' => 'admin.php?page=rating.php'
|
362 |
),
|
363 |
'realty/realty.php' => array(
|
364 |
-
'category' => array( '
|
365 |
'name' => 'Realty',
|
366 |
-
'description' => 'Create your personal real estate WordPress website. Sell, rent and buy properties. Add, search and browse listings easily.',
|
367 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/realty/?k=d55de979dbbbb7af0b2ff1d7f43884fa&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
368 |
'settings' => 'admin.php?page=realty_settings',
|
369 |
'pro_version' => 'realty-pro/realty-pro.php',
|
370 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/realty/buy/?k=c7791f0a72acfb36f564a614dbccb474&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
371 |
'pro_settings' => 'admin.php?page=realty_pro_settings'
|
372 |
),
|
373 |
-
're-attacher/re-attacher.php' => array(
|
374 |
-
'category' => array( 'utilities' ),
|
375 |
-
'name' => 'Re-attacher',
|
376 |
-
'description' => 'Attach, unattach and re-attach media files quickly to WordPress posts and pages.',
|
377 |
-
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/re-attacher/?k=4d529f116d2b7f7df3a78018c383f975&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
378 |
-
'settings' => 'admin.php?page=re-attacher.php'
|
379 |
-
),
|
380 |
'relevant/related-posts-plugin.php' => array(
|
381 |
-
'category' => array( '
|
382 |
-
'name' => 'Relevant - Related Posts',
|
383 |
-
'description' => 'Add related posts to WordPress
|
384 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/related-posts/?k=73fb737037f7141e66415ec259f7e426&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
385 |
'settings' => 'admin.php?page=related-posts-plugin.php'
|
386 |
),
|
387 |
'sender/sender.php' => array(
|
388 |
-
'category' => array( '
|
389 |
'name' => 'Sender',
|
390 |
-
'description' => 'Send bulk email messages to WordPress users. Custom templates, advanced settings and detailed reports.',
|
391 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/sender/?k=89c297d14ba85a8417a0f2fc05e089c7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
392 |
'settings' => 'admin.php?page=sndr_settings',
|
393 |
'pro_version' => 'sender-pro/sender-pro.php',
|
394 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/sender/buy/?k=dc5d1a87bdc8aeab2de40ffb99b38054&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
395 |
'pro_settings' => 'admin.php?page=sndrpr_settings'
|
396 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
397 |
'bws-smtp/bws-smtp.php' => array(
|
398 |
-
'category' => array( '
|
399 |
'name' => 'SMTP',
|
400 |
-
'description' => 'Configure SMTP server to receive email messages from WordPress to Gmail, Yahoo, Hotmail and other services.',
|
401 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/smtp/?k=0546419f962704429ad2d9b88567752f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
402 |
'settings' => 'admin.php?page=bwssmtp_settings'
|
403 |
),
|
404 |
'social-buttons-pack/social-buttons-pack.php' => array(
|
405 |
-
'category' => array( '
|
406 |
'name' => 'Social Buttons Pack',
|
407 |
-
'description' => 'Add social media buttons and widgets to WordPress posts, pages and widgets. FB, Twitter, G+1, Pinterest, LinkedIn.',
|
408 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/social-buttons-pack/?k=b6440fad9f54274429e536b0c61b42da&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
409 |
'settings' => 'admin.php?page=social-buttons.php',
|
410 |
'pro_version' => 'social-buttons-pack-pro/social-buttons-pack-pro.php',
|
@@ -412,16 +378,16 @@ $bws_plugins = array(
|
|
412 |
'pro_settings' => 'admin.php?page=social-buttons.php'
|
413 |
),
|
414 |
'social-login-bws/social-login-bws.php' => array(
|
415 |
-
'category' => array( '
|
416 |
'name' => 'Social Login',
|
417 |
-
'description' => 'Add social media login, registration, and commenting to your WordPress website.',
|
418 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/social-login/?k=62817c9c94f24129e40894e1d9c3f49d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
419 |
'settings' => 'admin.php?page=social-login.php'
|
420 |
),
|
421 |
'subscriber/subscriber.php' => array(
|
422 |
-
'category' => array( '
|
423 |
'name' => 'Subscriber',
|
424 |
-
'description' => 'Add email newsletter sign up form to WordPress posts, pages and widgets. Collect data and subscribe your users.',
|
425 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/subscriber/?k=a4ecc1b7800bae7329fbe8b4b04e9c88&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
426 |
'settings' => 'admin.php?page=sbscrbr_settings_page',
|
427 |
'pro_version' => 'subscriber-pro/subscriber-pro.php',
|
@@ -429,16 +395,16 @@ $bws_plugins = array(
|
|
429 |
'pro_settings' => 'admin.php?page=sbscrbrpr_settings_page'
|
430 |
),
|
431 |
'bws-testimonials/bws-testimonials.php' => array(
|
432 |
-
'category' => array( '
|
433 |
'name' => 'Testimonials',
|
434 |
-
'description' => 'Add testimonials and feedbacks from your customers to WordPress posts, pages and widgets.',
|
435 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/testimonials/?k=3fe4bb89dc901c98e43a113e08f8db73&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
436 |
'settings' => 'admin.php?page=testimonials.php'
|
437 |
),
|
438 |
'timesheet/timesheet.php' => array(
|
439 |
-
'category' => array( '
|
440 |
'name' => 'Timesheet',
|
441 |
-
'description' => 'Best timesheet plugin for WordPress. Track employee time, streamline attendance and generate reports.',
|
442 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/timesheet/?k=06a58bb78c17a43df01825925f05a5c1&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
443 |
'settings' => 'admin.php?page=timesheet_settings',
|
444 |
'pro_version' => 'timesheet-pro/timesheet-pro.php',
|
@@ -446,9 +412,9 @@ $bws_plugins = array(
|
|
446 |
'pro_settings' => 'admin.php?page=timesheet_pro_settings'
|
447 |
),
|
448 |
'twitter-plugin/twitter.php' => array(
|
449 |
-
'category' => array( '
|
450 |
'name' => 'Twitter',
|
451 |
-
'description' => 'Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts
|
452 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/twitter/?k=f8cb514e25bd7ec4974d64435c5eb333&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
453 |
'settings' => 'admin.php?page=twitter.php',
|
454 |
'pro_version' => 'twitter-pro/twitter-pro.php',
|
@@ -456,9 +422,9 @@ $bws_plugins = array(
|
|
456 |
'pro_settings' => 'admin.php?page=twitter-pro.php'
|
457 |
),
|
458 |
'updater/updater.php' => array(
|
459 |
-
'category' => array( '
|
460 |
'name' => 'Updater',
|
461 |
-
'description' => 'Automatically check and update WordPress website core with all installed plugins and themes to the latest versions.',
|
462 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/updater/?k=66f3ecd4c1912009d395c4bb30f779d1&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
463 |
'settings' => 'admin.php?page=updater-options',
|
464 |
'pro_version' => 'updater-pro/updater_pro.php',
|
@@ -466,9 +432,9 @@ $bws_plugins = array(
|
|
466 |
'pro_settings' => 'admin.php?page=updater-pro-options'
|
467 |
),
|
468 |
'user-role/user-role.php' => array(
|
469 |
-
'category' => array( '
|
470 |
'name' => 'User Role',
|
471 |
-
'description' => 'Powerful user role management plugin for WordPress website. Create, edit, copy, and delete user roles.',
|
472 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/user-role/?k=dfe2244835c6fbf601523964b3f34ccc&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
473 |
'settings' => 'admin.php?page=user-role.php',
|
474 |
'pro_version' => 'user-role-pro/user-role-pro.php',
|
@@ -476,9 +442,9 @@ $bws_plugins = array(
|
|
476 |
'pro_settings' => 'admin.php?page=user-role-pro.php'
|
477 |
),
|
478 |
'visitors-online/visitors-online.php' => array(
|
479 |
-
'category' => array( '
|
480 |
'name' => 'Visitors Online',
|
481 |
-
'description' => 'Display live count of online visitors who are currently browsing your WordPress website.',
|
482 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/visitors-online/?k=93c28013a4f830671b3bba9502ed5177&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
483 |
'settings' => 'admin.php?page=visitors-online.php',
|
484 |
'pro_version' => 'visitors-online-pro/visitors-online-pro.php',
|
@@ -486,9 +452,9 @@ $bws_plugins = array(
|
|
486 |
'pro_settings' => 'admin.php?page=visitors-online-pro.php'
|
487 |
),
|
488 |
'zendesk-help-center/zendesk-help-center.php' => array(
|
489 |
-
'category' => array( '
|
490 |
'name' => 'Zendesk Help Center',
|
491 |
-
'description' => 'Backup and export Zendesk Help Center content automatically to your WordPress website database.',
|
492 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/zendesk-help-center/?k=2a5fd2f4b2f4bde46f2ca44b8d15846d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
493 |
'settings' => 'admin.php?page=zendesk_hc.php&action=settings',
|
494 |
'pro_version' => 'zendesk-help-center-pro/zendesk-help-center-pro.php',
|
4 |
*/
|
5 |
|
6 |
$bws_plugins_category = array(
|
7 |
+
'admin-tools' => array( 'name' => __( 'Admin Tools', 'bestwebsoft' ) ),
|
8 |
+
'content' => array( 'name' => __( 'Content', 'bestwebsoft' ) ),
|
9 |
+
'ecommerce' => array( 'name' => __( 'eCommerce', 'bestwebsoft' ) ),
|
10 |
+
'marketing' => array( 'name' => __( 'Marketing', 'bestwebsoft' ) ),
|
11 |
+
'navigation' => array( 'name' => __( 'Navigation', 'bestwebsoft' ) ),
|
12 |
+
'recommended' => array( 'name' => __( 'Recommended', 'bestwebsoft' ) ),
|
13 |
+
'security' => array( 'name' => __( 'Security', 'bestwebsoft' ) ),
|
14 |
+
'seo' => array( 'name' => __( 'SEO', 'bestwebsoft' ) ),
|
15 |
+
'smm' => array( 'name' => __( 'SMM', 'bestwebsoft' ) ),
|
16 |
);
|
17 |
|
18 |
$bws_plugins = array(
|
19 |
'captcha/captcha.php' => array(
|
20 |
'category' => array( 'security', 'recommended' ),
|
21 |
'name' => 'Captcha',
|
22 |
+
'description' => __( 'Protect WordPress website forms from spam entries by means of math logic.', 'bestwebsoft' ),
|
23 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/captcha/?k=d678516c0990e781edfb6a6c874f0b8a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
24 |
'settings' => 'admin.php?page=captcha.php',
|
25 |
'pro_version' => 'captcha-pro/captcha_pro.php',
|
27 |
'pro_settings' => 'admin.php?page=captcha_pro.php'
|
28 |
),
|
29 |
'car-rental/car-rental.php' => array(
|
30 |
+
'category' => array( 'ecommerce' ),
|
31 |
'name' => 'Car Rental',
|
32 |
+
'description' => __( 'Create your personal car rental/booking and reservation website.', 'bestwebsoft' ),
|
33 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/car-rental/?k=444cac6df9a0d3a9763ab4753d24941b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
34 |
'settings' => 'admin.php?page=car-rental-settings',
|
35 |
'pro_version' => 'car-rental-pro/car-rental-pro.php',
|
37 |
'pro_settings' => 'admin.php?page=car-rental-pro-settings'
|
38 |
),
|
39 |
'contact-form-plugin/contact_form.php' => array(
|
40 |
+
'category' => array( 'marketing', 'recommended' ),
|
41 |
'name' => 'Contact Form',
|
42 |
+
'description' => __( 'Allow customers to reach you using secure contact form plugin any website must have.', 'bestwebsoft' ),
|
43 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/contact-form/?k=012327ef413e5b527883e031d43b088b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
44 |
'settings' => 'admin.php?page=contact_form.php',
|
45 |
'pro_version' => 'contact-form-pro/contact_form_pro.php',
|
47 |
'pro_settings' => 'admin.php?page=contact_form_pro.php'
|
48 |
),
|
49 |
'contact-form-multi/contact-form-multi.php' => array(
|
50 |
+
'category' => array( 'marketing', 'recommended' ),
|
51 |
'name' => 'Contact Form Multi',
|
52 |
+
'description' => __( 'Add unlimited number of contact forms to WordPress website.', 'bestwebsoft' ),
|
53 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/contact-form-multi/?k=83cdd9e72a9f4061122ad28a67293c72&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
54 |
'settings' => '',
|
55 |
'pro_version' => 'contact-form-multi-pro/contact-form-multi-pro.php',
|
57 |
'pro_settings' => ''
|
58 |
),
|
59 |
'contact-form-to-db/contact_form_to_db.php' => array(
|
60 |
+
'category' => array( 'admin-tools', 'recommended' ),
|
61 |
'name' => 'Contact Form to DB',
|
62 |
+
'description' => __( 'Save and manage Contact Form messages. Never lose important data.', 'bestwebsoft' ),
|
63 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/contact-form-to-db/?k=ba3747d317c2692e4136ca096a8989d6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
64 |
'settings' => 'admin.php?page=cntctfrmtdb_settings',
|
65 |
'pro_version' => 'contact-form-to-db-pro/contact_form_to_db_pro.php',
|
67 |
'pro_settings' => 'admin.php?page=cntctfrmtdbpr_settings'
|
68 |
),
|
69 |
'custom-admin-page/custom-admin-page.php' => array(
|
70 |
+
'category' => array( 'admin-tools' ),
|
71 |
'name' => 'Custom Admin Page',
|
72 |
+
'description' => __( 'Add unlimited custom pages to WordPress admin dashboard.', 'bestwebsoft' ),
|
73 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/custom-admin-page/?k=9ac03f16c25e845e8e055a221c3e1467&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
74 |
'settings' => 'admin.php?page=custom-admin-page.php'
|
75 |
),
|
76 |
'custom-fields-search/custom-fields-search.php' => array(
|
77 |
+
'category' => array( 'navigation' ),
|
78 |
'name' => 'Custom Fields Search',
|
79 |
+
'description' => __( 'Add custom fields to WordPress website search results.', 'bestwebsoft' ),
|
80 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/custom-fields-search/?k=f3f8285bb069250c42c6ffac95ed3284&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
81 |
'settings' => 'admin.php?page=custom_fields_search.php'
|
82 |
),
|
83 |
'custom-search-plugin/custom-search-plugin.php' => array(
|
84 |
+
'category' => array( 'navigation' ),
|
85 |
'name' => 'Custom Search',
|
86 |
+
'description' => __( 'Add custom post types and taxonomies to WordPress website search results.', 'bestwebsoft' ),
|
87 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/custom-search/?k=933be8f3a8b8719d95d1079d15443e29&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
88 |
'settings' => 'admin.php?page=custom_search.php',
|
89 |
'pro_version' => 'custom-search-pro/custom-search-pro.php',
|
90 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/custom-search/buy/?k=062b652ac6ac8ba863c9f30fc21d62c6&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
91 |
'pro_settings' => 'admin.php?page=custom_search_pro.php'
|
92 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
93 |
'donate-button/donate.php' => array(
|
94 |
+
'category' => array( 'ecommerce' ),
|
95 |
'name' => 'Donate',
|
96 |
+
'description' => __( 'Add PayPal and 2CO donate buttons to receive charity payments.', 'bestwebsoft' ),
|
97 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/donate/?k=a8b2e2a56914fb1765dd20297c26401b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
98 |
'settings' => 'admin.php?page=donate.php'
|
99 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
'error-log-viewer/error-log-viewer.php' => array(
|
101 |
+
'category' => array( 'admin-tools' ),
|
102 |
'name' => 'Error Log Viewer',
|
103 |
+
'description' => __( 'Get latest error log messages to diagnose website problems. Define and fix issues faster.', 'bestwebsoft' ),
|
104 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/error-log-viewer/?k=da0de8bd2c7a0b2fea5df64d55a368b3&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
105 |
'settings' => 'admin.php?page=rrrlgvwr.php&tab=settings'
|
106 |
),
|
107 |
'facebook-button-plugin/facebook-button-plugin.php' => array(
|
108 |
+
'category' => array( 'smm' ),
|
109 |
'name' => 'Facebook Button',
|
110 |
+
'description' => __( 'Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and widgets.', 'bestwebsoft' ),
|
111 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/facebook-like-button/?k=05ec4f12327f55848335802581467d55&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
112 |
'settings' => 'admin.php?page=facebook-button-plugin.php',
|
113 |
'pro_version' => 'facebook-button-pro/facebook-button-pro.php',
|
114 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/facebook-like-button/buy/?k=8da168e60a831cfb3525417c333ad275&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
115 |
'pro_settings' => 'admin.php?page=facebook-button-pro.php'
|
116 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
117 |
'gallery-plugin/gallery-plugin.php' => array(
|
118 |
+
'category' => array( 'content', 'recommended' ),
|
119 |
'name' => 'Gallery',
|
120 |
+
'description' => __( 'Add beautiful galleries, albums & images to your WordPress website in a few clicks.', 'bestwebsoft' ),
|
121 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/gallery/?k=2da21c0a64eec7ebf16337fa134c5f78&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
122 |
'settings' => 'admin.php?page=gallery-plugin.php',
|
123 |
'pro_version' => 'gallery-plugin-pro/gallery-plugin-pro.php',
|
124 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/gallery/buy/?k=382e5ce7c96a6391f5ffa5e116b37fe0&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
125 |
'pro_settings' => 'admin.php?page=gallery-plugin-pro.php'
|
126 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
127 |
'google-one/google-plus-one.php' => array(
|
128 |
+
'category' => array( 'smm' ),
|
129 |
'name' => 'Google +1',
|
130 |
+
'description' => __( 'Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress posts, pages and widgets.', 'bestwebsoft' ),
|
131 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-plus-one/?k=ce7a88837f0a857b3a2bb142f470853c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
132 |
'settings' => 'admin.php?page=google-plus-one.php',
|
133 |
'pro_version' => 'google-one-pro/google-plus-one-pro.php',
|
134 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/google-plus-one/buy/?k=f4b0a62d155c9df9601a0531ad5bd832&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
135 |
'pro_settings' => 'admin.php?page=google-plus-one-pro.php'
|
136 |
),
|
137 |
+
'bws-google-2-step-verification/bws-google-2-step-verification.php' => array(
|
138 |
+
'category' => array( 'security' ),
|
139 |
+
'name' => 'Google 2-Step Verification',
|
140 |
+
'description' => __( 'Stronger security solution which protects your WordPress website from hacks and unauthorized login attempts.', 'bestwebsoft' ),
|
141 |
+
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-2-step-verification/?k=78de1a525f968d56e39f7325908aa98e&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
142 |
+
'settings' => 'admin.php?page=google-2-step-verification.php',
|
143 |
+
'pro_version' => 'bws-google-2-step-verification-pro/bws-google-2-step-verification-pro.php',
|
144 |
+
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/google-2-step-verification/buy/?k=b5605ea9bb3628682cfa416e70e78410&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
145 |
+
'pro_settings' => 'admin.php?page=google-2-step-verification-pro.php'
|
146 |
+
),
|
147 |
'adsense-plugin/adsense-plugin.php' => array(
|
148 |
+
'category' => array( 'marketing' ),
|
149 |
'name' => 'Google AdSense',
|
150 |
+
'description' => __( 'Add Adsense ads to WordPress website pages, posts, custom posts, search results, categories, tags, and widgets.', 'bestwebsoft' ),
|
151 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-adsense/?k=60e3979921e354feb0347e88e7d7b73d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
152 |
'settings' => 'admin.php?page=adsense-plugin.php',
|
153 |
'pro_version' => 'adsense-pro/adsense-pro.php',
|
155 |
'pro_settings' => 'admin.php?page=adsense-pro.php'
|
156 |
),
|
157 |
'bws-google-analytics/bws-google-analytics.php' => array(
|
158 |
+
'category' => array( 'admin-tools' ),
|
159 |
'name' => 'Google Analytics',
|
160 |
+
'description' => __( 'Add Google Analytics code to WordPress website and track basic stats.', 'bestwebsoft' ),
|
161 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/bws-google-analytics/?k=261c74cad753fb279cdf5a5db63fbd43&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
162 |
'settings' => 'admin.php?page=bws-google-analytics.php',
|
163 |
'pro_version' => 'bws-google-analytics-pro/bws-google-analytics-pro.php',
|
167 |
'google-captcha/google-captcha.php' => array(
|
168 |
'category' => array( 'security', 'recommended' ),
|
169 |
'name' => 'Google Captcha (reCAPTCHA)',
|
170 |
+
'description' => __( 'Protect WordPress website forms from spam entries with Google Captcha (reCaptcha).', 'bestwebsoft' ),
|
171 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-captcha/?k=7b59fbe542acf950b29f3e020d5ad735&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
172 |
'settings' => 'admin.php?page=google-captcha.php',
|
173 |
'pro_version' => 'google-captcha-pro/google-captcha-pro.php',
|
175 |
'pro_settings' => 'admin.php?page=google-captcha-pro.php'
|
176 |
),
|
177 |
'bws-google-maps/bws-google-maps.php' => array(
|
178 |
+
'category' => array( 'content' ),
|
179 |
'name' => 'Google Maps',
|
180 |
+
'description' => __( 'Add customized Google maps to WordPress posts, pages and widgets.', 'bestwebsoft' ),
|
181 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/bws-google-maps/?k=d8fac412d7359ebaa4ff53b46572f9f7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
182 |
'settings' => 'admin.php?page=bws-google-maps.php',
|
183 |
'pro_version' => 'bws-google-maps-pro/bws-google-maps-pro.php',
|
185 |
'pro_settings' => 'admin.php?page=bws-google-maps-pro.php'
|
186 |
),
|
187 |
'google-sitemap-plugin/google-sitemap-plugin.php' => array(
|
188 |
+
'category' => array( 'seo', 'recommended' ),
|
189 |
'name' => 'Google Sitemap',
|
190 |
+
'description' => __( 'Generate and add XML sitemap to WordPress website. Help search engines index your blog.', 'bestwebsoft' ),
|
191 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-sitemap/?k=5202b2f5ce2cf85daee5e5f79a51d806&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
192 |
'settings' => 'admin.php?page=google-sitemap-plugin.php',
|
193 |
'pro_version' => 'google-sitemap-pro/google-sitemap-pro.php',
|
195 |
'pro_settings' => 'admin.php?page=google-sitemap-pro.php'
|
196 |
),
|
197 |
'google-shortlink/google-shortlink.php' => array(
|
198 |
+
'category' => array( 'seo' ),
|
199 |
'name' => 'Google Shortlink',
|
200 |
+
'description' => __( 'Replace external WordPress website links with Google shortlinks and track click stats.', 'bestwebsoft' ),
|
201 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/google-shortlink/?k=afcf3eaed021bbbbeea1090e16bc22db&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
202 |
'settings' => 'admin.php?page=gglshrtlnk_options'
|
203 |
),
|
204 |
'htaccess/htaccess.php' => array(
|
205 |
'category' => array( 'security' ),
|
206 |
'name' => 'Htaccess',
|
207 |
+
'description' => __( 'Protect WordPress website – allow and deny access for certain IP addresses, hostnames, etc.', 'bestwebsoft' ),
|
208 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/htaccess/?k=2b865fcd56a935d22c5c4f1bba52ed46&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
209 |
'settings' => 'admin.php?page=htaccess.php',
|
210 |
'pro_version' => 'htaccess-pro/htaccess-pro.php',
|
212 |
'pro_settings' => 'admin.php?page=htaccess-pro.php'
|
213 |
),
|
214 |
'job-board/job-board.php' => array(
|
215 |
+
'category' => array( 'ecommerce' ),
|
216 |
'name' => 'Job Board',
|
217 |
+
'description' => __( 'Create your personal job board and listing WordPress website. Search jobs, submit CV/resumes, choose candidates.', 'bestwebsoft' ),
|
218 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/job-board/?k=b0c504c9ce6edd6692e04222af3fed6f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
219 |
'settings' => 'admin.php?page=job-board.php'
|
220 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
221 |
'limit-attempts/limit-attempts.php' => array(
|
222 |
'category' => array( 'security', 'recommended' ),
|
223 |
'name' => 'Limit Attempts',
|
224 |
+
'description' => __( 'Protect WordPress website against brute force attacks. Limit rate of login attempts.', 'bestwebsoft' ),
|
225 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/limit-attempts/?k=b14e1697ee4d008abcd4bd34d492573a&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
226 |
'settings' => 'admin.php?page=limit-attempts.php',
|
227 |
'pro_version' => 'limit-attempts-pro/limit-attempts-pro.php',
|
229 |
'pro_settings' => 'admin.php?page=limit-attempts-pro.php'
|
230 |
),
|
231 |
'bws-linkedin/bws-linkedin.php' => array(
|
232 |
+
'category' => array( 'smm' ),
|
233 |
'name' => 'LinkedIn',
|
234 |
+
'description' => __( 'Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. 5 plugins included – profile, insider, etc.', 'bestwebsoft' ),
|
235 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/linkedin/?k=d63c7319622ccc5f589dd2d545c1d77c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
236 |
'settings' => 'admin.php?page=linkedin.php',
|
237 |
'pro_version' => 'bws-linkedin-pro/bws-linkedin-pro.php',
|
239 |
'pro_settings' => 'admin.php?page=linkedin-pro.php'
|
240 |
),
|
241 |
'multilanguage/multilanguage.php' => array(
|
242 |
+
'category' => array( 'content', 'recommended' ),
|
243 |
'name' => 'Multilanguage',
|
244 |
+
'description' => __( 'Translate WordPress website content to other languages manually. Create multilingual pages, posts, widgets, menus, etc.', 'bestwebsoft' ),
|
245 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/multilanguage/?k=7d68c7bfec2486dc350c67fff57ad433&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
246 |
'settings' => 'admin.php?page=mltlngg_settings',
|
247 |
'pro_version' => 'multilanguage-pro/multilanguage-pro.php',
|
249 |
'pro_settings' => 'admin.php?page=mltlnggpr_settings'
|
250 |
),
|
251 |
'pagination/pagination.php' => array(
|
252 |
+
'category' => array( 'navigation' ),
|
253 |
'name' => 'Pagination',
|
254 |
+
'description' => __( 'Add customizable pagination to WordPress website. Split long content to multiple pages for better navigation.', 'bestwebsoft' ),
|
255 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/pagination/?k=22adb940256f149559ba8fedcd728ac8&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
256 |
'settings' => 'admin.php?page=pagination.php',
|
257 |
'pro_version' => 'pagination-pro/pagination-pro.php',
|
259 |
'pro_settings' => 'admin.php?page=pagination-pro.php'
|
260 |
),
|
261 |
'pdf-print/pdf-print.php' => array(
|
262 |
+
'category' => array( 'content' ),
|
263 |
'name' => 'PDF & Print',
|
264 |
+
'description' => __( 'Generate PDF files and print WordPress posts/pages. Customize document header/footer styles and appearance.', 'bestwebsoft' ),
|
265 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/pdf-print/?k=bfefdfb522a4c0ff0141daa3f271840c&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
266 |
'settings' => 'admin.php?page=pdf-print.php',
|
267 |
'pro_version' => 'pdf-print-pro/pdf-print-pro.php',
|
269 |
'pro_settings' => 'admin.php?page=pdf-print-pro.php'
|
270 |
),
|
271 |
'bws-pinterest/bws-pinterest.php' => array(
|
272 |
+
'category' => array( 'smm' ),
|
273 |
'name' => 'Pinterest',
|
274 |
+
'description' => __( 'Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, Profile) to WordPress posts, pages and widgets.', 'bestwebsoft' ),
|
275 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/pinterest/?k=504107b6213f247a67fe7ffb94e97c78&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
276 |
'settings' => 'admin.php?page=pinterest.php',
|
277 |
'pro_version' => 'bws-pinterest-pro/bws-pinterest-pro.php',
|
278 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/pinterest/buy/?k=ab0069edd1914a3ca8f541bfd88bb0bb&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
279 |
'pro_settings' => 'admin.php?page=pinterest-pro.php'
|
280 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
281 |
'portfolio/portfolio.php' => array(
|
282 |
+
'category' => array( 'content', 'recommended' ),
|
283 |
'name' => 'Portfolio',
|
284 |
+
'description' => __( 'Create your personal portfolio WordPress website. Manage and showcase past projects to get more clients.', 'bestwebsoft' ),
|
285 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/portfolio/?k=1249a890c5b7bba6bda3f528a94f768b&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
286 |
'settings' => 'admin.php?page=portfolio.php',
|
287 |
'pro_version' => 'portfolio-pro/portfolio-pro.php',
|
289 |
'pro_settings' => 'admin.php?page=portfolio-pro.php'
|
290 |
),
|
291 |
'post-to-csv/post-to-csv.php' => array(
|
292 |
+
'category' => array( 'admin-tools' ),
|
293 |
'name' => 'Post to CSV',
|
294 |
+
'description' => __( 'Export WordPress posts to CSV file format easily. Configure data order.', 'bestwebsoft' ),
|
295 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/post-to-csv/?k=653aa55518ae17409293a7a894268b8f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
296 |
'settings' => 'admin.php?page=post-to-csv.php'
|
297 |
),
|
298 |
'profile-extra-fields/profile-extra-fields.php' => array(
|
299 |
+
'category' => array( 'admin-tools' ),
|
300 |
'name' => 'Profile Extra Fields',
|
301 |
+
'description' => __( 'Add extra fields to default WordPress user profile. The easiest way to create and manage additional custom values.', 'bestwebsoft' ),
|
302 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/profile-extra-fields/?k=fe3b6c3dbc80bd4b1cf9a27a2f339820&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
303 |
'settings' => 'admin.php?page=profile-extra-fields.php'
|
304 |
),
|
305 |
'promobar/promobar.php' => array(
|
306 |
+
'category' => array( 'marketing' ),
|
307 |
'name' => 'PromoBar',
|
308 |
+
'description' => __( 'Add and display HTML advertisement banner on WordPress website. Customize bar styles and appearance.', 'bestwebsoft' ),
|
309 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/promobar/?k=619eac2232d9cfa382c4e678c3b14766&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
310 |
'settings' => 'admin.php?page=promobar.php',
|
311 |
'pro_version' => 'promobar-pro/promobar-pro.php',
|
313 |
'pro_settings' => 'admin.php?page=promobar-pro.php'
|
314 |
),
|
315 |
'quotes-and-tips/quotes-and-tips.php' => array(
|
316 |
+
'category' => array( 'content' ),
|
317 |
'name' => 'Quotes and Tips',
|
318 |
+
'description' => __( 'Add customizable quotes and tips blocks to WordPress posts, pages and widgets.', 'bestwebsoft' ),
|
319 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/quotes-and-tips/?k=5738a4e85a798c4a5162240c6515098d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
320 |
'settings' => 'admin.php?page=quotes-and-tips.php'
|
321 |
),
|
322 |
'rating-bws/rating-bws.php' => array(
|
323 |
+
'category' => array( 'marketing' ),
|
324 |
'name' => 'Rating',
|
325 |
+
'description' => __( 'Add rating plugin to your WordPress website to receive feedback from your customers.', 'bestwebsoft' ),
|
326 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/rating/?k=c00e0824bb999735a3224616ef51f4c5&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
327 |
'settings' => 'admin.php?page=rating.php'
|
328 |
),
|
329 |
'realty/realty.php' => array(
|
330 |
+
'category' => array( 'ecommerce' ),
|
331 |
'name' => 'Realty',
|
332 |
+
'description' => __( 'Create your personal real estate WordPress website. Sell, rent and buy properties. Add, search and browse listings easily.', 'bestwebsoft' ),
|
333 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/realty/?k=d55de979dbbbb7af0b2ff1d7f43884fa&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
334 |
'settings' => 'admin.php?page=realty_settings',
|
335 |
'pro_version' => 'realty-pro/realty-pro.php',
|
336 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/realty/buy/?k=c7791f0a72acfb36f564a614dbccb474&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
337 |
'pro_settings' => 'admin.php?page=realty_pro_settings'
|
338 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
339 |
'relevant/related-posts-plugin.php' => array(
|
340 |
+
'category' => array( 'marketing', 'recommended' ),
|
341 |
+
'name' => 'Relevant - Related, Featured, Latest, and Popular Posts',
|
342 |
+
'description' => __( 'Add related, featured, latest, and popular posts to your WordPress website. Connect your blog readers with a relevant content.', 'bestwebsoft' ),
|
343 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/related-posts/?k=73fb737037f7141e66415ec259f7e426&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
344 |
'settings' => 'admin.php?page=related-posts-plugin.php'
|
345 |
),
|
346 |
'sender/sender.php' => array(
|
347 |
+
'category' => array( 'marketing', 'recommended' ),
|
348 |
'name' => 'Sender',
|
349 |
+
'description' => __( 'Send bulk email messages to WordPress users. Custom templates, advanced settings and detailed reports.', 'bestwebsoft' ),
|
350 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/sender/?k=89c297d14ba85a8417a0f2fc05e089c7&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
351 |
'settings' => 'admin.php?page=sndr_settings',
|
352 |
'pro_version' => 'sender-pro/sender-pro.php',
|
353 |
'purchase' => 'https://bestwebsoft.com/products/wordpress/plugins/sender/buy/?k=dc5d1a87bdc8aeab2de40ffb99b38054&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
354 |
'pro_settings' => 'admin.php?page=sndrpr_settings'
|
355 |
),
|
356 |
+
'slider-bws/slider-bws.php' => array(
|
357 |
+
'category' => array( 'content' ),
|
358 |
+
'name' => 'Slider',
|
359 |
+
'description' => __( 'The best responsive slider plugin for your WordPress website. Create beautifully animated slides just in a few clicks.', 'bestwebsoft' ),
|
360 |
+
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/slider/?k=02acebf8531b2995e7de8474ae28e290&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
361 |
+
'settings' => 'admin.php?page=slider-settings.php'
|
362 |
+
),
|
363 |
'bws-smtp/bws-smtp.php' => array(
|
364 |
+
'category' => array( 'admin-tools' ),
|
365 |
'name' => 'SMTP',
|
366 |
+
'description' => __( 'Configure SMTP server to receive email messages from WordPress to Gmail, Yahoo, Hotmail and other services.', 'bestwebsoft' ),
|
367 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/smtp/?k=0546419f962704429ad2d9b88567752f&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
368 |
'settings' => 'admin.php?page=bwssmtp_settings'
|
369 |
),
|
370 |
'social-buttons-pack/social-buttons-pack.php' => array(
|
371 |
+
'category' => array( 'smm', 'recommended' ),
|
372 |
'name' => 'Social Buttons Pack',
|
373 |
+
'description' => __( 'Add social media buttons and widgets to WordPress posts, pages and widgets. FB, Twitter, G+1, Pinterest, LinkedIn.', 'bestwebsoft' ),
|
374 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/social-buttons-pack/?k=b6440fad9f54274429e536b0c61b42da&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
375 |
'settings' => 'admin.php?page=social-buttons.php',
|
376 |
'pro_version' => 'social-buttons-pack-pro/social-buttons-pack-pro.php',
|
378 |
'pro_settings' => 'admin.php?page=social-buttons.php'
|
379 |
),
|
380 |
'social-login-bws/social-login-bws.php' => array(
|
381 |
+
'category' => array( 'smm' ),
|
382 |
'name' => 'Social Login',
|
383 |
+
'description' => __( 'Add social media login, registration, and commenting to your WordPress website.', 'bestwebsoft' ),
|
384 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/social-login/?k=62817c9c94f24129e40894e1d9c3f49d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
385 |
'settings' => 'admin.php?page=social-login.php'
|
386 |
),
|
387 |
'subscriber/subscriber.php' => array(
|
388 |
+
'category' => array( 'marketing', 'recommended' ),
|
389 |
'name' => 'Subscriber',
|
390 |
+
'description' => __( 'Add email newsletter sign up form to WordPress posts, pages and widgets. Collect data and subscribe your users.', 'bestwebsoft' ),
|
391 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/subscriber/?k=a4ecc1b7800bae7329fbe8b4b04e9c88&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
392 |
'settings' => 'admin.php?page=sbscrbr_settings_page',
|
393 |
'pro_version' => 'subscriber-pro/subscriber-pro.php',
|
395 |
'pro_settings' => 'admin.php?page=sbscrbrpr_settings_page'
|
396 |
),
|
397 |
'bws-testimonials/bws-testimonials.php' => array(
|
398 |
+
'category' => array( 'marketing', 'recommended' ),
|
399 |
'name' => 'Testimonials',
|
400 |
+
'description' => __( 'Add testimonials and feedbacks from your customers to WordPress website posts, pages, and widgets.', 'bestwebsoft' ),
|
401 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/testimonials/?k=3fe4bb89dc901c98e43a113e08f8db73&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
402 |
'settings' => 'admin.php?page=testimonials.php'
|
403 |
),
|
404 |
'timesheet/timesheet.php' => array(
|
405 |
+
'category' => array( 'admin-tools' ),
|
406 |
'name' => 'Timesheet',
|
407 |
+
'description' => __( 'Best timesheet plugin for WordPress. Track employee time, streamline attendance and generate reports.', 'bestwebsoft' ),
|
408 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/timesheet/?k=06a58bb78c17a43df01825925f05a5c1&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
409 |
'settings' => 'admin.php?page=timesheet_settings',
|
410 |
'pro_version' => 'timesheet-pro/timesheet-pro.php',
|
412 |
'pro_settings' => 'admin.php?page=timesheet_pro_settings'
|
413 |
),
|
414 |
'twitter-plugin/twitter.php' => array(
|
415 |
+
'category' => array( 'smm' ),
|
416 |
'name' => 'Twitter',
|
417 |
+
'description' => __( 'Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts and pages.', 'bestwebsoft' ),
|
418 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/twitter/?k=f8cb514e25bd7ec4974d64435c5eb333&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
419 |
'settings' => 'admin.php?page=twitter.php',
|
420 |
'pro_version' => 'twitter-pro/twitter-pro.php',
|
422 |
'pro_settings' => 'admin.php?page=twitter-pro.php'
|
423 |
),
|
424 |
'updater/updater.php' => array(
|
425 |
+
'category' => array( 'admin-tools', 'recommended' ),
|
426 |
'name' => 'Updater',
|
427 |
+
'description' => __( 'Automatically check and update WordPress website core with all installed plugins and themes to the latest versions.', 'bestwebsoft' ),
|
428 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/updater/?k=66f3ecd4c1912009d395c4bb30f779d1&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
429 |
'settings' => 'admin.php?page=updater-options',
|
430 |
'pro_version' => 'updater-pro/updater_pro.php',
|
432 |
'pro_settings' => 'admin.php?page=updater-pro-options'
|
433 |
),
|
434 |
'user-role/user-role.php' => array(
|
435 |
+
'category' => array( 'admin-tools' ),
|
436 |
'name' => 'User Role',
|
437 |
+
'description' => __( 'Powerful user role management plugin for WordPress website. Create, edit, copy, and delete user roles.', 'bestwebsoft' ),
|
438 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/user-role/?k=dfe2244835c6fbf601523964b3f34ccc&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
439 |
'settings' => 'admin.php?page=user-role.php',
|
440 |
'pro_version' => 'user-role-pro/user-role-pro.php',
|
442 |
'pro_settings' => 'admin.php?page=user-role-pro.php'
|
443 |
),
|
444 |
'visitors-online/visitors-online.php' => array(
|
445 |
+
'category' => array( 'admin-tools' ),
|
446 |
'name' => 'Visitors Online',
|
447 |
+
'description' => __( 'Display live count of online visitors who are currently browsing your WordPress website.', 'bestwebsoft' ),
|
448 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/visitors-online/?k=93c28013a4f830671b3bba9502ed5177&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
449 |
'settings' => 'admin.php?page=visitors-online.php',
|
450 |
'pro_version' => 'visitors-online-pro/visitors-online-pro.php',
|
452 |
'pro_settings' => 'admin.php?page=visitors-online-pro.php'
|
453 |
),
|
454 |
'zendesk-help-center/zendesk-help-center.php' => array(
|
455 |
+
'category' => array( 'admin-tools' ),
|
456 |
'name' => 'Zendesk Help Center',
|
457 |
+
'description' => __( 'Backup and export Zendesk Help Center content automatically to your WordPress website database.', 'bestwebsoft' ),
|
458 |
'link' => 'https://bestwebsoft.com/products/wordpress/plugins/zendesk-help-center/?k=2a5fd2f4b2f4bde46f2ca44b8d15846d&pn=' . $bws_plugin_info["id"] . '&v=' . $bws_plugin_info["version"] . '&wp_v=' . $wp_version,
|
459 |
'settings' => 'admin.php?page=zendesk_hc.php&action=settings',
|
460 |
'pro_version' => 'zendesk-help-center-pro/zendesk-help-center-pro.php',
|
css/style.css
CHANGED
@@ -5,9 +5,13 @@
|
|
5 |
clear: both;
|
6 |
line-height: 1;
|
7 |
}
|
|
|
|
|
|
|
8 |
.fcbk_button {
|
9 |
display: inline-block;
|
10 |
margin-right: 10px;
|
|
|
11 |
}
|
12 |
.fcbk_button a {
|
13 |
display: block;
|
5 |
clear: both;
|
6 |
line-height: 1;
|
7 |
}
|
8 |
+
.fcbk_share * {
|
9 |
+
vertical-align: top;
|
10 |
+
}
|
11 |
.fcbk_button {
|
12 |
display: inline-block;
|
13 |
margin-right: 10px;
|
14 |
+
margin-bottom: 5px;
|
15 |
}
|
16 |
.fcbk_button a {
|
17 |
display: block;
|
facebook-button-plugin.php
CHANGED
@@ -6,7 +6,7 @@ Description: Add Facebook Like, Share and Profile buttons to WordPress posts, pa
|
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: facebook-button-plugin
|
8 |
Domain Path: /languages
|
9 |
-
Version: 2.
|
10 |
Author URI: https://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
@@ -70,7 +70,7 @@ if ( ! function_exists( 'fcbkbttn_init' ) ) {
|
|
70 |
require_once( dirname( __FILE__ ) . '/bws_menu/bws_include.php' );
|
71 |
bws_include_init( plugin_basename( __FILE__ ) );
|
72 |
|
73 |
-
bws_wp_min_version_check( plugin_basename( __FILE__ ), $fcbkbttn_plugin_info, '3.
|
74 |
|
75 |
/* Get options from the database */
|
76 |
if ( ! is_admin() || ( isset( $_GET['page'] ) && ( "facebook-button-plugin.php" == $_GET['page'] || "social-buttons.php" == $_GET['page'] ) ) ) {
|
@@ -112,18 +112,6 @@ if ( ! function_exists( 'fcbkbttn_admin_init' ) ) {
|
|
112 |
if ( ! function_exists( 'fcbkbttn_settings' ) ) {
|
113 |
function fcbkbttn_settings() {
|
114 |
global $fcbkbttn_options, $fcbkbttn_plugin_info;
|
115 |
-
/**
|
116 |
-
* @since 2.49
|
117 |
-
* @todo remove after 08.02.2017
|
118 |
-
*/
|
119 |
-
if ( $old_options = get_option( 'fcbk_bttn_plgn_options' ) ) {
|
120 |
-
if ( ! get_option( 'fcbkbttn_options' ) )
|
121 |
-
add_option( 'fcbkbttn_options', $old_options );
|
122 |
-
else
|
123 |
-
update_option( 'fcbkbttn_options', $old_options );
|
124 |
-
delete_option( 'fcbk_bttn_plgn_options' );
|
125 |
-
}
|
126 |
-
/* end @todo */
|
127 |
|
128 |
/* Install the option defaults */
|
129 |
if ( ! get_option( 'fcbkbttn_options' ) ) {
|
@@ -138,24 +126,6 @@ if ( ! function_exists( 'fcbkbttn_settings' ) ) {
|
|
138 |
/* show pro features */
|
139 |
$fcbkbttn_options['hide_premium_options'] = array();
|
140 |
|
141 |
-
/**
|
142 |
-
* @since 2.49
|
143 |
-
* @todo remove after 08.02.2017
|
144 |
-
*/
|
145 |
-
if ( ! is_array( $fcbkbttn_options['where'] ) ) {
|
146 |
-
switch ( $fcbkbttn_options['where'] ) {
|
147 |
-
case 'shortcode':
|
148 |
-
$fcbkbttn_options['where'] = array();
|
149 |
-
break;
|
150 |
-
case 'beforeandafter':
|
151 |
-
$fcbkbttn_options['where'] = array( 'before', 'after' );
|
152 |
-
break;
|
153 |
-
default:
|
154 |
-
$fcbkbttn_options['where'] = array( $fcbkbttn_options['where'] );
|
155 |
-
break;
|
156 |
-
}
|
157 |
-
}/* end @todo */
|
158 |
-
|
159 |
$options_default = fcbkbttn_get_options_default();
|
160 |
$fcbkbttn_options = array_merge( $options_default, $fcbkbttn_options );
|
161 |
$fcbkbttn_options['plugin_option_version'] = $fcbkbttn_plugin_info["Version"];
|
@@ -182,6 +152,7 @@ if ( ! function_exists( 'fcbkbttn_get_options_default' ) ) {
|
|
182 |
'share' => 0,
|
183 |
'faces' => 0,
|
184 |
'width' => 450,
|
|
|
185 |
'where' => array( 'before' ),
|
186 |
'display_option' => 'standard',
|
187 |
'count_icon' => 1,
|
@@ -190,7 +161,7 @@ if ( ! function_exists( 'fcbkbttn_get_options_default' ) ) {
|
|
190 |
'locale' => 'en_US',
|
191 |
'html5' => 0,
|
192 |
'use_multilanguage_locale' => 0,
|
193 |
-
'display_for_excerpt' => 0
|
194 |
);
|
195 |
return $options_default;
|
196 |
}
|
@@ -219,7 +190,7 @@ if ( ! function_exists( 'fcbkbttn_button' ) ) {
|
|
219 |
$button = '<div class="fcbk_share">';
|
220 |
|
221 |
if ( 1 == $fcbkbttn_options['my_page'] ) {
|
222 |
-
$button .=
|
223 |
<a href="https://www.facebook.com/' . $fcbkbttn_options['link'] . '" target="_blank">
|
224 |
<img src="' . $fcbkbttn_options['fb_img_link'] . '" alt="Fb-Button" />
|
225 |
</a>
|
@@ -233,8 +204,9 @@ if ( ! function_exists( 'fcbkbttn_button' ) ) {
|
|
233 |
$button .= '<div class="fb-like" data-href="' . $permalink_post . '" data-colorscheme="' . $fcbkbttn_options['color_scheme'] . '" data-layout="' . $fcbkbttn_options['layout_option'] . '" data-action="' . $fcbkbttn_options['like_action'] . '" ';
|
234 |
if ( 'standard' == $fcbkbttn_options['layout_option'] ) {
|
235 |
$button .= ' data-width="' . $fcbkbttn_options['width'] . 'px"';
|
236 |
-
$button .= ( 1 == $fcbkbttn_options['faces'] ) ? "data-show-faces='true'" : "data-show-faces='false'";
|
237 |
}
|
|
|
238 |
$button .= ( 1 == $fcbkbttn_options['share'] ) ? ' data-share="true"' : ' data-share="false"';
|
239 |
$button .= '></div></div>';
|
240 |
} else {
|
@@ -243,12 +215,13 @@ if ( ! function_exists( 'fcbkbttn_button' ) ) {
|
|
243 |
$button .= ( 1 == $fcbkbttn_options['faces'] ) ? "show-faces='true'" : "show-faces='false'";
|
244 |
$button .= ' width="' . $fcbkbttn_options['width'] . 'px"';
|
245 |
}
|
|
|
|
|
246 |
$button .= ( 1 == $fcbkbttn_options['share'] ) ? ' share="true"' : ' share="false"';
|
247 |
$button .= '></fb:like></div>';
|
248 |
}
|
249 |
-
|
250 |
} else if ( 1 != $fcbkbttn_options['like'] && 1 == $fcbkbttn_options['share'] ) {
|
251 |
-
$button .= '<div class="fb-share-button" data-href="' . $permalink_post . '" data-type="' . $fcbkbttn_options['layout_option'] . '"></div>';
|
252 |
}
|
253 |
|
254 |
$button .= '</div>';
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: facebook-button-plugin
|
8 |
Domain Path: /languages
|
9 |
+
Version: 2.55
|
10 |
Author URI: https://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
70 |
require_once( dirname( __FILE__ ) . '/bws_menu/bws_include.php' );
|
71 |
bws_include_init( plugin_basename( __FILE__ ) );
|
72 |
|
73 |
+
bws_wp_min_version_check( plugin_basename( __FILE__ ), $fcbkbttn_plugin_info, '3.9' );/* check compatible with current WP version ##*/
|
74 |
|
75 |
/* Get options from the database */
|
76 |
if ( ! is_admin() || ( isset( $_GET['page'] ) && ( "facebook-button-plugin.php" == $_GET['page'] || "social-buttons.php" == $_GET['page'] ) ) ) {
|
112 |
if ( ! function_exists( 'fcbkbttn_settings' ) ) {
|
113 |
function fcbkbttn_settings() {
|
114 |
global $fcbkbttn_options, $fcbkbttn_plugin_info;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
|
116 |
/* Install the option defaults */
|
117 |
if ( ! get_option( 'fcbkbttn_options' ) ) {
|
126 |
/* show pro features */
|
127 |
$fcbkbttn_options['hide_premium_options'] = array();
|
128 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
$options_default = fcbkbttn_get_options_default();
|
130 |
$fcbkbttn_options = array_merge( $options_default, $fcbkbttn_options );
|
131 |
$fcbkbttn_options['plugin_option_version'] = $fcbkbttn_plugin_info["Version"];
|
152 |
'share' => 0,
|
153 |
'faces' => 0,
|
154 |
'width' => 450,
|
155 |
+
'size' => 'small',
|
156 |
'where' => array( 'before' ),
|
157 |
'display_option' => 'standard',
|
158 |
'count_icon' => 1,
|
161 |
'locale' => 'en_US',
|
162 |
'html5' => 0,
|
163 |
'use_multilanguage_locale' => 0,
|
164 |
+
'display_for_excerpt' => 0
|
165 |
);
|
166 |
return $options_default;
|
167 |
}
|
190 |
$button = '<div class="fcbk_share">';
|
191 |
|
192 |
if ( 1 == $fcbkbttn_options['my_page'] ) {
|
193 |
+
$button .= '<div class="fcbk_button">
|
194 |
<a href="https://www.facebook.com/' . $fcbkbttn_options['link'] . '" target="_blank">
|
195 |
<img src="' . $fcbkbttn_options['fb_img_link'] . '" alt="Fb-Button" />
|
196 |
</a>
|
204 |
$button .= '<div class="fb-like" data-href="' . $permalink_post . '" data-colorscheme="' . $fcbkbttn_options['color_scheme'] . '" data-layout="' . $fcbkbttn_options['layout_option'] . '" data-action="' . $fcbkbttn_options['like_action'] . '" ';
|
205 |
if ( 'standard' == $fcbkbttn_options['layout_option'] ) {
|
206 |
$button .= ' data-width="' . $fcbkbttn_options['width'] . 'px"';
|
207 |
+
$button .= ( 1 == $fcbkbttn_options['faces'] ) ? " data-show-faces='true'" : " data-show-faces='false'";
|
208 |
}
|
209 |
+
$button .= ' data-size="' . $fcbkbttn_options['size'] . '"';
|
210 |
$button .= ( 1 == $fcbkbttn_options['share'] ) ? ' data-share="true"' : ' data-share="false"';
|
211 |
$button .= '></div></div>';
|
212 |
} else {
|
215 |
$button .= ( 1 == $fcbkbttn_options['faces'] ) ? "show-faces='true'" : "show-faces='false'";
|
216 |
$button .= ' width="' . $fcbkbttn_options['width'] . 'px"';
|
217 |
}
|
218 |
+
|
219 |
+
$button .= ' size="' . $fcbkbttn_options['size'] . '"';
|
220 |
$button .= ( 1 == $fcbkbttn_options['share'] ) ? ' share="true"' : ' share="false"';
|
221 |
$button .= '></fb:like></div>';
|
222 |
}
|
|
|
223 |
} else if ( 1 != $fcbkbttn_options['like'] && 1 == $fcbkbttn_options['share'] ) {
|
224 |
+
$button .= '<div class="fb-share-button" data-href="' . $permalink_post . '" data-type="' . $fcbkbttn_options['layout_option'] . '" data-size="' . $fcbkbttn_options['size'] . '"></div>';
|
225 |
}
|
226 |
|
227 |
$button .= '</div>';
|
images/facebook-ico.png
DELETED
Binary file
|
images/facebook-ico2.jpg
CHANGED
Binary file
|
images/large-facebook-ico.png
ADDED
Binary file
|
images/standard-facebook-ico.png
CHANGED
Binary file
|
includes/class-fcbkbttn-settings.php
CHANGED
@@ -67,11 +67,19 @@ if ( ! class_exists( 'Fcbkbttn_Settings_Tabs' ) ) {
|
|
67 |
$this->options['link'] = str_replace( 'https://www.facebook.com/profile.php?id=', '', $this->options['link'] );
|
68 |
$this->options['link'] = str_replace( 'https://www.facebook.com/', '', $this->options['link'] );
|
69 |
|
|
|
70 |
$this->options['where'] = isset( $_REQUEST['fcbkbttn_where'] ) ? $_REQUEST['fcbkbttn_where'] : array();
|
71 |
-
$this->options['display_option'] = $_REQUEST['fcbkbttn_display_option'];
|
|
|
72 |
if ( 'standard' == $this->options['display_option'] ) {
|
73 |
-
$
|
74 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
$this->options['my_page'] = isset( $_REQUEST['fcbkbttn_my_page'] ) ? 1 : 0;
|
76 |
$this->options['like'] = isset( $_REQUEST['fcbkbttn_like'] ) ? 1 : 0;
|
77 |
$this->options['layout_option'] = $_REQUEST['fcbkbttn_layout_option'];
|
@@ -125,7 +133,7 @@ if ( ! class_exists( 'Fcbkbttn_Settings_Tabs' ) ) {
|
|
125 |
$filename = $_FILES['fcbkbttn_uploadfile']['tmp_name'];
|
126 |
$ext = substr( $_FILES['fcbkbttn_uploadfile']['name'], 1 + strrpos( $_FILES['fcbkbttn_uploadfile']['name'], '.' ) );
|
127 |
if ( filesize( $filename ) > $max_image_size ) {
|
128 |
-
$error = __( "Error: File size
|
129 |
}
|
130 |
elseif ( ! in_array( strtolower( $ext ), $valid_types ) ) {
|
131 |
$error = __( "Error: Invalid file type", 'facebook-button-plugin' );
|
@@ -135,14 +143,12 @@ if ( ! class_exists( 'Fcbkbttn_Settings_Tabs' ) ) {
|
|
135 |
/* If file satisfies requirements, we will move them from temp to your plugin folder and rename to 'facebook_ico.jpg' */
|
136 |
if ( move_uploaded_file( $_FILES['fcbkbttn_uploadfile']['tmp_name'], $uploadfile ) ) {
|
137 |
$message .= '. ' . __( "Upload successful.", 'facebook-button-plugin' );
|
138 |
-
|
139 |
-
if ( '
|
140 |
-
$fb_img_link =
|
141 |
-
|
142 |
-
|
143 |
}
|
144 |
-
$this->options['fb_img_link'] = $fb_img_link ;
|
145 |
-
update_option( 'fcbkbttn_options', $this->options );
|
146 |
} else {
|
147 |
$error = __( "Error: failed to move file.", 'facebook-button-plugin' );
|
148 |
}
|
@@ -187,17 +193,26 @@ if ( ! class_exists( 'Fcbkbttn_Settings_Tabs' ) ) {
|
|
187 |
</fieldset>
|
188 |
</td>
|
189 |
</tr>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
<tr>
|
191 |
<th><?php _e( 'Buttons Position', 'facebook-button-plugin' ); ?></th>
|
192 |
<td>
|
193 |
<fieldset>
|
194 |
<label>
|
195 |
-
<input type="checkbox" name="fcbkbttn_where[]" value="before" <?php
|
196 |
<?php _e( 'Before content', 'facebook-button-plugin' ); ?></option>
|
197 |
</label>
|
198 |
<br>
|
199 |
<label>
|
200 |
-
<input type="checkbox" name="fcbkbttn_where[]" value="after" <?php
|
201 |
<?php _e( 'After content', 'facebook-button-plugin' ); ?></option>
|
202 |
</label>
|
203 |
</fieldset>
|
@@ -332,11 +347,11 @@ if ( ! class_exists( 'Fcbkbttn_Settings_Tabs' ) ) {
|
|
332 |
<td>
|
333 |
<fieldset class="fcbkbttn_layout_option">
|
334 |
<label class="fcbkbttn_like_layout">
|
335 |
-
<input type="radio" name="fcbkbttn_layout_option" <?php if ( 'standard' == $this->options['layout_option'] || 1 == $this->options['like'] ) echo 'checked="checked"'; ?> value="standard" />
|
336 |
Standard
|
337 |
</label>
|
338 |
<label>
|
339 |
-
<input type="radio" name="fcbkbttn_layout_option" <?php if ( 'box_count' == $this->options['layout_option'] ) echo 'checked="checked"'; ?> value="box_count" />
|
340 |
Box count
|
341 |
</label>
|
342 |
<label>
|
@@ -457,7 +472,7 @@ if ( ! class_exists( 'Fcbkbttn_Settings_Tabs' ) ) {
|
|
457 |
public function display_metabox() { ?>
|
458 |
<div class="postbox">
|
459 |
<h3 class="hndle">
|
460 |
-
<?php _e( 'Facebook Buttons
|
461 |
</h3>
|
462 |
<div class="inside">
|
463 |
<?php _e( "Add Facebook button(-s) to your posts, pages, custom post types or widgets by using the following shortcode:", 'facebook-button-plugin' ); ?>
|
@@ -516,7 +531,7 @@ if ( ! class_exists( 'Fcbkbttn_Settings_Tabs' ) ) {
|
|
516 |
</tr>
|
517 |
<tr>
|
518 |
<td colspan="2">
|
519 |
-
<img src="<?php echo plugins_url( 'images/pro_screen_1.png', dirname( __FILE__ ) ); ?>" alt="<?php _e( "Example of
|
520 |
</td>
|
521 |
</tr>
|
522 |
</table>
|
67 |
$this->options['link'] = str_replace( 'https://www.facebook.com/profile.php?id=', '', $this->options['link'] );
|
68 |
$this->options['link'] = str_replace( 'https://www.facebook.com/', '', $this->options['link'] );
|
69 |
|
70 |
+
$this->options['size'] = 'large' == $_REQUEST['fcbkbttn_size'] ? 'large' : 'small';
|
71 |
$this->options['where'] = isset( $_REQUEST['fcbkbttn_where'] ) ? $_REQUEST['fcbkbttn_where'] : array();
|
72 |
+
$this->options['display_option'] = ( 'custom' == $_REQUEST['fcbkbttn_display_option'] ) ? 'custom' : 'standard';
|
73 |
+
|
74 |
if ( 'standard' == $this->options['display_option'] ) {
|
75 |
+
$img_name =
|
76 |
+
'large' == $this->options['size'] ?
|
77 |
+
'large-facebook-ico' :
|
78 |
+
'standard-facebook-ico';
|
79 |
+
|
80 |
+
$this->options['fb_img_link'] = plugins_url( 'images/' . $img_name . '.png', dirname( __FILE__ ) );
|
81 |
+
}
|
82 |
+
|
83 |
$this->options['my_page'] = isset( $_REQUEST['fcbkbttn_my_page'] ) ? 1 : 0;
|
84 |
$this->options['like'] = isset( $_REQUEST['fcbkbttn_like'] ) ? 1 : 0;
|
85 |
$this->options['layout_option'] = $_REQUEST['fcbkbttn_layout_option'];
|
133 |
$filename = $_FILES['fcbkbttn_uploadfile']['tmp_name'];
|
134 |
$ext = substr( $_FILES['fcbkbttn_uploadfile']['name'], 1 + strrpos( $_FILES['fcbkbttn_uploadfile']['name'], '.' ) );
|
135 |
if ( filesize( $filename ) > $max_image_size ) {
|
136 |
+
$error = __( "Error: File size must not exceed 32KB", 'facebook-button-plugin' );
|
137 |
}
|
138 |
elseif ( ! in_array( strtolower( $ext ), $valid_types ) ) {
|
139 |
$error = __( "Error: Invalid file type", 'facebook-button-plugin' );
|
143 |
/* If file satisfies requirements, we will move them from temp to your plugin folder and rename to 'facebook_ico.jpg' */
|
144 |
if ( move_uploaded_file( $_FILES['fcbkbttn_uploadfile']['tmp_name'], $uploadfile ) ) {
|
145 |
$message .= '. ' . __( "Upload successful.", 'facebook-button-plugin' );
|
146 |
+
|
147 |
+
if ( 'custom' == $this->options['display_option'] ) {
|
148 |
+
$this->options['fb_img_link'] = $this->upload_dir['baseurl'] . '/facebook-image/facebook-ico' . $this->options['count_icon'] . '.' . $this->options['extention'];
|
149 |
+
|
150 |
+
update_option( 'fcbkbttn_options', $this->options );
|
151 |
}
|
|
|
|
|
152 |
} else {
|
153 |
$error = __( "Error: failed to move file.", 'facebook-button-plugin' );
|
154 |
}
|
193 |
</fieldset>
|
194 |
</td>
|
195 |
</tr>
|
196 |
+
<tr>
|
197 |
+
<th><?php _e( "Buttons Size", 'facebook-button-plugin' ); ?></th>
|
198 |
+
<td>
|
199 |
+
<fieldset>
|
200 |
+
<label><input name="fcbkbttn_size" type="radio" value="small" <?php checked( 'small', $this->options['size'] ); ?> /> <?php _e( 'Small', 'facebook-button-plugin' ); ?></label><br />
|
201 |
+
<label><input name="fcbkbttn_size" type="radio" value="large" <?php checked( 'large', $this->options['size'] ); ?> /> <?php _e( 'Large', 'facebook-button-plugin' ); ?></label>
|
202 |
+
</fieldset>
|
203 |
+
</td>
|
204 |
+
</tr>
|
205 |
<tr>
|
206 |
<th><?php _e( 'Buttons Position', 'facebook-button-plugin' ); ?></th>
|
207 |
<td>
|
208 |
<fieldset>
|
209 |
<label>
|
210 |
+
<input type="checkbox" name="fcbkbttn_where[]" value="before" <?php echo in_array( 'before', $this->options['where'] ) ? 'checked="checked"' : ''; ?> />
|
211 |
<?php _e( 'Before content', 'facebook-button-plugin' ); ?></option>
|
212 |
</label>
|
213 |
<br>
|
214 |
<label>
|
215 |
+
<input type="checkbox" name="fcbkbttn_where[]" value="after" <?php echo in_array( 'after', $this->options['where'] ) ? 'checked="checked"' : ''; ?> />
|
216 |
<?php _e( 'After content', 'facebook-button-plugin' ); ?></option>
|
217 |
</label>
|
218 |
</fieldset>
|
347 |
<td>
|
348 |
<fieldset class="fcbkbttn_layout_option">
|
349 |
<label class="fcbkbttn_like_layout">
|
350 |
+
<input id="fcbkbttn_standard_layout" type="radio" name="fcbkbttn_layout_option" <?php if ( 'standard' == $this->options['layout_option'] || 1 == $this->options['like'] ) echo 'checked="checked"'; ?> value="standard" />
|
351 |
Standard
|
352 |
</label>
|
353 |
<label>
|
354 |
+
<input id="fcbkbttn_box_count_layout" type="radio" name="fcbkbttn_layout_option" <?php if ( 'box_count' == $this->options['layout_option'] ) echo 'checked="checked"'; ?> value="box_count" />
|
355 |
Box count
|
356 |
</label>
|
357 |
<label>
|
472 |
public function display_metabox() { ?>
|
473 |
<div class="postbox">
|
474 |
<h3 class="hndle">
|
475 |
+
<?php _e( 'Facebook Buttons Shortcode', 'facebook-button-plugin' ); ?>
|
476 |
</h3>
|
477 |
<div class="inside">
|
478 |
<?php _e( "Add Facebook button(-s) to your posts, pages, custom post types or widgets by using the following shortcode:", 'facebook-button-plugin' ); ?>
|
531 |
</tr>
|
532 |
<tr>
|
533 |
<td colspan="2">
|
534 |
+
<img src="<?php echo plugins_url( 'images/pro_screen_1.png', dirname( __FILE__ ) ); ?>" alt="<?php _e( "Example of site pages tree", 'facebook-button-plugin' ); ?>" title="<?php _e( "Example of site pages tree", 'facebook-button-plugin' ); ?>" />
|
535 |
</td>
|
536 |
</tr>
|
537 |
</table>
|
js/script.js
CHANGED
@@ -15,7 +15,7 @@
|
|
15 |
}
|
16 |
}
|
17 |
function fcbkbttn_layout_option() {
|
18 |
-
if ( $( '
|
19 |
$( '.fcbkbttn_like_standard_layout' ).show();
|
20 |
} else {
|
21 |
$( '.fcbkbttn_like_standard_layout' ).hide();
|
@@ -32,18 +32,18 @@
|
|
32 |
}
|
33 |
function fcbkbttn_like() {
|
34 |
if ( $( 'input[name="fcbkbttn_like"]' ).is( ':checked' ) ) {
|
35 |
-
$( '.fcbkbttn_like_enabled, .fcbkbttn_share_enabled' ).show();
|
36 |
$( '.fcbkbttn_share_layout' ).hide();
|
37 |
-
$( '
|
38 |
} else {
|
39 |
$( '.fcbkbttn_share_layout' ).show();
|
40 |
-
$( '#fcbkbttn_box_count_layout' ).attr( '
|
41 |
$( '.fcbkbttn_like_enabled, .fcbkbttn_like_layout' ).hide();
|
42 |
if ( ! $( 'input[name="fcbkbttn_share"]' ).is( ":checked" ) ) {
|
43 |
$( '.fcbkbttn_share_enabled' ).hide();
|
44 |
} else {
|
45 |
$( '.fcbkbttn_share_enabled' ).show();
|
46 |
-
}
|
47 |
}
|
48 |
}
|
49 |
|
@@ -52,7 +52,7 @@
|
|
52 |
fcbkbttn_my_page();
|
53 |
$( 'input[name="fcbkbttn_my_page"]' ).on( 'change', function() { fcbkbttn_my_page() });
|
54 |
fcbkbttn_layout_option();
|
55 |
-
$( '
|
56 |
fcbkbttn_layout_option();
|
57 |
});
|
58 |
fcbkbttn_like();
|
15 |
}
|
16 |
}
|
17 |
function fcbkbttn_layout_option() {
|
18 |
+
if ( $( 'input[name="fcbkbttn_layout_option"]:checked' ).val() == 'standard' ) {
|
19 |
$( '.fcbkbttn_like_standard_layout' ).show();
|
20 |
} else {
|
21 |
$( '.fcbkbttn_like_standard_layout' ).hide();
|
32 |
}
|
33 |
function fcbkbttn_like() {
|
34 |
if ( $( 'input[name="fcbkbttn_like"]' ).is( ':checked' ) ) {
|
35 |
+
$( '.fcbkbttn_like_enabled, .fcbkbttn_share_enabled, .fcbkbttn_like_layout' ).show();
|
36 |
$( '.fcbkbttn_share_layout' ).hide();
|
37 |
+
$( '#fcbkbttn_standard_layout' ).attr( 'checked', 'checked' );
|
38 |
} else {
|
39 |
$( '.fcbkbttn_share_layout' ).show();
|
40 |
+
$( '#fcbkbttn_box_count_layout' ).attr( 'checked', 'checked' );
|
41 |
$( '.fcbkbttn_like_enabled, .fcbkbttn_like_layout' ).hide();
|
42 |
if ( ! $( 'input[name="fcbkbttn_share"]' ).is( ":checked" ) ) {
|
43 |
$( '.fcbkbttn_share_enabled' ).hide();
|
44 |
} else {
|
45 |
$( '.fcbkbttn_share_enabled' ).show();
|
46 |
+
}
|
47 |
}
|
48 |
}
|
49 |
|
52 |
fcbkbttn_my_page();
|
53 |
$( 'input[name="fcbkbttn_my_page"]' ).on( 'change', function() { fcbkbttn_my_page() });
|
54 |
fcbkbttn_layout_option();
|
55 |
+
$( 'input[name="fcbkbttn_layout_option"]' ).change( function() {
|
56 |
fcbkbttn_layout_option();
|
57 |
});
|
58 |
fcbkbttn_like();
|
languages/facebook-button-plugin-cs_CZ.mo
CHANGED
Binary file
|
languages/facebook-button-plugin-cs_CZ.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: Mik013 <n0lim.it>\n"
|
8 |
"Language-Team: Mik013\n"
|
9 |
"Language: cs_CZ\n"
|
@@ -18,12 +18,12 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: facebook-button-plugin.php:35 facebook-button-plugin.php:36
|
21 |
-
#: facebook-button-plugin.php:
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "Nastavení tlačítka Facebook"
|
24 |
|
25 |
-
#: facebook-button-plugin.php:36 facebook-button-plugin.php:
|
26 |
-
#: facebook-button-plugin.php:
|
27 |
msgid "Settings"
|
28 |
msgstr "Nastavení"
|
29 |
|
@@ -31,19 +31,19 @@ msgstr "Nastavení"
|
|
31 |
msgid "Upgrade to Pro"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: facebook-button-plugin.php:
|
35 |
msgid "Please, enable JavaScript in Your browser."
|
36 |
msgstr "Prosím, povolte JavaScript ve vašem prohlížeči."
|
37 |
|
38 |
-
#: facebook-button-plugin.php:
|
39 |
msgid "Add Facebook buttons to your page or post"
|
40 |
msgstr "Přidat Facebook tlačítka na vaši stránku nebo příspěvek"
|
41 |
|
42 |
-
#: facebook-button-plugin.php:
|
43 |
msgid "FAQ"
|
44 |
msgstr "Často kladené otázky (FAQ)"
|
45 |
|
46 |
-
#: facebook-button-plugin.php:
|
47 |
msgid "Support"
|
48 |
msgstr "Podpora"
|
49 |
|
@@ -63,248 +63,260 @@ msgstr ""
|
|
63 |
msgid "License Key"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#: includes/class-fcbkbttn-settings.php:
|
67 |
msgid "Settings saved"
|
68 |
msgstr "Nastavení uloženo"
|
69 |
|
70 |
-
#: includes/class-fcbkbttn-settings.php:
|
71 |
-
msgid "Error: File size
|
72 |
-
msgstr "
|
73 |
|
74 |
-
#: includes/class-fcbkbttn-settings.php:
|
75 |
msgid "Error: Invalid file type"
|
76 |
msgstr "Chyba: Neplatný typ souboru"
|
77 |
|
78 |
-
#: includes/class-fcbkbttn-settings.php:
|
79 |
msgid "Upload successful."
|
80 |
msgstr "Úspěšně nahráno."
|
81 |
|
82 |
-
#: includes/class-fcbkbttn-settings.php:
|
83 |
msgid "Error: failed to move file."
|
84 |
msgstr ""
|
85 |
|
86 |
-
#: includes/class-fcbkbttn-settings.php:
|
87 |
msgid "Error: check image width or height."
|
88 |
msgstr ""
|
89 |
|
90 |
-
#: includes/class-fcbkbttn-settings.php:
|
91 |
msgid "Uploading Error: check image properties"
|
92 |
msgstr "Chyba nahrávání: zkontrolujte vlastnosti obrazu"
|
93 |
|
94 |
-
#: includes/class-fcbkbttn-settings.php:
|
95 |
msgid "General"
|
96 |
msgstr ""
|
97 |
|
98 |
-
#: includes/class-fcbkbttn-settings.php:
|
99 |
msgid "Buttons"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: includes/class-fcbkbttn-settings.php:
|
103 |
msgid "Profile URL"
|
104 |
msgstr ""
|
105 |
|
106 |
-
#: includes/class-fcbkbttn-settings.php:
|
107 |
-
#: includes/class-fcbkbttn-settings.php:
|
108 |
msgid "Like"
|
109 |
msgstr "To se mi líbí"
|
110 |
|
111 |
-
#: includes/class-fcbkbttn-settings.php:
|
112 |
msgid "Share"
|
113 |
msgstr "Sdílet"
|
114 |
|
115 |
-
#: includes/class-fcbkbttn-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
116 |
msgid "Buttons Position"
|
117 |
msgstr ""
|
118 |
|
119 |
-
#: includes/class-fcbkbttn-settings.php:
|
120 |
msgid "Before content"
|
121 |
msgstr ""
|
122 |
|
123 |
-
#: includes/class-fcbkbttn-settings.php:
|
124 |
msgid "After content"
|
125 |
msgstr ""
|
126 |
|
127 |
-
#: includes/class-fcbkbttn-settings.php:
|
128 |
msgid "Language"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: includes/class-fcbkbttn-settings.php:
|
132 |
msgid "Select the default language for Facebook button(-s)."
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: includes/class-fcbkbttn-settings.php:
|
136 |
-
#: includes/class-fcbkbttn-settings.php:
|
137 |
-
#: includes/class-fcbkbttn-settings.php:
|
138 |
msgid ""
|
139 |
"Enable to switch language automatically on multilingual website using "
|
140 |
"Multilanguage plugin."
|
141 |
msgstr ""
|
142 |
|
143 |
-
#: includes/class-fcbkbttn-settings.php:
|
144 |
#, php-format
|
145 |
msgid "Activate %s"
|
146 |
msgstr ""
|
147 |
|
148 |
-
#: includes/class-fcbkbttn-settings.php:
|
149 |
msgid "Learn More"
|
150 |
msgstr "Více informací"
|
151 |
|
152 |
-
#: includes/class-fcbkbttn-settings.php:
|
153 |
msgid "Excerpt"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: includes/class-fcbkbttn-settings.php:
|
157 |
msgid "Enable to display buttons in excerpt."
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: includes/class-fcbkbttn-settings.php:
|
161 |
-
#: includes/class-fcbkbttn-settings.php:
|
162 |
-
#: includes/class-fcbkbttn-settings.php:
|
163 |
msgid "Close"
|
164 |
msgstr "Zavřít"
|
165 |
|
166 |
-
#: includes/class-fcbkbttn-settings.php:
|
167 |
msgid "Meta Image"
|
168 |
msgstr ""
|
169 |
|
170 |
-
#: includes/class-fcbkbttn-settings.php:
|
171 |
msgid "Featured Image"
|
172 |
msgstr "Vybraný obrázek"
|
173 |
|
174 |
-
#: includes/class-fcbkbttn-settings.php:
|
175 |
msgid "Custom Image"
|
176 |
msgstr "Vlastní obrázek"
|
177 |
|
178 |
-
#: includes/class-fcbkbttn-settings.php:
|
179 |
msgid "This image will be used for all posts"
|
180 |
msgstr ""
|
181 |
|
182 |
-
#: includes/class-fcbkbttn-settings.php:
|
183 |
msgid "Meta Description"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: includes/class-fcbkbttn-settings.php:
|
187 |
msgid ""
|
188 |
"This description will be used for all pages and posts. Leave blank to use "
|
189 |
"page description."
|
190 |
msgstr ""
|
191 |
|
192 |
-
#: includes/class-fcbkbttn-settings.php:
|
193 |
msgid "Profile URL Button"
|
194 |
msgstr ""
|
195 |
|
196 |
-
#: includes/class-fcbkbttn-settings.php:
|
197 |
msgid "Facebook ID or Username"
|
198 |
msgstr ""
|
199 |
|
200 |
-
#: includes/class-fcbkbttn-settings.php:
|
201 |
msgid "Profile Button Image"
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: includes/class-fcbkbttn-settings.php:
|
205 |
msgid "Default"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: includes/class-fcbkbttn-settings.php:
|
209 |
msgid "Custom image"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: includes/class-fcbkbttn-settings.php:
|
213 |
msgid ""
|
214 |
"To use custom image, You need to setup permissions for upload directory of "
|
215 |
"your site"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: includes/class-fcbkbttn-settings.php:
|
219 |
msgid "Current image"
|
220 |
msgstr "Aktuální obrázek"
|
221 |
|
222 |
-
#: includes/class-fcbkbttn-settings.php:
|
223 |
msgid ""
|
224 |
"Image requirements: max image width:100px; max image height:40px; max image "
|
225 |
"size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
226 |
msgstr ""
|
227 |
|
228 |
-
#: includes/class-fcbkbttn-settings.php:
|
229 |
msgid "Like&Share Buttons"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: includes/class-fcbkbttn-settings.php:
|
233 |
msgid "Layout"
|
234 |
msgstr ""
|
235 |
|
236 |
-
#: includes/class-fcbkbttn-settings.php:
|
237 |
msgid "Like Button Action"
|
238 |
msgstr ""
|
239 |
|
240 |
-
#: includes/class-fcbkbttn-settings.php:
|
241 |
msgid "Recommend"
|
242 |
msgstr "Doporučit"
|
243 |
|
244 |
-
#: includes/class-fcbkbttn-settings.php:
|
245 |
msgid "Friends Faces"
|
246 |
msgstr ""
|
247 |
|
248 |
-
#: includes/class-fcbkbttn-settings.php:
|
249 |
msgid " Enable to show faces of your friends who submitted the button."
|
250 |
msgstr ""
|
251 |
|
252 |
-
#: includes/class-fcbkbttn-settings.php:
|
253 |
msgid "Layout Width"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: includes/class-fcbkbttn-settings.php:
|
257 |
msgid "px"
|
258 |
msgstr ""
|
259 |
|
260 |
-
#: includes/class-fcbkbttn-settings.php:
|
261 |
msgid "Theme"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: includes/class-fcbkbttn-settings.php:
|
265 |
msgid "Light"
|
266 |
msgstr "Světlé"
|
267 |
|
268 |
-
#: includes/class-fcbkbttn-settings.php:
|
269 |
msgid "Dark"
|
270 |
msgstr "Tmavé"
|
271 |
|
272 |
-
#: includes/class-fcbkbttn-settings.php:
|
273 |
msgid "Like Button HTML Tag"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: includes/class-fcbkbttn-settings.php:
|
277 |
#, php-format
|
278 |
msgid "Tag %s can be used to improve website code validation."
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: includes/class-fcbkbttn-settings.php:
|
282 |
msgid "URL to Like"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: includes/class-fcbkbttn-settings.php:
|
286 |
msgid "Leave blank to use a current page."
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: includes/class-fcbkbttn-settings.php:
|
290 |
-
msgid "Facebook Buttons
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: includes/class-fcbkbttn-settings.php:
|
294 |
msgid ""
|
295 |
"Add Facebook button(-s) to your posts, pages, custom post types or widgets "
|
296 |
"by using the following shortcode:"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: includes/class-fcbkbttn-settings.php:
|
300 |
msgid "Facebook Buttons Preview"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: includes/class-fcbkbttn-settings.php:
|
304 |
msgid "Display Settings"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: includes/class-fcbkbttn-settings.php:
|
308 |
msgid ""
|
309 |
"Please choose the necessary post types (or single pages) where Facebook "
|
310 |
"button will be displayed:"
|
@@ -312,17 +324,22 @@ msgstr ""
|
|
312 |
"Prosím, vyberte požadované typy příspěvků (nebo jednotlivé stránky), kde "
|
313 |
"budou zobrazeno tlačítko Facebook:"
|
314 |
|
315 |
-
#: includes/class-fcbkbttn-settings.php:
|
316 |
msgid "Show URL for pages"
|
317 |
msgstr "Zobrazit URL pro stránky"
|
318 |
|
319 |
-
#: includes/class-fcbkbttn-settings.php:
|
320 |
-
msgid "Example of
|
321 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
322 |
|
323 |
-
|
324 |
-
|
325 |
-
msgstr "Example of site pages' tree"
|
326 |
|
327 |
#~ msgid "Error: moving file failed"
|
328 |
#~ msgstr "Chyba: přesun souboru se nezdařil"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-07-10 12:20+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-07-10 12:20+0300\n"
|
7 |
"Last-Translator: Mik013 <n0lim.it>\n"
|
8 |
"Language-Team: Mik013\n"
|
9 |
"Language: cs_CZ\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: facebook-button-plugin.php:35 facebook-button-plugin.php:36
|
21 |
+
#: facebook-button-plugin.php:176 includes/class-fcbkbttn-settings.php:181
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "Nastavení tlačítka Facebook"
|
24 |
|
25 |
+
#: facebook-button-plugin.php:36 facebook-button-plugin.php:382
|
26 |
+
#: facebook-button-plugin.php:396 includes/class-fcbkbttn-settings.php:23
|
27 |
msgid "Settings"
|
28 |
msgstr "Nastavení"
|
29 |
|
31 |
msgid "Upgrade to Pro"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: facebook-button-plugin.php:177
|
35 |
msgid "Please, enable JavaScript in Your browser."
|
36 |
msgstr "Prosím, povolte JavaScript ve vašem prohlížeči."
|
37 |
|
38 |
+
#: facebook-button-plugin.php:275
|
39 |
msgid "Add Facebook buttons to your page or post"
|
40 |
msgstr "Přidat Facebook tlačítka na vaši stránku nebo příspěvek"
|
41 |
|
42 |
+
#: facebook-button-plugin.php:397
|
43 |
msgid "FAQ"
|
44 |
msgstr "Často kladené otázky (FAQ)"
|
45 |
|
46 |
+
#: facebook-button-plugin.php:398
|
47 |
msgid "Support"
|
48 |
msgstr "Podpora"
|
49 |
|
63 |
msgid "License Key"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: includes/class-fcbkbttn-settings.php:107
|
67 |
msgid "Settings saved"
|
68 |
msgstr "Nastavení uloženo"
|
69 |
|
70 |
+
#: includes/class-fcbkbttn-settings.php:136
|
71 |
+
msgid "Error: File size must not exceed 32KB"
|
72 |
+
msgstr ""
|
73 |
|
74 |
+
#: includes/class-fcbkbttn-settings.php:139
|
75 |
msgid "Error: Invalid file type"
|
76 |
msgstr "Chyba: Neplatný typ souboru"
|
77 |
|
78 |
+
#: includes/class-fcbkbttn-settings.php:145
|
79 |
msgid "Upload successful."
|
80 |
msgstr "Úspěšně nahráno."
|
81 |
|
82 |
+
#: includes/class-fcbkbttn-settings.php:153
|
83 |
msgid "Error: failed to move file."
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: includes/class-fcbkbttn-settings.php:156
|
87 |
msgid "Error: check image width or height."
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: includes/class-fcbkbttn-settings.php:160
|
91 |
msgid "Uploading Error: check image properties"
|
92 |
msgstr "Chyba nahrávání: zkontrolujte vlastnosti obrazu"
|
93 |
|
94 |
+
#: includes/class-fcbkbttn-settings.php:184
|
95 |
msgid "General"
|
96 |
msgstr ""
|
97 |
|
98 |
+
#: includes/class-fcbkbttn-settings.php:187
|
99 |
msgid "Buttons"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: includes/class-fcbkbttn-settings.php:190
|
103 |
msgid "Profile URL"
|
104 |
msgstr ""
|
105 |
|
106 |
+
#: includes/class-fcbkbttn-settings.php:191
|
107 |
+
#: includes/class-fcbkbttn-settings.php:386
|
108 |
msgid "Like"
|
109 |
msgstr "To se mi líbí"
|
110 |
|
111 |
+
#: includes/class-fcbkbttn-settings.php:192
|
112 |
msgid "Share"
|
113 |
msgstr "Sdílet"
|
114 |
|
115 |
+
#: includes/class-fcbkbttn-settings.php:197
|
116 |
+
msgid "Buttons Size"
|
117 |
+
msgstr ""
|
118 |
+
|
119 |
+
#: includes/class-fcbkbttn-settings.php:200
|
120 |
+
msgid "Small"
|
121 |
+
msgstr ""
|
122 |
+
|
123 |
+
#: includes/class-fcbkbttn-settings.php:201
|
124 |
+
msgid "Large"
|
125 |
+
msgstr ""
|
126 |
+
|
127 |
+
#: includes/class-fcbkbttn-settings.php:206
|
128 |
msgid "Buttons Position"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: includes/class-fcbkbttn-settings.php:211
|
132 |
msgid "Before content"
|
133 |
msgstr ""
|
134 |
|
135 |
+
#: includes/class-fcbkbttn-settings.php:216
|
136 |
msgid "After content"
|
137 |
msgstr ""
|
138 |
|
139 |
+
#: includes/class-fcbkbttn-settings.php:222
|
140 |
msgid "Language"
|
141 |
msgstr ""
|
142 |
|
143 |
+
#: includes/class-fcbkbttn-settings.php:233
|
144 |
msgid "Select the default language for Facebook button(-s)."
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: includes/class-fcbkbttn-settings.php:242
|
148 |
+
#: includes/class-fcbkbttn-settings.php:245
|
149 |
+
#: includes/class-fcbkbttn-settings.php:249
|
150 |
msgid ""
|
151 |
"Enable to switch language automatically on multilingual website using "
|
152 |
"Multilanguage plugin."
|
153 |
msgstr ""
|
154 |
|
155 |
+
#: includes/class-fcbkbttn-settings.php:245
|
156 |
#, php-format
|
157 |
msgid "Activate %s"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#: includes/class-fcbkbttn-settings.php:249
|
161 |
msgid "Learn More"
|
162 |
msgstr "Více informací"
|
163 |
|
164 |
+
#: includes/class-fcbkbttn-settings.php:254
|
165 |
msgid "Excerpt"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: includes/class-fcbkbttn-settings.php:256
|
169 |
msgid "Enable to display buttons in excerpt."
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: includes/class-fcbkbttn-settings.php:265
|
173 |
+
#: includes/class-fcbkbttn-settings.php:441
|
174 |
+
#: includes/class-fcbkbttn-settings.php:496
|
175 |
msgid "Close"
|
176 |
msgstr "Zavřít"
|
177 |
|
178 |
+
#: includes/class-fcbkbttn-settings.php:269
|
179 |
msgid "Meta Image"
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: includes/class-fcbkbttn-settings.php:274
|
183 |
msgid "Featured Image"
|
184 |
msgstr "Vybraný obrázek"
|
185 |
|
186 |
+
#: includes/class-fcbkbttn-settings.php:278
|
187 |
msgid "Custom Image"
|
188 |
msgstr "Vlastní obrázek"
|
189 |
|
190 |
+
#: includes/class-fcbkbttn-settings.php:278
|
191 |
msgid "This image will be used for all posts"
|
192 |
msgstr ""
|
193 |
|
194 |
+
#: includes/class-fcbkbttn-settings.php:285
|
195 |
msgid "Meta Description"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: includes/class-fcbkbttn-settings.php:289
|
199 |
msgid ""
|
200 |
"This description will be used for all pages and posts. Leave blank to use "
|
201 |
"page description."
|
202 |
msgstr ""
|
203 |
|
204 |
+
#: includes/class-fcbkbttn-settings.php:298
|
205 |
msgid "Profile URL Button"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: includes/class-fcbkbttn-settings.php:301
|
209 |
msgid "Facebook ID or Username"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: includes/class-fcbkbttn-settings.php:308
|
213 |
msgid "Profile Button Image"
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: includes/class-fcbkbttn-settings.php:315
|
217 |
msgid "Default"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: includes/class-fcbkbttn-settings.php:320
|
221 |
msgid "Custom image"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: includes/class-fcbkbttn-settings.php:324
|
225 |
msgid ""
|
226 |
"To use custom image, You need to setup permissions for upload directory of "
|
227 |
"your site"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: includes/class-fcbkbttn-settings.php:331
|
231 |
msgid "Current image"
|
232 |
msgstr "Aktuální obrázek"
|
233 |
|
234 |
+
#: includes/class-fcbkbttn-settings.php:339
|
235 |
msgid ""
|
236 |
"Image requirements: max image width:100px; max image height:40px; max image "
|
237 |
"size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: includes/class-fcbkbttn-settings.php:343
|
241 |
msgid "Like&Share Buttons"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: includes/class-fcbkbttn-settings.php:346
|
245 |
msgid "Layout"
|
246 |
msgstr ""
|
247 |
|
248 |
+
#: includes/class-fcbkbttn-settings.php:381
|
249 |
msgid "Like Button Action"
|
250 |
msgstr ""
|
251 |
|
252 |
+
#: includes/class-fcbkbttn-settings.php:391
|
253 |
msgid "Recommend"
|
254 |
msgstr "Doporučit"
|
255 |
|
256 |
+
#: includes/class-fcbkbttn-settings.php:397
|
257 |
msgid "Friends Faces"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: includes/class-fcbkbttn-settings.php:400
|
261 |
msgid " Enable to show faces of your friends who submitted the button."
|
262 |
msgstr ""
|
263 |
|
264 |
+
#: includes/class-fcbkbttn-settings.php:404
|
265 |
msgid "Layout Width"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: includes/class-fcbkbttn-settings.php:406
|
269 |
msgid "px"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: includes/class-fcbkbttn-settings.php:410
|
273 |
msgid "Theme"
|
274 |
msgstr ""
|
275 |
|
276 |
+
#: includes/class-fcbkbttn-settings.php:415
|
277 |
msgid "Light"
|
278 |
msgstr "Světlé"
|
279 |
|
280 |
+
#: includes/class-fcbkbttn-settings.php:420
|
281 |
msgid "Dark"
|
282 |
msgstr "Tmavé"
|
283 |
|
284 |
+
#: includes/class-fcbkbttn-settings.php:426
|
285 |
msgid "Like Button HTML Tag"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: includes/class-fcbkbttn-settings.php:432
|
289 |
#, php-format
|
290 |
msgid "Tag %s can be used to improve website code validation."
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: includes/class-fcbkbttn-settings.php:445
|
294 |
msgid "URL to Like"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: includes/class-fcbkbttn-settings.php:447
|
298 |
msgid "Leave blank to use a current page."
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: includes/class-fcbkbttn-settings.php:475
|
302 |
+
msgid "Facebook Buttons Shortcode"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: includes/class-fcbkbttn-settings.php:478
|
306 |
msgid ""
|
307 |
"Add Facebook button(-s) to your posts, pages, custom post types or widgets "
|
308 |
"by using the following shortcode:"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: includes/class-fcbkbttn-settings.php:497
|
312 |
msgid "Facebook Buttons Preview"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: includes/class-fcbkbttn-settings.php:512
|
316 |
msgid "Display Settings"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: includes/class-fcbkbttn-settings.php:521
|
320 |
msgid ""
|
321 |
"Please choose the necessary post types (or single pages) where Facebook "
|
322 |
"button will be displayed:"
|
324 |
"Prosím, vyberte požadované typy příspěvků (nebo jednotlivé stránky), kde "
|
325 |
"budou zobrazeno tlačítko Facebook:"
|
326 |
|
327 |
+
#: includes/class-fcbkbttn-settings.php:528
|
328 |
msgid "Show URL for pages"
|
329 |
msgstr "Zobrazit URL pro stránky"
|
330 |
|
331 |
+
#: includes/class-fcbkbttn-settings.php:534
|
332 |
+
msgid "Example of site pages tree"
|
333 |
+
msgstr ""
|
334 |
+
|
335 |
+
#~ msgid "Error: File size > 32K"
|
336 |
+
#~ msgstr "Chyba: Velikost souboru > 32K"
|
337 |
+
|
338 |
+
#~ msgid "Example of the site's pages tree"
|
339 |
+
#~ msgstr "Příklad stromu webu"
|
340 |
|
341 |
+
#~ msgid "Example of site pages' tree"
|
342 |
+
#~ msgstr "Example of site pages' tree"
|
|
|
343 |
|
344 |
#~ msgid "Error: moving file failed"
|
345 |
#~ msgstr "Chyba: přesun souboru se nezdařil"
|
languages/facebook-button-plugin-es_ES.mo
CHANGED
Binary file
|
languages/facebook-button-plugin-es_ES.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Africa Boleko <info@markekimika.es>\n"
|
9 |
"Language: es_ES\n"
|
@@ -19,12 +19,12 @@ msgstr ""
|
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
#: facebook-button-plugin.php:35 facebook-button-plugin.php:36
|
22 |
-
#: facebook-button-plugin.php:
|
23 |
msgid "Facebook Button Settings"
|
24 |
msgstr "Ajustes de Facebook Button"
|
25 |
|
26 |
-
#: facebook-button-plugin.php:36 facebook-button-plugin.php:
|
27 |
-
#: facebook-button-plugin.php:
|
28 |
msgid "Settings"
|
29 |
msgstr "Ajustes"
|
30 |
|
@@ -32,19 +32,19 @@ msgstr "Ajustes"
|
|
32 |
msgid "Upgrade to Pro"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: facebook-button-plugin.php:
|
36 |
msgid "Please, enable JavaScript in Your browser."
|
37 |
msgstr "Por favor, habilite JavaScrip en su navegador"
|
38 |
|
39 |
-
#: facebook-button-plugin.php:
|
40 |
msgid "Add Facebook buttons to your page or post"
|
41 |
msgstr "Añada los botones de Facebook a su página o post"
|
42 |
|
43 |
-
#: facebook-button-plugin.php:
|
44 |
msgid "FAQ"
|
45 |
msgstr "Preguntas frecuentes"
|
46 |
|
47 |
-
#: facebook-button-plugin.php:
|
48 |
msgid "Support"
|
49 |
msgstr "Soporte"
|
50 |
|
@@ -67,167 +67,179 @@ msgstr "Custom código"
|
|
67 |
msgid "License Key"
|
68 |
msgstr "Clave de licencia incorrecta"
|
69 |
|
70 |
-
#: includes/class-fcbkbttn-settings.php:
|
71 |
msgid "Settings saved"
|
72 |
msgstr "Configuración guardada"
|
73 |
|
74 |
-
#: includes/class-fcbkbttn-settings.php:
|
75 |
-
msgid "Error: File size
|
76 |
-
msgstr "
|
77 |
|
78 |
-
#: includes/class-fcbkbttn-settings.php:
|
79 |
msgid "Error: Invalid file type"
|
80 |
msgstr "Error: Tipo de archivo no válido"
|
81 |
|
82 |
-
#: includes/class-fcbkbttn-settings.php:
|
83 |
msgid "Upload successful."
|
84 |
msgstr "Descarga correcta"
|
85 |
|
86 |
-
#: includes/class-fcbkbttn-settings.php:
|
87 |
#, fuzzy
|
88 |
msgid "Error: failed to move file."
|
89 |
msgstr "Error: error al mover archivo"
|
90 |
|
91 |
-
#: includes/class-fcbkbttn-settings.php:
|
92 |
#, fuzzy
|
93 |
msgid "Error: check image width or height."
|
94 |
msgstr "Error: Compruebe la altura o anchura de la imagen"
|
95 |
|
96 |
-
#: includes/class-fcbkbttn-settings.php:
|
97 |
msgid "Uploading Error: check image properties"
|
98 |
msgstr "Error de descarga: compruebe las propiedades de la imagen"
|
99 |
|
100 |
-
#: includes/class-fcbkbttn-settings.php:
|
101 |
msgid "General"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: includes/class-fcbkbttn-settings.php:
|
105 |
#, fuzzy
|
106 |
msgid "Buttons"
|
107 |
msgstr "Diseño del botón"
|
108 |
|
109 |
-
#: includes/class-fcbkbttn-settings.php:
|
110 |
msgid "Profile URL"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: includes/class-fcbkbttn-settings.php:
|
114 |
-
#: includes/class-fcbkbttn-settings.php:
|
115 |
msgid "Like"
|
116 |
msgstr "Me gusta"
|
117 |
|
118 |
-
#: includes/class-fcbkbttn-settings.php:
|
119 |
msgid "Share"
|
120 |
msgstr "Compartir"
|
121 |
|
122 |
-
#: includes/class-fcbkbttn-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
#, fuzzy
|
124 |
msgid "Buttons Position"
|
125 |
msgstr "Posición Facebook Buttons"
|
126 |
|
127 |
-
#: includes/class-fcbkbttn-settings.php:
|
128 |
#, fuzzy
|
129 |
msgid "Before content"
|
130 |
msgstr "Antes y Después"
|
131 |
|
132 |
-
#: includes/class-fcbkbttn-settings.php:
|
133 |
msgid "After content"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: includes/class-fcbkbttn-settings.php:
|
137 |
msgid "Language"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: includes/class-fcbkbttn-settings.php:
|
141 |
#, fuzzy
|
142 |
msgid "Select the default language for Facebook button(-s)."
|
143 |
msgstr "Cambie el idioma de Facebook Button"
|
144 |
|
145 |
-
#: includes/class-fcbkbttn-settings.php:
|
146 |
-
#: includes/class-fcbkbttn-settings.php:
|
147 |
-
#: includes/class-fcbkbttn-settings.php:
|
148 |
msgid ""
|
149 |
"Enable to switch language automatically on multilingual website using "
|
150 |
"Multilanguage plugin."
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: includes/class-fcbkbttn-settings.php:
|
154 |
#, fuzzy, php-format
|
155 |
msgid "Activate %s"
|
156 |
msgstr "Activado"
|
157 |
|
158 |
-
#: includes/class-fcbkbttn-settings.php:
|
159 |
msgid "Learn More"
|
160 |
msgstr "Conozca más"
|
161 |
|
162 |
-
#: includes/class-fcbkbttn-settings.php:
|
163 |
#, fuzzy
|
164 |
msgid "Excerpt"
|
165 |
msgstr "Post fragmentado"
|
166 |
|
167 |
-
#: includes/class-fcbkbttn-settings.php:
|
168 |
#, fuzzy
|
169 |
msgid "Enable to display buttons in excerpt."
|
170 |
msgstr "Despliegue el botón en el fragmento"
|
171 |
|
172 |
-
#: includes/class-fcbkbttn-settings.php:
|
173 |
-
#: includes/class-fcbkbttn-settings.php:
|
174 |
-
#: includes/class-fcbkbttn-settings.php:
|
175 |
msgid "Close"
|
176 |
msgstr "Cerrar"
|
177 |
|
178 |
-
#: includes/class-fcbkbttn-settings.php:
|
179 |
#, fuzzy
|
180 |
msgid "Meta Image"
|
181 |
msgstr "Meta etiquetas"
|
182 |
|
183 |
-
#: includes/class-fcbkbttn-settings.php:
|
184 |
msgid "Featured Image"
|
185 |
msgstr "Imagen distintitiva"
|
186 |
|
187 |
-
#: includes/class-fcbkbttn-settings.php:
|
188 |
msgid "Custom Image"
|
189 |
msgstr "Imagen customizada"
|
190 |
|
191 |
-
#: includes/class-fcbkbttn-settings.php:
|
192 |
#, fuzzy
|
193 |
msgid "This image will be used for all posts"
|
194 |
msgstr "Esta imagen serà usada para todos los posts"
|
195 |
|
196 |
-
#: includes/class-fcbkbttn-settings.php:
|
197 |
#, fuzzy
|
198 |
msgid "Meta Description"
|
199 |
msgstr "Descripción"
|
200 |
|
201 |
-
#: includes/class-fcbkbttn-settings.php:
|
202 |
#, fuzzy
|
203 |
msgid ""
|
204 |
"This description will be used for all pages and posts. Leave blank to use "
|
205 |
"page description."
|
206 |
msgstr "Esta descripción será utilitzada en todos los post"
|
207 |
|
208 |
-
#: includes/class-fcbkbttn-settings.php:
|
209 |
msgid "Profile URL Button"
|
210 |
msgstr ""
|
211 |
|
212 |
-
#: includes/class-fcbkbttn-settings.php:
|
213 |
#, fuzzy
|
214 |
msgid "Facebook ID or Username"
|
215 |
msgstr "Su ID de Facebook o usuario"
|
216 |
|
217 |
-
#: includes/class-fcbkbttn-settings.php:
|
218 |
msgid "Profile Button Image"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: includes/class-fcbkbttn-settings.php:
|
222 |
msgid "Default"
|
223 |
msgstr ""
|
224 |
|
225 |
-
#: includes/class-fcbkbttn-settings.php:
|
226 |
#, fuzzy
|
227 |
msgid "Custom image"
|
228 |
msgstr "Imagen customizada"
|
229 |
|
230 |
-
#: includes/class-fcbkbttn-settings.php:
|
231 |
#, fuzzy
|
232 |
msgid ""
|
233 |
"To use custom image, You need to setup permissions for upload directory of "
|
@@ -236,11 +248,11 @@ msgstr ""
|
|
236 |
"Para utilizar imágenes personalizadas necessita instalar permisos para "
|
237 |
"descargar el directorio de su sitio"
|
238 |
|
239 |
-
#: includes/class-fcbkbttn-settings.php:
|
240 |
msgid "Current image"
|
241 |
msgstr "Imagen actual"
|
242 |
|
243 |
-
#: includes/class-fcbkbttn-settings.php:
|
244 |
#, fuzzy
|
245 |
msgid ""
|
246 |
"Image requirements: max image width:100px; max image height:40px; max image "
|
@@ -250,94 +262,93 @@ msgstr ""
|
|
250 |
"imagen: 40px; tamaño máximo de imagen: 32Kb; tipus de imagen: \"jpg\", \"jpeg"
|
251 |
"\", \"png\"."
|
252 |
|
253 |
-
#: includes/class-fcbkbttn-settings.php:
|
254 |
#, fuzzy
|
255 |
msgid "Like&Share Buttons"
|
256 |
msgstr "Acción del botón \"me gusta\""
|
257 |
|
258 |
-
#: includes/class-fcbkbttn-settings.php:
|
259 |
#, fuzzy
|
260 |
msgid "Layout"
|
261 |
msgstr "Ancho del diseño"
|
262 |
|
263 |
-
#: includes/class-fcbkbttn-settings.php:
|
264 |
#, fuzzy
|
265 |
msgid "Like Button Action"
|
266 |
msgstr "Acción del botón \"me gusta\""
|
267 |
|
268 |
-
#: includes/class-fcbkbttn-settings.php:
|
269 |
msgid "Recommend"
|
270 |
msgstr "Recomendar"
|
271 |
|
272 |
-
#: includes/class-fcbkbttn-settings.php:
|
273 |
msgid "Friends Faces"
|
274 |
msgstr ""
|
275 |
|
276 |
-
#: includes/class-fcbkbttn-settings.php:
|
277 |
msgid " Enable to show faces of your friends who submitted the button."
|
278 |
msgstr ""
|
279 |
|
280 |
-
#: includes/class-fcbkbttn-settings.php:
|
281 |
#, fuzzy
|
282 |
msgid "Layout Width"
|
283 |
msgstr "Ancho del diseño"
|
284 |
|
285 |
-
#: includes/class-fcbkbttn-settings.php:
|
286 |
msgid "px"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: includes/class-fcbkbttn-settings.php:
|
290 |
msgid "Theme"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: includes/class-fcbkbttn-settings.php:
|
294 |
msgid "Light"
|
295 |
msgstr "Claro"
|
296 |
|
297 |
-
#: includes/class-fcbkbttn-settings.php:
|
298 |
msgid "Dark"
|
299 |
msgstr "Oscuro"
|
300 |
|
301 |
-
#: includes/class-fcbkbttn-settings.php:
|
302 |
#, fuzzy
|
303 |
msgid "Like Button HTML Tag"
|
304 |
msgstr "Acción del botón \"me gusta\""
|
305 |
|
306 |
-
#: includes/class-fcbkbttn-settings.php:
|
307 |
#, php-format
|
308 |
msgid "Tag %s can be used to improve website code validation."
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: includes/class-fcbkbttn-settings.php:
|
312 |
msgid "URL to Like"
|
313 |
msgstr ""
|
314 |
|
315 |
-
#: includes/class-fcbkbttn-settings.php:
|
316 |
msgid "Leave blank to use a current page."
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: includes/class-fcbkbttn-settings.php:
|
320 |
-
|
321 |
-
|
322 |
-
msgstr "Posición Facebook Buttons"
|
323 |
|
324 |
-
#: includes/class-fcbkbttn-settings.php:
|
325 |
msgid ""
|
326 |
"Add Facebook button(-s) to your posts, pages, custom post types or widgets "
|
327 |
"by using the following shortcode:"
|
328 |
msgstr ""
|
329 |
|
330 |
-
#: includes/class-fcbkbttn-settings.php:
|
331 |
#, fuzzy
|
332 |
msgid "Facebook Buttons Preview"
|
333 |
msgstr "Vista preliminar del Facebook Button"
|
334 |
|
335 |
-
#: includes/class-fcbkbttn-settings.php:
|
336 |
#, fuzzy
|
337 |
msgid "Display Settings"
|
338 |
msgstr "Botón despliegue"
|
339 |
|
340 |
-
#: includes/class-fcbkbttn-settings.php:
|
341 |
msgid ""
|
342 |
"Please choose the necessary post types (or single pages) where Facebook "
|
343 |
"button will be displayed:"
|
@@ -345,17 +356,26 @@ msgstr ""
|
|
345 |
"Por favor, escoja los tipos de post necesario (o pàgines individuales) donde "
|
346 |
"el Facebook Button debe ser mostrado:"
|
347 |
|
348 |
-
#: includes/class-fcbkbttn-settings.php:
|
349 |
msgid "Show URL for pages"
|
350 |
msgstr "Mostrar la URL de las páginas"
|
351 |
|
352 |
-
#: includes/class-fcbkbttn-settings.php:
|
353 |
-
msgid "Example of
|
354 |
-
msgstr "
|
355 |
|
356 |
-
|
357 |
-
|
358 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
359 |
|
360 |
#, fuzzy
|
361 |
#~ msgid "Facebook button Settings"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-07-10 12:20+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-07-10 12:20+0300\n"
|
7 |
"Last-Translator: \n"
|
8 |
"Language-Team: Africa Boleko <info@markekimika.es>\n"
|
9 |
"Language: es_ES\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
#: facebook-button-plugin.php:35 facebook-button-plugin.php:36
|
22 |
+
#: facebook-button-plugin.php:176 includes/class-fcbkbttn-settings.php:181
|
23 |
msgid "Facebook Button Settings"
|
24 |
msgstr "Ajustes de Facebook Button"
|
25 |
|
26 |
+
#: facebook-button-plugin.php:36 facebook-button-plugin.php:382
|
27 |
+
#: facebook-button-plugin.php:396 includes/class-fcbkbttn-settings.php:23
|
28 |
msgid "Settings"
|
29 |
msgstr "Ajustes"
|
30 |
|
32 |
msgid "Upgrade to Pro"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: facebook-button-plugin.php:177
|
36 |
msgid "Please, enable JavaScript in Your browser."
|
37 |
msgstr "Por favor, habilite JavaScrip en su navegador"
|
38 |
|
39 |
+
#: facebook-button-plugin.php:275
|
40 |
msgid "Add Facebook buttons to your page or post"
|
41 |
msgstr "Añada los botones de Facebook a su página o post"
|
42 |
|
43 |
+
#: facebook-button-plugin.php:397
|
44 |
msgid "FAQ"
|
45 |
msgstr "Preguntas frecuentes"
|
46 |
|
47 |
+
#: facebook-button-plugin.php:398
|
48 |
msgid "Support"
|
49 |
msgstr "Soporte"
|
50 |
|
67 |
msgid "License Key"
|
68 |
msgstr "Clave de licencia incorrecta"
|
69 |
|
70 |
+
#: includes/class-fcbkbttn-settings.php:107
|
71 |
msgid "Settings saved"
|
72 |
msgstr "Configuración guardada"
|
73 |
|
74 |
+
#: includes/class-fcbkbttn-settings.php:136
|
75 |
+
msgid "Error: File size must not exceed 32KB"
|
76 |
+
msgstr ""
|
77 |
|
78 |
+
#: includes/class-fcbkbttn-settings.php:139
|
79 |
msgid "Error: Invalid file type"
|
80 |
msgstr "Error: Tipo de archivo no válido"
|
81 |
|
82 |
+
#: includes/class-fcbkbttn-settings.php:145
|
83 |
msgid "Upload successful."
|
84 |
msgstr "Descarga correcta"
|
85 |
|
86 |
+
#: includes/class-fcbkbttn-settings.php:153
|
87 |
#, fuzzy
|
88 |
msgid "Error: failed to move file."
|
89 |
msgstr "Error: error al mover archivo"
|
90 |
|
91 |
+
#: includes/class-fcbkbttn-settings.php:156
|
92 |
#, fuzzy
|
93 |
msgid "Error: check image width or height."
|
94 |
msgstr "Error: Compruebe la altura o anchura de la imagen"
|
95 |
|
96 |
+
#: includes/class-fcbkbttn-settings.php:160
|
97 |
msgid "Uploading Error: check image properties"
|
98 |
msgstr "Error de descarga: compruebe las propiedades de la imagen"
|
99 |
|
100 |
+
#: includes/class-fcbkbttn-settings.php:184
|
101 |
msgid "General"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: includes/class-fcbkbttn-settings.php:187
|
105 |
#, fuzzy
|
106 |
msgid "Buttons"
|
107 |
msgstr "Diseño del botón"
|
108 |
|
109 |
+
#: includes/class-fcbkbttn-settings.php:190
|
110 |
msgid "Profile URL"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: includes/class-fcbkbttn-settings.php:191
|
114 |
+
#: includes/class-fcbkbttn-settings.php:386
|
115 |
msgid "Like"
|
116 |
msgstr "Me gusta"
|
117 |
|
118 |
+
#: includes/class-fcbkbttn-settings.php:192
|
119 |
msgid "Share"
|
120 |
msgstr "Compartir"
|
121 |
|
122 |
+
#: includes/class-fcbkbttn-settings.php:197
|
123 |
+
msgid "Buttons Size"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/class-fcbkbttn-settings.php:200
|
127 |
+
msgid "Small"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/class-fcbkbttn-settings.php:201
|
131 |
+
msgid "Large"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/class-fcbkbttn-settings.php:206
|
135 |
#, fuzzy
|
136 |
msgid "Buttons Position"
|
137 |
msgstr "Posición Facebook Buttons"
|
138 |
|
139 |
+
#: includes/class-fcbkbttn-settings.php:211
|
140 |
#, fuzzy
|
141 |
msgid "Before content"
|
142 |
msgstr "Antes y Después"
|
143 |
|
144 |
+
#: includes/class-fcbkbttn-settings.php:216
|
145 |
msgid "After content"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: includes/class-fcbkbttn-settings.php:222
|
149 |
msgid "Language"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: includes/class-fcbkbttn-settings.php:233
|
153 |
#, fuzzy
|
154 |
msgid "Select the default language for Facebook button(-s)."
|
155 |
msgstr "Cambie el idioma de Facebook Button"
|
156 |
|
157 |
+
#: includes/class-fcbkbttn-settings.php:242
|
158 |
+
#: includes/class-fcbkbttn-settings.php:245
|
159 |
+
#: includes/class-fcbkbttn-settings.php:249
|
160 |
msgid ""
|
161 |
"Enable to switch language automatically on multilingual website using "
|
162 |
"Multilanguage plugin."
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: includes/class-fcbkbttn-settings.php:245
|
166 |
#, fuzzy, php-format
|
167 |
msgid "Activate %s"
|
168 |
msgstr "Activado"
|
169 |
|
170 |
+
#: includes/class-fcbkbttn-settings.php:249
|
171 |
msgid "Learn More"
|
172 |
msgstr "Conozca más"
|
173 |
|
174 |
+
#: includes/class-fcbkbttn-settings.php:254
|
175 |
#, fuzzy
|
176 |
msgid "Excerpt"
|
177 |
msgstr "Post fragmentado"
|
178 |
|
179 |
+
#: includes/class-fcbkbttn-settings.php:256
|
180 |
#, fuzzy
|
181 |
msgid "Enable to display buttons in excerpt."
|
182 |
msgstr "Despliegue el botón en el fragmento"
|
183 |
|
184 |
+
#: includes/class-fcbkbttn-settings.php:265
|
185 |
+
#: includes/class-fcbkbttn-settings.php:441
|
186 |
+
#: includes/class-fcbkbttn-settings.php:496
|
187 |
msgid "Close"
|
188 |
msgstr "Cerrar"
|
189 |
|
190 |
+
#: includes/class-fcbkbttn-settings.php:269
|
191 |
#, fuzzy
|
192 |
msgid "Meta Image"
|
193 |
msgstr "Meta etiquetas"
|
194 |
|
195 |
+
#: includes/class-fcbkbttn-settings.php:274
|
196 |
msgid "Featured Image"
|
197 |
msgstr "Imagen distintitiva"
|
198 |
|
199 |
+
#: includes/class-fcbkbttn-settings.php:278
|
200 |
msgid "Custom Image"
|
201 |
msgstr "Imagen customizada"
|
202 |
|
203 |
+
#: includes/class-fcbkbttn-settings.php:278
|
204 |
#, fuzzy
|
205 |
msgid "This image will be used for all posts"
|
206 |
msgstr "Esta imagen serà usada para todos los posts"
|
207 |
|
208 |
+
#: includes/class-fcbkbttn-settings.php:285
|
209 |
#, fuzzy
|
210 |
msgid "Meta Description"
|
211 |
msgstr "Descripción"
|
212 |
|
213 |
+
#: includes/class-fcbkbttn-settings.php:289
|
214 |
#, fuzzy
|
215 |
msgid ""
|
216 |
"This description will be used for all pages and posts. Leave blank to use "
|
217 |
"page description."
|
218 |
msgstr "Esta descripción será utilitzada en todos los post"
|
219 |
|
220 |
+
#: includes/class-fcbkbttn-settings.php:298
|
221 |
msgid "Profile URL Button"
|
222 |
msgstr ""
|
223 |
|
224 |
+
#: includes/class-fcbkbttn-settings.php:301
|
225 |
#, fuzzy
|
226 |
msgid "Facebook ID or Username"
|
227 |
msgstr "Su ID de Facebook o usuario"
|
228 |
|
229 |
+
#: includes/class-fcbkbttn-settings.php:308
|
230 |
msgid "Profile Button Image"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: includes/class-fcbkbttn-settings.php:315
|
234 |
msgid "Default"
|
235 |
msgstr ""
|
236 |
|
237 |
+
#: includes/class-fcbkbttn-settings.php:320
|
238 |
#, fuzzy
|
239 |
msgid "Custom image"
|
240 |
msgstr "Imagen customizada"
|
241 |
|
242 |
+
#: includes/class-fcbkbttn-settings.php:324
|
243 |
#, fuzzy
|
244 |
msgid ""
|
245 |
"To use custom image, You need to setup permissions for upload directory of "
|
248 |
"Para utilizar imágenes personalizadas necessita instalar permisos para "
|
249 |
"descargar el directorio de su sitio"
|
250 |
|
251 |
+
#: includes/class-fcbkbttn-settings.php:331
|
252 |
msgid "Current image"
|
253 |
msgstr "Imagen actual"
|
254 |
|
255 |
+
#: includes/class-fcbkbttn-settings.php:339
|
256 |
#, fuzzy
|
257 |
msgid ""
|
258 |
"Image requirements: max image width:100px; max image height:40px; max image "
|
262 |
"imagen: 40px; tamaño máximo de imagen: 32Kb; tipus de imagen: \"jpg\", \"jpeg"
|
263 |
"\", \"png\"."
|
264 |
|
265 |
+
#: includes/class-fcbkbttn-settings.php:343
|
266 |
#, fuzzy
|
267 |
msgid "Like&Share Buttons"
|
268 |
msgstr "Acción del botón \"me gusta\""
|
269 |
|
270 |
+
#: includes/class-fcbkbttn-settings.php:346
|
271 |
#, fuzzy
|
272 |
msgid "Layout"
|
273 |
msgstr "Ancho del diseño"
|
274 |
|
275 |
+
#: includes/class-fcbkbttn-settings.php:381
|
276 |
#, fuzzy
|
277 |
msgid "Like Button Action"
|
278 |
msgstr "Acción del botón \"me gusta\""
|
279 |
|
280 |
+
#: includes/class-fcbkbttn-settings.php:391
|
281 |
msgid "Recommend"
|
282 |
msgstr "Recomendar"
|
283 |
|
284 |
+
#: includes/class-fcbkbttn-settings.php:397
|
285 |
msgid "Friends Faces"
|
286 |
msgstr ""
|
287 |
|
288 |
+
#: includes/class-fcbkbttn-settings.php:400
|
289 |
msgid " Enable to show faces of your friends who submitted the button."
|
290 |
msgstr ""
|
291 |
|
292 |
+
#: includes/class-fcbkbttn-settings.php:404
|
293 |
#, fuzzy
|
294 |
msgid "Layout Width"
|
295 |
msgstr "Ancho del diseño"
|
296 |
|
297 |
+
#: includes/class-fcbkbttn-settings.php:406
|
298 |
msgid "px"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: includes/class-fcbkbttn-settings.php:410
|
302 |
msgid "Theme"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: includes/class-fcbkbttn-settings.php:415
|
306 |
msgid "Light"
|
307 |
msgstr "Claro"
|
308 |
|
309 |
+
#: includes/class-fcbkbttn-settings.php:420
|
310 |
msgid "Dark"
|
311 |
msgstr "Oscuro"
|
312 |
|
313 |
+
#: includes/class-fcbkbttn-settings.php:426
|
314 |
#, fuzzy
|
315 |
msgid "Like Button HTML Tag"
|
316 |
msgstr "Acción del botón \"me gusta\""
|
317 |
|
318 |
+
#: includes/class-fcbkbttn-settings.php:432
|
319 |
#, php-format
|
320 |
msgid "Tag %s can be used to improve website code validation."
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: includes/class-fcbkbttn-settings.php:445
|
324 |
msgid "URL to Like"
|
325 |
msgstr ""
|
326 |
|
327 |
+
#: includes/class-fcbkbttn-settings.php:447
|
328 |
msgid "Leave blank to use a current page."
|
329 |
msgstr ""
|
330 |
|
331 |
+
#: includes/class-fcbkbttn-settings.php:475
|
332 |
+
msgid "Facebook Buttons Shortcode"
|
333 |
+
msgstr ""
|
|
|
334 |
|
335 |
+
#: includes/class-fcbkbttn-settings.php:478
|
336 |
msgid ""
|
337 |
"Add Facebook button(-s) to your posts, pages, custom post types or widgets "
|
338 |
"by using the following shortcode:"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: includes/class-fcbkbttn-settings.php:497
|
342 |
#, fuzzy
|
343 |
msgid "Facebook Buttons Preview"
|
344 |
msgstr "Vista preliminar del Facebook Button"
|
345 |
|
346 |
+
#: includes/class-fcbkbttn-settings.php:512
|
347 |
#, fuzzy
|
348 |
msgid "Display Settings"
|
349 |
msgstr "Botón despliegue"
|
350 |
|
351 |
+
#: includes/class-fcbkbttn-settings.php:521
|
352 |
msgid ""
|
353 |
"Please choose the necessary post types (or single pages) where Facebook "
|
354 |
"button will be displayed:"
|
356 |
"Por favor, escoja los tipos de post necesario (o pàgines individuales) donde "
|
357 |
"el Facebook Button debe ser mostrado:"
|
358 |
|
359 |
+
#: includes/class-fcbkbttn-settings.php:528
|
360 |
msgid "Show URL for pages"
|
361 |
msgstr "Mostrar la URL de las páginas"
|
362 |
|
363 |
+
#: includes/class-fcbkbttn-settings.php:534
|
364 |
+
msgid "Example of site pages tree"
|
365 |
+
msgstr ""
|
366 |
|
367 |
+
#~ msgid "Error: File size > 32K"
|
368 |
+
#~ msgstr "Error: Tamaño archivo >32K"
|
369 |
+
|
370 |
+
#~ msgid "Example of the site's pages tree"
|
371 |
+
#~ msgstr "Ejemplo de las tres páginas del sitio"
|
372 |
+
|
373 |
+
#~ msgid "Example of site pages' tree"
|
374 |
+
#~ msgstr "Ejemplo de las tres pàgines del sitio"
|
375 |
+
|
376 |
+
#, fuzzy
|
377 |
+
#~ msgid "Facebook Buttons Shortchode"
|
378 |
+
#~ msgstr "Posición Facebook Buttons"
|
379 |
|
380 |
#, fuzzy
|
381 |
#~ msgid "Facebook button Settings"
|
languages/facebook-button-plugin-fi_FI.mo
CHANGED
Binary file
|
languages/facebook-button-plugin-fi_FI.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: Juhani Honkanen <juhani.honkanen@dnainternet.net>\n"
|
9 |
"Language: fi_FI\n"
|
@@ -18,12 +18,12 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: facebook-button-plugin.php:35 facebook-button-plugin.php:36
|
21 |
-
#: facebook-button-plugin.php:
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "Facebook Napin asetukset"
|
24 |
|
25 |
-
#: facebook-button-plugin.php:36 facebook-button-plugin.php:
|
26 |
-
#: facebook-button-plugin.php:
|
27 |
msgid "Settings"
|
28 |
msgstr "Asetukset"
|
29 |
|
@@ -31,20 +31,20 @@ msgstr "Asetukset"
|
|
31 |
msgid "Upgrade to Pro"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: facebook-button-plugin.php:
|
35 |
msgid "Please, enable JavaScript in Your browser."
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: facebook-button-plugin.php:
|
39 |
#, fuzzy
|
40 |
msgid "Add Facebook buttons to your page or post"
|
41 |
msgstr "Facebook napin paikka:"
|
42 |
|
43 |
-
#: facebook-button-plugin.php:
|
44 |
msgid "FAQ"
|
45 |
msgstr "FAQ"
|
46 |
|
47 |
-
#: facebook-button-plugin.php:
|
48 |
msgid "Support"
|
49 |
msgstr "Tuki"
|
50 |
|
@@ -66,176 +66,188 @@ msgstr "Mukautettu Fecabook kuva"
|
|
66 |
msgid "License Key"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: includes/class-fcbkbttn-settings.php:
|
70 |
msgid "Settings saved"
|
71 |
msgstr "Asetukset tallennettu"
|
72 |
|
73 |
-
#: includes/class-fcbkbttn-settings.php:
|
74 |
-
msgid "Error: File size
|
75 |
-
msgstr "
|
76 |
|
77 |
-
#: includes/class-fcbkbttn-settings.php:
|
78 |
msgid "Error: Invalid file type"
|
79 |
msgstr "Virhe: Väärä tiedostotyyppi"
|
80 |
|
81 |
-
#: includes/class-fcbkbttn-settings.php:
|
82 |
msgid "Upload successful."
|
83 |
msgstr "Lataaminen onnistui"
|
84 |
|
85 |
-
#: includes/class-fcbkbttn-settings.php:
|
86 |
#, fuzzy
|
87 |
msgid "Error: failed to move file."
|
88 |
msgstr "Virhe: tiedoston siirto epäonnistui"
|
89 |
|
90 |
-
#: includes/class-fcbkbttn-settings.php:
|
91 |
#, fuzzy
|
92 |
msgid "Error: check image width or height."
|
93 |
msgstr "Virhe: tarkista kuvan leveys tai korkeus"
|
94 |
|
95 |
-
#: includes/class-fcbkbttn-settings.php:
|
96 |
msgid "Uploading Error: check image properties"
|
97 |
msgstr "Virhe latauksessa: tarkista kuvan ominaisuudet"
|
98 |
|
99 |
-
#: includes/class-fcbkbttn-settings.php:
|
100 |
msgid "General"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: includes/class-fcbkbttn-settings.php:
|
104 |
#, fuzzy
|
105 |
msgid "Buttons"
|
106 |
msgstr "Facebook napin paikka:"
|
107 |
|
108 |
-
#: includes/class-fcbkbttn-settings.php:
|
109 |
msgid "Profile URL"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: includes/class-fcbkbttn-settings.php:
|
113 |
-
#: includes/class-fcbkbttn-settings.php:
|
114 |
msgid "Like"
|
115 |
msgstr "Tykkää"
|
116 |
|
117 |
-
#: includes/class-fcbkbttn-settings.php:
|
118 |
msgid "Share"
|
119 |
msgstr "Jaa"
|
120 |
|
121 |
-
#: includes/class-fcbkbttn-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
#, fuzzy
|
123 |
msgid "Buttons Position"
|
124 |
msgstr "Facebook napin paikka:"
|
125 |
|
126 |
-
#: includes/class-fcbkbttn-settings.php:
|
127 |
#, fuzzy
|
128 |
msgid "Before content"
|
129 |
msgstr "Ennen ja Jälkeen"
|
130 |
|
131 |
-
#: includes/class-fcbkbttn-settings.php:
|
132 |
msgid "After content"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: includes/class-fcbkbttn-settings.php:
|
136 |
msgid "Language"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: includes/class-fcbkbttn-settings.php:
|
140 |
#, fuzzy
|
141 |
msgid "Select the default language for Facebook button(-s)."
|
142 |
msgstr "Vaihda Facebook napin kieli"
|
143 |
|
144 |
-
#: includes/class-fcbkbttn-settings.php:
|
145 |
-
#: includes/class-fcbkbttn-settings.php:
|
146 |
-
#: includes/class-fcbkbttn-settings.php:
|
147 |
msgid ""
|
148 |
"Enable to switch language automatically on multilingual website using "
|
149 |
"Multilanguage plugin."
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: includes/class-fcbkbttn-settings.php:
|
153 |
#, php-format
|
154 |
msgid "Activate %s"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: includes/class-fcbkbttn-settings.php:
|
158 |
msgid "Learn More"
|
159 |
msgstr "Lue Lisää"
|
160 |
|
161 |
-
#: includes/class-fcbkbttn-settings.php:
|
162 |
msgid "Excerpt"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: includes/class-fcbkbttn-settings.php:
|
166 |
#, fuzzy
|
167 |
msgid "Enable to display buttons in excerpt."
|
168 |
msgstr "Näytä nappi:"
|
169 |
|
170 |
-
#: includes/class-fcbkbttn-settings.php:
|
171 |
-
#: includes/class-fcbkbttn-settings.php:
|
172 |
-
#: includes/class-fcbkbttn-settings.php:
|
173 |
msgid "Close"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: includes/class-fcbkbttn-settings.php:
|
177 |
#, fuzzy
|
178 |
msgid "Meta Image"
|
179 |
msgstr "Mukautettu Fecabook kuva"
|
180 |
|
181 |
-
#: includes/class-fcbkbttn-settings.php:
|
182 |
msgid "Featured Image"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: includes/class-fcbkbttn-settings.php:
|
186 |
#, fuzzy
|
187 |
msgid "Custom Image"
|
188 |
msgstr "Mukautettu Fecabook kuva"
|
189 |
|
190 |
-
#: includes/class-fcbkbttn-settings.php:
|
191 |
msgid "This image will be used for all posts"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: includes/class-fcbkbttn-settings.php:
|
195 |
msgid "Meta Description"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: includes/class-fcbkbttn-settings.php:
|
199 |
msgid ""
|
200 |
"This description will be used for all pages and posts. Leave blank to use "
|
201 |
"page description."
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: includes/class-fcbkbttn-settings.php:
|
205 |
msgid "Profile URL Button"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: includes/class-fcbkbttn-settings.php:
|
209 |
#, fuzzy
|
210 |
msgid "Facebook ID or Username"
|
211 |
msgstr "Sinun Facebook ID:si tai käyttäjänimesi:"
|
212 |
|
213 |
-
#: includes/class-fcbkbttn-settings.php:
|
214 |
msgid "Profile Button Image"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: includes/class-fcbkbttn-settings.php:
|
218 |
msgid "Default"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: includes/class-fcbkbttn-settings.php:
|
222 |
#, fuzzy
|
223 |
msgid "Custom image"
|
224 |
msgstr "Mukautettu Fecabook kuva"
|
225 |
|
226 |
-
#: includes/class-fcbkbttn-settings.php:
|
227 |
#, fuzzy
|
228 |
msgid ""
|
229 |
"To use custom image, You need to setup permissions for upload directory of "
|
230 |
"your site"
|
231 |
msgstr "Käyttääksesi mukautettua, kuva pitää voida ladata hakemistoosi"
|
232 |
|
233 |
-
#: includes/class-fcbkbttn-settings.php:
|
234 |
#, fuzzy
|
235 |
msgid "Current image"
|
236 |
msgstr "Nykyinen kuva:"
|
237 |
|
238 |
-
#: includes/class-fcbkbttn-settings.php:
|
239 |
#, fuzzy
|
240 |
msgid ""
|
241 |
"Image requirements: max image width:100px; max image height:40px; max image "
|
@@ -244,89 +256,88 @@ msgstr ""
|
|
244 |
"Kuvan ominaisuudet: max leveys 100px; max korkeus 40px; max koko 32Kb; kuvan "
|
245 |
"tyypit:\"jpg\", \"jpeg\", \"png\"."
|
246 |
|
247 |
-
#: includes/class-fcbkbttn-settings.php:
|
248 |
msgid "Like&Share Buttons"
|
249 |
msgstr ""
|
250 |
|
251 |
-
#: includes/class-fcbkbttn-settings.php:
|
252 |
msgid "Layout"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: includes/class-fcbkbttn-settings.php:
|
256 |
msgid "Like Button Action"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: includes/class-fcbkbttn-settings.php:
|
260 |
msgid "Recommend"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: includes/class-fcbkbttn-settings.php:
|
264 |
msgid "Friends Faces"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: includes/class-fcbkbttn-settings.php:
|
268 |
msgid " Enable to show faces of your friends who submitted the button."
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: includes/class-fcbkbttn-settings.php:
|
272 |
msgid "Layout Width"
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: includes/class-fcbkbttn-settings.php:
|
276 |
msgid "px"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: includes/class-fcbkbttn-settings.php:
|
280 |
msgid "Theme"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: includes/class-fcbkbttn-settings.php:
|
284 |
msgid "Light"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: includes/class-fcbkbttn-settings.php:
|
288 |
msgid "Dark"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: includes/class-fcbkbttn-settings.php:
|
292 |
msgid "Like Button HTML Tag"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: includes/class-fcbkbttn-settings.php:
|
296 |
#, php-format
|
297 |
msgid "Tag %s can be used to improve website code validation."
|
298 |
msgstr ""
|
299 |
|
300 |
-
#: includes/class-fcbkbttn-settings.php:
|
301 |
msgid "URL to Like"
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: includes/class-fcbkbttn-settings.php:
|
305 |
msgid "Leave blank to use a current page."
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: includes/class-fcbkbttn-settings.php:
|
309 |
-
|
310 |
-
|
311 |
-
msgstr "Facebook napin paikka:"
|
312 |
|
313 |
-
#: includes/class-fcbkbttn-settings.php:
|
314 |
msgid ""
|
315 |
"Add Facebook button(-s) to your posts, pages, custom post types or widgets "
|
316 |
"by using the following shortcode:"
|
317 |
msgstr ""
|
318 |
|
319 |
-
#: includes/class-fcbkbttn-settings.php:
|
320 |
#, fuzzy
|
321 |
msgid "Facebook Buttons Preview"
|
322 |
msgstr "Facebook Nappi"
|
323 |
|
324 |
-
#: includes/class-fcbkbttn-settings.php:
|
325 |
#, fuzzy
|
326 |
msgid "Display Settings"
|
327 |
msgstr "Näytä nappi:"
|
328 |
|
329 |
-
#: includes/class-fcbkbttn-settings.php:
|
330 |
msgid ""
|
331 |
"Please choose the necessary post types (or single pages) where Facebook "
|
332 |
"button will be displayed:"
|
@@ -334,17 +345,26 @@ msgstr ""
|
|
334 |
"Valitse haluamasi viestin tyyppi (tai yksittäiset sivut) joissa Facebook "
|
335 |
"nappi näytetään:"
|
336 |
|
337 |
-
#: includes/class-fcbkbttn-settings.php:
|
338 |
msgid "Show URL for pages"
|
339 |
msgstr "Näytä URL sivuilla"
|
340 |
|
341 |
-
#: includes/class-fcbkbttn-settings.php:
|
342 |
-
msgid "Example of
|
343 |
-
msgstr "
|
344 |
|
345 |
-
|
346 |
-
|
347 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
348 |
|
349 |
#, fuzzy
|
350 |
#~ msgid "Facebook button Settings"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-07-10 12:20+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-07-10 12:20+0300\n"
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: Juhani Honkanen <juhani.honkanen@dnainternet.net>\n"
|
9 |
"Language: fi_FI\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: facebook-button-plugin.php:35 facebook-button-plugin.php:36
|
21 |
+
#: facebook-button-plugin.php:176 includes/class-fcbkbttn-settings.php:181
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "Facebook Napin asetukset"
|
24 |
|
25 |
+
#: facebook-button-plugin.php:36 facebook-button-plugin.php:382
|
26 |
+
#: facebook-button-plugin.php:396 includes/class-fcbkbttn-settings.php:23
|
27 |
msgid "Settings"
|
28 |
msgstr "Asetukset"
|
29 |
|
31 |
msgid "Upgrade to Pro"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: facebook-button-plugin.php:177
|
35 |
msgid "Please, enable JavaScript in Your browser."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: facebook-button-plugin.php:275
|
39 |
#, fuzzy
|
40 |
msgid "Add Facebook buttons to your page or post"
|
41 |
msgstr "Facebook napin paikka:"
|
42 |
|
43 |
+
#: facebook-button-plugin.php:397
|
44 |
msgid "FAQ"
|
45 |
msgstr "FAQ"
|
46 |
|
47 |
+
#: facebook-button-plugin.php:398
|
48 |
msgid "Support"
|
49 |
msgstr "Tuki"
|
50 |
|
66 |
msgid "License Key"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: includes/class-fcbkbttn-settings.php:107
|
70 |
msgid "Settings saved"
|
71 |
msgstr "Asetukset tallennettu"
|
72 |
|
73 |
+
#: includes/class-fcbkbttn-settings.php:136
|
74 |
+
msgid "Error: File size must not exceed 32KB"
|
75 |
+
msgstr ""
|
76 |
|
77 |
+
#: includes/class-fcbkbttn-settings.php:139
|
78 |
msgid "Error: Invalid file type"
|
79 |
msgstr "Virhe: Väärä tiedostotyyppi"
|
80 |
|
81 |
+
#: includes/class-fcbkbttn-settings.php:145
|
82 |
msgid "Upload successful."
|
83 |
msgstr "Lataaminen onnistui"
|
84 |
|
85 |
+
#: includes/class-fcbkbttn-settings.php:153
|
86 |
#, fuzzy
|
87 |
msgid "Error: failed to move file."
|
88 |
msgstr "Virhe: tiedoston siirto epäonnistui"
|
89 |
|
90 |
+
#: includes/class-fcbkbttn-settings.php:156
|
91 |
#, fuzzy
|
92 |
msgid "Error: check image width or height."
|
93 |
msgstr "Virhe: tarkista kuvan leveys tai korkeus"
|
94 |
|
95 |
+
#: includes/class-fcbkbttn-settings.php:160
|
96 |
msgid "Uploading Error: check image properties"
|
97 |
msgstr "Virhe latauksessa: tarkista kuvan ominaisuudet"
|
98 |
|
99 |
+
#: includes/class-fcbkbttn-settings.php:184
|
100 |
msgid "General"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: includes/class-fcbkbttn-settings.php:187
|
104 |
#, fuzzy
|
105 |
msgid "Buttons"
|
106 |
msgstr "Facebook napin paikka:"
|
107 |
|
108 |
+
#: includes/class-fcbkbttn-settings.php:190
|
109 |
msgid "Profile URL"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: includes/class-fcbkbttn-settings.php:191
|
113 |
+
#: includes/class-fcbkbttn-settings.php:386
|
114 |
msgid "Like"
|
115 |
msgstr "Tykkää"
|
116 |
|
117 |
+
#: includes/class-fcbkbttn-settings.php:192
|
118 |
msgid "Share"
|
119 |
msgstr "Jaa"
|
120 |
|
121 |
+
#: includes/class-fcbkbttn-settings.php:197
|
122 |
+
msgid "Buttons Size"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: includes/class-fcbkbttn-settings.php:200
|
126 |
+
msgid "Small"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: includes/class-fcbkbttn-settings.php:201
|
130 |
+
msgid "Large"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: includes/class-fcbkbttn-settings.php:206
|
134 |
#, fuzzy
|
135 |
msgid "Buttons Position"
|
136 |
msgstr "Facebook napin paikka:"
|
137 |
|
138 |
+
#: includes/class-fcbkbttn-settings.php:211
|
139 |
#, fuzzy
|
140 |
msgid "Before content"
|
141 |
msgstr "Ennen ja Jälkeen"
|
142 |
|
143 |
+
#: includes/class-fcbkbttn-settings.php:216
|
144 |
msgid "After content"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: includes/class-fcbkbttn-settings.php:222
|
148 |
msgid "Language"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: includes/class-fcbkbttn-settings.php:233
|
152 |
#, fuzzy
|
153 |
msgid "Select the default language for Facebook button(-s)."
|
154 |
msgstr "Vaihda Facebook napin kieli"
|
155 |
|
156 |
+
#: includes/class-fcbkbttn-settings.php:242
|
157 |
+
#: includes/class-fcbkbttn-settings.php:245
|
158 |
+
#: includes/class-fcbkbttn-settings.php:249
|
159 |
msgid ""
|
160 |
"Enable to switch language automatically on multilingual website using "
|
161 |
"Multilanguage plugin."
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: includes/class-fcbkbttn-settings.php:245
|
165 |
#, php-format
|
166 |
msgid "Activate %s"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: includes/class-fcbkbttn-settings.php:249
|
170 |
msgid "Learn More"
|
171 |
msgstr "Lue Lisää"
|
172 |
|
173 |
+
#: includes/class-fcbkbttn-settings.php:254
|
174 |
msgid "Excerpt"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: includes/class-fcbkbttn-settings.php:256
|
178 |
#, fuzzy
|
179 |
msgid "Enable to display buttons in excerpt."
|
180 |
msgstr "Näytä nappi:"
|
181 |
|
182 |
+
#: includes/class-fcbkbttn-settings.php:265
|
183 |
+
#: includes/class-fcbkbttn-settings.php:441
|
184 |
+
#: includes/class-fcbkbttn-settings.php:496
|
185 |
msgid "Close"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: includes/class-fcbkbttn-settings.php:269
|
189 |
#, fuzzy
|
190 |
msgid "Meta Image"
|
191 |
msgstr "Mukautettu Fecabook kuva"
|
192 |
|
193 |
+
#: includes/class-fcbkbttn-settings.php:274
|
194 |
msgid "Featured Image"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: includes/class-fcbkbttn-settings.php:278
|
198 |
#, fuzzy
|
199 |
msgid "Custom Image"
|
200 |
msgstr "Mukautettu Fecabook kuva"
|
201 |
|
202 |
+
#: includes/class-fcbkbttn-settings.php:278
|
203 |
msgid "This image will be used for all posts"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: includes/class-fcbkbttn-settings.php:285
|
207 |
msgid "Meta Description"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: includes/class-fcbkbttn-settings.php:289
|
211 |
msgid ""
|
212 |
"This description will be used for all pages and posts. Leave blank to use "
|
213 |
"page description."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: includes/class-fcbkbttn-settings.php:298
|
217 |
msgid "Profile URL Button"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: includes/class-fcbkbttn-settings.php:301
|
221 |
#, fuzzy
|
222 |
msgid "Facebook ID or Username"
|
223 |
msgstr "Sinun Facebook ID:si tai käyttäjänimesi:"
|
224 |
|
225 |
+
#: includes/class-fcbkbttn-settings.php:308
|
226 |
msgid "Profile Button Image"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: includes/class-fcbkbttn-settings.php:315
|
230 |
msgid "Default"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: includes/class-fcbkbttn-settings.php:320
|
234 |
#, fuzzy
|
235 |
msgid "Custom image"
|
236 |
msgstr "Mukautettu Fecabook kuva"
|
237 |
|
238 |
+
#: includes/class-fcbkbttn-settings.php:324
|
239 |
#, fuzzy
|
240 |
msgid ""
|
241 |
"To use custom image, You need to setup permissions for upload directory of "
|
242 |
"your site"
|
243 |
msgstr "Käyttääksesi mukautettua, kuva pitää voida ladata hakemistoosi"
|
244 |
|
245 |
+
#: includes/class-fcbkbttn-settings.php:331
|
246 |
#, fuzzy
|
247 |
msgid "Current image"
|
248 |
msgstr "Nykyinen kuva:"
|
249 |
|
250 |
+
#: includes/class-fcbkbttn-settings.php:339
|
251 |
#, fuzzy
|
252 |
msgid ""
|
253 |
"Image requirements: max image width:100px; max image height:40px; max image "
|
256 |
"Kuvan ominaisuudet: max leveys 100px; max korkeus 40px; max koko 32Kb; kuvan "
|
257 |
"tyypit:\"jpg\", \"jpeg\", \"png\"."
|
258 |
|
259 |
+
#: includes/class-fcbkbttn-settings.php:343
|
260 |
msgid "Like&Share Buttons"
|
261 |
msgstr ""
|
262 |
|
263 |
+
#: includes/class-fcbkbttn-settings.php:346
|
264 |
msgid "Layout"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: includes/class-fcbkbttn-settings.php:381
|
268 |
msgid "Like Button Action"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: includes/class-fcbkbttn-settings.php:391
|
272 |
msgid "Recommend"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: includes/class-fcbkbttn-settings.php:397
|
276 |
msgid "Friends Faces"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: includes/class-fcbkbttn-settings.php:400
|
280 |
msgid " Enable to show faces of your friends who submitted the button."
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: includes/class-fcbkbttn-settings.php:404
|
284 |
msgid "Layout Width"
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: includes/class-fcbkbttn-settings.php:406
|
288 |
msgid "px"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: includes/class-fcbkbttn-settings.php:410
|
292 |
msgid "Theme"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: includes/class-fcbkbttn-settings.php:415
|
296 |
msgid "Light"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: includes/class-fcbkbttn-settings.php:420
|
300 |
msgid "Dark"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: includes/class-fcbkbttn-settings.php:426
|
304 |
msgid "Like Button HTML Tag"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: includes/class-fcbkbttn-settings.php:432
|
308 |
#, php-format
|
309 |
msgid "Tag %s can be used to improve website code validation."
|
310 |
msgstr ""
|
311 |
|
312 |
+
#: includes/class-fcbkbttn-settings.php:445
|
313 |
msgid "URL to Like"
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: includes/class-fcbkbttn-settings.php:447
|
317 |
msgid "Leave blank to use a current page."
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: includes/class-fcbkbttn-settings.php:475
|
321 |
+
msgid "Facebook Buttons Shortcode"
|
322 |
+
msgstr ""
|
|
|
323 |
|
324 |
+
#: includes/class-fcbkbttn-settings.php:478
|
325 |
msgid ""
|
326 |
"Add Facebook button(-s) to your posts, pages, custom post types or widgets "
|
327 |
"by using the following shortcode:"
|
328 |
msgstr ""
|
329 |
|
330 |
+
#: includes/class-fcbkbttn-settings.php:497
|
331 |
#, fuzzy
|
332 |
msgid "Facebook Buttons Preview"
|
333 |
msgstr "Facebook Nappi"
|
334 |
|
335 |
+
#: includes/class-fcbkbttn-settings.php:512
|
336 |
#, fuzzy
|
337 |
msgid "Display Settings"
|
338 |
msgstr "Näytä nappi:"
|
339 |
|
340 |
+
#: includes/class-fcbkbttn-settings.php:521
|
341 |
msgid ""
|
342 |
"Please choose the necessary post types (or single pages) where Facebook "
|
343 |
"button will be displayed:"
|
345 |
"Valitse haluamasi viestin tyyppi (tai yksittäiset sivut) joissa Facebook "
|
346 |
"nappi näytetään:"
|
347 |
|
348 |
+
#: includes/class-fcbkbttn-settings.php:528
|
349 |
msgid "Show URL for pages"
|
350 |
msgstr "Näytä URL sivuilla"
|
351 |
|
352 |
+
#: includes/class-fcbkbttn-settings.php:534
|
353 |
+
msgid "Example of site pages tree"
|
354 |
+
msgstr ""
|
355 |
|
356 |
+
#~ msgid "Error: File size > 32K"
|
357 |
+
#~ msgstr "Virhe: Tiedoston koko > 32K"
|
358 |
+
|
359 |
+
#~ msgid "Example of the site's pages tree"
|
360 |
+
#~ msgstr "Esimerkki sivuston sivuhakemistosta"
|
361 |
+
|
362 |
+
#~ msgid "Example of site pages' tree"
|
363 |
+
#~ msgstr "Esimerkki sivun sivuhakemistosta"
|
364 |
+
|
365 |
+
#, fuzzy
|
366 |
+
#~ msgid "Facebook Buttons Shortchode"
|
367 |
+
#~ msgstr "Facebook napin paikka:"
|
368 |
|
369 |
#, fuzzy
|
370 |
#~ msgid "Facebook button Settings"
|
languages/facebook-button-plugin-fr_FR.mo
CHANGED
Binary file
|
languages/facebook-button-plugin-fr_FR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: http://wptheme.fr/\n"
|
9 |
"Language: fr\n"
|
@@ -18,12 +18,12 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: facebook-button-plugin.php:35 facebook-button-plugin.php:36
|
21 |
-
#: facebook-button-plugin.php:
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "Réglages du bouton Facebook"
|
24 |
|
25 |
-
#: facebook-button-plugin.php:36 facebook-button-plugin.php:
|
26 |
-
#: facebook-button-plugin.php:
|
27 |
msgid "Settings"
|
28 |
msgstr "Réglages"
|
29 |
|
@@ -31,20 +31,20 @@ msgstr "Réglages"
|
|
31 |
msgid "Upgrade to Pro"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: facebook-button-plugin.php:
|
35 |
msgid "Please, enable JavaScript in Your browser."
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: facebook-button-plugin.php:
|
39 |
#, fuzzy
|
40 |
msgid "Add Facebook buttons to your page or post"
|
41 |
msgstr "Position du bouton Facebook"
|
42 |
|
43 |
-
#: facebook-button-plugin.php:
|
44 |
msgid "FAQ"
|
45 |
msgstr "FAQ"
|
46 |
|
47 |
-
#: facebook-button-plugin.php:
|
48 |
msgid "Support"
|
49 |
msgstr "Support"
|
50 |
|
@@ -66,175 +66,187 @@ msgstr "Image Facebook personnalisée"
|
|
66 |
msgid "License Key"
|
67 |
msgstr ""
|
68 |
|
69 |
-
#: includes/class-fcbkbttn-settings.php:
|
70 |
msgid "Settings saved"
|
71 |
msgstr "Réglages sauvegardés "
|
72 |
|
73 |
-
#: includes/class-fcbkbttn-settings.php:
|
74 |
-
msgid "Error: File size
|
75 |
-
msgstr "
|
76 |
|
77 |
-
#: includes/class-fcbkbttn-settings.php:
|
78 |
msgid "Error: Invalid file type"
|
79 |
msgstr "Erreur : Type de fichier invalide"
|
80 |
|
81 |
-
#: includes/class-fcbkbttn-settings.php:
|
82 |
msgid "Upload successful."
|
83 |
msgstr ""
|
84 |
|
85 |
-
#: includes/class-fcbkbttn-settings.php:
|
86 |
#, fuzzy
|
87 |
msgid "Error: failed to move file."
|
88 |
msgstr "Erreur : le déplacement du fichier a echoué"
|
89 |
|
90 |
-
#: includes/class-fcbkbttn-settings.php:
|
91 |
#, fuzzy
|
92 |
msgid "Error: check image width or height."
|
93 |
msgstr "Erreur : Vérifiez la taille et la largeur de l'image"
|
94 |
|
95 |
-
#: includes/class-fcbkbttn-settings.php:
|
96 |
msgid "Uploading Error: check image properties"
|
97 |
msgstr "Erreur d'upload : vérifiez les propriétés de l'image"
|
98 |
|
99 |
-
#: includes/class-fcbkbttn-settings.php:
|
100 |
msgid "General"
|
101 |
msgstr ""
|
102 |
|
103 |
-
#: includes/class-fcbkbttn-settings.php:
|
104 |
#, fuzzy
|
105 |
msgid "Buttons"
|
106 |
msgstr "Position du bouton Facebook"
|
107 |
|
108 |
-
#: includes/class-fcbkbttn-settings.php:
|
109 |
msgid "Profile URL"
|
110 |
msgstr ""
|
111 |
|
112 |
-
#: includes/class-fcbkbttn-settings.php:
|
113 |
-
#: includes/class-fcbkbttn-settings.php:
|
114 |
msgid "Like"
|
115 |
msgstr "Like"
|
116 |
|
117 |
-
#: includes/class-fcbkbttn-settings.php:
|
118 |
msgid "Share"
|
119 |
msgstr ""
|
120 |
|
121 |
-
#: includes/class-fcbkbttn-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
#, fuzzy
|
123 |
msgid "Buttons Position"
|
124 |
msgstr "Position du bouton Facebook"
|
125 |
|
126 |
-
#: includes/class-fcbkbttn-settings.php:
|
127 |
#, fuzzy
|
128 |
msgid "Before content"
|
129 |
msgstr "Avant et après"
|
130 |
|
131 |
-
#: includes/class-fcbkbttn-settings.php:
|
132 |
msgid "After content"
|
133 |
msgstr ""
|
134 |
|
135 |
-
#: includes/class-fcbkbttn-settings.php:
|
136 |
msgid "Language"
|
137 |
msgstr ""
|
138 |
|
139 |
-
#: includes/class-fcbkbttn-settings.php:
|
140 |
#, fuzzy
|
141 |
msgid "Select the default language for Facebook button(-s)."
|
142 |
msgstr "Changer la langue du bouton Facebook"
|
143 |
|
144 |
-
#: includes/class-fcbkbttn-settings.php:
|
145 |
-
#: includes/class-fcbkbttn-settings.php:
|
146 |
-
#: includes/class-fcbkbttn-settings.php:
|
147 |
msgid ""
|
148 |
"Enable to switch language automatically on multilingual website using "
|
149 |
"Multilanguage plugin."
|
150 |
msgstr ""
|
151 |
|
152 |
-
#: includes/class-fcbkbttn-settings.php:
|
153 |
#, php-format
|
154 |
msgid "Activate %s"
|
155 |
msgstr ""
|
156 |
|
157 |
-
#: includes/class-fcbkbttn-settings.php:
|
158 |
msgid "Learn More"
|
159 |
msgstr ""
|
160 |
|
161 |
-
#: includes/class-fcbkbttn-settings.php:
|
162 |
msgid "Excerpt"
|
163 |
msgstr ""
|
164 |
|
165 |
-
#: includes/class-fcbkbttn-settings.php:
|
166 |
#, fuzzy
|
167 |
msgid "Enable to display buttons in excerpt."
|
168 |
msgstr "Afficher le bouton"
|
169 |
|
170 |
-
#: includes/class-fcbkbttn-settings.php:
|
171 |
-
#: includes/class-fcbkbttn-settings.php:
|
172 |
-
#: includes/class-fcbkbttn-settings.php:
|
173 |
msgid "Close"
|
174 |
msgstr ""
|
175 |
|
176 |
-
#: includes/class-fcbkbttn-settings.php:
|
177 |
#, fuzzy
|
178 |
msgid "Meta Image"
|
179 |
msgstr "Image Facebook personnalisée"
|
180 |
|
181 |
-
#: includes/class-fcbkbttn-settings.php:
|
182 |
msgid "Featured Image"
|
183 |
msgstr ""
|
184 |
|
185 |
-
#: includes/class-fcbkbttn-settings.php:
|
186 |
#, fuzzy
|
187 |
msgid "Custom Image"
|
188 |
msgstr "Image Facebook personnalisée"
|
189 |
|
190 |
-
#: includes/class-fcbkbttn-settings.php:
|
191 |
msgid "This image will be used for all posts"
|
192 |
msgstr ""
|
193 |
|
194 |
-
#: includes/class-fcbkbttn-settings.php:
|
195 |
msgid "Meta Description"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#: includes/class-fcbkbttn-settings.php:
|
199 |
msgid ""
|
200 |
"This description will be used for all pages and posts. Leave blank to use "
|
201 |
"page description."
|
202 |
msgstr ""
|
203 |
|
204 |
-
#: includes/class-fcbkbttn-settings.php:
|
205 |
msgid "Profile URL Button"
|
206 |
msgstr ""
|
207 |
|
208 |
-
#: includes/class-fcbkbttn-settings.php:
|
209 |
#, fuzzy
|
210 |
msgid "Facebook ID or Username"
|
211 |
msgstr "Votre identifiant Facebook"
|
212 |
|
213 |
-
#: includes/class-fcbkbttn-settings.php:
|
214 |
msgid "Profile Button Image"
|
215 |
msgstr ""
|
216 |
|
217 |
-
#: includes/class-fcbkbttn-settings.php:
|
218 |
msgid "Default"
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: includes/class-fcbkbttn-settings.php:
|
222 |
#, fuzzy
|
223 |
msgid "Custom image"
|
224 |
msgstr "Image Facebook personnalisée"
|
225 |
|
226 |
-
#: includes/class-fcbkbttn-settings.php:
|
227 |
msgid ""
|
228 |
"To use custom image, You need to setup permissions for upload directory of "
|
229 |
"your site"
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: includes/class-fcbkbttn-settings.php:
|
233 |
#, fuzzy
|
234 |
msgid "Current image"
|
235 |
msgstr "Image actuelle"
|
236 |
|
237 |
-
#: includes/class-fcbkbttn-settings.php:
|
238 |
#, fuzzy
|
239 |
msgid ""
|
240 |
"Image requirements: max image width:100px; max image height:40px; max image "
|
@@ -243,105 +255,107 @@ msgstr ""
|
|
243 |
"Propriétés de l'image : largeur max:100px; hauteur max: 40px; poids max : "
|
244 |
"32kb; type d'image :\"jpg\", \"jpeg\", \"png\"."
|
245 |
|
246 |
-
#: includes/class-fcbkbttn-settings.php:
|
247 |
msgid "Like&Share Buttons"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: includes/class-fcbkbttn-settings.php:
|
251 |
msgid "Layout"
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: includes/class-fcbkbttn-settings.php:
|
255 |
msgid "Like Button Action"
|
256 |
msgstr ""
|
257 |
|
258 |
-
#: includes/class-fcbkbttn-settings.php:
|
259 |
msgid "Recommend"
|
260 |
msgstr ""
|
261 |
|
262 |
-
#: includes/class-fcbkbttn-settings.php:
|
263 |
msgid "Friends Faces"
|
264 |
msgstr ""
|
265 |
|
266 |
-
#: includes/class-fcbkbttn-settings.php:
|
267 |
msgid " Enable to show faces of your friends who submitted the button."
|
268 |
msgstr ""
|
269 |
|
270 |
-
#: includes/class-fcbkbttn-settings.php:
|
271 |
msgid "Layout Width"
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: includes/class-fcbkbttn-settings.php:
|
275 |
msgid "px"
|
276 |
msgstr ""
|
277 |
|
278 |
-
#: includes/class-fcbkbttn-settings.php:
|
279 |
msgid "Theme"
|
280 |
msgstr ""
|
281 |
|
282 |
-
#: includes/class-fcbkbttn-settings.php:
|
283 |
msgid "Light"
|
284 |
msgstr ""
|
285 |
|
286 |
-
#: includes/class-fcbkbttn-settings.php:
|
287 |
msgid "Dark"
|
288 |
msgstr ""
|
289 |
|
290 |
-
#: includes/class-fcbkbttn-settings.php:
|
291 |
msgid "Like Button HTML Tag"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: includes/class-fcbkbttn-settings.php:
|
295 |
#, php-format
|
296 |
msgid "Tag %s can be used to improve website code validation."
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: includes/class-fcbkbttn-settings.php:
|
300 |
msgid "URL to Like"
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: includes/class-fcbkbttn-settings.php:
|
304 |
msgid "Leave blank to use a current page."
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: includes/class-fcbkbttn-settings.php:
|
308 |
-
|
309 |
-
|
310 |
-
msgstr "Position du bouton Facebook"
|
311 |
|
312 |
-
#: includes/class-fcbkbttn-settings.php:
|
313 |
msgid ""
|
314 |
"Add Facebook button(-s) to your posts, pages, custom post types or widgets "
|
315 |
"by using the following shortcode:"
|
316 |
msgstr ""
|
317 |
|
318 |
-
#: includes/class-fcbkbttn-settings.php:
|
319 |
#, fuzzy
|
320 |
msgid "Facebook Buttons Preview"
|
321 |
msgstr "Bouton Facebook"
|
322 |
|
323 |
-
#: includes/class-fcbkbttn-settings.php:
|
324 |
#, fuzzy
|
325 |
msgid "Display Settings"
|
326 |
msgstr "Afficher le bouton"
|
327 |
|
328 |
-
#: includes/class-fcbkbttn-settings.php:
|
329 |
msgid ""
|
330 |
"Please choose the necessary post types (or single pages) where Facebook "
|
331 |
"button will be displayed:"
|
332 |
msgstr ""
|
333 |
|
334 |
-
#: includes/class-fcbkbttn-settings.php:
|
335 |
msgid "Show URL for pages"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: includes/class-fcbkbttn-settings.php:
|
339 |
-
msgid "Example of
|
340 |
msgstr ""
|
341 |
|
342 |
-
|
343 |
-
|
344 |
-
|
|
|
|
|
|
|
345 |
|
346 |
#, fuzzy
|
347 |
#~ msgid "Facebook button Settings"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-07-10 12:20+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-07-10 12:20+0300\n"
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: http://wptheme.fr/\n"
|
9 |
"Language: fr\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: facebook-button-plugin.php:35 facebook-button-plugin.php:36
|
21 |
+
#: facebook-button-plugin.php:176 includes/class-fcbkbttn-settings.php:181
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "Réglages du bouton Facebook"
|
24 |
|
25 |
+
#: facebook-button-plugin.php:36 facebook-button-plugin.php:382
|
26 |
+
#: facebook-button-plugin.php:396 includes/class-fcbkbttn-settings.php:23
|
27 |
msgid "Settings"
|
28 |
msgstr "Réglages"
|
29 |
|
31 |
msgid "Upgrade to Pro"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: facebook-button-plugin.php:177
|
35 |
msgid "Please, enable JavaScript in Your browser."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: facebook-button-plugin.php:275
|
39 |
#, fuzzy
|
40 |
msgid "Add Facebook buttons to your page or post"
|
41 |
msgstr "Position du bouton Facebook"
|
42 |
|
43 |
+
#: facebook-button-plugin.php:397
|
44 |
msgid "FAQ"
|
45 |
msgstr "FAQ"
|
46 |
|
47 |
+
#: facebook-button-plugin.php:398
|
48 |
msgid "Support"
|
49 |
msgstr "Support"
|
50 |
|
66 |
msgid "License Key"
|
67 |
msgstr ""
|
68 |
|
69 |
+
#: includes/class-fcbkbttn-settings.php:107
|
70 |
msgid "Settings saved"
|
71 |
msgstr "Réglages sauvegardés "
|
72 |
|
73 |
+
#: includes/class-fcbkbttn-settings.php:136
|
74 |
+
msgid "Error: File size must not exceed 32KB"
|
75 |
+
msgstr ""
|
76 |
|
77 |
+
#: includes/class-fcbkbttn-settings.php:139
|
78 |
msgid "Error: Invalid file type"
|
79 |
msgstr "Erreur : Type de fichier invalide"
|
80 |
|
81 |
+
#: includes/class-fcbkbttn-settings.php:145
|
82 |
msgid "Upload successful."
|
83 |
msgstr ""
|
84 |
|
85 |
+
#: includes/class-fcbkbttn-settings.php:153
|
86 |
#, fuzzy
|
87 |
msgid "Error: failed to move file."
|
88 |
msgstr "Erreur : le déplacement du fichier a echoué"
|
89 |
|
90 |
+
#: includes/class-fcbkbttn-settings.php:156
|
91 |
#, fuzzy
|
92 |
msgid "Error: check image width or height."
|
93 |
msgstr "Erreur : Vérifiez la taille et la largeur de l'image"
|
94 |
|
95 |
+
#: includes/class-fcbkbttn-settings.php:160
|
96 |
msgid "Uploading Error: check image properties"
|
97 |
msgstr "Erreur d'upload : vérifiez les propriétés de l'image"
|
98 |
|
99 |
+
#: includes/class-fcbkbttn-settings.php:184
|
100 |
msgid "General"
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: includes/class-fcbkbttn-settings.php:187
|
104 |
#, fuzzy
|
105 |
msgid "Buttons"
|
106 |
msgstr "Position du bouton Facebook"
|
107 |
|
108 |
+
#: includes/class-fcbkbttn-settings.php:190
|
109 |
msgid "Profile URL"
|
110 |
msgstr ""
|
111 |
|
112 |
+
#: includes/class-fcbkbttn-settings.php:191
|
113 |
+
#: includes/class-fcbkbttn-settings.php:386
|
114 |
msgid "Like"
|
115 |
msgstr "Like"
|
116 |
|
117 |
+
#: includes/class-fcbkbttn-settings.php:192
|
118 |
msgid "Share"
|
119 |
msgstr ""
|
120 |
|
121 |
+
#: includes/class-fcbkbttn-settings.php:197
|
122 |
+
msgid "Buttons Size"
|
123 |
+
msgstr ""
|
124 |
+
|
125 |
+
#: includes/class-fcbkbttn-settings.php:200
|
126 |
+
msgid "Small"
|
127 |
+
msgstr ""
|
128 |
+
|
129 |
+
#: includes/class-fcbkbttn-settings.php:201
|
130 |
+
msgid "Large"
|
131 |
+
msgstr ""
|
132 |
+
|
133 |
+
#: includes/class-fcbkbttn-settings.php:206
|
134 |
#, fuzzy
|
135 |
msgid "Buttons Position"
|
136 |
msgstr "Position du bouton Facebook"
|
137 |
|
138 |
+
#: includes/class-fcbkbttn-settings.php:211
|
139 |
#, fuzzy
|
140 |
msgid "Before content"
|
141 |
msgstr "Avant et après"
|
142 |
|
143 |
+
#: includes/class-fcbkbttn-settings.php:216
|
144 |
msgid "After content"
|
145 |
msgstr ""
|
146 |
|
147 |
+
#: includes/class-fcbkbttn-settings.php:222
|
148 |
msgid "Language"
|
149 |
msgstr ""
|
150 |
|
151 |
+
#: includes/class-fcbkbttn-settings.php:233
|
152 |
#, fuzzy
|
153 |
msgid "Select the default language for Facebook button(-s)."
|
154 |
msgstr "Changer la langue du bouton Facebook"
|
155 |
|
156 |
+
#: includes/class-fcbkbttn-settings.php:242
|
157 |
+
#: includes/class-fcbkbttn-settings.php:245
|
158 |
+
#: includes/class-fcbkbttn-settings.php:249
|
159 |
msgid ""
|
160 |
"Enable to switch language automatically on multilingual website using "
|
161 |
"Multilanguage plugin."
|
162 |
msgstr ""
|
163 |
|
164 |
+
#: includes/class-fcbkbttn-settings.php:245
|
165 |
#, php-format
|
166 |
msgid "Activate %s"
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: includes/class-fcbkbttn-settings.php:249
|
170 |
msgid "Learn More"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: includes/class-fcbkbttn-settings.php:254
|
174 |
msgid "Excerpt"
|
175 |
msgstr ""
|
176 |
|
177 |
+
#: includes/class-fcbkbttn-settings.php:256
|
178 |
#, fuzzy
|
179 |
msgid "Enable to display buttons in excerpt."
|
180 |
msgstr "Afficher le bouton"
|
181 |
|
182 |
+
#: includes/class-fcbkbttn-settings.php:265
|
183 |
+
#: includes/class-fcbkbttn-settings.php:441
|
184 |
+
#: includes/class-fcbkbttn-settings.php:496
|
185 |
msgid "Close"
|
186 |
msgstr ""
|
187 |
|
188 |
+
#: includes/class-fcbkbttn-settings.php:269
|
189 |
#, fuzzy
|
190 |
msgid "Meta Image"
|
191 |
msgstr "Image Facebook personnalisée"
|
192 |
|
193 |
+
#: includes/class-fcbkbttn-settings.php:274
|
194 |
msgid "Featured Image"
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: includes/class-fcbkbttn-settings.php:278
|
198 |
#, fuzzy
|
199 |
msgid "Custom Image"
|
200 |
msgstr "Image Facebook personnalisée"
|
201 |
|
202 |
+
#: includes/class-fcbkbttn-settings.php:278
|
203 |
msgid "This image will be used for all posts"
|
204 |
msgstr ""
|
205 |
|
206 |
+
#: includes/class-fcbkbttn-settings.php:285
|
207 |
msgid "Meta Description"
|
208 |
msgstr ""
|
209 |
|
210 |
+
#: includes/class-fcbkbttn-settings.php:289
|
211 |
msgid ""
|
212 |
"This description will be used for all pages and posts. Leave blank to use "
|
213 |
"page description."
|
214 |
msgstr ""
|
215 |
|
216 |
+
#: includes/class-fcbkbttn-settings.php:298
|
217 |
msgid "Profile URL Button"
|
218 |
msgstr ""
|
219 |
|
220 |
+
#: includes/class-fcbkbttn-settings.php:301
|
221 |
#, fuzzy
|
222 |
msgid "Facebook ID or Username"
|
223 |
msgstr "Votre identifiant Facebook"
|
224 |
|
225 |
+
#: includes/class-fcbkbttn-settings.php:308
|
226 |
msgid "Profile Button Image"
|
227 |
msgstr ""
|
228 |
|
229 |
+
#: includes/class-fcbkbttn-settings.php:315
|
230 |
msgid "Default"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: includes/class-fcbkbttn-settings.php:320
|
234 |
#, fuzzy
|
235 |
msgid "Custom image"
|
236 |
msgstr "Image Facebook personnalisée"
|
237 |
|
238 |
+
#: includes/class-fcbkbttn-settings.php:324
|
239 |
msgid ""
|
240 |
"To use custom image, You need to setup permissions for upload directory of "
|
241 |
"your site"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: includes/class-fcbkbttn-settings.php:331
|
245 |
#, fuzzy
|
246 |
msgid "Current image"
|
247 |
msgstr "Image actuelle"
|
248 |
|
249 |
+
#: includes/class-fcbkbttn-settings.php:339
|
250 |
#, fuzzy
|
251 |
msgid ""
|
252 |
"Image requirements: max image width:100px; max image height:40px; max image "
|
255 |
"Propriétés de l'image : largeur max:100px; hauteur max: 40px; poids max : "
|
256 |
"32kb; type d'image :\"jpg\", \"jpeg\", \"png\"."
|
257 |
|
258 |
+
#: includes/class-fcbkbttn-settings.php:343
|
259 |
msgid "Like&Share Buttons"
|
260 |
msgstr ""
|
261 |
|
262 |
+
#: includes/class-fcbkbttn-settings.php:346
|
263 |
msgid "Layout"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: includes/class-fcbkbttn-settings.php:381
|
267 |
msgid "Like Button Action"
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: includes/class-fcbkbttn-settings.php:391
|
271 |
msgid "Recommend"
|
272 |
msgstr ""
|
273 |
|
274 |
+
#: includes/class-fcbkbttn-settings.php:397
|
275 |
msgid "Friends Faces"
|
276 |
msgstr ""
|
277 |
|
278 |
+
#: includes/class-fcbkbttn-settings.php:400
|
279 |
msgid " Enable to show faces of your friends who submitted the button."
|
280 |
msgstr ""
|
281 |
|
282 |
+
#: includes/class-fcbkbttn-settings.php:404
|
283 |
msgid "Layout Width"
|
284 |
msgstr ""
|
285 |
|
286 |
+
#: includes/class-fcbkbttn-settings.php:406
|
287 |
msgid "px"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: includes/class-fcbkbttn-settings.php:410
|
291 |
msgid "Theme"
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: includes/class-fcbkbttn-settings.php:415
|
295 |
msgid "Light"
|
296 |
msgstr ""
|
297 |
|
298 |
+
#: includes/class-fcbkbttn-settings.php:420
|
299 |
msgid "Dark"
|
300 |
msgstr ""
|
301 |
|
302 |
+
#: includes/class-fcbkbttn-settings.php:426
|
303 |
msgid "Like Button HTML Tag"
|
304 |
msgstr ""
|
305 |
|
306 |
+
#: includes/class-fcbkbttn-settings.php:432
|
307 |
#, php-format
|
308 |
msgid "Tag %s can be used to improve website code validation."
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: includes/class-fcbkbttn-settings.php:445
|
312 |
msgid "URL to Like"
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: includes/class-fcbkbttn-settings.php:447
|
316 |
msgid "Leave blank to use a current page."
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: includes/class-fcbkbttn-settings.php:475
|
320 |
+
msgid "Facebook Buttons Shortcode"
|
321 |
+
msgstr ""
|
|
|
322 |
|
323 |
+
#: includes/class-fcbkbttn-settings.php:478
|
324 |
msgid ""
|
325 |
"Add Facebook button(-s) to your posts, pages, custom post types or widgets "
|
326 |
"by using the following shortcode:"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: includes/class-fcbkbttn-settings.php:497
|
330 |
#, fuzzy
|
331 |
msgid "Facebook Buttons Preview"
|
332 |
msgstr "Bouton Facebook"
|
333 |
|
334 |
+
#: includes/class-fcbkbttn-settings.php:512
|
335 |
#, fuzzy
|
336 |
msgid "Display Settings"
|
337 |
msgstr "Afficher le bouton"
|
338 |
|
339 |
+
#: includes/class-fcbkbttn-settings.php:521
|
340 |
msgid ""
|
341 |
"Please choose the necessary post types (or single pages) where Facebook "
|
342 |
"button will be displayed:"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: includes/class-fcbkbttn-settings.php:528
|
346 |
msgid "Show URL for pages"
|
347 |
msgstr ""
|
348 |
|
349 |
+
#: includes/class-fcbkbttn-settings.php:534
|
350 |
+
msgid "Example of site pages tree"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#~ msgid "Error: File size > 32K"
|
354 |
+
#~ msgstr "Erreur : Poids du fichier > 32K"
|
355 |
+
|
356 |
+
#, fuzzy
|
357 |
+
#~ msgid "Facebook Buttons Shortchode"
|
358 |
+
#~ msgstr "Position du bouton Facebook"
|
359 |
|
360 |
#, fuzzy
|
361 |
#~ msgid "Facebook button Settings"
|
languages/facebook-button-plugin-hu_HU.mo
CHANGED
Binary file
|
languages/facebook-button-plugin-hu_HU.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: hu_HU\n"
|
@@ -17,12 +17,12 @@ msgstr ""
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: facebook-button-plugin.php:35 facebook-button-plugin.php:36
|
20 |
-
#: facebook-button-plugin.php:
|
21 |
msgid "Facebook Button Settings"
|
22 |
msgstr "Facebook Gomb Beállítások"
|
23 |
|
24 |
-
#: facebook-button-plugin.php:36 facebook-button-plugin.php:
|
25 |
-
#: facebook-button-plugin.php:
|
26 |
msgid "Settings"
|
27 |
msgstr "Beállítások"
|
28 |
|
@@ -30,20 +30,20 @@ msgstr "Beállítások"
|
|
30 |
msgid "Upgrade to Pro"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: facebook-button-plugin.php:
|
34 |
msgid "Please, enable JavaScript in Your browser."
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: facebook-button-plugin.php:
|
38 |
#, fuzzy
|
39 |
msgid "Add Facebook buttons to your page or post"
|
40 |
msgstr "Facebook gombok helye"
|
41 |
|
42 |
-
#: facebook-button-plugin.php:
|
43 |
msgid "FAQ"
|
44 |
msgstr "Gy.I.K."
|
45 |
|
46 |
-
#: facebook-button-plugin.php:
|
47 |
msgid "Support"
|
48 |
msgstr "Támogatás"
|
49 |
|
@@ -65,164 +65,176 @@ msgstr "Egyéni Facebook kép"
|
|
65 |
msgid "License Key"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: includes/class-fcbkbttn-settings.php:
|
69 |
msgid "Settings saved"
|
70 |
msgstr "Beállítások mentve"
|
71 |
|
72 |
-
#: includes/class-fcbkbttn-settings.php:
|
73 |
-
msgid "Error: File size
|
74 |
-
msgstr "
|
75 |
|
76 |
-
#: includes/class-fcbkbttn-settings.php:
|
77 |
msgid "Error: Invalid file type"
|
78 |
msgstr "Hiba: Érvénytelen file típus"
|
79 |
|
80 |
-
#: includes/class-fcbkbttn-settings.php:
|
81 |
msgid "Upload successful."
|
82 |
msgstr "A feltöltés sikeres."
|
83 |
|
84 |
-
#: includes/class-fcbkbttn-settings.php:
|
85 |
#, fuzzy
|
86 |
msgid "Error: failed to move file."
|
87 |
msgstr "Hiba: file mozgatás sikertelen"
|
88 |
|
89 |
-
#: includes/class-fcbkbttn-settings.php:
|
90 |
#, fuzzy
|
91 |
msgid "Error: check image width or height."
|
92 |
msgstr "Hiba: ellenőrizze a kép szélességét és magasságát"
|
93 |
|
94 |
-
#: includes/class-fcbkbttn-settings.php:
|
95 |
msgid "Uploading Error: check image properties"
|
96 |
msgstr "Feltöltési Hiba: ellenőrizze a kép tulajdonságait"
|
97 |
|
98 |
-
#: includes/class-fcbkbttn-settings.php:
|
99 |
msgid "General"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: includes/class-fcbkbttn-settings.php:
|
103 |
#, fuzzy
|
104 |
msgid "Buttons"
|
105 |
msgstr "Facebook gombok helye"
|
106 |
|
107 |
-
#: includes/class-fcbkbttn-settings.php:
|
108 |
msgid "Profile URL"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: includes/class-fcbkbttn-settings.php:
|
112 |
-
#: includes/class-fcbkbttn-settings.php:
|
113 |
msgid "Like"
|
114 |
msgstr "Like"
|
115 |
|
116 |
-
#: includes/class-fcbkbttn-settings.php:
|
117 |
msgid "Share"
|
118 |
msgstr "Megosztás"
|
119 |
|
120 |
-
#: includes/class-fcbkbttn-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
#, fuzzy
|
122 |
msgid "Buttons Position"
|
123 |
msgstr "Facebook gombok helye"
|
124 |
|
125 |
-
#: includes/class-fcbkbttn-settings.php:
|
126 |
#, fuzzy
|
127 |
msgid "Before content"
|
128 |
msgstr "Előtte és Utána"
|
129 |
|
130 |
-
#: includes/class-fcbkbttn-settings.php:
|
131 |
msgid "After content"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: includes/class-fcbkbttn-settings.php:
|
135 |
msgid "Language"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: includes/class-fcbkbttn-settings.php:
|
139 |
#, fuzzy
|
140 |
msgid "Select the default language for Facebook button(-s)."
|
141 |
msgstr "Facebook Like Gomb nyelvének megváltoztatása"
|
142 |
|
143 |
-
#: includes/class-fcbkbttn-settings.php:
|
144 |
-
#: includes/class-fcbkbttn-settings.php:
|
145 |
-
#: includes/class-fcbkbttn-settings.php:
|
146 |
msgid ""
|
147 |
"Enable to switch language automatically on multilingual website using "
|
148 |
"Multilanguage plugin."
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: includes/class-fcbkbttn-settings.php:
|
152 |
#, php-format
|
153 |
msgid "Activate %s"
|
154 |
msgstr ""
|
155 |
|
156 |
-
#: includes/class-fcbkbttn-settings.php:
|
157 |
msgid "Learn More"
|
158 |
msgstr "Olvasson tovább"
|
159 |
|
160 |
-
#: includes/class-fcbkbttn-settings.php:
|
161 |
msgid "Excerpt"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: includes/class-fcbkbttn-settings.php:
|
165 |
#, fuzzy
|
166 |
msgid "Enable to display buttons in excerpt."
|
167 |
msgstr "Gomb megjelenítése"
|
168 |
|
169 |
-
#: includes/class-fcbkbttn-settings.php:
|
170 |
-
#: includes/class-fcbkbttn-settings.php:
|
171 |
-
#: includes/class-fcbkbttn-settings.php:
|
172 |
msgid "Close"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: includes/class-fcbkbttn-settings.php:
|
176 |
#, fuzzy
|
177 |
msgid "Meta Image"
|
178 |
msgstr "Egyéni Facebook kép"
|
179 |
|
180 |
-
#: includes/class-fcbkbttn-settings.php:
|
181 |
msgid "Featured Image"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: includes/class-fcbkbttn-settings.php:
|
185 |
#, fuzzy
|
186 |
msgid "Custom Image"
|
187 |
msgstr "Egyéni Facebook kép"
|
188 |
|
189 |
-
#: includes/class-fcbkbttn-settings.php:
|
190 |
msgid "This image will be used for all posts"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: includes/class-fcbkbttn-settings.php:
|
194 |
msgid "Meta Description"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: includes/class-fcbkbttn-settings.php:
|
198 |
msgid ""
|
199 |
"This description will be used for all pages and posts. Leave blank to use "
|
200 |
"page description."
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: includes/class-fcbkbttn-settings.php:
|
204 |
msgid "Profile URL Button"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: includes/class-fcbkbttn-settings.php:
|
208 |
#, fuzzy
|
209 |
msgid "Facebook ID or Username"
|
210 |
msgstr "Facebook ID-je vagy felhasználóneve"
|
211 |
|
212 |
-
#: includes/class-fcbkbttn-settings.php:
|
213 |
msgid "Profile Button Image"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: includes/class-fcbkbttn-settings.php:
|
217 |
msgid "Default"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: includes/class-fcbkbttn-settings.php:
|
221 |
#, fuzzy
|
222 |
msgid "Custom image"
|
223 |
msgstr "Egyéni Facebook kép"
|
224 |
|
225 |
-
#: includes/class-fcbkbttn-settings.php:
|
226 |
#, fuzzy
|
227 |
msgid ""
|
228 |
"To use custom image, You need to setup permissions for upload directory of "
|
@@ -231,11 +243,11 @@ msgstr ""
|
|
231 |
"Egyedi kép használatához az oldala feltöltési könyvtárához jogosultságot "
|
232 |
"kell beállítania"
|
233 |
|
234 |
-
#: includes/class-fcbkbttn-settings.php:
|
235 |
msgid "Current image"
|
236 |
msgstr "Aktuális kép"
|
237 |
|
238 |
-
#: includes/class-fcbkbttn-settings.php:
|
239 |
#, fuzzy
|
240 |
msgid ""
|
241 |
"Image requirements: max image width:100px; max image height:40px; max image "
|
@@ -244,92 +256,91 @@ msgstr ""
|
|
244 |
"Kép paraméterek: max kép szélesség: 100px; max kép magasság: 40px; max kép "
|
245 |
"méret: 32Kb; kép típusok:\"jpg\", \"jpeg\", \"png\"."
|
246 |
|
247 |
-
#: includes/class-fcbkbttn-settings.php:
|
248 |
#, fuzzy
|
249 |
msgid "Like&Share Buttons"
|
250 |
msgstr "Facebook gombok helye"
|
251 |
|
252 |
-
#: includes/class-fcbkbttn-settings.php:
|
253 |
msgid "Layout"
|
254 |
msgstr ""
|
255 |
|
256 |
-
#: includes/class-fcbkbttn-settings.php:
|
257 |
#, fuzzy
|
258 |
msgid "Like Button Action"
|
259 |
msgstr "Facebook gombok helye"
|
260 |
|
261 |
-
#: includes/class-fcbkbttn-settings.php:
|
262 |
msgid "Recommend"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: includes/class-fcbkbttn-settings.php:
|
266 |
msgid "Friends Faces"
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: includes/class-fcbkbttn-settings.php:
|
270 |
msgid " Enable to show faces of your friends who submitted the button."
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: includes/class-fcbkbttn-settings.php:
|
274 |
msgid "Layout Width"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: includes/class-fcbkbttn-settings.php:
|
278 |
msgid "px"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: includes/class-fcbkbttn-settings.php:
|
282 |
msgid "Theme"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: includes/class-fcbkbttn-settings.php:
|
286 |
msgid "Light"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: includes/class-fcbkbttn-settings.php:
|
290 |
msgid "Dark"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: includes/class-fcbkbttn-settings.php:
|
294 |
#, fuzzy
|
295 |
msgid "Like Button HTML Tag"
|
296 |
msgstr "Facebook gombok helye"
|
297 |
|
298 |
-
#: includes/class-fcbkbttn-settings.php:
|
299 |
#, php-format
|
300 |
msgid "Tag %s can be used to improve website code validation."
|
301 |
msgstr ""
|
302 |
|
303 |
-
#: includes/class-fcbkbttn-settings.php:
|
304 |
msgid "URL to Like"
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: includes/class-fcbkbttn-settings.php:
|
308 |
msgid "Leave blank to use a current page."
|
309 |
msgstr ""
|
310 |
|
311 |
-
#: includes/class-fcbkbttn-settings.php:
|
312 |
-
|
313 |
-
|
314 |
-
msgstr "Facebook gombok helye"
|
315 |
|
316 |
-
#: includes/class-fcbkbttn-settings.php:
|
317 |
msgid ""
|
318 |
"Add Facebook button(-s) to your posts, pages, custom post types or widgets "
|
319 |
"by using the following shortcode:"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: includes/class-fcbkbttn-settings.php:
|
323 |
#, fuzzy
|
324 |
msgid "Facebook Buttons Preview"
|
325 |
msgstr "Facebook Gomb Beállítások"
|
326 |
|
327 |
-
#: includes/class-fcbkbttn-settings.php:
|
328 |
#, fuzzy
|
329 |
msgid "Display Settings"
|
330 |
msgstr "Gomb megjelenítése"
|
331 |
|
332 |
-
#: includes/class-fcbkbttn-settings.php:
|
333 |
msgid ""
|
334 |
"Please choose the necessary post types (or single pages) where Facebook "
|
335 |
"button will be displayed:"
|
@@ -337,17 +348,26 @@ msgstr ""
|
|
337 |
"Kérjük válassza ki a szükséges bejegyzés típusokat (vagy egyedi oldalakat) "
|
338 |
"ahol a Facebook gomb megjelenjen:"
|
339 |
|
340 |
-
#: includes/class-fcbkbttn-settings.php:
|
341 |
msgid "Show URL for pages"
|
342 |
msgstr "URL megjelenítése oldalakon"
|
343 |
|
344 |
-
#: includes/class-fcbkbttn-settings.php:
|
345 |
-
msgid "Example of
|
346 |
-
msgstr "
|
347 |
|
348 |
-
|
349 |
-
|
350 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
351 |
|
352 |
#, fuzzy
|
353 |
#~ msgid "Facebook button Settings"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-07-10 12:20+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-07-10 12:20+0300\n"
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: hu_HU\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: facebook-button-plugin.php:35 facebook-button-plugin.php:36
|
20 |
+
#: facebook-button-plugin.php:176 includes/class-fcbkbttn-settings.php:181
|
21 |
msgid "Facebook Button Settings"
|
22 |
msgstr "Facebook Gomb Beállítások"
|
23 |
|
24 |
+
#: facebook-button-plugin.php:36 facebook-button-plugin.php:382
|
25 |
+
#: facebook-button-plugin.php:396 includes/class-fcbkbttn-settings.php:23
|
26 |
msgid "Settings"
|
27 |
msgstr "Beállítások"
|
28 |
|
30 |
msgid "Upgrade to Pro"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: facebook-button-plugin.php:177
|
34 |
msgid "Please, enable JavaScript in Your browser."
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: facebook-button-plugin.php:275
|
38 |
#, fuzzy
|
39 |
msgid "Add Facebook buttons to your page or post"
|
40 |
msgstr "Facebook gombok helye"
|
41 |
|
42 |
+
#: facebook-button-plugin.php:397
|
43 |
msgid "FAQ"
|
44 |
msgstr "Gy.I.K."
|
45 |
|
46 |
+
#: facebook-button-plugin.php:398
|
47 |
msgid "Support"
|
48 |
msgstr "Támogatás"
|
49 |
|
65 |
msgid "License Key"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: includes/class-fcbkbttn-settings.php:107
|
69 |
msgid "Settings saved"
|
70 |
msgstr "Beállítások mentve"
|
71 |
|
72 |
+
#: includes/class-fcbkbttn-settings.php:136
|
73 |
+
msgid "Error: File size must not exceed 32KB"
|
74 |
+
msgstr ""
|
75 |
|
76 |
+
#: includes/class-fcbkbttn-settings.php:139
|
77 |
msgid "Error: Invalid file type"
|
78 |
msgstr "Hiba: Érvénytelen file típus"
|
79 |
|
80 |
+
#: includes/class-fcbkbttn-settings.php:145
|
81 |
msgid "Upload successful."
|
82 |
msgstr "A feltöltés sikeres."
|
83 |
|
84 |
+
#: includes/class-fcbkbttn-settings.php:153
|
85 |
#, fuzzy
|
86 |
msgid "Error: failed to move file."
|
87 |
msgstr "Hiba: file mozgatás sikertelen"
|
88 |
|
89 |
+
#: includes/class-fcbkbttn-settings.php:156
|
90 |
#, fuzzy
|
91 |
msgid "Error: check image width or height."
|
92 |
msgstr "Hiba: ellenőrizze a kép szélességét és magasságát"
|
93 |
|
94 |
+
#: includes/class-fcbkbttn-settings.php:160
|
95 |
msgid "Uploading Error: check image properties"
|
96 |
msgstr "Feltöltési Hiba: ellenőrizze a kép tulajdonságait"
|
97 |
|
98 |
+
#: includes/class-fcbkbttn-settings.php:184
|
99 |
msgid "General"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: includes/class-fcbkbttn-settings.php:187
|
103 |
#, fuzzy
|
104 |
msgid "Buttons"
|
105 |
msgstr "Facebook gombok helye"
|
106 |
|
107 |
+
#: includes/class-fcbkbttn-settings.php:190
|
108 |
msgid "Profile URL"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: includes/class-fcbkbttn-settings.php:191
|
112 |
+
#: includes/class-fcbkbttn-settings.php:386
|
113 |
msgid "Like"
|
114 |
msgstr "Like"
|
115 |
|
116 |
+
#: includes/class-fcbkbttn-settings.php:192
|
117 |
msgid "Share"
|
118 |
msgstr "Megosztás"
|
119 |
|
120 |
+
#: includes/class-fcbkbttn-settings.php:197
|
121 |
+
msgid "Buttons Size"
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
+
#: includes/class-fcbkbttn-settings.php:200
|
125 |
+
msgid "Small"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#: includes/class-fcbkbttn-settings.php:201
|
129 |
+
msgid "Large"
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: includes/class-fcbkbttn-settings.php:206
|
133 |
#, fuzzy
|
134 |
msgid "Buttons Position"
|
135 |
msgstr "Facebook gombok helye"
|
136 |
|
137 |
+
#: includes/class-fcbkbttn-settings.php:211
|
138 |
#, fuzzy
|
139 |
msgid "Before content"
|
140 |
msgstr "Előtte és Utána"
|
141 |
|
142 |
+
#: includes/class-fcbkbttn-settings.php:216
|
143 |
msgid "After content"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: includes/class-fcbkbttn-settings.php:222
|
147 |
msgid "Language"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: includes/class-fcbkbttn-settings.php:233
|
151 |
#, fuzzy
|
152 |
msgid "Select the default language for Facebook button(-s)."
|
153 |
msgstr "Facebook Like Gomb nyelvének megváltoztatása"
|
154 |
|
155 |
+
#: includes/class-fcbkbttn-settings.php:242
|
156 |
+
#: includes/class-fcbkbttn-settings.php:245
|
157 |
+
#: includes/class-fcbkbttn-settings.php:249
|
158 |
msgid ""
|
159 |
"Enable to switch language automatically on multilingual website using "
|
160 |
"Multilanguage plugin."
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: includes/class-fcbkbttn-settings.php:245
|
164 |
#, php-format
|
165 |
msgid "Activate %s"
|
166 |
msgstr ""
|
167 |
|
168 |
+
#: includes/class-fcbkbttn-settings.php:249
|
169 |
msgid "Learn More"
|
170 |
msgstr "Olvasson tovább"
|
171 |
|
172 |
+
#: includes/class-fcbkbttn-settings.php:254
|
173 |
msgid "Excerpt"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: includes/class-fcbkbttn-settings.php:256
|
177 |
#, fuzzy
|
178 |
msgid "Enable to display buttons in excerpt."
|
179 |
msgstr "Gomb megjelenítése"
|
180 |
|
181 |
+
#: includes/class-fcbkbttn-settings.php:265
|
182 |
+
#: includes/class-fcbkbttn-settings.php:441
|
183 |
+
#: includes/class-fcbkbttn-settings.php:496
|
184 |
msgid "Close"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: includes/class-fcbkbttn-settings.php:269
|
188 |
#, fuzzy
|
189 |
msgid "Meta Image"
|
190 |
msgstr "Egyéni Facebook kép"
|
191 |
|
192 |
+
#: includes/class-fcbkbttn-settings.php:274
|
193 |
msgid "Featured Image"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: includes/class-fcbkbttn-settings.php:278
|
197 |
#, fuzzy
|
198 |
msgid "Custom Image"
|
199 |
msgstr "Egyéni Facebook kép"
|
200 |
|
201 |
+
#: includes/class-fcbkbttn-settings.php:278
|
202 |
msgid "This image will be used for all posts"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: includes/class-fcbkbttn-settings.php:285
|
206 |
msgid "Meta Description"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: includes/class-fcbkbttn-settings.php:289
|
210 |
msgid ""
|
211 |
"This description will be used for all pages and posts. Leave blank to use "
|
212 |
"page description."
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: includes/class-fcbkbttn-settings.php:298
|
216 |
msgid "Profile URL Button"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: includes/class-fcbkbttn-settings.php:301
|
220 |
#, fuzzy
|
221 |
msgid "Facebook ID or Username"
|
222 |
msgstr "Facebook ID-je vagy felhasználóneve"
|
223 |
|
224 |
+
#: includes/class-fcbkbttn-settings.php:308
|
225 |
msgid "Profile Button Image"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: includes/class-fcbkbttn-settings.php:315
|
229 |
msgid "Default"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: includes/class-fcbkbttn-settings.php:320
|
233 |
#, fuzzy
|
234 |
msgid "Custom image"
|
235 |
msgstr "Egyéni Facebook kép"
|
236 |
|
237 |
+
#: includes/class-fcbkbttn-settings.php:324
|
238 |
#, fuzzy
|
239 |
msgid ""
|
240 |
"To use custom image, You need to setup permissions for upload directory of "
|
243 |
"Egyedi kép használatához az oldala feltöltési könyvtárához jogosultságot "
|
244 |
"kell beállítania"
|
245 |
|
246 |
+
#: includes/class-fcbkbttn-settings.php:331
|
247 |
msgid "Current image"
|
248 |
msgstr "Aktuális kép"
|
249 |
|
250 |
+
#: includes/class-fcbkbttn-settings.php:339
|
251 |
#, fuzzy
|
252 |
msgid ""
|
253 |
"Image requirements: max image width:100px; max image height:40px; max image "
|
256 |
"Kép paraméterek: max kép szélesség: 100px; max kép magasság: 40px; max kép "
|
257 |
"méret: 32Kb; kép típusok:\"jpg\", \"jpeg\", \"png\"."
|
258 |
|
259 |
+
#: includes/class-fcbkbttn-settings.php:343
|
260 |
#, fuzzy
|
261 |
msgid "Like&Share Buttons"
|
262 |
msgstr "Facebook gombok helye"
|
263 |
|
264 |
+
#: includes/class-fcbkbttn-settings.php:346
|
265 |
msgid "Layout"
|
266 |
msgstr ""
|
267 |
|
268 |
+
#: includes/class-fcbkbttn-settings.php:381
|
269 |
#, fuzzy
|
270 |
msgid "Like Button Action"
|
271 |
msgstr "Facebook gombok helye"
|
272 |
|
273 |
+
#: includes/class-fcbkbttn-settings.php:391
|
274 |
msgid "Recommend"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: includes/class-fcbkbttn-settings.php:397
|
278 |
msgid "Friends Faces"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: includes/class-fcbkbttn-settings.php:400
|
282 |
msgid " Enable to show faces of your friends who submitted the button."
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: includes/class-fcbkbttn-settings.php:404
|
286 |
msgid "Layout Width"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: includes/class-fcbkbttn-settings.php:406
|
290 |
msgid "px"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: includes/class-fcbkbttn-settings.php:410
|
294 |
msgid "Theme"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: includes/class-fcbkbttn-settings.php:415
|
298 |
msgid "Light"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: includes/class-fcbkbttn-settings.php:420
|
302 |
msgid "Dark"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: includes/class-fcbkbttn-settings.php:426
|
306 |
#, fuzzy
|
307 |
msgid "Like Button HTML Tag"
|
308 |
msgstr "Facebook gombok helye"
|
309 |
|
310 |
+
#: includes/class-fcbkbttn-settings.php:432
|
311 |
#, php-format
|
312 |
msgid "Tag %s can be used to improve website code validation."
|
313 |
msgstr ""
|
314 |
|
315 |
+
#: includes/class-fcbkbttn-settings.php:445
|
316 |
msgid "URL to Like"
|
317 |
msgstr ""
|
318 |
|
319 |
+
#: includes/class-fcbkbttn-settings.php:447
|
320 |
msgid "Leave blank to use a current page."
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: includes/class-fcbkbttn-settings.php:475
|
324 |
+
msgid "Facebook Buttons Shortcode"
|
325 |
+
msgstr ""
|
|
|
326 |
|
327 |
+
#: includes/class-fcbkbttn-settings.php:478
|
328 |
msgid ""
|
329 |
"Add Facebook button(-s) to your posts, pages, custom post types or widgets "
|
330 |
"by using the following shortcode:"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: includes/class-fcbkbttn-settings.php:497
|
334 |
#, fuzzy
|
335 |
msgid "Facebook Buttons Preview"
|
336 |
msgstr "Facebook Gomb Beállítások"
|
337 |
|
338 |
+
#: includes/class-fcbkbttn-settings.php:512
|
339 |
#, fuzzy
|
340 |
msgid "Display Settings"
|
341 |
msgstr "Gomb megjelenítése"
|
342 |
|
343 |
+
#: includes/class-fcbkbttn-settings.php:521
|
344 |
msgid ""
|
345 |
"Please choose the necessary post types (or single pages) where Facebook "
|
346 |
"button will be displayed:"
|
348 |
"Kérjük válassza ki a szükséges bejegyzés típusokat (vagy egyedi oldalakat) "
|
349 |
"ahol a Facebook gomb megjelenjen:"
|
350 |
|
351 |
+
#: includes/class-fcbkbttn-settings.php:528
|
352 |
msgid "Show URL for pages"
|
353 |
msgstr "URL megjelenítése oldalakon"
|
354 |
|
355 |
+
#: includes/class-fcbkbttn-settings.php:534
|
356 |
+
msgid "Example of site pages tree"
|
357 |
+
msgstr ""
|
358 |
|
359 |
+
#~ msgid "Error: File size > 32K"
|
360 |
+
#~ msgstr "Hiba: File méret > 32k"
|
361 |
+
|
362 |
+
#~ msgid "Example of the site's pages tree"
|
363 |
+
#~ msgstr "Példa az oldal lap struktúrájának fájára"
|
364 |
+
|
365 |
+
#~ msgid "Example of site pages' tree"
|
366 |
+
#~ msgstr "Példa oldal lapjainak fa struktúrájára"
|
367 |
+
|
368 |
+
#, fuzzy
|
369 |
+
#~ msgid "Facebook Buttons Shortchode"
|
370 |
+
#~ msgstr "Facebook gombok helye"
|
371 |
|
372 |
#, fuzzy
|
373 |
#~ msgid "Facebook button Settings"
|
languages/facebook-button-plugin-id_ID.mo
CHANGED
Binary file
|
languages/facebook-button-plugin-id_ID.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: nasrulhaq <nasrulhaq81@gmail.com>\n"
|
9 |
"Language: es_ES\n"
|
@@ -17,12 +17,12 @@ msgstr ""
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: facebook-button-plugin.php:35 facebook-button-plugin.php:36
|
20 |
-
#: facebook-button-plugin.php:
|
21 |
msgid "Facebook Button Settings"
|
22 |
msgstr "Pengaturan Facebook Button"
|
23 |
|
24 |
-
#: facebook-button-plugin.php:36 facebook-button-plugin.php:
|
25 |
-
#: facebook-button-plugin.php:
|
26 |
msgid "Settings"
|
27 |
msgstr "Pengaturan"
|
28 |
|
@@ -30,20 +30,20 @@ msgstr "Pengaturan"
|
|
30 |
msgid "Upgrade to Pro"
|
31 |
msgstr ""
|
32 |
|
33 |
-
#: facebook-button-plugin.php:
|
34 |
msgid "Please, enable JavaScript in Your browser."
|
35 |
msgstr ""
|
36 |
|
37 |
-
#: facebook-button-plugin.php:
|
38 |
#, fuzzy
|
39 |
msgid "Add Facebook buttons to your page or post"
|
40 |
msgstr "Posisi Tombol Facebook"
|
41 |
|
42 |
-
#: facebook-button-plugin.php:
|
43 |
msgid "FAQ"
|
44 |
msgstr "SSS (Sık Sorulan Sorular)"
|
45 |
|
46 |
-
#: facebook-button-plugin.php:
|
47 |
msgid "Support"
|
48 |
msgstr "Dukungan"
|
49 |
|
@@ -65,175 +65,187 @@ msgstr "Kustom Gambar Facebook "
|
|
65 |
msgid "License Key"
|
66 |
msgstr ""
|
67 |
|
68 |
-
#: includes/class-fcbkbttn-settings.php:
|
69 |
msgid "Settings saved"
|
70 |
msgstr "Simpan Pengaturan"
|
71 |
|
72 |
-
#: includes/class-fcbkbttn-settings.php:
|
73 |
-
msgid "Error: File size
|
74 |
-
msgstr "
|
75 |
|
76 |
-
#: includes/class-fcbkbttn-settings.php:
|
77 |
msgid "Error: Invalid file type"
|
78 |
msgstr "SALAH: Tipe data tidak benar"
|
79 |
|
80 |
-
#: includes/class-fcbkbttn-settings.php:
|
81 |
msgid "Upload successful."
|
82 |
msgstr ""
|
83 |
|
84 |
-
#: includes/class-fcbkbttn-settings.php:
|
85 |
#, fuzzy
|
86 |
msgid "Error: failed to move file."
|
87 |
msgstr "Salah: gagal memindahkan data"
|
88 |
|
89 |
-
#: includes/class-fcbkbttn-settings.php:
|
90 |
#, fuzzy
|
91 |
msgid "Error: check image width or height."
|
92 |
msgstr "Salah: periksa lebar atau panjang gambar"
|
93 |
|
94 |
-
#: includes/class-fcbkbttn-settings.php:
|
95 |
msgid "Uploading Error: check image properties"
|
96 |
msgstr "Gagal Mengunggah: periksa properti gambar"
|
97 |
|
98 |
-
#: includes/class-fcbkbttn-settings.php:
|
99 |
msgid "General"
|
100 |
msgstr ""
|
101 |
|
102 |
-
#: includes/class-fcbkbttn-settings.php:
|
103 |
#, fuzzy
|
104 |
msgid "Buttons"
|
105 |
msgstr "Posisi Tombol Facebook"
|
106 |
|
107 |
-
#: includes/class-fcbkbttn-settings.php:
|
108 |
msgid "Profile URL"
|
109 |
msgstr ""
|
110 |
|
111 |
-
#: includes/class-fcbkbttn-settings.php:
|
112 |
-
#: includes/class-fcbkbttn-settings.php:
|
113 |
msgid "Like"
|
114 |
msgstr "Suka"
|
115 |
|
116 |
-
#: includes/class-fcbkbttn-settings.php:
|
117 |
msgid "Share"
|
118 |
msgstr ""
|
119 |
|
120 |
-
#: includes/class-fcbkbttn-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
121 |
#, fuzzy
|
122 |
msgid "Buttons Position"
|
123 |
msgstr "Posisi Tombol Facebook"
|
124 |
|
125 |
-
#: includes/class-fcbkbttn-settings.php:
|
126 |
#, fuzzy
|
127 |
msgid "Before content"
|
128 |
msgstr "Sebelum dan Setelah"
|
129 |
|
130 |
-
#: includes/class-fcbkbttn-settings.php:
|
131 |
msgid "After content"
|
132 |
msgstr ""
|
133 |
|
134 |
-
#: includes/class-fcbkbttn-settings.php:
|
135 |
msgid "Language"
|
136 |
msgstr ""
|
137 |
|
138 |
-
#: includes/class-fcbkbttn-settings.php:
|
139 |
#, fuzzy
|
140 |
msgid "Select the default language for Facebook button(-s)."
|
141 |
msgstr "Ubah bahasa Facebook Like Button"
|
142 |
|
143 |
-
#: includes/class-fcbkbttn-settings.php:
|
144 |
-
#: includes/class-fcbkbttn-settings.php:
|
145 |
-
#: includes/class-fcbkbttn-settings.php:
|
146 |
msgid ""
|
147 |
"Enable to switch language automatically on multilingual website using "
|
148 |
"Multilanguage plugin."
|
149 |
msgstr ""
|
150 |
|
151 |
-
#: includes/class-fcbkbttn-settings.php:
|
152 |
#, fuzzy, php-format
|
153 |
msgid "Activate %s"
|
154 |
msgstr "Aktif Eklentiler"
|
155 |
|
156 |
-
#: includes/class-fcbkbttn-settings.php:
|
157 |
msgid "Learn More"
|
158 |
msgstr ""
|
159 |
|
160 |
-
#: includes/class-fcbkbttn-settings.php:
|
161 |
msgid "Excerpt"
|
162 |
msgstr ""
|
163 |
|
164 |
-
#: includes/class-fcbkbttn-settings.php:
|
165 |
#, fuzzy
|
166 |
msgid "Enable to display buttons in excerpt."
|
167 |
msgstr "Tampilan tombol:"
|
168 |
|
169 |
-
#: includes/class-fcbkbttn-settings.php:
|
170 |
-
#: includes/class-fcbkbttn-settings.php:
|
171 |
-
#: includes/class-fcbkbttn-settings.php:
|
172 |
msgid "Close"
|
173 |
msgstr ""
|
174 |
|
175 |
-
#: includes/class-fcbkbttn-settings.php:
|
176 |
#, fuzzy
|
177 |
msgid "Meta Image"
|
178 |
msgstr "Kustom Gambar Facebook "
|
179 |
|
180 |
-
#: includes/class-fcbkbttn-settings.php:
|
181 |
msgid "Featured Image"
|
182 |
msgstr ""
|
183 |
|
184 |
-
#: includes/class-fcbkbttn-settings.php:
|
185 |
#, fuzzy
|
186 |
msgid "Custom Image"
|
187 |
msgstr "Kustom Gambar Facebook "
|
188 |
|
189 |
-
#: includes/class-fcbkbttn-settings.php:
|
190 |
msgid "This image will be used for all posts"
|
191 |
msgstr ""
|
192 |
|
193 |
-
#: includes/class-fcbkbttn-settings.php:
|
194 |
msgid "Meta Description"
|
195 |
msgstr ""
|
196 |
|
197 |
-
#: includes/class-fcbkbttn-settings.php:
|
198 |
msgid ""
|
199 |
"This description will be used for all pages and posts. Leave blank to use "
|
200 |
"page description."
|
201 |
msgstr ""
|
202 |
|
203 |
-
#: includes/class-fcbkbttn-settings.php:
|
204 |
msgid "Profile URL Button"
|
205 |
msgstr ""
|
206 |
|
207 |
-
#: includes/class-fcbkbttn-settings.php:
|
208 |
#, fuzzy
|
209 |
msgid "Facebook ID or Username"
|
210 |
msgstr " ID Facebook:"
|
211 |
|
212 |
-
#: includes/class-fcbkbttn-settings.php:
|
213 |
msgid "Profile Button Image"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: includes/class-fcbkbttn-settings.php:
|
217 |
msgid "Default"
|
218 |
msgstr ""
|
219 |
|
220 |
-
#: includes/class-fcbkbttn-settings.php:
|
221 |
#, fuzzy
|
222 |
msgid "Custom image"
|
223 |
msgstr "Kustom Gambar Facebook "
|
224 |
|
225 |
-
#: includes/class-fcbkbttn-settings.php:
|
226 |
msgid ""
|
227 |
"To use custom image, You need to setup permissions for upload directory of "
|
228 |
"your site"
|
229 |
msgstr ""
|
230 |
|
231 |
-
#: includes/class-fcbkbttn-settings.php:
|
232 |
#, fuzzy
|
233 |
msgid "Current image"
|
234 |
msgstr "Gambar tertentu:"
|
235 |
|
236 |
-
#: includes/class-fcbkbttn-settings.php:
|
237 |
#, fuzzy
|
238 |
msgid ""
|
239 |
"Image requirements: max image width:100px; max image height:40px; max image "
|
@@ -242,105 +254,107 @@ msgstr ""
|
|
242 |
"properti gambar: lebar gambar maks:100px; panjang gambar maks:40px; ukuran "
|
243 |
"gambar maks:32Kb; tipe gambar:\"jpg\",\"jpeg\", \"png\"."
|
244 |
|
245 |
-
#: includes/class-fcbkbttn-settings.php:
|
246 |
msgid "Like&Share Buttons"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: includes/class-fcbkbttn-settings.php:
|
250 |
msgid "Layout"
|
251 |
msgstr ""
|
252 |
|
253 |
-
#: includes/class-fcbkbttn-settings.php:
|
254 |
msgid "Like Button Action"
|
255 |
msgstr ""
|
256 |
|
257 |
-
#: includes/class-fcbkbttn-settings.php:
|
258 |
msgid "Recommend"
|
259 |
msgstr ""
|
260 |
|
261 |
-
#: includes/class-fcbkbttn-settings.php:
|
262 |
msgid "Friends Faces"
|
263 |
msgstr ""
|
264 |
|
265 |
-
#: includes/class-fcbkbttn-settings.php:
|
266 |
msgid " Enable to show faces of your friends who submitted the button."
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: includes/class-fcbkbttn-settings.php:
|
270 |
msgid "Layout Width"
|
271 |
msgstr ""
|
272 |
|
273 |
-
#: includes/class-fcbkbttn-settings.php:
|
274 |
msgid "px"
|
275 |
msgstr ""
|
276 |
|
277 |
-
#: includes/class-fcbkbttn-settings.php:
|
278 |
msgid "Theme"
|
279 |
msgstr ""
|
280 |
|
281 |
-
#: includes/class-fcbkbttn-settings.php:
|
282 |
msgid "Light"
|
283 |
msgstr ""
|
284 |
|
285 |
-
#: includes/class-fcbkbttn-settings.php:
|
286 |
msgid "Dark"
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: includes/class-fcbkbttn-settings.php:
|
290 |
msgid "Like Button HTML Tag"
|
291 |
msgstr ""
|
292 |
|
293 |
-
#: includes/class-fcbkbttn-settings.php:
|
294 |
#, php-format
|
295 |
msgid "Tag %s can be used to improve website code validation."
|
296 |
msgstr ""
|
297 |
|
298 |
-
#: includes/class-fcbkbttn-settings.php:
|
299 |
msgid "URL to Like"
|
300 |
msgstr ""
|
301 |
|
302 |
-
#: includes/class-fcbkbttn-settings.php:
|
303 |
msgid "Leave blank to use a current page."
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: includes/class-fcbkbttn-settings.php:
|
307 |
-
|
308 |
-
|
309 |
-
msgstr "Posisi Tombol Facebook"
|
310 |
|
311 |
-
#: includes/class-fcbkbttn-settings.php:
|
312 |
msgid ""
|
313 |
"Add Facebook button(-s) to your posts, pages, custom post types or widgets "
|
314 |
"by using the following shortcode:"
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: includes/class-fcbkbttn-settings.php:
|
318 |
#, fuzzy
|
319 |
msgid "Facebook Buttons Preview"
|
320 |
msgstr "Tombol Facebook"
|
321 |
|
322 |
-
#: includes/class-fcbkbttn-settings.php:
|
323 |
#, fuzzy
|
324 |
msgid "Display Settings"
|
325 |
msgstr "Tampilan tombol:"
|
326 |
|
327 |
-
#: includes/class-fcbkbttn-settings.php:
|
328 |
msgid ""
|
329 |
"Please choose the necessary post types (or single pages) where Facebook "
|
330 |
"button will be displayed:"
|
331 |
msgstr ""
|
332 |
|
333 |
-
#: includes/class-fcbkbttn-settings.php:
|
334 |
msgid "Show URL for pages"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: includes/class-fcbkbttn-settings.php:
|
338 |
-
msgid "Example of
|
339 |
msgstr ""
|
340 |
|
341 |
-
|
342 |
-
|
343 |
-
|
|
|
|
|
|
|
344 |
|
345 |
#, fuzzy
|
346 |
#~ msgid "Facebook button Settings"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-07-10 12:20+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-07-10 12:20+0300\n"
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: nasrulhaq <nasrulhaq81@gmail.com>\n"
|
9 |
"Language: es_ES\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: facebook-button-plugin.php:35 facebook-button-plugin.php:36
|
20 |
+
#: facebook-button-plugin.php:176 includes/class-fcbkbttn-settings.php:181
|
21 |
msgid "Facebook Button Settings"
|
22 |
msgstr "Pengaturan Facebook Button"
|
23 |
|
24 |
+
#: facebook-button-plugin.php:36 facebook-button-plugin.php:382
|
25 |
+
#: facebook-button-plugin.php:396 includes/class-fcbkbttn-settings.php:23
|
26 |
msgid "Settings"
|
27 |
msgstr "Pengaturan"
|
28 |
|
30 |
msgid "Upgrade to Pro"
|
31 |
msgstr ""
|
32 |
|
33 |
+
#: facebook-button-plugin.php:177
|
34 |
msgid "Please, enable JavaScript in Your browser."
|
35 |
msgstr ""
|
36 |
|
37 |
+
#: facebook-button-plugin.php:275
|
38 |
#, fuzzy
|
39 |
msgid "Add Facebook buttons to your page or post"
|
40 |
msgstr "Posisi Tombol Facebook"
|
41 |
|
42 |
+
#: facebook-button-plugin.php:397
|
43 |
msgid "FAQ"
|
44 |
msgstr "SSS (Sık Sorulan Sorular)"
|
45 |
|
46 |
+
#: facebook-button-plugin.php:398
|
47 |
msgid "Support"
|
48 |
msgstr "Dukungan"
|
49 |
|
65 |
msgid "License Key"
|
66 |
msgstr ""
|
67 |
|
68 |
+
#: includes/class-fcbkbttn-settings.php:107
|
69 |
msgid "Settings saved"
|
70 |
msgstr "Simpan Pengaturan"
|
71 |
|
72 |
+
#: includes/class-fcbkbttn-settings.php:136
|
73 |
+
msgid "Error: File size must not exceed 32KB"
|
74 |
+
msgstr ""
|
75 |
|
76 |
+
#: includes/class-fcbkbttn-settings.php:139
|
77 |
msgid "Error: Invalid file type"
|
78 |
msgstr "SALAH: Tipe data tidak benar"
|
79 |
|
80 |
+
#: includes/class-fcbkbttn-settings.php:145
|
81 |
msgid "Upload successful."
|
82 |
msgstr ""
|
83 |
|
84 |
+
#: includes/class-fcbkbttn-settings.php:153
|
85 |
#, fuzzy
|
86 |
msgid "Error: failed to move file."
|
87 |
msgstr "Salah: gagal memindahkan data"
|
88 |
|
89 |
+
#: includes/class-fcbkbttn-settings.php:156
|
90 |
#, fuzzy
|
91 |
msgid "Error: check image width or height."
|
92 |
msgstr "Salah: periksa lebar atau panjang gambar"
|
93 |
|
94 |
+
#: includes/class-fcbkbttn-settings.php:160
|
95 |
msgid "Uploading Error: check image properties"
|
96 |
msgstr "Gagal Mengunggah: periksa properti gambar"
|
97 |
|
98 |
+
#: includes/class-fcbkbttn-settings.php:184
|
99 |
msgid "General"
|
100 |
msgstr ""
|
101 |
|
102 |
+
#: includes/class-fcbkbttn-settings.php:187
|
103 |
#, fuzzy
|
104 |
msgid "Buttons"
|
105 |
msgstr "Posisi Tombol Facebook"
|
106 |
|
107 |
+
#: includes/class-fcbkbttn-settings.php:190
|
108 |
msgid "Profile URL"
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: includes/class-fcbkbttn-settings.php:191
|
112 |
+
#: includes/class-fcbkbttn-settings.php:386
|
113 |
msgid "Like"
|
114 |
msgstr "Suka"
|
115 |
|
116 |
+
#: includes/class-fcbkbttn-settings.php:192
|
117 |
msgid "Share"
|
118 |
msgstr ""
|
119 |
|
120 |
+
#: includes/class-fcbkbttn-settings.php:197
|
121 |
+
msgid "Buttons Size"
|
122 |
+
msgstr ""
|
123 |
+
|
124 |
+
#: includes/class-fcbkbttn-settings.php:200
|
125 |
+
msgid "Small"
|
126 |
+
msgstr ""
|
127 |
+
|
128 |
+
#: includes/class-fcbkbttn-settings.php:201
|
129 |
+
msgid "Large"
|
130 |
+
msgstr ""
|
131 |
+
|
132 |
+
#: includes/class-fcbkbttn-settings.php:206
|
133 |
#, fuzzy
|
134 |
msgid "Buttons Position"
|
135 |
msgstr "Posisi Tombol Facebook"
|
136 |
|
137 |
+
#: includes/class-fcbkbttn-settings.php:211
|
138 |
#, fuzzy
|
139 |
msgid "Before content"
|
140 |
msgstr "Sebelum dan Setelah"
|
141 |
|
142 |
+
#: includes/class-fcbkbttn-settings.php:216
|
143 |
msgid "After content"
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: includes/class-fcbkbttn-settings.php:222
|
147 |
msgid "Language"
|
148 |
msgstr ""
|
149 |
|
150 |
+
#: includes/class-fcbkbttn-settings.php:233
|
151 |
#, fuzzy
|
152 |
msgid "Select the default language for Facebook button(-s)."
|
153 |
msgstr "Ubah bahasa Facebook Like Button"
|
154 |
|
155 |
+
#: includes/class-fcbkbttn-settings.php:242
|
156 |
+
#: includes/class-fcbkbttn-settings.php:245
|
157 |
+
#: includes/class-fcbkbttn-settings.php:249
|
158 |
msgid ""
|
159 |
"Enable to switch language automatically on multilingual website using "
|
160 |
"Multilanguage plugin."
|
161 |
msgstr ""
|
162 |
|
163 |
+
#: includes/class-fcbkbttn-settings.php:245
|
164 |
#, fuzzy, php-format
|
165 |
msgid "Activate %s"
|
166 |
msgstr "Aktif Eklentiler"
|
167 |
|
168 |
+
#: includes/class-fcbkbttn-settings.php:249
|
169 |
msgid "Learn More"
|
170 |
msgstr ""
|
171 |
|
172 |
+
#: includes/class-fcbkbttn-settings.php:254
|
173 |
msgid "Excerpt"
|
174 |
msgstr ""
|
175 |
|
176 |
+
#: includes/class-fcbkbttn-settings.php:256
|
177 |
#, fuzzy
|
178 |
msgid "Enable to display buttons in excerpt."
|
179 |
msgstr "Tampilan tombol:"
|
180 |
|
181 |
+
#: includes/class-fcbkbttn-settings.php:265
|
182 |
+
#: includes/class-fcbkbttn-settings.php:441
|
183 |
+
#: includes/class-fcbkbttn-settings.php:496
|
184 |
msgid "Close"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: includes/class-fcbkbttn-settings.php:269
|
188 |
#, fuzzy
|
189 |
msgid "Meta Image"
|
190 |
msgstr "Kustom Gambar Facebook "
|
191 |
|
192 |
+
#: includes/class-fcbkbttn-settings.php:274
|
193 |
msgid "Featured Image"
|
194 |
msgstr ""
|
195 |
|
196 |
+
#: includes/class-fcbkbttn-settings.php:278
|
197 |
#, fuzzy
|
198 |
msgid "Custom Image"
|
199 |
msgstr "Kustom Gambar Facebook "
|
200 |
|
201 |
+
#: includes/class-fcbkbttn-settings.php:278
|
202 |
msgid "This image will be used for all posts"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: includes/class-fcbkbttn-settings.php:285
|
206 |
msgid "Meta Description"
|
207 |
msgstr ""
|
208 |
|
209 |
+
#: includes/class-fcbkbttn-settings.php:289
|
210 |
msgid ""
|
211 |
"This description will be used for all pages and posts. Leave blank to use "
|
212 |
"page description."
|
213 |
msgstr ""
|
214 |
|
215 |
+
#: includes/class-fcbkbttn-settings.php:298
|
216 |
msgid "Profile URL Button"
|
217 |
msgstr ""
|
218 |
|
219 |
+
#: includes/class-fcbkbttn-settings.php:301
|
220 |
#, fuzzy
|
221 |
msgid "Facebook ID or Username"
|
222 |
msgstr " ID Facebook:"
|
223 |
|
224 |
+
#: includes/class-fcbkbttn-settings.php:308
|
225 |
msgid "Profile Button Image"
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: includes/class-fcbkbttn-settings.php:315
|
229 |
msgid "Default"
|
230 |
msgstr ""
|
231 |
|
232 |
+
#: includes/class-fcbkbttn-settings.php:320
|
233 |
#, fuzzy
|
234 |
msgid "Custom image"
|
235 |
msgstr "Kustom Gambar Facebook "
|
236 |
|
237 |
+
#: includes/class-fcbkbttn-settings.php:324
|
238 |
msgid ""
|
239 |
"To use custom image, You need to setup permissions for upload directory of "
|
240 |
"your site"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: includes/class-fcbkbttn-settings.php:331
|
244 |
#, fuzzy
|
245 |
msgid "Current image"
|
246 |
msgstr "Gambar tertentu:"
|
247 |
|
248 |
+
#: includes/class-fcbkbttn-settings.php:339
|
249 |
#, fuzzy
|
250 |
msgid ""
|
251 |
"Image requirements: max image width:100px; max image height:40px; max image "
|
254 |
"properti gambar: lebar gambar maks:100px; panjang gambar maks:40px; ukuran "
|
255 |
"gambar maks:32Kb; tipe gambar:\"jpg\",\"jpeg\", \"png\"."
|
256 |
|
257 |
+
#: includes/class-fcbkbttn-settings.php:343
|
258 |
msgid "Like&Share Buttons"
|
259 |
msgstr ""
|
260 |
|
261 |
+
#: includes/class-fcbkbttn-settings.php:346
|
262 |
msgid "Layout"
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: includes/class-fcbkbttn-settings.php:381
|
266 |
msgid "Like Button Action"
|
267 |
msgstr ""
|
268 |
|
269 |
+
#: includes/class-fcbkbttn-settings.php:391
|
270 |
msgid "Recommend"
|
271 |
msgstr ""
|
272 |
|
273 |
+
#: includes/class-fcbkbttn-settings.php:397
|
274 |
msgid "Friends Faces"
|
275 |
msgstr ""
|
276 |
|
277 |
+
#: includes/class-fcbkbttn-settings.php:400
|
278 |
msgid " Enable to show faces of your friends who submitted the button."
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: includes/class-fcbkbttn-settings.php:404
|
282 |
msgid "Layout Width"
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: includes/class-fcbkbttn-settings.php:406
|
286 |
msgid "px"
|
287 |
msgstr ""
|
288 |
|
289 |
+
#: includes/class-fcbkbttn-settings.php:410
|
290 |
msgid "Theme"
|
291 |
msgstr ""
|
292 |
|
293 |
+
#: includes/class-fcbkbttn-settings.php:415
|
294 |
msgid "Light"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: includes/class-fcbkbttn-settings.php:420
|
298 |
msgid "Dark"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: includes/class-fcbkbttn-settings.php:426
|
302 |
msgid "Like Button HTML Tag"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: includes/class-fcbkbttn-settings.php:432
|
306 |
#, php-format
|
307 |
msgid "Tag %s can be used to improve website code validation."
|
308 |
msgstr ""
|
309 |
|
310 |
+
#: includes/class-fcbkbttn-settings.php:445
|
311 |
msgid "URL to Like"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: includes/class-fcbkbttn-settings.php:447
|
315 |
msgid "Leave blank to use a current page."
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: includes/class-fcbkbttn-settings.php:475
|
319 |
+
msgid "Facebook Buttons Shortcode"
|
320 |
+
msgstr ""
|
|
|
321 |
|
322 |
+
#: includes/class-fcbkbttn-settings.php:478
|
323 |
msgid ""
|
324 |
"Add Facebook button(-s) to your posts, pages, custom post types or widgets "
|
325 |
"by using the following shortcode:"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: includes/class-fcbkbttn-settings.php:497
|
329 |
#, fuzzy
|
330 |
msgid "Facebook Buttons Preview"
|
331 |
msgstr "Tombol Facebook"
|
332 |
|
333 |
+
#: includes/class-fcbkbttn-settings.php:512
|
334 |
#, fuzzy
|
335 |
msgid "Display Settings"
|
336 |
msgstr "Tampilan tombol:"
|
337 |
|
338 |
+
#: includes/class-fcbkbttn-settings.php:521
|
339 |
msgid ""
|
340 |
"Please choose the necessary post types (or single pages) where Facebook "
|
341 |
"button will be displayed:"
|
342 |
msgstr ""
|
343 |
|
344 |
+
#: includes/class-fcbkbttn-settings.php:528
|
345 |
msgid "Show URL for pages"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: includes/class-fcbkbttn-settings.php:534
|
349 |
+
msgid "Example of site pages tree"
|
350 |
msgstr ""
|
351 |
|
352 |
+
#~ msgid "Error: File size > 32K"
|
353 |
+
#~ msgstr "SALAH: Ukuran file lebih besar dari 32KB"
|
354 |
+
|
355 |
+
#, fuzzy
|
356 |
+
#~ msgid "Facebook Buttons Shortchode"
|
357 |
+
#~ msgstr "Posisi Tombol Facebook"
|
358 |
|
359 |
#, fuzzy
|
360 |
#~ msgid "Facebook button Settings"
|
languages/facebook-button-plugin-ru_RU.mo
CHANGED
Binary file
|
languages/facebook-button-plugin-ru_RU.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
@@ -17,12 +17,12 @@ msgstr ""
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: facebook-button-plugin.php:35 facebook-button-plugin.php:36
|
20 |
-
#: facebook-button-plugin.php:
|
21 |
msgid "Facebook Button Settings"
|
22 |
msgstr "Настройки Facebook Button"
|
23 |
|
24 |
-
#: facebook-button-plugin.php:36 facebook-button-plugin.php:
|
25 |
-
#: facebook-button-plugin.php:
|
26 |
msgid "Settings"
|
27 |
msgstr "Настройки"
|
28 |
|
@@ -30,19 +30,19 @@ msgstr "Настройки"
|
|
30 |
msgid "Upgrade to Pro"
|
31 |
msgstr "Обновиться до Pro"
|
32 |
|
33 |
-
#: facebook-button-plugin.php:
|
34 |
msgid "Please, enable JavaScript in Your browser."
|
35 |
msgstr "Пожалуйста, включите поддержку JavaScript в вашем браузере."
|
36 |
|
37 |
-
#: facebook-button-plugin.php:
|
38 |
msgid "Add Facebook buttons to your page or post"
|
39 |
msgstr "Добавить Facebook кнопки на вашу страницу или запись"
|
40 |
|
41 |
-
#: facebook-button-plugin.php:
|
42 |
msgid "FAQ"
|
43 |
msgstr "FAQ"
|
44 |
|
45 |
-
#: facebook-button-plugin.php:
|
46 |
msgid "Support"
|
47 |
msgstr "Поддержка"
|
48 |
|
@@ -62,78 +62,90 @@ msgstr "Пользовательский код"
|
|
62 |
msgid "License Key"
|
63 |
msgstr "Лицензионный ключ"
|
64 |
|
65 |
-
#: includes/class-fcbkbttn-settings.php:
|
66 |
msgid "Settings saved"
|
67 |
msgstr "Настройки сохранены"
|
68 |
|
69 |
-
#: includes/class-fcbkbttn-settings.php:
|
70 |
-
msgid "Error: File size
|
71 |
-
msgstr "Ошибка: Размер файла
|
72 |
|
73 |
-
#: includes/class-fcbkbttn-settings.php:
|
74 |
msgid "Error: Invalid file type"
|
75 |
msgstr "Ошибка: Некорректный тип файла"
|
76 |
|
77 |
-
#: includes/class-fcbkbttn-settings.php:
|
78 |
msgid "Upload successful."
|
79 |
msgstr "Загрузка прошла удачно."
|
80 |
|
81 |
-
#: includes/class-fcbkbttn-settings.php:
|
82 |
msgid "Error: failed to move file."
|
83 |
msgstr "Ошибка: При перемещении файла произошла ошибка."
|
84 |
|
85 |
-
#: includes/class-fcbkbttn-settings.php:
|
86 |
msgid "Error: check image width or height."
|
87 |
msgstr "Ошибка: Проверьте ширину и высоту изображения."
|
88 |
|
89 |
-
#: includes/class-fcbkbttn-settings.php:
|
90 |
msgid "Uploading Error: check image properties"
|
91 |
msgstr "Ошибка загрузки: Проверьте опции изображения"
|
92 |
|
93 |
-
#: includes/class-fcbkbttn-settings.php:
|
94 |
msgid "General"
|
95 |
msgstr "Общее"
|
96 |
|
97 |
-
#: includes/class-fcbkbttn-settings.php:
|
98 |
msgid "Buttons"
|
99 |
-
msgstr "
|
100 |
|
101 |
-
#: includes/class-fcbkbttn-settings.php:
|
102 |
msgid "Profile URL"
|
103 |
msgstr "URL профиля"
|
104 |
|
105 |
-
#: includes/class-fcbkbttn-settings.php:
|
106 |
-
#: includes/class-fcbkbttn-settings.php:
|
107 |
msgid "Like"
|
108 |
msgstr "Нравится"
|
109 |
|
110 |
-
#: includes/class-fcbkbttn-settings.php:
|
111 |
msgid "Share"
|
112 |
msgstr "Поделиться"
|
113 |
|
114 |
-
#: includes/class-fcbkbttn-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
msgid "Buttons Position"
|
116 |
msgstr "Позиция кнопок"
|
117 |
|
118 |
-
#: includes/class-fcbkbttn-settings.php:
|
119 |
msgid "Before content"
|
120 |
msgstr "Перед содержимым"
|
121 |
|
122 |
-
#: includes/class-fcbkbttn-settings.php:
|
123 |
msgid "After content"
|
124 |
msgstr "После содержимого"
|
125 |
|
126 |
-
#: includes/class-fcbkbttn-settings.php:
|
127 |
msgid "Language"
|
128 |
msgstr "Язык"
|
129 |
|
130 |
-
#: includes/class-fcbkbttn-settings.php:
|
131 |
msgid "Select the default language for Facebook button(-s)."
|
132 |
msgstr "Выберите язык отображения по умолчанию для кнопок Facebook."
|
133 |
|
134 |
-
#: includes/class-fcbkbttn-settings.php:
|
135 |
-
#: includes/class-fcbkbttn-settings.php:
|
136 |
-
#: includes/class-fcbkbttn-settings.php:
|
137 |
msgid ""
|
138 |
"Enable to switch language automatically on multilingual website using "
|
139 |
"Multilanguage plugin."
|
@@ -141,50 +153,50 @@ msgstr ""
|
|
141 |
"Включить, чтобы переключить язык автоматически на многоязычном сайте, "
|
142 |
"используя Multilanguage плагин."
|
143 |
|
144 |
-
#: includes/class-fcbkbttn-settings.php:
|
145 |
#, php-format
|
146 |
msgid "Activate %s"
|
147 |
msgstr "Активировать %s"
|
148 |
|
149 |
-
#: includes/class-fcbkbttn-settings.php:
|
150 |
msgid "Learn More"
|
151 |
msgstr "Подробнее"
|
152 |
|
153 |
-
#: includes/class-fcbkbttn-settings.php:
|
154 |
msgid "Excerpt"
|
155 |
msgstr "Цитата"
|
156 |
|
157 |
-
#: includes/class-fcbkbttn-settings.php:
|
158 |
msgid "Enable to display buttons in excerpt."
|
159 |
msgstr "Включите, чтоб отображать кнопки для цитаты."
|
160 |
|
161 |
-
#: includes/class-fcbkbttn-settings.php:
|
162 |
-
#: includes/class-fcbkbttn-settings.php:
|
163 |
-
#: includes/class-fcbkbttn-settings.php:
|
164 |
msgid "Close"
|
165 |
msgstr "Закрыть"
|
166 |
|
167 |
-
#: includes/class-fcbkbttn-settings.php:
|
168 |
msgid "Meta Image"
|
169 |
msgstr "Мета изображение"
|
170 |
|
171 |
-
#: includes/class-fcbkbttn-settings.php:
|
172 |
msgid "Featured Image"
|
173 |
msgstr "Миниатюра записи"
|
174 |
|
175 |
-
#: includes/class-fcbkbttn-settings.php:
|
176 |
msgid "Custom Image"
|
177 |
msgstr "Пользовательское изображение"
|
178 |
|
179 |
-
#: includes/class-fcbkbttn-settings.php:
|
180 |
msgid "This image will be used for all posts"
|
181 |
msgstr "Это изображение будет использоваться для всех записей"
|
182 |
|
183 |
-
#: includes/class-fcbkbttn-settings.php:
|
184 |
msgid "Meta Description"
|
185 |
msgstr "Мета описание"
|
186 |
|
187 |
-
#: includes/class-fcbkbttn-settings.php:
|
188 |
msgid ""
|
189 |
"This description will be used for all pages and posts. Leave blank to use "
|
190 |
"page description."
|
@@ -192,27 +204,27 @@ msgstr ""
|
|
192 |
"Это описание будет использоваться для всех записей и страниц. Оставьте "
|
193 |
"пустым, чтобы использовать описание страницы."
|
194 |
|
195 |
-
#: includes/class-fcbkbttn-settings.php:
|
196 |
msgid "Profile URL Button"
|
197 |
msgstr "Кнопка URL профиля"
|
198 |
|
199 |
-
#: includes/class-fcbkbttn-settings.php:
|
200 |
msgid "Facebook ID or Username"
|
201 |
msgstr "Facebook ID или имя пользователя"
|
202 |
|
203 |
-
#: includes/class-fcbkbttn-settings.php:
|
204 |
msgid "Profile Button Image"
|
205 |
msgstr "Изображение кнопки профиля"
|
206 |
|
207 |
-
#: includes/class-fcbkbttn-settings.php:
|
208 |
msgid "Default"
|
209 |
msgstr "По умолчанию"
|
210 |
|
211 |
-
#: includes/class-fcbkbttn-settings.php:
|
212 |
msgid "Custom image"
|
213 |
msgstr "Пользовательское изображение"
|
214 |
|
215 |
-
#: includes/class-fcbkbttn-settings.php:
|
216 |
msgid ""
|
217 |
"To use custom image, You need to setup permissions for upload directory of "
|
218 |
"your site"
|
@@ -220,11 +232,11 @@ msgstr ""
|
|
220 |
"Для использования пользовательского изображения Вам нужно выдать права "
|
221 |
"доступа на папку загрузок на вашем сайте"
|
222 |
|
223 |
-
#: includes/class-fcbkbttn-settings.php:
|
224 |
msgid "Current image"
|
225 |
msgstr "Текущее изображение"
|
226 |
|
227 |
-
#: includes/class-fcbkbttn-settings.php:
|
228 |
msgid ""
|
229 |
"Image requirements: max image width:100px; max image height:40px; max image "
|
230 |
"size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
@@ -232,72 +244,72 @@ msgstr ""
|
|
232 |
"Требования к изображению: максимальная ширина:100px; максимальная "
|
233 |
"высота:40px; максимальный размер:32Kb; тип файла:\"jpg\", \"jpeg\", \"png\"."
|
234 |
|
235 |
-
#: includes/class-fcbkbttn-settings.php:
|
236 |
msgid "Like&Share Buttons"
|
237 |
msgstr "Кнопки \"Нравится\" и \"Поделиться\""
|
238 |
|
239 |
-
#: includes/class-fcbkbttn-settings.php:
|
240 |
msgid "Layout"
|
241 |
msgstr "Вид"
|
242 |
|
243 |
-
#: includes/class-fcbkbttn-settings.php:
|
244 |
msgid "Like Button Action"
|
245 |
msgstr "Действие кнопки \"Нравится\""
|
246 |
|
247 |
-
#: includes/class-fcbkbttn-settings.php:
|
248 |
msgid "Recommend"
|
249 |
msgstr "Рекомендую"
|
250 |
|
251 |
-
#: includes/class-fcbkbttn-settings.php:
|
252 |
msgid "Friends Faces"
|
253 |
msgstr "Лица друзей"
|
254 |
|
255 |
-
#: includes/class-fcbkbttn-settings.php:
|
256 |
msgid " Enable to show faces of your friends who submitted the button."
|
257 |
msgstr "Включить, чтобы показать лица своих друзей, которые нажали кнопку."
|
258 |
|
259 |
-
#: includes/class-fcbkbttn-settings.php:
|
260 |
msgid "Layout Width"
|
261 |
msgstr "Ширина блока"
|
262 |
|
263 |
-
#: includes/class-fcbkbttn-settings.php:
|
264 |
msgid "px"
|
265 |
msgstr "пикс"
|
266 |
|
267 |
-
#: includes/class-fcbkbttn-settings.php:
|
268 |
msgid "Theme"
|
269 |
msgstr "Тема"
|
270 |
|
271 |
-
#: includes/class-fcbkbttn-settings.php:
|
272 |
msgid "Light"
|
273 |
msgstr "Светлая"
|
274 |
|
275 |
-
#: includes/class-fcbkbttn-settings.php:
|
276 |
msgid "Dark"
|
277 |
msgstr "Тёмная"
|
278 |
|
279 |
-
#: includes/class-fcbkbttn-settings.php:
|
280 |
msgid "Like Button HTML Tag"
|
281 |
msgstr "HTML тег кнопки \"Нравится\""
|
282 |
|
283 |
-
#: includes/class-fcbkbttn-settings.php:
|
284 |
#, php-format
|
285 |
msgid "Tag %s can be used to improve website code validation."
|
286 |
msgstr "Тег %s может быть использован для улучшения валидации кода сайта."
|
287 |
|
288 |
-
#: includes/class-fcbkbttn-settings.php:
|
289 |
msgid "URL to Like"
|
290 |
msgstr "URL кнопки \"Нравится\""
|
291 |
|
292 |
-
#: includes/class-fcbkbttn-settings.php:
|
293 |
msgid "Leave blank to use a current page."
|
294 |
msgstr "Оставьте пустым, чтобы использовать текущую страницу."
|
295 |
|
296 |
-
#: includes/class-fcbkbttn-settings.php:
|
297 |
-
msgid "Facebook Buttons
|
298 |
-
msgstr "Шорткод Facebook
|
299 |
|
300 |
-
#: includes/class-fcbkbttn-settings.php:
|
301 |
msgid ""
|
302 |
"Add Facebook button(-s) to your posts, pages, custom post types or widgets "
|
303 |
"by using the following shortcode:"
|
@@ -305,15 +317,15 @@ msgstr ""
|
|
305 |
"Добавить кнопки Facebook на ваши записи, страницы, пользовательские типы "
|
306 |
"записей или виджеты с помощью данного шорткода:"
|
307 |
|
308 |
-
#: includes/class-fcbkbttn-settings.php:
|
309 |
msgid "Facebook Buttons Preview"
|
310 |
msgstr "Предварительный просмотр Facebook кнопок"
|
311 |
|
312 |
-
#: includes/class-fcbkbttn-settings.php:
|
313 |
msgid "Display Settings"
|
314 |
msgstr "Настройка отображения"
|
315 |
|
316 |
-
#: includes/class-fcbkbttn-settings.php:
|
317 |
msgid ""
|
318 |
"Please choose the necessary post types (or single pages) where Facebook "
|
319 |
"button will be displayed:"
|
@@ -321,17 +333,25 @@ msgstr ""
|
|
321 |
"Пожалуйста, выберите те типы записей (или отдельные страницы), где будут "
|
322 |
"отображаться кнопки Facebook:"
|
323 |
|
324 |
-
#: includes/class-fcbkbttn-settings.php:
|
325 |
msgid "Show URL for pages"
|
326 |
msgstr "Отображать URL для страниц"
|
327 |
|
328 |
-
#: includes/class-fcbkbttn-settings.php:
|
329 |
-
msgid "Example of
|
330 |
msgstr "Пример дерева страниц сайта"
|
331 |
|
332 |
-
|
333 |
-
|
334 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
335 |
|
336 |
#~ msgid "Facebook button Settings"
|
337 |
#~ msgstr "Настройки Facebook button"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-07-10 12:19+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-07-10 12:20+0300\n"
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: facebook-button-plugin.php:35 facebook-button-plugin.php:36
|
20 |
+
#: facebook-button-plugin.php:176 includes/class-fcbkbttn-settings.php:181
|
21 |
msgid "Facebook Button Settings"
|
22 |
msgstr "Настройки Facebook Button"
|
23 |
|
24 |
+
#: facebook-button-plugin.php:36 facebook-button-plugin.php:382
|
25 |
+
#: facebook-button-plugin.php:396 includes/class-fcbkbttn-settings.php:23
|
26 |
msgid "Settings"
|
27 |
msgstr "Настройки"
|
28 |
|
30 |
msgid "Upgrade to Pro"
|
31 |
msgstr "Обновиться до Pro"
|
32 |
|
33 |
+
#: facebook-button-plugin.php:177
|
34 |
msgid "Please, enable JavaScript in Your browser."
|
35 |
msgstr "Пожалуйста, включите поддержку JavaScript в вашем браузере."
|
36 |
|
37 |
+
#: facebook-button-plugin.php:275
|
38 |
msgid "Add Facebook buttons to your page or post"
|
39 |
msgstr "Добавить Facebook кнопки на вашу страницу или запись"
|
40 |
|
41 |
+
#: facebook-button-plugin.php:397
|
42 |
msgid "FAQ"
|
43 |
msgstr "FAQ"
|
44 |
|
45 |
+
#: facebook-button-plugin.php:398
|
46 |
msgid "Support"
|
47 |
msgstr "Поддержка"
|
48 |
|
62 |
msgid "License Key"
|
63 |
msgstr "Лицензионный ключ"
|
64 |
|
65 |
+
#: includes/class-fcbkbttn-settings.php:107
|
66 |
msgid "Settings saved"
|
67 |
msgstr "Настройки сохранены"
|
68 |
|
69 |
+
#: includes/class-fcbkbttn-settings.php:136
|
70 |
+
msgid "Error: File size must not exceed 32KB"
|
71 |
+
msgstr "Ошибка: Размер файла не должен превышать 32КБ"
|
72 |
|
73 |
+
#: includes/class-fcbkbttn-settings.php:139
|
74 |
msgid "Error: Invalid file type"
|
75 |
msgstr "Ошибка: Некорректный тип файла"
|
76 |
|
77 |
+
#: includes/class-fcbkbttn-settings.php:145
|
78 |
msgid "Upload successful."
|
79 |
msgstr "Загрузка прошла удачно."
|
80 |
|
81 |
+
#: includes/class-fcbkbttn-settings.php:153
|
82 |
msgid "Error: failed to move file."
|
83 |
msgstr "Ошибка: При перемещении файла произошла ошибка."
|
84 |
|
85 |
+
#: includes/class-fcbkbttn-settings.php:156
|
86 |
msgid "Error: check image width or height."
|
87 |
msgstr "Ошибка: Проверьте ширину и высоту изображения."
|
88 |
|
89 |
+
#: includes/class-fcbkbttn-settings.php:160
|
90 |
msgid "Uploading Error: check image properties"
|
91 |
msgstr "Ошибка загрузки: Проверьте опции изображения"
|
92 |
|
93 |
+
#: includes/class-fcbkbttn-settings.php:184
|
94 |
msgid "General"
|
95 |
msgstr "Общее"
|
96 |
|
97 |
+
#: includes/class-fcbkbttn-settings.php:187
|
98 |
msgid "Buttons"
|
99 |
+
msgstr "Кнопки"
|
100 |
|
101 |
+
#: includes/class-fcbkbttn-settings.php:190
|
102 |
msgid "Profile URL"
|
103 |
msgstr "URL профиля"
|
104 |
|
105 |
+
#: includes/class-fcbkbttn-settings.php:191
|
106 |
+
#: includes/class-fcbkbttn-settings.php:386
|
107 |
msgid "Like"
|
108 |
msgstr "Нравится"
|
109 |
|
110 |
+
#: includes/class-fcbkbttn-settings.php:192
|
111 |
msgid "Share"
|
112 |
msgstr "Поделиться"
|
113 |
|
114 |
+
#: includes/class-fcbkbttn-settings.php:197
|
115 |
+
msgid "Buttons Size"
|
116 |
+
msgstr "Величина кнопок"
|
117 |
+
|
118 |
+
#: includes/class-fcbkbttn-settings.php:200
|
119 |
+
msgid "Small"
|
120 |
+
msgstr "Маленькие"
|
121 |
+
|
122 |
+
#: includes/class-fcbkbttn-settings.php:201
|
123 |
+
msgid "Large"
|
124 |
+
msgstr "Большие"
|
125 |
+
|
126 |
+
#: includes/class-fcbkbttn-settings.php:206
|
127 |
msgid "Buttons Position"
|
128 |
msgstr "Позиция кнопок"
|
129 |
|
130 |
+
#: includes/class-fcbkbttn-settings.php:211
|
131 |
msgid "Before content"
|
132 |
msgstr "Перед содержимым"
|
133 |
|
134 |
+
#: includes/class-fcbkbttn-settings.php:216
|
135 |
msgid "After content"
|
136 |
msgstr "После содержимого"
|
137 |
|
138 |
+
#: includes/class-fcbkbttn-settings.php:222
|
139 |
msgid "Language"
|
140 |
msgstr "Язык"
|
141 |
|
142 |
+
#: includes/class-fcbkbttn-settings.php:233
|
143 |
msgid "Select the default language for Facebook button(-s)."
|
144 |
msgstr "Выберите язык отображения по умолчанию для кнопок Facebook."
|
145 |
|
146 |
+
#: includes/class-fcbkbttn-settings.php:242
|
147 |
+
#: includes/class-fcbkbttn-settings.php:245
|
148 |
+
#: includes/class-fcbkbttn-settings.php:249
|
149 |
msgid ""
|
150 |
"Enable to switch language automatically on multilingual website using "
|
151 |
"Multilanguage plugin."
|
153 |
"Включить, чтобы переключить язык автоматически на многоязычном сайте, "
|
154 |
"используя Multilanguage плагин."
|
155 |
|
156 |
+
#: includes/class-fcbkbttn-settings.php:245
|
157 |
#, php-format
|
158 |
msgid "Activate %s"
|
159 |
msgstr "Активировать %s"
|
160 |
|
161 |
+
#: includes/class-fcbkbttn-settings.php:249
|
162 |
msgid "Learn More"
|
163 |
msgstr "Подробнее"
|
164 |
|
165 |
+
#: includes/class-fcbkbttn-settings.php:254
|
166 |
msgid "Excerpt"
|
167 |
msgstr "Цитата"
|
168 |
|
169 |
+
#: includes/class-fcbkbttn-settings.php:256
|
170 |
msgid "Enable to display buttons in excerpt."
|
171 |
msgstr "Включите, чтоб отображать кнопки для цитаты."
|
172 |
|
173 |
+
#: includes/class-fcbkbttn-settings.php:265
|
174 |
+
#: includes/class-fcbkbttn-settings.php:441
|
175 |
+
#: includes/class-fcbkbttn-settings.php:496
|
176 |
msgid "Close"
|
177 |
msgstr "Закрыть"
|
178 |
|
179 |
+
#: includes/class-fcbkbttn-settings.php:269
|
180 |
msgid "Meta Image"
|
181 |
msgstr "Мета изображение"
|
182 |
|
183 |
+
#: includes/class-fcbkbttn-settings.php:274
|
184 |
msgid "Featured Image"
|
185 |
msgstr "Миниатюра записи"
|
186 |
|
187 |
+
#: includes/class-fcbkbttn-settings.php:278
|
188 |
msgid "Custom Image"
|
189 |
msgstr "Пользовательское изображение"
|
190 |
|
191 |
+
#: includes/class-fcbkbttn-settings.php:278
|
192 |
msgid "This image will be used for all posts"
|
193 |
msgstr "Это изображение будет использоваться для всех записей"
|
194 |
|
195 |
+
#: includes/class-fcbkbttn-settings.php:285
|
196 |
msgid "Meta Description"
|
197 |
msgstr "Мета описание"
|
198 |
|
199 |
+
#: includes/class-fcbkbttn-settings.php:289
|
200 |
msgid ""
|
201 |
"This description will be used for all pages and posts. Leave blank to use "
|
202 |
"page description."
|
204 |
"Это описание будет использоваться для всех записей и страниц. Оставьте "
|
205 |
"пустым, чтобы использовать описание страницы."
|
206 |
|
207 |
+
#: includes/class-fcbkbttn-settings.php:298
|
208 |
msgid "Profile URL Button"
|
209 |
msgstr "Кнопка URL профиля"
|
210 |
|
211 |
+
#: includes/class-fcbkbttn-settings.php:301
|
212 |
msgid "Facebook ID or Username"
|
213 |
msgstr "Facebook ID или имя пользователя"
|
214 |
|
215 |
+
#: includes/class-fcbkbttn-settings.php:308
|
216 |
msgid "Profile Button Image"
|
217 |
msgstr "Изображение кнопки профиля"
|
218 |
|
219 |
+
#: includes/class-fcbkbttn-settings.php:315
|
220 |
msgid "Default"
|
221 |
msgstr "По умолчанию"
|
222 |
|
223 |
+
#: includes/class-fcbkbttn-settings.php:320
|
224 |
msgid "Custom image"
|
225 |
msgstr "Пользовательское изображение"
|
226 |
|
227 |
+
#: includes/class-fcbkbttn-settings.php:324
|
228 |
msgid ""
|
229 |
"To use custom image, You need to setup permissions for upload directory of "
|
230 |
"your site"
|
232 |
"Для использования пользовательского изображения Вам нужно выдать права "
|
233 |
"доступа на папку загрузок на вашем сайте"
|
234 |
|
235 |
+
#: includes/class-fcbkbttn-settings.php:331
|
236 |
msgid "Current image"
|
237 |
msgstr "Текущее изображение"
|
238 |
|
239 |
+
#: includes/class-fcbkbttn-settings.php:339
|
240 |
msgid ""
|
241 |
"Image requirements: max image width:100px; max image height:40px; max image "
|
242 |
"size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
244 |
"Требования к изображению: максимальная ширина:100px; максимальная "
|
245 |
"высота:40px; максимальный размер:32Kb; тип файла:\"jpg\", \"jpeg\", \"png\"."
|
246 |
|
247 |
+
#: includes/class-fcbkbttn-settings.php:343
|
248 |
msgid "Like&Share Buttons"
|
249 |
msgstr "Кнопки \"Нравится\" и \"Поделиться\""
|
250 |
|
251 |
+
#: includes/class-fcbkbttn-settings.php:346
|
252 |
msgid "Layout"
|
253 |
msgstr "Вид"
|
254 |
|
255 |
+
#: includes/class-fcbkbttn-settings.php:381
|
256 |
msgid "Like Button Action"
|
257 |
msgstr "Действие кнопки \"Нравится\""
|
258 |
|
259 |
+
#: includes/class-fcbkbttn-settings.php:391
|
260 |
msgid "Recommend"
|
261 |
msgstr "Рекомендую"
|
262 |
|
263 |
+
#: includes/class-fcbkbttn-settings.php:397
|
264 |
msgid "Friends Faces"
|
265 |
msgstr "Лица друзей"
|
266 |
|
267 |
+
#: includes/class-fcbkbttn-settings.php:400
|
268 |
msgid " Enable to show faces of your friends who submitted the button."
|
269 |
msgstr "Включить, чтобы показать лица своих друзей, которые нажали кнопку."
|
270 |
|
271 |
+
#: includes/class-fcbkbttn-settings.php:404
|
272 |
msgid "Layout Width"
|
273 |
msgstr "Ширина блока"
|
274 |
|
275 |
+
#: includes/class-fcbkbttn-settings.php:406
|
276 |
msgid "px"
|
277 |
msgstr "пикс"
|
278 |
|
279 |
+
#: includes/class-fcbkbttn-settings.php:410
|
280 |
msgid "Theme"
|
281 |
msgstr "Тема"
|
282 |
|
283 |
+
#: includes/class-fcbkbttn-settings.php:415
|
284 |
msgid "Light"
|
285 |
msgstr "Светлая"
|
286 |
|
287 |
+
#: includes/class-fcbkbttn-settings.php:420
|
288 |
msgid "Dark"
|
289 |
msgstr "Тёмная"
|
290 |
|
291 |
+
#: includes/class-fcbkbttn-settings.php:426
|
292 |
msgid "Like Button HTML Tag"
|
293 |
msgstr "HTML тег кнопки \"Нравится\""
|
294 |
|
295 |
+
#: includes/class-fcbkbttn-settings.php:432
|
296 |
#, php-format
|
297 |
msgid "Tag %s can be used to improve website code validation."
|
298 |
msgstr "Тег %s может быть использован для улучшения валидации кода сайта."
|
299 |
|
300 |
+
#: includes/class-fcbkbttn-settings.php:445
|
301 |
msgid "URL to Like"
|
302 |
msgstr "URL кнопки \"Нравится\""
|
303 |
|
304 |
+
#: includes/class-fcbkbttn-settings.php:447
|
305 |
msgid "Leave blank to use a current page."
|
306 |
msgstr "Оставьте пустым, чтобы использовать текущую страницу."
|
307 |
|
308 |
+
#: includes/class-fcbkbttn-settings.php:475
|
309 |
+
msgid "Facebook Buttons Shortcode"
|
310 |
+
msgstr "Шорткод кнопки Facebook"
|
311 |
|
312 |
+
#: includes/class-fcbkbttn-settings.php:478
|
313 |
msgid ""
|
314 |
"Add Facebook button(-s) to your posts, pages, custom post types or widgets "
|
315 |
"by using the following shortcode:"
|
317 |
"Добавить кнопки Facebook на ваши записи, страницы, пользовательские типы "
|
318 |
"записей или виджеты с помощью данного шорткода:"
|
319 |
|
320 |
+
#: includes/class-fcbkbttn-settings.php:497
|
321 |
msgid "Facebook Buttons Preview"
|
322 |
msgstr "Предварительный просмотр Facebook кнопок"
|
323 |
|
324 |
+
#: includes/class-fcbkbttn-settings.php:512
|
325 |
msgid "Display Settings"
|
326 |
msgstr "Настройка отображения"
|
327 |
|
328 |
+
#: includes/class-fcbkbttn-settings.php:521
|
329 |
msgid ""
|
330 |
"Please choose the necessary post types (or single pages) where Facebook "
|
331 |
"button will be displayed:"
|
333 |
"Пожалуйста, выберите те типы записей (или отдельные страницы), где будут "
|
334 |
"отображаться кнопки Facebook:"
|
335 |
|
336 |
+
#: includes/class-fcbkbttn-settings.php:528
|
337 |
msgid "Show URL for pages"
|
338 |
msgstr "Отображать URL для страниц"
|
339 |
|
340 |
+
#: includes/class-fcbkbttn-settings.php:534
|
341 |
+
msgid "Example of site pages tree"
|
342 |
msgstr "Пример дерева страниц сайта"
|
343 |
|
344 |
+
#~ msgid "Error: File size > 32K"
|
345 |
+
#~ msgstr "Ошибка: Размер файла не должен превышать 32Кб"
|
346 |
+
|
347 |
+
#~ msgid "Example of site pages' tree"
|
348 |
+
#~ msgstr "Пример дерева страниц сайта"
|
349 |
+
|
350 |
+
#~ msgid "Example of the site's pages tree"
|
351 |
+
#~ msgstr "Пример дерева страниц сайта"
|
352 |
+
|
353 |
+
#~ msgid "Facebook Buttons Shortchode"
|
354 |
+
#~ msgstr "Шорткод Facebook кнопок"
|
355 |
|
356 |
#~ msgid "Facebook button Settings"
|
357 |
#~ msgstr "Настройки Facebook button"
|
languages/facebook-button-plugin-tr_TR.mo
CHANGED
Binary file
|
languages/facebook-button-plugin-tr_TR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: Can Atasever <webmaster@canatasever.com>\n"
|
9 |
"Language: tr\n"
|
@@ -18,12 +18,12 @@ msgstr ""
|
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: facebook-button-plugin.php:35 facebook-button-plugin.php:36
|
21 |
-
#: facebook-button-plugin.php:
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "Facebook Buton Ayarları"
|
24 |
|
25 |
-
#: facebook-button-plugin.php:36 facebook-button-plugin.php:
|
26 |
-
#: facebook-button-plugin.php:
|
27 |
msgid "Settings"
|
28 |
msgstr "Ayarlar"
|
29 |
|
@@ -31,20 +31,20 @@ msgstr "Ayarlar"
|
|
31 |
msgid "Upgrade to Pro"
|
32 |
msgstr ""
|
33 |
|
34 |
-
#: facebook-button-plugin.php:
|
35 |
msgid "Please, enable JavaScript in Your browser."
|
36 |
msgstr ""
|
37 |
|
38 |
-
#: facebook-button-plugin.php:
|
39 |
#, fuzzy
|
40 |
msgid "Add Facebook buttons to your page or post"
|
41 |
msgstr "Facebook Butonu pozisyonu"
|
42 |
|
43 |
-
#: facebook-button-plugin.php:
|
44 |
msgid "FAQ"
|
45 |
msgstr "SSS"
|
46 |
|
47 |
-
#: facebook-button-plugin.php:
|
48 |
msgid "Support"
|
49 |
msgstr "Destek"
|
50 |
|
@@ -67,164 +67,176 @@ msgstr "Özel Facebook görseli"
|
|
67 |
msgid "License Key"
|
68 |
msgstr "Hatalı lisans anahtarı"
|
69 |
|
70 |
-
#: includes/class-fcbkbttn-settings.php:
|
71 |
msgid "Settings saved"
|
72 |
msgstr "Ayarlar kaydedildi"
|
73 |
|
74 |
-
#: includes/class-fcbkbttn-settings.php:
|
75 |
-
msgid "Error: File size
|
76 |
-
msgstr "
|
77 |
|
78 |
-
#: includes/class-fcbkbttn-settings.php:
|
79 |
msgid "Error: Invalid file type"
|
80 |
msgstr "HATA: Geçersiz dosya türü"
|
81 |
|
82 |
-
#: includes/class-fcbkbttn-settings.php:
|
83 |
msgid "Upload successful."
|
84 |
msgstr "Yükleme başarılı"
|
85 |
|
86 |
-
#: includes/class-fcbkbttn-settings.php:
|
87 |
#, fuzzy
|
88 |
msgid "Error: failed to move file."
|
89 |
msgstr "HATA: dosya taşıma başarısız."
|
90 |
|
91 |
-
#: includes/class-fcbkbttn-settings.php:
|
92 |
#, fuzzy
|
93 |
msgid "Error: check image width or height."
|
94 |
msgstr "HATA: görselin genişliğini ya da yüksekliğini kontrol edin."
|
95 |
|
96 |
-
#: includes/class-fcbkbttn-settings.php:
|
97 |
msgid "Uploading Error: check image properties"
|
98 |
msgstr "Yükleme Hatası: görselin özelliklerini kontrol edin."
|
99 |
|
100 |
-
#: includes/class-fcbkbttn-settings.php:
|
101 |
msgid "General"
|
102 |
msgstr ""
|
103 |
|
104 |
-
#: includes/class-fcbkbttn-settings.php:
|
105 |
#, fuzzy
|
106 |
msgid "Buttons"
|
107 |
msgstr "Facebook Butonu pozisyonu"
|
108 |
|
109 |
-
#: includes/class-fcbkbttn-settings.php:
|
110 |
msgid "Profile URL"
|
111 |
msgstr ""
|
112 |
|
113 |
-
#: includes/class-fcbkbttn-settings.php:
|
114 |
-
#: includes/class-fcbkbttn-settings.php:
|
115 |
msgid "Like"
|
116 |
msgstr "Beğen"
|
117 |
|
118 |
-
#: includes/class-fcbkbttn-settings.php:
|
119 |
msgid "Share"
|
120 |
msgstr "Paylaş"
|
121 |
|
122 |
-
#: includes/class-fcbkbttn-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
#, fuzzy
|
124 |
msgid "Buttons Position"
|
125 |
msgstr "Facebook Butonu pozisyonu"
|
126 |
|
127 |
-
#: includes/class-fcbkbttn-settings.php:
|
128 |
#, fuzzy
|
129 |
msgid "Before content"
|
130 |
msgstr "Önce ve Sonra"
|
131 |
|
132 |
-
#: includes/class-fcbkbttn-settings.php:
|
133 |
msgid "After content"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: includes/class-fcbkbttn-settings.php:
|
137 |
msgid "Language"
|
138 |
msgstr ""
|
139 |
|
140 |
-
#: includes/class-fcbkbttn-settings.php:
|
141 |
#, fuzzy
|
142 |
msgid "Select the default language for Facebook button(-s)."
|
143 |
msgstr "Facebook Beğen butonunun dilini değiştirin"
|
144 |
|
145 |
-
#: includes/class-fcbkbttn-settings.php:
|
146 |
-
#: includes/class-fcbkbttn-settings.php:
|
147 |
-
#: includes/class-fcbkbttn-settings.php:
|
148 |
msgid ""
|
149 |
"Enable to switch language automatically on multilingual website using "
|
150 |
"Multilanguage plugin."
|
151 |
msgstr ""
|
152 |
|
153 |
-
#: includes/class-fcbkbttn-settings.php:
|
154 |
#, php-format
|
155 |
msgid "Activate %s"
|
156 |
msgstr ""
|
157 |
|
158 |
-
#: includes/class-fcbkbttn-settings.php:
|
159 |
msgid "Learn More"
|
160 |
msgstr "Detaylı Bilgi"
|
161 |
|
162 |
-
#: includes/class-fcbkbttn-settings.php:
|
163 |
msgid "Excerpt"
|
164 |
msgstr ""
|
165 |
|
166 |
-
#: includes/class-fcbkbttn-settings.php:
|
167 |
#, fuzzy
|
168 |
msgid "Enable to display buttons in excerpt."
|
169 |
msgstr "Butonu Göster:"
|
170 |
|
171 |
-
#: includes/class-fcbkbttn-settings.php:
|
172 |
-
#: includes/class-fcbkbttn-settings.php:
|
173 |
-
#: includes/class-fcbkbttn-settings.php:
|
174 |
msgid "Close"
|
175 |
msgstr ""
|
176 |
|
177 |
-
#: includes/class-fcbkbttn-settings.php:
|
178 |
#, fuzzy
|
179 |
msgid "Meta Image"
|
180 |
msgstr "Özel Facebook görseli"
|
181 |
|
182 |
-
#: includes/class-fcbkbttn-settings.php:
|
183 |
msgid "Featured Image"
|
184 |
msgstr ""
|
185 |
|
186 |
-
#: includes/class-fcbkbttn-settings.php:
|
187 |
#, fuzzy
|
188 |
msgid "Custom Image"
|
189 |
msgstr "Özel Facebook görseli"
|
190 |
|
191 |
-
#: includes/class-fcbkbttn-settings.php:
|
192 |
msgid "This image will be used for all posts"
|
193 |
msgstr ""
|
194 |
|
195 |
-
#: includes/class-fcbkbttn-settings.php:
|
196 |
msgid "Meta Description"
|
197 |
msgstr ""
|
198 |
|
199 |
-
#: includes/class-fcbkbttn-settings.php:
|
200 |
msgid ""
|
201 |
"This description will be used for all pages and posts. Leave blank to use "
|
202 |
"page description."
|
203 |
msgstr ""
|
204 |
|
205 |
-
#: includes/class-fcbkbttn-settings.php:
|
206 |
msgid "Profile URL Button"
|
207 |
msgstr ""
|
208 |
|
209 |
-
#: includes/class-fcbkbttn-settings.php:
|
210 |
#, fuzzy
|
211 |
msgid "Facebook ID or Username"
|
212 |
msgstr "Facebook ID'niz:"
|
213 |
|
214 |
-
#: includes/class-fcbkbttn-settings.php:
|
215 |
msgid "Profile Button Image"
|
216 |
msgstr ""
|
217 |
|
218 |
-
#: includes/class-fcbkbttn-settings.php:
|
219 |
msgid "Default"
|
220 |
msgstr ""
|
221 |
|
222 |
-
#: includes/class-fcbkbttn-settings.php:
|
223 |
#, fuzzy
|
224 |
msgid "Custom image"
|
225 |
msgstr "Özel Facebook görseli"
|
226 |
|
227 |
-
#: includes/class-fcbkbttn-settings.php:
|
228 |
#, fuzzy
|
229 |
msgid ""
|
230 |
"To use custom image, You need to setup permissions for upload directory of "
|
@@ -233,12 +245,12 @@ msgstr ""
|
|
233 |
"Özel görsel kullanmak için sitenizin dizinine yükleme yapılmasına izin "
|
234 |
"vermelisiniz."
|
235 |
|
236 |
-
#: includes/class-fcbkbttn-settings.php:
|
237 |
#, fuzzy
|
238 |
msgid "Current image"
|
239 |
msgstr "Şu anki görsel:"
|
240 |
|
241 |
-
#: includes/class-fcbkbttn-settings.php:
|
242 |
#, fuzzy
|
243 |
msgid ""
|
244 |
"Image requirements: max image width:100px; max image height:40px; max image "
|
@@ -248,89 +260,88 @@ msgstr ""
|
|
248 |
"yüksekliği: 40px; maksimum görsel boyutu: 32 KB; uzantılar: \"jpg\", \"jpeg"
|
249 |
"\", \"png\"."
|
250 |
|
251 |
-
#: includes/class-fcbkbttn-settings.php:
|
252 |
msgid "Like&Share Buttons"
|
253 |
msgstr ""
|
254 |
|
255 |
-
#: includes/class-fcbkbttn-settings.php:
|
256 |
msgid "Layout"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: includes/class-fcbkbttn-settings.php:
|
260 |
msgid "Like Button Action"
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: includes/class-fcbkbttn-settings.php:
|
264 |
msgid "Recommend"
|
265 |
msgstr ""
|
266 |
|
267 |
-
#: includes/class-fcbkbttn-settings.php:
|
268 |
msgid "Friends Faces"
|
269 |
msgstr ""
|
270 |
|
271 |
-
#: includes/class-fcbkbttn-settings.php:
|
272 |
msgid " Enable to show faces of your friends who submitted the button."
|
273 |
msgstr ""
|
274 |
|
275 |
-
#: includes/class-fcbkbttn-settings.php:
|
276 |
msgid "Layout Width"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: includes/class-fcbkbttn-settings.php:
|
280 |
msgid "px"
|
281 |
msgstr ""
|
282 |
|
283 |
-
#: includes/class-fcbkbttn-settings.php:
|
284 |
msgid "Theme"
|
285 |
msgstr ""
|
286 |
|
287 |
-
#: includes/class-fcbkbttn-settings.php:
|
288 |
msgid "Light"
|
289 |
msgstr ""
|
290 |
|
291 |
-
#: includes/class-fcbkbttn-settings.php:
|
292 |
msgid "Dark"
|
293 |
msgstr ""
|
294 |
|
295 |
-
#: includes/class-fcbkbttn-settings.php:
|
296 |
msgid "Like Button HTML Tag"
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: includes/class-fcbkbttn-settings.php:
|
300 |
#, php-format
|
301 |
msgid "Tag %s can be used to improve website code validation."
|
302 |
msgstr ""
|
303 |
|
304 |
-
#: includes/class-fcbkbttn-settings.php:
|
305 |
msgid "URL to Like"
|
306 |
msgstr ""
|
307 |
|
308 |
-
#: includes/class-fcbkbttn-settings.php:
|
309 |
msgid "Leave blank to use a current page."
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: includes/class-fcbkbttn-settings.php:
|
313 |
-
|
314 |
-
|
315 |
-
msgstr "Facebook Butonu pozisyonu"
|
316 |
|
317 |
-
#: includes/class-fcbkbttn-settings.php:
|
318 |
msgid ""
|
319 |
"Add Facebook button(-s) to your posts, pages, custom post types or widgets "
|
320 |
"by using the following shortcode:"
|
321 |
msgstr ""
|
322 |
|
323 |
-
#: includes/class-fcbkbttn-settings.php:
|
324 |
#, fuzzy
|
325 |
msgid "Facebook Buttons Preview"
|
326 |
msgstr "Facebook Butonu"
|
327 |
|
328 |
-
#: includes/class-fcbkbttn-settings.php:
|
329 |
#, fuzzy
|
330 |
msgid "Display Settings"
|
331 |
msgstr "Butonu Göster:"
|
332 |
|
333 |
-
#: includes/class-fcbkbttn-settings.php:
|
334 |
msgid ""
|
335 |
"Please choose the necessary post types (or single pages) where Facebook "
|
336 |
"button will be displayed:"
|
@@ -338,17 +349,26 @@ msgstr ""
|
|
338 |
"Lütfen Facebook butonunun gösterileceği yazı türlerini (ya da tek sayfaları) "
|
339 |
"seçin."
|
340 |
|
341 |
-
#: includes/class-fcbkbttn-settings.php:
|
342 |
msgid "Show URL for pages"
|
343 |
msgstr "Sayfalar için URL göster"
|
344 |
|
345 |
-
#: includes/class-fcbkbttn-settings.php:
|
346 |
-
msgid "Example of
|
347 |
-
msgstr "
|
348 |
|
349 |
-
|
350 |
-
|
351 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
352 |
|
353 |
#, fuzzy
|
354 |
#~ msgid "Facebook button Settings"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-07-10 12:19+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-07-10 12:19+0300\n"
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: Can Atasever <webmaster@canatasever.com>\n"
|
9 |
"Language: tr\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
#: facebook-button-plugin.php:35 facebook-button-plugin.php:36
|
21 |
+
#: facebook-button-plugin.php:176 includes/class-fcbkbttn-settings.php:181
|
22 |
msgid "Facebook Button Settings"
|
23 |
msgstr "Facebook Buton Ayarları"
|
24 |
|
25 |
+
#: facebook-button-plugin.php:36 facebook-button-plugin.php:382
|
26 |
+
#: facebook-button-plugin.php:396 includes/class-fcbkbttn-settings.php:23
|
27 |
msgid "Settings"
|
28 |
msgstr "Ayarlar"
|
29 |
|
31 |
msgid "Upgrade to Pro"
|
32 |
msgstr ""
|
33 |
|
34 |
+
#: facebook-button-plugin.php:177
|
35 |
msgid "Please, enable JavaScript in Your browser."
|
36 |
msgstr ""
|
37 |
|
38 |
+
#: facebook-button-plugin.php:275
|
39 |
#, fuzzy
|
40 |
msgid "Add Facebook buttons to your page or post"
|
41 |
msgstr "Facebook Butonu pozisyonu"
|
42 |
|
43 |
+
#: facebook-button-plugin.php:397
|
44 |
msgid "FAQ"
|
45 |
msgstr "SSS"
|
46 |
|
47 |
+
#: facebook-button-plugin.php:398
|
48 |
msgid "Support"
|
49 |
msgstr "Destek"
|
50 |
|
67 |
msgid "License Key"
|
68 |
msgstr "Hatalı lisans anahtarı"
|
69 |
|
70 |
+
#: includes/class-fcbkbttn-settings.php:107
|
71 |
msgid "Settings saved"
|
72 |
msgstr "Ayarlar kaydedildi"
|
73 |
|
74 |
+
#: includes/class-fcbkbttn-settings.php:136
|
75 |
+
msgid "Error: File size must not exceed 32KB"
|
76 |
+
msgstr ""
|
77 |
|
78 |
+
#: includes/class-fcbkbttn-settings.php:139
|
79 |
msgid "Error: Invalid file type"
|
80 |
msgstr "HATA: Geçersiz dosya türü"
|
81 |
|
82 |
+
#: includes/class-fcbkbttn-settings.php:145
|
83 |
msgid "Upload successful."
|
84 |
msgstr "Yükleme başarılı"
|
85 |
|
86 |
+
#: includes/class-fcbkbttn-settings.php:153
|
87 |
#, fuzzy
|
88 |
msgid "Error: failed to move file."
|
89 |
msgstr "HATA: dosya taşıma başarısız."
|
90 |
|
91 |
+
#: includes/class-fcbkbttn-settings.php:156
|
92 |
#, fuzzy
|
93 |
msgid "Error: check image width or height."
|
94 |
msgstr "HATA: görselin genişliğini ya da yüksekliğini kontrol edin."
|
95 |
|
96 |
+
#: includes/class-fcbkbttn-settings.php:160
|
97 |
msgid "Uploading Error: check image properties"
|
98 |
msgstr "Yükleme Hatası: görselin özelliklerini kontrol edin."
|
99 |
|
100 |
+
#: includes/class-fcbkbttn-settings.php:184
|
101 |
msgid "General"
|
102 |
msgstr ""
|
103 |
|
104 |
+
#: includes/class-fcbkbttn-settings.php:187
|
105 |
#, fuzzy
|
106 |
msgid "Buttons"
|
107 |
msgstr "Facebook Butonu pozisyonu"
|
108 |
|
109 |
+
#: includes/class-fcbkbttn-settings.php:190
|
110 |
msgid "Profile URL"
|
111 |
msgstr ""
|
112 |
|
113 |
+
#: includes/class-fcbkbttn-settings.php:191
|
114 |
+
#: includes/class-fcbkbttn-settings.php:386
|
115 |
msgid "Like"
|
116 |
msgstr "Beğen"
|
117 |
|
118 |
+
#: includes/class-fcbkbttn-settings.php:192
|
119 |
msgid "Share"
|
120 |
msgstr "Paylaş"
|
121 |
|
122 |
+
#: includes/class-fcbkbttn-settings.php:197
|
123 |
+
msgid "Buttons Size"
|
124 |
+
msgstr ""
|
125 |
+
|
126 |
+
#: includes/class-fcbkbttn-settings.php:200
|
127 |
+
msgid "Small"
|
128 |
+
msgstr ""
|
129 |
+
|
130 |
+
#: includes/class-fcbkbttn-settings.php:201
|
131 |
+
msgid "Large"
|
132 |
+
msgstr ""
|
133 |
+
|
134 |
+
#: includes/class-fcbkbttn-settings.php:206
|
135 |
#, fuzzy
|
136 |
msgid "Buttons Position"
|
137 |
msgstr "Facebook Butonu pozisyonu"
|
138 |
|
139 |
+
#: includes/class-fcbkbttn-settings.php:211
|
140 |
#, fuzzy
|
141 |
msgid "Before content"
|
142 |
msgstr "Önce ve Sonra"
|
143 |
|
144 |
+
#: includes/class-fcbkbttn-settings.php:216
|
145 |
msgid "After content"
|
146 |
msgstr ""
|
147 |
|
148 |
+
#: includes/class-fcbkbttn-settings.php:222
|
149 |
msgid "Language"
|
150 |
msgstr ""
|
151 |
|
152 |
+
#: includes/class-fcbkbttn-settings.php:233
|
153 |
#, fuzzy
|
154 |
msgid "Select the default language for Facebook button(-s)."
|
155 |
msgstr "Facebook Beğen butonunun dilini değiştirin"
|
156 |
|
157 |
+
#: includes/class-fcbkbttn-settings.php:242
|
158 |
+
#: includes/class-fcbkbttn-settings.php:245
|
159 |
+
#: includes/class-fcbkbttn-settings.php:249
|
160 |
msgid ""
|
161 |
"Enable to switch language automatically on multilingual website using "
|
162 |
"Multilanguage plugin."
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: includes/class-fcbkbttn-settings.php:245
|
166 |
#, php-format
|
167 |
msgid "Activate %s"
|
168 |
msgstr ""
|
169 |
|
170 |
+
#: includes/class-fcbkbttn-settings.php:249
|
171 |
msgid "Learn More"
|
172 |
msgstr "Detaylı Bilgi"
|
173 |
|
174 |
+
#: includes/class-fcbkbttn-settings.php:254
|
175 |
msgid "Excerpt"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: includes/class-fcbkbttn-settings.php:256
|
179 |
#, fuzzy
|
180 |
msgid "Enable to display buttons in excerpt."
|
181 |
msgstr "Butonu Göster:"
|
182 |
|
183 |
+
#: includes/class-fcbkbttn-settings.php:265
|
184 |
+
#: includes/class-fcbkbttn-settings.php:441
|
185 |
+
#: includes/class-fcbkbttn-settings.php:496
|
186 |
msgid "Close"
|
187 |
msgstr ""
|
188 |
|
189 |
+
#: includes/class-fcbkbttn-settings.php:269
|
190 |
#, fuzzy
|
191 |
msgid "Meta Image"
|
192 |
msgstr "Özel Facebook görseli"
|
193 |
|
194 |
+
#: includes/class-fcbkbttn-settings.php:274
|
195 |
msgid "Featured Image"
|
196 |
msgstr ""
|
197 |
|
198 |
+
#: includes/class-fcbkbttn-settings.php:278
|
199 |
#, fuzzy
|
200 |
msgid "Custom Image"
|
201 |
msgstr "Özel Facebook görseli"
|
202 |
|
203 |
+
#: includes/class-fcbkbttn-settings.php:278
|
204 |
msgid "This image will be used for all posts"
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: includes/class-fcbkbttn-settings.php:285
|
208 |
msgid "Meta Description"
|
209 |
msgstr ""
|
210 |
|
211 |
+
#: includes/class-fcbkbttn-settings.php:289
|
212 |
msgid ""
|
213 |
"This description will be used for all pages and posts. Leave blank to use "
|
214 |
"page description."
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: includes/class-fcbkbttn-settings.php:298
|
218 |
msgid "Profile URL Button"
|
219 |
msgstr ""
|
220 |
|
221 |
+
#: includes/class-fcbkbttn-settings.php:301
|
222 |
#, fuzzy
|
223 |
msgid "Facebook ID or Username"
|
224 |
msgstr "Facebook ID'niz:"
|
225 |
|
226 |
+
#: includes/class-fcbkbttn-settings.php:308
|
227 |
msgid "Profile Button Image"
|
228 |
msgstr ""
|
229 |
|
230 |
+
#: includes/class-fcbkbttn-settings.php:315
|
231 |
msgid "Default"
|
232 |
msgstr ""
|
233 |
|
234 |
+
#: includes/class-fcbkbttn-settings.php:320
|
235 |
#, fuzzy
|
236 |
msgid "Custom image"
|
237 |
msgstr "Özel Facebook görseli"
|
238 |
|
239 |
+
#: includes/class-fcbkbttn-settings.php:324
|
240 |
#, fuzzy
|
241 |
msgid ""
|
242 |
"To use custom image, You need to setup permissions for upload directory of "
|
245 |
"Özel görsel kullanmak için sitenizin dizinine yükleme yapılmasına izin "
|
246 |
"vermelisiniz."
|
247 |
|
248 |
+
#: includes/class-fcbkbttn-settings.php:331
|
249 |
#, fuzzy
|
250 |
msgid "Current image"
|
251 |
msgstr "Şu anki görsel:"
|
252 |
|
253 |
+
#: includes/class-fcbkbttn-settings.php:339
|
254 |
#, fuzzy
|
255 |
msgid ""
|
256 |
"Image requirements: max image width:100px; max image height:40px; max image "
|
260 |
"yüksekliği: 40px; maksimum görsel boyutu: 32 KB; uzantılar: \"jpg\", \"jpeg"
|
261 |
"\", \"png\"."
|
262 |
|
263 |
+
#: includes/class-fcbkbttn-settings.php:343
|
264 |
msgid "Like&Share Buttons"
|
265 |
msgstr ""
|
266 |
|
267 |
+
#: includes/class-fcbkbttn-settings.php:346
|
268 |
msgid "Layout"
|
269 |
msgstr ""
|
270 |
|
271 |
+
#: includes/class-fcbkbttn-settings.php:381
|
272 |
msgid "Like Button Action"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: includes/class-fcbkbttn-settings.php:391
|
276 |
msgid "Recommend"
|
277 |
msgstr ""
|
278 |
|
279 |
+
#: includes/class-fcbkbttn-settings.php:397
|
280 |
msgid "Friends Faces"
|
281 |
msgstr ""
|
282 |
|
283 |
+
#: includes/class-fcbkbttn-settings.php:400
|
284 |
msgid " Enable to show faces of your friends who submitted the button."
|
285 |
msgstr ""
|
286 |
|
287 |
+
#: includes/class-fcbkbttn-settings.php:404
|
288 |
msgid "Layout Width"
|
289 |
msgstr ""
|
290 |
|
291 |
+
#: includes/class-fcbkbttn-settings.php:406
|
292 |
msgid "px"
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: includes/class-fcbkbttn-settings.php:410
|
296 |
msgid "Theme"
|
297 |
msgstr ""
|
298 |
|
299 |
+
#: includes/class-fcbkbttn-settings.php:415
|
300 |
msgid "Light"
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: includes/class-fcbkbttn-settings.php:420
|
304 |
msgid "Dark"
|
305 |
msgstr ""
|
306 |
|
307 |
+
#: includes/class-fcbkbttn-settings.php:426
|
308 |
msgid "Like Button HTML Tag"
|
309 |
msgstr ""
|
310 |
|
311 |
+
#: includes/class-fcbkbttn-settings.php:432
|
312 |
#, php-format
|
313 |
msgid "Tag %s can be used to improve website code validation."
|
314 |
msgstr ""
|
315 |
|
316 |
+
#: includes/class-fcbkbttn-settings.php:445
|
317 |
msgid "URL to Like"
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: includes/class-fcbkbttn-settings.php:447
|
321 |
msgid "Leave blank to use a current page."
|
322 |
msgstr ""
|
323 |
|
324 |
+
#: includes/class-fcbkbttn-settings.php:475
|
325 |
+
msgid "Facebook Buttons Shortcode"
|
326 |
+
msgstr ""
|
|
|
327 |
|
328 |
+
#: includes/class-fcbkbttn-settings.php:478
|
329 |
msgid ""
|
330 |
"Add Facebook button(-s) to your posts, pages, custom post types or widgets "
|
331 |
"by using the following shortcode:"
|
332 |
msgstr ""
|
333 |
|
334 |
+
#: includes/class-fcbkbttn-settings.php:497
|
335 |
#, fuzzy
|
336 |
msgid "Facebook Buttons Preview"
|
337 |
msgstr "Facebook Butonu"
|
338 |
|
339 |
+
#: includes/class-fcbkbttn-settings.php:512
|
340 |
#, fuzzy
|
341 |
msgid "Display Settings"
|
342 |
msgstr "Butonu Göster:"
|
343 |
|
344 |
+
#: includes/class-fcbkbttn-settings.php:521
|
345 |
msgid ""
|
346 |
"Please choose the necessary post types (or single pages) where Facebook "
|
347 |
"button will be displayed:"
|
349 |
"Lütfen Facebook butonunun gösterileceği yazı türlerini (ya da tek sayfaları) "
|
350 |
"seçin."
|
351 |
|
352 |
+
#: includes/class-fcbkbttn-settings.php:528
|
353 |
msgid "Show URL for pages"
|
354 |
msgstr "Sayfalar için URL göster"
|
355 |
|
356 |
+
#: includes/class-fcbkbttn-settings.php:534
|
357 |
+
msgid "Example of site pages tree"
|
358 |
+
msgstr ""
|
359 |
|
360 |
+
#~ msgid "Error: File size > 32K"
|
361 |
+
#~ msgstr "HATA: Dosya boyutu > 32K"
|
362 |
+
|
363 |
+
#~ msgid "Example of the site's pages tree"
|
364 |
+
#~ msgstr "Sitenin sayfalar izi için örnek"
|
365 |
+
|
366 |
+
#~ msgid "Example of site pages' tree"
|
367 |
+
#~ msgstr "Site sayfaları izi için örnek"
|
368 |
+
|
369 |
+
#, fuzzy
|
370 |
+
#~ msgid "Facebook Buttons Shortchode"
|
371 |
+
#~ msgstr "Facebook Butonu pozisyonu"
|
372 |
|
373 |
#, fuzzy
|
374 |
#~ msgid "Facebook button Settings"
|
languages/facebook-button-plugin-uk.mo
CHANGED
Binary file
|
languages/facebook-button-plugin-uk.po
CHANGED
@@ -2,11 +2,11 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
-
"Language:
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
@@ -14,35 +14,37 @@ msgstr ""
|
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Generator: Poedit 1.8.7.1\n"
|
|
|
|
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
#: facebook-button-plugin.php:35 facebook-button-plugin.php:36
|
20 |
-
#: facebook-button-plugin.php:
|
21 |
msgid "Facebook Button Settings"
|
22 |
-
msgstr "
|
23 |
|
24 |
-
#: facebook-button-plugin.php:36 facebook-button-plugin.php:
|
25 |
-
#: facebook-button-plugin.php:
|
26 |
msgid "Settings"
|
27 |
-
msgstr "
|
28 |
|
29 |
#: facebook-button-plugin.php:42
|
30 |
msgid "Upgrade to Pro"
|
31 |
msgstr "Оновитися до Pro"
|
32 |
|
33 |
-
#: facebook-button-plugin.php:
|
34 |
msgid "Please, enable JavaScript in Your browser."
|
35 |
msgstr "Будь ласка, активуйте JavaScript у Вашому браузері."
|
36 |
|
37 |
-
#: facebook-button-plugin.php:
|
38 |
msgid "Add Facebook buttons to your page or post"
|
39 |
msgstr "Додати кнопки Facebook на вашу сторінку або запис"
|
40 |
|
41 |
-
#: facebook-button-plugin.php:
|
42 |
msgid "FAQ"
|
43 |
msgstr "FAQ"
|
44 |
|
45 |
-
#: facebook-button-plugin.php:
|
46 |
msgid "Support"
|
47 |
msgstr "Підтримка"
|
48 |
|
@@ -62,78 +64,90 @@ msgstr "Користувацький код"
|
|
62 |
msgid "License Key"
|
63 |
msgstr "Ліцензійний ключ"
|
64 |
|
65 |
-
#: includes/class-fcbkbttn-settings.php:
|
66 |
msgid "Settings saved"
|
67 |
-
msgstr "
|
68 |
|
69 |
-
#: includes/class-fcbkbttn-settings.php:
|
70 |
-
msgid "Error: File size
|
71 |
-
msgstr "Помилка:
|
72 |
|
73 |
-
#: includes/class-fcbkbttn-settings.php:
|
74 |
msgid "Error: Invalid file type"
|
75 |
msgstr "Помилка: Невірний тип файлу"
|
76 |
|
77 |
-
#: includes/class-fcbkbttn-settings.php:
|
78 |
msgid "Upload successful."
|
79 |
msgstr "Файл був завантажений успішно"
|
80 |
|
81 |
-
#: includes/class-fcbkbttn-settings.php:
|
82 |
msgid "Error: failed to move file."
|
83 |
msgstr "Помилка: не вдалося переміщення файлу."
|
84 |
|
85 |
-
#: includes/class-fcbkbttn-settings.php:
|
86 |
msgid "Error: check image width or height."
|
87 |
msgstr "Помилка: Перевірте ширину або висоту зображення."
|
88 |
|
89 |
-
#: includes/class-fcbkbttn-settings.php:
|
90 |
msgid "Uploading Error: check image properties"
|
91 |
msgstr "Помилка Завантаження: Перевірте властивості зображення"
|
92 |
|
93 |
-
#: includes/class-fcbkbttn-settings.php:
|
94 |
msgid "General"
|
95 |
msgstr "Загальне"
|
96 |
|
97 |
-
#: includes/class-fcbkbttn-settings.php:
|
98 |
msgid "Buttons"
|
99 |
msgstr "Кнопки"
|
100 |
|
101 |
-
#: includes/class-fcbkbttn-settings.php:
|
102 |
msgid "Profile URL"
|
103 |
msgstr "URL профілю"
|
104 |
|
105 |
-
#: includes/class-fcbkbttn-settings.php:
|
106 |
-
#: includes/class-fcbkbttn-settings.php:
|
107 |
msgid "Like"
|
108 |
msgstr "Подобається"
|
109 |
|
110 |
-
#: includes/class-fcbkbttn-settings.php:
|
111 |
msgid "Share"
|
112 |
msgstr "Поширити"
|
113 |
|
114 |
-
#: includes/class-fcbkbttn-settings.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
115 |
msgid "Buttons Position"
|
116 |
msgstr "Розташування кнопок"
|
117 |
|
118 |
-
#: includes/class-fcbkbttn-settings.php:
|
119 |
msgid "Before content"
|
120 |
msgstr "Перед вмістом"
|
121 |
|
122 |
-
#: includes/class-fcbkbttn-settings.php:
|
123 |
msgid "After content"
|
124 |
msgstr "Після вмісту"
|
125 |
|
126 |
-
#: includes/class-fcbkbttn-settings.php:
|
127 |
msgid "Language"
|
128 |
msgstr "Мова"
|
129 |
|
130 |
-
#: includes/class-fcbkbttn-settings.php:
|
131 |
msgid "Select the default language for Facebook button(-s)."
|
132 |
msgstr "Оберіть мову за замовчуванням для кнопок Facebook."
|
133 |
|
134 |
-
#: includes/class-fcbkbttn-settings.php:
|
135 |
-
#: includes/class-fcbkbttn-settings.php:
|
136 |
-
#: includes/class-fcbkbttn-settings.php:
|
137 |
msgid ""
|
138 |
"Enable to switch language automatically on multilingual website using "
|
139 |
"Multilanguage plugin."
|
@@ -141,50 +155,50 @@ msgstr ""
|
|
141 |
"Включити, щоб перемкнути мову автоматично на багатомовному сайті, "
|
142 |
"використовуючи Multilanguage плагін."
|
143 |
|
144 |
-
#: includes/class-fcbkbttn-settings.php:
|
145 |
#, php-format
|
146 |
msgid "Activate %s"
|
147 |
msgstr "Активувати %s"
|
148 |
|
149 |
-
#: includes/class-fcbkbttn-settings.php:
|
150 |
msgid "Learn More"
|
151 |
msgstr "Докладніше"
|
152 |
|
153 |
-
#: includes/class-fcbkbttn-settings.php:
|
154 |
msgid "Excerpt"
|
155 |
msgstr "Уривок"
|
156 |
|
157 |
-
#: includes/class-fcbkbttn-settings.php:
|
158 |
msgid "Enable to display buttons in excerpt."
|
159 |
msgstr "Ввімкнути для відображення кнопок в уривку."
|
160 |
|
161 |
-
#: includes/class-fcbkbttn-settings.php:
|
162 |
-
#: includes/class-fcbkbttn-settings.php:
|
163 |
-
#: includes/class-fcbkbttn-settings.php:
|
164 |
msgid "Close"
|
165 |
msgstr "Закрити"
|
166 |
|
167 |
-
#: includes/class-fcbkbttn-settings.php:
|
168 |
msgid "Meta Image"
|
169 |
msgstr "Мета зображення"
|
170 |
|
171 |
-
#: includes/class-fcbkbttn-settings.php:
|
172 |
msgid "Featured Image"
|
173 |
msgstr "Головне зображення"
|
174 |
|
175 |
-
#: includes/class-fcbkbttn-settings.php:
|
176 |
msgid "Custom Image"
|
177 |
msgstr "Користувацьке зображення"
|
178 |
|
179 |
-
#: includes/class-fcbkbttn-settings.php:
|
180 |
msgid "This image will be used for all posts"
|
181 |
msgstr "Це зображення буде використовуватися для всiх записiв"
|
182 |
|
183 |
-
#: includes/class-fcbkbttn-settings.php:
|
184 |
msgid "Meta Description"
|
185 |
msgstr "Мета опис"
|
186 |
|
187 |
-
#: includes/class-fcbkbttn-settings.php:
|
188 |
msgid ""
|
189 |
"This description will be used for all pages and posts. Leave blank to use "
|
190 |
"page description."
|
@@ -192,27 +206,27 @@ msgstr ""
|
|
192 |
"Цей опис буде використовуватися для всіх записів і сторінок. Залиште "
|
193 |
"порожнім, щоб використовувати опис сторінки."
|
194 |
|
195 |
-
#: includes/class-fcbkbttn-settings.php:
|
196 |
msgid "Profile URL Button"
|
197 |
msgstr "Кнопка URL профілю"
|
198 |
|
199 |
-
#: includes/class-fcbkbttn-settings.php:
|
200 |
msgid "Facebook ID or Username"
|
201 |
msgstr "Facebook ID або Ім'я користувача"
|
202 |
|
203 |
-
#: includes/class-fcbkbttn-settings.php:
|
204 |
msgid "Profile Button Image"
|
205 |
msgstr "Зображення кнопки профілю"
|
206 |
|
207 |
-
#: includes/class-fcbkbttn-settings.php:
|
208 |
msgid "Default"
|
209 |
msgstr "За замовчуванням"
|
210 |
|
211 |
-
#: includes/class-fcbkbttn-settings.php:
|
212 |
msgid "Custom image"
|
213 |
msgstr "Користувацьке зображення"
|
214 |
|
215 |
-
#: includes/class-fcbkbttn-settings.php:
|
216 |
msgid ""
|
217 |
"To use custom image, You need to setup permissions for upload directory of "
|
218 |
"your site"
|
@@ -220,11 +234,11 @@ msgstr ""
|
|
220 |
"Для використання користувацького зображення Вам необхідно видати права "
|
221 |
"доступу на папку завантажень на вашому сайті"
|
222 |
|
223 |
-
#: includes/class-fcbkbttn-settings.php:
|
224 |
msgid "Current image"
|
225 |
msgstr "Поточне зображення"
|
226 |
|
227 |
-
#: includes/class-fcbkbttn-settings.php:
|
228 |
msgid ""
|
229 |
"Image requirements: max image width:100px; max image height:40px; max image "
|
230 |
"size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
@@ -233,72 +247,72 @@ msgstr ""
|
|
233 |
"висота зображення: 40px; максимальний розмір зображення: 32Kb; типи "
|
234 |
"зображеннь :\"jpg\", \"jpeg\", \"png\"."
|
235 |
|
236 |
-
#: includes/class-fcbkbttn-settings.php:
|
237 |
msgid "Like&Share Buttons"
|
238 |
msgstr "Кнопки \"Подобається\" та \"Поширити\""
|
239 |
|
240 |
-
#: includes/class-fcbkbttn-settings.php:
|
241 |
msgid "Layout"
|
242 |
msgstr "Вид"
|
243 |
|
244 |
-
#: includes/class-fcbkbttn-settings.php:
|
245 |
msgid "Like Button Action"
|
246 |
msgstr "Дія кнопки \"Подобається\""
|
247 |
|
248 |
-
#: includes/class-fcbkbttn-settings.php:
|
249 |
msgid "Recommend"
|
250 |
msgstr "Рекомендую"
|
251 |
|
252 |
-
#: includes/class-fcbkbttn-settings.php:
|
253 |
msgid "Friends Faces"
|
254 |
msgstr "Обличчя друзів"
|
255 |
|
256 |
-
#: includes/class-fcbkbttn-settings.php:
|
257 |
msgid " Enable to show faces of your friends who submitted the button."
|
258 |
msgstr "Включити, щоб показати обличчя своїх друзів, які натиснули кнопку."
|
259 |
|
260 |
-
#: includes/class-fcbkbttn-settings.php:
|
261 |
msgid "Layout Width"
|
262 |
msgstr "Ширина блоку"
|
263 |
|
264 |
-
#: includes/class-fcbkbttn-settings.php:
|
265 |
msgid "px"
|
266 |
msgstr "пікс"
|
267 |
|
268 |
-
#: includes/class-fcbkbttn-settings.php:
|
269 |
msgid "Theme"
|
270 |
msgstr "Тема"
|
271 |
|
272 |
-
#: includes/class-fcbkbttn-settings.php:
|
273 |
msgid "Light"
|
274 |
msgstr "Світла"
|
275 |
|
276 |
-
#: includes/class-fcbkbttn-settings.php:
|
277 |
msgid "Dark"
|
278 |
msgstr "Темна"
|
279 |
|
280 |
-
#: includes/class-fcbkbttn-settings.php:
|
281 |
msgid "Like Button HTML Tag"
|
282 |
msgstr "HTML тег кнопки \"Подобається\""
|
283 |
|
284 |
-
#: includes/class-fcbkbttn-settings.php:
|
285 |
#, php-format
|
286 |
msgid "Tag %s can be used to improve website code validation."
|
287 |
msgstr "Тег %s може бути використаний для поліпшення валідації коду сайту."
|
288 |
|
289 |
-
#: includes/class-fcbkbttn-settings.php:
|
290 |
msgid "URL to Like"
|
291 |
msgstr "URL кнопки \"Подобається\""
|
292 |
|
293 |
-
#: includes/class-fcbkbttn-settings.php:
|
294 |
msgid "Leave blank to use a current page."
|
295 |
msgstr "Залиште порожнім, щоб використовувати поточну сторінку."
|
296 |
|
297 |
-
#: includes/class-fcbkbttn-settings.php:
|
298 |
-
msgid "Facebook Buttons
|
299 |
-
msgstr "Шорткод Facebook
|
300 |
|
301 |
-
#: includes/class-fcbkbttn-settings.php:
|
302 |
msgid ""
|
303 |
"Add Facebook button(-s) to your posts, pages, custom post types or widgets "
|
304 |
"by using the following shortcode:"
|
@@ -306,15 +320,15 @@ msgstr ""
|
|
306 |
"Додати кнопки Facebook на ваші записи, сторінки, користувацькі типи записів "
|
307 |
"або віджети за допомогою даного шорткода:"
|
308 |
|
309 |
-
#: includes/class-fcbkbttn-settings.php:
|
310 |
msgid "Facebook Buttons Preview"
|
311 |
msgstr "Попередній перегляд Facebook кнопок"
|
312 |
|
313 |
-
#: includes/class-fcbkbttn-settings.php:
|
314 |
msgid "Display Settings"
|
315 |
msgstr "Налаштування відображення"
|
316 |
|
317 |
-
#: includes/class-fcbkbttn-settings.php:
|
318 |
msgid ""
|
319 |
"Please choose the necessary post types (or single pages) where Facebook "
|
320 |
"button will be displayed:"
|
@@ -322,17 +336,25 @@ msgstr ""
|
|
322 |
"Будь ласка, оберіть необхідні типи записів (чи сторінок), де буде "
|
323 |
"відображатися кнопка Facebook"
|
324 |
|
325 |
-
#: includes/class-fcbkbttn-settings.php:
|
326 |
msgid "Show URL for pages"
|
327 |
msgstr "Відображати URL сторінок"
|
328 |
|
329 |
-
#: includes/class-fcbkbttn-settings.php:
|
330 |
-
msgid "Example of
|
331 |
msgstr "Приклад дерева сторінок сайту"
|
332 |
|
333 |
-
|
334 |
-
|
335 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
336 |
|
337 |
#~ msgid "Facebook button Settings"
|
338 |
#~ msgstr "Установки кнопок Facebook"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: facebook-button-plugin\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-07-10 12:20+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-07-20 13:00+0300\n"
|
7 |
"Last-Translator: plugin@bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
8 |
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
9 |
+
"Language: uk\n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Generator: Poedit 1.8.7.1\n"
|
17 |
+
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
18 |
+
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
#: facebook-button-plugin.php:35 facebook-button-plugin.php:36
|
22 |
+
#: facebook-button-plugin.php:176 includes/class-fcbkbttn-settings.php:181
|
23 |
msgid "Facebook Button Settings"
|
24 |
+
msgstr "Налаштування Facebook Button"
|
25 |
|
26 |
+
#: facebook-button-plugin.php:36 facebook-button-plugin.php:382
|
27 |
+
#: facebook-button-plugin.php:396 includes/class-fcbkbttn-settings.php:23
|
28 |
msgid "Settings"
|
29 |
+
msgstr "Налаштування"
|
30 |
|
31 |
#: facebook-button-plugin.php:42
|
32 |
msgid "Upgrade to Pro"
|
33 |
msgstr "Оновитися до Pro"
|
34 |
|
35 |
+
#: facebook-button-plugin.php:177
|
36 |
msgid "Please, enable JavaScript in Your browser."
|
37 |
msgstr "Будь ласка, активуйте JavaScript у Вашому браузері."
|
38 |
|
39 |
+
#: facebook-button-plugin.php:275
|
40 |
msgid "Add Facebook buttons to your page or post"
|
41 |
msgstr "Додати кнопки Facebook на вашу сторінку або запис"
|
42 |
|
43 |
+
#: facebook-button-plugin.php:397
|
44 |
msgid "FAQ"
|
45 |
msgstr "FAQ"
|
46 |
|
47 |
+
#: facebook-button-plugin.php:398
|
48 |
msgid "Support"
|
49 |
msgstr "Підтримка"
|
50 |
|
64 |
msgid "License Key"
|
65 |
msgstr "Ліцензійний ключ"
|
66 |
|
67 |
+
#: includes/class-fcbkbttn-settings.php:107
|
68 |
msgid "Settings saved"
|
69 |
+
msgstr "Налаштування збережені"
|
70 |
|
71 |
+
#: includes/class-fcbkbttn-settings.php:136
|
72 |
+
msgid "Error: File size must not exceed 32KB"
|
73 |
+
msgstr "Помилка: Розмiр файлу не повинен перевищувати 32КБ"
|
74 |
|
75 |
+
#: includes/class-fcbkbttn-settings.php:139
|
76 |
msgid "Error: Invalid file type"
|
77 |
msgstr "Помилка: Невірний тип файлу"
|
78 |
|
79 |
+
#: includes/class-fcbkbttn-settings.php:145
|
80 |
msgid "Upload successful."
|
81 |
msgstr "Файл був завантажений успішно"
|
82 |
|
83 |
+
#: includes/class-fcbkbttn-settings.php:153
|
84 |
msgid "Error: failed to move file."
|
85 |
msgstr "Помилка: не вдалося переміщення файлу."
|
86 |
|
87 |
+
#: includes/class-fcbkbttn-settings.php:156
|
88 |
msgid "Error: check image width or height."
|
89 |
msgstr "Помилка: Перевірте ширину або висоту зображення."
|
90 |
|
91 |
+
#: includes/class-fcbkbttn-settings.php:160
|
92 |
msgid "Uploading Error: check image properties"
|
93 |
msgstr "Помилка Завантаження: Перевірте властивості зображення"
|
94 |
|
95 |
+
#: includes/class-fcbkbttn-settings.php:184
|
96 |
msgid "General"
|
97 |
msgstr "Загальне"
|
98 |
|
99 |
+
#: includes/class-fcbkbttn-settings.php:187
|
100 |
msgid "Buttons"
|
101 |
msgstr "Кнопки"
|
102 |
|
103 |
+
#: includes/class-fcbkbttn-settings.php:190
|
104 |
msgid "Profile URL"
|
105 |
msgstr "URL профілю"
|
106 |
|
107 |
+
#: includes/class-fcbkbttn-settings.php:191
|
108 |
+
#: includes/class-fcbkbttn-settings.php:386
|
109 |
msgid "Like"
|
110 |
msgstr "Подобається"
|
111 |
|
112 |
+
#: includes/class-fcbkbttn-settings.php:192
|
113 |
msgid "Share"
|
114 |
msgstr "Поширити"
|
115 |
|
116 |
+
#: includes/class-fcbkbttn-settings.php:197
|
117 |
+
msgid "Buttons Size"
|
118 |
+
msgstr "Розмiр кнопок"
|
119 |
+
|
120 |
+
#: includes/class-fcbkbttn-settings.php:200
|
121 |
+
msgid "Small"
|
122 |
+
msgstr "Великi"
|
123 |
+
|
124 |
+
#: includes/class-fcbkbttn-settings.php:201
|
125 |
+
msgid "Large"
|
126 |
+
msgstr "Малi"
|
127 |
+
|
128 |
+
#: includes/class-fcbkbttn-settings.php:206
|
129 |
msgid "Buttons Position"
|
130 |
msgstr "Розташування кнопок"
|
131 |
|
132 |
+
#: includes/class-fcbkbttn-settings.php:211
|
133 |
msgid "Before content"
|
134 |
msgstr "Перед вмістом"
|
135 |
|
136 |
+
#: includes/class-fcbkbttn-settings.php:216
|
137 |
msgid "After content"
|
138 |
msgstr "Після вмісту"
|
139 |
|
140 |
+
#: includes/class-fcbkbttn-settings.php:222
|
141 |
msgid "Language"
|
142 |
msgstr "Мова"
|
143 |
|
144 |
+
#: includes/class-fcbkbttn-settings.php:233
|
145 |
msgid "Select the default language for Facebook button(-s)."
|
146 |
msgstr "Оберіть мову за замовчуванням для кнопок Facebook."
|
147 |
|
148 |
+
#: includes/class-fcbkbttn-settings.php:242
|
149 |
+
#: includes/class-fcbkbttn-settings.php:245
|
150 |
+
#: includes/class-fcbkbttn-settings.php:249
|
151 |
msgid ""
|
152 |
"Enable to switch language automatically on multilingual website using "
|
153 |
"Multilanguage plugin."
|
155 |
"Включити, щоб перемкнути мову автоматично на багатомовному сайті, "
|
156 |
"використовуючи Multilanguage плагін."
|
157 |
|
158 |
+
#: includes/class-fcbkbttn-settings.php:245
|
159 |
#, php-format
|
160 |
msgid "Activate %s"
|
161 |
msgstr "Активувати %s"
|
162 |
|
163 |
+
#: includes/class-fcbkbttn-settings.php:249
|
164 |
msgid "Learn More"
|
165 |
msgstr "Докладніше"
|
166 |
|
167 |
+
#: includes/class-fcbkbttn-settings.php:254
|
168 |
msgid "Excerpt"
|
169 |
msgstr "Уривок"
|
170 |
|
171 |
+
#: includes/class-fcbkbttn-settings.php:256
|
172 |
msgid "Enable to display buttons in excerpt."
|
173 |
msgstr "Ввімкнути для відображення кнопок в уривку."
|
174 |
|
175 |
+
#: includes/class-fcbkbttn-settings.php:265
|
176 |
+
#: includes/class-fcbkbttn-settings.php:441
|
177 |
+
#: includes/class-fcbkbttn-settings.php:496
|
178 |
msgid "Close"
|
179 |
msgstr "Закрити"
|
180 |
|
181 |
+
#: includes/class-fcbkbttn-settings.php:269
|
182 |
msgid "Meta Image"
|
183 |
msgstr "Мета зображення"
|
184 |
|
185 |
+
#: includes/class-fcbkbttn-settings.php:274
|
186 |
msgid "Featured Image"
|
187 |
msgstr "Головне зображення"
|
188 |
|
189 |
+
#: includes/class-fcbkbttn-settings.php:278
|
190 |
msgid "Custom Image"
|
191 |
msgstr "Користувацьке зображення"
|
192 |
|
193 |
+
#: includes/class-fcbkbttn-settings.php:278
|
194 |
msgid "This image will be used for all posts"
|
195 |
msgstr "Це зображення буде використовуватися для всiх записiв"
|
196 |
|
197 |
+
#: includes/class-fcbkbttn-settings.php:285
|
198 |
msgid "Meta Description"
|
199 |
msgstr "Мета опис"
|
200 |
|
201 |
+
#: includes/class-fcbkbttn-settings.php:289
|
202 |
msgid ""
|
203 |
"This description will be used for all pages and posts. Leave blank to use "
|
204 |
"page description."
|
206 |
"Цей опис буде використовуватися для всіх записів і сторінок. Залиште "
|
207 |
"порожнім, щоб використовувати опис сторінки."
|
208 |
|
209 |
+
#: includes/class-fcbkbttn-settings.php:298
|
210 |
msgid "Profile URL Button"
|
211 |
msgstr "Кнопка URL профілю"
|
212 |
|
213 |
+
#: includes/class-fcbkbttn-settings.php:301
|
214 |
msgid "Facebook ID or Username"
|
215 |
msgstr "Facebook ID або Ім'я користувача"
|
216 |
|
217 |
+
#: includes/class-fcbkbttn-settings.php:308
|
218 |
msgid "Profile Button Image"
|
219 |
msgstr "Зображення кнопки профілю"
|
220 |
|
221 |
+
#: includes/class-fcbkbttn-settings.php:315
|
222 |
msgid "Default"
|
223 |
msgstr "За замовчуванням"
|
224 |
|
225 |
+
#: includes/class-fcbkbttn-settings.php:320
|
226 |
msgid "Custom image"
|
227 |
msgstr "Користувацьке зображення"
|
228 |
|
229 |
+
#: includes/class-fcbkbttn-settings.php:324
|
230 |
msgid ""
|
231 |
"To use custom image, You need to setup permissions for upload directory of "
|
232 |
"your site"
|
234 |
"Для використання користувацького зображення Вам необхідно видати права "
|
235 |
"доступу на папку завантажень на вашому сайті"
|
236 |
|
237 |
+
#: includes/class-fcbkbttn-settings.php:331
|
238 |
msgid "Current image"
|
239 |
msgstr "Поточне зображення"
|
240 |
|
241 |
+
#: includes/class-fcbkbttn-settings.php:339
|
242 |
msgid ""
|
243 |
"Image requirements: max image width:100px; max image height:40px; max image "
|
244 |
"size:32Kb; image types:\"jpg\", \"jpeg\", \"png\"."
|
247 |
"висота зображення: 40px; максимальний розмір зображення: 32Kb; типи "
|
248 |
"зображеннь :\"jpg\", \"jpeg\", \"png\"."
|
249 |
|
250 |
+
#: includes/class-fcbkbttn-settings.php:343
|
251 |
msgid "Like&Share Buttons"
|
252 |
msgstr "Кнопки \"Подобається\" та \"Поширити\""
|
253 |
|
254 |
+
#: includes/class-fcbkbttn-settings.php:346
|
255 |
msgid "Layout"
|
256 |
msgstr "Вид"
|
257 |
|
258 |
+
#: includes/class-fcbkbttn-settings.php:381
|
259 |
msgid "Like Button Action"
|
260 |
msgstr "Дія кнопки \"Подобається\""
|
261 |
|
262 |
+
#: includes/class-fcbkbttn-settings.php:391
|
263 |
msgid "Recommend"
|
264 |
msgstr "Рекомендую"
|
265 |
|
266 |
+
#: includes/class-fcbkbttn-settings.php:397
|
267 |
msgid "Friends Faces"
|
268 |
msgstr "Обличчя друзів"
|
269 |
|
270 |
+
#: includes/class-fcbkbttn-settings.php:400
|
271 |
msgid " Enable to show faces of your friends who submitted the button."
|
272 |
msgstr "Включити, щоб показати обличчя своїх друзів, які натиснули кнопку."
|
273 |
|
274 |
+
#: includes/class-fcbkbttn-settings.php:404
|
275 |
msgid "Layout Width"
|
276 |
msgstr "Ширина блоку"
|
277 |
|
278 |
+
#: includes/class-fcbkbttn-settings.php:406
|
279 |
msgid "px"
|
280 |
msgstr "пікс"
|
281 |
|
282 |
+
#: includes/class-fcbkbttn-settings.php:410
|
283 |
msgid "Theme"
|
284 |
msgstr "Тема"
|
285 |
|
286 |
+
#: includes/class-fcbkbttn-settings.php:415
|
287 |
msgid "Light"
|
288 |
msgstr "Світла"
|
289 |
|
290 |
+
#: includes/class-fcbkbttn-settings.php:420
|
291 |
msgid "Dark"
|
292 |
msgstr "Темна"
|
293 |
|
294 |
+
#: includes/class-fcbkbttn-settings.php:426
|
295 |
msgid "Like Button HTML Tag"
|
296 |
msgstr "HTML тег кнопки \"Подобається\""
|
297 |
|
298 |
+
#: includes/class-fcbkbttn-settings.php:432
|
299 |
#, php-format
|
300 |
msgid "Tag %s can be used to improve website code validation."
|
301 |
msgstr "Тег %s може бути використаний для поліпшення валідації коду сайту."
|
302 |
|
303 |
+
#: includes/class-fcbkbttn-settings.php:445
|
304 |
msgid "URL to Like"
|
305 |
msgstr "URL кнопки \"Подобається\""
|
306 |
|
307 |
+
#: includes/class-fcbkbttn-settings.php:447
|
308 |
msgid "Leave blank to use a current page."
|
309 |
msgstr "Залиште порожнім, щоб використовувати поточну сторінку."
|
310 |
|
311 |
+
#: includes/class-fcbkbttn-settings.php:475
|
312 |
+
msgid "Facebook Buttons Shortcode"
|
313 |
+
msgstr "Шорткод кнопки Facebook"
|
314 |
|
315 |
+
#: includes/class-fcbkbttn-settings.php:478
|
316 |
msgid ""
|
317 |
"Add Facebook button(-s) to your posts, pages, custom post types or widgets "
|
318 |
"by using the following shortcode:"
|
320 |
"Додати кнопки Facebook на ваші записи, сторінки, користувацькі типи записів "
|
321 |
"або віджети за допомогою даного шорткода:"
|
322 |
|
323 |
+
#: includes/class-fcbkbttn-settings.php:497
|
324 |
msgid "Facebook Buttons Preview"
|
325 |
msgstr "Попередній перегляд Facebook кнопок"
|
326 |
|
327 |
+
#: includes/class-fcbkbttn-settings.php:512
|
328 |
msgid "Display Settings"
|
329 |
msgstr "Налаштування відображення"
|
330 |
|
331 |
+
#: includes/class-fcbkbttn-settings.php:521
|
332 |
msgid ""
|
333 |
"Please choose the necessary post types (or single pages) where Facebook "
|
334 |
"button will be displayed:"
|
336 |
"Будь ласка, оберіть необхідні типи записів (чи сторінок), де буде "
|
337 |
"відображатися кнопка Facebook"
|
338 |
|
339 |
+
#: includes/class-fcbkbttn-settings.php:528
|
340 |
msgid "Show URL for pages"
|
341 |
msgstr "Відображати URL сторінок"
|
342 |
|
343 |
+
#: includes/class-fcbkbttn-settings.php:534
|
344 |
+
msgid "Example of site pages tree"
|
345 |
msgstr "Приклад дерева сторінок сайту"
|
346 |
|
347 |
+
#~ msgid "Error: File size > 32K"
|
348 |
+
#~ msgstr "Помилка: Розмір файлу не повинен перевищувати 32Kб"
|
349 |
+
|
350 |
+
#~ msgid "Example of site pages' tree"
|
351 |
+
#~ msgstr "Приклад дерева сторінок сайту"
|
352 |
+
|
353 |
+
#~ msgid "Example of the site's pages tree"
|
354 |
+
#~ msgstr "Приклад дерева сторінок сайту"
|
355 |
+
|
356 |
+
#~ msgid "Facebook Buttons Shortchode"
|
357 |
+
#~ msgstr "Шорткод Facebook кнопок"
|
358 |
|
359 |
#~ msgid "Facebook button Settings"
|
360 |
#~ msgstr "Установки кнопок Facebook"
|
readme.txt
CHANGED
@@ -2,9 +2,9 @@
|
|
2 |
Contributors: bestwebsoft
|
3 |
Donate link: https://bestwebsoft.com/donate/
|
4 |
Tags: facebook buttons, share, like, add share button, social buttons, facebook, facebook button icon, follow, follow button, like button, share button, facebook plugin
|
5 |
-
Requires at least: 3.
|
6 |
-
Tested up to: 4.
|
7 |
-
Stable tag: 2.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -12,7 +12,7 @@ Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and widg
|
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
-
Facebook plugin is
|
16 |
|
17 |
Customize the appearance, configure settings, and enable other advanced options to get more social traffic to your website and keep your visitors involved!
|
18 |
|
@@ -67,8 +67,8 @@ If you have a feature suggestion or idea you'd like to see in the plugin, we'd l
|
|
67 |
= Documentation & Videos =
|
68 |
|
69 |
* [[Doc] How to Use](https://docs.google.com/document/d/1gy5uDVoebmYRUvlKRwBmc97jdJFz7GvUCtXy3L7r_Yg/)
|
70 |
-
* [[Doc] Installation](https://docs.google.com/document/d/
|
71 |
-
* [[Doc] Purchase
|
72 |
* [[Video] Installation Instruction](https://www.youtube.com/watch?v=pAKsQPz3RZc)
|
73 |
|
74 |
= Help & Support =
|
@@ -91,18 +91,12 @@ Some of these translations are not complete. We are constantly adding new featur
|
|
91 |
|
92 |
= Recommended Plugins =
|
93 |
|
94 |
-
* [Updater](https://bestwebsoft.com/products/wordpress/plugins/updater/?k=5019f1216fc048f1419fe4645da69381) -
|
95 |
* [Google +1](https://bestwebsoft.com/products/wordpress/plugins/google-plus-one/?k=1f911e6a8a57be8dec36aa4c617773d2) - Add Google +1 Share, Follow, Hangout buttons and profile badge to WordPress posts, pages and widgets.
|
96 |
* [LinkedIn](https://bestwebsoft.com/products/wordpress/plugins/linkedin/?k=b51477f9bcefca82ad8a4a1901806171) - Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. 5 plugins included – profile, insider, etc.
|
97 |
* [Multilanguage](https://bestwebsoft.com/products/wordpress/plugins/multilanguage/?k=ce7cc6ad47715a97a579a6d9b59ed8b3) - Translate WordPress website content to other languages manually. Create multilingual pages, posts, widgets, menus, etc.
|
98 |
-
* [Pinterest](https://bestwebsoft.com/products/wordpress/plugins/pinterest/?k=6c0ee1d224732f70f3099746cfc82c92) - Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, Profile) to WordPress posts, pages and widgets.
|
99 |
-
* [Twitter](https://bestwebsoft.com/products/wordpress/plugins/twitter/?k=f1d29ef28baa75cc05d52def8ca1021d) - Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts, pages and widgets.
|
100 |
-
|
101 |
-
= Donate =
|
102 |
-
|
103 |
-
Donations play an important role in supporting open-source projects. We greatly appreciate any donation you can make to help us continue further development of free products.
|
104 |
-
|
105 |
-
[Donate Now](https://bestwebsoft.com/donate/)
|
106 |
|
107 |
== Installation ==
|
108 |
|
@@ -110,7 +104,7 @@ Donations play an important role in supporting open-source projects. We greatly
|
|
110 |
2. Activate the plugin via the 'Plugins' menu in your WordPress admin panel.
|
111 |
3. You can adjust the necessary settings in your WordPress admin panel - "Facebook Button".
|
112 |
|
113 |
-
[View a Step-by-step Instruction on Facebook Button by BestWebSoft Installation](https://docs.google.com/document/d/
|
114 |
|
115 |
https://www.youtube.com/watch?v=pAKsQPz3RZc
|
116 |
|
@@ -160,6 +154,10 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
|
|
160 |
|
161 |
== Changelog ==
|
162 |
|
|
|
|
|
|
|
|
|
163 |
= V2.54 - 06.04.2017 =
|
164 |
* NEW : Czech language file is added.
|
165 |
* Bugfix : Bug with incorrect My Page Facebook button link was fixed.
|
@@ -378,6 +376,10 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
|
|
378 |
|
379 |
== Upgrade Notice ==
|
380 |
|
|
|
|
|
|
|
|
|
381 |
= V2.54 =
|
382 |
* Languages updated.
|
383 |
|
2 |
Contributors: bestwebsoft
|
3 |
Donate link: https://bestwebsoft.com/donate/
|
4 |
Tags: facebook buttons, share, like, add share button, social buttons, facebook, facebook button icon, follow, follow button, like button, share button, facebook plugin
|
5 |
+
Requires at least: 3.9
|
6 |
+
Tested up to: 4.8
|
7 |
+
Stable tag: 2.55
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
12 |
|
13 |
== Description ==
|
14 |
|
15 |
+
Facebook plugin is the best social media solution which adds Follow, Like, and Share buttons to your WordPress website posts, pages or widgets. This is a great way to receive positive feedback from your visitors, earn media exposure, and consumer validation for your brand.
|
16 |
|
17 |
Customize the appearance, configure settings, and enable other advanced options to get more social traffic to your website and keep your visitors involved!
|
18 |
|
67 |
= Documentation & Videos =
|
68 |
|
69 |
* [[Doc] How to Use](https://docs.google.com/document/d/1gy5uDVoebmYRUvlKRwBmc97jdJFz7GvUCtXy3L7r_Yg/)
|
70 |
+
* [[Doc] Installation](https://docs.google.com/document/d/1-hvn6WRvWnOqj5v5pLUk7Awyu87lq5B_dO-Tv-MC9JQ/)
|
71 |
+
* [[Doc] Purchase](https://docs.google.com/document/d/1EUdBVvnm7IHZ6y0DNyldZypUQKpB8UVPToSc_LdOYQI/)
|
72 |
* [[Video] Installation Instruction](https://www.youtube.com/watch?v=pAKsQPz3RZc)
|
73 |
|
74 |
= Help & Support =
|
91 |
|
92 |
= Recommended Plugins =
|
93 |
|
94 |
+
* [Updater](https://bestwebsoft.com/products/wordpress/plugins/updater/?k=5019f1216fc048f1419fe4645da69381) - Automatically check and update WordPress website core with all installed plugins and themes to the latest versions.
|
95 |
* [Google +1](https://bestwebsoft.com/products/wordpress/plugins/google-plus-one/?k=1f911e6a8a57be8dec36aa4c617773d2) - Add Google +1 Share, Follow, Hangout buttons and profile badge to WordPress posts, pages and widgets.
|
96 |
* [LinkedIn](https://bestwebsoft.com/products/wordpress/plugins/linkedin/?k=b51477f9bcefca82ad8a4a1901806171) - Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. 5 plugins included – profile, insider, etc.
|
97 |
* [Multilanguage](https://bestwebsoft.com/products/wordpress/plugins/multilanguage/?k=ce7cc6ad47715a97a579a6d9b59ed8b3) - Translate WordPress website content to other languages manually. Create multilingual pages, posts, widgets, menus, etc.
|
98 |
+
* [Pinterest](https://bestwebsoft.com/products/wordpress/plugins/pinterest/?k=6c0ee1d224732f70f3099746cfc82c92) - Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, Profile) to WordPress posts, pages, and widgets.
|
99 |
+
* [Twitter](https://bestwebsoft.com/products/wordpress/plugins/twitter/?k=f1d29ef28baa75cc05d52def8ca1021d) - Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts, pages, and widgets.
|
|
|
|
|
|
|
|
|
|
|
|
|
100 |
|
101 |
== Installation ==
|
102 |
|
104 |
2. Activate the plugin via the 'Plugins' menu in your WordPress admin panel.
|
105 |
3. You can adjust the necessary settings in your WordPress admin panel - "Facebook Button".
|
106 |
|
107 |
+
[View a Step-by-step Instruction on Facebook Button by BestWebSoft Installation](https://docs.google.com/document/d/1-hvn6WRvWnOqj5v5pLUk7Awyu87lq5B_dO-Tv-MC9JQ/)
|
108 |
|
109 |
https://www.youtube.com/watch?v=pAKsQPz3RZc
|
110 |
|
154 |
|
155 |
== Changelog ==
|
156 |
|
157 |
+
= V2.55 - 20.07.2017 =
|
158 |
+
* NEW : Ability to choose buttons size has been added.
|
159 |
+
* Update : Default button appearance has been updated.
|
160 |
+
|
161 |
= V2.54 - 06.04.2017 =
|
162 |
* NEW : Czech language file is added.
|
163 |
* Bugfix : Bug with incorrect My Page Facebook button link was fixed.
|
376 |
|
377 |
== Upgrade Notice ==
|
378 |
|
379 |
+
= V2.55 =
|
380 |
+
* Functionality expanded.
|
381 |
+
* Appearance improved.
|
382 |
+
|
383 |
= V2.54 =
|
384 |
* Languages updated.
|
385 |
|
screenshot-1.png
CHANGED
Binary file
|
screenshot-2.png
CHANGED
Binary file
|
screenshot-3.png
CHANGED
Binary file
|