Version Description
- 31.08.2017 =
- Update : The Czech language file has been updated.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Google Sitemap by BestWebSoft |
Version | 3.1.1 |
Comparing to | |
See all releases |
Code changes from version 3.1.0 to 3.1.1
- bws_menu/bws_functions.php +21 -4
- bws_menu/bws_include.php +2 -1
- bws_menu/bws_menu.php +1 -1
- bws_menu/css/modal.css +114 -0
- bws_menu/deactivation-form.php +423 -0
- bws_menu/languages/bestwebsoft-cs_CZ.mo +0 -0
- bws_menu/languages/bestwebsoft-cs_CZ.po +330 -232
- bws_menu/languages/bestwebsoft-es_ES.mo +0 -0
- bws_menu/languages/bestwebsoft-es_ES.po +1747 -0
- bws_menu/languages/bestwebsoft-fr_FR.mo +0 -0
- bws_menu/languages/bestwebsoft-fr_FR.po +309 -229
- bws_menu/languages/bestwebsoft-id_ID.mo +0 -0
- bws_menu/languages/bestwebsoft-id_ID.po +307 -226
- bws_menu/languages/bestwebsoft-nl_NL.mo +0 -0
- bws_menu/languages/bestwebsoft-nl_NL.po +306 -226
- bws_menu/languages/bestwebsoft-pl_PL.mo +0 -0
- bws_menu/languages/bestwebsoft-pl_PL.po +306 -223
- bws_menu/languages/bestwebsoft-ru_RU.mo +0 -0
- bws_menu/languages/bestwebsoft-ru_RU.po +336 -229
- bws_menu/languages/bestwebsoft-uk.mo +0 -0
- bws_menu/languages/bestwebsoft-uk.po +331 -229
- google-sitemap-plugin.php +18 -3
- languages/google-sitemap-plugin-cs_CZ.mo +0 -0
- languages/google-sitemap-plugin-cs_CZ.po +213 -209
- readme.txt +10 -4
bws_menu/bws_functions.php
CHANGED
@@ -4,6 +4,7 @@
|
|
4 |
*/
|
5 |
|
6 |
require( dirname( __FILE__ ) . '/deprecated.php' );
|
|
|
7 |
|
8 |
/**
|
9 |
* Function to add 'bestwebsoft' slug for BWS_Menu MO file if BWS_Menu loaded from theme.
|
@@ -55,7 +56,7 @@ if ( ! function_exists ( 'bws_menu_url' ) ) {
|
|
55 |
* Function check if plugin is compatible with current WP version
|
56 |
* @return void
|
57 |
*/
|
58 |
-
if ( ! function_exists
|
59 |
function bws_wp_min_version_check( $plugin_basename, $plugin_info, $require_wp, $min_wp = false ) {
|
60 |
global $wp_version, $bws_versions_notice_array;
|
61 |
if ( false == $min_wp )
|
@@ -124,7 +125,7 @@ if ( ! function_exists ( 'bws_plugin_update_row' ) ) {
|
|
124 |
<div class="update-message' . $div_class . '"' . $style . '>';
|
125 |
if ( $wp_version >= 4.6 )
|
126 |
echo '<p>';
|
127 |
-
echo '<strong>' . __( 'WARNING: Illegal use notification', 'bestwebsoft' ) . '.</strong> ' . __( 'You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using
|
128 |
if ( $wp_version >= 4.6 )
|
129 |
echo '</p>';
|
130 |
echo '</div>
|
@@ -572,7 +573,7 @@ if ( ! function_exists ( 'bws_plugins_admin_init' ) ) {
|
|
572 |
|
573 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) ) {
|
574 |
function bws_admin_enqueue_scripts() {
|
575 |
-
global $wp_scripts;
|
576 |
|
577 |
$jquery_version = isset( $wp_scripts->registered['jquery-ui-core']->ver ) ? $wp_scripts->registered['jquery-ui-core']->ver : '1.12.1';
|
578 |
|
@@ -587,6 +588,10 @@ if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) ) {
|
|
587 |
add_thickbox();
|
588 |
wp_enqueue_script( 'plugin-install' );
|
589 |
}
|
|
|
|
|
|
|
|
|
590 |
}
|
591 |
}
|
592 |
|
@@ -671,6 +676,18 @@ if ( ! function_exists ( 'bws_plugins_admin_head' ) ) {
|
|
671 |
}
|
672 |
}
|
673 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
674 |
if ( ! function_exists ( 'bws_plugins_include_codemirror' ) ) {
|
675 |
function bws_plugins_include_codemirror() {
|
676 |
wp_enqueue_style( 'codemirror.css', bws_menu_url( 'css/codemirror.css' ) );
|
@@ -1035,7 +1052,7 @@ if ( ! function_exists( 'bws_delete_plugin' ) ) {
|
|
1035 |
add_action( 'admin_init', 'bws_plugins_admin_init' );
|
1036 |
add_action( 'admin_enqueue_scripts', 'bws_admin_enqueue_scripts' );
|
1037 |
add_action( 'admin_head', 'bws_plugins_admin_head' );
|
1038 |
-
add_action( 'admin_footer','
|
1039 |
|
1040 |
add_action( 'admin_notices', 'bws_admin_notices', 30 );
|
1041 |
|
4 |
*/
|
5 |
|
6 |
require( dirname( __FILE__ ) . '/deprecated.php' );
|
7 |
+
require_once( dirname( __FILE__ ) . '/deactivation-form.php' );
|
8 |
|
9 |
/**
|
10 |
* Function to add 'bestwebsoft' slug for BWS_Menu MO file if BWS_Menu loaded from theme.
|
56 |
* Function check if plugin is compatible with current WP version
|
57 |
* @return void
|
58 |
*/
|
59 |
+
if ( ! function_exists( 'bws_wp_min_version_check' ) ) {
|
60 |
function bws_wp_min_version_check( $plugin_basename, $plugin_info, $require_wp, $min_wp = false ) {
|
61 |
global $wp_version, $bws_versions_notice_array;
|
62 |
if ( false == $min_wp )
|
125 |
<div class="update-message' . $div_class . '"' . $style . '>';
|
126 |
if ( $wp_version >= 4.6 )
|
127 |
echo '<p>';
|
128 |
+
echo '<strong>' . __( 'WARNING: Illegal use notification', 'bestwebsoft' ) . '.</strong> ' . __( 'You can use one license of the Pro plugin for one domain only. Please check and edit your license or domain if necessary using your personal Client Area. We strongly recommend you to solve the problem within 24 hours, otherwise the Pro plugin will be deactivated.', 'bestwebsoft' ) . ' <a target="_blank" href="https://support.bestwebsoft.com/hc/en-us/articles/204240089">' . __( 'Learn More', 'bestwebsoft' ) . '</a>';
|
129 |
if ( $wp_version >= 4.6 )
|
130 |
echo '</p>';
|
131 |
echo '</div>
|
573 |
|
574 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) ) {
|
575 |
function bws_admin_enqueue_scripts() {
|
576 |
+
global $wp_scripts, $hook_suffix;
|
577 |
|
578 |
$jquery_version = isset( $wp_scripts->registered['jquery-ui-core']->ver ) ? $wp_scripts->registered['jquery-ui-core']->ver : '1.12.1';
|
579 |
|
588 |
add_thickbox();
|
589 |
wp_enqueue_script( 'plugin-install' );
|
590 |
}
|
591 |
+
|
592 |
+
if ( 'plugins.php' == $hook_suffix && ! defined( 'DOING_AJAX' ) ) {
|
593 |
+
wp_enqueue_style( 'bws-modal-css', bws_menu_url( 'css/modal.css' ) );
|
594 |
+
}
|
595 |
}
|
596 |
}
|
597 |
|
676 |
}
|
677 |
}
|
678 |
|
679 |
+
if ( ! function_exists ( 'bws_plugins_admin_footer' ) ) {
|
680 |
+
function bws_plugins_admin_footer() {
|
681 |
+
global $hook_suffix;
|
682 |
+
|
683 |
+
bws_shortcode_media_button_popup();
|
684 |
+
|
685 |
+
if ( 'plugins.php' == $hook_suffix && ! defined( 'DOING_AJAX' ) ) {
|
686 |
+
bws_add_deactivation_feedback_dialog_box();
|
687 |
+
}
|
688 |
+
}
|
689 |
+
}
|
690 |
+
|
691 |
if ( ! function_exists ( 'bws_plugins_include_codemirror' ) ) {
|
692 |
function bws_plugins_include_codemirror() {
|
693 |
wp_enqueue_style( 'codemirror.css', bws_menu_url( 'css/codemirror.css' ) );
|
1052 |
add_action( 'admin_init', 'bws_plugins_admin_init' );
|
1053 |
add_action( 'admin_enqueue_scripts', 'bws_admin_enqueue_scripts' );
|
1054 |
add_action( 'admin_head', 'bws_plugins_admin_head' );
|
1055 |
+
add_action( 'admin_footer','bws_plugins_admin_footer' );
|
1056 |
|
1057 |
add_action( 'admin_notices', 'bws_admin_notices', 30 );
|
1058 |
|
bws_menu/bws_include.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
|
6 |
if ( ! function_exists ( 'bws_include_init' ) ) {
|
7 |
function bws_include_init( $base, $bws_menu_source = 'plugins' ) {
|
8 |
-
global $bstwbsftwppdtplgns_options, $bstwbsftwppdtplgns_added_menu;
|
9 |
if ( ! function_exists( 'get_plugin_data' ) )
|
10 |
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
11 |
|
@@ -14,6 +14,7 @@ if ( ! function_exists ( 'bws_include_init' ) ) {
|
|
14 |
|
15 |
if ( $bws_menu_source == 'plugins' ) {
|
16 |
$bws_menu_dir = $wp_plugins_dir . '/' . dirname( $base ) . '/bws_menu/bws_menu.php';
|
|
|
17 |
} else {
|
18 |
$bws_menu_dir = $wp_content_dir . '/themes/' . $base . '/inc/bws_menu/bws_menu.php';
|
19 |
}
|
5 |
|
6 |
if ( ! function_exists ( 'bws_include_init' ) ) {
|
7 |
function bws_include_init( $base, $bws_menu_source = 'plugins' ) {
|
8 |
+
global $bstwbsftwppdtplgns_options, $bstwbsftwppdtplgns_added_menu, $bstwbsftwppdtplgns_active_plugins;
|
9 |
if ( ! function_exists( 'get_plugin_data' ) )
|
10 |
require_once( ABSPATH . 'wp-admin/includes/plugin.php' );
|
11 |
|
14 |
|
15 |
if ( $bws_menu_source == 'plugins' ) {
|
16 |
$bws_menu_dir = $wp_plugins_dir . '/' . dirname( $base ) . '/bws_menu/bws_menu.php';
|
17 |
+
$bstwbsftwppdtplgns_active_plugins[ $base ] = get_plugin_data( $wp_plugins_dir . '/' . $base );
|
18 |
} else {
|
19 |
$bws_menu_dir = $wp_content_dir . '/themes/' . $base . '/inc/bws_menu/bws_menu.php';
|
20 |
}
|
bws_menu/bws_menu.php
CHANGED
@@ -1,7 +1,7 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
-
* Version: 2.1.
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
|
1 |
<?php
|
2 |
/*
|
3 |
* Function for displaying BestWebSoft menu
|
4 |
+
* Version: 2.1.4
|
5 |
*/
|
6 |
|
7 |
if ( ! function_exists ( 'bws_admin_enqueue_scripts' ) )
|
bws_menu/css/modal.css
ADDED
@@ -0,0 +1,114 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
.bws-modal {
|
2 |
+
position: fixed;
|
3 |
+
overflow: auto;
|
4 |
+
height: 100%;
|
5 |
+
width: 100%;
|
6 |
+
top: 0;
|
7 |
+
z-index: 100000;
|
8 |
+
display: none;
|
9 |
+
background: rgba(0, 0, 0, 0.6)
|
10 |
+
}
|
11 |
+
.bws-modal.active {
|
12 |
+
display: block
|
13 |
+
}
|
14 |
+
.bws-modal.active:before {
|
15 |
+
display: block
|
16 |
+
}
|
17 |
+
.bws-modal .bws-modal-dialog {
|
18 |
+
background: transparent;
|
19 |
+
position: absolute;
|
20 |
+
left: 50%;
|
21 |
+
margin-left: -298px;
|
22 |
+
padding-bottom: 30px;
|
23 |
+
top: -100%;
|
24 |
+
z-index: 100001;
|
25 |
+
width: 596px
|
26 |
+
}
|
27 |
+
.bws-modal.active .bws-modal-dialog {
|
28 |
+
top: 10%
|
29 |
+
}
|
30 |
+
.bws-modal .bws-modal-body,
|
31 |
+
.bws-modal .bws-modal-footer {
|
32 |
+
border: 0;
|
33 |
+
background: #fff;
|
34 |
+
padding: 25px 25px 15px;
|
35 |
+
}
|
36 |
+
.bws-modal .bws-modal-body {
|
37 |
+
border-bottom: 0
|
38 |
+
}
|
39 |
+
.bws-modal .bws-modal-body p {
|
40 |
+
font-size: 1.3em;
|
41 |
+
}
|
42 |
+
.bws-modal .bws-modal-body h2 {
|
43 |
+
font-size: 1.6em;
|
44 |
+
font-weight: bold;
|
45 |
+
margin-top: 0;
|
46 |
+
}
|
47 |
+
.bws-modal .bws-modal-footer {
|
48 |
+
border-top: #eeeeee solid 1px;
|
49 |
+
text-align: right
|
50 |
+
}
|
51 |
+
.bws-modal .bws-modal-footer>.button {
|
52 |
+
margin: 0 7px
|
53 |
+
}
|
54 |
+
.bws-modal .bws-modal-footer>.button:first-child {
|
55 |
+
margin: 0
|
56 |
+
}
|
57 |
+
.bws-modal .bws-modal-panel>.notice.inline {
|
58 |
+
margin: 0;
|
59 |
+
display: none
|
60 |
+
}
|
61 |
+
.bws-modal .bws-modal-panel:not(.active) {
|
62 |
+
display: none
|
63 |
+
}
|
64 |
+
body.has-bws-modal {
|
65 |
+
overflow: hidden
|
66 |
+
}
|
67 |
+
.bws-modal.bws-modal-deactivation-feedback .bws-modal-reason-input,
|
68 |
+
.bws-modal.bws-modal-deactivation-feedback .bws-modal-internal-message {
|
69 |
+
margin: 3px 0 3px 22px
|
70 |
+
}
|
71 |
+
.bws-modal.bws-modal-deactivation-feedback .bws-modal-reason-input input,
|
72 |
+
.bws-modal.bws-modal-deactivation-feedback .bws-modal-reason-input textarea,
|
73 |
+
.bws-modal.bws-modal-deactivation-feedback .bws-modal-internal-message input,
|
74 |
+
.bws-modal.bws-modal-deactivation-feedback .bws-modal-internal-message textarea {
|
75 |
+
width: 100%
|
76 |
+
}
|
77 |
+
.bws-modal.bws-modal-deactivation-feedback li.bws-modal-reason.has-internal-message .bws-modal-internal-message {
|
78 |
+
border: 1px solid #ccc;
|
79 |
+
padding: 7px;
|
80 |
+
display: none
|
81 |
+
}
|
82 |
+
.bws-modal.bws-modal-deactivation-feedback .bws-modal-anonymous-label {
|
83 |
+
float: left
|
84 |
+
}
|
85 |
+
.bws-modal.bws-modal-deactivation-feedback .bws-modal-panel {
|
86 |
+
margin-top: 0 !important
|
87 |
+
}
|
88 |
+
|
89 |
+
@media (max-width: 650px) {
|
90 |
+
.bws-modal .bws-modal-dialog {
|
91 |
+
margin-left: -50%;
|
92 |
+
box-sizing: border-box;
|
93 |
+
padding-left: 10px;
|
94 |
+
padding-right: 10px;
|
95 |
+
width: 100%
|
96 |
+
}
|
97 |
+
.bws-modal .bws-modal-dialog .bws-modal-panel>h3>strong {
|
98 |
+
font-size: 1.3em
|
99 |
+
}
|
100 |
+
.bws-modal.bws-modal-deactivation-feedback li.bws-modal-reason li.bws-modal-reason {
|
101 |
+
margin-bottom: 10px
|
102 |
+
}
|
103 |
+
.bws-modal.bws-modal-deactivation-feedback li.bws-modal-reason li.bws-modal-reason .bws-modal-reason-input,
|
104 |
+
.bws-modal.bws-modal-deactivation-feedback li.bws-modal-reason li.bws-modal-reason .bws-modal-internal-message {
|
105 |
+
margin-left: 29px
|
106 |
+
}
|
107 |
+
.bws-modal.bws-modal-deactivation-feedback li.bws-modal-reason li.bws-modal-reason label {
|
108 |
+
display: table
|
109 |
+
}
|
110 |
+
.bws-modal.bws-modal-deactivation-feedback li.bws-modal-reason li.bws-modal-reason label>span {
|
111 |
+
display: table-cell;
|
112 |
+
font-size: 1.3em
|
113 |
+
}
|
114 |
+
}
|
bws_menu/deactivation-form.php
ADDED
@@ -0,0 +1,423 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Displays the content of the dialog box when the user clicks on the "Deactivate" link on the plugin settings page
|
4 |
+
* @package BestWebSoft
|
5 |
+
* @since 2.1.3
|
6 |
+
*/
|
7 |
+
if ( ! defined( 'ABSPATH' ) )
|
8 |
+
exit;
|
9 |
+
|
10 |
+
/**
|
11 |
+
* Displays a confirmation and feedback dialog box when the user clicks on the "Deactivate" link on the plugins
|
12 |
+
* page.
|
13 |
+
*
|
14 |
+
* @since 2.1.3
|
15 |
+
*/
|
16 |
+
if ( ! function_exists( 'bws_add_deactivation_feedback_dialog_box' ) ) {
|
17 |
+
function bws_add_deactivation_feedback_dialog_box() {
|
18 |
+
global $bstwbsftwppdtplgns_active_plugins;
|
19 |
+
if ( empty( $bstwbsftwppdtplgns_active_plugins ) )
|
20 |
+
return;
|
21 |
+
|
22 |
+
foreach ( $bstwbsftwppdtplgns_active_plugins as $basename => $plugin_data ) {
|
23 |
+
|
24 |
+
$slug = dirname( $basename );
|
25 |
+
$plugin_id = sanitize_title( $plugin_data['Name'] );
|
26 |
+
|
27 |
+
$contact_support_template = __( 'Need help? We are ready to answer your questions.', 'bestwebsoft' ) . ' <a href="https://support.bestwebsoft.com/hc/en-us/requests/new" target="_blank">' . __( 'Contact Support', 'bestwebsoft' ) . '</a>';
|
28 |
+
|
29 |
+
$reasons = array(
|
30 |
+
array(
|
31 |
+
'id' => 'NOT_WORKING',
|
32 |
+
'text' => __( 'The plugin is not working', 'bestwebsoft' ),
|
33 |
+
'input_type' => 'textarea',
|
34 |
+
'input_placeholder' => __( "Kindly share what didn't work so we can fix it in future updates...", 'bestwebsoft' )
|
35 |
+
),
|
36 |
+
array(
|
37 |
+
'id' => 'DIDNT_WORK_AS_EXPECTED',
|
38 |
+
'text' => __( "The plugin didn't work as expected", 'bestwebsoft' ),
|
39 |
+
'input_type' => 'textarea',
|
40 |
+
'input_placeholder' => __( 'What did you expect?', 'bestwebsoft' )
|
41 |
+
),
|
42 |
+
array(
|
43 |
+
'id' => 'SUDDENLY_STOPPED_WORKING',
|
44 |
+
'text' => __( 'The plugin suddenly stopped working', 'bestwebsoft' ),
|
45 |
+
'input_type' => '',
|
46 |
+
'input_placeholder' => '',
|
47 |
+
'internal_message' => $contact_support_template
|
48 |
+
),
|
49 |
+
array(
|
50 |
+
'id' => 'BROKE_MY_SITE',
|
51 |
+
'text' => __( 'The plugin broke my site', 'bestwebsoft' ),
|
52 |
+
'input_type' => '',
|
53 |
+
'input_placeholder' => '',
|
54 |
+
'internal_message' => $contact_support_template
|
55 |
+
),
|
56 |
+
array(
|
57 |
+
'id' => 'COULDNT_MAKE_IT_WORK',
|
58 |
+
'text' => __( "I couldn't understand how to get it work", 'bestwebsoft' ),
|
59 |
+
'input_type' => '',
|
60 |
+
'input_placeholder' => '',
|
61 |
+
'internal_message' => $contact_support_template
|
62 |
+
),
|
63 |
+
array(
|
64 |
+
'id' => 'FOUND_A_BETTER_PLUGIN',
|
65 |
+
'text' => __( 'I found a better plugin', 'bestwebsoft' ),
|
66 |
+
'input_type' => 'textfield',
|
67 |
+
'input_placeholder' => __( "What's the plugin name?", 'bestwebsoft' )
|
68 |
+
),
|
69 |
+
array(
|
70 |
+
'id' => 'GREAT_BUT_NEED_SPECIFIC_FEATURE',
|
71 |
+
'text' => __( "The plugin is great, but I need specific feature that you don't support", 'bestwebsoft' ),
|
72 |
+
'input_type' => 'textarea',
|
73 |
+
'input_placeholder' => __( 'What feature?', 'bestwebsoft' )
|
74 |
+
),
|
75 |
+
array(
|
76 |
+
'id' => 'NO_LONGER_NEEDED',
|
77 |
+
'text' => __( 'I no longer need the plugin', 'bestwebsoft' ),
|
78 |
+
'input_type' => '',
|
79 |
+
'input_placeholder' => ''
|
80 |
+
),
|
81 |
+
array(
|
82 |
+
'id' => 'TEMPORARY_DEACTIVATION',
|
83 |
+
'text' => __( "It's a temporary deactivation, I'm just debugging an issue", 'bestwebsoft' ),
|
84 |
+
'input_type' => '',
|
85 |
+
'input_placeholder' => ''
|
86 |
+
),
|
87 |
+
array(
|
88 |
+
'id' => 'OTHER',
|
89 |
+
'text' => __( 'Other', 'bestwebsoft' ),
|
90 |
+
'input_type' => 'textfield',
|
91 |
+
'input_placeholder' => ''
|
92 |
+
)
|
93 |
+
);
|
94 |
+
|
95 |
+
$reasons_list_items_html = '';
|
96 |
+
|
97 |
+
foreach ( $reasons as $reason ) {
|
98 |
+
$list_item_classes = 'bws-modal-reason' . ( ! empty( $reason['input_type'] ) ? ' has-input' : '' );
|
99 |
+
|
100 |
+
if ( ! empty( $reason['internal_message'] ) ) {
|
101 |
+
$list_item_classes .= ' has-internal-message';
|
102 |
+
$reason_internal_message = $reason['internal_message'];
|
103 |
+
} else {
|
104 |
+
$reason_internal_message = '';
|
105 |
+
}
|
106 |
+
|
107 |
+
$reasons_list_items_html .= '<li class="' . $list_item_classes . '" data-input-type="' . $reason['input_type'] . '" data-input-placeholder="' . $reason['input_placeholder'] . '">
|
108 |
+
<label>
|
109 |
+
<span>
|
110 |
+
<input type="radio" name="selected-reason" value="' . $reason['id'] . '"/>
|
111 |
+
</span>
|
112 |
+
<span>' . $reason['text'] . '</span>
|
113 |
+
</label>
|
114 |
+
<div class="bws-modal-internal-message">' . $reason_internal_message . '</div>
|
115 |
+
</li>';
|
116 |
+
} ?>
|
117 |
+
<script type="text/javascript">
|
118 |
+
(function($) {
|
119 |
+
var modalHtml =
|
120 |
+
'<div class="bws-modal bws-modal-deactivation-feedback">'
|
121 |
+
+ ' <div class="bws-modal-dialog">'
|
122 |
+
+ ' <div class="bws-modal-body">'
|
123 |
+
+ ' <h2><?php _e( 'Quick Feedback', 'bestwebsoft' ); ?></h2>'
|
124 |
+
+ ' <div class="bws-modal-panel active"><p><?php _e( 'If you have a moment, please let us know why you are deactivating', 'bestwebsoft' ); ?>:</p><ul>' + <?php echo json_encode( $reasons_list_items_html ); ?> + '</ul></div>'
|
125 |
+
+ ' </div>'
|
126 |
+
+ ' <div class="bws-modal-footer">'
|
127 |
+
+ ' <label class="bws-modal-anonymous-label">'
|
128 |
+
+ ' <input type="checkbox" />'
|
129 |
+
+ ' <?php _e( 'Anonymous feedback', 'bestwebsoft' ); ?>'
|
130 |
+
+ ' </label>'
|
131 |
+
+ ' <a href="#" class="button button-secondary bws-modal-button-close"><?php _e( 'Cancel', 'bestwebsoft' ); ?></a>'
|
132 |
+
+ ' <a href="#" class="button button-primary bws-modal-button-deactivate"></a>'
|
133 |
+
+ ' </div>'
|
134 |
+
+ ' </div>'
|
135 |
+
+ '</div>',
|
136 |
+
$modal = $( modalHtml ),
|
137 |
+
$deactivateLink = $( '#the-list .active[data-plugin="<?php echo $basename; ?>"] .deactivate a' ),
|
138 |
+
$anonymousFeedback = $modal.find( '.bws-modal-anonymous-label' ),
|
139 |
+
selectedReasonID = false;
|
140 |
+
|
141 |
+
/* WP added data-plugin attr after 4.5 version/ In prev version was id attr */
|
142 |
+
if ( 0 == $deactivateLink.length )
|
143 |
+
$deactivateLink = $( '#the-list .active#<?php echo $plugin_id; ?> .deactivate a' );
|
144 |
+
|
145 |
+
$modal.appendTo( $( 'body' ) );
|
146 |
+
|
147 |
+
BwsModalRegisterEventHandlers();
|
148 |
+
|
149 |
+
function BwsModalRegisterEventHandlers() {
|
150 |
+
$deactivateLink.click( function( evt ) {
|
151 |
+
evt.preventDefault();
|
152 |
+
|
153 |
+
/* Display the dialog box.*/
|
154 |
+
BwsModalReset();
|
155 |
+
$modal.addClass( 'active' );
|
156 |
+
$( 'body' ).addClass( 'has-bws-modal' );
|
157 |
+
});
|
158 |
+
|
159 |
+
$modal.on( 'input propertychange', '.bws-modal-reason-input input', function() {
|
160 |
+
if ( ! BwsModalIsReasonSelected( 'OTHER' ) ) {
|
161 |
+
return;
|
162 |
+
}
|
163 |
+
|
164 |
+
var reason = $( this ).val().trim();
|
165 |
+
|
166 |
+
/* If reason is not empty, remove the error-message class of the message container to change the message color back to default. */
|
167 |
+
if ( reason.length > 0 ) {
|
168 |
+
$modal.find( '.message' ).removeClass( 'error-message' );
|
169 |
+
BwsModalEnableDeactivateButton();
|
170 |
+
}
|
171 |
+
});
|
172 |
+
|
173 |
+
$modal.on( 'blur', '.bws-modal-reason-input input', function() {
|
174 |
+
var $userReason = $( this );
|
175 |
+
|
176 |
+
setTimeout( function() {
|
177 |
+
if ( ! BwsModalIsReasonSelected( 'OTHER' ) ) {
|
178 |
+
return;
|
179 |
+
}
|
180 |
+
|
181 |
+
/* If reason is empty, add the error-message class to the message container to change the message color to red. */
|
182 |
+
if ( 0 === $userReason.val().trim().length ) {
|
183 |
+
$modal.find( '.message' ).addClass( 'error-message' );
|
184 |
+
BwsModalDisableDeactivateButton();
|
185 |
+
}
|
186 |
+
}, 150 );
|
187 |
+
});
|
188 |
+
|
189 |
+
$modal.on( 'click', '.bws-modal-footer .button', function( evt ) {
|
190 |
+
evt.preventDefault();
|
191 |
+
|
192 |
+
if ( $( this ).hasClass( 'disabled' ) ) {
|
193 |
+
return;
|
194 |
+
}
|
195 |
+
|
196 |
+
var _parent = $( this ).parents( '.bws-modal:first' ),
|
197 |
+
_this = $( this );
|
198 |
+
|
199 |
+
if ( _this.hasClass( 'allow-deactivate' ) ) {
|
200 |
+
var $radio = $modal.find( 'input[type="radio"]:checked' );
|
201 |
+
|
202 |
+
if ( 0 === $radio.length ) {
|
203 |
+
/* If no selected reason, just deactivate the plugin. */
|
204 |
+
window.location.href = $deactivateLink.attr( 'href' );
|
205 |
+
return;
|
206 |
+
}
|
207 |
+
|
208 |
+
var $selected_reason = $radio.parents('li:first'),
|
209 |
+
$input = $selected_reason.find( 'textarea, input[type="text"]' ),
|
210 |
+
userReason = ( 0 !== $input.length ) ? $input.val().trim() : '';
|
211 |
+
|
212 |
+
if ( BwsModalIsReasonSelected( 'OTHER' ) && '' === userReason ) {
|
213 |
+
return;
|
214 |
+
}
|
215 |
+
|
216 |
+
$.ajax({
|
217 |
+
url : ajaxurl,
|
218 |
+
method : 'POST',
|
219 |
+
data : {
|
220 |
+
'action' : 'bws_submit_uninstall_reason_action',
|
221 |
+
'plugin' : '<?php echo $basename; ?>',
|
222 |
+
'reason_id' : $radio.val(),
|
223 |
+
'reason_info' : userReason,
|
224 |
+
'is_anonymous' : ( $anonymousFeedback.find( 'input' ).prop( 'checked' ) ),
|
225 |
+
'bws_ajax_nonce' : '<?php echo wp_create_nonce( 'bws_ajax_nonce' ); ?>'
|
226 |
+
},
|
227 |
+
beforeSend: function() {
|
228 |
+
_parent.find( '.bws-modal-footer .button' ).addClass( 'disabled' );
|
229 |
+
_parent.find( '.bws-modal-footer .button-secondary' ).text( '<?php _e( 'Processing', 'bestwebsoft' ); ?>' + '...' );
|
230 |
+
},
|
231 |
+
complete : function( message ) {
|
232 |
+
/* Do not show the dialog box, deactivate the plugin. */
|
233 |
+
window.location.href = $deactivateLink.attr( 'href' );
|
234 |
+
}
|
235 |
+
});
|
236 |
+
} else if ( _this.hasClass( 'bws-modal-button-deactivate' ) ) {
|
237 |
+
/* Change the Deactivate button's text and show the reasons panel. */
|
238 |
+
_parent.find( '.bws-modal-button-deactivate' ).addClass( 'allow-deactivate' );
|
239 |
+
BwsModalShowPanel();
|
240 |
+
}
|
241 |
+
});
|
242 |
+
|
243 |
+
$modal.on( 'click', 'input[type="radio"]', function() {
|
244 |
+
var $selectedReasonOption = $( this );
|
245 |
+
|
246 |
+
/* If the selection has not changed, do not proceed. */
|
247 |
+
if ( selectedReasonID === $selectedReasonOption.val() )
|
248 |
+
return;
|
249 |
+
|
250 |
+
selectedReasonID = $selectedReasonOption.val();
|
251 |
+
|
252 |
+
$anonymousFeedback.show();
|
253 |
+
|
254 |
+
var _parent = $( this ).parents( 'li:first' );
|
255 |
+
|
256 |
+
$modal.find( '.bws-modal-reason-input' ).remove();
|
257 |
+
$modal.find( '.bws-modal-internal-message' ).hide();
|
258 |
+
$modal.find( '.bws-modal-button-deactivate' ).text( '<?php _e( 'Submit & Deactivate', 'bestwebsoft' ); ?>' );
|
259 |
+
|
260 |
+
BwsModalEnableDeactivateButton();
|
261 |
+
|
262 |
+
if ( _parent.hasClass( 'has-internal-message' ) ) {
|
263 |
+
_parent.find( '.bws-modal-internal-message' ).show();
|
264 |
+
}
|
265 |
+
|
266 |
+
if (_parent.hasClass('has-input')) {
|
267 |
+
var reasonInputHtml = '<div class="bws-modal-reason-input"><span class="message"></span>' + ( ( 'textfield' === _parent.data( 'input-type' ) ) ? '<input type="text" />' : '<textarea rows="5" maxlength="200"></textarea>' ) + '</div>';
|
268 |
+
|
269 |
+
_parent.append( $( reasonInputHtml ) );
|
270 |
+
_parent.find( 'input, textarea' ).attr( 'placeholder', _parent.data( 'input-placeholder' ) ).focus();
|
271 |
+
|
272 |
+
if ( BwsModalIsReasonSelected( 'OTHER' ) ) {
|
273 |
+
$modal.find( '.message' ).text( '<?php _e( 'Please tell us the reason so we can improve it.', 'bestwebsoft' ); ?>' ).show();
|
274 |
+
BwsModalDisableDeactivateButton();
|
275 |
+
}
|
276 |
+
}
|
277 |
+
});
|
278 |
+
|
279 |
+
/* If the user has clicked outside the window, cancel it. */
|
280 |
+
$modal.on( 'click', function( evt ) {
|
281 |
+
var $target = $( evt.target );
|
282 |
+
|
283 |
+
/* If the user has clicked anywhere in the modal dialog, just return. */
|
284 |
+
if ( $target.hasClass( 'bws-modal-body' ) || $target.hasClass( 'bws-modal-footer' ) ) {
|
285 |
+
return;
|
286 |
+
}
|
287 |
+
|
288 |
+
/* If the user has not clicked the close button and the clicked element is inside the modal dialog, just return. */
|
289 |
+
if ( ! $target.hasClass( 'bws-modal-button-close' ) && ( $target.parents( '.bws-modal-body' ).length > 0 || $target.parents( '.bws-modal-footer' ).length > 0 ) ) {
|
290 |
+
return;
|
291 |
+
}
|
292 |
+
|
293 |
+
/* Close the modal dialog */
|
294 |
+
$modal.removeClass( 'active' );
|
295 |
+
$( 'body' ).removeClass( 'has-bws-modal' );
|
296 |
+
|
297 |
+
return false;
|
298 |
+
});
|
299 |
+
}
|
300 |
+
|
301 |
+
function BwsModalIsReasonSelected( reasonID ) {
|
302 |
+
/* Get the selected radio input element.*/
|
303 |
+
return ( reasonID == $modal.find('input[type="radio"]:checked').val() );
|
304 |
+
}
|
305 |
+
|
306 |
+
function BwsModalReset() {
|
307 |
+
selectedReasonID = false;
|
308 |
+
|
309 |
+
BwsModalEnableDeactivateButton();
|
310 |
+
|
311 |
+
/* Uncheck all radio buttons.*/
|
312 |
+
$modal.find( 'input[type="radio"]' ).prop( 'checked', false );
|
313 |
+
|
314 |
+
/* Remove all input fields ( textfield, textarea ).*/
|
315 |
+
$modal.find( '.bws-modal-reason-input' ).remove();
|
316 |
+
|
317 |
+
$modal.find( '.message' ).hide();
|
318 |
+
|
319 |
+
$anonymousFeedback.find( 'input' ).prop( 'checked', false );
|
320 |
+
|
321 |
+
/* Hide, since by default there is no selected reason.*/
|
322 |
+
$anonymousFeedback.hide();
|
323 |
+
|
324 |
+
var $deactivateButton = $modal.find( '.bws-modal-button-deactivate' );
|
325 |
+
|
326 |
+
$deactivateButton.addClass( 'allow-deactivate' );
|
327 |
+
BwsModalShowPanel();
|
328 |
+
}
|
329 |
+
|
330 |
+
function BwsModalEnableDeactivateButton() {
|
331 |
+
$modal.find( '.bws-modal-button-deactivate' ).removeClass( 'disabled' );
|
332 |
+
}
|
333 |
+
|
334 |
+
function BwsModalDisableDeactivateButton() {
|
335 |
+
$modal.find( '.bws-modal-button-deactivate' ).addClass( 'disabled' );
|
336 |
+
}
|
337 |
+
|
338 |
+
function BwsModalShowPanel() {
|
339 |
+
$modal.find( '.bws-modal-panel' ).addClass( 'active' );
|
340 |
+
/* Update the deactivate button's text */
|
341 |
+
$modal.find( '.bws-modal-button-deactivate' ).text( '<?php _e( 'Deactivate', 'bestwebsoft' ); ?>' );
|
342 |
+
}
|
343 |
+
})(jQuery);
|
344 |
+
</script>
|
345 |
+
<?php }
|
346 |
+
}
|
347 |
+
}
|
348 |
+
|
349 |
+
/**
|
350 |
+
* Called after the user has submitted his reason for deactivating the plugin.
|
351 |
+
*
|
352 |
+
* @since 2.1.3
|
353 |
+
*/
|
354 |
+
if ( ! function_exists( 'bws_submit_uninstall_reason_action' ) ) {
|
355 |
+
function bws_submit_uninstall_reason_action() {
|
356 |
+
global $bstwbsftwppdtplgns_options, $wp_version, $bstwbsftwppdtplgns_active_plugins;
|
357 |
+
|
358 |
+
wp_verify_nonce( $_REQUEST['bws_ajax_nonce'], 'bws_ajax_nonce' );
|
359 |
+
|
360 |
+
$reason_id = isset( $_REQUEST['reason_id'] ) ? stripcslashes( esc_html( $_REQUEST['reason_id'] ) ) : '';
|
361 |
+
$basename = isset( $_REQUEST['plugin'] ) ? stripcslashes( esc_html( $_REQUEST['plugin'] ) ) : '';
|
362 |
+
|
363 |
+
if ( empty( $reason_id ) || empty( $basename ) ) {
|
364 |
+
exit;
|
365 |
+
}
|
366 |
+
|
367 |
+
$reason_info = isset( $_REQUEST['reason_info'] ) ? stripcslashes( esc_html( $_REQUEST['reason_info'] ) ) : '';
|
368 |
+
if ( ! empty( $reason_info ) ) {
|
369 |
+
$reason_info = substr( $reason_info, 0, 255 );
|
370 |
+
}
|
371 |
+
$is_anonymous = isset( $_REQUEST['is_anonymous'] ) && ( 1 == $_REQUEST['is_anonymous'] || 'true' == strtolower( $_REQUEST['is_anonymous'] ) );
|
372 |
+
|
373 |
+
$options = array(
|
374 |
+
'product' => $basename,
|
375 |
+
'reason_id' => $reason_id,
|
376 |
+
'reason_info' => $reason_info,
|
377 |
+
);
|
378 |
+
|
379 |
+
if ( ! $is_anonymous ) {
|
380 |
+
if ( ! isset( $bstwbsftwppdtplgns_options ) )
|
381 |
+
$bstwbsftwppdtplgns_options = ( is_multisite() ) ? get_site_option( 'bstwbsftwppdtplgns_options' ) : get_option( 'bstwbsftwppdtplgns_options' );
|
382 |
+
|
383 |
+
if ( ! empty( $bstwbsftwppdtplgns_options['track_usage']['usage_id'] ) ) {
|
384 |
+
$options['usage_id'] = $bstwbsftwppdtplgns_options['track_usage']['usage_id'];
|
385 |
+
} else {
|
386 |
+
$options['usage_id'] = false;
|
387 |
+
$options['url'] = get_bloginfo( 'url' );
|
388 |
+
$options['wp_version'] = $wp_version;
|
389 |
+
$options['is_active'] = false;
|
390 |
+
$options['version'] = $bstwbsftwppdtplgns_active_plugins[ $basename ]['Version'];
|
391 |
+
}
|
392 |
+
}
|
393 |
+
|
394 |
+
/* send data */
|
395 |
+
$raw_response = wp_remote_post( 'http://bestwebsoft.com/wp-content/plugins/products-statistics/deactivation-feedback/', array(
|
396 |
+
'method' => 'POST',
|
397 |
+
'body' => $options,
|
398 |
+
'timeout' => 15,
|
399 |
+
) );
|
400 |
+
|
401 |
+
if ( ! is_wp_error( $raw_response ) && 200 == wp_remote_retrieve_response_code( $raw_response ) ) {
|
402 |
+
if ( ! $is_anonymous ) {
|
403 |
+
$response = maybe_unserialize( wp_remote_retrieve_body( $raw_response ) );
|
404 |
+
|
405 |
+
if ( is_array( $response ) && ! empty( $response['usage_id'] ) && $response['usage_id'] != $options['usage_id'] ) {
|
406 |
+
$bstwbsftwppdtplgns_options['track_usage']['usage_id'] = $response['usage_id'];
|
407 |
+
|
408 |
+
if ( is_multisite() )
|
409 |
+
update_site_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
410 |
+
else
|
411 |
+
update_option( 'bstwbsftwppdtplgns_options', $bstwbsftwppdtplgns_options );
|
412 |
+
}
|
413 |
+
}
|
414 |
+
|
415 |
+
echo 'done';
|
416 |
+
} else {
|
417 |
+
echo $response->get_error_code() . ': ' . $response->get_error_message();
|
418 |
+
}
|
419 |
+
exit;
|
420 |
+
}
|
421 |
+
}
|
422 |
+
|
423 |
+
add_action( 'wp_ajax_bws_submit_uninstall_reason_action', 'bws_submit_uninstall_reason_action' );
|
bws_menu/languages/bestwebsoft-cs_CZ.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-cs_CZ.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: Mik013\n"
|
8 |
"Language-Team: Mik013\n"
|
9 |
"Language: cs_CZ\n"
|
@@ -14,13 +14,14 @@ 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 |
-
#: bws_functions.php:
|
20 |
msgid "requires"
|
21 |
msgstr "vyžaduje"
|
22 |
|
23 |
-
#: bws_functions.php:
|
24 |
msgid ""
|
25 |
"or higher, that is why it has been deactivated! Please upgrade WordPress and "
|
26 |
"try again."
|
@@ -28,60 +29,55 @@ msgstr ""
|
|
28 |
"nebo vyšší, to je důvod, proč byl deaktivován! Proveďte upgrade WordPressu a "
|
29 |
"zkuste to znovu."
|
30 |
|
31 |
-
#: bws_functions.php:
|
32 |
msgid "Back to the WordPress"
|
33 |
msgstr "Zpět do WordPressu"
|
34 |
|
35 |
-
#: bws_functions.php:
|
36 |
msgid "Plugins page"
|
37 |
msgstr "Stránka pluginů"
|
38 |
|
39 |
-
#: bws_functions.php:
|
40 |
msgid "Like the plugin?"
|
41 |
msgstr "Líbí se vám plugin?"
|
42 |
|
43 |
-
#: bws_functions.php:
|
44 |
msgid "Rate it"
|
45 |
msgstr "Ohodnoťte jej"
|
46 |
|
47 |
-
#: bws_functions.php:
|
48 |
msgid "Need help?"
|
49 |
msgstr "Potřebujete pomoc?"
|
50 |
|
51 |
-
#: bws_functions.php:
|
52 |
msgid "Visit Help Center"
|
53 |
msgstr "Navštivte Centrum pomoci"
|
54 |
|
55 |
-
#: bws_functions.php:
|
56 |
msgid "Want to support the plugin?"
|
57 |
msgstr "Chcete podpořit plugin?"
|
58 |
|
59 |
-
#: bws_functions.php:
|
60 |
msgid "Donate"
|
61 |
msgstr "Darujte"
|
62 |
|
63 |
-
#: bws_functions.php:
|
64 |
msgid "WARNING: Illegal use notification"
|
65 |
msgstr "POZOR: upozornění na neoprávněné užívání"
|
66 |
|
67 |
-
#: bws_functions.php:
|
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
|
71 |
-
"We strongly recommend you to solve the problem within 24 hours,
|
72 |
-
"the Pro plugin will be deactivated."
|
73 |
msgstr ""
|
74 |
-
"Pro licenci pluginu můžete používat pouze pro jednu doménu. Prosím "
|
75 |
-
"zkontrolujte a případně upravte Váš licenční klíč na vaší osobní stránce - "
|
76 |
-
"Klientské zóně. Důrazně doporučujeme, aby jste tento problém odstranili "
|
77 |
-
"během 24 hodin, jinak bude Pro plugin deaktivován."
|
78 |
|
79 |
-
#: bws_functions.php:
|
80 |
-
#: class-bws-settings.php:143
|
81 |
msgid "Learn More"
|
82 |
msgstr "Dozvědět se více"
|
83 |
|
84 |
-
#: bws_functions.php:
|
85 |
msgid ""
|
86 |
"Notice: Your Pro Trial license has expired. To continue using the plugin, "
|
87 |
"you should buy a Pro license"
|
@@ -89,7 +85,7 @@ msgstr ""
|
|
89 |
"Poznámka: Vaše zkušební Pro verze pluginu vypršela. Pro další používání "
|
90 |
"pluginu bude nutné zakoupit PRO licenci"
|
91 |
|
92 |
-
#: bws_functions.php:
|
93 |
msgid ""
|
94 |
"Your license has expired. To continue getting top-priority support and "
|
95 |
"plugin updates, you should extend it."
|
@@ -97,24 +93,24 @@ msgstr ""
|
|
97 |
"Vaše licence vypršela. Pro přístup k top-prioritní podpoře a aktualizacím "
|
98 |
"pluginu ji budete muset prodloužit."
|
99 |
|
100 |
-
#: bws_functions.php:
|
101 |
msgid "Learn more"
|
102 |
msgstr "Dozvědět se více"
|
103 |
|
104 |
-
#: bws_functions.php:
|
105 |
#, php-format
|
106 |
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
107 |
msgstr "Poznámka: Používáte zkušební Pro verzi pluginu %s."
|
108 |
|
109 |
-
#: bws_functions.php:
|
110 |
msgid "Notice: You are using the Pro Trial license of plugin."
|
111 |
msgstr "Poznámka: Používáte zkušební Pro verzi pluginu."
|
112 |
|
113 |
-
#: bws_functions.php:
|
114 |
msgid "The Pro Trial license will expire on"
|
115 |
msgstr "Zkušební Pro licence vyprší"
|
116 |
|
117 |
-
#: bws_functions.php:
|
118 |
msgid ""
|
119 |
"or higher! We do not guarantee that our plugin will work correctly. Please "
|
120 |
"upgrade to WordPress latest version."
|
@@ -122,73 +118,73 @@ msgstr ""
|
|
122 |
"nebo vyšší! Nezaručujeme, že náš plugin bude fungovat správně. Prosím "
|
123 |
"aktualizujte na nejnovější verzi WordPressu."
|
124 |
|
125 |
-
#: bws_functions.php:
|
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:
|
131 |
msgid "Let's get started"
|
132 |
msgstr "Začněme"
|
133 |
|
134 |
-
#: bws_functions.php:
|
135 |
#: bws_menu.php:559
|
136 |
msgid "Settings"
|
137 |
msgstr "Nastavení"
|
138 |
|
139 |
-
#: bws_functions.php:
|
140 |
-
#: class-bws-settings.php:
|
141 |
msgid "or"
|
142 |
msgstr "nebo"
|
143 |
|
144 |
-
#: bws_functions.php:
|
145 |
msgid "Add New"
|
146 |
msgstr "Přidat nový"
|
147 |
|
148 |
-
#: bws_functions.php:
|
149 |
-
#: bws_functions.php:
|
150 |
msgid "Close notice"
|
151 |
msgstr "Zavřít poznámku"
|
152 |
|
153 |
-
#: bws_functions.php:
|
154 |
msgid "Thank you for installing plugins by BestWebSoft!"
|
155 |
msgstr "Děkujeme vám za instalaci pluginů od BestWebSoft!"
|
156 |
|
157 |
-
#: bws_functions.php:
|
158 |
msgid "More Details"
|
159 |
msgstr "Více detailů"
|
160 |
|
161 |
-
#: bws_functions.php:
|
162 |
msgid "Less Details"
|
163 |
msgstr "Méně detailů"
|
164 |
|
165 |
-
#: bws_functions.php:
|
166 |
msgid "Deprecated function(-s) is used on the site here:"
|
167 |
msgstr "Zastaralé funkce se používají na stránkách zde:"
|
168 |
|
169 |
-
#: bws_functions.php:
|
170 |
msgid ""
|
171 |
"This function(-s) will be removed over time. Please update the product(-s)."
|
172 |
msgstr ""
|
173 |
"Tato funkce, bude v průběhu času odstraněna. Prosím aktualizujte produkt."
|
174 |
|
175 |
-
#: bws_functions.php:
|
176 |
msgid "It’s time to upgrade your"
|
177 |
msgstr "Je čas na aktualizaci vašeho"
|
178 |
|
179 |
-
#: bws_functions.php:
|
180 |
msgid "to"
|
181 |
msgstr "na"
|
182 |
|
183 |
-
#: bws_functions.php:
|
184 |
msgid "version!"
|
185 |
msgstr "verzi!"
|
186 |
|
187 |
-
#: bws_functions.php:
|
188 |
msgid "Extend standard plugin functionality with new great options."
|
189 |
msgstr "Rozšiřuje standardní funkce pluginu novými skvělými možnostmi."
|
190 |
|
191 |
-
#: bws_functions.php:
|
192 |
#, php-format
|
193 |
msgid ""
|
194 |
"Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
|
@@ -197,12 +193,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 "Děkujeme, že jste si vybrali %s plugin!"
|
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,25 +206,25 @@ 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:
|
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."
|
@@ -236,81 +232,77 @@ 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 BWS Shortcode"
|
241 |
msgstr "Přidávejte zkrácený kód BWS"
|
242 |
|
243 |
-
#: bws_functions.php:
|
244 |
msgid "Add BWS Plugins Shortcode"
|
245 |
msgstr "Přidávejte zkrácený kód BWS pluginů"
|
246 |
|
247 |
-
#: bws_functions.php:
|
248 |
msgid "Add shortcode"
|
249 |
msgstr "Přidat krátký kód"
|
250 |
|
251 |
-
#: bws_functions.php:
|
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:
|
257 |
msgid "Close"
|
258 |
msgstr "Zavřít"
|
259 |
|
260 |
-
#: bws_functions.php:
|
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:
|
265 |
msgid "Yes, restore all settings"
|
266 |
msgstr "Ano, obnovit veškerá nastavení"
|
267 |
|
268 |
-
#: bws_functions.php:
|
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:
|
273 |
msgid "Plugin"
|
274 |
msgstr "Plugin"
|
275 |
|
276 |
-
#: bws_functions.php:
|
277 |
msgid "Shortcode settings"
|
278 |
msgstr "Nastavení krátkých kódů"
|
279 |
|
280 |
-
#: bws_functions.php:
|
281 |
msgid "The shortcode will be inserted"
|
282 |
msgstr "Bude vložen krátký kód"
|
283 |
|
284 |
-
#: bws_functions.php:
|
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:
|
293 |
msgid "For more information:"
|
294 |
msgstr "Pro více informací:"
|
295 |
|
296 |
-
#: bws_functions.php:
|
297 |
msgid "Documentation"
|
298 |
msgstr "Dokumentace"
|
299 |
|
300 |
-
#: bws_functions.php:
|
301 |
msgid "Video Instructions"
|
302 |
msgstr "Video instrukce"
|
303 |
|
304 |
-
#: bws_functions.php:
|
305 |
msgid "Submit a Request"
|
306 |
msgstr "Odeslat požadavek"
|
307 |
|
308 |
-
#: bws_menu.php:101 class-bws-settings.php:
|
309 |
msgid "Wrong license key"
|
310 |
msgstr "Špatný licenční klíč"
|
311 |
|
312 |
-
#: bws_menu.php:122 class-bws-settings.php:
|
313 |
-
#: class-bws-settings.php:
|
314 |
#: deprecated.php:352
|
315 |
msgid ""
|
316 |
"Something went wrong. Please try again later. If the error appears again, "
|
@@ -319,13 +311,13 @@ msgstr ""
|
|
319 |
"Něco se pokazilo. Prosím zkuste to znovu později. Pokud se chyba objeví "
|
320 |
"znovu, obraťte se na nás"
|
321 |
|
322 |
-
#: bws_menu.php:122 class-bws-settings.php:
|
323 |
-
#: class-bws-settings.php:
|
324 |
#: deprecated.php:352
|
325 |
msgid "We are sorry for inconvenience."
|
326 |
msgstr "Omlouváme se za nepříjemnosti."
|
327 |
|
328 |
-
#: bws_menu.php:128 class-bws-settings.php:
|
329 |
#: deprecated.php:139 deprecated.php:358
|
330 |
msgid "Wrong license key."
|
331 |
msgstr "Neplatný licenční klíč."
|
@@ -346,7 +338,7 @@ msgstr "Přihlášení"
|
|
346 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
347 |
msgstr "Bohužel, překročili jste dostupný počet pokusů pro daný den."
|
348 |
|
349 |
-
#: bws_menu.php:134 class-bws-settings.php:
|
350 |
#, php-format
|
351 |
msgid ""
|
352 |
"Unfortunately, Your license has expired. To continue getting top-priority "
|
@@ -355,7 +347,7 @@ msgstr ""
|
|
355 |
"Bohužel, Vaše licence vypršela. Chcete-li pokračovat v získávání top-"
|
356 |
"prioritní podpory a aktualizace pluginu měli byste ji prodloužit ve vašem %s"
|
357 |
|
358 |
-
#: bws_menu.php:136 class-bws-settings.php:
|
359 |
msgid ""
|
360 |
"Unfortunately, the Pro licence was already installed to this domain. The Pro "
|
361 |
"Trial license can be installed only once."
|
@@ -363,11 +355,11 @@ msgstr ""
|
|
363 |
"Bohužel, pro tuto doménu již byla použita Pro licence. Zkušební Pro licence "
|
364 |
"může být instalována pouze jedenkrát."
|
365 |
|
366 |
-
#: bws_menu.php:142 class-bws-settings.php:
|
367 |
msgid "The license key is valid."
|
368 |
msgstr "Licenční klíč je platný."
|
369 |
|
370 |
-
#: bws_menu.php:144 class-bws-settings.php:
|
371 |
msgid "Your license will expire on"
|
372 |
msgstr "Vaše licence vyprší"
|
373 |
|
@@ -375,7 +367,7 @@ msgstr "Vaše licence vyprší"
|
|
375 |
msgid "Congratulations! Pro Membership license is activated successfully."
|
376 |
msgstr "Gratulujeme! PRO členství bylo úspěšně aktivováno."
|
377 |
|
378 |
-
#: bws_menu.php:153 class-bws-settings.php:
|
379 |
msgid ""
|
380 |
"Something went wrong. Try again later or upload the plugin manually. We are "
|
381 |
"sorry for inconvenience."
|
@@ -554,7 +546,7 @@ msgstr "Pluginy"
|
|
554 |
msgid "Themes"
|
555 |
msgstr "Šablony"
|
556 |
|
557 |
-
#: bws_menu.php:309 bws_menu.php:313 bws_menu.php:
|
558 |
msgid "System status"
|
559 |
msgstr "Stav systému"
|
560 |
|
@@ -575,7 +567,7 @@ msgstr "Získejte přístup k %s+ Premiovým pluginům"
|
|
575 |
msgid "Subscribe to Pro Membership"
|
576 |
msgstr "Přihlásit se k Pro členství"
|
577 |
|
578 |
-
#: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:
|
579 |
#: deprecated.php:227
|
580 |
msgid "Check license key"
|
581 |
msgstr "Zkontrolovat licenční klíč"
|
@@ -585,7 +577,7 @@ msgid "Enter your license key"
|
|
585 |
msgstr "Vložte váš licenční klíč"
|
586 |
|
587 |
#: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
|
588 |
-
#: class-bws-settings.php:
|
589 |
#: deprecated.php:629 deprecated.php:700 deprecated.php:709
|
590 |
msgid "Activate"
|
591 |
msgstr "Aktivovat"
|
@@ -627,8 +619,8 @@ msgid "Downloading install package from"
|
|
627 |
msgstr "Stahování instalačního balíčku z"
|
628 |
|
629 |
#: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
|
630 |
-
#: class-bws-settings.php:
|
631 |
-
#: class-bws-settings.php:
|
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ě"
|
@@ -641,11 +633,11 @@ msgstr "Rozbalování balíčku"
|
|
641 |
msgid "Installing the plugin"
|
642 |
msgstr "Instalace pluginu"
|
643 |
|
644 |
-
#: bws_menu.php:417 class-bws-settings.php:
|
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:
|
649 |
msgid ""
|
650 |
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
651 |
"plugin manually"
|
@@ -658,7 +650,7 @@ msgstr ""
|
|
658 |
msgid "The plugin %s is successfully installed."
|
659 |
msgstr "Plugin %s úspěšně nainstalován."
|
660 |
|
661 |
-
#: bws_menu.php:434 class-bws-settings.php:
|
662 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
663 |
msgstr "Nelze zapisovat do UploadDir. Prosím, nahrajte plugin ručně"
|
664 |
|
@@ -674,7 +666,7 @@ msgstr "Návrat na BestWebSoft panel"
|
|
674 |
msgid "All"
|
675 |
msgstr "Vše"
|
676 |
|
677 |
-
#: bws_menu.php:450 bws_menu.php:
|
678 |
msgid "Installed"
|
679 |
msgstr "Instalováno"
|
680 |
|
@@ -707,7 +699,7 @@ msgstr "Aktualizovat na %s"
|
|
707 |
msgid "Install Now"
|
708 |
msgstr "Instalovat nyní"
|
709 |
|
710 |
-
#: bws_menu.php:549 class-bws-settings.php:
|
711 |
msgid "Upgrade to Pro"
|
712 |
msgstr "Aktualizovat na Pro"
|
713 |
|
@@ -724,86 +716,86 @@ msgid "Nothing found. Try another criteria."
|
|
724 |
msgstr "Nic nenalezeno. Zkuste jiná kritéria."
|
725 |
|
726 |
# podle, nebo taky od
|
727 |
-
#: bws_menu.php:621
|
728 |
#, php-format
|
729 |
msgid "By %s"
|
730 |
msgstr "podle %s"
|
731 |
|
732 |
-
#: bws_menu.php:
|
733 |
msgid "Already Installed"
|
734 |
msgstr "Již instalováno"
|
735 |
|
736 |
-
#: bws_menu.php:
|
737 |
msgid "Browse Free WordPress Themes"
|
738 |
msgstr "Procházet WordPress šablony zdarma"
|
739 |
|
740 |
-
#: bws_menu.php:
|
741 |
msgid "Send to support"
|
742 |
msgstr "Odeslat podpoře"
|
743 |
|
744 |
-
#: bws_menu.php:
|
745 |
msgid "Send to custom email »"
|
746 |
msgstr "Odeslat na vlastní e-mail »"
|
747 |
|
748 |
-
#: class-bws-settings.php:
|
749 |
msgid "Information"
|
750 |
msgstr "Informace"
|
751 |
|
752 |
-
#: class-bws-settings.php:
|
753 |
msgid "Inactive"
|
754 |
msgstr "Neaktivní"
|
755 |
|
756 |
-
#: class-bws-settings.php:
|
757 |
msgid "Expired"
|
758 |
msgstr "Expirované"
|
759 |
|
760 |
-
#: class-bws-settings.php:
|
761 |
#, php-format
|
762 |
msgid "%s day(-s) left"
|
763 |
msgstr "%s dnů zbývá"
|
764 |
|
765 |
-
#: class-bws-settings.php:
|
766 |
#, php-format
|
767 |
msgid "Expired on %s"
|
768 |
msgstr "Vypršela dne %s"
|
769 |
|
770 |
-
#: class-bws-settings.php:
|
771 |
msgid "Renew Now"
|
772 |
msgstr "Obnovit nyní"
|
773 |
|
774 |
-
#: class-bws-settings.php:
|
775 |
msgid "Active"
|
776 |
msgstr "Aktivní"
|
777 |
|
778 |
-
#: class-bws-settings.php:
|
779 |
msgid "License"
|
780 |
msgstr "Licence"
|
781 |
|
782 |
-
#: class-bws-settings.php:
|
783 |
msgid "Status"
|
784 |
msgstr "Stav"
|
785 |
|
786 |
-
#: class-bws-settings.php:
|
787 |
msgid "Version"
|
788 |
msgstr "Verze"
|
789 |
|
790 |
-
#: class-bws-settings.php:
|
791 |
msgid "All plugin settings were restored."
|
792 |
msgstr "Všechna nastavení pluginu byla obnovena."
|
793 |
|
794 |
-
#: class-bws-settings.php:
|
795 |
msgid "Custom Code"
|
796 |
msgstr "Vlastní kód"
|
797 |
|
798 |
-
#: class-bws-settings.php:
|
799 |
msgid "You do not have sufficient permissions to edit plugins for this site."
|
800 |
msgstr "Nemáte dostatečná oprávnění pro úpravu pluginů tohoto webu."
|
801 |
|
802 |
-
#: class-bws-settings.php:
|
803 |
msgid "These styles will be added to the header on all pages of your site."
|
804 |
msgstr "Tyto styly budou přidány do hlaviček všech stránek vašeho webu."
|
805 |
|
806 |
-
#: class-bws-settings.php:
|
807 |
#, php-format
|
808 |
msgid ""
|
809 |
"This PHP code will be hooked to the %s action and will be printed on front "
|
@@ -811,11 +803,11 @@ msgid ""
|
|
811 |
msgstr ""
|
812 |
"Tento PHP kód bude závislý na %s akci a bude zobrazen pouze na front endu."
|
813 |
|
814 |
-
#: class-bws-settings.php:
|
815 |
msgid "These code will be added to the header on all pages of your site."
|
816 |
msgstr "Tento kód bude přidán do záhlaví všech stránek vašeho webu."
|
817 |
|
818 |
-
#: class-bws-settings.php:
|
819 |
#, php-format
|
820 |
msgid ""
|
821 |
"You need to make this files writable before you can save your changes. See "
|
@@ -824,96 +816,96 @@ msgstr ""
|
|
824 |
"Před tím, než budete moci vaše změny uložit, nastavte těmto souborům "
|
825 |
"oprávnění pro zápis. Podívejte se %s na Kodex %s pro více informací."
|
826 |
|
827 |
-
#: class-bws-settings.php:
|
828 |
msgid "Browsing"
|
829 |
msgstr "Procházení"
|
830 |
|
831 |
-
#: class-bws-settings.php:
|
832 |
#, php-format
|
833 |
msgid "Activate custom %s code."
|
834 |
msgstr "Aktivovat vlastní %s kód."
|
835 |
|
836 |
-
#: class-bws-settings.php:
|
837 |
#, php-format
|
838 |
msgid "Learn more about %s"
|
839 |
msgstr "Dozvědět se více o %s"
|
840 |
|
841 |
-
#: class-bws-settings.php:
|
842 |
msgid "Miscellaneous Settings"
|
843 |
msgstr "Různá nastavení"
|
844 |
|
845 |
-
#: class-bws-settings.php:
|
846 |
#, php-format
|
847 |
msgid ""
|
848 |
"It is prohibited to change %s settings on this site in the %s network "
|
849 |
"settings."
|
850 |
msgstr "Je zakázáno měnit nastavení %s na této stránce v %s nastavení sítě."
|
851 |
|
852 |
-
#: class-bws-settings.php:
|
853 |
#, php-format
|
854 |
msgid ""
|
855 |
"It is prohibited to view %s settings on this site in the %s network settings."
|
856 |
msgstr "Je zobrazit nastavení %s na této stránce v %s nastavení sítě."
|
857 |
|
858 |
-
#: class-bws-settings.php:
|
859 |
msgid "Pro Options"
|
860 |
msgstr "PRO nastavení"
|
861 |
|
862 |
-
#: class-bws-settings.php:
|
863 |
msgid "Enable to display plugin Pro options."
|
864 |
msgstr "Povolit zobrazení PRO voleb pluginu."
|
865 |
|
866 |
-
#: class-bws-settings.php:
|
867 |
msgid "Track Usage"
|
868 |
msgstr "Sběr statistik"
|
869 |
|
870 |
-
#: class-bws-settings.php:
|
871 |
msgid ""
|
872 |
"Enable to allow tracking plugin usage anonymously in order to make it better."
|
873 |
msgstr ""
|
874 |
"Umožnit anonymní sledování využití pluginu tak, aby mohl být dále vylepšován."
|
875 |
|
876 |
-
#: class-bws-settings.php:
|
877 |
msgid "Default Settings"
|
878 |
msgstr "Výchozí nastavení"
|
879 |
|
880 |
-
#: class-bws-settings.php:
|
881 |
msgid "Restore Settings"
|
882 |
msgstr "Obnovit nastavení"
|
883 |
|
884 |
-
#: class-bws-settings.php:
|
885 |
msgid "This will restore plugin settings to defaults."
|
886 |
msgstr "Toto obnoví veškerá nastavení pluginu na výchozí hodnoty."
|
887 |
|
888 |
-
#: class-bws-settings.php:
|
889 |
msgid "Import / Export"
|
890 |
msgstr "Import / Export"
|
891 |
|
892 |
-
#: class-bws-settings.php:
|
893 |
-
#: class-bws-settings.php:
|
894 |
msgid "License Key"
|
895 |
msgstr "Licenční klíč"
|
896 |
|
897 |
-
#: class-bws-settings.php:
|
898 |
msgid "Congratulations! Pro license is activated successfully."
|
899 |
msgstr "Gratulujeme! PRO licence byla úspěšně aktivována."
|
900 |
|
901 |
-
#: class-bws-settings.php:
|
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:
|
907 |
msgid "Settings page"
|
908 |
msgstr "Stránka nastavení"
|
909 |
|
910 |
-
#: class-bws-settings.php:
|
911 |
#, php-format
|
912 |
msgid "Enter your license key to activate %s and get premium plugin features."
|
913 |
msgstr ""
|
914 |
"Vložte váš licenční klíč pro aktivaci %s a získání prémiových fukcí pluginu."
|
915 |
|
916 |
-
#: class-bws-settings.php:
|
917 |
#: deprecated.php:703
|
918 |
msgid ""
|
919 |
"Unfortunately, you have exceeded the number of available tries per day. "
|
@@ -922,12 +914,12 @@ msgstr ""
|
|
922 |
"Bohužel, jste překročili počet dostupných pokusů za den. Prosím, nahrejte "
|
923 |
"plugin ručně."
|
924 |
|
925 |
-
#: class-bws-settings.php:
|
926 |
#, php-format
|
927 |
msgid "Start Your Free %s-Day Trial Now"
|
928 |
msgstr "Vyzkoušejte vaší %s-denní zkušební verzi zdarma nyní"
|
929 |
|
930 |
-
#: class-bws-settings.php:
|
931 |
msgid ""
|
932 |
"If necessary, you can check if the license key is correct or reenter it in "
|
933 |
"the field below."
|
@@ -935,15 +927,15 @@ msgstr ""
|
|
935 |
"V případě potřeby zkontrolujte, je-li licenční klíč správně zadán, případně "
|
936 |
"jej do pole níže vložte znova."
|
937 |
|
938 |
-
#: class-bws-settings.php:
|
939 |
msgid "Manage License Settings"
|
940 |
msgstr "Správa nastavení licencí"
|
941 |
|
942 |
-
#: class-bws-settings.php:
|
943 |
msgid "Login to Client Area"
|
944 |
msgstr "Přihlášení do klientská zóny"
|
945 |
|
946 |
-
#: class-bws-settings.php:
|
947 |
msgid ""
|
948 |
"Manage active licenses, download BWS products, and view your payment history "
|
949 |
"using BestWebSoft Client Area."
|
@@ -951,12 +943,12 @@ msgstr ""
|
|
951 |
"Správa aktivních licencí, stahování BWS produktů a zobrazení historie plateb "
|
952 |
"v BestWebSoft klientské zóně."
|
953 |
|
954 |
-
#: class-bws-settings.php:
|
955 |
#: deprecated.php:360
|
956 |
msgid "This license key is bound to another site."
|
957 |
msgstr "Tento licenční klíč je přidružen k jinému webu."
|
958 |
|
959 |
-
#: class-bws-settings.php:
|
960 |
msgid ""
|
961 |
"This license key is valid, but Your license has expired. If you want to "
|
962 |
"update our plugin in future, you should extend the license."
|
@@ -964,11 +956,11 @@ msgstr ""
|
|
964 |
"Tento licenční klíč je platný, ale vaše licence vypršela. Chcete-li náš "
|
965 |
"plugin v budoucnosti aktualizovat, měli by jste licenci prodloužit."
|
966 |
|
967 |
-
#: class-bws-settings.php:
|
968 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
969 |
msgstr "Bohužel, překročili jste dostupný počet pokusů."
|
970 |
|
971 |
-
#: class-bws-settings.php:
|
972 |
msgid ""
|
973 |
"Unfortunately, the Pro Trial licence was already installed to this domain. "
|
974 |
"The Pro Trial license can be installed only once."
|
@@ -976,37 +968,133 @@ msgstr ""
|
|
976 |
"Bohužel, tato zkušební Pro licence již pro tuto doménu byla použita. "
|
977 |
"Zkušební Pro licence může být instalována pouze jedenkrát."
|
978 |
|
979 |
-
#: class-bws-settings.php:
|
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:
|
984 |
#, php-format
|
985 |
msgid ""
|
986 |
"In order to continue using the plugin it is necessary to buy a %s license."
|
987 |
msgstr ""
|
988 |
"Pokud chcete nadále využívat tento plugin, je nutné zakoupit %s licenci."
|
989 |
|
990 |
-
#: class-bws-settings.php:
|
991 |
msgid "Please, enter Your license key"
|
992 |
msgstr "Prosím, vložte váš licenční klíč"
|
993 |
|
994 |
-
#: class-bws-settings.php:
|
995 |
msgid "Need Help?"
|
996 |
msgstr "Potřebujete pomoc?"
|
997 |
|
998 |
-
#: class-bws-settings.php:
|
999 |
msgid "Read the Instruction"
|
1000 |
msgstr "Přečíst si instrukce"
|
1001 |
|
1002 |
-
#: class-bws-settings.php:
|
1003 |
msgid "Watch the Video"
|
1004 |
msgstr "Přehrát video"
|
1005 |
|
1006 |
-
#: class-bws-settings.php:
|
1007 |
msgid "Start Your Free Trial"
|
1008 |
msgstr "Vyzkoušejte po omezenou dobu"
|
1009 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1010 |
#: deprecated.php:93
|
1011 |
msgid "System Status"
|
1012 |
msgstr "Stav systému"
|
@@ -1145,17 +1233,17 @@ msgstr "SEO"
|
|
1145 |
msgid "SMM"
|
1146 |
msgstr "SMM"
|
1147 |
|
1148 |
-
#: product_list.php:
|
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:
|
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:
|
1159 |
msgid ""
|
1160 |
"Allow customers to reach you using secure contact form plugin any website "
|
1161 |
"must have."
|
@@ -1163,45 +1251,37 @@ 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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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."
|
@@ -1209,7 +1289,7 @@ 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:
|
1213 |
msgid ""
|
1214 |
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1215 |
"widgets."
|
@@ -1217,7 +1297,7 @@ 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:
|
1221 |
msgid ""
|
1222 |
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1223 |
"clicks."
|
@@ -1225,15 +1305,7 @@ 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:
|
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."
|
@@ -1241,13 +1313,15 @@ 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:
|
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:
|
1251 |
msgid ""
|
1252 |
"Add Adsense ads to WordPress website pages, posts, custom posts, search "
|
1253 |
"results, categories, tags, and widgets."
|
@@ -1255,13 +1329,13 @@ 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:
|
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:
|
1265 |
msgid ""
|
1266 |
"Protect WordPress website forms from spam entries with Google Captcha "
|
1267 |
"(reCaptcha)."
|
@@ -1269,12 +1343,12 @@ msgstr ""
|
|
1269 |
"Chraňte WordPress webové formuláře před spamem s Google Captcha (\"reCAPTCHA"
|
1270 |
"\")."
|
1271 |
|
1272 |
-
#: product_list.php:
|
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:
|
1278 |
msgid ""
|
1279 |
"Generate and add XML sitemap to WordPress website. Help search engines index "
|
1280 |
"your blog."
|
@@ -1282,7 +1356,7 @@ 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:
|
1286 |
msgid ""
|
1287 |
"Replace external WordPress website links with Google shortlinks and track "
|
1288 |
"click stats."
|
@@ -1290,7 +1364,7 @@ msgstr ""
|
|
1290 |
"Nahradit externí odkazy WordPress webu pomocí Google shortlinks a sledujte "
|
1291 |
"statistiky kliknutí."
|
1292 |
|
1293 |
-
#: product_list.php:
|
1294 |
msgid ""
|
1295 |
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1296 |
"hostnames, etc."
|
@@ -1298,7 +1372,7 @@ 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:
|
1302 |
msgid ""
|
1303 |
"Create your personal job board and listing WordPress website. Search jobs, "
|
1304 |
"submit CV/resumes, choose candidates."
|
@@ -1306,7 +1380,7 @@ 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:
|
1310 |
msgid ""
|
1311 |
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1312 |
"attempts."
|
@@ -1314,7 +1388,7 @@ 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:
|
1318 |
msgid ""
|
1319 |
"Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
|
1320 |
"5 plugins included – profile, insider, etc."
|
@@ -1322,7 +1396,7 @@ 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:
|
1326 |
msgid ""
|
1327 |
"Translate WordPress website content to other languages manually. Create "
|
1328 |
"multilingual pages, posts, widgets, menus, etc."
|
@@ -1330,7 +1404,7 @@ 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:
|
1334 |
msgid ""
|
1335 |
"Add customizable pagination to WordPress website. Split long content to "
|
1336 |
"multiple pages for better navigation."
|
@@ -1338,7 +1412,7 @@ 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:
|
1342 |
msgid ""
|
1343 |
"Generate PDF files and print WordPress posts/pages. Customize document "
|
1344 |
"header/footer styles and appearance."
|
@@ -1346,7 +1420,7 @@ 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:
|
1350 |
msgid ""
|
1351 |
"Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
|
1352 |
"Profile) to WordPress posts, pages and widgets."
|
@@ -1354,7 +1428,7 @@ 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:
|
1358 |
msgid ""
|
1359 |
"Create your personal portfolio WordPress website. Manage and showcase past "
|
1360 |
"projects to get more clients."
|
@@ -1362,13 +1436,13 @@ 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:
|
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:
|
1372 |
msgid ""
|
1373 |
"Add extra fields to default WordPress user profile. The easiest way to "
|
1374 |
"create and manage additional custom values."
|
@@ -1376,7 +1450,7 @@ 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:
|
1380 |
msgid ""
|
1381 |
"Add and display HTML advertisement banner on WordPress website. Customize "
|
1382 |
"bar styles and appearance."
|
@@ -1384,7 +1458,7 @@ 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:
|
1388 |
msgid ""
|
1389 |
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1390 |
"widgets."
|
@@ -1392,7 +1466,7 @@ 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:
|
1396 |
msgid ""
|
1397 |
"Add rating plugin to your WordPress website to receive feedback from your "
|
1398 |
"customers."
|
@@ -1400,7 +1474,7 @@ 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:
|
1404 |
msgid ""
|
1405 |
"Create your personal real estate WordPress website. Sell, rent and buy "
|
1406 |
"properties. Add, search and browse listings easily."
|
@@ -1409,15 +1483,7 @@ msgstr ""
|
|
1409 |
"pronajímejte a kupujte nemovitosti. Snadno přidejte hledání a procházení "
|
1410 |
"seznamy."
|
1411 |
|
1412 |
-
#: product_list.php:
|
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."
|
@@ -1425,7 +1491,7 @@ 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:
|
1429 |
msgid ""
|
1430 |
"Send bulk email messages to WordPress users. Custom templates, advanced "
|
1431 |
"settings and detailed reports."
|
@@ -1433,7 +1499,7 @@ 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:
|
1437 |
msgid ""
|
1438 |
"The best responsive slider plugin for your WordPress website. Create "
|
1439 |
"beautifully animated slides just in a few clicks."
|
@@ -1441,7 +1507,7 @@ 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:
|
1445 |
msgid ""
|
1446 |
"Configure SMTP server to receive email messages from WordPress to Gmail, "
|
1447 |
"Yahoo, Hotmail and other services."
|
@@ -1449,7 +1515,7 @@ 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:
|
1453 |
msgid ""
|
1454 |
"Add social media buttons and widgets to WordPress posts, pages and widgets. "
|
1455 |
"FB, Twitter, G+1, Pinterest, LinkedIn."
|
@@ -1457,7 +1523,7 @@ 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:
|
1461 |
msgid ""
|
1462 |
"Add social media login, registration, and commenting to your WordPress "
|
1463 |
"website."
|
@@ -1465,7 +1531,7 @@ 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:
|
1469 |
msgid ""
|
1470 |
"Add email newsletter sign up form to WordPress posts, pages and widgets. "
|
1471 |
"Collect data and subscribe your users."
|
@@ -1474,7 +1540,7 @@ msgstr ""
|
|
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:
|
1478 |
msgid ""
|
1479 |
"Add testimonials and feedbacks from your customers to WordPress website "
|
1480 |
"posts, pages, and widgets."
|
@@ -1482,7 +1548,7 @@ 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:
|
1486 |
msgid ""
|
1487 |
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1488 |
"attendance and generate reports."
|
@@ -1490,7 +1556,7 @@ msgstr ""
|
|
1490 |
"Nejlepší timesheet plugin pro WordPress. Sledujte časy zaměstnanců, "
|
1491 |
"kontrolujte jejich přítomnost a generujte sestavy."
|
1492 |
|
1493 |
-
#: product_list.php:
|
1494 |
msgid ""
|
1495 |
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1496 |
"and pages."
|
@@ -1498,7 +1564,7 @@ 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:
|
1502 |
msgid ""
|
1503 |
"Automatically check and update WordPress website core with all installed "
|
1504 |
"plugins and themes to the latest versions."
|
@@ -1506,7 +1572,7 @@ 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:
|
1510 |
msgid ""
|
1511 |
"Powerful user role management plugin for WordPress website. Create, edit, "
|
1512 |
"copy, and delete user roles."
|
@@ -1514,7 +1580,7 @@ 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:
|
1518 |
msgid ""
|
1519 |
"Display live count of online visitors who are currently browsing your "
|
1520 |
"WordPress website."
|
@@ -1522,7 +1588,7 @@ 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:
|
1526 |
msgid ""
|
1527 |
"Backup and export Zendesk Help Center content automatically to your "
|
1528 |
"WordPress website database."
|
@@ -1530,6 +1596,41 @@ 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 |
|
@@ -1547,6 +1648,3 @@ msgstr ""
|
|
1547 |
|
1548 |
#~ msgid "Utilities"
|
1549 |
#~ msgstr "Utility"
|
1550 |
-
|
1551 |
-
#~ msgid "Other"
|
1552 |
-
#~ msgstr "Ostatní"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-08-28 09:55+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-08-28 09:55+0300\n"
|
7 |
"Last-Translator: Mik013\n"
|
8 |
"Language-Team: Mik013\n"
|
9 |
"Language: cs_CZ\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
"X-Generator: Poedit 1.8.7.1\n"
|
17 |
+
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: bws_functions.php:73 bws_functions.php:191
|
21 |
msgid "requires"
|
22 |
msgstr "vyžaduje"
|
23 |
|
24 |
+
#: bws_functions.php:75
|
25 |
msgid ""
|
26 |
"or higher, that is why it has been deactivated! Please upgrade WordPress and "
|
27 |
"try again."
|
29 |
"nebo vyšší, to je důvod, proč byl deaktivován! Proveďte upgrade WordPressu a "
|
30 |
"zkuste to znovu."
|
31 |
|
32 |
+
#: bws_functions.php:76
|
33 |
msgid "Back to the WordPress"
|
34 |
msgstr "Zpět do WordPressu"
|
35 |
|
36 |
+
#: bws_functions.php:78
|
37 |
msgid "Plugins page"
|
38 |
msgstr "Stránka pluginů"
|
39 |
|
40 |
+
#: bws_functions.php:92
|
41 |
msgid "Like the plugin?"
|
42 |
msgstr "Líbí se vám plugin?"
|
43 |
|
44 |
+
#: bws_functions.php:94
|
45 |
msgid "Rate it"
|
46 |
msgstr "Ohodnoťte jej"
|
47 |
|
48 |
+
#: bws_functions.php:103
|
49 |
msgid "Need help?"
|
50 |
msgstr "Potřebujete pomoc?"
|
51 |
|
52 |
+
#: bws_functions.php:104 bws_functions.php:911 class-bws-settings.php:1056
|
53 |
msgid "Visit Help Center"
|
54 |
msgstr "Navštivte Centrum pomoci"
|
55 |
|
56 |
+
#: bws_functions.php:107
|
57 |
msgid "Want to support the plugin?"
|
58 |
msgstr "Chcete podpořit plugin?"
|
59 |
|
60 |
+
#: bws_functions.php:108 bws_menu.php:553
|
61 |
msgid "Donate"
|
62 |
msgstr "Darujte"
|
63 |
|
64 |
+
#: bws_functions.php:128
|
65 |
msgid "WARNING: Illegal use notification"
|
66 |
msgstr "POZOR: upozornění na neoprávněné užívání"
|
67 |
|
68 |
+
#: bws_functions.php:128
|
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 your personal Client "
|
72 |
+
"Area. We strongly recommend you to solve the problem within 24 hours, "
|
73 |
+
"otherwise the Pro plugin will be deactivated."
|
74 |
msgstr ""
|
|
|
|
|
|
|
|
|
75 |
|
76 |
+
#: bws_functions.php:128 bws_functions.php:340 class-bws-settings.php:144
|
|
|
77 |
msgid "Learn More"
|
78 |
msgstr "Dozvědět se více"
|
79 |
|
80 |
+
#: bws_functions.php:145
|
81 |
msgid ""
|
82 |
"Notice: Your Pro Trial license has expired. To continue using the plugin, "
|
83 |
"you should buy a Pro license"
|
85 |
"Poznámka: Vaše zkušební Pro verze pluginu vypršela. Pro další používání "
|
86 |
"pluginu bude nutné zakoupit PRO licenci"
|
87 |
|
88 |
+
#: bws_functions.php:147
|
89 |
msgid ""
|
90 |
"Your license has expired. To continue getting top-priority support and "
|
91 |
"plugin updates, you should extend it."
|
93 |
"Vaše licence vypršela. Pro přístup k top-prioritní podpoře a aktualizacím "
|
94 |
"pluginu ji budete muset prodloužit."
|
95 |
|
96 |
+
#: bws_functions.php:147 bws_functions.php:383 deprecated.php:584
|
97 |
msgid "Learn more"
|
98 |
msgstr "Dozvědět se více"
|
99 |
|
100 |
+
#: bws_functions.php:165
|
101 |
#, php-format
|
102 |
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
103 |
msgstr "Poznámka: Používáte zkušební Pro verzi pluginu %s."
|
104 |
|
105 |
+
#: bws_functions.php:167
|
106 |
msgid "Notice: You are using the Pro Trial license of plugin."
|
107 |
msgstr "Poznámka: Používáte zkušební Pro verzi pluginu."
|
108 |
|
109 |
+
#: bws_functions.php:170
|
110 |
msgid "The Pro Trial license will expire on"
|
111 |
msgstr "Zkušební Pro licence vyprší"
|
112 |
|
113 |
+
#: bws_functions.php:193
|
114 |
msgid ""
|
115 |
"or higher! We do not guarantee that our plugin will work correctly. Please "
|
116 |
"upgrade to WordPress latest version."
|
118 |
"nebo vyšší! Nezaručujeme, že náš plugin bude fungovat správně. Prosím "
|
119 |
"aktualizujte na nejnovější verzi WordPressu."
|
120 |
|
121 |
+
#: bws_functions.php:208
|
122 |
#, php-format
|
123 |
msgid "Thank you for installing %s plugin!"
|
124 |
msgstr "Děkujeme vám za instalaci %s pluginu!"
|
125 |
|
126 |
+
#: bws_functions.php:209
|
127 |
msgid "Let's get started"
|
128 |
msgstr "Začněme"
|
129 |
|
130 |
+
#: bws_functions.php:210 bws_functions.php:243 bws_menu.php:557
|
131 |
#: bws_menu.php:559
|
132 |
msgid "Settings"
|
133 |
msgstr "Nastavení"
|
134 |
|
135 |
+
#: bws_functions.php:212 bws_menu.php:328 class-bws-settings.php:745
|
136 |
+
#: class-bws-settings.php:1058 class-bws-settings.php:1068 deprecated.php:694
|
137 |
msgid "or"
|
138 |
msgstr "nebo"
|
139 |
|
140 |
+
#: bws_functions.php:213 bws_functions.php:245
|
141 |
msgid "Add New"
|
142 |
msgstr "Přidat nový"
|
143 |
|
144 |
+
#: bws_functions.php:217 bws_functions.php:227 bws_functions.php:331
|
145 |
+
#: bws_functions.php:379 bws_functions.php:481
|
146 |
msgid "Close notice"
|
147 |
msgstr "Zavřít poznámku"
|
148 |
|
149 |
+
#: bws_functions.php:232
|
150 |
msgid "Thank you for installing plugins by BestWebSoft!"
|
151 |
msgstr "Děkujeme vám za instalaci pluginů od BestWebSoft!"
|
152 |
|
153 |
+
#: bws_functions.php:234
|
154 |
msgid "More Details"
|
155 |
msgstr "Více detailů"
|
156 |
|
157 |
+
#: bws_functions.php:235
|
158 |
msgid "Less Details"
|
159 |
msgstr "Méně detailů"
|
160 |
|
161 |
+
#: bws_functions.php:263
|
162 |
msgid "Deprecated function(-s) is used on the site here:"
|
163 |
msgstr "Zastaralé funkce se používají na stránkách zde:"
|
164 |
|
165 |
+
#: bws_functions.php:277
|
166 |
msgid ""
|
167 |
"This function(-s) will be removed over time. Please update the product(-s)."
|
168 |
msgstr ""
|
169 |
"Tato funkce, bude v průběhu času odstraněna. Prosím aktualizujte produkt."
|
170 |
|
171 |
+
#: bws_functions.php:336
|
172 |
msgid "It’s time to upgrade your"
|
173 |
msgstr "Je čas na aktualizaci vašeho"
|
174 |
|
175 |
+
#: bws_functions.php:336
|
176 |
msgid "to"
|
177 |
msgstr "na"
|
178 |
|
179 |
+
#: bws_functions.php:336
|
180 |
msgid "version!"
|
181 |
msgstr "verzi!"
|
182 |
|
183 |
+
#: bws_functions.php:337
|
184 |
msgid "Extend standard plugin functionality with new great options."
|
185 |
msgstr "Rozšiřuje standardní funkce pluginu novými skvělými možnostmi."
|
186 |
|
187 |
+
#: bws_functions.php:383
|
188 |
#, php-format
|
189 |
msgid ""
|
190 |
"Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
|
193 |
"Váš licenční klíč pro %s vyprší dne %s a nebudou vám poskytovány TOP-"
|
194 |
"PRIOROTNÍ PODPORA a AKTUALIZACE."
|
195 |
|
196 |
+
#: bws_functions.php:476
|
197 |
#, php-format
|
198 |
msgid "Thank you for choosing %s plugin!"
|
199 |
msgstr "Děkujeme, že jste si vybrali %s plugin!"
|
200 |
|
201 |
+
#: bws_functions.php:477
|
202 |
msgid ""
|
203 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
204 |
"we'd love to hear about it!"
|
206 |
"Máte-li nápad, nebo doporučení na novou vlastnost, kterou by jste v pluginu "
|
207 |
"chtěli vidět, rádi o něm uslyšíme!"
|
208 |
|
209 |
+
#: bws_functions.php:478
|
210 |
msgid "Suggest a Feature"
|
211 |
msgstr "Navrhnout vlastnost"
|
212 |
|
213 |
+
#: bws_functions.php:494 class-bws-settings.php:538 class-bws-settings.php:541
|
214 |
+
#: class-bws-settings.php:593 class-bws-settings.php:596
|
215 |
msgid "Notice"
|
216 |
msgstr "Poznámka"
|
217 |
|
218 |
+
#: bws_functions.php:494
|
219 |
msgid "The plugin's settings have been changed."
|
220 |
msgstr "Nastavení pluginu bylo změněno."
|
221 |
|
222 |
+
#: bws_functions.php:495 class-bws-settings.php:183 class-bws-settings.php:203
|
223 |
#: deprecated.php:640
|
224 |
msgid "Save Changes"
|
225 |
msgstr "Uložit změny"
|
226 |
|
227 |
+
#: bws_functions.php:509
|
228 |
msgid ""
|
229 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
230 |
"the \"Misc\" tab."
|
232 |
"Vždy se můžete podívat na možnosti prémiové verze, kliknutím na \"PRO "
|
233 |
"nastavení\" na \"Go PRO\" záložce."
|
234 |
|
235 |
+
#: bws_functions.php:647
|
236 |
msgid "Add BWS Shortcode"
|
237 |
msgstr "Přidávejte zkrácený kód BWS"
|
238 |
|
239 |
+
#: bws_functions.php:648
|
240 |
msgid "Add BWS Plugins Shortcode"
|
241 |
msgstr "Přidávejte zkrácený kód BWS pluginů"
|
242 |
|
243 |
+
#: bws_functions.php:667
|
244 |
msgid "Add shortcode"
|
245 |
msgstr "Přidat krátký kód"
|
246 |
|
247 |
+
#: bws_functions.php:667
|
248 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
249 |
msgstr ""
|
250 |
"Pomocí tohoto tlačítka můžete přidávat krátké kódy BestWebSoft pluginu."
|
251 |
|
252 |
+
#: bws_functions.php:723
|
253 |
msgid "Close"
|
254 |
msgstr "Zavřít"
|
255 |
|
256 |
+
#: bws_functions.php:815
|
257 |
msgid "Are you sure you want to restore default settings?"
|
258 |
msgstr "Jste si jisti, že chcete obnovit výchozí nastavení?"
|
259 |
|
260 |
+
#: bws_functions.php:818
|
261 |
msgid "Yes, restore all settings"
|
262 |
msgstr "Ano, obnovit veškerá nastavení"
|
263 |
|
264 |
+
#: bws_functions.php:819
|
265 |
msgid "No, go back to the settings page"
|
266 |
msgstr "Ne, vrátit se zpět na stránku nastavení"
|
267 |
|
268 |
+
#: bws_functions.php:861
|
269 |
msgid "Plugin"
|
270 |
msgstr "Plugin"
|
271 |
|
272 |
+
#: bws_functions.php:870
|
273 |
msgid "Shortcode settings"
|
274 |
msgstr "Nastavení krátkých kódů"
|
275 |
|
276 |
+
#: bws_functions.php:875
|
277 |
msgid "The shortcode will be inserted"
|
278 |
msgstr "Bude vložen krátký kód"
|
279 |
|
280 |
+
#: bws_functions.php:916
|
|
|
|
|
|
|
|
|
281 |
msgid "FAQ"
|
282 |
msgstr "Často kladené otázky (FAQ)"
|
283 |
|
284 |
+
#: bws_functions.php:922
|
285 |
msgid "For more information:"
|
286 |
msgstr "Pro více informací:"
|
287 |
|
288 |
+
#: bws_functions.php:923
|
289 |
msgid "Documentation"
|
290 |
msgstr "Dokumentace"
|
291 |
|
292 |
+
#: bws_functions.php:924
|
293 |
msgid "Video Instructions"
|
294 |
msgstr "Video instrukce"
|
295 |
|
296 |
+
#: bws_functions.php:925
|
297 |
msgid "Submit a Request"
|
298 |
msgstr "Odeslat požadavek"
|
299 |
|
300 |
+
#: bws_menu.php:101 class-bws-settings.php:790 deprecated.php:322
|
301 |
msgid "Wrong license key"
|
302 |
msgstr "Špatný licenční klíč"
|
303 |
|
304 |
+
#: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
|
305 |
+
#: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
|
306 |
#: deprecated.php:352
|
307 |
msgid ""
|
308 |
"Something went wrong. Please try again later. If the error appears again, "
|
311 |
"Něco se pokazilo. Prosím zkuste to znovu později. Pokud se chyba objeví "
|
312 |
"znovu, obraťte se na nás"
|
313 |
|
314 |
+
#: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
|
315 |
+
#: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
|
316 |
#: deprecated.php:352
|
317 |
msgid "We are sorry for inconvenience."
|
318 |
msgstr "Omlouváme se za nepříjemnosti."
|
319 |
|
320 |
+
#: bws_menu.php:128 class-bws-settings.php:822 class-bws-settings.php:925
|
321 |
#: deprecated.php:139 deprecated.php:358
|
322 |
msgid "Wrong license key."
|
323 |
msgstr "Neplatný licenční klíč."
|
338 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
339 |
msgstr "Bohužel, překročili jste dostupný počet pokusů pro daný den."
|
340 |
|
341 |
+
#: bws_menu.php:134 class-bws-settings.php:931 deprecated.php:364
|
342 |
#, php-format
|
343 |
msgid ""
|
344 |
"Unfortunately, Your license has expired. To continue getting top-priority "
|
347 |
"Bohužel, Vaše licence vypršela. Chcete-li pokračovat v získávání top-"
|
348 |
"prioritní podpory a aktualizace pluginu měli byste ji prodloužit ve vašem %s"
|
349 |
|
350 |
+
#: bws_menu.php:136 class-bws-settings.php:933 deprecated.php:366
|
351 |
msgid ""
|
352 |
"Unfortunately, the Pro licence was already installed to this domain. The Pro "
|
353 |
"Trial license can be installed only once."
|
355 |
"Bohužel, pro tuto doménu již byla použita Pro licence. Zkušební Pro licence "
|
356 |
"může být instalována pouze jedenkrát."
|
357 |
|
358 |
+
#: bws_menu.php:142 class-bws-settings.php:837 deprecated.php:153
|
359 |
msgid "The license key is valid."
|
360 |
msgstr "Licenční klíč je platný."
|
361 |
|
362 |
+
#: bws_menu.php:144 class-bws-settings.php:840 deprecated.php:156
|
363 |
msgid "Your license will expire on"
|
364 |
msgstr "Vaše licence vyprší"
|
365 |
|
367 |
msgid "Congratulations! Pro Membership license is activated successfully."
|
368 |
msgstr "Gratulujeme! PRO členství bylo úspěšně aktivováno."
|
369 |
|
370 |
+
#: bws_menu.php:153 class-bws-settings.php:1005 deprecated.php:435
|
371 |
msgid ""
|
372 |
"Something went wrong. Try again later or upload the plugin manually. We are "
|
373 |
"sorry for inconvenience."
|
546 |
msgid "Themes"
|
547 |
msgstr "Šablony"
|
548 |
|
549 |
+
#: bws_menu.php:309 bws_menu.php:313 bws_menu.php:641
|
550 |
msgid "System status"
|
551 |
msgstr "Stav systému"
|
552 |
|
567 |
msgid "Subscribe to Pro Membership"
|
568 |
msgstr "Přihlásit se k Pro členství"
|
569 |
|
570 |
+
#: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:758
|
571 |
#: deprecated.php:227
|
572 |
msgid "Check license key"
|
573 |
msgstr "Zkontrolovat licenční klíč"
|
577 |
msgstr "Vložte váš licenční klíč"
|
578 |
|
579 |
#: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
|
580 |
+
#: class-bws-settings.php:737 deprecated.php:259 deprecated.php:267
|
581 |
#: deprecated.php:629 deprecated.php:700 deprecated.php:709
|
582 |
msgid "Activate"
|
583 |
msgstr "Aktivovat"
|
619 |
msgstr "Stahování instalačního balíčku z"
|
620 |
|
621 |
#: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
|
622 |
+
#: class-bws-settings.php:957 class-bws-settings.php:979
|
623 |
+
#: class-bws-settings.php:1001 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 ručně"
|
633 |
msgid "Installing the plugin"
|
634 |
msgstr "Instalace pluginu"
|
635 |
|
636 |
+
#: bws_menu.php:417 class-bws-settings.php:969 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 ručně"
|
639 |
|
640 |
+
#: bws_menu.php:424 class-bws-settings.php:975 deprecated.php:405
|
641 |
msgid ""
|
642 |
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
643 |
"plugin manually"
|
650 |
msgid "The plugin %s is successfully installed."
|
651 |
msgstr "Plugin %s úspěšně nainstalován."
|
652 |
|
653 |
+
#: bws_menu.php:434 class-bws-settings.php:982 deprecated.php:412
|
654 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
655 |
msgstr "Nelze zapisovat do UploadDir. Prosím, nahrajte plugin ručně"
|
656 |
|
666 |
msgid "All"
|
667 |
msgstr "Vše"
|
668 |
|
669 |
+
#: bws_menu.php:450 bws_menu.php:630
|
670 |
msgid "Installed"
|
671 |
msgstr "Instalováno"
|
672 |
|
699 |
msgid "Install Now"
|
700 |
msgstr "Instalovat nyní"
|
701 |
|
702 |
+
#: bws_menu.php:549 class-bws-settings.php:157 class-bws-settings.php:1065
|
703 |
msgid "Upgrade to Pro"
|
704 |
msgstr "Aktualizovat na Pro"
|
705 |
|
716 |
msgstr "Nic nenalezeno. Zkuste jiná kritéria."
|
717 |
|
718 |
# podle, nebo taky od
|
719 |
+
#: bws_menu.php:621
|
720 |
#, php-format
|
721 |
msgid "By %s"
|
722 |
msgstr "podle %s"
|
723 |
|
724 |
+
#: bws_menu.php:628
|
725 |
msgid "Already Installed"
|
726 |
msgstr "Již instalováno"
|
727 |
|
728 |
+
#: bws_menu.php:638
|
729 |
msgid "Browse Free WordPress Themes"
|
730 |
msgstr "Procházet WordPress šablony zdarma"
|
731 |
|
732 |
+
#: bws_menu.php:647
|
733 |
msgid "Send to support"
|
734 |
msgstr "Odeslat podpoře"
|
735 |
|
736 |
+
#: bws_menu.php:654
|
737 |
msgid "Send to custom email »"
|
738 |
msgstr "Odeslat na vlastní e-mail »"
|
739 |
|
740 |
+
#: class-bws-settings.php:136
|
741 |
msgid "Information"
|
742 |
msgstr "Informace"
|
743 |
|
744 |
+
#: class-bws-settings.php:144
|
745 |
msgid "Inactive"
|
746 |
msgstr "Neaktivní"
|
747 |
|
748 |
+
#: class-bws-settings.php:152
|
749 |
msgid "Expired"
|
750 |
msgstr "Expirované"
|
751 |
|
752 |
+
#: class-bws-settings.php:155
|
753 |
#, php-format
|
754 |
msgid "%s day(-s) left"
|
755 |
msgstr "%s dnů zbývá"
|
756 |
|
757 |
+
#: class-bws-settings.php:161
|
758 |
#, php-format
|
759 |
msgid "Expired on %s"
|
760 |
msgstr "Vypršela dne %s"
|
761 |
|
762 |
+
#: class-bws-settings.php:161
|
763 |
msgid "Renew Now"
|
764 |
msgstr "Obnovit nyní"
|
765 |
|
766 |
+
#: class-bws-settings.php:163
|
767 |
msgid "Active"
|
768 |
msgstr "Aktivní"
|
769 |
|
770 |
+
#: class-bws-settings.php:168
|
771 |
msgid "License"
|
772 |
msgstr "Licence"
|
773 |
|
774 |
+
#: class-bws-settings.php:171
|
775 |
msgid "Status"
|
776 |
msgstr "Stav"
|
777 |
|
778 |
+
#: class-bws-settings.php:175
|
779 |
msgid "Version"
|
780 |
msgstr "Verze"
|
781 |
|
782 |
+
#: class-bws-settings.php:285
|
783 |
msgid "All plugin settings were restored."
|
784 |
msgstr "Všechna nastavení pluginu byla obnovena."
|
785 |
|
786 |
+
#: class-bws-settings.php:423
|
787 |
msgid "Custom Code"
|
788 |
msgstr "Vlastní kód"
|
789 |
|
790 |
+
#: class-bws-settings.php:427 deprecated.php:497
|
791 |
msgid "You do not have sufficient permissions to edit plugins for this site."
|
792 |
msgstr "Nemáte dostatečná oprávnění pro úpravu pluginů tohoto webu."
|
793 |
|
794 |
+
#: class-bws-settings.php:432 deprecated.php:618
|
795 |
msgid "These styles will be added to the header on all pages of your site."
|
796 |
msgstr "Tyto styly budou přidány do hlaviček všech stránek vašeho webu."
|
797 |
|
798 |
+
#: class-bws-settings.php:435 deprecated.php:620
|
799 |
#, php-format
|
800 |
msgid ""
|
801 |
"This PHP code will be hooked to the %s action and will be printed on front "
|
803 |
msgstr ""
|
804 |
"Tento PHP kód bude závislý na %s akci a bude zobrazen pouze na front endu."
|
805 |
|
806 |
+
#: class-bws-settings.php:438
|
807 |
msgid "These code will be added to the header on all pages of your site."
|
808 |
msgstr "Tento kód bude přidán do záhlaví všech stránek vašeho webu."
|
809 |
|
810 |
+
#: class-bws-settings.php:446 deprecated.php:644
|
811 |
#, php-format
|
812 |
msgid ""
|
813 |
"You need to make this files writable before you can save your changes. See "
|
816 |
"Před tím, než budete moci vaše změny uložit, nastavte těmto souborům "
|
817 |
"oprávnění pro zápis. Podívejte se %s na Kodex %s pro více informací."
|
818 |
|
819 |
+
#: class-bws-settings.php:456 deprecated.php:626
|
820 |
msgid "Browsing"
|
821 |
msgstr "Procházení"
|
822 |
|
823 |
+
#: class-bws-settings.php:461
|
824 |
#, php-format
|
825 |
msgid "Activate custom %s code."
|
826 |
msgstr "Aktivovat vlastní %s kód."
|
827 |
|
828 |
+
#: class-bws-settings.php:469 deprecated.php:633
|
829 |
#, php-format
|
830 |
msgid "Learn more about %s"
|
831 |
msgstr "Dozvědět se více o %s"
|
832 |
|
833 |
+
#: class-bws-settings.php:529
|
834 |
msgid "Miscellaneous Settings"
|
835 |
msgstr "Různá nastavení"
|
836 |
|
837 |
+
#: class-bws-settings.php:538 class-bws-settings.php:593
|
838 |
#, php-format
|
839 |
msgid ""
|
840 |
"It is prohibited to change %s settings on this site in the %s network "
|
841 |
"settings."
|
842 |
msgstr "Je zakázáno měnit nastavení %s na této stránce v %s nastavení sítě."
|
843 |
|
844 |
+
#: class-bws-settings.php:541 class-bws-settings.php:596
|
845 |
#, php-format
|
846 |
msgid ""
|
847 |
"It is prohibited to view %s settings on this site in the %s network settings."
|
848 |
msgstr "Je zobrazit nastavení %s na této stránce v %s nastavení sítě."
|
849 |
|
850 |
+
#: class-bws-settings.php:550
|
851 |
msgid "Pro Options"
|
852 |
msgstr "PRO nastavení"
|
853 |
|
854 |
+
#: class-bws-settings.php:554
|
855 |
msgid "Enable to display plugin Pro options."
|
856 |
msgstr "Povolit zobrazení PRO voleb pluginu."
|
857 |
|
858 |
+
#: class-bws-settings.php:560
|
859 |
msgid "Track Usage"
|
860 |
msgstr "Sběr statistik"
|
861 |
|
862 |
+
#: class-bws-settings.php:564
|
863 |
msgid ""
|
864 |
"Enable to allow tracking plugin usage anonymously in order to make it better."
|
865 |
msgstr ""
|
866 |
"Umožnit anonymní sledování využití pluginu tak, aby mohl být dále vylepšován."
|
867 |
|
868 |
+
#: class-bws-settings.php:569
|
869 |
msgid "Default Settings"
|
870 |
msgstr "Výchozí nastavení"
|
871 |
|
872 |
+
#: class-bws-settings.php:571
|
873 |
msgid "Restore Settings"
|
874 |
msgstr "Obnovit nastavení"
|
875 |
|
876 |
+
#: class-bws-settings.php:572
|
877 |
msgid "This will restore plugin settings to defaults."
|
878 |
msgstr "Toto obnoví veškerá nastavení pluginu na výchozí hodnoty."
|
879 |
|
880 |
+
#: class-bws-settings.php:584
|
881 |
msgid "Import / Export"
|
882 |
msgstr "Import / Export"
|
883 |
|
884 |
+
#: class-bws-settings.php:700 class-bws-settings.php:733
|
885 |
+
#: class-bws-settings.php:755
|
886 |
msgid "License Key"
|
887 |
msgstr "Licenční klíč"
|
888 |
|
889 |
+
#: class-bws-settings.php:723
|
890 |
msgid "Congratulations! Pro license is activated successfully."
|
891 |
msgstr "Gratulujeme! PRO licence byla úspěšně aktivována."
|
892 |
|
893 |
+
#: class-bws-settings.php:724
|
894 |
#, php-format
|
895 |
msgid "You will be automatically redirected to the %s in %s seconds."
|
896 |
msgstr "Za %s sekund budete automaticky přesměrováni na %s."
|
897 |
|
898 |
+
#: class-bws-settings.php:724
|
899 |
msgid "Settings page"
|
900 |
msgstr "Stránka nastavení"
|
901 |
|
902 |
+
#: class-bws-settings.php:739
|
903 |
#, php-format
|
904 |
msgid "Enter your license key to activate %s and get premium plugin features."
|
905 |
msgstr ""
|
906 |
"Vložte váš licenční klíč pro aktivaci %s a získání prémiových fukcí pluginu."
|
907 |
|
908 |
+
#: class-bws-settings.php:742 class-bws-settings.php:929 deprecated.php:362
|
909 |
#: deprecated.php:703
|
910 |
msgid ""
|
911 |
"Unfortunately, you have exceeded the number of available tries per day. "
|
914 |
"Bohužel, jste překročili počet dostupných pokusů za den. Prosím, nahrejte "
|
915 |
"plugin ručně."
|
916 |
|
917 |
+
#: class-bws-settings.php:745 deprecated.php:694
|
918 |
#, php-format
|
919 |
msgid "Start Your Free %s-Day Trial Now"
|
920 |
msgstr "Vyzkoušejte vaší %s-denní zkušební verzi zdarma nyní"
|
921 |
|
922 |
+
#: class-bws-settings.php:760
|
923 |
msgid ""
|
924 |
"If necessary, you can check if the license key is correct or reenter it in "
|
925 |
"the field below."
|
927 |
"V případě potřeby zkontrolujte, je-li licenční klíč správně zadán, případně "
|
928 |
"jej do pole níže vložte znova."
|
929 |
|
930 |
+
#: class-bws-settings.php:765
|
931 |
msgid "Manage License Settings"
|
932 |
msgstr "Správa nastavení licencí"
|
933 |
|
934 |
+
#: class-bws-settings.php:767
|
935 |
msgid "Login to Client Area"
|
936 |
msgstr "Přihlášení do klientská zóny"
|
937 |
|
938 |
+
#: class-bws-settings.php:769
|
939 |
msgid ""
|
940 |
"Manage active licenses, download BWS products, and view your payment history "
|
941 |
"using BestWebSoft Client Area."
|
943 |
"Správa aktivních licencí, stahování BWS produktů a zobrazení historie plateb "
|
944 |
"v BestWebSoft klientské zóně."
|
945 |
|
946 |
+
#: class-bws-settings.php:824 class-bws-settings.php:927 deprecated.php:141
|
947 |
#: deprecated.php:360
|
948 |
msgid "This license key is bound to another site."
|
949 |
msgstr "Tento licenční klíč je přidružen k jinému webu."
|
950 |
|
951 |
+
#: class-bws-settings.php:826 deprecated.php:143
|
952 |
msgid ""
|
953 |
"This license key is valid, but Your license has expired. If you want to "
|
954 |
"update our plugin in future, you should extend the license."
|
956 |
"Tento licenční klíč je platný, ale vaše licence vypršela. Chcete-li náš "
|
957 |
"plugin v budoucnosti aktualizovat, měli by jste licenci prodloužit."
|
958 |
|
959 |
+
#: class-bws-settings.php:828 deprecated.php:145
|
960 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
961 |
msgstr "Bohužel, překročili jste dostupný počet pokusů."
|
962 |
|
963 |
+
#: class-bws-settings.php:830 deprecated.php:147
|
964 |
msgid ""
|
965 |
"Unfortunately, the Pro Trial licence was already installed to this domain. "
|
966 |
"The Pro Trial license can be installed only once."
|
968 |
"Bohužel, tato zkušební Pro licence již pro tuto doménu byla použita. "
|
969 |
"Zkušební Pro licence může být instalována pouze jedenkrát."
|
970 |
|
971 |
+
#: class-bws-settings.php:835 deprecated.php:151
|
972 |
msgid "The Pro Trial license key is valid."
|
973 |
msgstr "Licenční klíč zkušební Pro verze je platný."
|
974 |
|
975 |
+
#: class-bws-settings.php:843 deprecated.php:159 deprecated.php:246
|
976 |
#, php-format
|
977 |
msgid ""
|
978 |
"In order to continue using the plugin it is necessary to buy a %s license."
|
979 |
msgstr ""
|
980 |
"Pokud chcete nadále využívat tento plugin, je nutné zakoupit %s licenci."
|
981 |
|
982 |
+
#: class-bws-settings.php:1040 deprecated.php:463
|
983 |
msgid "Please, enter Your license key"
|
984 |
msgstr "Prosím, vložte váš licenční klíč"
|
985 |
|
986 |
+
#: class-bws-settings.php:1052
|
987 |
msgid "Need Help?"
|
988 |
msgstr "Potřebujete pomoc?"
|
989 |
|
990 |
+
#: class-bws-settings.php:1054
|
991 |
msgid "Read the Instruction"
|
992 |
msgstr "Přečíst si instrukce"
|
993 |
|
994 |
+
#: class-bws-settings.php:1058
|
995 |
msgid "Watch the Video"
|
996 |
msgstr "Přehrát video"
|
997 |
|
998 |
+
#: class-bws-settings.php:1069
|
999 |
msgid "Start Your Free Trial"
|
1000 |
msgstr "Vyzkoušejte po omezenou dobu"
|
1001 |
|
1002 |
+
#: deactivation-form.php:26
|
1003 |
+
msgid "Need help? We are ready to answer your questions."
|
1004 |
+
msgstr ""
|
1005 |
+
|
1006 |
+
#: deactivation-form.php:26
|
1007 |
+
msgid "Contact Support"
|
1008 |
+
msgstr ""
|
1009 |
+
|
1010 |
+
#: deactivation-form.php:31
|
1011 |
+
msgid "The plugin is not working"
|
1012 |
+
msgstr ""
|
1013 |
+
|
1014 |
+
#: deactivation-form.php:33
|
1015 |
+
msgid "Kindly share what didn't work so we can fix it in future updates..."
|
1016 |
+
msgstr ""
|
1017 |
+
|
1018 |
+
#: deactivation-form.php:37
|
1019 |
+
msgid "The plugin didn't work as expected"
|
1020 |
+
msgstr ""
|
1021 |
+
|
1022 |
+
#: deactivation-form.php:39
|
1023 |
+
msgid "What did you expect?"
|
1024 |
+
msgstr ""
|
1025 |
+
|
1026 |
+
#: deactivation-form.php:43
|
1027 |
+
msgid "The plugin suddenly stopped working"
|
1028 |
+
msgstr ""
|
1029 |
+
|
1030 |
+
#: deactivation-form.php:50
|
1031 |
+
msgid "The plugin broke my site"
|
1032 |
+
msgstr ""
|
1033 |
+
|
1034 |
+
#: deactivation-form.php:57
|
1035 |
+
msgid "I couldn't understand how to get it work"
|
1036 |
+
msgstr ""
|
1037 |
+
|
1038 |
+
#: deactivation-form.php:64
|
1039 |
+
msgid "I found a better plugin"
|
1040 |
+
msgstr ""
|
1041 |
+
|
1042 |
+
#: deactivation-form.php:66
|
1043 |
+
msgid "What's the plugin name?"
|
1044 |
+
msgstr ""
|
1045 |
+
|
1046 |
+
#: deactivation-form.php:70
|
1047 |
+
msgid "The plugin is great, but I need specific feature that you don't support"
|
1048 |
+
msgstr ""
|
1049 |
+
|
1050 |
+
#: deactivation-form.php:72
|
1051 |
+
msgid "What feature?"
|
1052 |
+
msgstr ""
|
1053 |
+
|
1054 |
+
#: deactivation-form.php:76
|
1055 |
+
msgid "I no longer need the plugin"
|
1056 |
+
msgstr ""
|
1057 |
+
|
1058 |
+
#: deactivation-form.php:82
|
1059 |
+
msgid "It's a temporary deactivation, I'm just debugging an issue"
|
1060 |
+
msgstr ""
|
1061 |
+
|
1062 |
+
#: deactivation-form.php:88
|
1063 |
+
msgid "Other"
|
1064 |
+
msgstr "Ostatní"
|
1065 |
+
|
1066 |
+
#: deactivation-form.php:122
|
1067 |
+
msgid "Quick Feedback"
|
1068 |
+
msgstr ""
|
1069 |
+
|
1070 |
+
#: deactivation-form.php:123
|
1071 |
+
msgid "If you have a moment, please let us know why you are deactivating"
|
1072 |
+
msgstr ""
|
1073 |
+
|
1074 |
+
#: deactivation-form.php:128
|
1075 |
+
msgid "Anonymous feedback"
|
1076 |
+
msgstr ""
|
1077 |
+
|
1078 |
+
#: deactivation-form.php:130
|
1079 |
+
msgid "Cancel"
|
1080 |
+
msgstr ""
|
1081 |
+
|
1082 |
+
#: deactivation-form.php:230
|
1083 |
+
msgid "Processing"
|
1084 |
+
msgstr ""
|
1085 |
+
|
1086 |
+
#: deactivation-form.php:259
|
1087 |
+
msgid "Submit & Deactivate"
|
1088 |
+
msgstr ""
|
1089 |
+
|
1090 |
+
#: deactivation-form.php:276
|
1091 |
+
msgid "Please tell us the reason so we can improve it."
|
1092 |
+
msgstr ""
|
1093 |
+
|
1094 |
+
#: deactivation-form.php:344
|
1095 |
+
msgid "Deactivate"
|
1096 |
+
msgstr ""
|
1097 |
+
|
1098 |
#: deprecated.php:93
|
1099 |
msgid "System Status"
|
1100 |
msgstr "Stav systému"
|
1233 |
msgid "SMM"
|
1234 |
msgstr "SMM"
|
1235 |
|
1236 |
+
#: product_list.php:23
|
1237 |
msgid ""
|
1238 |
"Protect WordPress website forms from spam entries by means of math logic."
|
1239 |
msgstr ""
|
1240 |
"Chraňte WordPress webové formuláře před spamem pomocí matematické logiky."
|
1241 |
|
1242 |
+
#: product_list.php:35
|
1243 |
msgid "Create your personal car rental/booking and reservation website."
|
1244 |
msgstr "Vytvořte si osobní rezervační web - auta/hotely."
|
1245 |
|
1246 |
+
#: product_list.php:45
|
1247 |
msgid ""
|
1248 |
"Allow customers to reach you using secure contact form plugin any website "
|
1249 |
"must have."
|
1251 |
"Umožněte zákazníkům kontaktovat vás pomocí pluginu zabezpečeného kontaktního "
|
1252 |
"formuláře, tohle musí mít každý web."
|
1253 |
|
1254 |
+
#: product_list.php:55
|
1255 |
msgid "Add unlimited number of contact forms to WordPress website."
|
1256 |
msgstr "Přidávejte neomezený počet kontaktních formulářů na WordPress web."
|
1257 |
|
1258 |
+
#: product_list.php:65
|
1259 |
msgid "Save and manage Contact Form messages. Never lose important data."
|
1260 |
msgstr ""
|
1261 |
"Ukládejte a spravujte zprávy z kontaktního formuláře. Už nikdy neztraťte "
|
1262 |
"důležitá data."
|
1263 |
|
1264 |
+
#: product_list.php:75
|
1265 |
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1266 |
msgstr ""
|
1267 |
"Přidávejte neomezený počet vlastních stránek do WordPress admin nástěnky."
|
1268 |
|
1269 |
+
#: product_list.php:82
|
1270 |
msgid "Add custom fields to WordPress website search results."
|
1271 |
msgstr "Přidávejte vlastní pole do výsledků vyhledání na webu WordPress."
|
1272 |
|
1273 |
+
#: product_list.php:89
|
1274 |
msgid ""
|
1275 |
"Add custom post types and taxonomies to WordPress website search results."
|
1276 |
msgstr ""
|
1277 |
"Přidávejte vlastní typy příspěvků a taxonomie do výsledků vyhledání na webu "
|
1278 |
"WordPress."
|
1279 |
|
1280 |
+
#: product_list.php:99
|
1281 |
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1282 |
msgstr "Přidávejte darovací tlačítka PayPal a 2CO pro příjem příspěvků."
|
1283 |
|
1284 |
+
#: product_list.php:106
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1285 |
msgid ""
|
1286 |
"Get latest error log messages to diagnose website problems. Define and fix "
|
1287 |
"issues faster."
|
1289 |
"Získejte nejnovější zprávy z error logu při diagnostice problémů s webem. "
|
1290 |
"Definujte a opravte problémy rychleji."
|
1291 |
|
1292 |
+
#: product_list.php:113
|
1293 |
msgid ""
|
1294 |
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1295 |
"widgets."
|
1297 |
"Přidávejte Facebooková tlačítka sledovat, to se mi líbí a sdílet do "
|
1298 |
"WordPress příspěvků, stránek a widgetů."
|
1299 |
|
1300 |
+
#: product_list.php:123
|
1301 |
msgid ""
|
1302 |
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1303 |
"clicks."
|
1305 |
"Přidávejte na váš WordPress web krásné galerie, alba a obrázky během "
|
1306 |
"několika kliknutí."
|
1307 |
|
1308 |
+
#: product_list.php:133
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1309 |
msgid ""
|
1310 |
"Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
|
1311 |
"posts, pages and widgets."
|
1313 |
"Přidávejte Google +1 tlačítka sdílet, sledovat, Hangout a profile badge do "
|
1314 |
"WordPress příspěvků, stránek a widgetů."
|
1315 |
|
1316 |
+
#: product_list.php:143
|
1317 |
msgid ""
|
1318 |
"Stronger security solution which protects your WordPress website from hacks "
|
1319 |
"and unauthorized login attempts."
|
1320 |
msgstr ""
|
1321 |
+
"Silnější bezpečnostní řešení, které chrání vaše webové stránky WordPress od "
|
1322 |
+
"hacků a pokusů o neoprávněné přihlášení."
|
1323 |
|
1324 |
+
#: product_list.php:153
|
1325 |
msgid ""
|
1326 |
"Add Adsense ads to WordPress website pages, posts, custom posts, search "
|
1327 |
"results, categories, tags, and widgets."
|
1329 |
"Přidávejte reklamy Adsense do webu WordPress, příspěvky, vlastní příspěvky, "
|
1330 |
"výsledky vyhledávání, rubriky, štítky a widgety."
|
1331 |
|
1332 |
+
#: product_list.php:163
|
1333 |
msgid "Add Google Analytics code to WordPress website and track basic stats."
|
1334 |
msgstr ""
|
1335 |
"Přidávejte Google Analytics kód do WordPress webu a sledujte základní "
|
1336 |
"statistiky."
|
1337 |
|
1338 |
+
#: product_list.php:173
|
1339 |
msgid ""
|
1340 |
"Protect WordPress website forms from spam entries with Google Captcha "
|
1341 |
"(reCaptcha)."
|
1343 |
"Chraňte WordPress webové formuláře před spamem s Google Captcha (\"reCAPTCHA"
|
1344 |
"\")."
|
1345 |
|
1346 |
+
#: product_list.php:183
|
1347 |
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1348 |
msgstr ""
|
1349 |
"Přidávejte vlastní mapy Google do WordPress příspěvků, stránek a widgetů."
|
1350 |
|
1351 |
+
#: product_list.php:193
|
1352 |
msgid ""
|
1353 |
"Generate and add XML sitemap to WordPress website. Help search engines index "
|
1354 |
"your blog."
|
1356 |
"Generujte a přidávejte sitemap.xml na vaše WordPress weby. Pomožte "
|
1357 |
"vyhledávačům indexovat váš blog."
|
1358 |
|
1359 |
+
#: product_list.php:203
|
1360 |
msgid ""
|
1361 |
"Replace external WordPress website links with Google shortlinks and track "
|
1362 |
"click stats."
|
1364 |
"Nahradit externí odkazy WordPress webu pomocí Google shortlinks a sledujte "
|
1365 |
"statistiky kliknutí."
|
1366 |
|
1367 |
+
#: product_list.php:210
|
1368 |
msgid ""
|
1369 |
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1370 |
"hostnames, etc."
|
1372 |
"Chráňte WordPress web– povolte či odepřete přístup pro určité IP adresy, "
|
1373 |
"hostnames, atd."
|
1374 |
|
1375 |
+
#: product_list.php:220
|
1376 |
msgid ""
|
1377 |
"Create your personal job board and listing WordPress website. Search jobs, "
|
1378 |
"submit CV/resumes, choose candidates."
|
1380 |
"Vytvořte si osobní nástěnku pracovních míst na WordPress webu. Hledání "
|
1381 |
"zaměstnání, odeslání CV/životopisu, výběr kandidátů."
|
1382 |
|
1383 |
+
#: product_list.php:227
|
1384 |
msgid ""
|
1385 |
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1386 |
"attempts."
|
1388 |
"Chraňte WordPress web proti útokům hrubou silou. Omezte počet pokusů o "
|
1389 |
"přihlášení."
|
1390 |
|
1391 |
+
#: product_list.php:237
|
1392 |
msgid ""
|
1393 |
"Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
|
1394 |
"5 plugins included – profile, insider, etc."
|
1396 |
"Přidávejte LinkedIn tlačítka sdílet a sledovat do WordPress příspěvků, "
|
1397 |
"stránek a widgetů. 5 pluginů zahrnuje - profil, insider, atd."
|
1398 |
|
1399 |
+
#: product_list.php:247
|
1400 |
msgid ""
|
1401 |
"Translate WordPress website content to other languages manually. Create "
|
1402 |
"multilingual pages, posts, widgets, menus, etc."
|
1404 |
"Přeložte manuálně obsah webu WordPress do jiných jazyků. Vytvořte "
|
1405 |
"vícejazyčné stránky, příspěvky, widgety, menu, atd."
|
1406 |
|
1407 |
+
#: product_list.php:257
|
1408 |
msgid ""
|
1409 |
"Add customizable pagination to WordPress website. Split long content to "
|
1410 |
"multiple pages for better navigation."
|
1412 |
"Přidávejte nastavitelné stránkování na web WordPress. Pro lepší navigaci "
|
1413 |
"rozdělte dlouhý obsah na více stránek."
|
1414 |
|
1415 |
+
#: product_list.php:267
|
1416 |
msgid ""
|
1417 |
"Generate PDF files and print WordPress posts/pages. Customize document "
|
1418 |
"header/footer styles and appearance."
|
1420 |
"Generujte PDF soubory a tiskněte WordPress příspěvky/stránky. Vlastní "
|
1421 |
"záhlaví/zápatí dokumentu, styly a vzhled."
|
1422 |
|
1423 |
+
#: product_list.php:277
|
1424 |
msgid ""
|
1425 |
"Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
|
1426 |
"Profile) to WordPress posts, pages and widgets."
|
1428 |
"Přidávejte Pinterest tlačítka sledovat a připnout a profilový widget (Pin, "
|
1429 |
"Board, Profile) do WordPress příspěvků, stránek a widgetů."
|
1430 |
|
1431 |
+
#: product_list.php:287
|
1432 |
msgid ""
|
1433 |
"Create your personal portfolio WordPress website. Manage and showcase past "
|
1434 |
"projects to get more clients."
|
1436 |
"Vytvořte si osobní portfolio WordPress webů. Spravujte a představte své "
|
1437 |
"nedávné projekty a získejte více klientů."
|
1438 |
|
1439 |
+
#: product_list.php:297
|
1440 |
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1441 |
msgstr ""
|
1442 |
"Exportujte snadno vaše WordPress příspěvky do souboru formátu CSV. "
|
1443 |
"Konfigurujte pořadí dat."
|
1444 |
|
1445 |
+
#: product_list.php:304
|
1446 |
msgid ""
|
1447 |
"Add extra fields to default WordPress user profile. The easiest way to "
|
1448 |
"create and manage additional custom values."
|
1450 |
"Přidávejte další pole do výchozího profilu uživatele WordPress. "
|
1451 |
"Nejjednodušší způsob, jak vytvořit a spravovat vlastní hodnoty."
|
1452 |
|
1453 |
+
#: product_list.php:311
|
1454 |
msgid ""
|
1455 |
"Add and display HTML advertisement banner on WordPress website. Customize "
|
1456 |
"bar styles and appearance."
|
1458 |
"Přidávejte a zobrazujte HTML reklamní banner na webu WordPress. Úpravte styl "
|
1459 |
"a vzhled lišt."
|
1460 |
|
1461 |
+
#: product_list.php:321
|
1462 |
msgid ""
|
1463 |
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1464 |
"widgets."
|
1466 |
"Přidávejte přizpůsobitelné nabídky a bloky s tipy do WordPress příspěvků, "
|
1467 |
"stránek a widgetů."
|
1468 |
|
1469 |
+
#: product_list.php:328
|
1470 |
msgid ""
|
1471 |
"Add rating plugin to your WordPress website to receive feedback from your "
|
1472 |
"customers."
|
1474 |
"Přidávejte do vašeho WordPress webu plugin hodnocení k získání zpětné vazby "
|
1475 |
"od vašich zákazníků."
|
1476 |
|
1477 |
+
#: product_list.php:335
|
1478 |
msgid ""
|
1479 |
"Create your personal real estate WordPress website. Sell, rent and buy "
|
1480 |
"properties. Add, search and browse listings easily."
|
1483 |
"pronajímejte a kupujte nemovitosti. Snadno přidejte hledání a procházení "
|
1484 |
"seznamy."
|
1485 |
|
1486 |
+
#: product_list.php:345
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1487 |
msgid ""
|
1488 |
"Add related, featured, latest, and popular posts to your WordPress website. "
|
1489 |
"Connect your blog readers with a relevant content."
|
1491 |
"Přidávejte související, nejlepší, nejnovější a populární příspěvky do vašeho "
|
1492 |
"WordPress webu. Propojte čtenáře vašeho blogu s příslušným obsahem."
|
1493 |
|
1494 |
+
#: product_list.php:352
|
1495 |
msgid ""
|
1496 |
"Send bulk email messages to WordPress users. Custom templates, advanced "
|
1497 |
"settings and detailed reports."
|
1499 |
"Odesílejte hromadné e-maily WordPress uživatelům. Vlastní šablony, rozšířené "
|
1500 |
"nastavení a podrobné reporty."
|
1501 |
|
1502 |
+
#: product_list.php:362
|
1503 |
msgid ""
|
1504 |
"The best responsive slider plugin for your WordPress website. Create "
|
1505 |
"beautifully animated slides just in a few clicks."
|
1507 |
"Nejlepší responzivní slider plugin pro váše WordPress web. Vytvořte krásné "
|
1508 |
"animované snímky během pár kliknutí."
|
1509 |
|
1510 |
+
#: product_list.php:369
|
1511 |
msgid ""
|
1512 |
"Configure SMTP server to receive email messages from WordPress to Gmail, "
|
1513 |
"Yahoo, Hotmail and other services."
|
1515 |
"Konfigurujte SMTP server pro příjem e-mailových zpráv z WordPress na Gmail, "
|
1516 |
"Yahoo, Hotmail a dalších službách."
|
1517 |
|
1518 |
+
#: product_list.php:376
|
1519 |
msgid ""
|
1520 |
"Add social media buttons and widgets to WordPress posts, pages and widgets. "
|
1521 |
"FB, Twitter, G+1, Pinterest, LinkedIn."
|
1523 |
"Přidávejte tlačítka sociálních sítí a widgety do WordPress příspěvků, "
|
1524 |
"stránek a widgetů. Facebook, Twitter, G+1, Pinterest, LinkedIn."
|
1525 |
|
1526 |
+
#: product_list.php:386
|
1527 |
msgid ""
|
1528 |
"Add social media login, registration, and commenting to your WordPress "
|
1529 |
"website."
|
1531 |
"Přidávejte na váš WordPress web login, registraci či komentáře "
|
1532 |
"prostřednictvím sociálních sítí."
|
1533 |
|
1534 |
+
#: product_list.php:393
|
1535 |
msgid ""
|
1536 |
"Add email newsletter sign up form to WordPress posts, pages and widgets. "
|
1537 |
"Collect data and subscribe your users."
|
1540 |
"příspěvků, stránek a widgetů. Shromažďujte data a přihlaste k odběru vaše "
|
1541 |
"uživatele."
|
1542 |
|
1543 |
+
#: product_list.php:403
|
1544 |
msgid ""
|
1545 |
"Add testimonials and feedbacks from your customers to WordPress website "
|
1546 |
"posts, pages, and widgets."
|
1548 |
"Přidávejte potvrzení a zpětnou vazbu od vašich zákazníků do WordPress "
|
1549 |
"příspěvků, stránek a widgetů."
|
1550 |
|
1551 |
+
#: product_list.php:410
|
1552 |
msgid ""
|
1553 |
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1554 |
"attendance and generate reports."
|
1556 |
"Nejlepší timesheet plugin pro WordPress. Sledujte časy zaměstnanců, "
|
1557 |
"kontrolujte jejich přítomnost a generujte sestavy."
|
1558 |
|
1559 |
+
#: product_list.php:420
|
1560 |
msgid ""
|
1561 |
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1562 |
"and pages."
|
1564 |
"Přidávejte Twitter tlačítka sledovat, twítnout a zmínit do WordPress "
|
1565 |
"příspěvků a stránek."
|
1566 |
|
1567 |
+
#: product_list.php:430
|
1568 |
msgid ""
|
1569 |
"Automatically check and update WordPress website core with all installed "
|
1570 |
"plugins and themes to the latest versions."
|
1572 |
"Automaticky kontrolujte a aktualizujte na nejnovější verzi WordPress jádro i "
|
1573 |
"všechny nainstalované pluginy a šablony."
|
1574 |
|
1575 |
+
#: product_list.php:440
|
1576 |
msgid ""
|
1577 |
"Powerful user role management plugin for WordPress website. Create, edit, "
|
1578 |
"copy, and delete user roles."
|
1580 |
"Plugin robustní správy užiatelů pro WordPress web. Vytvářejte, upravujte, "
|
1581 |
"kopírujte a odstraňujte uživatelské role."
|
1582 |
|
1583 |
+
#: product_list.php:450
|
1584 |
msgid ""
|
1585 |
"Display live count of online visitors who are currently browsing your "
|
1586 |
"WordPress website."
|
1588 |
"Zobrazujte počet aktivních online návštěvníků, kteří dané chvíli procházejí "
|
1589 |
"váš WordPress web."
|
1590 |
|
1591 |
+
#: product_list.php:460
|
1592 |
msgid ""
|
1593 |
"Backup and export Zendesk Help Center content automatically to your "
|
1594 |
"WordPress website database."
|
1596 |
"Automaticky zálohujte a exportujte obsah centra nápovědy Zendesk do databáze "
|
1597 |
"vašeho WordPress webu."
|
1598 |
|
1599 |
+
#~ msgid ""
|
1600 |
+
#~ "You can use one license of the Pro plugin for one domain only. Please "
|
1601 |
+
#~ "check and edit your license or domain if necessary using you personal "
|
1602 |
+
#~ "Client Area. We strongly recommend you to solve the problem within 24 "
|
1603 |
+
#~ "hours, otherwise the Pro plugin will be deactivated."
|
1604 |
+
#~ msgstr ""
|
1605 |
+
#~ "Pro licenci pluginu můžete používat pouze pro jednu doménu. Prosím "
|
1606 |
+
#~ "zkontrolujte a případně upravte Váš licenční klíč na vaší osobní stránce "
|
1607 |
+
#~ "- Klientské zóně. Důrazně doporučujeme, aby jste tento problém odstranili "
|
1608 |
+
#~ "během 24 hodin, jinak bude Pro plugin deaktivován."
|
1609 |
+
|
1610 |
+
#~ msgid "Insert"
|
1611 |
+
#~ msgstr "Vložit"
|
1612 |
+
|
1613 |
+
#~ msgid ""
|
1614 |
+
#~ "Automatically add outgoing email messages to queue instead of sending "
|
1615 |
+
#~ "them immediately."
|
1616 |
+
#~ msgstr ""
|
1617 |
+
#~ "Automaticky přidávejte odchozí e-mailové zprávy do fronty namísto jejich "
|
1618 |
+
#~ "okamžitého odesílání."
|
1619 |
+
|
1620 |
+
#~ msgid ""
|
1621 |
+
#~ "Add unlimited gallery categories. Organize images to make the navigation "
|
1622 |
+
#~ "through content easier."
|
1623 |
+
#~ msgstr ""
|
1624 |
+
#~ "Přidávejte neomezený počet kategorií galerie. Organizujte obrázky pro "
|
1625 |
+
#~ "jednodušší orientaci v obsahu."
|
1626 |
+
|
1627 |
+
#~ msgid ""
|
1628 |
+
#~ "Attach, un-attach and re-attach media files quickly to WordPress posts "
|
1629 |
+
#~ "and pages."
|
1630 |
+
#~ msgstr ""
|
1631 |
+
#~ "Připojujte, odpojujte a znovu připojujte mediální soubory do WordPress "
|
1632 |
+
#~ "příspěvků a stránek."
|
1633 |
+
|
1634 |
#~ msgid "Advertisement"
|
1635 |
#~ msgstr "Reklama"
|
1636 |
|
1648 |
|
1649 |
#~ msgid "Utilities"
|
1650 |
#~ msgstr "Utility"
|
|
|
|
|
|
bws_menu/languages/bestwebsoft-es_ES.mo
ADDED
Binary file
|
bws_menu/languages/bestwebsoft-es_ES.po
ADDED
@@ -0,0 +1,1747 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Translation of Plugins - Social Login by BestWebSoft - Development (trunk) in Spanish (Spain)
|
2 |
+
# This file is distributed under the same license as the Plugins - Social Login by BestWebSoft - Development (trunk) package.
|
3 |
+
msgid ""
|
4 |
+
msgstr ""
|
5 |
+
"Project-Id-Version: bestwebsoft\n"
|
6 |
+
"POT-Creation-Date: 2017-08-28 09:52+0300\n"
|
7 |
+
"PO-Revision-Date: 2017-08-28 09:55+0300\n"
|
8 |
+
"Last-Translator: \n"
|
9 |
+
"Language-Team: BestWebSoft <plugin@bestwebsoft.com>\n"
|
10 |
+
"Language: es\n"
|
11 |
+
"MIME-Version: 1.0\n"
|
12 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
+
"Content-Transfer-Encoding: 8bit\n"
|
14 |
+
"X-Generator: Poedit 1.8.7.1\n"
|
15 |
+
"X-Poedit-KeywordsList: __;_e;esc_attr_e\n"
|
16 |
+
"X-Poedit-Basepath: ..\n"
|
17 |
+
"X-Poedit-SourceCharset: UTF-8\n"
|
18 |
+
"X-Poedit-SearchPath-0: .\n"
|
19 |
+
|
20 |
+
#: bws_functions.php:73 bws_functions.php:191
|
21 |
+
msgid "requires"
|
22 |
+
msgstr "requiere"
|
23 |
+
|
24 |
+
#: bws_functions.php:75
|
25 |
+
msgid ""
|
26 |
+
"or higher, that is why it has been deactivated! Please upgrade WordPress and "
|
27 |
+
"try again."
|
28 |
+
msgstr ""
|
29 |
+
"o superior, por eso ha estado desactivado! Actualiza WordPress e inténtálo "
|
30 |
+
"de nuevo."
|
31 |
+
|
32 |
+
#: bws_functions.php:76
|
33 |
+
msgid "Back to the WordPress"
|
34 |
+
msgstr "Volver a WordPress a la"
|
35 |
+
|
36 |
+
#: bws_functions.php:78
|
37 |
+
msgid "Plugins page"
|
38 |
+
msgstr "Página de plugins"
|
39 |
+
|
40 |
+
#: bws_functions.php:92
|
41 |
+
msgid "Like the plugin?"
|
42 |
+
msgstr "¿Te gusta el plugin?"
|
43 |
+
|
44 |
+
#: bws_functions.php:94
|
45 |
+
msgid "Rate it"
|
46 |
+
msgstr "Valorar"
|
47 |
+
|
48 |
+
#: bws_functions.php:103
|
49 |
+
msgid "Need help?"
|
50 |
+
msgstr "¿Necesitas ayuda?"
|
51 |
+
|
52 |
+
#: bws_functions.php:104 bws_functions.php:911 class-bws-settings.php:1056
|
53 |
+
msgid "Visit Help Center"
|
54 |
+
msgstr "Visita el Centro de Ayuda"
|
55 |
+
|
56 |
+
#: bws_functions.php:107
|
57 |
+
msgid "Want to support the plugin?"
|
58 |
+
msgstr "¿Quieres apoyar al plugin?"
|
59 |
+
|
60 |
+
#: bws_functions.php:108 bws_menu.php:553
|
61 |
+
msgid "Donate"
|
62 |
+
msgstr "Donar"
|
63 |
+
|
64 |
+
#: bws_functions.php:128
|
65 |
+
msgid "WARNING: Illegal use notification"
|
66 |
+
msgstr "ADVERTENCIA: Notificación de uso ilegal"
|
67 |
+
|
68 |
+
#: bws_functions.php:128
|
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 your personal Client "
|
72 |
+
"Area. We strongly recommend you to solve the problem within 24 hours, "
|
73 |
+
"otherwise the Pro plugin will be deactivated."
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#: bws_functions.php:128 bws_functions.php:340 class-bws-settings.php:144
|
77 |
+
msgid "Learn More"
|
78 |
+
msgstr "Aprende más"
|
79 |
+
|
80 |
+
#: bws_functions.php:145
|
81 |
+
msgid ""
|
82 |
+
"Notice: Your Pro Trial license has expired. To continue using the plugin, "
|
83 |
+
"you should buy a Pro license"
|
84 |
+
msgstr ""
|
85 |
+
"Aviso: Tu licencia Pro Trial ha expirado. Para seguir usando el plugin debes "
|
86 |
+
"comprar una licencia Pro"
|
87 |
+
|
88 |
+
#: bws_functions.php:147
|
89 |
+
msgid ""
|
90 |
+
"Your license has expired. To continue getting top-priority support and "
|
91 |
+
"plugin updates, you should extend it."
|
92 |
+
msgstr ""
|
93 |
+
"Para seguir recibiendo soporte prioritario y actualizaciones de plugin debes "
|
94 |
+
"extenderla."
|
95 |
+
|
96 |
+
#: bws_functions.php:147 bws_functions.php:383 deprecated.php:584
|
97 |
+
msgid "Learn more"
|
98 |
+
msgstr "Aprende más"
|
99 |
+
|
100 |
+
#: bws_functions.php:165
|
101 |
+
#, php-format
|
102 |
+
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
103 |
+
msgstr "Aviso: Estás usando la licencia Pro Trial de %s plugin."
|
104 |
+
|
105 |
+
#: bws_functions.php:167
|
106 |
+
msgid "Notice: You are using the Pro Trial license of plugin."
|
107 |
+
msgstr "Aviso: Estás usando la licencia Pro Trial del plugin."
|
108 |
+
|
109 |
+
#: bws_functions.php:170
|
110 |
+
msgid "The Pro Trial license will expire on"
|
111 |
+
msgstr "La licencia Pro Trial expirará el"
|
112 |
+
|
113 |
+
#: bws_functions.php:193
|
114 |
+
msgid ""
|
115 |
+
"or higher! We do not guarantee that our plugin will work correctly. Please "
|
116 |
+
"upgrade to WordPress latest version."
|
117 |
+
msgstr ""
|
118 |
+
"o superior! No garantizamos que nuestro plugin funcionará correctamente. Por "
|
119 |
+
"favor, actualiza a la última versión de WordPress."
|
120 |
+
|
121 |
+
#: bws_functions.php:208
|
122 |
+
#, php-format
|
123 |
+
msgid "Thank you for installing %s plugin!"
|
124 |
+
msgstr "¡Gracias por haber instalado plugin de %s!"
|
125 |
+
|
126 |
+
#: bws_functions.php:209
|
127 |
+
msgid "Let's get started"
|
128 |
+
msgstr "¡Empecemos!"
|
129 |
+
|
130 |
+
#: bws_functions.php:210 bws_functions.php:243 bws_menu.php:557
|
131 |
+
#: bws_menu.php:559
|
132 |
+
msgid "Settings"
|
133 |
+
msgstr "Ajustes"
|
134 |
+
|
135 |
+
#: bws_functions.php:212 bws_menu.php:328 class-bws-settings.php:745
|
136 |
+
#: class-bws-settings.php:1058 class-bws-settings.php:1068 deprecated.php:694
|
137 |
+
msgid "or"
|
138 |
+
msgstr "o"
|
139 |
+
|
140 |
+
#: bws_functions.php:213 bws_functions.php:245
|
141 |
+
msgid "Add New"
|
142 |
+
msgstr "Añadir nuevo"
|
143 |
+
|
144 |
+
#: bws_functions.php:217 bws_functions.php:227 bws_functions.php:331
|
145 |
+
#: bws_functions.php:379 bws_functions.php:481
|
146 |
+
msgid "Close notice"
|
147 |
+
msgstr "Descartar"
|
148 |
+
|
149 |
+
#: bws_functions.php:232
|
150 |
+
msgid "Thank you for installing plugins by BestWebSoft!"
|
151 |
+
msgstr "¡Gracias por haber instalado los plugins de BestWebSoft!"
|
152 |
+
|
153 |
+
#: bws_functions.php:234
|
154 |
+
msgid "More Details"
|
155 |
+
msgstr "Más detalles"
|
156 |
+
|
157 |
+
#: bws_functions.php:235
|
158 |
+
msgid "Less Details"
|
159 |
+
msgstr "Menos detalles"
|
160 |
+
|
161 |
+
#: bws_functions.php:263
|
162 |
+
msgid "Deprecated function(-s) is used on the site here:"
|
163 |
+
msgstr "Función(-es) obsoleta(-s) se utiliza(-n) en el sitio aquí:"
|
164 |
+
|
165 |
+
#: bws_functions.php:277
|
166 |
+
msgid ""
|
167 |
+
"This function(-s) will be removed over time. Please update the product(-s)."
|
168 |
+
msgstr ""
|
169 |
+
"Esta(-s) función(-es) se eliminará(-n) con el tiempo. Actualiza el(los) "
|
170 |
+
"producto(-s)."
|
171 |
+
|
172 |
+
#: bws_functions.php:336
|
173 |
+
msgid "It’s time to upgrade your"
|
174 |
+
msgstr "¡Ahora es el tiempo de actualizar tu"
|
175 |
+
|
176 |
+
#: bws_functions.php:336
|
177 |
+
msgid "to"
|
178 |
+
msgstr "a"
|
179 |
+
|
180 |
+
#: bws_functions.php:336
|
181 |
+
msgid "version!"
|
182 |
+
msgstr "versión!"
|
183 |
+
|
184 |
+
#: bws_functions.php:337
|
185 |
+
msgid "Extend standard plugin functionality with new great options."
|
186 |
+
msgstr ""
|
187 |
+
"Amplía la funcionalidad del plugin estándar con nuevas excelentes opciones."
|
188 |
+
|
189 |
+
#: bws_functions.php:383
|
190 |
+
#, php-format
|
191 |
+
msgid ""
|
192 |
+
"Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
|
193 |
+
"SUPPORT or UPDATES."
|
194 |
+
msgstr ""
|
195 |
+
"Tu clave de licencia para %s expirará el %s y no vas a recibir el SOPORTE "
|
196 |
+
"PRIORITARIO O ACTUALIZACIONES."
|
197 |
+
|
198 |
+
#: bws_functions.php:476
|
199 |
+
#, php-format
|
200 |
+
msgid "Thank you for choosing %s plugin!"
|
201 |
+
msgstr "¡Gracias por haber elegido plugin de %s!"
|
202 |
+
|
203 |
+
#: bws_functions.php:477
|
204 |
+
msgid ""
|
205 |
+
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
206 |
+
"we'd love to hear about it!"
|
207 |
+
msgstr ""
|
208 |
+
"Si tienes una función, sugerencia o idea que te gustaría ver en el plugin, "
|
209 |
+
"nos encantaría saberlo."
|
210 |
+
|
211 |
+
#: bws_functions.php:478
|
212 |
+
msgid "Suggest a Feature"
|
213 |
+
msgstr "Ofrecer una función"
|
214 |
+
|
215 |
+
#: bws_functions.php:494 class-bws-settings.php:538 class-bws-settings.php:541
|
216 |
+
#: class-bws-settings.php:593 class-bws-settings.php:596
|
217 |
+
msgid "Notice"
|
218 |
+
msgstr "Aviso"
|
219 |
+
|
220 |
+
#: bws_functions.php:494
|
221 |
+
msgid "The plugin's settings have been changed."
|
222 |
+
msgstr "Se han cambiado los ajustes del plugin."
|
223 |
+
|
224 |
+
#: bws_functions.php:495 class-bws-settings.php:183 class-bws-settings.php:203
|
225 |
+
#: deprecated.php:640
|
226 |
+
msgid "Save Changes"
|
227 |
+
msgstr "Guardar cambios"
|
228 |
+
|
229 |
+
#: bws_functions.php:509
|
230 |
+
msgid ""
|
231 |
+
"You can always look at premium options by checking the \"Pro Options\" in "
|
232 |
+
"the \"Misc\" tab."
|
233 |
+
msgstr ""
|
234 |
+
"Siempre puedes ver las opciones premium haciendo clic en las \"Opciones Pro"
|
235 |
+
"\" en la ficha \"Varios\"."
|
236 |
+
|
237 |
+
#: bws_functions.php:647
|
238 |
+
msgid "Add BWS Shortcode"
|
239 |
+
msgstr "Añadir BWS shortcode"
|
240 |
+
|
241 |
+
#: bws_functions.php:648
|
242 |
+
msgid "Add BWS Plugins Shortcode"
|
243 |
+
msgstr "Añadir shortcode de plugins BWS"
|
244 |
+
|
245 |
+
#: bws_functions.php:667
|
246 |
+
msgid "Add shortcode"
|
247 |
+
msgstr "Añadir shortcode"
|
248 |
+
|
249 |
+
#: bws_functions.php:667
|
250 |
+
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
251 |
+
msgstr "Añadir los shortcodes de los plugins de BestWebSoft usando este botón."
|
252 |
+
|
253 |
+
#: bws_functions.php:723
|
254 |
+
msgid "Close"
|
255 |
+
msgstr "Descartar"
|
256 |
+
|
257 |
+
#: bws_functions.php:815
|
258 |
+
msgid "Are you sure you want to restore default settings?"
|
259 |
+
msgstr ""
|
260 |
+
"¿Estás seguro de que deseas restaurar los ajustes de plugin por defecto?"
|
261 |
+
|
262 |
+
#: bws_functions.php:818
|
263 |
+
msgid "Yes, restore all settings"
|
264 |
+
msgstr "Sí, restaurar todos los ajustes"
|
265 |
+
|
266 |
+
#: bws_functions.php:819
|
267 |
+
msgid "No, go back to the settings page"
|
268 |
+
msgstr "No, volver a la página de ajustes"
|
269 |
+
|
270 |
+
#: bws_functions.php:861
|
271 |
+
msgid "Plugin"
|
272 |
+
msgstr "Plugin"
|
273 |
+
|
274 |
+
#: bws_functions.php:870
|
275 |
+
msgid "Shortcode settings"
|
276 |
+
msgstr "Ajustes de shortcode"
|
277 |
+
|
278 |
+
#: bws_functions.php:875
|
279 |
+
msgid "The shortcode will be inserted"
|
280 |
+
msgstr "El shortcode se insertará"
|
281 |
+
|
282 |
+
#: bws_functions.php:916
|
283 |
+
msgid "FAQ"
|
284 |
+
msgstr "FAQ"
|
285 |
+
|
286 |
+
#: bws_functions.php:922
|
287 |
+
msgid "For more information:"
|
288 |
+
msgstr "Más información"
|
289 |
+
|
290 |
+
#: bws_functions.php:923
|
291 |
+
msgid "Documentation"
|
292 |
+
msgstr "Documentación"
|
293 |
+
|
294 |
+
#: bws_functions.php:924
|
295 |
+
msgid "Video Instructions"
|
296 |
+
msgstr "Video instrucciones"
|
297 |
+
|
298 |
+
#: bws_functions.php:925
|
299 |
+
msgid "Submit a Request"
|
300 |
+
msgstr "Presentar una solicitud"
|
301 |
+
|
302 |
+
#: bws_menu.php:101 class-bws-settings.php:790 deprecated.php:322
|
303 |
+
msgid "Wrong license key"
|
304 |
+
msgstr "Clave de licencia incorrecta"
|
305 |
+
|
306 |
+
#: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
|
307 |
+
#: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
|
308 |
+
#: deprecated.php:352
|
309 |
+
msgid ""
|
310 |
+
"Something went wrong. Please try again later. If the error appears again, "
|
311 |
+
"please contact us"
|
312 |
+
msgstr ""
|
313 |
+
"Algo salió mal. Por favor, inténtalo de nuevo más tarde. Si el error aparece "
|
314 |
+
"de nuevo, ponte en contacto con nosotros"
|
315 |
+
|
316 |
+
#: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
|
317 |
+
#: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
|
318 |
+
#: deprecated.php:352
|
319 |
+
msgid "We are sorry for inconvenience."
|
320 |
+
msgstr "Lo siento para la inconveniencia causada."
|
321 |
+
|
322 |
+
#: bws_menu.php:128 class-bws-settings.php:822 class-bws-settings.php:925
|
323 |
+
#: deprecated.php:139 deprecated.php:358
|
324 |
+
msgid "Wrong license key."
|
325 |
+
msgstr "Clave de licencia incorrecta."
|
326 |
+
|
327 |
+
#: bws_menu.php:130
|
328 |
+
msgid ""
|
329 |
+
"This license key is bound to another site. Change it via personal Client "
|
330 |
+
"Area."
|
331 |
+
msgstr ""
|
332 |
+
"Esta clave de licencia está enlazada al otro sitio. Cámbialo en Área "
|
333 |
+
"de Cliente."
|
334 |
+
|
335 |
+
#: bws_menu.php:130
|
336 |
+
msgid "Log in"
|
337 |
+
msgstr "Acceder"
|
338 |
+
|
339 |
+
#: bws_menu.php:132 bws_menu.php:334 deprecated.php:261
|
340 |
+
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
341 |
+
msgstr "Por desgracia, has excedido el número de intentos por hoy."
|
342 |
+
|
343 |
+
#: bws_menu.php:134 class-bws-settings.php:931 deprecated.php:364
|
344 |
+
#, php-format
|
345 |
+
msgid ""
|
346 |
+
"Unfortunately, Your license has expired. To continue getting top-priority "
|
347 |
+
"support and plugin updates, you should extend it in your %s"
|
348 |
+
msgstr ""
|
349 |
+
"Por desgracia, tu licencia ha expirado. Para seguir recibiendo soporte "
|
350 |
+
"prioritario y actualizaciones de plugin debes extenderla en tu %s"
|
351 |
+
|
352 |
+
#: bws_menu.php:136 class-bws-settings.php:933 deprecated.php:366
|
353 |
+
msgid ""
|
354 |
+
"Unfortunately, the Pro licence was already installed to this domain. The Pro "
|
355 |
+
"Trial license can be installed only once."
|
356 |
+
msgstr ""
|
357 |
+
"Por desgracia, la licencia Pro ha estado ya instalada en este dominio. La "
|
358 |
+
"licencia Pro Trial puede estar instalada una sola vez."
|
359 |
+
|
360 |
+
#: bws_menu.php:142 class-bws-settings.php:837 deprecated.php:153
|
361 |
+
msgid "The license key is valid."
|
362 |
+
msgstr "La clave de licencia está válida."
|
363 |
+
|
364 |
+
#: bws_menu.php:144 class-bws-settings.php:840 deprecated.php:156
|
365 |
+
msgid "Your license will expire on"
|
366 |
+
msgstr "Tu licencia expirará el"
|
367 |
+
|
368 |
+
#: bws_menu.php:146
|
369 |
+
msgid "Congratulations! Pro Membership license is activated successfully."
|
370 |
+
msgstr "¡Felicitaciones! La licencia Pro Membership está activada con éxito."
|
371 |
+
|
372 |
+
#: bws_menu.php:153 class-bws-settings.php:1005 deprecated.php:435
|
373 |
+
msgid ""
|
374 |
+
"Something went wrong. Try again later or upload the plugin manually. We are "
|
375 |
+
"sorry for inconvenience."
|
376 |
+
msgstr ""
|
377 |
+
"Algo salió mal. Por favor, inténtalo de nuevo más tarde o sube el plugin "
|
378 |
+
"manualmente. Lo siento para la inconveniencia causada."
|
379 |
+
|
380 |
+
#: bws_menu.php:163
|
381 |
+
msgid "Please enter your license key."
|
382 |
+
msgstr "Por favor, introduce tu clave de licencia."
|
383 |
+
|
384 |
+
#: bws_menu.php:174
|
385 |
+
msgid "Not set"
|
386 |
+
msgstr "No definido"
|
387 |
+
|
388 |
+
#: bws_menu.php:176
|
389 |
+
msgid "On"
|
390 |
+
msgstr "Activado"
|
391 |
+
|
392 |
+
#: bws_menu.php:176
|
393 |
+
msgid "Off"
|
394 |
+
msgstr "Desactivado"
|
395 |
+
|
396 |
+
#: bws_menu.php:177 bws_menu.php:178 bws_menu.php:179 bws_menu.php:180
|
397 |
+
#: bws_menu.php:181 bws_menu.php:182 bws_menu.php:191
|
398 |
+
msgid "N/A"
|
399 |
+
msgstr "N/A"
|
400 |
+
|
401 |
+
#: bws_menu.php:182
|
402 |
+
msgid " Mb"
|
403 |
+
msgstr "Mb"
|
404 |
+
|
405 |
+
#: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
|
406 |
+
msgid "Yes"
|
407 |
+
msgstr "Sí"
|
408 |
+
|
409 |
+
#: bws_menu.php:183 bws_menu.php:184 bws_menu.php:185 bws_menu.php:189
|
410 |
+
msgid "No"
|
411 |
+
msgstr "No"
|
412 |
+
|
413 |
+
#: bws_menu.php:196
|
414 |
+
msgid "WordPress Environment"
|
415 |
+
msgstr "Entorno de WordPress"
|
416 |
+
|
417 |
+
#: bws_menu.php:198
|
418 |
+
msgid "Home URL"
|
419 |
+
msgstr "URL del inicio"
|
420 |
+
|
421 |
+
#: bws_menu.php:199
|
422 |
+
msgid "Website URL"
|
423 |
+
msgstr "URL del sitio"
|
424 |
+
|
425 |
+
#: bws_menu.php:200
|
426 |
+
msgid "WP Version"
|
427 |
+
msgstr "Versión WP"
|
428 |
+
|
429 |
+
#: bws_menu.php:201
|
430 |
+
msgid "WP Multisite"
|
431 |
+
msgstr "Multisite WP"
|
432 |
+
|
433 |
+
#: bws_menu.php:202
|
434 |
+
msgid "WP Memory Limit"
|
435 |
+
msgstr "Límite de memoria WP"
|
436 |
+
|
437 |
+
#: bws_menu.php:203
|
438 |
+
msgid "Active Theme"
|
439 |
+
msgstr "Tema activo"
|
440 |
+
|
441 |
+
#: bws_menu.php:203 bws_menu.php:248 bws_menu.php:251
|
442 |
+
#, php-format
|
443 |
+
msgid "by %s"
|
444 |
+
msgstr "por %s"
|
445 |
+
|
446 |
+
#: bws_menu.php:207
|
447 |
+
msgid "Server Environment"
|
448 |
+
msgstr "Entorno de Servidor"
|
449 |
+
|
450 |
+
#: bws_menu.php:209
|
451 |
+
msgid "Operating System"
|
452 |
+
msgstr "Sistema operativo"
|
453 |
+
|
454 |
+
#: bws_menu.php:210
|
455 |
+
msgid "Server"
|
456 |
+
msgstr "Servidor"
|
457 |
+
|
458 |
+
#: bws_menu.php:211
|
459 |
+
msgid "PHP Version"
|
460 |
+
msgstr "Versión de PHP"
|
461 |
+
|
462 |
+
#: bws_menu.php:212
|
463 |
+
msgid "PHP Allow URL fopen"
|
464 |
+
msgstr "PHP permite URL fopen"
|
465 |
+
|
466 |
+
#: bws_menu.php:213
|
467 |
+
msgid "PHP Memory Limit"
|
468 |
+
msgstr "Límite de memoria PHP"
|
469 |
+
|
470 |
+
#: bws_menu.php:214
|
471 |
+
msgid "Memory Usage"
|
472 |
+
msgstr "Uso de memória"
|
473 |
+
|
474 |
+
#: bws_menu.php:215
|
475 |
+
msgid "PHP Max Upload Size"
|
476 |
+
msgstr "Tamaño máximo de archivo PHP"
|
477 |
+
|
478 |
+
#: bws_menu.php:216
|
479 |
+
msgid "PHP Max Post Size"
|
480 |
+
msgstr "Tamaño máximo de entrada PHP"
|
481 |
+
|
482 |
+
#: bws_menu.php:217
|
483 |
+
msgid "PHP Max Script Execute Time"
|
484 |
+
msgstr "Tiempo máximo de ejecución de scripts PHP"
|
485 |
+
|
486 |
+
#: bws_menu.php:218
|
487 |
+
msgid "PHP Exif support"
|
488 |
+
msgstr "Soporte PHP Exif"
|
489 |
+
|
490 |
+
#: bws_menu.php:219
|
491 |
+
msgid "PHP IPTC support"
|
492 |
+
msgstr "Soporte PHP IPTC"
|
493 |
+
|
494 |
+
#: bws_menu.php:220
|
495 |
+
msgid "PHP XML support"
|
496 |
+
msgstr "Soporte PHP XML"
|
497 |
+
|
498 |
+
#: bws_menu.php:226
|
499 |
+
msgid "Database"
|
500 |
+
msgstr "Base de Datos"
|
501 |
+
|
502 |
+
#: bws_menu.php:228
|
503 |
+
msgid "WP DB version"
|
504 |
+
msgstr "Versión de WP DB"
|
505 |
+
|
506 |
+
#: bws_menu.php:229
|
507 |
+
msgid "MySQL version"
|
508 |
+
msgstr "Versión de MySQL"
|
509 |
+
|
510 |
+
#: bws_menu.php:230
|
511 |
+
msgid "SQL Mode"
|
512 |
+
msgstr "Modo SQL"
|
513 |
+
|
514 |
+
#: bws_menu.php:234
|
515 |
+
msgid "Active Plugins"
|
516 |
+
msgstr "Plugins Activos"
|
517 |
+
|
518 |
+
#: bws_menu.php:239
|
519 |
+
msgid "Inactive Plugins"
|
520 |
+
msgstr "Plugins Inactivos"
|
521 |
+
|
522 |
+
#: bws_menu.php:260
|
523 |
+
msgid "Please enter a valid email address."
|
524 |
+
msgstr "Por favor, introduce la dirección de correo electrónico válida."
|
525 |
+
|
526 |
+
#: bws_menu.php:264
|
527 |
+
msgid "Email with system info is sent to"
|
528 |
+
msgstr "El correo electrónico con información de sistema es enviado a"
|
529 |
+
|
530 |
+
#: bws_menu.php:268
|
531 |
+
msgid "Thank you for contacting us."
|
532 |
+
msgstr "¡Gracias por haber contactado con nosotros!"
|
533 |
+
|
534 |
+
#: bws_menu.php:291
|
535 |
+
msgid "Sorry, email message could not be delivered."
|
536 |
+
msgstr "Lo siento, el mensaje de correo electrónico no se pudo enviar."
|
537 |
+
|
538 |
+
#: bws_menu.php:307 bws_menu.php:311 bws_menu.php:360 deprecated.php:91
|
539 |
+
msgid "Plugins"
|
540 |
+
msgstr "Plugins"
|
541 |
+
|
542 |
+
#: bws_menu.php:308 bws_menu.php:312 bws_menu.php:611 deprecated.php:92
|
543 |
+
msgid "Themes"
|
544 |
+
msgstr "Temas"
|
545 |
+
|
546 |
+
#: bws_menu.php:309 bws_menu.php:313 bws_menu.php:641
|
547 |
+
msgid "System status"
|
548 |
+
msgstr "Información de sistema"
|
549 |
+
|
550 |
+
#: bws_menu.php:317
|
551 |
+
msgid "Support"
|
552 |
+
msgstr "Soporte"
|
553 |
+
|
554 |
+
#: bws_menu.php:318
|
555 |
+
msgid "Manage purchased licenses & subscriptions"
|
556 |
+
msgstr "Gestionar licencias y suscripciones adquiridas"
|
557 |
+
|
558 |
+
#: bws_menu.php:326
|
559 |
+
#, php-format
|
560 |
+
msgid "Get Access to %s+ Premium Plugins"
|
561 |
+
msgstr "Obtener acceso a %s+ Premium plugins"
|
562 |
+
|
563 |
+
#: bws_menu.php:328
|
564 |
+
msgid "Subscribe to Pro Membership"
|
565 |
+
msgstr "Suscribirse a Pro Membership"
|
566 |
+
|
567 |
+
#: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:758
|
568 |
+
#: deprecated.php:227
|
569 |
+
msgid "Check license key"
|
570 |
+
msgstr "Comprueba la clave de licencia"
|
571 |
+
|
572 |
+
#: bws_menu.php:339
|
573 |
+
msgid "Enter your license key"
|
574 |
+
msgstr "Introduce tu clave de licencia"
|
575 |
+
|
576 |
+
#: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
|
577 |
+
#: class-bws-settings.php:737 deprecated.php:259 deprecated.php:267
|
578 |
+
#: deprecated.php:629 deprecated.php:700 deprecated.php:709
|
579 |
+
msgid "Activate"
|
580 |
+
msgstr "Activar"
|
581 |
+
|
582 |
+
#: bws_menu.php:361
|
583 |
+
msgid "Upload Plugin"
|
584 |
+
msgstr "Subir plugin"
|
585 |
+
|
586 |
+
#: bws_menu.php:365
|
587 |
+
#, php-format
|
588 |
+
msgid ""
|
589 |
+
"The plugin generated %d characters of <strong>unexpected output</strong> "
|
590 |
+
"during activation. If you notice “headers already sent” "
|
591 |
+
"messages, problems with syndication feeds or other issues, try deactivating "
|
592 |
+
"or removing this plugin."
|
593 |
+
msgstr ""
|
594 |
+
"El plugin generó %d caracteres de <strong>salida inesperada</strong> durante "
|
595 |
+
"la activación. Si notas mensajes de “headers already sent”, "
|
596 |
+
"problemas con los feeds de sindicación u otras cuestiones, prueba desactivar "
|
597 |
+
"o borrar este plugin."
|
598 |
+
|
599 |
+
#: bws_menu.php:367
|
600 |
+
msgid ""
|
601 |
+
"Plugin could not be activated because it triggered a <strong>fatal error</"
|
602 |
+
"strong>."
|
603 |
+
msgstr ""
|
604 |
+
"No se pudo activar el plugin porque provocó un <strong>error fatal</ strong>."
|
605 |
+
|
606 |
+
#: bws_menu.php:370
|
607 |
+
msgid "Plugin <strong>activated</strong>."
|
608 |
+
msgstr "Plugin <strong>activado</strong>."
|
609 |
+
|
610 |
+
#: bws_menu.php:377
|
611 |
+
msgid "Installing Plugin"
|
612 |
+
msgstr "Instalando el plugin"
|
613 |
+
|
614 |
+
#: bws_menu.php:383
|
615 |
+
msgid "Downloading install package from"
|
616 |
+
msgstr "Descargando el paquete de instalación de"
|
617 |
+
|
618 |
+
#: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
|
619 |
+
#: class-bws-settings.php:957 class-bws-settings.php:979
|
620 |
+
#: class-bws-settings.php:1001 deprecated.php:387 deprecated.php:409
|
621 |
+
#: deprecated.php:431
|
622 |
+
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
623 |
+
msgstr ""
|
624 |
+
"Error al descargar el archivo zip. Por favor, sube el plugin manualmente"
|
625 |
+
|
626 |
+
#: bws_menu.php:408
|
627 |
+
msgid "Unpacking the package"
|
628 |
+
msgstr "Desempacando el paquete"
|
629 |
+
|
630 |
+
#: bws_menu.php:413 bws_menu.php:421
|
631 |
+
msgid "Installing the plugin"
|
632 |
+
msgstr "Instalando el plugin"
|
633 |
+
|
634 |
+
#: bws_menu.php:417 class-bws-settings.php:969 deprecated.php:399
|
635 |
+
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
636 |
+
msgstr "Error al abrir el archivo zip. Por favor, sube el plugin manualmente"
|
637 |
+
|
638 |
+
#: bws_menu.php:424 class-bws-settings.php:975 deprecated.php:405
|
639 |
+
msgid ""
|
640 |
+
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
641 |
+
"plugin manually"
|
642 |
+
msgstr ""
|
643 |
+
"Tu servidor no admite ni ZipArchive ni Phar. Por favor, sube el plugin "
|
644 |
+
"manualmente"
|
645 |
+
|
646 |
+
#: bws_menu.php:427
|
647 |
+
#, php-format
|
648 |
+
msgid "The plugin %s is successfully installed."
|
649 |
+
msgstr "El plugin %s se ha instalado con éxito."
|
650 |
+
|
651 |
+
#: bws_menu.php:434 class-bws-settings.php:982 deprecated.php:412
|
652 |
+
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
653 |
+
msgstr "UploadDir no se puede editar. Por favor, sube el plugin manualmente"
|
654 |
+
|
655 |
+
#: bws_menu.php:439
|
656 |
+
msgid "Activate Plugin"
|
657 |
+
msgstr "Activar plugin"
|
658 |
+
|
659 |
+
#: bws_menu.php:439 bws_menu.php:445
|
660 |
+
msgid "Return to BestWebSoft Panel"
|
661 |
+
msgstr "Volver a Panel de BestWebSoft"
|
662 |
+
|
663 |
+
#: bws_menu.php:449 bws_menu.php:464 bws_menu.php:593
|
664 |
+
msgid "All"
|
665 |
+
msgstr "Todo"
|
666 |
+
|
667 |
+
#: bws_menu.php:450 bws_menu.php:630
|
668 |
+
msgid "Installed"
|
669 |
+
msgstr "Instalado"
|
670 |
+
|
671 |
+
#: bws_menu.php:451
|
672 |
+
msgid "Not Installed"
|
673 |
+
msgstr "No instalado"
|
674 |
+
|
675 |
+
#: bws_menu.php:457
|
676 |
+
msgid "Filter results"
|
677 |
+
msgstr "Filtrar resultados"
|
678 |
+
|
679 |
+
#: bws_menu.php:460 bws_menu.php:589
|
680 |
+
msgid "Category"
|
681 |
+
msgstr "Categoría"
|
682 |
+
|
683 |
+
#: bws_menu.php:524
|
684 |
+
msgid "Not installed"
|
685 |
+
msgstr "No instalado"
|
686 |
+
|
687 |
+
#: bws_menu.php:528
|
688 |
+
msgid "Renew to get updates"
|
689 |
+
msgstr "Renovar para obtener actualizaciones"
|
690 |
+
|
691 |
+
#: bws_menu.php:531
|
692 |
+
#, php-format
|
693 |
+
msgid "Update to v %s"
|
694 |
+
msgstr "Actualizar a v %s"
|
695 |
+
|
696 |
+
#: bws_menu.php:543 bws_menu.php:566 bws_menu.php:575
|
697 |
+
msgid "Install Now"
|
698 |
+
msgstr "Instalar"
|
699 |
+
|
700 |
+
#: bws_menu.php:549 class-bws-settings.php:157 class-bws-settings.php:1065
|
701 |
+
msgid "Upgrade to Pro"
|
702 |
+
msgstr "Actualizar a Pro"
|
703 |
+
|
704 |
+
#: bws_menu.php:563 bws_menu.php:572
|
705 |
+
msgid "Activate this plugin"
|
706 |
+
msgstr "Activar el plugin"
|
707 |
+
|
708 |
+
#: bws_menu.php:575
|
709 |
+
msgid "Install this plugin"
|
710 |
+
msgstr "Instalar el plugin"
|
711 |
+
|
712 |
+
#: bws_menu.php:584
|
713 |
+
msgid "Nothing found. Try another criteria."
|
714 |
+
msgstr "Nada encontrado. Prueba otro criterio."
|
715 |
+
|
716 |
+
#: bws_menu.php:621
|
717 |
+
#, php-format
|
718 |
+
msgid "By %s"
|
719 |
+
msgstr "Por %s"
|
720 |
+
|
721 |
+
#: bws_menu.php:628
|
722 |
+
msgid "Already Installed"
|
723 |
+
msgstr "Ya instalado"
|
724 |
+
|
725 |
+
#: bws_menu.php:638
|
726 |
+
msgid "Browse Free WordPress Themes"
|
727 |
+
msgstr "Navegar gratis temas WordPress"
|
728 |
+
|
729 |
+
#: bws_menu.php:647
|
730 |
+
msgid "Send to support"
|
731 |
+
msgstr "Enviar al soporte técnico"
|
732 |
+
|
733 |
+
#: bws_menu.php:654
|
734 |
+
msgid "Send to custom email »"
|
735 |
+
msgstr "Enviar al correo electrónico personalizado »"
|
736 |
+
|
737 |
+
#: class-bws-settings.php:136
|
738 |
+
msgid "Information"
|
739 |
+
msgstr "Información"
|
740 |
+
|
741 |
+
#: class-bws-settings.php:144
|
742 |
+
msgid "Inactive"
|
743 |
+
msgstr "Inactiva"
|
744 |
+
|
745 |
+
#: class-bws-settings.php:152
|
746 |
+
msgid "Expired"
|
747 |
+
msgstr "Expirada"
|
748 |
+
|
749 |
+
#: class-bws-settings.php:155
|
750 |
+
#, php-format
|
751 |
+
msgid "%s day(-s) left"
|
752 |
+
msgstr "%s día(-s) quedan"
|
753 |
+
|
754 |
+
#: class-bws-settings.php:161
|
755 |
+
#, php-format
|
756 |
+
msgid "Expired on %s"
|
757 |
+
msgstr "Expiró el %s"
|
758 |
+
|
759 |
+
#: class-bws-settings.php:161
|
760 |
+
msgid "Renew Now"
|
761 |
+
msgstr "Renovar"
|
762 |
+
|
763 |
+
#: class-bws-settings.php:163
|
764 |
+
msgid "Active"
|
765 |
+
msgstr "Activa"
|
766 |
+
|
767 |
+
#: class-bws-settings.php:168
|
768 |
+
msgid "License"
|
769 |
+
msgstr "Licencia"
|
770 |
+
|
771 |
+
#: class-bws-settings.php:171
|
772 |
+
msgid "Status"
|
773 |
+
msgstr "Estado"
|
774 |
+
|
775 |
+
#: class-bws-settings.php:175
|
776 |
+
msgid "Version"
|
777 |
+
msgstr "Versión"
|
778 |
+
|
779 |
+
#: class-bws-settings.php:285
|
780 |
+
msgid "All plugin settings were restored."
|
781 |
+
msgstr "Se restauraron todos los ajustes del plugin."
|
782 |
+
|
783 |
+
#: class-bws-settings.php:423
|
784 |
+
msgid "Custom Code"
|
785 |
+
msgstr "Código personalizado"
|
786 |
+
|
787 |
+
#: class-bws-settings.php:427 deprecated.php:497
|
788 |
+
msgid "You do not have sufficient permissions to edit plugins for this site."
|
789 |
+
msgstr "No tienes suficientes permisos para editar plugins de este sitio."
|
790 |
+
|
791 |
+
#: class-bws-settings.php:432 deprecated.php:618
|
792 |
+
msgid "These styles will be added to the header on all pages of your site."
|
793 |
+
msgstr ""
|
794 |
+
"Estos estilos se agregarán a la cabecera en todas las páginas de tu sitio."
|
795 |
+
|
796 |
+
#: class-bws-settings.php:435 deprecated.php:620
|
797 |
+
#, php-format
|
798 |
+
msgid ""
|
799 |
+
"This PHP code will be hooked to the %s action and will be printed on front "
|
800 |
+
"end only."
|
801 |
+
msgstr ""
|
802 |
+
"Este código PHP se enganchará a la acción %s y se agregará sólo en el front-"
|
803 |
+
"end."
|
804 |
+
|
805 |
+
#: class-bws-settings.php:438
|
806 |
+
msgid "These code will be added to the header on all pages of your site."
|
807 |
+
msgstr ""
|
808 |
+
"Este código se agregará a la cabecera en todas las páginas de tu sitio."
|
809 |
+
|
810 |
+
#: class-bws-settings.php:446 deprecated.php:644
|
811 |
+
#, php-format
|
812 |
+
msgid ""
|
813 |
+
"You need to make this files writable before you can save your changes. See "
|
814 |
+
"%s the Codex %s for more information."
|
815 |
+
msgstr ""
|
816 |
+
"Es necesario que estos archivos sean editables antes de poder guardar los "
|
817 |
+
"cambios. Consulta %s el Codex %s para obtener más información."
|
818 |
+
|
819 |
+
#: class-bws-settings.php:456 deprecated.php:626
|
820 |
+
msgid "Browsing"
|
821 |
+
msgstr "Navegar"
|
822 |
+
|
823 |
+
#: class-bws-settings.php:461
|
824 |
+
#, php-format
|
825 |
+
msgid "Activate custom %s code."
|
826 |
+
msgstr "Activar código personalizado de %s."
|
827 |
+
|
828 |
+
#: class-bws-settings.php:469 deprecated.php:633
|
829 |
+
#, php-format
|
830 |
+
msgid "Learn more about %s"
|
831 |
+
msgstr "Aprende más de %s"
|
832 |
+
|
833 |
+
#: class-bws-settings.php:529
|
834 |
+
msgid "Miscellaneous Settings"
|
835 |
+
msgstr "Ajustes varios"
|
836 |
+
|
837 |
+
#: class-bws-settings.php:538 class-bws-settings.php:593
|
838 |
+
#, php-format
|
839 |
+
msgid ""
|
840 |
+
"It is prohibited to change %s settings on this site in the %s network "
|
841 |
+
"settings."
|
842 |
+
msgstr ""
|
843 |
+
"Está prohibido cambiar la configuración de %s en este sitio por los "
|
844 |
+
"parámetros de la red de %s."
|
845 |
+
|
846 |
+
#: class-bws-settings.php:541 class-bws-settings.php:596
|
847 |
+
#, php-format
|
848 |
+
msgid ""
|
849 |
+
"It is prohibited to view %s settings on this site in the %s network settings."
|
850 |
+
msgstr ""
|
851 |
+
"Está prohibido ver la configuración de %s en este sitio por los "
|
852 |
+
"parámetros de la red de %s."
|
853 |
+
|
854 |
+
#: class-bws-settings.php:550
|
855 |
+
msgid "Pro Options"
|
856 |
+
msgstr "Opciones Pro"
|
857 |
+
|
858 |
+
#: class-bws-settings.php:554
|
859 |
+
msgid "Enable to display plugin Pro options."
|
860 |
+
msgstr "Activar muestro de las opciones Pro del plugin."
|
861 |
+
|
862 |
+
#: class-bws-settings.php:560
|
863 |
+
msgid "Track Usage"
|
864 |
+
msgstr "Seguir el uso"
|
865 |
+
|
866 |
+
#: class-bws-settings.php:564
|
867 |
+
msgid ""
|
868 |
+
"Enable to allow tracking plugin usage anonymously in order to make it better."
|
869 |
+
msgstr ""
|
870 |
+
"Activar permiso de seguir el uso de plugin de forma anónima con el fin de "
|
871 |
+
"hacerlo mejor."
|
872 |
+
|
873 |
+
#: class-bws-settings.php:569
|
874 |
+
msgid "Default Settings"
|
875 |
+
msgstr "Ajustes por defecto"
|
876 |
+
|
877 |
+
#: class-bws-settings.php:571
|
878 |
+
msgid "Restore Settings"
|
879 |
+
msgstr "Restaurar ajustes"
|
880 |
+
|
881 |
+
#: class-bws-settings.php:572
|
882 |
+
msgid "This will restore plugin settings to defaults."
|
883 |
+
msgstr "Esto restaurará los ajustes de plugin por defecto."
|
884 |
+
|
885 |
+
#: class-bws-settings.php:584
|
886 |
+
msgid "Import / Export"
|
887 |
+
msgstr "Importar / Exportar"
|
888 |
+
|
889 |
+
#: class-bws-settings.php:700 class-bws-settings.php:733
|
890 |
+
#: class-bws-settings.php:755
|
891 |
+
msgid "License Key"
|
892 |
+
msgstr "Clave de licencia"
|
893 |
+
|
894 |
+
#: class-bws-settings.php:723
|
895 |
+
msgid "Congratulations! Pro license is activated successfully."
|
896 |
+
msgstr "¡Felicitaciones! Licencia Pro está activada con éxito."
|
897 |
+
|
898 |
+
#: class-bws-settings.php:724
|
899 |
+
#, php-format
|
900 |
+
msgid "You will be automatically redirected to the %s in %s seconds."
|
901 |
+
msgstr "En %s segundos automáticamente serás dirigido a %s."
|
902 |
+
|
903 |
+
#: class-bws-settings.php:724
|
904 |
+
msgid "Settings page"
|
905 |
+
msgstr "Página de ajustes"
|
906 |
+
|
907 |
+
#: class-bws-settings.php:739
|
908 |
+
#, php-format
|
909 |
+
msgid "Enter your license key to activate %s and get premium plugin features."
|
910 |
+
msgstr ""
|
911 |
+
"Introduce tu clave de licencia para activar %s y obtener funciones premium "
|
912 |
+
"del plugin."
|
913 |
+
|
914 |
+
#: class-bws-settings.php:742 class-bws-settings.php:929 deprecated.php:362
|
915 |
+
#: deprecated.php:703
|
916 |
+
msgid ""
|
917 |
+
"Unfortunately, you have exceeded the number of available tries per day. "
|
918 |
+
"Please, upload the plugin manually."
|
919 |
+
msgstr ""
|
920 |
+
"Por desgracia, has excedido el número de intentos por hoy. Por favor, sube "
|
921 |
+
"el plugin manualmente."
|
922 |
+
|
923 |
+
#: class-bws-settings.php:745 deprecated.php:694
|
924 |
+
#, php-format
|
925 |
+
msgid "Start Your Free %s-Day Trial Now"
|
926 |
+
msgstr "Comienza tu prueba gratuita de %s días"
|
927 |
+
|
928 |
+
#: class-bws-settings.php:760
|
929 |
+
msgid ""
|
930 |
+
"If necessary, you can check if the license key is correct or reenter it in "
|
931 |
+
"the field below."
|
932 |
+
msgstr ""
|
933 |
+
"Si es necesario, puedes comprobar si la clave de licencia es correcta o "
|
934 |
+
"introducirla otra vez en el campo abajo."
|
935 |
+
|
936 |
+
#: class-bws-settings.php:765
|
937 |
+
msgid "Manage License Settings"
|
938 |
+
msgstr "Gestionar ajustes de licencias"
|
939 |
+
|
940 |
+
#: class-bws-settings.php:767
|
941 |
+
msgid "Login to Client Area"
|
942 |
+
msgstr "Acceder al Área de Cliente"
|
943 |
+
|
944 |
+
#: class-bws-settings.php:769
|
945 |
+
msgid ""
|
946 |
+
"Manage active licenses, download BWS products, and view your payment history "
|
947 |
+
"using BestWebSoft Client Area."
|
948 |
+
msgstr ""
|
949 |
+
"Gestiona licencias activas, descarga productos BWS y ve la historia de pagos "
|
950 |
+
"con Área de Cliente de BestWebSoft."
|
951 |
+
|
952 |
+
#: class-bws-settings.php:824 class-bws-settings.php:927 deprecated.php:141
|
953 |
+
#: deprecated.php:360
|
954 |
+
msgid "This license key is bound to another site."
|
955 |
+
msgstr "Esta clave de licencia está enlazada al otro sitio."
|
956 |
+
|
957 |
+
#: class-bws-settings.php:826 deprecated.php:143
|
958 |
+
msgid ""
|
959 |
+
"This license key is valid, but Your license has expired. If you want to "
|
960 |
+
"update our plugin in future, you should extend the license."
|
961 |
+
msgstr ""
|
962 |
+
"Esta clave de licencia está válida, pero tu licencia ha expirado. Si deseas "
|
963 |
+
"actualizar nuestro plugin en el futuro debes extender la licencia."
|
964 |
+
|
965 |
+
#: class-bws-settings.php:828 deprecated.php:145
|
966 |
+
msgid "Unfortunately, you have exceeded the number of available tries."
|
967 |
+
msgstr "Por desgracia, has excedido el número de intentos."
|
968 |
+
|
969 |
+
#: class-bws-settings.php:830 deprecated.php:147
|
970 |
+
msgid ""
|
971 |
+
"Unfortunately, the Pro Trial licence was already installed to this domain. "
|
972 |
+
"The Pro Trial license can be installed only once."
|
973 |
+
msgstr ""
|
974 |
+
"Por desgracia, la licencia Pro Trial ha estado ya instalada en este dominio. "
|
975 |
+
"La licencia Pro Trial puede estar instalada una sola vez."
|
976 |
+
|
977 |
+
#: class-bws-settings.php:835 deprecated.php:151
|
978 |
+
msgid "The Pro Trial license key is valid."
|
979 |
+
msgstr "La licencia Pro Trial está válida."
|
980 |
+
|
981 |
+
#: class-bws-settings.php:843 deprecated.php:159 deprecated.php:246
|
982 |
+
#, php-format
|
983 |
+
msgid ""
|
984 |
+
"In order to continue using the plugin it is necessary to buy a %s license."
|
985 |
+
msgstr "Para seguir usando el plugin es necesario comprar una licencia de %s."
|
986 |
+
|
987 |
+
#: class-bws-settings.php:1040 deprecated.php:463
|
988 |
+
msgid "Please, enter Your license key"
|
989 |
+
msgstr "Por favor, introduce tu clave de licencia"
|
990 |
+
|
991 |
+
#: class-bws-settings.php:1052
|
992 |
+
msgid "Need Help?"
|
993 |
+
msgstr "¿Necesitas ayuda?"
|
994 |
+
|
995 |
+
#: class-bws-settings.php:1054
|
996 |
+
msgid "Read the Instruction"
|
997 |
+
msgstr "Lee las instrucciones"
|
998 |
+
|
999 |
+
#: class-bws-settings.php:1058
|
1000 |
+
msgid "Watch the Video"
|
1001 |
+
msgstr "Ve el vídeo"
|
1002 |
+
|
1003 |
+
#: class-bws-settings.php:1069
|
1004 |
+
msgid "Start Your Free Trial"
|
1005 |
+
msgstr "Comienza tu prueba gratuita"
|
1006 |
+
|
1007 |
+
#: deactivation-form.php:26
|
1008 |
+
msgid "Need help? We are ready to answer your questions."
|
1009 |
+
msgstr ""
|
1010 |
+
|
1011 |
+
#: deactivation-form.php:26
|
1012 |
+
msgid "Contact Support"
|
1013 |
+
msgstr ""
|
1014 |
+
|
1015 |
+
#: deactivation-form.php:31
|
1016 |
+
msgid "The plugin is not working"
|
1017 |
+
msgstr ""
|
1018 |
+
|
1019 |
+
#: deactivation-form.php:33
|
1020 |
+
msgid "Kindly share what didn't work so we can fix it in future updates..."
|
1021 |
+
msgstr ""
|
1022 |
+
|
1023 |
+
#: deactivation-form.php:37
|
1024 |
+
msgid "The plugin didn't work as expected"
|
1025 |
+
msgstr ""
|
1026 |
+
|
1027 |
+
#: deactivation-form.php:39
|
1028 |
+
msgid "What did you expect?"
|
1029 |
+
msgstr ""
|
1030 |
+
|
1031 |
+
#: deactivation-form.php:43
|
1032 |
+
msgid "The plugin suddenly stopped working"
|
1033 |
+
msgstr ""
|
1034 |
+
|
1035 |
+
#: deactivation-form.php:50
|
1036 |
+
msgid "The plugin broke my site"
|
1037 |
+
msgstr ""
|
1038 |
+
|
1039 |
+
#: deactivation-form.php:57
|
1040 |
+
msgid "I couldn't understand how to get it work"
|
1041 |
+
msgstr ""
|
1042 |
+
|
1043 |
+
#: deactivation-form.php:64
|
1044 |
+
msgid "I found a better plugin"
|
1045 |
+
msgstr ""
|
1046 |
+
|
1047 |
+
#: deactivation-form.php:66
|
1048 |
+
msgid "What's the plugin name?"
|
1049 |
+
msgstr ""
|
1050 |
+
|
1051 |
+
#: deactivation-form.php:70
|
1052 |
+
msgid "The plugin is great, but I need specific feature that you don't support"
|
1053 |
+
msgstr ""
|
1054 |
+
|
1055 |
+
#: deactivation-form.php:72
|
1056 |
+
msgid "What feature?"
|
1057 |
+
msgstr ""
|
1058 |
+
|
1059 |
+
#: deactivation-form.php:76
|
1060 |
+
msgid "I no longer need the plugin"
|
1061 |
+
msgstr ""
|
1062 |
+
|
1063 |
+
#: deactivation-form.php:82
|
1064 |
+
msgid "It's a temporary deactivation, I'm just debugging an issue"
|
1065 |
+
msgstr ""
|
1066 |
+
|
1067 |
+
#: deactivation-form.php:88
|
1068 |
+
msgid "Other"
|
1069 |
+
msgstr ""
|
1070 |
+
|
1071 |
+
#: deactivation-form.php:122
|
1072 |
+
msgid "Quick Feedback"
|
1073 |
+
msgstr ""
|
1074 |
+
|
1075 |
+
#: deactivation-form.php:123
|
1076 |
+
msgid "If you have a moment, please let us know why you are deactivating"
|
1077 |
+
msgstr ""
|
1078 |
+
|
1079 |
+
#: deactivation-form.php:128
|
1080 |
+
msgid "Anonymous feedback"
|
1081 |
+
msgstr ""
|
1082 |
+
|
1083 |
+
#: deactivation-form.php:130
|
1084 |
+
msgid "Cancel"
|
1085 |
+
msgstr ""
|
1086 |
+
|
1087 |
+
#: deactivation-form.php:230
|
1088 |
+
msgid "Processing"
|
1089 |
+
msgstr ""
|
1090 |
+
|
1091 |
+
#: deactivation-form.php:259
|
1092 |
+
msgid "Submit & Deactivate"
|
1093 |
+
msgstr ""
|
1094 |
+
|
1095 |
+
#: deactivation-form.php:276
|
1096 |
+
msgid "Please tell us the reason so we can improve it."
|
1097 |
+
msgstr ""
|
1098 |
+
|
1099 |
+
#: deactivation-form.php:344
|
1100 |
+
msgid "Deactivate"
|
1101 |
+
msgstr ""
|
1102 |
+
|
1103 |
+
#: deprecated.php:93
|
1104 |
+
msgid "System Status"
|
1105 |
+
msgstr "Información de sistema"
|
1106 |
+
|
1107 |
+
#: deprecated.php:204
|
1108 |
+
msgid "Please, enter your license key"
|
1109 |
+
msgstr "Por favor, introduce tu clave de licencia"
|
1110 |
+
|
1111 |
+
#: deprecated.php:223
|
1112 |
+
msgid ""
|
1113 |
+
"If necessary, you can check if the license key is correct or reenter it in "
|
1114 |
+
"the field below. You can find your license key on your personal page - "
|
1115 |
+
"Client Area - on our website"
|
1116 |
+
msgstr ""
|
1117 |
+
"Si es necesario, puedes comprobar si la clave de licencia es correcta o "
|
1118 |
+
"introducirla otra vez en el campo abajo. Puedes encontrar tu clave de "
|
1119 |
+
"licencia en tu página personal - Área de Cliente - en nuestro sitio"
|
1120 |
+
|
1121 |
+
#: deprecated.php:223
|
1122 |
+
msgid ""
|
1123 |
+
"(your username is the email address specified during the purchase). If "
|
1124 |
+
"necessary, please submit \"Lost your password?\" request."
|
1125 |
+
msgstr ""
|
1126 |
+
"(tu nombre del usuario es la dirección de correo electrónico especificada "
|
1127 |
+
"durante la compra). Si es necesario, haz clic en \"¿Has perdido tu "
|
1128 |
+
"contraseña?\"."
|
1129 |
+
|
1130 |
+
#: deprecated.php:247
|
1131 |
+
msgid "After that, you can activate it by entering your license key."
|
1132 |
+
msgstr "Después, puedes activarlo introduciendo tu clave de licencia."
|
1133 |
+
|
1134 |
+
#: deprecated.php:249 deprecated.php:688
|
1135 |
+
msgid "License key can be found in the"
|
1136 |
+
msgstr "La clave de licencia se puede encontrar en el"
|
1137 |
+
|
1138 |
+
#: deprecated.php:251 deprecated.php:690
|
1139 |
+
msgid "(your username is the email address specified during the purchase)."
|
1140 |
+
msgstr ""
|
1141 |
+
"(tu nombre del usuario es la dirección de correo electrónico especificada "
|
1142 |
+
"durante la compra)."
|
1143 |
+
|
1144 |
+
#: deprecated.php:278
|
1145 |
+
msgid ""
|
1146 |
+
"Congratulations! The Pro license of the plugin is activated successfully."
|
1147 |
+
msgstr "¡Felicitaciones! La licencia Pro está activada con éxito."
|
1148 |
+
|
1149 |
+
#: deprecated.php:280 deprecated.php:669
|
1150 |
+
msgid "Please, go to"
|
1151 |
+
msgstr "Por favor ve a"
|
1152 |
+
|
1153 |
+
#: deprecated.php:280 deprecated.php:669
|
1154 |
+
msgid "the setting page"
|
1155 |
+
msgstr "la página de ajustes"
|
1156 |
+
|
1157 |
+
#: deprecated.php:281 deprecated.php:670
|
1158 |
+
msgid "You will be redirected automatically in 5 seconds."
|
1159 |
+
msgstr "En 5 segundos automáticamente serás dirigido a la nueva ubicación."
|
1160 |
+
|
1161 |
+
#: deprecated.php:315
|
1162 |
+
msgid "Check premium options on the plugin settings page!"
|
1163 |
+
msgstr "¡Comprueba las opciones premium en la página de ajustes del plugin!"
|
1164 |
+
|
1165 |
+
#: deprecated.php:478
|
1166 |
+
msgid "Restore all plugin settings to defaults"
|
1167 |
+
msgstr "Restaurar todos los ajustes de plugin por defecto"
|
1168 |
+
|
1169 |
+
#: deprecated.php:480
|
1170 |
+
msgid "Restore settings"
|
1171 |
+
msgstr "Restaurar ajustes"
|
1172 |
+
|
1173 |
+
#: deprecated.php:548 deprecated.php:575
|
1174 |
+
#, php-format
|
1175 |
+
msgid "File %s edited successfully."
|
1176 |
+
msgstr "Archivo %s editado con éxito."
|
1177 |
+
|
1178 |
+
#: deprecated.php:550 deprecated.php:577
|
1179 |
+
msgid "Not enough permissions to create or update the file"
|
1180 |
+
msgstr "No hay suficientes permisos para crear o actualizar el archivo"
|
1181 |
+
|
1182 |
+
#: deprecated.php:580
|
1183 |
+
msgid "Not enough permissions to create the file"
|
1184 |
+
msgstr "No hay suficientes permisos para crear el archivo"
|
1185 |
+
|
1186 |
+
#: deprecated.php:624
|
1187 |
+
msgid "Editing"
|
1188 |
+
msgstr "Editar"
|
1189 |
+
|
1190 |
+
#: deprecated.php:667
|
1191 |
+
msgid ""
|
1192 |
+
"Congratulations! Pro version of the plugin is installed and activated "
|
1193 |
+
"successfully."
|
1194 |
+
msgstr "¡Felicitaciones! Licencia Pro está instalada y activada con éxito."
|
1195 |
+
|
1196 |
+
#: deprecated.php:677
|
1197 |
+
msgid "Show Pro features"
|
1198 |
+
msgstr "Mostrar funciones Pro"
|
1199 |
+
|
1200 |
+
#: deprecated.php:684
|
1201 |
+
msgid "Enter your license key to install and activate"
|
1202 |
+
msgstr "Introduce tu clave de licencia para instalar y activar"
|
1203 |
+
|
1204 |
+
#: deprecated.php:686
|
1205 |
+
msgid "version of the plugin."
|
1206 |
+
msgstr "la versión del plugin."
|
1207 |
+
|
1208 |
+
#: product_list.php:7
|
1209 |
+
msgid "Admin Tools"
|
1210 |
+
msgstr "Herramientas"
|
1211 |
+
|
1212 |
+
#: product_list.php:8
|
1213 |
+
msgid "Content"
|
1214 |
+
msgstr "Contenido"
|
1215 |
+
|
1216 |
+
#: product_list.php:9
|
1217 |
+
msgid "eCommerce"
|
1218 |
+
msgstr "Comercio electrónico"
|
1219 |
+
|
1220 |
+
#: product_list.php:10
|
1221 |
+
msgid "Marketing"
|
1222 |
+
msgstr "Márketing"
|
1223 |
+
|
1224 |
+
#: product_list.php:11
|
1225 |
+
msgid "Navigation"
|
1226 |
+
msgstr "Navegación"
|
1227 |
+
|
1228 |
+
#: product_list.php:12
|
1229 |
+
msgid "Recommended"
|
1230 |
+
msgstr "Recomendado"
|
1231 |
+
|
1232 |
+
#: product_list.php:13
|
1233 |
+
msgid "Security"
|
1234 |
+
msgstr "Seguridad"
|
1235 |
+
|
1236 |
+
#: product_list.php:14
|
1237 |
+
msgid "SEO"
|
1238 |
+
msgstr "SEO"
|
1239 |
+
|
1240 |
+
#: product_list.php:15
|
1241 |
+
msgid "SMM"
|
1242 |
+
msgstr "SMM"
|
1243 |
+
|
1244 |
+
#: product_list.php:23
|
1245 |
+
msgid ""
|
1246 |
+
"Protect WordPress website forms from spam entries by means of math logic."
|
1247 |
+
msgstr ""
|
1248 |
+
"Protege los formularios en el sitio de WordPress de las entradas de spam "
|
1249 |
+
"mediante lógica matemática."
|
1250 |
+
|
1251 |
+
#: product_list.php:35
|
1252 |
+
msgid "Create your personal car rental/booking and reservation website."
|
1253 |
+
msgstr "Crea tu sitio personal de alquiler/reserva de automóviles."
|
1254 |
+
|
1255 |
+
#: product_list.php:45
|
1256 |
+
msgid ""
|
1257 |
+
"Allow customers to reach you using secure contact form plugin any website "
|
1258 |
+
"must have."
|
1259 |
+
msgstr ""
|
1260 |
+
"Permite a los clientes ponerse en contacto contigo usando el plugin seguro "
|
1261 |
+
"del formulario de contacto que debe tener cualquier sitio."
|
1262 |
+
|
1263 |
+
#: product_list.php:55
|
1264 |
+
msgid "Add unlimited number of contact forms to WordPress website."
|
1265 |
+
msgstr ""
|
1266 |
+
"Añade el número ilimitado de formularios de contacto al sitio de WordPress."
|
1267 |
+
|
1268 |
+
#: product_list.php:65
|
1269 |
+
msgid "Save and manage Contact Form messages. Never lose important data."
|
1270 |
+
msgstr ""
|
1271 |
+
"Guarda y gestiona los mensajes de Contact Form plugin. Nunca pierde datos "
|
1272 |
+
"importantes."
|
1273 |
+
|
1274 |
+
#: product_list.php:75
|
1275 |
+
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1276 |
+
msgstr ""
|
1277 |
+
"Añade el número ilimitado de páginas personalizadas al escritorio de "
|
1278 |
+
"WordPress."
|
1279 |
+
|
1280 |
+
#: product_list.php:82
|
1281 |
+
msgid "Add custom fields to WordPress website search results."
|
1282 |
+
msgstr ""
|
1283 |
+
"Añade los campos personalizados a los resultados de búsqueda en el sitio de "
|
1284 |
+
"WordPress."
|
1285 |
+
|
1286 |
+
#: product_list.php:89
|
1287 |
+
msgid ""
|
1288 |
+
"Add custom post types and taxonomies to WordPress website search results."
|
1289 |
+
msgstr ""
|
1290 |
+
"Añade los tipos de contenido personalizados y taxonomías a los resultados de "
|
1291 |
+
"búsqueda en el sitio de WordPress."
|
1292 |
+
|
1293 |
+
#: product_list.php:99
|
1294 |
+
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1295 |
+
msgstr ""
|
1296 |
+
"Añade los botones de donación PayPal y 2CO para recibir pagos benéficos."
|
1297 |
+
|
1298 |
+
#: product_list.php:106
|
1299 |
+
msgid ""
|
1300 |
+
"Get latest error log messages to diagnose website problems. Define and fix "
|
1301 |
+
"issues faster."
|
1302 |
+
msgstr ""
|
1303 |
+
"Recibe más recientes mensajes del registro de errores para diagnosticar los "
|
1304 |
+
"problemas del sitio. Define y corrige los problemas más rápido."
|
1305 |
+
|
1306 |
+
#: product_list.php:113
|
1307 |
+
msgid ""
|
1308 |
+
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1309 |
+
"widgets."
|
1310 |
+
msgstr ""
|
1311 |
+
"Añade los botones de Facebook Seguir, Me gusta y Compartir a las entradas, "
|
1312 |
+
"páginas y widgets de WordPress."
|
1313 |
+
|
1314 |
+
#: product_list.php:123
|
1315 |
+
msgid ""
|
1316 |
+
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1317 |
+
"clicks."
|
1318 |
+
msgstr ""
|
1319 |
+
"Añade las galerías, álbumes e imágenes hermosos a tu sitio de WordPress en "
|
1320 |
+
"unos pocos clics."
|
1321 |
+
|
1322 |
+
#: product_list.php:133
|
1323 |
+
msgid ""
|
1324 |
+
"Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
|
1325 |
+
"posts, pages and widgets."
|
1326 |
+
msgstr ""
|
1327 |
+
"Añade los botones de Google +1 Compartir, Seguir, Hangout e insignia de "
|
1328 |
+
"perfil a las entradas, páginas y widgets de WordPress."
|
1329 |
+
|
1330 |
+
#: product_list.php:143
|
1331 |
+
msgid ""
|
1332 |
+
"Stronger security solution which protects your WordPress website from hacks "
|
1333 |
+
"and unauthorized login attempts."
|
1334 |
+
msgstr ""
|
1335 |
+
"Potente solución de seguridad que protege tu sitio de WordPress de los "
|
1336 |
+
"hackeos y intentos no autorizados de acceder."
|
1337 |
+
|
1338 |
+
#: product_list.php:153
|
1339 |
+
msgid ""
|
1340 |
+
"Add Adsense ads to WordPress website pages, posts, custom posts, search "
|
1341 |
+
"results, categories, tags, and widgets."
|
1342 |
+
msgstr ""
|
1343 |
+
"Añade los anuncios de AdSense a las páginas, entradas, "
|
1344 |
+
"entradas personalizadas, resultados de búsqueda, categorías, etiquetas y "
|
1345 |
+
"widgets en el sitio de WordPress, ."
|
1346 |
+
|
1347 |
+
#: product_list.php:163
|
1348 |
+
msgid "Add Google Analytics code to WordPress website and track basic stats."
|
1349 |
+
msgstr ""
|
1350 |
+
"Añade el código de Google Analytics al sitio de WordPress y sigue las "
|
1351 |
+
"estadísticas básicas."
|
1352 |
+
|
1353 |
+
#: product_list.php:173
|
1354 |
+
msgid ""
|
1355 |
+
"Protect WordPress website forms from spam entries with Google Captcha "
|
1356 |
+
"(reCaptcha)."
|
1357 |
+
msgstr ""
|
1358 |
+
"Protege los formularios en sitio de WordPress de las entradas de spam con "
|
1359 |
+
"Google Captcha (reCaptcha)."
|
1360 |
+
|
1361 |
+
#: product_list.php:183
|
1362 |
+
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1363 |
+
msgstr ""
|
1364 |
+
"Añade los mapas de Google personalizados a las entradas, páginas y widgets "
|
1365 |
+
"de WordPress."
|
1366 |
+
|
1367 |
+
#: product_list.php:193
|
1368 |
+
msgid ""
|
1369 |
+
"Generate and add XML sitemap to WordPress website. Help search engines index "
|
1370 |
+
"your blog."
|
1371 |
+
msgstr ""
|
1372 |
+
"Genera y añade los archivos de XML sitemap al sitio de WordPress. Ayuda a "
|
1373 |
+
"los buscadores a indexar tu blog."
|
1374 |
+
|
1375 |
+
#: product_list.php:203
|
1376 |
+
msgid ""
|
1377 |
+
"Replace external WordPress website links with Google shortlinks and track "
|
1378 |
+
"click stats."
|
1379 |
+
msgstr ""
|
1380 |
+
"Reemplaza los enlaces externos con los enlaces cortos de Google en el sitio "
|
1381 |
+
"de WordPress y sigue las estadísticas de clics."
|
1382 |
+
|
1383 |
+
#: product_list.php:210
|
1384 |
+
msgid ""
|
1385 |
+
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1386 |
+
"hostnames, etc."
|
1387 |
+
msgstr ""
|
1388 |
+
"Protege el sitio de WordPress - permite y impide el acceso para determinadas "
|
1389 |
+
"direcciones IP, nombres de host, etc."
|
1390 |
+
|
1391 |
+
#: product_list.php:220
|
1392 |
+
msgid ""
|
1393 |
+
"Create your personal job board and listing WordPress website. Search jobs, "
|
1394 |
+
"submit CV/resumes, choose candidates."
|
1395 |
+
msgstr ""
|
1396 |
+
"Crea tu tablero personal con la lista de trabajos en el sitio de WordPress. "
|
1397 |
+
"Busca trabajos, envía CV, elija candidatos."
|
1398 |
+
|
1399 |
+
#: product_list.php:227
|
1400 |
+
msgid ""
|
1401 |
+
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1402 |
+
"attempts."
|
1403 |
+
msgstr ""
|
1404 |
+
"Protege el sitio de WordPress contra ataques de fuerza bruta. Limita el "
|
1405 |
+
"número de intentos de acceder."
|
1406 |
+
|
1407 |
+
#: product_list.php:237
|
1408 |
+
msgid ""
|
1409 |
+
"Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
|
1410 |
+
"5 plugins included – profile, insider, etc."
|
1411 |
+
msgstr ""
|
1412 |
+
"Añade los botones de LinkedIn Compartir y Seguir a las entradas, páginas y "
|
1413 |
+
"widgets de WordPress. 5 plugins incluidos - perfil, insider, etc."
|
1414 |
+
|
1415 |
+
#: product_list.php:247
|
1416 |
+
msgid ""
|
1417 |
+
"Translate WordPress website content to other languages manually. Create "
|
1418 |
+
"multilingual pages, posts, widgets, menus, etc."
|
1419 |
+
msgstr ""
|
1420 |
+
"Traduce el contenido del sitio de WordPress a otros idiomas manualmente. "
|
1421 |
+
"Crea páginas multilingües, asi como entradas, widgets, menús, etc. en varios "
|
1422 |
+
"idiomas."
|
1423 |
+
|
1424 |
+
#: product_list.php:257
|
1425 |
+
msgid ""
|
1426 |
+
"Add customizable pagination to WordPress website. Split long content to "
|
1427 |
+
"multiple pages for better navigation."
|
1428 |
+
msgstr ""
|
1429 |
+
"Añade la paginación personalizable al sitio de WordPress. Divide contenido "
|
1430 |
+
"largo en varias páginas para mejorar la navegación."
|
1431 |
+
|
1432 |
+
#: product_list.php:267
|
1433 |
+
msgid ""
|
1434 |
+
"Generate PDF files and print WordPress posts/pages. Customize document "
|
1435 |
+
"header/footer styles and appearance."
|
1436 |
+
msgstr ""
|
1437 |
+
"Genera los archivos PDF e imprima las entradas/páginas de WordPress. "
|
1438 |
+
"Personaliza los estilos de la cabecera/pie de la página del documento y su "
|
1439 |
+
"apariencia."
|
1440 |
+
|
1441 |
+
#: product_list.php:277
|
1442 |
+
msgid ""
|
1443 |
+
"Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
|
1444 |
+
"Profile) to WordPress posts, pages and widgets."
|
1445 |
+
msgstr ""
|
1446 |
+
"Añade los botones de Pinterest Segiur, Guardar y widgets de perfil (Pines, "
|
1447 |
+
"Tablero, Perfil) a las entradas, páginas y widgets de WordPress."
|
1448 |
+
|
1449 |
+
#: product_list.php:287
|
1450 |
+
msgid ""
|
1451 |
+
"Create your personal portfolio WordPress website. Manage and showcase past "
|
1452 |
+
"projects to get more clients."
|
1453 |
+
msgstr ""
|
1454 |
+
"Crea tu cartera personal en el sitio de WordPress. Gestiona y muestra los "
|
1455 |
+
"proyectos anteriores para obtener más clientes."
|
1456 |
+
|
1457 |
+
#: product_list.php:297
|
1458 |
+
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1459 |
+
msgstr ""
|
1460 |
+
"Exporta las entradas de WordPress en formato de archivo CSV fácilmente. "
|
1461 |
+
"Configura el orden de los datos."
|
1462 |
+
|
1463 |
+
#: product_list.php:304
|
1464 |
+
msgid ""
|
1465 |
+
"Add extra fields to default WordPress user profile. The easiest way to "
|
1466 |
+
"create and manage additional custom values."
|
1467 |
+
msgstr ""
|
1468 |
+
"Añade los campos adicionales al perfil estándar del usuario de WordPress. La "
|
1469 |
+
"forma más fácil de crear y gestionar los valores personalizados adicionales."
|
1470 |
+
|
1471 |
+
#: product_list.php:311
|
1472 |
+
msgid ""
|
1473 |
+
"Add and display HTML advertisement banner on WordPress website. Customize "
|
1474 |
+
"bar styles and appearance."
|
1475 |
+
msgstr ""
|
1476 |
+
"Añade y muestra los anuncios publicitarios de HTML en el sitio de WordPress. "
|
1477 |
+
"Personaliza los estilos y la apariencia de la barra."
|
1478 |
+
|
1479 |
+
#: product_list.php:321
|
1480 |
+
msgid ""
|
1481 |
+
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1482 |
+
"widgets."
|
1483 |
+
msgstr ""
|
1484 |
+
"Añade las citas personalizables y bloques de consejos a las entradas, "
|
1485 |
+
"páginas y widgets de WordPress."
|
1486 |
+
|
1487 |
+
#: product_list.php:328
|
1488 |
+
msgid ""
|
1489 |
+
"Add rating plugin to your WordPress website to receive feedback from your "
|
1490 |
+
"customers."
|
1491 |
+
msgstr ""
|
1492 |
+
"Añade el plugin de valoración a tu sitio de WordPress para recibir "
|
1493 |
+
"comentarios de tus clientes."
|
1494 |
+
|
1495 |
+
#: product_list.php:335
|
1496 |
+
msgid ""
|
1497 |
+
"Create your personal real estate WordPress website. Sell, rent and buy "
|
1498 |
+
"properties. Add, search and browse listings easily."
|
1499 |
+
msgstr ""
|
1500 |
+
"Crea tu sitio personal de bienes inmuebles basando en WordPress. Vende, "
|
1501 |
+
"alquila y compra las propiedades. Añade, busca y navega las listas "
|
1502 |
+
"fácilmente."
|
1503 |
+
|
1504 |
+
#: product_list.php:345
|
1505 |
+
msgid ""
|
1506 |
+
"Add related, featured, latest, and popular posts to your WordPress website. "
|
1507 |
+
"Connect your blog readers with a relevant content."
|
1508 |
+
msgstr ""
|
1509 |
+
"Añade las entradas relacionadas, destacadas, recientes y populares a tu "
|
1510 |
+
"sitio de WordPress. Conecta a tus lectores de blog con el contenido "
|
1511 |
+
"relevante."
|
1512 |
+
|
1513 |
+
#: product_list.php:352
|
1514 |
+
msgid ""
|
1515 |
+
"Send bulk email messages to WordPress users. Custom templates, advanced "
|
1516 |
+
"settings and detailed reports."
|
1517 |
+
msgstr ""
|
1518 |
+
"Envía mensajes de correo masivo a los usuarios de WordPress. Plantillas "
|
1519 |
+
"personalizadas, ajustes avanzados e informes detallados."
|
1520 |
+
|
1521 |
+
#: product_list.php:362
|
1522 |
+
msgid ""
|
1523 |
+
"The best responsive slider plugin for your WordPress website. Create "
|
1524 |
+
"beautifully animated slides just in a few clicks."
|
1525 |
+
msgstr ""
|
1526 |
+
"El mejor adaptable carrusel plugin para tu sitio de WordPress. Crea las "
|
1527 |
+
"diapositivas maravillosamente animadas con sólo unos clics."
|
1528 |
+
|
1529 |
+
#: product_list.php:369
|
1530 |
+
msgid ""
|
1531 |
+
"Configure SMTP server to receive email messages from WordPress to Gmail, "
|
1532 |
+
"Yahoo, Hotmail and other services."
|
1533 |
+
msgstr ""
|
1534 |
+
"Configura el servidor SMTP para recibir mensajes de correo electrónico de "
|
1535 |
+
"WordPress en Gmail, Yahoo, Hotmail y otros servicios."
|
1536 |
+
|
1537 |
+
#: product_list.php:376
|
1538 |
+
msgid ""
|
1539 |
+
"Add social media buttons and widgets to WordPress posts, pages and widgets. "
|
1540 |
+
"FB, Twitter, G+1, Pinterest, LinkedIn."
|
1541 |
+
msgstr ""
|
1542 |
+
"Añade los botones y widgets de los medios de comunicación social a las "
|
1543 |
+
"entradas, páginas y widgets de WordPress. FB, Twitter, G+1, Pinterest, "
|
1544 |
+
"LinkedIn."
|
1545 |
+
|
1546 |
+
#: product_list.php:386
|
1547 |
+
msgid ""
|
1548 |
+
"Add social media login, registration, and commenting to your WordPress "
|
1549 |
+
"website."
|
1550 |
+
msgstr ""
|
1551 |
+
"Añade el acceso, registro y comentarios a los medios de comunicación social "
|
1552 |
+
"a tu sitio de WordPress."
|
1553 |
+
|
1554 |
+
#: product_list.php:393
|
1555 |
+
msgid ""
|
1556 |
+
"Add email newsletter sign up form to WordPress posts, pages and widgets. "
|
1557 |
+
"Collect data and subscribe your users."
|
1558 |
+
msgstr ""
|
1559 |
+
"Añade el formulario de inscripción al boletín de noticias a las entradas, "
|
1560 |
+
"páginas y widgets de WordPress. Recoge los datos y suscribe a tus usuarios a "
|
1561 |
+
"las noticias."
|
1562 |
+
|
1563 |
+
#: product_list.php:403
|
1564 |
+
msgid ""
|
1565 |
+
"Add testimonials and feedbacks from your customers to WordPress website "
|
1566 |
+
"posts, pages, and widgets."
|
1567 |
+
msgstr ""
|
1568 |
+
"Añade los testimonios y comentarios de tus clientes a las entradas, páginas "
|
1569 |
+
"y widgets en el sitio de WordPress."
|
1570 |
+
|
1571 |
+
#: product_list.php:410
|
1572 |
+
msgid ""
|
1573 |
+
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1574 |
+
"attendance and generate reports."
|
1575 |
+
msgstr ""
|
1576 |
+
"Mejor plugin de hoja del horario de trabajo para WordPress. Sigue el tiempo "
|
1577 |
+
"laboral de los empleados, optimiza el horario de trabajo en la oficina y "
|
1578 |
+
"crea informes generales."
|
1579 |
+
|
1580 |
+
#: product_list.php:420
|
1581 |
+
msgid ""
|
1582 |
+
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1583 |
+
"and pages."
|
1584 |
+
msgstr ""
|
1585 |
+
"Añade los botones de Twitter Seguir, Twittear, Hashtag y Mencionar a las "
|
1586 |
+
"entradas y páginas de WordPress."
|
1587 |
+
|
1588 |
+
#: product_list.php:430
|
1589 |
+
msgid ""
|
1590 |
+
"Automatically check and update WordPress website core with all installed "
|
1591 |
+
"plugins and themes to the latest versions."
|
1592 |
+
msgstr ""
|
1593 |
+
"Compruebа y actualiza automáticamente el núcleo de sitio de WordPress a las "
|
1594 |
+
"últimas versiones con todos plugins y temas que tienes instalados."
|
1595 |
+
|
1596 |
+
#: product_list.php:440
|
1597 |
+
msgid ""
|
1598 |
+
"Powerful user role management plugin for WordPress website. Create, edit, "
|
1599 |
+
"copy, and delete user roles."
|
1600 |
+
msgstr ""
|
1601 |
+
"Poderoso plugin de gestión de funciones para el sitio de WordPress. Crea, "
|
1602 |
+
"edita, copia y borra los perfiles de usuarios."
|
1603 |
+
|
1604 |
+
#: product_list.php:450
|
1605 |
+
msgid ""
|
1606 |
+
"Display live count of online visitors who are currently browsing your "
|
1607 |
+
"WordPress website."
|
1608 |
+
msgstr ""
|
1609 |
+
"Lleva la cuenta de los visitantes en línea que están hojeando tu sitio de "
|
1610 |
+
"WordPress en ese momento."
|
1611 |
+
|
1612 |
+
#: product_list.php:460
|
1613 |
+
msgid ""
|
1614 |
+
"Backup and export Zendesk Help Center content automatically to your "
|
1615 |
+
"WordPress website database."
|
1616 |
+
msgstr ""
|
1617 |
+
"Haz la copia de seguridad y exporta el contenido de Zendesk Centro de Ayuda "
|
1618 |
+
"automáticamente a tu base de datos en el sitio de WordPress."
|
1619 |
+
|
1620 |
+
#~ msgid ""
|
1621 |
+
#~ "You can use one license of the Pro plugin for one domain only. Please "
|
1622 |
+
#~ "check and edit your license or domain if necessary using you personal "
|
1623 |
+
#~ "Client Area. We strongly recommend you to solve the problem within 24 "
|
1624 |
+
#~ "hours, otherwise the Pro plugin will be deactivated."
|
1625 |
+
#~ msgstr ""
|
1626 |
+
#~ "Puedes usar una licencia Pro del plugin para un solo dominio. Por favor, "
|
1627 |
+
#~ "comprueba y edita tu licencia o dominio si es necesario utilizando tu "
|
1628 |
+
#~ "Área de Cliente. Te recomendamos que resuelva el problema en 24 horas, de "
|
1629 |
+
#~ "lo contrario el plugin Pro se desactivará."
|
1630 |
+
|
1631 |
+
#~ msgid "email"
|
1632 |
+
#~ msgstr "correo electrónico"
|
1633 |
+
|
1634 |
+
#~ msgid "Please enter valid %1$s Account %2$s"
|
1635 |
+
#~ msgstr "Por favor, introduce %2$s válido para cuenta de %1$s "
|
1636 |
+
|
1637 |
+
#~ msgid "email address"
|
1638 |
+
#~ msgstr "dirección de correo electrónico"
|
1639 |
+
|
1640 |
+
#~ msgid ""
|
1641 |
+
#~ "The %1$s you specified for %2$s Account is already used by another user"
|
1642 |
+
#~ msgstr ""
|
1643 |
+
#~ "La %1$s que has especificado para cuenta de %2$s ya es utilizada por otro "
|
1644 |
+
#~ "usuario"
|
1645 |
+
|
1646 |
+
#~ msgid "Social Login Accounts"
|
1647 |
+
#~ msgstr "Сuentas de Social Login"
|
1648 |
+
|
1649 |
+
#~ msgid "existing Gmail address"
|
1650 |
+
#~ msgstr "dirección de Gmail existente"
|
1651 |
+
|
1652 |
+
#~ msgid "Enter %s to enable sign in with Social Login button."
|
1653 |
+
#~ msgstr "Introduce %s para activar el acceso con el botón de Social Login."
|
1654 |
+
|
1655 |
+
#~ msgid "This email is already registered, please choose another one."
|
1656 |
+
#~ msgstr "Este correo electrónico ya está registrado, por favor, elija otro."
|
1657 |
+
|
1658 |
+
#~ msgid "ERROR"
|
1659 |
+
#~ msgstr "ERROR"
|
1660 |
+
|
1661 |
+
#~ msgid "https://bestwebsoft.com/"
|
1662 |
+
#~ msgstr "https://bestwebsoft.com/"
|
1663 |
+
|
1664 |
+
#~ msgid "BestWebSoft"
|
1665 |
+
#~ msgstr "BestWebSoft"
|
1666 |
+
|
1667 |
+
#~ msgid "https://bestwebsoft.com/products/wordpress/plugins/social-login/"
|
1668 |
+
#~ msgstr "https://bestwebsoft.com/products/wordpress/plugins/social-login/"
|
1669 |
+
|
1670 |
+
#~ msgid "Social Login by BestWebSoft"
|
1671 |
+
#~ msgstr "Social Login by BestWebSoft"
|
1672 |
+
|
1673 |
+
#~ msgid "Sign In with %1$s"
|
1674 |
+
#~ msgstr "Acceder con %1$s"
|
1675 |
+
|
1676 |
+
#~ msgid "Error"
|
1677 |
+
#~ msgstr "Error"
|
1678 |
+
|
1679 |
+
#~ msgid "login failed"
|
1680 |
+
#~ msgstr "error de acceso"
|
1681 |
+
|
1682 |
+
#~ msgid "provided token is invalid"
|
1683 |
+
#~ msgstr "token proporcionado no es válido"
|
1684 |
+
|
1685 |
+
#~ msgid "provided token data is invalid"
|
1686 |
+
#~ msgstr "proporcionados datos de token no son válidos"
|
1687 |
+
|
1688 |
+
#~ msgid "user data is insufficient for registration"
|
1689 |
+
#~ msgstr "datos de usuario son insuficientes para el registro"
|
1690 |
+
|
1691 |
+
#~ msgid "you need to verify your account Email"
|
1692 |
+
#~ msgstr "necesitas verificar el correo electrónico de tu cuenta"
|
1693 |
+
|
1694 |
+
#~ msgid "new users registration is disabled"
|
1695 |
+
#~ msgstr "registro de nuevos usuarios está desactivado"
|
1696 |
+
|
1697 |
+
#~ msgid "failed to register new user"
|
1698 |
+
#~ msgstr "error al registrar nuevo usuario"
|
1699 |
+
|
1700 |
+
#~ msgid "please allow the access to your profile information"
|
1701 |
+
#~ msgstr "permite el acceso a la información de tu perfil"
|
1702 |
+
|
1703 |
+
#~ msgid ""
|
1704 |
+
#~ "Choose the buttons position in the form. This option is available only "
|
1705 |
+
#~ "for Login and Registration forms."
|
1706 |
+
#~ msgstr ""
|
1707 |
+
#~ "Elija la posición de los botones en el formulario. Esta opción está "
|
1708 |
+
#~ "disponible sólo para los formularios de Acceso y Registro."
|
1709 |
+
|
1710 |
+
#~ msgid "Bottom"
|
1711 |
+
#~ msgstr "Abajo"
|
1712 |
+
|
1713 |
+
#~ msgid "Before the submit button"
|
1714 |
+
#~ msgstr "Antes del botón Enviar"
|
1715 |
+
|
1716 |
+
#~ msgid "Top"
|
1717 |
+
#~ msgstr "Arriba"
|
1718 |
+
|
1719 |
+
#~ msgid "Buttons Position"
|
1720 |
+
#~ msgstr "Posición de botones"
|
1721 |
+
|
1722 |
+
#~ msgid "Display Button in"
|
1723 |
+
#~ msgstr "Mostrar el Botón en"
|
1724 |
+
|
1725 |
+
#~ msgid "Client Secret"
|
1726 |
+
#~ msgstr "Secreto del cliente"
|
1727 |
+
|
1728 |
+
#~ msgid "Client ID"
|
1729 |
+
#~ msgstr "ID de cliente"
|
1730 |
+
|
1731 |
+
#~ msgid "Custom code"
|
1732 |
+
#~ msgstr "Código personalizado"
|
1733 |
+
|
1734 |
+
#~ msgid "Settings saved"
|
1735 |
+
#~ msgstr "Ajustes guardados"
|
1736 |
+
|
1737 |
+
#~ msgid "WordPress Comments form"
|
1738 |
+
#~ msgstr "Formulario de Comentarios de WordPress"
|
1739 |
+
|
1740 |
+
#~ msgid "WordPress Registration form"
|
1741 |
+
#~ msgstr "Formulario de Registro de WordPress"
|
1742 |
+
|
1743 |
+
#~ msgid "WordPress Login form"
|
1744 |
+
#~ msgstr "Formulario de Acceso de WordPress"
|
1745 |
+
|
1746 |
+
#~ msgid "Social Login Settings"
|
1747 |
+
#~ msgstr "Ajustes de Social Login"
|
bws_menu/languages/bestwebsoft-fr_FR.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-fr_FR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 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"
|
@@ -17,11 +17,11 @@ msgstr ""
|
|
17 |
"X-Generator: Poedit 1.8.7.1\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: bws_functions.php:
|
21 |
msgid "requires"
|
22 |
msgstr "obligatoire"
|
23 |
|
24 |
-
#: bws_functions.php:
|
25 |
msgid ""
|
26 |
"or higher, that is why it has been deactivated! Please upgrade WordPress and "
|
27 |
"try again."
|
@@ -29,61 +29,55 @@ msgstr ""
|
|
29 |
"ou supérieure, c'est pourquoi il a été désactivé! Merci de faire la mise à "
|
30 |
"jour de WordPress puis de ré-essayer."
|
31 |
|
32 |
-
#: bws_functions.php:
|
33 |
msgid "Back to the WordPress"
|
34 |
msgstr "Retour à WordPress"
|
35 |
|
36 |
-
#: bws_functions.php:
|
37 |
msgid "Plugins page"
|
38 |
msgstr "Page des extensions"
|
39 |
|
40 |
-
#: bws_functions.php:
|
41 |
msgid "Like the plugin?"
|
42 |
msgstr "Voter pour l'extension"
|
43 |
|
44 |
-
#: bws_functions.php:
|
45 |
msgid "Rate it"
|
46 |
msgstr "Notez là"
|
47 |
|
48 |
-
#: bws_functions.php:
|
49 |
msgid "Need help?"
|
50 |
msgstr "Besoin d'aide ?"
|
51 |
|
52 |
-
#: bws_functions.php:
|
53 |
msgid "Visit Help Center"
|
54 |
msgstr "Visiter le site du support"
|
55 |
|
56 |
-
#: bws_functions.php:
|
57 |
msgid "Want to support the plugin?"
|
58 |
msgstr "Voter pour l'extension"
|
59 |
|
60 |
-
#: bws_functions.php:
|
61 |
msgid "Donate"
|
62 |
msgstr "Don"
|
63 |
|
64 |
-
#: bws_functions.php:
|
65 |
msgid "WARNING: Illegal use notification"
|
66 |
msgstr "AVERTISSEMENT : Notification d'utilisation abusive"
|
67 |
|
68 |
-
#: bws_functions.php:
|
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
|
72 |
-
"We strongly recommend you to solve the problem within 24 hours,
|
73 |
-
"the Pro plugin will be deactivated."
|
74 |
-
msgstr ""
|
75 |
-
|
76 |
-
|
77 |
-
"domaine si nécessaire en utilisant votre zone client. Nous vous recommandons "
|
78 |
-
"de résoudre ce problème dans les 24 heures, sinon l'extension sera rendue "
|
79 |
-
"inactive."
|
80 |
-
|
81 |
-
#: bws_functions.php:127 bws_functions.php:339 bws_menu.php:627
|
82 |
-
#: class-bws-settings.php:143
|
83 |
msgid "Learn More"
|
84 |
msgstr "En savoir plus"
|
85 |
|
86 |
-
#: bws_functions.php:
|
87 |
msgid ""
|
88 |
"Notice: Your Pro Trial license has expired. To continue using the plugin, "
|
89 |
"you should buy a Pro license"
|
@@ -91,7 +85,7 @@ msgstr ""
|
|
91 |
"Information :Votre licence d'évaluation est terminée. Pour continuer à "
|
92 |
"utiliser cette extension, vous devez acheter une licence PRO."
|
93 |
|
94 |
-
#: bws_functions.php:
|
95 |
msgid ""
|
96 |
"Your license has expired. To continue getting top-priority support and "
|
97 |
"plugin updates, you should extend it."
|
@@ -99,25 +93,25 @@ msgstr ""
|
|
99 |
"Votre licence est terminée. Pour continuer à disposer du support rapide et "
|
100 |
"des mises à jour de l'extension vous devez la renouveler."
|
101 |
|
102 |
-
#: bws_functions.php:
|
103 |
msgid "Learn more"
|
104 |
msgstr "En savoir plus"
|
105 |
|
106 |
-
#: bws_functions.php:
|
107 |
#, php-format
|
108 |
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
109 |
msgstr ""
|
110 |
"Avertissement : vous utilisez la version d'évaluation de l'extension %s."
|
111 |
|
112 |
-
#: bws_functions.php:
|
113 |
msgid "Notice: You are using the Pro Trial license of plugin."
|
114 |
msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension."
|
115 |
|
116 |
-
#: bws_functions.php:
|
117 |
msgid "The Pro Trial license will expire on"
|
118 |
msgstr "La licence PRO d'évaluation expirera le"
|
119 |
|
120 |
-
#: bws_functions.php:
|
121 |
msgid ""
|
122 |
"or higher! We do not guarantee that our plugin will work correctly. Please "
|
123 |
"upgrade to WordPress latest version."
|
@@ -125,76 +119,76 @@ msgstr ""
|
|
125 |
"ou plus ! Nous ne garantissons pas que notre extension fonctionne "
|
126 |
"correctement. Merci de mettre à jour Wordpress avec la dernière version."
|
127 |
|
128 |
-
#: bws_functions.php:
|
129 |
#, php-format
|
130 |
msgid "Thank you for installing %s plugin!"
|
131 |
msgstr ""
|
132 |
|
133 |
-
#: bws_functions.php:
|
134 |
msgid "Let's get started"
|
135 |
msgstr "Démarrer"
|
136 |
|
137 |
-
#: bws_functions.php:
|
138 |
#: bws_menu.php:559
|
139 |
msgid "Settings"
|
140 |
msgstr "Réglages"
|
141 |
|
142 |
-
#: bws_functions.php:
|
143 |
-
#: class-bws-settings.php:
|
144 |
msgid "or"
|
145 |
msgstr "ou"
|
146 |
|
147 |
-
#: bws_functions.php:
|
148 |
msgid "Add New"
|
149 |
msgstr "Ajouter"
|
150 |
|
151 |
-
#: bws_functions.php:
|
152 |
-
#: bws_functions.php:
|
153 |
msgid "Close notice"
|
154 |
msgstr "Effacer l'avertissement"
|
155 |
|
156 |
-
#: bws_functions.php:
|
157 |
msgid "Thank you for installing plugins by BestWebSoft!"
|
158 |
msgstr "Merci d'avoir installé des extensions de BestWebSoft!"
|
159 |
|
160 |
-
#: bws_functions.php:
|
161 |
msgid "More Details"
|
162 |
msgstr "Plus de détails"
|
163 |
|
164 |
-
#: bws_functions.php:
|
165 |
msgid "Less Details"
|
166 |
msgstr "Moins de détails"
|
167 |
|
168 |
-
#: bws_functions.php:
|
169 |
msgid "Deprecated function(-s) is used on the site here:"
|
170 |
msgstr "Une ou des fonction(s) obsolètes sont utilisées sur ce site ici :"
|
171 |
|
172 |
-
#: bws_functions.php:
|
173 |
msgid ""
|
174 |
"This function(-s) will be removed over time. Please update the product(-s)."
|
175 |
msgstr ""
|
176 |
"Ces fonctions seront supprimées rapidement. Merci de mettre à jour vos "
|
177 |
"produits."
|
178 |
|
179 |
-
#: bws_functions.php:
|
180 |
msgid "It’s time to upgrade your"
|
181 |
msgstr "C'est le moment de mettre à jour votre "
|
182 |
|
183 |
-
#: bws_functions.php:
|
184 |
msgid "to"
|
185 |
msgstr "à"
|
186 |
|
187 |
-
#: bws_functions.php:
|
188 |
msgid "version!"
|
189 |
msgstr "version"
|
190 |
|
191 |
-
#: bws_functions.php:
|
192 |
msgid "Extend standard plugin functionality with new great options."
|
193 |
msgstr ""
|
194 |
"Étend les fonctionnalités classiques de l'extension avec des nouvelles "
|
195 |
"options."
|
196 |
|
197 |
-
#: bws_functions.php:
|
198 |
#, php-format
|
199 |
msgid ""
|
200 |
"Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
|
@@ -203,12 +197,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 +210,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:
|
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,80 +236,76 @@ 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 BWS Shortcode"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: bws_functions.php:
|
250 |
msgid "Add BWS Plugins Shortcode"
|
251 |
msgstr "Ajouter le code court de l'extension BWS"
|
252 |
|
253 |
-
#: bws_functions.php:
|
254 |
msgid "Add shortcode"
|
255 |
msgstr "Ajouter le code court"
|
256 |
|
257 |
-
#: bws_functions.php:
|
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:
|
262 |
msgid "Close"
|
263 |
msgstr "Fermer"
|
264 |
|
265 |
-
#: bws_functions.php:
|
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:
|
270 |
msgid "Yes, restore all settings"
|
271 |
msgstr "Oui, remettre les valeurs par défaut"
|
272 |
|
273 |
-
#: bws_functions.php:
|
274 |
msgid "No, go back to the settings page"
|
275 |
msgstr "Non, retourner à la page des paramètres"
|
276 |
|
277 |
-
#: bws_functions.php:
|
278 |
msgid "Plugin"
|
279 |
msgstr "Extension"
|
280 |
|
281 |
-
#: bws_functions.php:
|
282 |
msgid "Shortcode settings"
|
283 |
msgstr "Paramètres du code court"
|
284 |
|
285 |
-
#: bws_functions.php:
|
286 |
msgid "The shortcode will be inserted"
|
287 |
msgstr "Le code court sera inséré"
|
288 |
|
289 |
-
#: bws_functions.php:
|
290 |
-
msgid "Insert"
|
291 |
-
msgstr "Insérer"
|
292 |
-
|
293 |
-
#: bws_functions.php:912
|
294 |
msgid "FAQ"
|
295 |
msgstr "FAQ"
|
296 |
|
297 |
-
#: bws_functions.php:
|
298 |
msgid "For more information:"
|
299 |
msgstr "Pour plus d'informations :"
|
300 |
|
301 |
-
#: bws_functions.php:
|
302 |
msgid "Documentation"
|
303 |
msgstr "Documentation"
|
304 |
|
305 |
-
#: bws_functions.php:
|
306 |
msgid "Video Instructions"
|
307 |
msgstr "Vidéo explicative"
|
308 |
|
309 |
-
#: bws_functions.php:
|
310 |
msgid "Submit a Request"
|
311 |
msgstr "Soumettre une requête"
|
312 |
|
313 |
-
#: bws_menu.php:101 class-bws-settings.php:
|
314 |
msgid "Wrong license key"
|
315 |
msgstr "Clé de licence incorrecte"
|
316 |
|
317 |
-
#: bws_menu.php:122 class-bws-settings.php:
|
318 |
-
#: class-bws-settings.php:
|
319 |
#: deprecated.php:352
|
320 |
msgid ""
|
321 |
"Something went wrong. Please try again later. If the error appears again, "
|
@@ -325,13 +315,13 @@ msgstr ""
|
|
325 |
"nouveau, merci de contacter <a href=http://support.bestwebsoft."
|
326 |
"com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
|
327 |
|
328 |
-
#: bws_menu.php:122 class-bws-settings.php:
|
329 |
-
#: class-bws-settings.php:
|
330 |
#: deprecated.php:352
|
331 |
msgid "We are sorry for inconvenience."
|
332 |
msgstr "Nous sommes désolés pour le désagrément."
|
333 |
|
334 |
-
#: bws_menu.php:128 class-bws-settings.php:
|
335 |
#: deprecated.php:139 deprecated.php:358
|
336 |
msgid "Wrong license key."
|
337 |
msgstr "Clé de licence incorrecte."
|
@@ -354,7 +344,7 @@ msgstr ""
|
|
354 |
"Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
|
355 |
"télécharger l'extension manuellement."
|
356 |
|
357 |
-
#: bws_menu.php:134 class-bws-settings.php:
|
358 |
#, php-format
|
359 |
msgid ""
|
360 |
"Unfortunately, Your license has expired. To continue getting top-priority "
|
@@ -364,7 +354,7 @@ msgstr ""
|
|
364 |
"rapide et des mises à jour de l'extension vous devez la renouveler dans "
|
365 |
"votre %s"
|
366 |
|
367 |
-
#: bws_menu.php:136 class-bws-settings.php:
|
368 |
msgid ""
|
369 |
"Unfortunately, the Pro licence was already installed to this domain. The Pro "
|
370 |
"Trial license can be installed only once."
|
@@ -372,11 +362,11 @@ msgstr ""
|
|
372 |
"Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
|
373 |
"peut-être installée qu'une seule fois."
|
374 |
|
375 |
-
#: bws_menu.php:142 class-bws-settings.php:
|
376 |
msgid "The license key is valid."
|
377 |
msgstr "La clé de licence est valide."
|
378 |
|
379 |
-
#: bws_menu.php:144 class-bws-settings.php:
|
380 |
msgid "Your license will expire on"
|
381 |
msgstr "Votre licence se termine le "
|
382 |
|
@@ -385,7 +375,7 @@ msgid "Congratulations! Pro Membership license is activated successfully."
|
|
385 |
msgstr ""
|
386 |
"Félicitations! La version PRO de cette extension a été activée avec succès."
|
387 |
|
388 |
-
#: bws_menu.php:153 class-bws-settings.php:
|
389 |
msgid ""
|
390 |
"Something went wrong. Try again later or upload the plugin manually. We are "
|
391 |
"sorry for inconvenience."
|
@@ -559,7 +549,7 @@ msgstr "Extensions"
|
|
559 |
msgid "Themes"
|
560 |
msgstr "Thèmes"
|
561 |
|
562 |
-
#: bws_menu.php:309 bws_menu.php:313 bws_menu.php:
|
563 |
msgid "System status"
|
564 |
msgstr "Etat du système"
|
565 |
|
@@ -580,7 +570,7 @@ msgstr "Accéder à plus de %s extension premiums"
|
|
580 |
msgid "Subscribe to Pro Membership"
|
581 |
msgstr "Souscrire une adhésion PRO"
|
582 |
|
583 |
-
#: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:
|
584 |
#: deprecated.php:227
|
585 |
msgid "Check license key"
|
586 |
msgstr "Vérifier la clé de licence"
|
@@ -590,7 +580,7 @@ msgid "Enter your license key"
|
|
590 |
msgstr "Merci de saisir votre clé de licence"
|
591 |
|
592 |
#: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
|
593 |
-
#: class-bws-settings.php:
|
594 |
#: deprecated.php:629 deprecated.php:700 deprecated.php:709
|
595 |
msgid "Activate"
|
596 |
msgstr "Activé"
|
@@ -633,8 +623,8 @@ msgid "Downloading install package from"
|
|
633 |
msgstr "Télécharger le paquet d'installation depuis"
|
634 |
|
635 |
#: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
|
636 |
-
#: class-bws-settings.php:
|
637 |
-
#: class-bws-settings.php:
|
638 |
#: deprecated.php:431
|
639 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
640 |
msgstr ""
|
@@ -649,13 +639,13 @@ msgstr "Décompresser le paquet"
|
|
649 |
msgid "Installing the plugin"
|
650 |
msgstr "Installer l'extension"
|
651 |
|
652 |
-
#: bws_menu.php:417 class-bws-settings.php:
|
653 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
654 |
msgstr ""
|
655 |
"Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
|
656 |
"manuellement."
|
657 |
|
658 |
-
#: bws_menu.php:424 class-bws-settings.php:
|
659 |
msgid ""
|
660 |
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
661 |
"plugin manually"
|
@@ -668,7 +658,7 @@ msgstr ""
|
|
668 |
msgid "The plugin %s is successfully installed."
|
669 |
msgstr "L'extension %s a été installée avec succès."
|
670 |
|
671 |
-
#: bws_menu.php:434 class-bws-settings.php:
|
672 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
673 |
msgstr ""
|
674 |
"Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
|
@@ -686,7 +676,7 @@ msgstr "Retourner à l'administration BestWebSoft"
|
|
686 |
msgid "All"
|
687 |
msgstr "Tous"
|
688 |
|
689 |
-
#: bws_menu.php:450 bws_menu.php:
|
690 |
msgid "Installed"
|
691 |
msgstr "Installé"
|
692 |
|
@@ -719,7 +709,7 @@ msgstr "Mettre à jour avec la version %s"
|
|
719 |
msgid "Install Now"
|
720 |
msgstr "Installer maintenant"
|
721 |
|
722 |
-
#: bws_menu.php:549 class-bws-settings.php:
|
723 |
msgid "Upgrade to Pro"
|
724 |
msgstr "Passer à la version PRO"
|
725 |
|
@@ -735,88 +725,88 @@ msgstr "Installer cette extension"
|
|
735 |
msgid "Nothing found. Try another criteria."
|
736 |
msgstr "Pas de réponse. essayer d'autres critères."
|
737 |
|
738 |
-
#: bws_menu.php:621
|
739 |
#, php-format
|
740 |
msgid "By %s"
|
741 |
msgstr "Par %s"
|
742 |
|
743 |
-
#: bws_menu.php:
|
744 |
msgid "Already Installed"
|
745 |
msgstr "Déjà installé"
|
746 |
|
747 |
-
#: bws_menu.php:
|
748 |
msgid "Browse Free WordPress Themes"
|
749 |
msgstr "Parcourir les thèmes gratuits pour WordPress"
|
750 |
|
751 |
-
#: bws_menu.php:
|
752 |
msgid "Send to support"
|
753 |
msgstr "Envoyé au support"
|
754 |
|
755 |
-
#: bws_menu.php:
|
756 |
msgid "Send to custom email »"
|
757 |
msgstr "Envoyer un e-mail spécifique »"
|
758 |
|
759 |
-
#: class-bws-settings.php:
|
760 |
msgid "Information"
|
761 |
msgstr "Information"
|
762 |
|
763 |
-
#: class-bws-settings.php:
|
764 |
msgid "Inactive"
|
765 |
msgstr "Inactive"
|
766 |
|
767 |
-
#: class-bws-settings.php:
|
768 |
msgid "Expired"
|
769 |
msgstr "Expiré"
|
770 |
|
771 |
-
#: class-bws-settings.php:
|
772 |
#, php-format
|
773 |
msgid "%s day(-s) left"
|
774 |
msgstr "%s jour(s) restant"
|
775 |
|
776 |
-
#: class-bws-settings.php:
|
777 |
#, php-format
|
778 |
msgid "Expired on %s"
|
779 |
msgstr "Terminer le %s"
|
780 |
|
781 |
-
#: class-bws-settings.php:
|
782 |
msgid "Renew Now"
|
783 |
msgstr "Renouveler maintenant"
|
784 |
|
785 |
-
#: class-bws-settings.php:
|
786 |
msgid "Active"
|
787 |
msgstr "Activé"
|
788 |
|
789 |
-
#: class-bws-settings.php:
|
790 |
msgid "License"
|
791 |
msgstr "Licence"
|
792 |
|
793 |
-
#: class-bws-settings.php:
|
794 |
msgid "Status"
|
795 |
msgstr "Etat"
|
796 |
|
797 |
-
#: class-bws-settings.php:
|
798 |
msgid "Version"
|
799 |
msgstr "Version"
|
800 |
|
801 |
-
#: class-bws-settings.php:
|
802 |
msgid "All plugin settings were restored."
|
803 |
msgstr "Les paramètres de l'extension ont été remis aux valeurs d'origine."
|
804 |
|
805 |
-
#: class-bws-settings.php:
|
806 |
msgid "Custom Code"
|
807 |
msgstr "Code personnalisé"
|
808 |
|
809 |
-
#: class-bws-settings.php:
|
810 |
msgid "You do not have sufficient permissions to edit plugins for this site."
|
811 |
msgstr ""
|
812 |
"Vous n'avez pas assez de droits pour modifier l'extension pour ce site."
|
813 |
|
814 |
-
#: class-bws-settings.php:
|
815 |
msgid "These styles will be added to the header on all pages of your site."
|
816 |
msgstr ""
|
817 |
"Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
|
818 |
|
819 |
-
#: class-bws-settings.php:
|
820 |
#, php-format
|
821 |
msgid ""
|
822 |
"This PHP code will be hooked to the %s action and will be printed on front "
|
@@ -825,11 +815,11 @@ msgstr ""
|
|
825 |
"Ce code PHP sera rattaché à l'action %s et sera affiché uniquement sur la "
|
826 |
"partie publique."
|
827 |
|
828 |
-
#: class-bws-settings.php:
|
829 |
msgid "These code will be added to the header on all pages of your site."
|
830 |
msgstr "Ce code sera ajouté aux entêtes sur tous les pages de votre site."
|
831 |
|
832 |
-
#: class-bws-settings.php:
|
833 |
#, php-format
|
834 |
msgid ""
|
835 |
"You need to make this files writable before you can save your changes. See "
|
@@ -838,25 +828,25 @@ msgstr ""
|
|
838 |
"Vous devez rendre ce fichier modifiable avant de pouvoir enregistrer vos "
|
839 |
"modifications. Regarder %s du Codex %s pour plus d'informations."
|
840 |
|
841 |
-
#: class-bws-settings.php:
|
842 |
msgid "Browsing"
|
843 |
msgstr "Parcourir"
|
844 |
|
845 |
-
#: class-bws-settings.php:
|
846 |
#, php-format
|
847 |
msgid "Activate custom %s code."
|
848 |
msgstr "Activer le code personnalisé %s."
|
849 |
|
850 |
-
#: class-bws-settings.php:
|
851 |
#, php-format
|
852 |
msgid "Learn more about %s"
|
853 |
msgstr "En savoir plus sur %s"
|
854 |
|
855 |
-
#: class-bws-settings.php:
|
856 |
msgid "Miscellaneous Settings"
|
857 |
msgstr "Paramètres divers"
|
858 |
|
859 |
-
#: class-bws-settings.php:
|
860 |
#, php-format
|
861 |
msgid ""
|
862 |
"It is prohibited to change %s settings on this site in the %s network "
|
@@ -865,7 +855,7 @@ msgstr ""
|
|
865 |
"Il est interdit de changer le paramètre %s sur ce site dans les paramètres "
|
866 |
"%s du réseau."
|
867 |
|
868 |
-
#: class-bws-settings.php:
|
869 |
#, php-format
|
870 |
msgid ""
|
871 |
"It is prohibited to view %s settings on this site in the %s network settings."
|
@@ -873,68 +863,68 @@ msgstr ""
|
|
873 |
"Il est interdit de voir le paramètre %s sur ce site dans les paramètres %s "
|
874 |
"du réseau."
|
875 |
|
876 |
-
#: class-bws-settings.php:
|
877 |
msgid "Pro Options"
|
878 |
msgstr "Options Pro"
|
879 |
|
880 |
-
#: class-bws-settings.php:
|
881 |
msgid "Enable to display plugin Pro options."
|
882 |
msgstr "Activer pour voir les options PRO de l'extension."
|
883 |
|
884 |
-
#: class-bws-settings.php:
|
885 |
msgid "Track Usage"
|
886 |
msgstr "Suivi de l'utilisation"
|
887 |
|
888 |
-
#: class-bws-settings.php:
|
889 |
msgid ""
|
890 |
"Enable to allow tracking plugin usage anonymously in order to make it better."
|
891 |
msgstr ""
|
892 |
"Activer pour autoriser le suivi de l'utilisation de l'extension de manière "
|
893 |
"anonyme afin de le rendre meilleur."
|
894 |
|
895 |
-
#: class-bws-settings.php:
|
896 |
msgid "Default Settings"
|
897 |
msgstr "Réglages par défauts"
|
898 |
|
899 |
-
#: class-bws-settings.php:
|
900 |
msgid "Restore Settings"
|
901 |
msgstr "Remettre les paramètres"
|
902 |
|
903 |
-
#: class-bws-settings.php:
|
904 |
msgid "This will restore plugin settings to defaults."
|
905 |
msgstr "Remettre les valeurs par défaut des paramètres de l'extension."
|
906 |
|
907 |
-
#: class-bws-settings.php:
|
908 |
msgid "Import / Export"
|
909 |
msgstr "Importer / Exporter"
|
910 |
|
911 |
-
#: class-bws-settings.php:
|
912 |
-
#: class-bws-settings.php:
|
913 |
msgid "License Key"
|
914 |
msgstr "Clé de licence"
|
915 |
|
916 |
-
#: class-bws-settings.php:
|
917 |
msgid "Congratulations! Pro license is activated successfully."
|
918 |
msgstr ""
|
919 |
"Félicitations! La version PRO de cette extension a été activée avec succès."
|
920 |
|
921 |
-
#: class-bws-settings.php:
|
922 |
#, php-format
|
923 |
msgid "You will be automatically redirected to the %s in %s seconds."
|
924 |
msgstr ""
|
925 |
|
926 |
-
#: class-bws-settings.php:
|
927 |
msgid "Settings page"
|
928 |
msgstr "Page des paramètres"
|
929 |
|
930 |
-
#: class-bws-settings.php:
|
931 |
#, php-format
|
932 |
msgid "Enter your license key to activate %s and get premium plugin features."
|
933 |
msgstr ""
|
934 |
"Saisir votre clé de licence pour activer %s et obtenir les fonctionnalités "
|
935 |
"premium."
|
936 |
|
937 |
-
#: class-bws-settings.php:
|
938 |
#: deprecated.php:703
|
939 |
msgid ""
|
940 |
"Unfortunately, you have exceeded the number of available tries per day. "
|
@@ -943,12 +933,12 @@ msgstr ""
|
|
943 |
"Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
|
944 |
"télécharger l'extension manuellement."
|
945 |
|
946 |
-
#: class-bws-settings.php:
|
947 |
#, php-format
|
948 |
msgid "Start Your Free %s-Day Trial Now"
|
949 |
msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
|
950 |
|
951 |
-
#: class-bws-settings.php:
|
952 |
msgid ""
|
953 |
"If necessary, you can check if the license key is correct or reenter it in "
|
954 |
"the field below."
|
@@ -956,15 +946,15 @@ msgstr ""
|
|
956 |
"Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la "
|
957 |
"saisir de nouveau dans le champ ci-dessous."
|
958 |
|
959 |
-
#: class-bws-settings.php:
|
960 |
msgid "Manage License Settings"
|
961 |
msgstr "Gérer les paramètres de licence"
|
962 |
|
963 |
-
#: class-bws-settings.php:
|
964 |
msgid "Login to Client Area"
|
965 |
msgstr "Se connecter à l'espace client"
|
966 |
|
967 |
-
#: class-bws-settings.php:
|
968 |
msgid ""
|
969 |
"Manage active licenses, download BWS products, and view your payment history "
|
970 |
"using BestWebSoft Client Area."
|
@@ -972,12 +962,12 @@ msgstr ""
|
|
972 |
"Gérer les licences actives, télécharger les produits BWS, et voir "
|
973 |
"l'historique de vos règlements dans l'interface client de BestWebSoft."
|
974 |
|
975 |
-
#: class-bws-settings.php:
|
976 |
#: deprecated.php:360
|
977 |
msgid "This license key is bound to another site."
|
978 |
msgstr "La clé de licence correspond à un autre site."
|
979 |
|
980 |
-
#: class-bws-settings.php:
|
981 |
msgid ""
|
982 |
"This license key is valid, but Your license has expired. If you want to "
|
983 |
"update our plugin in future, you should extend the license."
|
@@ -986,13 +976,13 @@ msgstr ""
|
|
986 |
"continuer à disposer du support rapide et des mises à jour de l'extension "
|
987 |
"vous devez la renouveller."
|
988 |
|
989 |
-
#: class-bws-settings.php:
|
990 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
991 |
msgstr ""
|
992 |
"Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
|
993 |
"télécharger l'extension manuellement."
|
994 |
|
995 |
-
#: class-bws-settings.php:
|
996 |
msgid ""
|
997 |
"Unfortunately, the Pro Trial licence was already installed to this domain. "
|
998 |
"The Pro Trial license can be installed only once."
|
@@ -1000,11 +990,11 @@ msgstr ""
|
|
1000 |
"Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
|
1001 |
"peut-être installée qu'une seule fois."
|
1002 |
|
1003 |
-
#: class-bws-settings.php:
|
1004 |
msgid "The Pro Trial license key is valid."
|
1005 |
msgstr "La clé de licence d'évaluation est valide."
|
1006 |
|
1007 |
-
#: class-bws-settings.php:
|
1008 |
#, php-format
|
1009 |
msgid ""
|
1010 |
"In order to continue using the plugin it is necessary to buy a %s license."
|
@@ -1012,26 +1002,122 @@ msgstr ""
|
|
1012 |
"Afin de pouvoir continuer à utiliser cette extension il est nécessaire "
|
1013 |
"d'acheter une licence %s."
|
1014 |
|
1015 |
-
#: class-bws-settings.php:
|
1016 |
msgid "Please, enter Your license key"
|
1017 |
msgstr "Merci de saisir votre clé de licence"
|
1018 |
|
1019 |
-
#: class-bws-settings.php:
|
1020 |
msgid "Need Help?"
|
1021 |
msgstr "Besoin d'aide ?"
|
1022 |
|
1023 |
-
#: class-bws-settings.php:
|
1024 |
msgid "Read the Instruction"
|
1025 |
msgstr "Lire les instructions"
|
1026 |
|
1027 |
-
#: class-bws-settings.php:
|
1028 |
msgid "Watch the Video"
|
1029 |
msgstr "Regarder la vidéo"
|
1030 |
|
1031 |
-
#: class-bws-settings.php:
|
1032 |
msgid "Start Your Free Trial"
|
1033 |
msgstr "Débuter votre licence d'évaluation gratuite"
|
1034 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1035 |
#: deprecated.php:93
|
1036 |
msgid "System Status"
|
1037 |
msgstr "Etat du système"
|
@@ -1178,298 +1264,295 @@ msgstr ""
|
|
1178 |
msgid "SMM"
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: product_list.php:
|
1182 |
msgid ""
|
1183 |
"Protect WordPress website forms from spam entries by means of math logic."
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: product_list.php:
|
1187 |
msgid "Create your personal car rental/booking and reservation website."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: product_list.php:
|
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:
|
1197 |
msgid "Add unlimited number of contact forms to WordPress website."
|
1198 |
msgstr ""
|
1199 |
|
1200 |
-
#: product_list.php:
|
1201 |
msgid "Save and manage Contact Form messages. Never lose important data."
|
1202 |
msgstr ""
|
1203 |
|
1204 |
-
#: product_list.php:
|
1205 |
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: product_list.php:
|
1209 |
msgid "Add custom fields to WordPress website search results."
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#: product_list.php:
|
1213 |
msgid ""
|
1214 |
"Add custom post types and taxonomies to WordPress website search results."
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: product_list.php:
|
1218 |
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#: product_list.php:
|
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:
|
1234 |
msgid ""
|
1235 |
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1236 |
"widgets."
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: product_list.php:
|
1240 |
msgid ""
|
1241 |
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1242 |
"clicks."
|
1243 |
msgstr ""
|
1244 |
|
1245 |
-
#: product_list.php:
|
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:
|
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:
|
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:
|
1270 |
msgid "Add Google Analytics code to WordPress website and track basic stats."
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#: product_list.php:
|
1274 |
msgid ""
|
1275 |
"Protect WordPress website forms from spam entries with Google Captcha "
|
1276 |
"(reCaptcha)."
|
1277 |
msgstr ""
|
1278 |
|
1279 |
-
#: product_list.php:
|
1280 |
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1281 |
msgstr ""
|
1282 |
|
1283 |
-
#: product_list.php:
|
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:
|
1290 |
msgid ""
|
1291 |
"Replace external WordPress website links with Google shortlinks and track "
|
1292 |
"click stats."
|
1293 |
msgstr ""
|
1294 |
|
1295 |
-
#: product_list.php:
|
1296 |
msgid ""
|
1297 |
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1298 |
"hostnames, etc."
|
1299 |
msgstr ""
|
1300 |
|
1301 |
-
#: product_list.php:
|
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:
|
1308 |
msgid ""
|
1309 |
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1310 |
"attempts."
|
1311 |
msgstr ""
|
1312 |
|
1313 |
-
#: product_list.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
1350 |
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1351 |
msgstr ""
|
1352 |
|
1353 |
-
#: product_list.php:
|
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:
|
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:
|
1366 |
msgid ""
|
1367 |
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1368 |
"widgets."
|
1369 |
msgstr ""
|
1370 |
|
1371 |
-
#: product_list.php:
|
1372 |
msgid ""
|
1373 |
"Add rating plugin to your WordPress website to receive feedback from your "
|
1374 |
"customers."
|
1375 |
msgstr ""
|
1376 |
|
1377 |
-
#: product_list.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
1420 |
msgid ""
|
1421 |
"Add social media login, registration, and commenting to your WordPress "
|
1422 |
"website."
|
1423 |
msgstr ""
|
1424 |
|
1425 |
-
#: product_list.php:
|
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:
|
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:
|
1438 |
msgid ""
|
1439 |
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1440 |
"attendance and generate reports."
|
1441 |
msgstr ""
|
1442 |
|
1443 |
-
#: product_list.php:
|
1444 |
msgid ""
|
1445 |
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1446 |
"and pages."
|
1447 |
msgstr ""
|
1448 |
|
1449 |
-
#: product_list.php:
|
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:
|
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:
|
1462 |
msgid ""
|
1463 |
"Display live count of online visitors who are currently browsing your "
|
1464 |
"WordPress website."
|
1465 |
msgstr ""
|
1466 |
|
1467 |
-
#: product_list.php:
|
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 |
|
@@ -1488,9 +1571,6 @@ msgstr ""
|
|
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é"
|
1496 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-08-28 09:55+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-08-28 09:55+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"
|
17 |
"X-Generator: Poedit 1.8.7.1\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: bws_functions.php:73 bws_functions.php:191
|
21 |
msgid "requires"
|
22 |
msgstr "obligatoire"
|
23 |
|
24 |
+
#: bws_functions.php:75
|
25 |
msgid ""
|
26 |
"or higher, that is why it has been deactivated! Please upgrade WordPress and "
|
27 |
"try again."
|
29 |
"ou supérieure, c'est pourquoi il a été désactivé! Merci de faire la mise à "
|
30 |
"jour de WordPress puis de ré-essayer."
|
31 |
|
32 |
+
#: bws_functions.php:76
|
33 |
msgid "Back to the WordPress"
|
34 |
msgstr "Retour à WordPress"
|
35 |
|
36 |
+
#: bws_functions.php:78
|
37 |
msgid "Plugins page"
|
38 |
msgstr "Page des extensions"
|
39 |
|
40 |
+
#: bws_functions.php:92
|
41 |
msgid "Like the plugin?"
|
42 |
msgstr "Voter pour l'extension"
|
43 |
|
44 |
+
#: bws_functions.php:94
|
45 |
msgid "Rate it"
|
46 |
msgstr "Notez là"
|
47 |
|
48 |
+
#: bws_functions.php:103
|
49 |
msgid "Need help?"
|
50 |
msgstr "Besoin d'aide ?"
|
51 |
|
52 |
+
#: bws_functions.php:104 bws_functions.php:911 class-bws-settings.php:1056
|
53 |
msgid "Visit Help Center"
|
54 |
msgstr "Visiter le site du support"
|
55 |
|
56 |
+
#: bws_functions.php:107
|
57 |
msgid "Want to support the plugin?"
|
58 |
msgstr "Voter pour l'extension"
|
59 |
|
60 |
+
#: bws_functions.php:108 bws_menu.php:553
|
61 |
msgid "Donate"
|
62 |
msgstr "Don"
|
63 |
|
64 |
+
#: bws_functions.php:128
|
65 |
msgid "WARNING: Illegal use notification"
|
66 |
msgstr "AVERTISSEMENT : Notification d'utilisation abusive"
|
67 |
|
68 |
+
#: bws_functions.php:128
|
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 your personal Client "
|
72 |
+
"Area. We strongly recommend you to solve the problem within 24 hours, "
|
73 |
+
"otherwise the Pro plugin will be deactivated."
|
74 |
+
msgstr ""
|
75 |
+
|
76 |
+
#: bws_functions.php:128 bws_functions.php:340 class-bws-settings.php:144
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
msgid "Learn More"
|
78 |
msgstr "En savoir plus"
|
79 |
|
80 |
+
#: bws_functions.php:145
|
81 |
msgid ""
|
82 |
"Notice: Your Pro Trial license has expired. To continue using the plugin, "
|
83 |
"you should buy a Pro license"
|
85 |
"Information :Votre licence d'évaluation est terminée. Pour continuer à "
|
86 |
"utiliser cette extension, vous devez acheter une licence PRO."
|
87 |
|
88 |
+
#: bws_functions.php:147
|
89 |
msgid ""
|
90 |
"Your license has expired. To continue getting top-priority support and "
|
91 |
"plugin updates, you should extend it."
|
93 |
"Votre licence est terminée. Pour continuer à disposer du support rapide et "
|
94 |
"des mises à jour de l'extension vous devez la renouveler."
|
95 |
|
96 |
+
#: bws_functions.php:147 bws_functions.php:383 deprecated.php:584
|
97 |
msgid "Learn more"
|
98 |
msgstr "En savoir plus"
|
99 |
|
100 |
+
#: bws_functions.php:165
|
101 |
#, php-format
|
102 |
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
103 |
msgstr ""
|
104 |
"Avertissement : vous utilisez la version d'évaluation de l'extension %s."
|
105 |
|
106 |
+
#: bws_functions.php:167
|
107 |
msgid "Notice: You are using the Pro Trial license of plugin."
|
108 |
msgstr "Avertissement : vous utilisez la version d'évaluation de l'extension."
|
109 |
|
110 |
+
#: bws_functions.php:170
|
111 |
msgid "The Pro Trial license will expire on"
|
112 |
msgstr "La licence PRO d'évaluation expirera le"
|
113 |
|
114 |
+
#: bws_functions.php:193
|
115 |
msgid ""
|
116 |
"or higher! We do not guarantee that our plugin will work correctly. Please "
|
117 |
"upgrade to WordPress latest version."
|
119 |
"ou plus ! Nous ne garantissons pas que notre extension fonctionne "
|
120 |
"correctement. Merci de mettre à jour Wordpress avec la dernière version."
|
121 |
|
122 |
+
#: bws_functions.php:208
|
123 |
#, php-format
|
124 |
msgid "Thank you for installing %s plugin!"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#: bws_functions.php:209
|
128 |
msgid "Let's get started"
|
129 |
msgstr "Démarrer"
|
130 |
|
131 |
+
#: bws_functions.php:210 bws_functions.php:243 bws_menu.php:557
|
132 |
#: bws_menu.php:559
|
133 |
msgid "Settings"
|
134 |
msgstr "Réglages"
|
135 |
|
136 |
+
#: bws_functions.php:212 bws_menu.php:328 class-bws-settings.php:745
|
137 |
+
#: class-bws-settings.php:1058 class-bws-settings.php:1068 deprecated.php:694
|
138 |
msgid "or"
|
139 |
msgstr "ou"
|
140 |
|
141 |
+
#: bws_functions.php:213 bws_functions.php:245
|
142 |
msgid "Add New"
|
143 |
msgstr "Ajouter"
|
144 |
|
145 |
+
#: bws_functions.php:217 bws_functions.php:227 bws_functions.php:331
|
146 |
+
#: bws_functions.php:379 bws_functions.php:481
|
147 |
msgid "Close notice"
|
148 |
msgstr "Effacer l'avertissement"
|
149 |
|
150 |
+
#: bws_functions.php:232
|
151 |
msgid "Thank you for installing plugins by BestWebSoft!"
|
152 |
msgstr "Merci d'avoir installé des extensions de BestWebSoft!"
|
153 |
|
154 |
+
#: bws_functions.php:234
|
155 |
msgid "More Details"
|
156 |
msgstr "Plus de détails"
|
157 |
|
158 |
+
#: bws_functions.php:235
|
159 |
msgid "Less Details"
|
160 |
msgstr "Moins de détails"
|
161 |
|
162 |
+
#: bws_functions.php:263
|
163 |
msgid "Deprecated function(-s) is used on the site here:"
|
164 |
msgstr "Une ou des fonction(s) obsolètes sont utilisées sur ce site ici :"
|
165 |
|
166 |
+
#: bws_functions.php:277
|
167 |
msgid ""
|
168 |
"This function(-s) will be removed over time. Please update the product(-s)."
|
169 |
msgstr ""
|
170 |
"Ces fonctions seront supprimées rapidement. Merci de mettre à jour vos "
|
171 |
"produits."
|
172 |
|
173 |
+
#: bws_functions.php:336
|
174 |
msgid "It’s time to upgrade your"
|
175 |
msgstr "C'est le moment de mettre à jour votre "
|
176 |
|
177 |
+
#: bws_functions.php:336
|
178 |
msgid "to"
|
179 |
msgstr "à"
|
180 |
|
181 |
+
#: bws_functions.php:336
|
182 |
msgid "version!"
|
183 |
msgstr "version"
|
184 |
|
185 |
+
#: bws_functions.php:337
|
186 |
msgid "Extend standard plugin functionality with new great options."
|
187 |
msgstr ""
|
188 |
"Étend les fonctionnalités classiques de l'extension avec des nouvelles "
|
189 |
"options."
|
190 |
|
191 |
+
#: bws_functions.php:383
|
192 |
#, php-format
|
193 |
msgid ""
|
194 |
"Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
|
197 |
"Votre clé de licence pour %s est terminée le %s et vous ne disposerez plus "
|
198 |
"du support rapide et des mises à jour."
|
199 |
|
200 |
+
#: bws_functions.php:476
|
201 |
#, php-format
|
202 |
msgid "Thank you for choosing %s plugin!"
|
203 |
msgstr ""
|
204 |
|
205 |
+
#: bws_functions.php:477
|
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 |
"Si vous avez une fonctionnalité, une suggestion ou une idée que vous "
|
211 |
"souhaitez pour cette extension, nous serons ravis d'en parler avec vous !"
|
212 |
|
213 |
+
#: bws_functions.php:478
|
214 |
msgid "Suggest a Feature"
|
215 |
msgstr "Proposer une fonctionnalité"
|
216 |
|
217 |
+
#: bws_functions.php:494 class-bws-settings.php:538 class-bws-settings.php:541
|
218 |
+
#: class-bws-settings.php:593 class-bws-settings.php:596
|
219 |
msgid "Notice"
|
220 |
msgstr "Avertissement"
|
221 |
|
222 |
+
#: bws_functions.php:494
|
223 |
msgid "The plugin's settings have been changed."
|
224 |
msgstr "Les paramètres de l'extension ont été modifiés."
|
225 |
|
226 |
+
#: bws_functions.php:495 class-bws-settings.php:183 class-bws-settings.php:203
|
227 |
#: deprecated.php:640
|
228 |
msgid "Save Changes"
|
229 |
msgstr "Enregistrer les modifications"
|
230 |
|
231 |
+
#: bws_functions.php:509
|
232 |
msgid ""
|
233 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
234 |
"the \"Misc\" tab."
|
236 |
"Vous pouvez toujours consulter les options premium en cliquant sur le lien "
|
237 |
"\"Voir les fonctionnalités de la version PRO\" dans l'onglet divers."
|
238 |
|
239 |
+
#: bws_functions.php:647
|
240 |
msgid "Add BWS Shortcode"
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: bws_functions.php:648
|
244 |
msgid "Add BWS Plugins Shortcode"
|
245 |
msgstr "Ajouter le code court de l'extension BWS"
|
246 |
|
247 |
+
#: bws_functions.php:667
|
248 |
msgid "Add shortcode"
|
249 |
msgstr "Ajouter le code court"
|
250 |
|
251 |
+
#: bws_functions.php:667
|
252 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
253 |
msgstr "Ajouter le code court des extensions BestWebSoft avec ce bouton."
|
254 |
|
255 |
+
#: bws_functions.php:723
|
256 |
msgid "Close"
|
257 |
msgstr "Fermer"
|
258 |
|
259 |
+
#: bws_functions.php:815
|
260 |
msgid "Are you sure you want to restore default settings?"
|
261 |
msgstr "Êtes vous sûr de vouloir remettre toutes les valeurs par défaut ?"
|
262 |
|
263 |
+
#: bws_functions.php:818
|
264 |
msgid "Yes, restore all settings"
|
265 |
msgstr "Oui, remettre les valeurs par défaut"
|
266 |
|
267 |
+
#: bws_functions.php:819
|
268 |
msgid "No, go back to the settings page"
|
269 |
msgstr "Non, retourner à la page des paramètres"
|
270 |
|
271 |
+
#: bws_functions.php:861
|
272 |
msgid "Plugin"
|
273 |
msgstr "Extension"
|
274 |
|
275 |
+
#: bws_functions.php:870
|
276 |
msgid "Shortcode settings"
|
277 |
msgstr "Paramètres du code court"
|
278 |
|
279 |
+
#: bws_functions.php:875
|
280 |
msgid "The shortcode will be inserted"
|
281 |
msgstr "Le code court sera inséré"
|
282 |
|
283 |
+
#: bws_functions.php:916
|
|
|
|
|
|
|
|
|
284 |
msgid "FAQ"
|
285 |
msgstr "FAQ"
|
286 |
|
287 |
+
#: bws_functions.php:922
|
288 |
msgid "For more information:"
|
289 |
msgstr "Pour plus d'informations :"
|
290 |
|
291 |
+
#: bws_functions.php:923
|
292 |
msgid "Documentation"
|
293 |
msgstr "Documentation"
|
294 |
|
295 |
+
#: bws_functions.php:924
|
296 |
msgid "Video Instructions"
|
297 |
msgstr "Vidéo explicative"
|
298 |
|
299 |
+
#: bws_functions.php:925
|
300 |
msgid "Submit a Request"
|
301 |
msgstr "Soumettre une requête"
|
302 |
|
303 |
+
#: bws_menu.php:101 class-bws-settings.php:790 deprecated.php:322
|
304 |
msgid "Wrong license key"
|
305 |
msgstr "Clé de licence incorrecte"
|
306 |
|
307 |
+
#: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
|
308 |
+
#: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
|
309 |
#: deprecated.php:352
|
310 |
msgid ""
|
311 |
"Something went wrong. Please try again later. If the error appears again, "
|
315 |
"nouveau, merci de contacter <a href=http://support.bestwebsoft."
|
316 |
"com>BestWebSoft</a>. Nous sommes désolés pour le désagrément."
|
317 |
|
318 |
+
#: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
|
319 |
+
#: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
|
320 |
#: deprecated.php:352
|
321 |
msgid "We are sorry for inconvenience."
|
322 |
msgstr "Nous sommes désolés pour le désagrément."
|
323 |
|
324 |
+
#: bws_menu.php:128 class-bws-settings.php:822 class-bws-settings.php:925
|
325 |
#: deprecated.php:139 deprecated.php:358
|
326 |
msgid "Wrong license key."
|
327 |
msgstr "Clé de licence incorrecte."
|
344 |
"Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
|
345 |
"télécharger l'extension manuellement."
|
346 |
|
347 |
+
#: bws_menu.php:134 class-bws-settings.php:931 deprecated.php:364
|
348 |
#, php-format
|
349 |
msgid ""
|
350 |
"Unfortunately, Your license has expired. To continue getting top-priority "
|
354 |
"rapide et des mises à jour de l'extension vous devez la renouveler dans "
|
355 |
"votre %s"
|
356 |
|
357 |
+
#: bws_menu.php:136 class-bws-settings.php:933 deprecated.php:366
|
358 |
msgid ""
|
359 |
"Unfortunately, the Pro licence was already installed to this domain. The Pro "
|
360 |
"Trial license can be installed only once."
|
362 |
"Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
|
363 |
"peut-être installée qu'une seule fois."
|
364 |
|
365 |
+
#: bws_menu.php:142 class-bws-settings.php:837 deprecated.php:153
|
366 |
msgid "The license key is valid."
|
367 |
msgstr "La clé de licence est valide."
|
368 |
|
369 |
+
#: bws_menu.php:144 class-bws-settings.php:840 deprecated.php:156
|
370 |
msgid "Your license will expire on"
|
371 |
msgstr "Votre licence se termine le "
|
372 |
|
375 |
msgstr ""
|
376 |
"Félicitations! La version PRO de cette extension a été activée avec succès."
|
377 |
|
378 |
+
#: bws_menu.php:153 class-bws-settings.php:1005 deprecated.php:435
|
379 |
msgid ""
|
380 |
"Something went wrong. Try again later or upload the plugin manually. We are "
|
381 |
"sorry for inconvenience."
|
549 |
msgid "Themes"
|
550 |
msgstr "Thèmes"
|
551 |
|
552 |
+
#: bws_menu.php:309 bws_menu.php:313 bws_menu.php:641
|
553 |
msgid "System status"
|
554 |
msgstr "Etat du système"
|
555 |
|
570 |
msgid "Subscribe to Pro Membership"
|
571 |
msgstr "Souscrire une adhésion PRO"
|
572 |
|
573 |
+
#: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:758
|
574 |
#: deprecated.php:227
|
575 |
msgid "Check license key"
|
576 |
msgstr "Vérifier la clé de licence"
|
580 |
msgstr "Merci de saisir votre clé de licence"
|
581 |
|
582 |
#: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
|
583 |
+
#: class-bws-settings.php:737 deprecated.php:259 deprecated.php:267
|
584 |
#: deprecated.php:629 deprecated.php:700 deprecated.php:709
|
585 |
msgid "Activate"
|
586 |
msgstr "Activé"
|
623 |
msgstr "Télécharger le paquet d'installation depuis"
|
624 |
|
625 |
#: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
|
626 |
+
#: class-bws-settings.php:957 class-bws-settings.php:979
|
627 |
+
#: class-bws-settings.php:1001 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 ""
|
639 |
msgid "Installing the plugin"
|
640 |
msgstr "Installer l'extension"
|
641 |
|
642 |
+
#: bws_menu.php:417 class-bws-settings.php:969 deprecated.php:399
|
643 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
644 |
msgstr ""
|
645 |
"Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
|
646 |
"manuellement."
|
647 |
|
648 |
+
#: bws_menu.php:424 class-bws-settings.php:975 deprecated.php:405
|
649 |
msgid ""
|
650 |
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
651 |
"plugin manually"
|
658 |
msgid "The plugin %s is successfully installed."
|
659 |
msgstr "L'extension %s a été installée avec succès."
|
660 |
|
661 |
+
#: bws_menu.php:434 class-bws-settings.php:982 deprecated.php:412
|
662 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
663 |
msgstr ""
|
664 |
"Erreur d'ouverture de l'archive zip. Merci de télécharger l'extension "
|
676 |
msgid "All"
|
677 |
msgstr "Tous"
|
678 |
|
679 |
+
#: bws_menu.php:450 bws_menu.php:630
|
680 |
msgid "Installed"
|
681 |
msgstr "Installé"
|
682 |
|
709 |
msgid "Install Now"
|
710 |
msgstr "Installer maintenant"
|
711 |
|
712 |
+
#: bws_menu.php:549 class-bws-settings.php:157 class-bws-settings.php:1065
|
713 |
msgid "Upgrade to Pro"
|
714 |
msgstr "Passer à la version PRO"
|
715 |
|
725 |
msgid "Nothing found. Try another criteria."
|
726 |
msgstr "Pas de réponse. essayer d'autres critères."
|
727 |
|
728 |
+
#: bws_menu.php:621
|
729 |
#, php-format
|
730 |
msgid "By %s"
|
731 |
msgstr "Par %s"
|
732 |
|
733 |
+
#: bws_menu.php:628
|
734 |
msgid "Already Installed"
|
735 |
msgstr "Déjà installé"
|
736 |
|
737 |
+
#: bws_menu.php:638
|
738 |
msgid "Browse Free WordPress Themes"
|
739 |
msgstr "Parcourir les thèmes gratuits pour WordPress"
|
740 |
|
741 |
+
#: bws_menu.php:647
|
742 |
msgid "Send to support"
|
743 |
msgstr "Envoyé au support"
|
744 |
|
745 |
+
#: bws_menu.php:654
|
746 |
msgid "Send to custom email »"
|
747 |
msgstr "Envoyer un e-mail spécifique »"
|
748 |
|
749 |
+
#: class-bws-settings.php:136
|
750 |
msgid "Information"
|
751 |
msgstr "Information"
|
752 |
|
753 |
+
#: class-bws-settings.php:144
|
754 |
msgid "Inactive"
|
755 |
msgstr "Inactive"
|
756 |
|
757 |
+
#: class-bws-settings.php:152
|
758 |
msgid "Expired"
|
759 |
msgstr "Expiré"
|
760 |
|
761 |
+
#: class-bws-settings.php:155
|
762 |
#, php-format
|
763 |
msgid "%s day(-s) left"
|
764 |
msgstr "%s jour(s) restant"
|
765 |
|
766 |
+
#: class-bws-settings.php:161
|
767 |
#, php-format
|
768 |
msgid "Expired on %s"
|
769 |
msgstr "Terminer le %s"
|
770 |
|
771 |
+
#: class-bws-settings.php:161
|
772 |
msgid "Renew Now"
|
773 |
msgstr "Renouveler maintenant"
|
774 |
|
775 |
+
#: class-bws-settings.php:163
|
776 |
msgid "Active"
|
777 |
msgstr "Activé"
|
778 |
|
779 |
+
#: class-bws-settings.php:168
|
780 |
msgid "License"
|
781 |
msgstr "Licence"
|
782 |
|
783 |
+
#: class-bws-settings.php:171
|
784 |
msgid "Status"
|
785 |
msgstr "Etat"
|
786 |
|
787 |
+
#: class-bws-settings.php:175
|
788 |
msgid "Version"
|
789 |
msgstr "Version"
|
790 |
|
791 |
+
#: class-bws-settings.php:285
|
792 |
msgid "All plugin settings were restored."
|
793 |
msgstr "Les paramètres de l'extension ont été remis aux valeurs d'origine."
|
794 |
|
795 |
+
#: class-bws-settings.php:423
|
796 |
msgid "Custom Code"
|
797 |
msgstr "Code personnalisé"
|
798 |
|
799 |
+
#: class-bws-settings.php:427 deprecated.php:497
|
800 |
msgid "You do not have sufficient permissions to edit plugins for this site."
|
801 |
msgstr ""
|
802 |
"Vous n'avez pas assez de droits pour modifier l'extension pour ce site."
|
803 |
|
804 |
+
#: class-bws-settings.php:432 deprecated.php:618
|
805 |
msgid "These styles will be added to the header on all pages of your site."
|
806 |
msgstr ""
|
807 |
"Ces styles seront ajoutés aux entêtes sur tous les pages de votre site."
|
808 |
|
809 |
+
#: class-bws-settings.php:435 deprecated.php:620
|
810 |
#, php-format
|
811 |
msgid ""
|
812 |
"This PHP code will be hooked to the %s action and will be printed on front "
|
815 |
"Ce code PHP sera rattaché à l'action %s et sera affiché uniquement sur la "
|
816 |
"partie publique."
|
817 |
|
818 |
+
#: class-bws-settings.php:438
|
819 |
msgid "These code will be added to the header on all pages of your site."
|
820 |
msgstr "Ce code sera ajouté aux entêtes sur tous les pages de votre site."
|
821 |
|
822 |
+
#: class-bws-settings.php:446 deprecated.php:644
|
823 |
#, php-format
|
824 |
msgid ""
|
825 |
"You need to make this files writable before you can save your changes. See "
|
828 |
"Vous devez rendre ce fichier modifiable avant de pouvoir enregistrer vos "
|
829 |
"modifications. Regarder %s du Codex %s pour plus d'informations."
|
830 |
|
831 |
+
#: class-bws-settings.php:456 deprecated.php:626
|
832 |
msgid "Browsing"
|
833 |
msgstr "Parcourir"
|
834 |
|
835 |
+
#: class-bws-settings.php:461
|
836 |
#, php-format
|
837 |
msgid "Activate custom %s code."
|
838 |
msgstr "Activer le code personnalisé %s."
|
839 |
|
840 |
+
#: class-bws-settings.php:469 deprecated.php:633
|
841 |
#, php-format
|
842 |
msgid "Learn more about %s"
|
843 |
msgstr "En savoir plus sur %s"
|
844 |
|
845 |
+
#: class-bws-settings.php:529
|
846 |
msgid "Miscellaneous Settings"
|
847 |
msgstr "Paramètres divers"
|
848 |
|
849 |
+
#: class-bws-settings.php:538 class-bws-settings.php:593
|
850 |
#, php-format
|
851 |
msgid ""
|
852 |
"It is prohibited to change %s settings on this site in the %s network "
|
855 |
"Il est interdit de changer le paramètre %s sur ce site dans les paramètres "
|
856 |
"%s du réseau."
|
857 |
|
858 |
+
#: class-bws-settings.php:541 class-bws-settings.php:596
|
859 |
#, php-format
|
860 |
msgid ""
|
861 |
"It is prohibited to view %s settings on this site in the %s network settings."
|
863 |
"Il est interdit de voir le paramètre %s sur ce site dans les paramètres %s "
|
864 |
"du réseau."
|
865 |
|
866 |
+
#: class-bws-settings.php:550
|
867 |
msgid "Pro Options"
|
868 |
msgstr "Options Pro"
|
869 |
|
870 |
+
#: class-bws-settings.php:554
|
871 |
msgid "Enable to display plugin Pro options."
|
872 |
msgstr "Activer pour voir les options PRO de l'extension."
|
873 |
|
874 |
+
#: class-bws-settings.php:560
|
875 |
msgid "Track Usage"
|
876 |
msgstr "Suivi de l'utilisation"
|
877 |
|
878 |
+
#: class-bws-settings.php:564
|
879 |
msgid ""
|
880 |
"Enable to allow tracking plugin usage anonymously in order to make it better."
|
881 |
msgstr ""
|
882 |
"Activer pour autoriser le suivi de l'utilisation de l'extension de manière "
|
883 |
"anonyme afin de le rendre meilleur."
|
884 |
|
885 |
+
#: class-bws-settings.php:569
|
886 |
msgid "Default Settings"
|
887 |
msgstr "Réglages par défauts"
|
888 |
|
889 |
+
#: class-bws-settings.php:571
|
890 |
msgid "Restore Settings"
|
891 |
msgstr "Remettre les paramètres"
|
892 |
|
893 |
+
#: class-bws-settings.php:572
|
894 |
msgid "This will restore plugin settings to defaults."
|
895 |
msgstr "Remettre les valeurs par défaut des paramètres de l'extension."
|
896 |
|
897 |
+
#: class-bws-settings.php:584
|
898 |
msgid "Import / Export"
|
899 |
msgstr "Importer / Exporter"
|
900 |
|
901 |
+
#: class-bws-settings.php:700 class-bws-settings.php:733
|
902 |
+
#: class-bws-settings.php:755
|
903 |
msgid "License Key"
|
904 |
msgstr "Clé de licence"
|
905 |
|
906 |
+
#: class-bws-settings.php:723
|
907 |
msgid "Congratulations! Pro license is activated successfully."
|
908 |
msgstr ""
|
909 |
"Félicitations! La version PRO de cette extension a été activée avec succès."
|
910 |
|
911 |
+
#: class-bws-settings.php:724
|
912 |
#, php-format
|
913 |
msgid "You will be automatically redirected to the %s in %s seconds."
|
914 |
msgstr ""
|
915 |
|
916 |
+
#: class-bws-settings.php:724
|
917 |
msgid "Settings page"
|
918 |
msgstr "Page des paramètres"
|
919 |
|
920 |
+
#: class-bws-settings.php:739
|
921 |
#, php-format
|
922 |
msgid "Enter your license key to activate %s and get premium plugin features."
|
923 |
msgstr ""
|
924 |
"Saisir votre clé de licence pour activer %s et obtenir les fonctionnalités "
|
925 |
"premium."
|
926 |
|
927 |
+
#: class-bws-settings.php:742 class-bws-settings.php:929 deprecated.php:362
|
928 |
#: deprecated.php:703
|
929 |
msgid ""
|
930 |
"Unfortunately, you have exceeded the number of available tries per day. "
|
933 |
"Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
|
934 |
"télécharger l'extension manuellement."
|
935 |
|
936 |
+
#: class-bws-settings.php:745 deprecated.php:694
|
937 |
#, php-format
|
938 |
msgid "Start Your Free %s-Day Trial Now"
|
939 |
msgstr "Débuter votre licence d'évaluation gratuite de %s jours"
|
940 |
|
941 |
+
#: class-bws-settings.php:760
|
942 |
msgid ""
|
943 |
"If necessary, you can check if the license key is correct or reenter it in "
|
944 |
"the field below."
|
946 |
"Si nécessaire vous pouvez vérifier que la clé de licence est correcte ou la "
|
947 |
"saisir de nouveau dans le champ ci-dessous."
|
948 |
|
949 |
+
#: class-bws-settings.php:765
|
950 |
msgid "Manage License Settings"
|
951 |
msgstr "Gérer les paramètres de licence"
|
952 |
|
953 |
+
#: class-bws-settings.php:767
|
954 |
msgid "Login to Client Area"
|
955 |
msgstr "Se connecter à l'espace client"
|
956 |
|
957 |
+
#: class-bws-settings.php:769
|
958 |
msgid ""
|
959 |
"Manage active licenses, download BWS products, and view your payment history "
|
960 |
"using BestWebSoft Client Area."
|
962 |
"Gérer les licences actives, télécharger les produits BWS, et voir "
|
963 |
"l'historique de vos règlements dans l'interface client de BestWebSoft."
|
964 |
|
965 |
+
#: class-bws-settings.php:824 class-bws-settings.php:927 deprecated.php:141
|
966 |
#: deprecated.php:360
|
967 |
msgid "This license key is bound to another site."
|
968 |
msgstr "La clé de licence correspond à un autre site."
|
969 |
|
970 |
+
#: class-bws-settings.php:826 deprecated.php:143
|
971 |
msgid ""
|
972 |
"This license key is valid, but Your license has expired. If you want to "
|
973 |
"update our plugin in future, you should extend the license."
|
976 |
"continuer à disposer du support rapide et des mises à jour de l'extension "
|
977 |
"vous devez la renouveller."
|
978 |
|
979 |
+
#: class-bws-settings.php:828 deprecated.php:145
|
980 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
981 |
msgstr ""
|
982 |
"Désoler mais vous avez dépassé le nombre d'essai de la journée. Merci de "
|
983 |
"télécharger l'extension manuellement."
|
984 |
|
985 |
+
#: class-bws-settings.php:830 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."
|
990 |
"Une licence a déjà été installée sur ce domaine. La licence d'évaluation ne "
|
991 |
"peut-être installée qu'une seule fois."
|
992 |
|
993 |
+
#: class-bws-settings.php:835 deprecated.php:151
|
994 |
msgid "The Pro Trial license key is valid."
|
995 |
msgstr "La clé de licence d'évaluation est valide."
|
996 |
|
997 |
+
#: class-bws-settings.php:843 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."
|
1002 |
"Afin de pouvoir continuer à utiliser cette extension il est nécessaire "
|
1003 |
"d'acheter une licence %s."
|
1004 |
|
1005 |
+
#: class-bws-settings.php:1040 deprecated.php:463
|
1006 |
msgid "Please, enter Your license key"
|
1007 |
msgstr "Merci de saisir votre clé de licence"
|
1008 |
|
1009 |
+
#: class-bws-settings.php:1052
|
1010 |
msgid "Need Help?"
|
1011 |
msgstr "Besoin d'aide ?"
|
1012 |
|
1013 |
+
#: class-bws-settings.php:1054
|
1014 |
msgid "Read the Instruction"
|
1015 |
msgstr "Lire les instructions"
|
1016 |
|
1017 |
+
#: class-bws-settings.php:1058
|
1018 |
msgid "Watch the Video"
|
1019 |
msgstr "Regarder la vidéo"
|
1020 |
|
1021 |
+
#: class-bws-settings.php:1069
|
1022 |
msgid "Start Your Free Trial"
|
1023 |
msgstr "Débuter votre licence d'évaluation gratuite"
|
1024 |
|
1025 |
+
#: deactivation-form.php:26
|
1026 |
+
msgid "Need help? We are ready to answer your questions."
|
1027 |
+
msgstr ""
|
1028 |
+
|
1029 |
+
#: deactivation-form.php:26
|
1030 |
+
msgid "Contact Support"
|
1031 |
+
msgstr ""
|
1032 |
+
|
1033 |
+
#: deactivation-form.php:31
|
1034 |
+
msgid "The plugin is not working"
|
1035 |
+
msgstr ""
|
1036 |
+
|
1037 |
+
#: deactivation-form.php:33
|
1038 |
+
msgid "Kindly share what didn't work so we can fix it in future updates..."
|
1039 |
+
msgstr ""
|
1040 |
+
|
1041 |
+
#: deactivation-form.php:37
|
1042 |
+
msgid "The plugin didn't work as expected"
|
1043 |
+
msgstr ""
|
1044 |
+
|
1045 |
+
#: deactivation-form.php:39
|
1046 |
+
msgid "What did you expect?"
|
1047 |
+
msgstr ""
|
1048 |
+
|
1049 |
+
#: deactivation-form.php:43
|
1050 |
+
msgid "The plugin suddenly stopped working"
|
1051 |
+
msgstr ""
|
1052 |
+
|
1053 |
+
#: deactivation-form.php:50
|
1054 |
+
msgid "The plugin broke my site"
|
1055 |
+
msgstr ""
|
1056 |
+
|
1057 |
+
#: deactivation-form.php:57
|
1058 |
+
msgid "I couldn't understand how to get it work"
|
1059 |
+
msgstr ""
|
1060 |
+
|
1061 |
+
#: deactivation-form.php:64
|
1062 |
+
msgid "I found a better plugin"
|
1063 |
+
msgstr ""
|
1064 |
+
|
1065 |
+
#: deactivation-form.php:66
|
1066 |
+
msgid "What's the plugin name?"
|
1067 |
+
msgstr ""
|
1068 |
+
|
1069 |
+
#: deactivation-form.php:70
|
1070 |
+
msgid "The plugin is great, but I need specific feature that you don't support"
|
1071 |
+
msgstr ""
|
1072 |
+
|
1073 |
+
#: deactivation-form.php:72
|
1074 |
+
msgid "What feature?"
|
1075 |
+
msgstr ""
|
1076 |
+
|
1077 |
+
#: deactivation-form.php:76
|
1078 |
+
msgid "I no longer need the plugin"
|
1079 |
+
msgstr ""
|
1080 |
+
|
1081 |
+
#: deactivation-form.php:82
|
1082 |
+
msgid "It's a temporary deactivation, I'm just debugging an issue"
|
1083 |
+
msgstr ""
|
1084 |
+
|
1085 |
+
#: deactivation-form.php:88
|
1086 |
+
msgid "Other"
|
1087 |
+
msgstr "Autre"
|
1088 |
+
|
1089 |
+
#: deactivation-form.php:122
|
1090 |
+
msgid "Quick Feedback"
|
1091 |
+
msgstr ""
|
1092 |
+
|
1093 |
+
#: deactivation-form.php:123
|
1094 |
+
msgid "If you have a moment, please let us know why you are deactivating"
|
1095 |
+
msgstr ""
|
1096 |
+
|
1097 |
+
#: deactivation-form.php:128
|
1098 |
+
msgid "Anonymous feedback"
|
1099 |
+
msgstr ""
|
1100 |
+
|
1101 |
+
#: deactivation-form.php:130
|
1102 |
+
msgid "Cancel"
|
1103 |
+
msgstr ""
|
1104 |
+
|
1105 |
+
#: deactivation-form.php:230
|
1106 |
+
msgid "Processing"
|
1107 |
+
msgstr ""
|
1108 |
+
|
1109 |
+
#: deactivation-form.php:259
|
1110 |
+
msgid "Submit & Deactivate"
|
1111 |
+
msgstr ""
|
1112 |
+
|
1113 |
+
#: deactivation-form.php:276
|
1114 |
+
msgid "Please tell us the reason so we can improve it."
|
1115 |
+
msgstr ""
|
1116 |
+
|
1117 |
+
#: deactivation-form.php:344
|
1118 |
+
msgid "Deactivate"
|
1119 |
+
msgstr ""
|
1120 |
+
|
1121 |
#: deprecated.php:93
|
1122 |
msgid "System Status"
|
1123 |
msgstr "Etat du système"
|
1264 |
msgid "SMM"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: product_list.php:23
|
1268 |
msgid ""
|
1269 |
"Protect WordPress website forms from spam entries by means of math logic."
|
1270 |
msgstr ""
|
1271 |
|
1272 |
+
#: product_list.php:35
|
1273 |
msgid "Create your personal car rental/booking and reservation website."
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: product_list.php:45
|
1277 |
msgid ""
|
1278 |
"Allow customers to reach you using secure contact form plugin any website "
|
1279 |
"must have."
|
1280 |
msgstr ""
|
1281 |
|
1282 |
+
#: product_list.php:55
|
1283 |
msgid "Add unlimited number of contact forms to WordPress website."
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: product_list.php:65
|
1287 |
msgid "Save and manage Contact Form messages. Never lose important data."
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: product_list.php:75
|
1291 |
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: product_list.php:82
|
1295 |
msgid "Add custom fields to WordPress website search results."
|
1296 |
msgstr ""
|
1297 |
|
1298 |
+
#: product_list.php:89
|
1299 |
msgid ""
|
1300 |
"Add custom post types and taxonomies to WordPress website search results."
|
1301 |
msgstr ""
|
1302 |
|
1303 |
+
#: product_list.php:99
|
1304 |
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: product_list.php:106
|
|
|
|
|
|
|
|
|
|
|
|
|
1308 |
msgid ""
|
1309 |
"Get latest error log messages to diagnose website problems. Define and fix "
|
1310 |
"issues faster."
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: product_list.php:113
|
1314 |
msgid ""
|
1315 |
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1316 |
"widgets."
|
1317 |
msgstr ""
|
1318 |
|
1319 |
+
#: product_list.php:123
|
1320 |
msgid ""
|
1321 |
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1322 |
"clicks."
|
1323 |
msgstr ""
|
1324 |
|
1325 |
+
#: product_list.php:133
|
|
|
|
|
|
|
|
|
|
|
|
|
1326 |
msgid ""
|
1327 |
"Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
|
1328 |
"posts, pages and widgets."
|
1329 |
msgstr ""
|
1330 |
|
1331 |
+
#: product_list.php:143
|
1332 |
msgid ""
|
1333 |
"Stronger security solution which protects your WordPress website from hacks "
|
1334 |
"and unauthorized login attempts."
|
1335 |
msgstr ""
|
1336 |
|
1337 |
+
#: product_list.php:153
|
1338 |
msgid ""
|
1339 |
"Add Adsense ads to WordPress website pages, posts, custom posts, search "
|
1340 |
"results, categories, tags, and widgets."
|
1341 |
msgstr ""
|
1342 |
|
1343 |
+
#: product_list.php:163
|
1344 |
msgid "Add Google Analytics code to WordPress website and track basic stats."
|
1345 |
msgstr ""
|
1346 |
|
1347 |
+
#: product_list.php:173
|
1348 |
msgid ""
|
1349 |
"Protect WordPress website forms from spam entries with Google Captcha "
|
1350 |
"(reCaptcha)."
|
1351 |
msgstr ""
|
1352 |
|
1353 |
+
#: product_list.php:183
|
1354 |
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: product_list.php:193
|
1358 |
msgid ""
|
1359 |
"Generate and add XML sitemap to WordPress website. Help search engines index "
|
1360 |
"your blog."
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: product_list.php:203
|
1364 |
msgid ""
|
1365 |
"Replace external WordPress website links with Google shortlinks and track "
|
1366 |
"click stats."
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: product_list.php:210
|
1370 |
msgid ""
|
1371 |
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1372 |
"hostnames, etc."
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: product_list.php:220
|
1376 |
msgid ""
|
1377 |
"Create your personal job board and listing WordPress website. Search jobs, "
|
1378 |
"submit CV/resumes, choose candidates."
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: product_list.php:227
|
1382 |
msgid ""
|
1383 |
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1384 |
"attempts."
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: product_list.php:237
|
1388 |
msgid ""
|
1389 |
"Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
|
1390 |
"5 plugins included – profile, insider, etc."
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: product_list.php:247
|
1394 |
msgid ""
|
1395 |
"Translate WordPress website content to other languages manually. Create "
|
1396 |
"multilingual pages, posts, widgets, menus, etc."
|
1397 |
msgstr ""
|
1398 |
|
1399 |
+
#: product_list.php:257
|
1400 |
msgid ""
|
1401 |
"Add customizable pagination to WordPress website. Split long content to "
|
1402 |
"multiple pages for better navigation."
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: product_list.php:267
|
1406 |
msgid ""
|
1407 |
"Generate PDF files and print WordPress posts/pages. Customize document "
|
1408 |
"header/footer styles and appearance."
|
1409 |
msgstr ""
|
1410 |
|
1411 |
+
#: product_list.php:277
|
1412 |
msgid ""
|
1413 |
"Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
|
1414 |
"Profile) to WordPress posts, pages and widgets."
|
1415 |
msgstr ""
|
1416 |
|
1417 |
+
#: product_list.php:287
|
1418 |
msgid ""
|
1419 |
"Create your personal portfolio WordPress website. Manage and showcase past "
|
1420 |
"projects to get more clients."
|
1421 |
msgstr ""
|
1422 |
|
1423 |
+
#: product_list.php:297
|
1424 |
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: product_list.php:304
|
1428 |
msgid ""
|
1429 |
"Add extra fields to default WordPress user profile. The easiest way to "
|
1430 |
"create and manage additional custom values."
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: product_list.php:311
|
1434 |
msgid ""
|
1435 |
"Add and display HTML advertisement banner on WordPress website. Customize "
|
1436 |
"bar styles and appearance."
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: product_list.php:321
|
1440 |
msgid ""
|
1441 |
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1442 |
"widgets."
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: product_list.php:328
|
1446 |
msgid ""
|
1447 |
"Add rating plugin to your WordPress website to receive feedback from your "
|
1448 |
"customers."
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: product_list.php:335
|
1452 |
msgid ""
|
1453 |
"Create your personal real estate WordPress website. Sell, rent and buy "
|
1454 |
"properties. Add, search and browse listings easily."
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: product_list.php:345
|
|
|
|
|
|
|
|
|
|
|
|
|
1458 |
msgid ""
|
1459 |
"Add related, featured, latest, and popular posts to your WordPress website. "
|
1460 |
"Connect your blog readers with a relevant content."
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: product_list.php:352
|
1464 |
msgid ""
|
1465 |
"Send bulk email messages to WordPress users. Custom templates, advanced "
|
1466 |
"settings and detailed reports."
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: product_list.php:362
|
1470 |
msgid ""
|
1471 |
"The best responsive slider plugin for your WordPress website. Create "
|
1472 |
"beautifully animated slides just in a few clicks."
|
1473 |
msgstr ""
|
1474 |
|
1475 |
+
#: product_list.php:369
|
1476 |
msgid ""
|
1477 |
"Configure SMTP server to receive email messages from WordPress to Gmail, "
|
1478 |
"Yahoo, Hotmail and other services."
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: product_list.php:376
|
1482 |
msgid ""
|
1483 |
"Add social media buttons and widgets to WordPress posts, pages and widgets. "
|
1484 |
"FB, Twitter, G+1, Pinterest, LinkedIn."
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: product_list.php:386
|
1488 |
msgid ""
|
1489 |
"Add social media login, registration, and commenting to your WordPress "
|
1490 |
"website."
|
1491 |
msgstr ""
|
1492 |
|
1493 |
+
#: product_list.php:393
|
1494 |
msgid ""
|
1495 |
"Add email newsletter sign up form to WordPress posts, pages and widgets. "
|
1496 |
"Collect data and subscribe your users."
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: product_list.php:403
|
1500 |
msgid ""
|
1501 |
"Add testimonials and feedbacks from your customers to WordPress website "
|
1502 |
"posts, pages, and widgets."
|
1503 |
msgstr ""
|
1504 |
|
1505 |
+
#: product_list.php:410
|
1506 |
msgid ""
|
1507 |
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1508 |
"attendance and generate reports."
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#: product_list.php:420
|
1512 |
msgid ""
|
1513 |
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1514 |
"and pages."
|
1515 |
msgstr ""
|
1516 |
|
1517 |
+
#: product_list.php:430
|
1518 |
msgid ""
|
1519 |
"Automatically check and update WordPress website core with all installed "
|
1520 |
"plugins and themes to the latest versions."
|
1521 |
msgstr ""
|
1522 |
|
1523 |
+
#: product_list.php:440
|
1524 |
msgid ""
|
1525 |
"Powerful user role management plugin for WordPress website. Create, edit, "
|
1526 |
"copy, and delete user roles."
|
1527 |
msgstr ""
|
1528 |
|
1529 |
+
#: product_list.php:450
|
1530 |
msgid ""
|
1531 |
"Display live count of online visitors who are currently browsing your "
|
1532 |
"WordPress website."
|
1533 |
msgstr ""
|
1534 |
|
1535 |
+
#: product_list.php:460
|
1536 |
msgid ""
|
1537 |
"Backup and export Zendesk Help Center content automatically to your "
|
1538 |
"WordPress website database."
|
1539 |
msgstr ""
|
1540 |
|
1541 |
+
#~ msgid ""
|
1542 |
+
#~ "You can use one license of the Pro plugin for one domain only. Please "
|
1543 |
+
#~ "check and edit your license or domain if necessary using you personal "
|
1544 |
+
#~ "Client Area. We strongly recommend you to solve the problem within 24 "
|
1545 |
+
#~ "hours, otherwise the Pro plugin will be deactivated."
|
1546 |
+
#~ msgstr ""
|
1547 |
+
#~ "Vous ne pouvez utilisez qu'une licence de la version Pro de l'extension "
|
1548 |
+
#~ "pour un seul domaine. Merci de vérifier et de modifier votre licence ou "
|
1549 |
+
#~ "votre domaine si nécessaire en utilisant votre zone client. Nous vous "
|
1550 |
+
#~ "recommandons de résoudre ce problème dans les 24 heures, sinon "
|
1551 |
+
#~ "l'extension sera rendue inactive."
|
1552 |
+
|
1553 |
+
#~ msgid "Insert"
|
1554 |
+
#~ msgstr "Insérer"
|
1555 |
+
|
1556 |
#~ msgid "Advertisement"
|
1557 |
#~ msgstr "Publicité"
|
1558 |
|
1571 |
#~ msgid "Utilities"
|
1572 |
#~ msgstr "Utilitaires"
|
1573 |
|
|
|
|
|
|
|
1574 |
#~ msgid "Thank you for installing"
|
1575 |
#~ msgstr "Merci d'avoir installé"
|
1576 |
|
bws_menu/languages/bestwebsoft-id_ID.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-id_ID.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: Jordan Silaen <jordan.silaen@chameleonjohn.com>\n"
|
8 |
"Language-Team: chameleonjohn.com <jordan.silaen@chameleonjohn.com>\n"
|
9 |
"Language: id\n"
|
@@ -17,11 +17,11 @@ msgstr ""
|
|
17 |
"X-Generator: Poedit 1.8.7.1\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
-
#: bws_functions.php:
|
21 |
msgid "requires"
|
22 |
msgstr "membutuhkan"
|
23 |
|
24 |
-
#: bws_functions.php:
|
25 |
msgid ""
|
26 |
"or higher, that is why it has been deactivated! Please upgrade WordPress and "
|
27 |
"try again."
|
@@ -29,60 +29,55 @@ msgstr ""
|
|
29 |
"atau lebih tinggi, itu sebabnya telah dinonaktifkan! Silakan upgrade "
|
30 |
"WordPress dan coba lagi."
|
31 |
|
32 |
-
#: bws_functions.php:
|
33 |
msgid "Back to the WordPress"
|
34 |
msgstr "Kembali ke WordPress"
|
35 |
|
36 |
-
#: bws_functions.php:
|
37 |
msgid "Plugins page"
|
38 |
msgstr "halaman plugin"
|
39 |
|
40 |
-
#: bws_functions.php:
|
41 |
msgid "Like the plugin?"
|
42 |
msgstr "Seperti plugin?"
|
43 |
|
44 |
-
#: bws_functions.php:
|
45 |
msgid "Rate it"
|
46 |
msgstr "Menilai itu"
|
47 |
|
48 |
-
#: bws_functions.php:
|
49 |
msgid "Need help?"
|
50 |
msgstr "Butuh bantuan?"
|
51 |
|
52 |
-
#: bws_functions.php:
|
53 |
msgid "Visit Help Center"
|
54 |
msgstr "Kunjungi Pusat Bantuan"
|
55 |
|
56 |
-
#: bws_functions.php:
|
57 |
msgid "Want to support the plugin?"
|
58 |
msgstr "Ingin mendukung plugin?"
|
59 |
|
60 |
-
#: bws_functions.php:
|
61 |
msgid "Donate"
|
62 |
msgstr "Menyumbangkan"
|
63 |
|
64 |
-
#: bws_functions.php:
|
65 |
msgid "WARNING: Illegal use notification"
|
66 |
msgstr "PERINGATAN: Illegal penggunaan notifikasi"
|
67 |
|
68 |
-
#: bws_functions.php:
|
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
|
72 |
-
"We strongly recommend you to solve the problem within 24 hours,
|
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:
|
81 |
-
#: class-bws-settings.php:143
|
82 |
msgid "Learn More"
|
83 |
msgstr "Belajarlah lagi"
|
84 |
|
85 |
-
#: bws_functions.php:
|
86 |
msgid ""
|
87 |
"Notice: Your Pro Trial license has expired. To continue using the plugin, "
|
88 |
"you should buy a Pro license"
|
@@ -90,7 +85,7 @@ msgstr ""
|
|
90 |
"Perhatikan: lisensi Percobaan Pro Anda telah kedaluwarsa. Untuk terus "
|
91 |
"menggunakan plugin, Anda harus membeli lisensi Pro"
|
92 |
|
93 |
-
#: bws_functions.php:
|
94 |
msgid ""
|
95 |
"Your license has expired. To continue getting top-priority support and "
|
96 |
"plugin updates, you should extend it."
|
@@ -98,24 +93,24 @@ msgstr ""
|
|
98 |
"lisensi Anda telah berakhir. Untuk terus mendapatkan dukungan top-prioritas "
|
99 |
"dan update Plugin, Anda harus memperpanjang."
|
100 |
|
101 |
-
#: bws_functions.php:
|
102 |
msgid "Learn more"
|
103 |
msgstr "Belajarlah lagi"
|
104 |
|
105 |
-
#: bws_functions.php:
|
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:
|
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:
|
115 |
msgid "The Pro Trial license will expire on"
|
116 |
msgstr "Lisensi Percobaan Pro akan berakhir pada"
|
117 |
|
118 |
-
#: bws_functions.php:
|
119 |
msgid ""
|
120 |
"or higher! We do not guarantee that our plugin will work correctly. Please "
|
121 |
"upgrade to WordPress latest version."
|
@@ -123,73 +118,73 @@ 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:
|
127 |
#, php-format
|
128 |
msgid "Thank you for installing %s plugin!"
|
129 |
msgstr ""
|
130 |
|
131 |
-
#: bws_functions.php:
|
132 |
msgid "Let's get started"
|
133 |
msgstr "Mari kita mulai"
|
134 |
|
135 |
-
#: bws_functions.php:
|
136 |
#: bws_menu.php:559
|
137 |
msgid "Settings"
|
138 |
msgstr "pengaturan"
|
139 |
|
140 |
-
#: bws_functions.php:
|
141 |
-
#: class-bws-settings.php:
|
142 |
msgid "or"
|
143 |
msgstr "atau"
|
144 |
|
145 |
-
#: bws_functions.php:
|
146 |
msgid "Add New"
|
147 |
msgstr "Tambah baru"
|
148 |
|
149 |
-
#: bws_functions.php:
|
150 |
-
#: bws_functions.php:
|
151 |
msgid "Close notice"
|
152 |
msgstr "Tutup pemberitahuan"
|
153 |
|
154 |
-
#: bws_functions.php:
|
155 |
msgid "Thank you for installing plugins by BestWebSoft!"
|
156 |
msgstr "Terima kasih untuk menginstal plugin dengan BestWebSoft!"
|
157 |
|
158 |
-
#: bws_functions.php:
|
159 |
msgid "More Details"
|
160 |
msgstr "Keterangan lebih lanjut"
|
161 |
|
162 |
-
#: bws_functions.php:
|
163 |
msgid "Less Details"
|
164 |
msgstr "Kurang Detail"
|
165 |
|
166 |
-
#: bws_functions.php:
|
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:
|
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:
|
177 |
msgid "It’s time to upgrade your"
|
178 |
msgstr "Saatnya untuk meng-upgrade Anda"
|
179 |
|
180 |
-
#: bws_functions.php:
|
181 |
msgid "to"
|
182 |
msgstr "untuk"
|
183 |
|
184 |
-
#: bws_functions.php:
|
185 |
msgid "version!"
|
186 |
msgstr "versi!"
|
187 |
|
188 |
-
#: bws_functions.php:
|
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:
|
193 |
#, php-format
|
194 |
msgid ""
|
195 |
"Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
|
@@ -198,12 +193,12 @@ 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:
|
202 |
#, php-format
|
203 |
msgid "Thank you for choosing %s plugin!"
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: bws_functions.php:
|
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!"
|
@@ -211,25 +206,25 @@ 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:
|
215 |
msgid "Suggest a Feature"
|
216 |
msgstr "Sarankan Fitur sebuah"
|
217 |
|
218 |
-
#: bws_functions.php:
|
219 |
-
#: class-bws-settings.php:
|
220 |
msgid "Notice"
|
221 |
msgstr "Melihat"
|
222 |
|
223 |
-
#: bws_functions.php:
|
224 |
msgid "The plugin's settings have been changed."
|
225 |
msgstr "pengaturan plugin ini telah berubah."
|
226 |
|
227 |
-
#: bws_functions.php:
|
228 |
#: deprecated.php:640
|
229 |
msgid "Save Changes"
|
230 |
msgstr "Simpan perubahan"
|
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,80 +232,76 @@ msgstr ""
|
|
237 |
"Anda selalu dapat melihat pilihan premium dengan memeriksa \\ \"Pro Options "
|
238 |
"\" di \\ tab \"Misc \"."
|
239 |
|
240 |
-
#: bws_functions.php:
|
241 |
msgid "Add BWS Shortcode"
|
242 |
msgstr ""
|
243 |
|
244 |
-
#: bws_functions.php:
|
245 |
msgid "Add BWS Plugins Shortcode"
|
246 |
msgstr "Tambahkan BWS Plugin pendek"
|
247 |
|
248 |
-
#: bws_functions.php:
|
249 |
msgid "Add shortcode"
|
250 |
msgstr "Tambahkan shortcode"
|
251 |
|
252 |
-
#: bws_functions.php:
|
253 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
254 |
msgstr "Tambahkan shortcode BestWebSoft plugin 'menggunakan tombol ini."
|
255 |
|
256 |
-
#: bws_functions.php:
|
257 |
msgid "Close"
|
258 |
msgstr "Dekat"
|
259 |
|
260 |
-
#: bws_functions.php:
|
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:
|
265 |
msgid "Yes, restore all settings"
|
266 |
msgstr "Ya, mengembalikan semua pengaturan"
|
267 |
|
268 |
-
#: bws_functions.php:
|
269 |
msgid "No, go back to the settings page"
|
270 |
msgstr "Tidak, kembali ke halaman pengaturan"
|
271 |
|
272 |
-
#: bws_functions.php:
|
273 |
msgid "Plugin"
|
274 |
msgstr "Plugin"
|
275 |
|
276 |
-
#: bws_functions.php:
|
277 |
msgid "Shortcode settings"
|
278 |
msgstr "pengaturan shortcode"
|
279 |
|
280 |
-
#: bws_functions.php:
|
281 |
msgid "The shortcode will be inserted"
|
282 |
msgstr "shortcode akan dimasukkan"
|
283 |
|
284 |
-
#: bws_functions.php:
|
285 |
-
msgid "Insert"
|
286 |
-
msgstr "Memasukkan"
|
287 |
-
|
288 |
-
#: bws_functions.php:912
|
289 |
msgid "FAQ"
|
290 |
msgstr "FAQ"
|
291 |
|
292 |
-
#: bws_functions.php:
|
293 |
msgid "For more information:"
|
294 |
msgstr "Untuk informasi lebih lanjut:"
|
295 |
|
296 |
-
#: bws_functions.php:
|
297 |
msgid "Documentation"
|
298 |
msgstr "Dokumentasi"
|
299 |
|
300 |
-
#: bws_functions.php:
|
301 |
msgid "Video Instructions"
|
302 |
msgstr "Petunjuk Video"
|
303 |
|
304 |
-
#: bws_functions.php:
|
305 |
msgid "Submit a Request"
|
306 |
msgstr "Mengajukan permohonan"
|
307 |
|
308 |
-
#: bws_menu.php:101 class-bws-settings.php:
|
309 |
msgid "Wrong license key"
|
310 |
msgstr "kunci lisensi yang salah"
|
311 |
|
312 |
-
#: bws_menu.php:122 class-bws-settings.php:
|
313 |
-
#: class-bws-settings.php:
|
314 |
#: deprecated.php:352
|
315 |
msgid ""
|
316 |
"Something went wrong. Please try again later. If the error appears again, "
|
@@ -319,13 +310,13 @@ 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:
|
323 |
-
#: class-bws-settings.php:
|
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:
|
329 |
#: deprecated.php:139 deprecated.php:358
|
330 |
msgid "Wrong license key."
|
331 |
msgstr "kunci lisensi yang salah."
|
@@ -346,7 +337,7 @@ msgstr "Masuk"
|
|
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:
|
350 |
#, php-format
|
351 |
msgid ""
|
352 |
"Unfortunately, Your license has expired. To continue getting top-priority "
|
@@ -355,7 +346,7 @@ 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:
|
359 |
msgid ""
|
360 |
"Unfortunately, the Pro licence was already installed to this domain. The Pro "
|
361 |
"Trial license can be installed only once."
|
@@ -363,11 +354,11 @@ 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:
|
367 |
msgid "The license key is valid."
|
368 |
msgstr "Kunci lisensi berlaku."
|
369 |
|
370 |
-
#: bws_menu.php:144 class-bws-settings.php:
|
371 |
msgid "Your license will expire on"
|
372 |
msgstr "lisensi Anda akan berakhir pada"
|
373 |
|
@@ -375,7 +366,7 @@ msgstr "lisensi Anda akan berakhir pada"
|
|
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:
|
379 |
msgid ""
|
380 |
"Something went wrong. Try again later or upload the plugin manually. We are "
|
381 |
"sorry for inconvenience."
|
@@ -549,7 +540,7 @@ msgstr "plugin"
|
|
549 |
msgid "Themes"
|
550 |
msgstr "tema"
|
551 |
|
552 |
-
#: bws_menu.php:309 bws_menu.php:313 bws_menu.php:
|
553 |
msgid "System status"
|
554 |
msgstr "Status sistem"
|
555 |
|
@@ -570,7 +561,7 @@ msgstr "Dapatkan Akses ke %s + Premium Plugin"
|
|
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:
|
574 |
#: deprecated.php:227
|
575 |
msgid "Check license key"
|
576 |
msgstr "Periksa kunci lisensi"
|
@@ -580,7 +571,7 @@ 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:
|
584 |
#: deprecated.php:629 deprecated.php:700 deprecated.php:709
|
585 |
msgid "Activate"
|
586 |
msgstr "Mengaktifkan"
|
@@ -623,8 +614,8 @@ 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:
|
627 |
-
#: class-bws-settings.php:
|
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"
|
@@ -637,11 +628,11 @@ msgstr "Membuka paket"
|
|
637 |
msgid "Installing the plugin"
|
638 |
msgstr "Instalasi plugin"
|
639 |
|
640 |
-
#: bws_menu.php:417 class-bws-settings.php:
|
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:
|
645 |
msgid ""
|
646 |
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
647 |
"plugin manually"
|
@@ -654,7 +645,7 @@ msgstr ""
|
|
654 |
msgid "The plugin %s is successfully installed."
|
655 |
msgstr "Plugin %s berhasil diinstal."
|
656 |
|
657 |
-
#: bws_menu.php:434 class-bws-settings.php:
|
658 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
659 |
msgstr "UploadDir tidak dapat ditulis. Silakan, upload plugin secara manual"
|
660 |
|
@@ -670,7 +661,7 @@ msgstr "Kembali ke BestWebSoft Panel"
|
|
670 |
msgid "All"
|
671 |
msgstr "Semua"
|
672 |
|
673 |
-
#: bws_menu.php:450 bws_menu.php:
|
674 |
msgid "Installed"
|
675 |
msgstr "dipasang"
|
676 |
|
@@ -703,7 +694,7 @@ msgstr "Update untuk v %s"
|
|
703 |
msgid "Install Now"
|
704 |
msgstr "Pasang sekarang"
|
705 |
|
706 |
-
#: bws_menu.php:549 class-bws-settings.php:
|
707 |
msgid "Upgrade to Pro"
|
708 |
msgstr "Upgrade ke yang lebih baik"
|
709 |
|
@@ -719,87 +710,87 @@ msgstr "Menginstal plugin ini"
|
|
719 |
msgid "Nothing found. Try another criteria."
|
720 |
msgstr "Tidak ada yang ditemukan. Coba kriteria lain."
|
721 |
|
722 |
-
#: bws_menu.php:621
|
723 |
#, php-format
|
724 |
msgid "By %s"
|
725 |
msgstr "Oleh %s"
|
726 |
|
727 |
-
#: bws_menu.php:
|
728 |
msgid "Already Installed"
|
729 |
msgstr "sudah Dipasang"
|
730 |
|
731 |
-
#: bws_menu.php:
|
732 |
msgid "Browse Free WordPress Themes"
|
733 |
msgstr "Isi Gratis WordPress Themes"
|
734 |
|
735 |
-
#: bws_menu.php:
|
736 |
msgid "Send to support"
|
737 |
msgstr "Kirim untuk mendukung"
|
738 |
|
739 |
-
#: bws_menu.php:
|
740 |
msgid "Send to custom email »"
|
741 |
msgstr "Kirim ke email khusus & # 187;"
|
742 |
|
743 |
-
#: class-bws-settings.php:
|
744 |
msgid "Information"
|
745 |
msgstr "Informasi"
|
746 |
|
747 |
-
#: class-bws-settings.php:
|
748 |
msgid "Inactive"
|
749 |
msgstr "non-aktif"
|
750 |
|
751 |
-
#: class-bws-settings.php:
|
752 |
msgid "Expired"
|
753 |
msgstr "kedaluwarsa"
|
754 |
|
755 |
-
#: class-bws-settings.php:
|
756 |
#, php-format
|
757 |
msgid "%s day(-s) left"
|
758 |
msgstr "%s hari (-s) kiri"
|
759 |
|
760 |
-
#: class-bws-settings.php:
|
761 |
#, php-format
|
762 |
msgid "Expired on %s"
|
763 |
msgstr "Berakhir pada %s"
|
764 |
|
765 |
-
#: class-bws-settings.php:
|
766 |
msgid "Renew Now"
|
767 |
msgstr "Perbarui sekarang"
|
768 |
|
769 |
-
#: class-bws-settings.php:
|
770 |
msgid "Active"
|
771 |
msgstr "Aktif"
|
772 |
|
773 |
-
#: class-bws-settings.php:
|
774 |
msgid "License"
|
775 |
msgstr "Lisensi"
|
776 |
|
777 |
-
#: class-bws-settings.php:
|
778 |
msgid "Status"
|
779 |
msgstr "Status"
|
780 |
|
781 |
-
#: class-bws-settings.php:
|
782 |
msgid "Version"
|
783 |
msgstr "Versi"
|
784 |
|
785 |
-
#: class-bws-settings.php:
|
786 |
msgid "All plugin settings were restored."
|
787 |
msgstr "Semua pengaturan Plugin dipulihkan."
|
788 |
|
789 |
-
#: class-bws-settings.php:
|
790 |
msgid "Custom Code"
|
791 |
msgstr "Kode kustom"
|
792 |
|
793 |
-
#: class-bws-settings.php:
|
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:
|
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:
|
803 |
#, php-format
|
804 |
msgid ""
|
805 |
"This PHP code will be hooked to the %s action and will be printed on front "
|
@@ -808,11 +799,11 @@ msgstr ""
|
|
808 |
"Kode PHP ini akan ketagihan untuk %s tindakan dan akan dicetak pada ujung "
|
809 |
"depan saja."
|
810 |
|
811 |
-
#: class-bws-settings.php:
|
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:
|
816 |
#, php-format
|
817 |
msgid ""
|
818 |
"You need to make this files writable before you can save your changes. See "
|
@@ -821,25 +812,25 @@ 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:
|
825 |
msgid "Browsing"
|
826 |
msgstr "Browsing"
|
827 |
|
828 |
-
#: class-bws-settings.php:
|
829 |
#, php-format
|
830 |
msgid "Activate custom %s code."
|
831 |
msgstr "Aktifkan kustom %s kode."
|
832 |
|
833 |
-
#: class-bws-settings.php:
|
834 |
#, php-format
|
835 |
msgid "Learn more about %s"
|
836 |
msgstr "Pelajari lebih lanjut tentang %s"
|
837 |
|
838 |
-
#: class-bws-settings.php:
|
839 |
msgid "Miscellaneous Settings"
|
840 |
msgstr "Pengaturan Miscellaneous"
|
841 |
|
842 |
-
#: class-bws-settings.php:
|
843 |
#, php-format
|
844 |
msgid ""
|
845 |
"It is prohibited to change %s settings on this site in the %s network "
|
@@ -847,73 +838,73 @@ msgid ""
|
|
847 |
msgstr ""
|
848 |
"Dilarang mengubah %s pengaturan di situs ini di %s pengaturan jaringan."
|
849 |
|
850 |
-
#: class-bws-settings.php:
|
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:
|
857 |
msgid "Pro Options"
|
858 |
msgstr "Pro Pilihan"
|
859 |
|
860 |
-
#: class-bws-settings.php:
|
861 |
msgid "Enable to display plugin Pro options."
|
862 |
msgstr "Memungkinkan untuk menampilkan opsi Pro Plugin."
|
863 |
|
864 |
-
#: class-bws-settings.php:
|
865 |
msgid "Track Usage"
|
866 |
msgstr "track Penggunaan"
|
867 |
|
868 |
-
#: class-bws-settings.php:
|
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:
|
876 |
msgid "Default Settings"
|
877 |
msgstr "Pengaturan default"
|
878 |
|
879 |
-
#: class-bws-settings.php:
|
880 |
msgid "Restore Settings"
|
881 |
msgstr "Kembalikan Pengaturan"
|
882 |
|
883 |
-
#: class-bws-settings.php:
|
884 |
msgid "This will restore plugin settings to defaults."
|
885 |
msgstr "Ini akan mengembalikan pengaturan plugin untuk default."
|
886 |
|
887 |
-
#: class-bws-settings.php:
|
888 |
msgid "Import / Export"
|
889 |
msgstr "Ekspor Impor"
|
890 |
|
891 |
-
#: class-bws-settings.php:
|
892 |
-
#: class-bws-settings.php:
|
893 |
msgid "License Key"
|
894 |
msgstr "Kunci lisensi"
|
895 |
|
896 |
-
#: class-bws-settings.php:
|
897 |
msgid "Congratulations! Pro license is activated successfully."
|
898 |
msgstr "Selamat! lisensi Pro berhasil diaktifkan."
|
899 |
|
900 |
-
#: class-bws-settings.php:
|
901 |
#, php-format
|
902 |
msgid "You will be automatically redirected to the %s in %s seconds."
|
903 |
msgstr ""
|
904 |
|
905 |
-
#: class-bws-settings.php:
|
906 |
msgid "Settings page"
|
907 |
msgstr "halaman pengaturan"
|
908 |
|
909 |
-
#: class-bws-settings.php:
|
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:
|
917 |
#: deprecated.php:703
|
918 |
msgid ""
|
919 |
"Unfortunately, you have exceeded the number of available tries per day. "
|
@@ -922,12 +913,12 @@ msgstr ""
|
|
922 |
"Sayangnya, Anda telah melebihi jumlah mencoba tersedia per hari. Silakan, "
|
923 |
"upload plugin secara manual."
|
924 |
|
925 |
-
#: class-bws-settings.php:
|
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:
|
931 |
msgid ""
|
932 |
"If necessary, you can check if the license key is correct or reenter it in "
|
933 |
"the field below."
|
@@ -935,15 +926,15 @@ 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:
|
939 |
msgid "Manage License Settings"
|
940 |
msgstr "Kelola Setelan License"
|
941 |
|
942 |
-
#: class-bws-settings.php:
|
943 |
msgid "Login to Client Area"
|
944 |
msgstr "Login ke Area Klien"
|
945 |
|
946 |
-
#: class-bws-settings.php:
|
947 |
msgid ""
|
948 |
"Manage active licenses, download BWS products, and view your payment history "
|
949 |
"using BestWebSoft Client Area."
|
@@ -951,12 +942,12 @@ 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:
|
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:
|
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."
|
@@ -965,11 +956,11 @@ msgstr ""
|
|
965 |
"ingin memperbarui plugin kami di masa depan, Anda harus memperpanjang "
|
966 |
"lisensi."
|
967 |
|
968 |
-
#: class-bws-settings.php:
|
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:
|
973 |
msgid ""
|
974 |
"Unfortunately, the Pro Trial licence was already installed to this domain. "
|
975 |
"The Pro Trial license can be installed only once."
|
@@ -977,37 +968,133 @@ 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:
|
981 |
msgid "The Pro Trial license key is valid."
|
982 |
msgstr "Kunci lisensi Percobaan Pro berlaku."
|
983 |
|
984 |
-
#: class-bws-settings.php:
|
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:
|
992 |
msgid "Please, enter Your license key"
|
993 |
msgstr "Silakan, masukkan kunci lisensi Anda"
|
994 |
|
995 |
-
#: class-bws-settings.php:
|
996 |
msgid "Need Help?"
|
997 |
msgstr "Butuh bantuan?"
|
998 |
|
999 |
-
#: class-bws-settings.php:
|
1000 |
msgid "Read the Instruction"
|
1001 |
msgstr "Baca Instruksi"
|
1002 |
|
1003 |
-
#: class-bws-settings.php:
|
1004 |
msgid "Watch the Video"
|
1005 |
msgstr "Saksikan Video"
|
1006 |
|
1007 |
-
#: class-bws-settings.php:
|
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"
|
@@ -1147,298 +1234,295 @@ msgstr ""
|
|
1147 |
msgid "SMM"
|
1148 |
msgstr ""
|
1149 |
|
1150 |
-
#: product_list.php:
|
1151 |
msgid ""
|
1152 |
"Protect WordPress website forms from spam entries by means of math logic."
|
1153 |
msgstr ""
|
1154 |
|
1155 |
-
#: product_list.php:
|
1156 |
msgid "Create your personal car rental/booking and reservation website."
|
1157 |
msgstr ""
|
1158 |
|
1159 |
-
#: product_list.php:
|
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:
|
1166 |
msgid "Add unlimited number of contact forms to WordPress website."
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#: product_list.php:
|
1170 |
msgid "Save and manage Contact Form messages. Never lose important data."
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#: product_list.php:
|
1174 |
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1175 |
msgstr ""
|
1176 |
|
1177 |
-
#: product_list.php:
|
1178 |
msgid "Add custom fields to WordPress website search results."
|
1179 |
msgstr ""
|
1180 |
|
1181 |
-
#: product_list.php:
|
1182 |
msgid ""
|
1183 |
"Add custom post types and taxonomies to WordPress website search results."
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: product_list.php:
|
1187 |
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: product_list.php:
|
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:
|
1203 |
msgid ""
|
1204 |
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1205 |
"widgets."
|
1206 |
msgstr ""
|
1207 |
|
1208 |
-
#: product_list.php:
|
1209 |
msgid ""
|
1210 |
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1211 |
"clicks."
|
1212 |
msgstr ""
|
1213 |
|
1214 |
-
#: product_list.php:
|
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:
|
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:
|
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:
|
1239 |
msgid "Add Google Analytics code to WordPress website and track basic stats."
|
1240 |
msgstr ""
|
1241 |
|
1242 |
-
#: product_list.php:
|
1243 |
msgid ""
|
1244 |
"Protect WordPress website forms from spam entries with Google Captcha "
|
1245 |
"(reCaptcha)."
|
1246 |
msgstr ""
|
1247 |
|
1248 |
-
#: product_list.php:
|
1249 |
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: product_list.php:
|
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:
|
1259 |
msgid ""
|
1260 |
"Replace external WordPress website links with Google shortlinks and track "
|
1261 |
"click stats."
|
1262 |
msgstr ""
|
1263 |
|
1264 |
-
#: product_list.php:
|
1265 |
msgid ""
|
1266 |
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1267 |
"hostnames, etc."
|
1268 |
msgstr ""
|
1269 |
|
1270 |
-
#: product_list.php:
|
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:
|
1277 |
msgid ""
|
1278 |
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1279 |
"attempts."
|
1280 |
msgstr ""
|
1281 |
|
1282 |
-
#: product_list.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
1319 |
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#: product_list.php:
|
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:
|
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:
|
1335 |
msgid ""
|
1336 |
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1337 |
"widgets."
|
1338 |
msgstr ""
|
1339 |
|
1340 |
-
#: product_list.php:
|
1341 |
msgid ""
|
1342 |
"Add rating plugin to your WordPress website to receive feedback from your "
|
1343 |
"customers."
|
1344 |
msgstr ""
|
1345 |
|
1346 |
-
#: product_list.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
1389 |
msgid ""
|
1390 |
"Add social media login, registration, and commenting to your WordPress "
|
1391 |
"website."
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#: product_list.php:
|
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:
|
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:
|
1407 |
msgid ""
|
1408 |
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1409 |
"attendance and generate reports."
|
1410 |
msgstr ""
|
1411 |
|
1412 |
-
#: product_list.php:
|
1413 |
msgid ""
|
1414 |
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1415 |
"and pages."
|
1416 |
msgstr ""
|
1417 |
|
1418 |
-
#: product_list.php:
|
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:
|
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:
|
1431 |
msgid ""
|
1432 |
"Display live count of online visitors who are currently browsing your "
|
1433 |
"WordPress website."
|
1434 |
msgstr ""
|
1435 |
|
1436 |
-
#: product_list.php:
|
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 |
|
@@ -1457,9 +1541,6 @@ msgstr ""
|
|
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 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-08-28 09:55+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-08-28 09:55+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"
|
17 |
"X-Generator: Poedit 1.8.7.1\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
20 |
+
#: bws_functions.php:73 bws_functions.php:191
|
21 |
msgid "requires"
|
22 |
msgstr "membutuhkan"
|
23 |
|
24 |
+
#: bws_functions.php:75
|
25 |
msgid ""
|
26 |
"or higher, that is why it has been deactivated! Please upgrade WordPress and "
|
27 |
"try again."
|
29 |
"atau lebih tinggi, itu sebabnya telah dinonaktifkan! Silakan upgrade "
|
30 |
"WordPress dan coba lagi."
|
31 |
|
32 |
+
#: bws_functions.php:76
|
33 |
msgid "Back to the WordPress"
|
34 |
msgstr "Kembali ke WordPress"
|
35 |
|
36 |
+
#: bws_functions.php:78
|
37 |
msgid "Plugins page"
|
38 |
msgstr "halaman plugin"
|
39 |
|
40 |
+
#: bws_functions.php:92
|
41 |
msgid "Like the plugin?"
|
42 |
msgstr "Seperti plugin?"
|
43 |
|
44 |
+
#: bws_functions.php:94
|
45 |
msgid "Rate it"
|
46 |
msgstr "Menilai itu"
|
47 |
|
48 |
+
#: bws_functions.php:103
|
49 |
msgid "Need help?"
|
50 |
msgstr "Butuh bantuan?"
|
51 |
|
52 |
+
#: bws_functions.php:104 bws_functions.php:911 class-bws-settings.php:1056
|
53 |
msgid "Visit Help Center"
|
54 |
msgstr "Kunjungi Pusat Bantuan"
|
55 |
|
56 |
+
#: bws_functions.php:107
|
57 |
msgid "Want to support the plugin?"
|
58 |
msgstr "Ingin mendukung plugin?"
|
59 |
|
60 |
+
#: bws_functions.php:108 bws_menu.php:553
|
61 |
msgid "Donate"
|
62 |
msgstr "Menyumbangkan"
|
63 |
|
64 |
+
#: bws_functions.php:128
|
65 |
msgid "WARNING: Illegal use notification"
|
66 |
msgstr "PERINGATAN: Illegal penggunaan notifikasi"
|
67 |
|
68 |
+
#: bws_functions.php:128
|
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 your personal Client "
|
72 |
+
"Area. We strongly recommend you to solve the problem within 24 hours, "
|
73 |
+
"otherwise the Pro plugin will be deactivated."
|
74 |
msgstr ""
|
|
|
|
|
|
|
|
|
75 |
|
76 |
+
#: bws_functions.php:128 bws_functions.php:340 class-bws-settings.php:144
|
|
|
77 |
msgid "Learn More"
|
78 |
msgstr "Belajarlah lagi"
|
79 |
|
80 |
+
#: bws_functions.php:145
|
81 |
msgid ""
|
82 |
"Notice: Your Pro Trial license has expired. To continue using the plugin, "
|
83 |
"you should buy a Pro license"
|
85 |
"Perhatikan: lisensi Percobaan Pro Anda telah kedaluwarsa. Untuk terus "
|
86 |
"menggunakan plugin, Anda harus membeli lisensi Pro"
|
87 |
|
88 |
+
#: bws_functions.php:147
|
89 |
msgid ""
|
90 |
"Your license has expired. To continue getting top-priority support and "
|
91 |
"plugin updates, you should extend it."
|
93 |
"lisensi Anda telah berakhir. Untuk terus mendapatkan dukungan top-prioritas "
|
94 |
"dan update Plugin, Anda harus memperpanjang."
|
95 |
|
96 |
+
#: bws_functions.php:147 bws_functions.php:383 deprecated.php:584
|
97 |
msgid "Learn more"
|
98 |
msgstr "Belajarlah lagi"
|
99 |
|
100 |
+
#: bws_functions.php:165
|
101 |
#, php-format
|
102 |
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
103 |
msgstr "Perhatikan: Anda menggunakan lisensi Percobaan Pro dari %s Plugin."
|
104 |
|
105 |
+
#: bws_functions.php:167
|
106 |
msgid "Notice: You are using the Pro Trial license of plugin."
|
107 |
msgstr "Perhatikan: Anda menggunakan lisensi Percobaan Pro plugin."
|
108 |
|
109 |
+
#: bws_functions.php:170
|
110 |
msgid "The Pro Trial license will expire on"
|
111 |
msgstr "Lisensi Percobaan Pro akan berakhir pada"
|
112 |
|
113 |
+
#: bws_functions.php:193
|
114 |
msgid ""
|
115 |
"or higher! We do not guarantee that our plugin will work correctly. Please "
|
116 |
"upgrade to WordPress latest version."
|
118 |
"atau lebih tinggi! Kami tidak menjamin bahwa plugin kami akan bekerja dengan "
|
119 |
"benar. Silakan upgrade ke WordPress versi terbaru."
|
120 |
|
121 |
+
#: bws_functions.php:208
|
122 |
#, php-format
|
123 |
msgid "Thank you for installing %s plugin!"
|
124 |
msgstr ""
|
125 |
|
126 |
+
#: bws_functions.php:209
|
127 |
msgid "Let's get started"
|
128 |
msgstr "Mari kita mulai"
|
129 |
|
130 |
+
#: bws_functions.php:210 bws_functions.php:243 bws_menu.php:557
|
131 |
#: bws_menu.php:559
|
132 |
msgid "Settings"
|
133 |
msgstr "pengaturan"
|
134 |
|
135 |
+
#: bws_functions.php:212 bws_menu.php:328 class-bws-settings.php:745
|
136 |
+
#: class-bws-settings.php:1058 class-bws-settings.php:1068 deprecated.php:694
|
137 |
msgid "or"
|
138 |
msgstr "atau"
|
139 |
|
140 |
+
#: bws_functions.php:213 bws_functions.php:245
|
141 |
msgid "Add New"
|
142 |
msgstr "Tambah baru"
|
143 |
|
144 |
+
#: bws_functions.php:217 bws_functions.php:227 bws_functions.php:331
|
145 |
+
#: bws_functions.php:379 bws_functions.php:481
|
146 |
msgid "Close notice"
|
147 |
msgstr "Tutup pemberitahuan"
|
148 |
|
149 |
+
#: bws_functions.php:232
|
150 |
msgid "Thank you for installing plugins by BestWebSoft!"
|
151 |
msgstr "Terima kasih untuk menginstal plugin dengan BestWebSoft!"
|
152 |
|
153 |
+
#: bws_functions.php:234
|
154 |
msgid "More Details"
|
155 |
msgstr "Keterangan lebih lanjut"
|
156 |
|
157 |
+
#: bws_functions.php:235
|
158 |
msgid "Less Details"
|
159 |
msgstr "Kurang Detail"
|
160 |
|
161 |
+
#: bws_functions.php:263
|
162 |
msgid "Deprecated function(-s) is used on the site here:"
|
163 |
msgstr "Fungsi usang (-s) digunakan di situs di sini:"
|
164 |
|
165 |
+
#: bws_functions.php:277
|
166 |
msgid ""
|
167 |
"This function(-s) will be removed over time. Please update the product(-s)."
|
168 |
msgstr ""
|
169 |
"Fungsi ini (-s) akan dihapus dari waktu ke waktu. Perbarui produk (-s)."
|
170 |
|
171 |
+
#: bws_functions.php:336
|
172 |
msgid "It’s time to upgrade your"
|
173 |
msgstr "Saatnya untuk meng-upgrade Anda"
|
174 |
|
175 |
+
#: bws_functions.php:336
|
176 |
msgid "to"
|
177 |
msgstr "untuk"
|
178 |
|
179 |
+
#: bws_functions.php:336
|
180 |
msgid "version!"
|
181 |
msgstr "versi!"
|
182 |
|
183 |
+
#: bws_functions.php:337
|
184 |
msgid "Extend standard plugin functionality with new great options."
|
185 |
msgstr "Memperluas fungsi Plugin standar dengan pilihan besar baru."
|
186 |
|
187 |
+
#: bws_functions.php:383
|
188 |
#, php-format
|
189 |
msgid ""
|
190 |
"Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
|
193 |
"Kunci lisensi untuk %s berakhir pada %s dan Anda tidak akan diberikan TOP-"
|
194 |
"PRIORITAS DUKUNGAN atau PEMBARUAN."
|
195 |
|
196 |
+
#: bws_functions.php:476
|
197 |
#, php-format
|
198 |
msgid "Thank you for choosing %s plugin!"
|
199 |
msgstr ""
|
200 |
|
201 |
+
#: bws_functions.php:477
|
202 |
msgid ""
|
203 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
204 |
"we'd love to hear about it!"
|
206 |
"Jika Anda memiliki fitur, saran atau ide yang ingin Anda lihat di plugin, "
|
207 |
"kami akan senang mendengar tentang hal itu!"
|
208 |
|
209 |
+
#: bws_functions.php:478
|
210 |
msgid "Suggest a Feature"
|
211 |
msgstr "Sarankan Fitur sebuah"
|
212 |
|
213 |
+
#: bws_functions.php:494 class-bws-settings.php:538 class-bws-settings.php:541
|
214 |
+
#: class-bws-settings.php:593 class-bws-settings.php:596
|
215 |
msgid "Notice"
|
216 |
msgstr "Melihat"
|
217 |
|
218 |
+
#: bws_functions.php:494
|
219 |
msgid "The plugin's settings have been changed."
|
220 |
msgstr "pengaturan plugin ini telah berubah."
|
221 |
|
222 |
+
#: bws_functions.php:495 class-bws-settings.php:183 class-bws-settings.php:203
|
223 |
#: deprecated.php:640
|
224 |
msgid "Save Changes"
|
225 |
msgstr "Simpan perubahan"
|
226 |
|
227 |
+
#: bws_functions.php:509
|
228 |
msgid ""
|
229 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
230 |
"the \"Misc\" tab."
|
232 |
"Anda selalu dapat melihat pilihan premium dengan memeriksa \\ \"Pro Options "
|
233 |
"\" di \\ tab \"Misc \"."
|
234 |
|
235 |
+
#: bws_functions.php:647
|
236 |
msgid "Add BWS Shortcode"
|
237 |
msgstr ""
|
238 |
|
239 |
+
#: bws_functions.php:648
|
240 |
msgid "Add BWS Plugins Shortcode"
|
241 |
msgstr "Tambahkan BWS Plugin pendek"
|
242 |
|
243 |
+
#: bws_functions.php:667
|
244 |
msgid "Add shortcode"
|
245 |
msgstr "Tambahkan shortcode"
|
246 |
|
247 |
+
#: bws_functions.php:667
|
248 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
249 |
msgstr "Tambahkan shortcode BestWebSoft plugin 'menggunakan tombol ini."
|
250 |
|
251 |
+
#: bws_functions.php:723
|
252 |
msgid "Close"
|
253 |
msgstr "Dekat"
|
254 |
|
255 |
+
#: bws_functions.php:815
|
256 |
msgid "Are you sure you want to restore default settings?"
|
257 |
msgstr "Apakah Anda yakin ingin mengembalikan pengaturan default?"
|
258 |
|
259 |
+
#: bws_functions.php:818
|
260 |
msgid "Yes, restore all settings"
|
261 |
msgstr "Ya, mengembalikan semua pengaturan"
|
262 |
|
263 |
+
#: bws_functions.php:819
|
264 |
msgid "No, go back to the settings page"
|
265 |
msgstr "Tidak, kembali ke halaman pengaturan"
|
266 |
|
267 |
+
#: bws_functions.php:861
|
268 |
msgid "Plugin"
|
269 |
msgstr "Plugin"
|
270 |
|
271 |
+
#: bws_functions.php:870
|
272 |
msgid "Shortcode settings"
|
273 |
msgstr "pengaturan shortcode"
|
274 |
|
275 |
+
#: bws_functions.php:875
|
276 |
msgid "The shortcode will be inserted"
|
277 |
msgstr "shortcode akan dimasukkan"
|
278 |
|
279 |
+
#: bws_functions.php:916
|
|
|
|
|
|
|
|
|
280 |
msgid "FAQ"
|
281 |
msgstr "FAQ"
|
282 |
|
283 |
+
#: bws_functions.php:922
|
284 |
msgid "For more information:"
|
285 |
msgstr "Untuk informasi lebih lanjut:"
|
286 |
|
287 |
+
#: bws_functions.php:923
|
288 |
msgid "Documentation"
|
289 |
msgstr "Dokumentasi"
|
290 |
|
291 |
+
#: bws_functions.php:924
|
292 |
msgid "Video Instructions"
|
293 |
msgstr "Petunjuk Video"
|
294 |
|
295 |
+
#: bws_functions.php:925
|
296 |
msgid "Submit a Request"
|
297 |
msgstr "Mengajukan permohonan"
|
298 |
|
299 |
+
#: bws_menu.php:101 class-bws-settings.php:790 deprecated.php:322
|
300 |
msgid "Wrong license key"
|
301 |
msgstr "kunci lisensi yang salah"
|
302 |
|
303 |
+
#: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
|
304 |
+
#: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
|
305 |
#: deprecated.php:352
|
306 |
msgid ""
|
307 |
"Something went wrong. Please try again later. If the error appears again, "
|
310 |
"Ada yang salah. Silakan coba lagi nanti. Jika kesalahan muncul lagi, "
|
311 |
"silahkan hubungi kami"
|
312 |
|
313 |
+
#: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
|
314 |
+
#: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
|
315 |
#: deprecated.php:352
|
316 |
msgid "We are sorry for inconvenience."
|
317 |
msgstr "Kami mohon maaf atas ketidaknyamanan."
|
318 |
|
319 |
+
#: bws_menu.php:128 class-bws-settings.php:822 class-bws-settings.php:925
|
320 |
#: deprecated.php:139 deprecated.php:358
|
321 |
msgid "Wrong license key."
|
322 |
msgstr "kunci lisensi yang salah."
|
337 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
338 |
msgstr "Sayangnya, Anda telah melebihi jumlah mencoba tersedia per hari."
|
339 |
|
340 |
+
#: bws_menu.php:134 class-bws-settings.php:931 deprecated.php:364
|
341 |
#, php-format
|
342 |
msgid ""
|
343 |
"Unfortunately, Your license has expired. To continue getting top-priority "
|
346 |
"Sayangnya, lisensi Anda telah kedaluwarsa. Untuk terus mendapatkan dukungan "
|
347 |
"top-prioritas dan Plugin update, Anda harus memperpanjang di Anda %s"
|
348 |
|
349 |
+
#: bws_menu.php:136 class-bws-settings.php:933 deprecated.php:366
|
350 |
msgid ""
|
351 |
"Unfortunately, the Pro licence was already installed to this domain. The Pro "
|
352 |
"Trial license can be installed only once."
|
354 |
"Sayangnya, lisensi Pro sudah dipasang untuk domain ini. Lisensi Percobaan "
|
355 |
"Pro dapat diinstal hanya sekali."
|
356 |
|
357 |
+
#: bws_menu.php:142 class-bws-settings.php:837 deprecated.php:153
|
358 |
msgid "The license key is valid."
|
359 |
msgstr "Kunci lisensi berlaku."
|
360 |
|
361 |
+
#: bws_menu.php:144 class-bws-settings.php:840 deprecated.php:156
|
362 |
msgid "Your license will expire on"
|
363 |
msgstr "lisensi Anda akan berakhir pada"
|
364 |
|
366 |
msgid "Congratulations! Pro Membership license is activated successfully."
|
367 |
msgstr "Selamat! lisensi Keanggotaan Pro berhasil diaktifkan."
|
368 |
|
369 |
+
#: bws_menu.php:153 class-bws-settings.php:1005 deprecated.php:435
|
370 |
msgid ""
|
371 |
"Something went wrong. Try again later or upload the plugin manually. We are "
|
372 |
"sorry for inconvenience."
|
540 |
msgid "Themes"
|
541 |
msgstr "tema"
|
542 |
|
543 |
+
#: bws_menu.php:309 bws_menu.php:313 bws_menu.php:641
|
544 |
msgid "System status"
|
545 |
msgstr "Status sistem"
|
546 |
|
561 |
msgid "Subscribe to Pro Membership"
|
562 |
msgstr "Berlangganan Pro Keanggotaan"
|
563 |
|
564 |
+
#: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:758
|
565 |
#: deprecated.php:227
|
566 |
msgid "Check license key"
|
567 |
msgstr "Periksa kunci lisensi"
|
571 |
msgstr "Masukkan kunci lisensi Anda"
|
572 |
|
573 |
#: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
|
574 |
+
#: class-bws-settings.php:737 deprecated.php:259 deprecated.php:267
|
575 |
#: deprecated.php:629 deprecated.php:700 deprecated.php:709
|
576 |
msgid "Activate"
|
577 |
msgstr "Mengaktifkan"
|
614 |
msgstr "Men-download menginstal paket dari"
|
615 |
|
616 |
#: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
|
617 |
+
#: class-bws-settings.php:957 class-bws-settings.php:979
|
618 |
+
#: class-bws-settings.php:1001 deprecated.php:387 deprecated.php:409
|
619 |
#: deprecated.php:431
|
620 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
621 |
msgstr "Gagal mengunduh arsip zip. Silakan, upload plugin secara manual"
|
628 |
msgid "Installing the plugin"
|
629 |
msgstr "Instalasi plugin"
|
630 |
|
631 |
+
#: bws_menu.php:417 class-bws-settings.php:969 deprecated.php:399
|
632 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
633 |
msgstr "Gagal membuka arsip zip. Silakan, upload plugin secara manual"
|
634 |
|
635 |
+
#: bws_menu.php:424 class-bws-settings.php:975 deprecated.php:405
|
636 |
msgid ""
|
637 |
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
638 |
"plugin manually"
|
645 |
msgid "The plugin %s is successfully installed."
|
646 |
msgstr "Plugin %s berhasil diinstal."
|
647 |
|
648 |
+
#: bws_menu.php:434 class-bws-settings.php:982 deprecated.php:412
|
649 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
650 |
msgstr "UploadDir tidak dapat ditulis. Silakan, upload plugin secara manual"
|
651 |
|
661 |
msgid "All"
|
662 |
msgstr "Semua"
|
663 |
|
664 |
+
#: bws_menu.php:450 bws_menu.php:630
|
665 |
msgid "Installed"
|
666 |
msgstr "dipasang"
|
667 |
|
694 |
msgid "Install Now"
|
695 |
msgstr "Pasang sekarang"
|
696 |
|
697 |
+
#: bws_menu.php:549 class-bws-settings.php:157 class-bws-settings.php:1065
|
698 |
msgid "Upgrade to Pro"
|
699 |
msgstr "Upgrade ke yang lebih baik"
|
700 |
|
710 |
msgid "Nothing found. Try another criteria."
|
711 |
msgstr "Tidak ada yang ditemukan. Coba kriteria lain."
|
712 |
|
713 |
+
#: bws_menu.php:621
|
714 |
#, php-format
|
715 |
msgid "By %s"
|
716 |
msgstr "Oleh %s"
|
717 |
|
718 |
+
#: bws_menu.php:628
|
719 |
msgid "Already Installed"
|
720 |
msgstr "sudah Dipasang"
|
721 |
|
722 |
+
#: bws_menu.php:638
|
723 |
msgid "Browse Free WordPress Themes"
|
724 |
msgstr "Isi Gratis WordPress Themes"
|
725 |
|
726 |
+
#: bws_menu.php:647
|
727 |
msgid "Send to support"
|
728 |
msgstr "Kirim untuk mendukung"
|
729 |
|
730 |
+
#: bws_menu.php:654
|
731 |
msgid "Send to custom email »"
|
732 |
msgstr "Kirim ke email khusus & # 187;"
|
733 |
|
734 |
+
#: class-bws-settings.php:136
|
735 |
msgid "Information"
|
736 |
msgstr "Informasi"
|
737 |
|
738 |
+
#: class-bws-settings.php:144
|
739 |
msgid "Inactive"
|
740 |
msgstr "non-aktif"
|
741 |
|
742 |
+
#: class-bws-settings.php:152
|
743 |
msgid "Expired"
|
744 |
msgstr "kedaluwarsa"
|
745 |
|
746 |
+
#: class-bws-settings.php:155
|
747 |
#, php-format
|
748 |
msgid "%s day(-s) left"
|
749 |
msgstr "%s hari (-s) kiri"
|
750 |
|
751 |
+
#: class-bws-settings.php:161
|
752 |
#, php-format
|
753 |
msgid "Expired on %s"
|
754 |
msgstr "Berakhir pada %s"
|
755 |
|
756 |
+
#: class-bws-settings.php:161
|
757 |
msgid "Renew Now"
|
758 |
msgstr "Perbarui sekarang"
|
759 |
|
760 |
+
#: class-bws-settings.php:163
|
761 |
msgid "Active"
|
762 |
msgstr "Aktif"
|
763 |
|
764 |
+
#: class-bws-settings.php:168
|
765 |
msgid "License"
|
766 |
msgstr "Lisensi"
|
767 |
|
768 |
+
#: class-bws-settings.php:171
|
769 |
msgid "Status"
|
770 |
msgstr "Status"
|
771 |
|
772 |
+
#: class-bws-settings.php:175
|
773 |
msgid "Version"
|
774 |
msgstr "Versi"
|
775 |
|
776 |
+
#: class-bws-settings.php:285
|
777 |
msgid "All plugin settings were restored."
|
778 |
msgstr "Semua pengaturan Plugin dipulihkan."
|
779 |
|
780 |
+
#: class-bws-settings.php:423
|
781 |
msgid "Custom Code"
|
782 |
msgstr "Kode kustom"
|
783 |
|
784 |
+
#: class-bws-settings.php:427 deprecated.php:497
|
785 |
msgid "You do not have sufficient permissions to edit plugins for this site."
|
786 |
msgstr ""
|
787 |
"Anda tidak memiliki cukup izin untuk menyunting plugin untuk situs ini."
|
788 |
|
789 |
+
#: class-bws-settings.php:432 deprecated.php:618
|
790 |
msgid "These styles will be added to the header on all pages of your site."
|
791 |
msgstr "Gaya ini akan ditambahkan ke header pada semua halaman situs Anda."
|
792 |
|
793 |
+
#: class-bws-settings.php:435 deprecated.php:620
|
794 |
#, php-format
|
795 |
msgid ""
|
796 |
"This PHP code will be hooked to the %s action and will be printed on front "
|
799 |
"Kode PHP ini akan ketagihan untuk %s tindakan dan akan dicetak pada ujung "
|
800 |
"depan saja."
|
801 |
|
802 |
+
#: class-bws-settings.php:438
|
803 |
msgid "These code will be added to the header on all pages of your site."
|
804 |
msgstr "Kode ini akan ditambahkan ke header pada semua halaman situs Anda."
|
805 |
|
806 |
+
#: class-bws-settings.php:446 deprecated.php:644
|
807 |
#, php-format
|
808 |
msgid ""
|
809 |
"You need to make this files writable before you can save your changes. See "
|
812 |
"Anda perlu membuat file ini ditulis sebelum Anda dapat menyimpan perubahan. "
|
813 |
"Lihat %s Codex %s untuk informasi lebih lanjut."
|
814 |
|
815 |
+
#: class-bws-settings.php:456 deprecated.php:626
|
816 |
msgid "Browsing"
|
817 |
msgstr "Browsing"
|
818 |
|
819 |
+
#: class-bws-settings.php:461
|
820 |
#, php-format
|
821 |
msgid "Activate custom %s code."
|
822 |
msgstr "Aktifkan kustom %s kode."
|
823 |
|
824 |
+
#: class-bws-settings.php:469 deprecated.php:633
|
825 |
#, php-format
|
826 |
msgid "Learn more about %s"
|
827 |
msgstr "Pelajari lebih lanjut tentang %s"
|
828 |
|
829 |
+
#: class-bws-settings.php:529
|
830 |
msgid "Miscellaneous Settings"
|
831 |
msgstr "Pengaturan Miscellaneous"
|
832 |
|
833 |
+
#: class-bws-settings.php:538 class-bws-settings.php:593
|
834 |
#, php-format
|
835 |
msgid ""
|
836 |
"It is prohibited to change %s settings on this site in the %s network "
|
838 |
msgstr ""
|
839 |
"Dilarang mengubah %s pengaturan di situs ini di %s pengaturan jaringan."
|
840 |
|
841 |
+
#: class-bws-settings.php:541 class-bws-settings.php:596
|
842 |
#, php-format
|
843 |
msgid ""
|
844 |
"It is prohibited to view %s settings on this site in the %s network settings."
|
845 |
msgstr "Dilarang melihat %s pengaturan di situs ini di %s pengaturan jaringan."
|
846 |
|
847 |
+
#: class-bws-settings.php:550
|
848 |
msgid "Pro Options"
|
849 |
msgstr "Pro Pilihan"
|
850 |
|
851 |
+
#: class-bws-settings.php:554
|
852 |
msgid "Enable to display plugin Pro options."
|
853 |
msgstr "Memungkinkan untuk menampilkan opsi Pro Plugin."
|
854 |
|
855 |
+
#: class-bws-settings.php:560
|
856 |
msgid "Track Usage"
|
857 |
msgstr "track Penggunaan"
|
858 |
|
859 |
+
#: class-bws-settings.php:564
|
860 |
msgid ""
|
861 |
"Enable to allow tracking plugin usage anonymously in order to make it better."
|
862 |
msgstr ""
|
863 |
"Aktifkan untuk memungkinkan pelacakan penggunaan Plugin anonim untuk "
|
864 |
"membuatnya lebih baik."
|
865 |
|
866 |
+
#: class-bws-settings.php:569
|
867 |
msgid "Default Settings"
|
868 |
msgstr "Pengaturan default"
|
869 |
|
870 |
+
#: class-bws-settings.php:571
|
871 |
msgid "Restore Settings"
|
872 |
msgstr "Kembalikan Pengaturan"
|
873 |
|
874 |
+
#: class-bws-settings.php:572
|
875 |
msgid "This will restore plugin settings to defaults."
|
876 |
msgstr "Ini akan mengembalikan pengaturan plugin untuk default."
|
877 |
|
878 |
+
#: class-bws-settings.php:584
|
879 |
msgid "Import / Export"
|
880 |
msgstr "Ekspor Impor"
|
881 |
|
882 |
+
#: class-bws-settings.php:700 class-bws-settings.php:733
|
883 |
+
#: class-bws-settings.php:755
|
884 |
msgid "License Key"
|
885 |
msgstr "Kunci lisensi"
|
886 |
|
887 |
+
#: class-bws-settings.php:723
|
888 |
msgid "Congratulations! Pro license is activated successfully."
|
889 |
msgstr "Selamat! lisensi Pro berhasil diaktifkan."
|
890 |
|
891 |
+
#: class-bws-settings.php:724
|
892 |
#, php-format
|
893 |
msgid "You will be automatically redirected to the %s in %s seconds."
|
894 |
msgstr ""
|
895 |
|
896 |
+
#: class-bws-settings.php:724
|
897 |
msgid "Settings page"
|
898 |
msgstr "halaman pengaturan"
|
899 |
|
900 |
+
#: class-bws-settings.php:739
|
901 |
#, php-format
|
902 |
msgid "Enter your license key to activate %s and get premium plugin features."
|
903 |
msgstr ""
|
904 |
"Masukkan kunci lisensi Anda untuk mengaktifkan %s dan mendapatkan fitur "
|
905 |
"Plugin premium."
|
906 |
|
907 |
+
#: class-bws-settings.php:742 class-bws-settings.php:929 deprecated.php:362
|
908 |
#: deprecated.php:703
|
909 |
msgid ""
|
910 |
"Unfortunately, you have exceeded the number of available tries per day. "
|
913 |
"Sayangnya, Anda telah melebihi jumlah mencoba tersedia per hari. Silakan, "
|
914 |
"upload plugin secara manual."
|
915 |
|
916 |
+
#: class-bws-settings.php:745 deprecated.php:694
|
917 |
#, php-format
|
918 |
msgid "Start Your Free %s-Day Trial Now"
|
919 |
msgstr "Mulai Anda gratis %s -Day Percobaan Sekarang"
|
920 |
|
921 |
+
#: class-bws-settings.php:760
|
922 |
msgid ""
|
923 |
"If necessary, you can check if the license key is correct or reenter it in "
|
924 |
"the field below."
|
926 |
"Jika perlu, Anda dapat memeriksa apakah kunci lisensi benar atau masuk "
|
927 |
"kembali ke dalam bidang di bawah."
|
928 |
|
929 |
+
#: class-bws-settings.php:765
|
930 |
msgid "Manage License Settings"
|
931 |
msgstr "Kelola Setelan License"
|
932 |
|
933 |
+
#: class-bws-settings.php:767
|
934 |
msgid "Login to Client Area"
|
935 |
msgstr "Login ke Area Klien"
|
936 |
|
937 |
+
#: class-bws-settings.php:769
|
938 |
msgid ""
|
939 |
"Manage active licenses, download BWS products, and view your payment history "
|
940 |
"using BestWebSoft Client Area."
|
942 |
"Mengelola lisensi aktif, men-download produk BWS, dan melihat riwayat "
|
943 |
"pembayaran Anda menggunakan BestWebSoft Client Area."
|
944 |
|
945 |
+
#: class-bws-settings.php:824 class-bws-settings.php:927 deprecated.php:141
|
946 |
#: deprecated.php:360
|
947 |
msgid "This license key is bound to another site."
|
948 |
msgstr "kunci lisensi ini terikat ke situs lain."
|
949 |
|
950 |
+
#: class-bws-settings.php:826 deprecated.php:143
|
951 |
msgid ""
|
952 |
"This license key is valid, but Your license has expired. If you want to "
|
953 |
"update our plugin in future, you should extend the license."
|
956 |
"ingin memperbarui plugin kami di masa depan, Anda harus memperpanjang "
|
957 |
"lisensi."
|
958 |
|
959 |
+
#: class-bws-settings.php:828 deprecated.php:145
|
960 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
961 |
msgstr "Sayangnya, Anda telah melebihi jumlah mencoba tersedia."
|
962 |
|
963 |
+
#: class-bws-settings.php:830 deprecated.php:147
|
964 |
msgid ""
|
965 |
"Unfortunately, the Pro Trial licence was already installed to this domain. "
|
966 |
"The Pro Trial license can be installed only once."
|
968 |
"Sayangnya, lisensi Percobaan Pro sudah dipasang untuk domain ini. Lisensi "
|
969 |
"Percobaan Pro dapat diinstal hanya sekali."
|
970 |
|
971 |
+
#: class-bws-settings.php:835 deprecated.php:151
|
972 |
msgid "The Pro Trial license key is valid."
|
973 |
msgstr "Kunci lisensi Percobaan Pro berlaku."
|
974 |
|
975 |
+
#: class-bws-settings.php:843 deprecated.php:159 deprecated.php:246
|
976 |
#, php-format
|
977 |
msgid ""
|
978 |
"In order to continue using the plugin it is necessary to buy a %s license."
|
979 |
msgstr ""
|
980 |
"Dalam rangka untuk terus menggunakan plugin perlu untuk membeli %s lisensi."
|
981 |
|
982 |
+
#: class-bws-settings.php:1040 deprecated.php:463
|
983 |
msgid "Please, enter Your license key"
|
984 |
msgstr "Silakan, masukkan kunci lisensi Anda"
|
985 |
|
986 |
+
#: class-bws-settings.php:1052
|
987 |
msgid "Need Help?"
|
988 |
msgstr "Butuh bantuan?"
|
989 |
|
990 |
+
#: class-bws-settings.php:1054
|
991 |
msgid "Read the Instruction"
|
992 |
msgstr "Baca Instruksi"
|
993 |
|
994 |
+
#: class-bws-settings.php:1058
|
995 |
msgid "Watch the Video"
|
996 |
msgstr "Saksikan Video"
|
997 |
|
998 |
+
#: class-bws-settings.php:1069
|
999 |
msgid "Start Your Free Trial"
|
1000 |
msgstr "Mulai Uji Coba Gratis"
|
1001 |
|
1002 |
+
#: deactivation-form.php:26
|
1003 |
+
msgid "Need help? We are ready to answer your questions."
|
1004 |
+
msgstr ""
|
1005 |
+
|
1006 |
+
#: deactivation-form.php:26
|
1007 |
+
msgid "Contact Support"
|
1008 |
+
msgstr ""
|
1009 |
+
|
1010 |
+
#: deactivation-form.php:31
|
1011 |
+
msgid "The plugin is not working"
|
1012 |
+
msgstr ""
|
1013 |
+
|
1014 |
+
#: deactivation-form.php:33
|
1015 |
+
msgid "Kindly share what didn't work so we can fix it in future updates..."
|
1016 |
+
msgstr ""
|
1017 |
+
|
1018 |
+
#: deactivation-form.php:37
|
1019 |
+
msgid "The plugin didn't work as expected"
|
1020 |
+
msgstr ""
|
1021 |
+
|
1022 |
+
#: deactivation-form.php:39
|
1023 |
+
msgid "What did you expect?"
|
1024 |
+
msgstr ""
|
1025 |
+
|
1026 |
+
#: deactivation-form.php:43
|
1027 |
+
msgid "The plugin suddenly stopped working"
|
1028 |
+
msgstr ""
|
1029 |
+
|
1030 |
+
#: deactivation-form.php:50
|
1031 |
+
msgid "The plugin broke my site"
|
1032 |
+
msgstr ""
|
1033 |
+
|
1034 |
+
#: deactivation-form.php:57
|
1035 |
+
msgid "I couldn't understand how to get it work"
|
1036 |
+
msgstr ""
|
1037 |
+
|
1038 |
+
#: deactivation-form.php:64
|
1039 |
+
msgid "I found a better plugin"
|
1040 |
+
msgstr ""
|
1041 |
+
|
1042 |
+
#: deactivation-form.php:66
|
1043 |
+
msgid "What's the plugin name?"
|
1044 |
+
msgstr ""
|
1045 |
+
|
1046 |
+
#: deactivation-form.php:70
|
1047 |
+
msgid "The plugin is great, but I need specific feature that you don't support"
|
1048 |
+
msgstr ""
|
1049 |
+
|
1050 |
+
#: deactivation-form.php:72
|
1051 |
+
msgid "What feature?"
|
1052 |
+
msgstr ""
|
1053 |
+
|
1054 |
+
#: deactivation-form.php:76
|
1055 |
+
msgid "I no longer need the plugin"
|
1056 |
+
msgstr ""
|
1057 |
+
|
1058 |
+
#: deactivation-form.php:82
|
1059 |
+
msgid "It's a temporary deactivation, I'm just debugging an issue"
|
1060 |
+
msgstr ""
|
1061 |
+
|
1062 |
+
#: deactivation-form.php:88
|
1063 |
+
msgid "Other"
|
1064 |
+
msgstr "Lain"
|
1065 |
+
|
1066 |
+
#: deactivation-form.php:122
|
1067 |
+
msgid "Quick Feedback"
|
1068 |
+
msgstr ""
|
1069 |
+
|
1070 |
+
#: deactivation-form.php:123
|
1071 |
+
msgid "If you have a moment, please let us know why you are deactivating"
|
1072 |
+
msgstr ""
|
1073 |
+
|
1074 |
+
#: deactivation-form.php:128
|
1075 |
+
msgid "Anonymous feedback"
|
1076 |
+
msgstr ""
|
1077 |
+
|
1078 |
+
#: deactivation-form.php:130
|
1079 |
+
msgid "Cancel"
|
1080 |
+
msgstr ""
|
1081 |
+
|
1082 |
+
#: deactivation-form.php:230
|
1083 |
+
msgid "Processing"
|
1084 |
+
msgstr ""
|
1085 |
+
|
1086 |
+
#: deactivation-form.php:259
|
1087 |
+
msgid "Submit & Deactivate"
|
1088 |
+
msgstr ""
|
1089 |
+
|
1090 |
+
#: deactivation-form.php:276
|
1091 |
+
msgid "Please tell us the reason so we can improve it."
|
1092 |
+
msgstr ""
|
1093 |
+
|
1094 |
+
#: deactivation-form.php:344
|
1095 |
+
msgid "Deactivate"
|
1096 |
+
msgstr ""
|
1097 |
+
|
1098 |
#: deprecated.php:93
|
1099 |
msgid "System Status"
|
1100 |
msgstr "Status sistem"
|
1234 |
msgid "SMM"
|
1235 |
msgstr ""
|
1236 |
|
1237 |
+
#: product_list.php:23
|
1238 |
msgid ""
|
1239 |
"Protect WordPress website forms from spam entries by means of math logic."
|
1240 |
msgstr ""
|
1241 |
|
1242 |
+
#: product_list.php:35
|
1243 |
msgid "Create your personal car rental/booking and reservation website."
|
1244 |
msgstr ""
|
1245 |
|
1246 |
+
#: product_list.php:45
|
1247 |
msgid ""
|
1248 |
"Allow customers to reach you using secure contact form plugin any website "
|
1249 |
"must have."
|
1250 |
msgstr ""
|
1251 |
|
1252 |
+
#: product_list.php:55
|
1253 |
msgid "Add unlimited number of contact forms to WordPress website."
|
1254 |
msgstr ""
|
1255 |
|
1256 |
+
#: product_list.php:65
|
1257 |
msgid "Save and manage Contact Form messages. Never lose important data."
|
1258 |
msgstr ""
|
1259 |
|
1260 |
+
#: product_list.php:75
|
1261 |
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1262 |
msgstr ""
|
1263 |
|
1264 |
+
#: product_list.php:82
|
1265 |
msgid "Add custom fields to WordPress website search results."
|
1266 |
msgstr ""
|
1267 |
|
1268 |
+
#: product_list.php:89
|
1269 |
msgid ""
|
1270 |
"Add custom post types and taxonomies to WordPress website search results."
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: product_list.php:99
|
1274 |
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: product_list.php:106
|
|
|
|
|
|
|
|
|
|
|
|
|
1278 |
msgid ""
|
1279 |
"Get latest error log messages to diagnose website problems. Define and fix "
|
1280 |
"issues faster."
|
1281 |
msgstr ""
|
1282 |
|
1283 |
+
#: product_list.php:113
|
1284 |
msgid ""
|
1285 |
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1286 |
"widgets."
|
1287 |
msgstr ""
|
1288 |
|
1289 |
+
#: product_list.php:123
|
1290 |
msgid ""
|
1291 |
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1292 |
"clicks."
|
1293 |
msgstr ""
|
1294 |
|
1295 |
+
#: product_list.php:133
|
|
|
|
|
|
|
|
|
|
|
|
|
1296 |
msgid ""
|
1297 |
"Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
|
1298 |
"posts, pages and widgets."
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: product_list.php:143
|
1302 |
msgid ""
|
1303 |
"Stronger security solution which protects your WordPress website from hacks "
|
1304 |
"and unauthorized login attempts."
|
1305 |
msgstr ""
|
1306 |
|
1307 |
+
#: product_list.php:153
|
1308 |
msgid ""
|
1309 |
"Add Adsense ads to WordPress website pages, posts, custom posts, search "
|
1310 |
"results, categories, tags, and widgets."
|
1311 |
msgstr ""
|
1312 |
|
1313 |
+
#: product_list.php:163
|
1314 |
msgid "Add Google Analytics code to WordPress website and track basic stats."
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: product_list.php:173
|
1318 |
msgid ""
|
1319 |
"Protect WordPress website forms from spam entries with Google Captcha "
|
1320 |
"(reCaptcha)."
|
1321 |
msgstr ""
|
1322 |
|
1323 |
+
#: product_list.php:183
|
1324 |
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: product_list.php:193
|
1328 |
msgid ""
|
1329 |
"Generate and add XML sitemap to WordPress website. Help search engines index "
|
1330 |
"your blog."
|
1331 |
msgstr ""
|
1332 |
|
1333 |
+
#: product_list.php:203
|
1334 |
msgid ""
|
1335 |
"Replace external WordPress website links with Google shortlinks and track "
|
1336 |
"click stats."
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: product_list.php:210
|
1340 |
msgid ""
|
1341 |
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1342 |
"hostnames, etc."
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: product_list.php:220
|
1346 |
msgid ""
|
1347 |
"Create your personal job board and listing WordPress website. Search jobs, "
|
1348 |
"submit CV/resumes, choose candidates."
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: product_list.php:227
|
1352 |
msgid ""
|
1353 |
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1354 |
"attempts."
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: product_list.php:237
|
1358 |
msgid ""
|
1359 |
"Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
|
1360 |
"5 plugins included – profile, insider, etc."
|
1361 |
msgstr ""
|
1362 |
|
1363 |
+
#: product_list.php:247
|
1364 |
msgid ""
|
1365 |
"Translate WordPress website content to other languages manually. Create "
|
1366 |
"multilingual pages, posts, widgets, menus, etc."
|
1367 |
msgstr ""
|
1368 |
|
1369 |
+
#: product_list.php:257
|
1370 |
msgid ""
|
1371 |
"Add customizable pagination to WordPress website. Split long content to "
|
1372 |
"multiple pages for better navigation."
|
1373 |
msgstr ""
|
1374 |
|
1375 |
+
#: product_list.php:267
|
1376 |
msgid ""
|
1377 |
"Generate PDF files and print WordPress posts/pages. Customize document "
|
1378 |
"header/footer styles and appearance."
|
1379 |
msgstr ""
|
1380 |
|
1381 |
+
#: product_list.php:277
|
1382 |
msgid ""
|
1383 |
"Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
|
1384 |
"Profile) to WordPress posts, pages and widgets."
|
1385 |
msgstr ""
|
1386 |
|
1387 |
+
#: product_list.php:287
|
1388 |
msgid ""
|
1389 |
"Create your personal portfolio WordPress website. Manage and showcase past "
|
1390 |
"projects to get more clients."
|
1391 |
msgstr ""
|
1392 |
|
1393 |
+
#: product_list.php:297
|
1394 |
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: product_list.php:304
|
1398 |
msgid ""
|
1399 |
"Add extra fields to default WordPress user profile. The easiest way to "
|
1400 |
"create and manage additional custom values."
|
1401 |
msgstr ""
|
1402 |
|
1403 |
+
#: product_list.php:311
|
1404 |
msgid ""
|
1405 |
"Add and display HTML advertisement banner on WordPress website. Customize "
|
1406 |
"bar styles and appearance."
|
1407 |
msgstr ""
|
1408 |
|
1409 |
+
#: product_list.php:321
|
1410 |
msgid ""
|
1411 |
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1412 |
"widgets."
|
1413 |
msgstr ""
|
1414 |
|
1415 |
+
#: product_list.php:328
|
1416 |
msgid ""
|
1417 |
"Add rating plugin to your WordPress website to receive feedback from your "
|
1418 |
"customers."
|
1419 |
msgstr ""
|
1420 |
|
1421 |
+
#: product_list.php:335
|
1422 |
msgid ""
|
1423 |
"Create your personal real estate WordPress website. Sell, rent and buy "
|
1424 |
"properties. Add, search and browse listings easily."
|
1425 |
msgstr ""
|
1426 |
|
1427 |
+
#: product_list.php:345
|
|
|
|
|
|
|
|
|
|
|
|
|
1428 |
msgid ""
|
1429 |
"Add related, featured, latest, and popular posts to your WordPress website. "
|
1430 |
"Connect your blog readers with a relevant content."
|
1431 |
msgstr ""
|
1432 |
|
1433 |
+
#: product_list.php:352
|
1434 |
msgid ""
|
1435 |
"Send bulk email messages to WordPress users. Custom templates, advanced "
|
1436 |
"settings and detailed reports."
|
1437 |
msgstr ""
|
1438 |
|
1439 |
+
#: product_list.php:362
|
1440 |
msgid ""
|
1441 |
"The best responsive slider plugin for your WordPress website. Create "
|
1442 |
"beautifully animated slides just in a few clicks."
|
1443 |
msgstr ""
|
1444 |
|
1445 |
+
#: product_list.php:369
|
1446 |
msgid ""
|
1447 |
"Configure SMTP server to receive email messages from WordPress to Gmail, "
|
1448 |
"Yahoo, Hotmail and other services."
|
1449 |
msgstr ""
|
1450 |
|
1451 |
+
#: product_list.php:376
|
1452 |
msgid ""
|
1453 |
"Add social media buttons and widgets to WordPress posts, pages and widgets. "
|
1454 |
"FB, Twitter, G+1, Pinterest, LinkedIn."
|
1455 |
msgstr ""
|
1456 |
|
1457 |
+
#: product_list.php:386
|
1458 |
msgid ""
|
1459 |
"Add social media login, registration, and commenting to your WordPress "
|
1460 |
"website."
|
1461 |
msgstr ""
|
1462 |
|
1463 |
+
#: product_list.php:393
|
1464 |
msgid ""
|
1465 |
"Add email newsletter sign up form to WordPress posts, pages and widgets. "
|
1466 |
"Collect data and subscribe your users."
|
1467 |
msgstr ""
|
1468 |
|
1469 |
+
#: product_list.php:403
|
1470 |
msgid ""
|
1471 |
"Add testimonials and feedbacks from your customers to WordPress website "
|
1472 |
"posts, pages, and widgets."
|
1473 |
msgstr ""
|
1474 |
|
1475 |
+
#: product_list.php:410
|
1476 |
msgid ""
|
1477 |
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1478 |
"attendance and generate reports."
|
1479 |
msgstr ""
|
1480 |
|
1481 |
+
#: product_list.php:420
|
1482 |
msgid ""
|
1483 |
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1484 |
"and pages."
|
1485 |
msgstr ""
|
1486 |
|
1487 |
+
#: product_list.php:430
|
1488 |
msgid ""
|
1489 |
"Automatically check and update WordPress website core with all installed "
|
1490 |
"plugins and themes to the latest versions."
|
1491 |
msgstr ""
|
1492 |
|
1493 |
+
#: product_list.php:440
|
1494 |
msgid ""
|
1495 |
"Powerful user role management plugin for WordPress website. Create, edit, "
|
1496 |
"copy, and delete user roles."
|
1497 |
msgstr ""
|
1498 |
|
1499 |
+
#: product_list.php:450
|
1500 |
msgid ""
|
1501 |
"Display live count of online visitors who are currently browsing your "
|
1502 |
"WordPress website."
|
1503 |
msgstr ""
|
1504 |
|
1505 |
+
#: product_list.php:460
|
1506 |
msgid ""
|
1507 |
"Backup and export Zendesk Help Center content automatically to your "
|
1508 |
"WordPress website database."
|
1509 |
msgstr ""
|
1510 |
|
1511 |
+
#~ msgid ""
|
1512 |
+
#~ "You can use one license of the Pro plugin for one domain only. Please "
|
1513 |
+
#~ "check and edit your license or domain if necessary using you personal "
|
1514 |
+
#~ "Client Area. We strongly recommend you to solve the problem within 24 "
|
1515 |
+
#~ "hours, otherwise the Pro plugin will be deactivated."
|
1516 |
+
#~ msgstr ""
|
1517 |
+
#~ "Anda dapat menggunakan satu lisensi dari plugin Pro untuk satu domain "
|
1518 |
+
#~ "saja. Silakan periksa dan mengedit lisensi atau domain jika perlu "
|
1519 |
+
#~ "menggunakan Anda pribadi Area Klien. Kami sangat menyarankan Anda untuk "
|
1520 |
+
#~ "memecahkan masalah dalam waktu 24 jam, dinyatakan plugin Pro akan "
|
1521 |
+
#~ "dinonaktifkan."
|
1522 |
+
|
1523 |
+
#~ msgid "Insert"
|
1524 |
+
#~ msgstr "Memasukkan"
|
1525 |
+
|
1526 |
#~ msgid "Advertisement"
|
1527 |
#~ msgstr "Iklan"
|
1528 |
|
1541 |
#~ msgid "Utilities"
|
1542 |
#~ msgstr "keperluan"
|
1543 |
|
|
|
|
|
|
|
1544 |
#~ msgid "Thank you for installing"
|
1545 |
#~ msgstr "Terima kasih untuk menginstal"
|
1546 |
|
bws_menu/languages/bestwebsoft-nl_NL.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-nl_NL.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
|
9 |
"Language: nl_NL\n"
|
@@ -16,11 +16,11 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.8.7.1\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: bws_functions.php:
|
20 |
msgid "requires"
|
21 |
msgstr "benodigd"
|
22 |
|
23 |
-
#: bws_functions.php:
|
24 |
msgid ""
|
25 |
"or higher, that is why it has been deactivated! Please upgrade WordPress and "
|
26 |
"try again."
|
@@ -28,60 +28,55 @@ msgstr ""
|
|
28 |
"of hoger, daarom is deze gedeactiveerd! Upgrade WordPress en probeer het "
|
29 |
"opnieuw."
|
30 |
|
31 |
-
#: bws_functions.php:
|
32 |
msgid "Back to the WordPress"
|
33 |
msgstr "Terug naar WordPress"
|
34 |
|
35 |
-
#: bws_functions.php:
|
36 |
msgid "Plugins page"
|
37 |
msgstr "Plugins pagina"
|
38 |
|
39 |
-
#: bws_functions.php:
|
40 |
msgid "Like the plugin?"
|
41 |
msgstr "Like de plugin?"
|
42 |
|
43 |
-
#: bws_functions.php:
|
44 |
msgid "Rate it"
|
45 |
msgstr "Rate it"
|
46 |
|
47 |
-
#: bws_functions.php:
|
48 |
msgid "Need help?"
|
49 |
msgstr "Hulp nodig?"
|
50 |
|
51 |
-
#: bws_functions.php:
|
52 |
msgid "Visit Help Center"
|
53 |
msgstr "Bezoek het Helpcentrum"
|
54 |
|
55 |
-
#: bws_functions.php:
|
56 |
msgid "Want to support the plugin?"
|
57 |
msgstr "Geef ondersteuning aan de plug-in?"
|
58 |
|
59 |
-
#: bws_functions.php:
|
60 |
msgid "Donate"
|
61 |
msgstr "Doneer"
|
62 |
|
63 |
-
#: bws_functions.php:
|
64 |
msgid "WARNING: Illegal use notification"
|
65 |
msgstr "LET OP!: Onwettige gebruiksmelding"
|
66 |
|
67 |
-
#: bws_functions.php:
|
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
|
71 |
-
"We strongly recommend you to solve the problem within 24 hours,
|
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:
|
80 |
-
#: class-bws-settings.php:143
|
81 |
msgid "Learn More"
|
82 |
msgstr "Leer meer"
|
83 |
|
84 |
-
#: bws_functions.php:
|
85 |
msgid ""
|
86 |
"Notice: Your Pro Trial license has expired. To continue using the plugin, "
|
87 |
"you should buy a Pro license"
|
@@ -89,7 +84,7 @@ 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:
|
93 |
msgid ""
|
94 |
"Your license has expired. To continue getting top-priority support and "
|
95 |
"plugin updates, you should extend it."
|
@@ -97,24 +92,24 @@ 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:
|
101 |
msgid "Learn more"
|
102 |
msgstr "Leer meer"
|
103 |
|
104 |
-
#: bws_functions.php:
|
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:
|
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:
|
114 |
msgid "The Pro Trial license will expire on"
|
115 |
msgstr "De Pro Trial licentie vervalt op"
|
116 |
|
117 |
-
#: bws_functions.php:
|
118 |
msgid ""
|
119 |
"or higher! We do not guarantee that our plugin will work correctly. Please "
|
120 |
"upgrade to WordPress latest version."
|
@@ -122,75 +117,75 @@ 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:
|
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:
|
131 |
msgid "Let's get started"
|
132 |
msgstr "Laten we aan de slag gaan"
|
133 |
|
134 |
-
#: bws_functions.php:
|
135 |
#: bws_menu.php:559
|
136 |
msgid "Settings"
|
137 |
msgstr "Settings"
|
138 |
|
139 |
-
#: bws_functions.php:
|
140 |
-
#: class-bws-settings.php:
|
141 |
msgid "or"
|
142 |
msgstr "of"
|
143 |
|
144 |
-
#: bws_functions.php:
|
145 |
msgid "Add New"
|
146 |
msgstr "Nieuwe toevoegen"
|
147 |
|
148 |
-
#: bws_functions.php:
|
149 |
-
#: bws_functions.php:
|
150 |
msgid "Close notice"
|
151 |
msgstr "Opmerking sluiten"
|
152 |
|
153 |
-
#: bws_functions.php:
|
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:
|
158 |
msgid "More Details"
|
159 |
msgstr "Meer details"
|
160 |
|
161 |
-
#: bws_functions.php:
|
162 |
msgid "Less Details"
|
163 |
msgstr "Minder details"
|
164 |
|
165 |
-
#: bws_functions.php:
|
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:
|
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:
|
177 |
msgid "It’s time to upgrade your"
|
178 |
msgstr "Het is tijd om te upgraden, "
|
179 |
|
180 |
-
#: bws_functions.php:
|
181 |
msgid "to"
|
182 |
msgstr "aan"
|
183 |
|
184 |
-
#: bws_functions.php:
|
185 |
msgid "version!"
|
186 |
msgstr "versie!"
|
187 |
|
188 |
-
#: bws_functions.php:
|
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:
|
194 |
#, php-format
|
195 |
msgid ""
|
196 |
"Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
|
@@ -199,12 +194,12 @@ 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:
|
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:
|
208 |
msgid ""
|
209 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
210 |
"we'd love to hear about it!"
|
@@ -212,25 +207,25 @@ 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:
|
216 |
msgid "Suggest a Feature"
|
217 |
msgstr "Deel een idee"
|
218 |
|
219 |
-
#: bws_functions.php:
|
220 |
-
#: class-bws-settings.php:
|
221 |
msgid "Notice"
|
222 |
msgstr "Opmerking"
|
223 |
|
224 |
-
#: bws_functions.php:
|
225 |
msgid "The plugin's settings have been changed."
|
226 |
msgstr "De instellingen van de plugin zijn gewijzigd."
|
227 |
|
228 |
-
#: bws_functions.php:
|
229 |
#: deprecated.php:640
|
230 |
msgid "Save Changes"
|
231 |
msgstr "Bewerkingen opslaan"
|
232 |
|
233 |
-
#: bws_functions.php:
|
234 |
msgid ""
|
235 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
236 |
"the \"Misc\" tab."
|
@@ -238,80 +233,76 @@ msgstr ""
|
|
238 |
"U kunt altijd premium opties bekijken door de \"Pro Options\" in het tabblad "
|
239 |
"\"Misc\" te controleren."
|
240 |
|
241 |
-
#: bws_functions.php:
|
242 |
msgid "Add BWS Shortcode"
|
243 |
msgstr ""
|
244 |
|
245 |
-
#: bws_functions.php:
|
246 |
msgid "Add BWS Plugins Shortcode"
|
247 |
msgstr ""
|
248 |
|
249 |
-
#: bws_functions.php:
|
250 |
msgid "Add shortcode"
|
251 |
msgstr "Shortcode toevoegen"
|
252 |
|
253 |
-
#: bws_functions.php:
|
254 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
255 |
msgstr "Voeg BestWebSoft plugins shortcodes toe aan deze knop."
|
256 |
|
257 |
-
#: bws_functions.php:
|
258 |
msgid "Close"
|
259 |
msgstr "Sluiten"
|
260 |
|
261 |
-
#: bws_functions.php:
|
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:
|
266 |
msgid "Yes, restore all settings"
|
267 |
msgstr "Ja, herstel alle instellingen"
|
268 |
|
269 |
-
#: bws_functions.php:
|
270 |
msgid "No, go back to the settings page"
|
271 |
msgstr "Nee, ga terug naar de instellingen"
|
272 |
|
273 |
-
#: bws_functions.php:
|
274 |
msgid "Plugin"
|
275 |
msgstr "Plugin"
|
276 |
|
277 |
-
#: bws_functions.php:
|
278 |
msgid "Shortcode settings"
|
279 |
msgstr "Shortcode instellingen"
|
280 |
|
281 |
-
#: bws_functions.php:
|
282 |
msgid "The shortcode will be inserted"
|
283 |
msgstr "De shortcode wordt ingevoegd"
|
284 |
|
285 |
-
#: bws_functions.php:
|
286 |
-
msgid "Insert"
|
287 |
-
msgstr "Invoegen"
|
288 |
-
|
289 |
-
#: bws_functions.php:912
|
290 |
msgid "FAQ"
|
291 |
msgstr "FAQ"
|
292 |
|
293 |
-
#: bws_functions.php:
|
294 |
msgid "For more information:"
|
295 |
msgstr "Voor meer informatie:"
|
296 |
|
297 |
-
#: bws_functions.php:
|
298 |
msgid "Documentation"
|
299 |
msgstr "Documentatie"
|
300 |
|
301 |
-
#: bws_functions.php:
|
302 |
msgid "Video Instructions"
|
303 |
msgstr "Video Instructies"
|
304 |
|
305 |
-
#: bws_functions.php:
|
306 |
msgid "Submit a Request"
|
307 |
msgstr "Verzend een verzoek"
|
308 |
|
309 |
-
#: bws_menu.php:101 class-bws-settings.php:
|
310 |
msgid "Wrong license key"
|
311 |
msgstr "Incorrecte licentiesleutel"
|
312 |
|
313 |
-
#: bws_menu.php:122 class-bws-settings.php:
|
314 |
-
#: class-bws-settings.php:
|
315 |
#: deprecated.php:352
|
316 |
msgid ""
|
317 |
"Something went wrong. Please try again later. If the error appears again, "
|
@@ -320,13 +311,13 @@ 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:
|
324 |
-
#: class-bws-settings.php:
|
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:
|
330 |
#: deprecated.php:139 deprecated.php:358
|
331 |
msgid "Wrong license key."
|
332 |
msgstr "Verkeerde licentiesleutel."
|
@@ -347,7 +338,7 @@ msgstr "Log in"
|
|
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:
|
351 |
#, php-format
|
352 |
msgid ""
|
353 |
"Unfortunately, Your license has expired. To continue getting top-priority "
|
@@ -356,7 +347,7 @@ 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:
|
360 |
msgid ""
|
361 |
"Unfortunately, the Pro licence was already installed to this domain. The Pro "
|
362 |
"Trial license can be installed only once."
|
@@ -364,11 +355,11 @@ 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:
|
368 |
msgid "The license key is valid."
|
369 |
msgstr "De licentiesleutel is geldig."
|
370 |
|
371 |
-
#: bws_menu.php:144 class-bws-settings.php:
|
372 |
msgid "Your license will expire on"
|
373 |
msgstr "Uw licentie vervalt op"
|
374 |
|
@@ -377,7 +368,7 @@ 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:
|
381 |
msgid ""
|
382 |
"Something went wrong. Try again later or upload the plugin manually. We are "
|
383 |
"sorry for inconvenience."
|
@@ -551,7 +542,7 @@ msgstr "Plugins"
|
|
551 |
msgid "Themes"
|
552 |
msgstr "Thema's"
|
553 |
|
554 |
-
#: bws_menu.php:309 bws_menu.php:313 bws_menu.php:
|
555 |
msgid "System status"
|
556 |
msgstr "Systeem status"
|
557 |
|
@@ -572,7 +563,7 @@ msgstr "Krijg toegang tot %s+ Premium plugins"
|
|
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:
|
576 |
#: deprecated.php:227
|
577 |
msgid "Check license key"
|
578 |
msgstr "Controleer de licentiesleutel"
|
@@ -582,7 +573,7 @@ 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:
|
586 |
#: deprecated.php:629 deprecated.php:700 deprecated.php:709
|
587 |
msgid "Activate"
|
588 |
msgstr "Activateer"
|
@@ -625,8 +616,8 @@ 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:
|
629 |
-
#: class-bws-settings.php:
|
630 |
#: deprecated.php:431
|
631 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
632 |
msgstr ""
|
@@ -641,12 +632,12 @@ msgstr "Uitpakken van het pakket"
|
|
641 |
msgid "Installing the plugin"
|
642 |
msgstr "De plugin installeren"
|
643 |
|
644 |
-
#: bws_menu.php:417 class-bws-settings.php:
|
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:
|
650 |
msgid ""
|
651 |
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
652 |
"plugin manually"
|
@@ -659,7 +650,7 @@ msgstr ""
|
|
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:
|
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 "
|
@@ -677,7 +668,7 @@ msgstr "Terug naar het BestWebSoft Paneel"
|
|
677 |
msgid "All"
|
678 |
msgstr "Alle"
|
679 |
|
680 |
-
#: bws_menu.php:450 bws_menu.php:
|
681 |
msgid "Installed"
|
682 |
msgstr "Geinstalleerd"
|
683 |
|
@@ -710,7 +701,7 @@ msgstr "Update naar v %s"
|
|
710 |
msgid "Install Now"
|
711 |
msgstr "Installeer nu"
|
712 |
|
713 |
-
#: bws_menu.php:549 class-bws-settings.php:
|
714 |
msgid "Upgrade to Pro"
|
715 |
msgstr "Upgrade naar Pro"
|
716 |
|
@@ -726,89 +717,89 @@ msgstr "Installeer deze plugin"
|
|
726 |
msgid "Nothing found. Try another criteria."
|
727 |
msgstr "Niks gevonden. Probeer een ander criteria."
|
728 |
|
729 |
-
#: bws_menu.php:621
|
730 |
#, php-format
|
731 |
msgid "By %s"
|
732 |
msgstr "By %s"
|
733 |
|
734 |
-
#: bws_menu.php:
|
735 |
msgid "Already Installed"
|
736 |
msgstr "Reeds geinstalleerd"
|
737 |
|
738 |
-
#: bws_menu.php:
|
739 |
msgid "Browse Free WordPress Themes"
|
740 |
msgstr "Browse Gratis WordPress Themas"
|
741 |
|
742 |
-
#: bws_menu.php:
|
743 |
msgid "Send to support"
|
744 |
msgstr "Stuur uw vraag"
|
745 |
|
746 |
-
#: bws_menu.php:
|
747 |
msgid "Send to custom email »"
|
748 |
msgstr "Verzend naar aangepaste e-mail »"
|
749 |
|
750 |
-
#: class-bws-settings.php:
|
751 |
msgid "Information"
|
752 |
msgstr "Informatie"
|
753 |
|
754 |
-
#: class-bws-settings.php:
|
755 |
msgid "Inactive"
|
756 |
msgstr "Inactief"
|
757 |
|
758 |
-
#: class-bws-settings.php:
|
759 |
msgid "Expired"
|
760 |
msgstr "Verlopen"
|
761 |
|
762 |
-
#: class-bws-settings.php:
|
763 |
#, php-format
|
764 |
msgid "%s day(-s) left"
|
765 |
msgstr "%s dag(-en) over"
|
766 |
|
767 |
-
#: class-bws-settings.php:
|
768 |
#, php-format
|
769 |
msgid "Expired on %s"
|
770 |
msgstr "Verlopen op %s"
|
771 |
|
772 |
-
#: class-bws-settings.php:
|
773 |
msgid "Renew Now"
|
774 |
msgstr "Vernieuw nu"
|
775 |
|
776 |
-
#: class-bws-settings.php:
|
777 |
msgid "Active"
|
778 |
msgstr "Actief"
|
779 |
|
780 |
-
#: class-bws-settings.php:
|
781 |
msgid "License"
|
782 |
msgstr "Licentie"
|
783 |
|
784 |
-
#: class-bws-settings.php:
|
785 |
msgid "Status"
|
786 |
msgstr "Status"
|
787 |
|
788 |
-
#: class-bws-settings.php:
|
789 |
msgid "Version"
|
790 |
msgstr "Versiie"
|
791 |
|
792 |
-
#: class-bws-settings.php:
|
793 |
msgid "All plugin settings were restored."
|
794 |
msgstr "Alle plugin-instellingen zijn hersteld."
|
795 |
|
796 |
-
#: class-bws-settings.php:
|
797 |
msgid "Custom Code"
|
798 |
msgstr "Maatwerk Code"
|
799 |
|
800 |
-
#: class-bws-settings.php:
|
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:
|
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:
|
812 |
#, php-format
|
813 |
msgid ""
|
814 |
"This PHP code will be hooked to the %s action and will be printed on front "
|
@@ -817,12 +808,12 @@ 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:
|
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:
|
826 |
#, php-format
|
827 |
msgid ""
|
828 |
"You need to make this files writable before you can save your changes. See "
|
@@ -831,25 +822,25 @@ 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:
|
835 |
msgid "Browsing"
|
836 |
msgstr "Browsing"
|
837 |
|
838 |
-
#: class-bws-settings.php:
|
839 |
#, php-format
|
840 |
msgid "Activate custom %s code."
|
841 |
msgstr "Activateer maatwerk %s code."
|
842 |
|
843 |
-
#: class-bws-settings.php:
|
844 |
#, php-format
|
845 |
msgid "Learn more about %s"
|
846 |
msgstr "Leer meer over %s"
|
847 |
|
848 |
-
#: class-bws-settings.php:
|
849 |
msgid "Miscellaneous Settings"
|
850 |
msgstr "Diversen instellingen"
|
851 |
|
852 |
-
#: class-bws-settings.php:
|
853 |
#, php-format
|
854 |
msgid ""
|
855 |
"It is prohibited to change %s settings on this site in the %s network "
|
@@ -858,7 +849,7 @@ msgstr ""
|
|
858 |
"Het is verboden om %s instellingen op deze website te wijzigen in de %s "
|
859 |
"netwerkinstellingen."
|
860 |
|
861 |
-
#: class-bws-settings.php:
|
862 |
#, php-format
|
863 |
msgid ""
|
864 |
"It is prohibited to view %s settings on this site in the %s network settings."
|
@@ -866,68 +857,68 @@ msgstr ""
|
|
866 |
"Het is verboden om %s instellingen op deze website te bekijken in de %s "
|
867 |
"netwerkinstellingen."
|
868 |
|
869 |
-
#: class-bws-settings.php:
|
870 |
msgid "Pro Options"
|
871 |
msgstr "Pro Opties"
|
872 |
|
873 |
-
#: class-bws-settings.php:
|
874 |
msgid "Enable to display plugin Pro options."
|
875 |
msgstr "Schakel in om plugin Pro opties te zien."
|
876 |
|
877 |
-
#: class-bws-settings.php:
|
878 |
msgid "Track Usage"
|
879 |
msgstr "Track gebruik"
|
880 |
|
881 |
-
#: class-bws-settings.php:
|
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:
|
889 |
msgid "Default Settings"
|
890 |
msgstr "Standaard instellingen"
|
891 |
|
892 |
-
#: class-bws-settings.php:
|
893 |
msgid "Restore Settings"
|
894 |
msgstr "Instellingen herstellen"
|
895 |
|
896 |
-
#: class-bws-settings.php:
|
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:
|
902 |
msgid "Import / Export"
|
903 |
msgstr "Import / Export"
|
904 |
|
905 |
-
#: class-bws-settings.php:
|
906 |
-
#: class-bws-settings.php:
|
907 |
msgid "License Key"
|
908 |
msgstr "Licentiesleutel"
|
909 |
|
910 |
-
#: class-bws-settings.php:
|
911 |
msgid "Congratulations! Pro license is activated successfully."
|
912 |
msgstr "Hartelijk gefeliciteerd! De Pro licentie is succesvol geactiveerd."
|
913 |
|
914 |
-
#: class-bws-settings.php:
|
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:
|
920 |
msgid "Settings page"
|
921 |
msgstr "Instellingen"
|
922 |
|
923 |
-
#: class-bws-settings.php:
|
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:
|
931 |
#: deprecated.php:703
|
932 |
msgid ""
|
933 |
"Unfortunately, you have exceeded the number of available tries per day. "
|
@@ -936,12 +927,12 @@ 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:
|
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:
|
945 |
msgid ""
|
946 |
"If necessary, you can check if the license key is correct or reenter it in "
|
947 |
"the field below."
|
@@ -949,15 +940,15 @@ 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:
|
953 |
msgid "Manage License Settings"
|
954 |
msgstr "Beheer licentie instellingen"
|
955 |
|
956 |
-
#: class-bws-settings.php:
|
957 |
msgid "Login to Client Area"
|
958 |
msgstr "Inloggen op client gebied"
|
959 |
|
960 |
-
#: class-bws-settings.php:
|
961 |
msgid ""
|
962 |
"Manage active licenses, download BWS products, and view your payment history "
|
963 |
"using BestWebSoft Client Area."
|
@@ -965,12 +956,12 @@ 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:
|
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:
|
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."
|
@@ -978,11 +969,11 @@ 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:
|
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:
|
986 |
msgid ""
|
987 |
"Unfortunately, the Pro Trial licence was already installed to this domain. "
|
988 |
"The Pro Trial license can be installed only once."
|
@@ -990,37 +981,133 @@ 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:
|
994 |
msgid "The Pro Trial license key is valid."
|
995 |
msgstr "De Pro Trial licentiesleutel is geldig."
|
996 |
|
997 |
-
#: class-bws-settings.php:
|
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:
|
1005 |
msgid "Please, enter Your license key"
|
1006 |
msgstr "Vul alstublieft uw licentiesleutel in"
|
1007 |
|
1008 |
-
#: class-bws-settings.php:
|
1009 |
msgid "Need Help?"
|
1010 |
msgstr "Hulp nodig?"
|
1011 |
|
1012 |
-
#: class-bws-settings.php:
|
1013 |
msgid "Read the Instruction"
|
1014 |
msgstr "Lees de instructie"
|
1015 |
|
1016 |
-
#: class-bws-settings.php:
|
1017 |
msgid "Watch the Video"
|
1018 |
msgstr "Bekijk de Video"
|
1019 |
|
1020 |
-
#: class-bws-settings.php:
|
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"
|
@@ -1164,298 +1251,294 @@ msgstr ""
|
|
1164 |
msgid "SMM"
|
1165 |
msgstr ""
|
1166 |
|
1167 |
-
#: product_list.php:
|
1168 |
msgid ""
|
1169 |
"Protect WordPress website forms from spam entries by means of math logic."
|
1170 |
msgstr ""
|
1171 |
|
1172 |
-
#: product_list.php:
|
1173 |
msgid "Create your personal car rental/booking and reservation website."
|
1174 |
msgstr ""
|
1175 |
|
1176 |
-
#: product_list.php:
|
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:
|
1183 |
msgid "Add unlimited number of contact forms to WordPress website."
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: product_list.php:
|
1187 |
msgid "Save and manage Contact Form messages. Never lose important data."
|
1188 |
msgstr ""
|
1189 |
|
1190 |
-
#: product_list.php:
|
1191 |
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: product_list.php:
|
1195 |
msgid "Add custom fields to WordPress website search results."
|
1196 |
msgstr ""
|
1197 |
|
1198 |
-
#: product_list.php:
|
1199 |
msgid ""
|
1200 |
"Add custom post types and taxonomies to WordPress website search results."
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: product_list.php:
|
1204 |
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: product_list.php:
|
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:
|
1220 |
msgid ""
|
1221 |
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1222 |
"widgets."
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
#: product_list.php:
|
1226 |
msgid ""
|
1227 |
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1228 |
"clicks."
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#: product_list.php:
|
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:
|
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:
|
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:
|
1256 |
msgid "Add Google Analytics code to WordPress website and track basic stats."
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#: product_list.php:
|
1260 |
msgid ""
|
1261 |
"Protect WordPress website forms from spam entries with Google Captcha "
|
1262 |
"(reCaptcha)."
|
1263 |
msgstr ""
|
1264 |
|
1265 |
-
#: product_list.php:
|
1266 |
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#: product_list.php:
|
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:
|
1276 |
msgid ""
|
1277 |
"Replace external WordPress website links with Google shortlinks and track "
|
1278 |
"click stats."
|
1279 |
msgstr ""
|
1280 |
|
1281 |
-
#: product_list.php:
|
1282 |
msgid ""
|
1283 |
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1284 |
"hostnames, etc."
|
1285 |
msgstr ""
|
1286 |
|
1287 |
-
#: product_list.php:
|
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:
|
1294 |
msgid ""
|
1295 |
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1296 |
"attempts."
|
1297 |
msgstr ""
|
1298 |
|
1299 |
-
#: product_list.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
1336 |
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1337 |
msgstr ""
|
1338 |
|
1339 |
-
#: product_list.php:
|
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:
|
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:
|
1352 |
msgid ""
|
1353 |
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1354 |
"widgets."
|
1355 |
msgstr ""
|
1356 |
|
1357 |
-
#: product_list.php:
|
1358 |
msgid ""
|
1359 |
"Add rating plugin to your WordPress website to receive feedback from your "
|
1360 |
"customers."
|
1361 |
msgstr ""
|
1362 |
|
1363 |
-
#: product_list.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
1406 |
msgid ""
|
1407 |
"Add social media login, registration, and commenting to your WordPress "
|
1408 |
"website."
|
1409 |
msgstr ""
|
1410 |
|
1411 |
-
#: product_list.php:
|
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:
|
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:
|
1424 |
msgid ""
|
1425 |
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1426 |
"attendance and generate reports."
|
1427 |
msgstr ""
|
1428 |
|
1429 |
-
#: product_list.php:
|
1430 |
msgid ""
|
1431 |
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1432 |
"and pages."
|
1433 |
msgstr ""
|
1434 |
|
1435 |
-
#: product_list.php:
|
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:
|
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:
|
1448 |
msgid ""
|
1449 |
"Display live count of online visitors who are currently browsing your "
|
1450 |
"WordPress website."
|
1451 |
msgstr ""
|
1452 |
|
1453 |
-
#: product_list.php:
|
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 |
|
@@ -1473,6 +1556,3 @@ msgstr ""
|
|
1473 |
|
1474 |
#~ msgid "Utilities"
|
1475 |
#~ msgstr "Voorzieningen"
|
1476 |
-
|
1477 |
-
#~ msgid "Other"
|
1478 |
-
#~ msgstr "Anders"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-08-28 09:55+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-08-28 09:55+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"
|
16 |
"X-Generator: Poedit 1.8.7.1\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: bws_functions.php:73 bws_functions.php:191
|
20 |
msgid "requires"
|
21 |
msgstr "benodigd"
|
22 |
|
23 |
+
#: bws_functions.php:75
|
24 |
msgid ""
|
25 |
"or higher, that is why it has been deactivated! Please upgrade WordPress and "
|
26 |
"try again."
|
28 |
"of hoger, daarom is deze gedeactiveerd! Upgrade WordPress en probeer het "
|
29 |
"opnieuw."
|
30 |
|
31 |
+
#: bws_functions.php:76
|
32 |
msgid "Back to the WordPress"
|
33 |
msgstr "Terug naar WordPress"
|
34 |
|
35 |
+
#: bws_functions.php:78
|
36 |
msgid "Plugins page"
|
37 |
msgstr "Plugins pagina"
|
38 |
|
39 |
+
#: bws_functions.php:92
|
40 |
msgid "Like the plugin?"
|
41 |
msgstr "Like de plugin?"
|
42 |
|
43 |
+
#: bws_functions.php:94
|
44 |
msgid "Rate it"
|
45 |
msgstr "Rate it"
|
46 |
|
47 |
+
#: bws_functions.php:103
|
48 |
msgid "Need help?"
|
49 |
msgstr "Hulp nodig?"
|
50 |
|
51 |
+
#: bws_functions.php:104 bws_functions.php:911 class-bws-settings.php:1056
|
52 |
msgid "Visit Help Center"
|
53 |
msgstr "Bezoek het Helpcentrum"
|
54 |
|
55 |
+
#: bws_functions.php:107
|
56 |
msgid "Want to support the plugin?"
|
57 |
msgstr "Geef ondersteuning aan de plug-in?"
|
58 |
|
59 |
+
#: bws_functions.php:108 bws_menu.php:553
|
60 |
msgid "Donate"
|
61 |
msgstr "Doneer"
|
62 |
|
63 |
+
#: bws_functions.php:128
|
64 |
msgid "WARNING: Illegal use notification"
|
65 |
msgstr "LET OP!: Onwettige gebruiksmelding"
|
66 |
|
67 |
+
#: bws_functions.php:128
|
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 your personal Client "
|
71 |
+
"Area. We strongly recommend you to solve the problem within 24 hours, "
|
72 |
+
"otherwise the Pro plugin will be deactivated."
|
73 |
msgstr ""
|
|
|
|
|
|
|
|
|
74 |
|
75 |
+
#: bws_functions.php:128 bws_functions.php:340 class-bws-settings.php:144
|
|
|
76 |
msgid "Learn More"
|
77 |
msgstr "Leer meer"
|
78 |
|
79 |
+
#: bws_functions.php:145
|
80 |
msgid ""
|
81 |
"Notice: Your Pro Trial license has expired. To continue using the plugin, "
|
82 |
"you should buy a Pro license"
|
84 |
"Opmerking: Uw Pro Trial licentie is verlopen. Om de plugin verder te "
|
85 |
"gebruiken, moet u een Pro-licentie kopen"
|
86 |
|
87 |
+
#: bws_functions.php:147
|
88 |
msgid ""
|
89 |
"Your license has expired. To continue getting top-priority support and "
|
90 |
"plugin updates, you should extend it."
|
92 |
"Uw licentie is verlopen. Om voort te gaan met ondersteuning voor top-"
|
93 |
"prioriteit en plugin-updates, moet u het uitbreiden."
|
94 |
|
95 |
+
#: bws_functions.php:147 bws_functions.php:383 deprecated.php:584
|
96 |
msgid "Learn more"
|
97 |
msgstr "Leer meer"
|
98 |
|
99 |
+
#: bws_functions.php:165
|
100 |
#, php-format
|
101 |
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
102 |
msgstr "Opmerking: U maakt gebruikt van de Pro Trial licentie van %s plugin."
|
103 |
|
104 |
+
#: bws_functions.php:167
|
105 |
msgid "Notice: You are using the Pro Trial license of plugin."
|
106 |
msgstr "Opmerking: U gebruikt de Pro Trial licentie van de plugin."
|
107 |
|
108 |
+
#: bws_functions.php:170
|
109 |
msgid "The Pro Trial license will expire on"
|
110 |
msgstr "De Pro Trial licentie vervalt op"
|
111 |
|
112 |
+
#: bws_functions.php:193
|
113 |
msgid ""
|
114 |
"or higher! We do not guarantee that our plugin will work correctly. Please "
|
115 |
"upgrade to WordPress latest version."
|
117 |
"of hoger! Wij garanderen niet dat onze plugin correct blijft werken. Upgrade "
|
118 |
"nu naar de nieuwste versie van WordPress."
|
119 |
|
120 |
+
#: bws_functions.php:208
|
121 |
#, php-format
|
122 |
msgid "Thank you for installing %s plugin!"
|
123 |
msgstr "Dank u voor het installeren van %s plugin!"
|
124 |
|
125 |
+
#: bws_functions.php:209
|
126 |
msgid "Let's get started"
|
127 |
msgstr "Laten we aan de slag gaan"
|
128 |
|
129 |
+
#: bws_functions.php:210 bws_functions.php:243 bws_menu.php:557
|
130 |
#: bws_menu.php:559
|
131 |
msgid "Settings"
|
132 |
msgstr "Settings"
|
133 |
|
134 |
+
#: bws_functions.php:212 bws_menu.php:328 class-bws-settings.php:745
|
135 |
+
#: class-bws-settings.php:1058 class-bws-settings.php:1068 deprecated.php:694
|
136 |
msgid "or"
|
137 |
msgstr "of"
|
138 |
|
139 |
+
#: bws_functions.php:213 bws_functions.php:245
|
140 |
msgid "Add New"
|
141 |
msgstr "Nieuwe toevoegen"
|
142 |
|
143 |
+
#: bws_functions.php:217 bws_functions.php:227 bws_functions.php:331
|
144 |
+
#: bws_functions.php:379 bws_functions.php:481
|
145 |
msgid "Close notice"
|
146 |
msgstr "Opmerking sluiten"
|
147 |
|
148 |
+
#: bws_functions.php:232
|
149 |
msgid "Thank you for installing plugins by BestWebSoft!"
|
150 |
msgstr "Dank u voor het installeren van een plugin van BestWebSoft!"
|
151 |
|
152 |
+
#: bws_functions.php:234
|
153 |
msgid "More Details"
|
154 |
msgstr "Meer details"
|
155 |
|
156 |
+
#: bws_functions.php:235
|
157 |
msgid "Less Details"
|
158 |
msgstr "Minder details"
|
159 |
|
160 |
+
#: bws_functions.php:263
|
161 |
msgid "Deprecated function(-s) is used on the site here:"
|
162 |
msgstr "Deprecated functie(-s) word hier op de site gebruikt:"
|
163 |
|
164 |
+
#: bws_functions.php:277
|
165 |
msgid ""
|
166 |
"This function(-s) will be removed over time. Please update the product(-s)."
|
167 |
msgstr ""
|
168 |
"Deze function(-s) zal mettertijd worden verwijderd. Update het product of "
|
169 |
"producten."
|
170 |
|
171 |
+
#: bws_functions.php:336
|
172 |
msgid "It’s time to upgrade your"
|
173 |
msgstr "Het is tijd om te upgraden, "
|
174 |
|
175 |
+
#: bws_functions.php:336
|
176 |
msgid "to"
|
177 |
msgstr "aan"
|
178 |
|
179 |
+
#: bws_functions.php:336
|
180 |
msgid "version!"
|
181 |
msgstr "versie!"
|
182 |
|
183 |
+
#: bws_functions.php:337
|
184 |
msgid "Extend standard plugin functionality with new great options."
|
185 |
msgstr ""
|
186 |
"Verleng de standaard plugin functionaliteit met nieuwe geweldige opties."
|
187 |
|
188 |
+
#: bws_functions.php:383
|
189 |
#, php-format
|
190 |
msgid ""
|
191 |
"Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
|
194 |
"Uw licentiesleutel voor %s verloopt uit op %s en u krijgt geen TOP-"
|
195 |
"PRIORITEIT SUPPORT of UPDATES."
|
196 |
|
197 |
+
#: bws_functions.php:476
|
198 |
#, php-format
|
199 |
msgid "Thank you for choosing %s plugin!"
|
200 |
msgstr "Bedankt voor het kiezen van %s plugin!"
|
201 |
|
202 |
+
#: bws_functions.php:477
|
203 |
msgid ""
|
204 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
205 |
"we'd love to hear about it!"
|
207 |
"Als u een feature, suggestie of idee hebt dat u graag wilt zien in de "
|
208 |
"plugin, zouden we het graag willen horen!"
|
209 |
|
210 |
+
#: bws_functions.php:478
|
211 |
msgid "Suggest a Feature"
|
212 |
msgstr "Deel een idee"
|
213 |
|
214 |
+
#: bws_functions.php:494 class-bws-settings.php:538 class-bws-settings.php:541
|
215 |
+
#: class-bws-settings.php:593 class-bws-settings.php:596
|
216 |
msgid "Notice"
|
217 |
msgstr "Opmerking"
|
218 |
|
219 |
+
#: bws_functions.php:494
|
220 |
msgid "The plugin's settings have been changed."
|
221 |
msgstr "De instellingen van de plugin zijn gewijzigd."
|
222 |
|
223 |
+
#: bws_functions.php:495 class-bws-settings.php:183 class-bws-settings.php:203
|
224 |
#: deprecated.php:640
|
225 |
msgid "Save Changes"
|
226 |
msgstr "Bewerkingen opslaan"
|
227 |
|
228 |
+
#: bws_functions.php:509
|
229 |
msgid ""
|
230 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
231 |
"the \"Misc\" tab."
|
233 |
"U kunt altijd premium opties bekijken door de \"Pro Options\" in het tabblad "
|
234 |
"\"Misc\" te controleren."
|
235 |
|
236 |
+
#: bws_functions.php:647
|
237 |
msgid "Add BWS Shortcode"
|
238 |
msgstr ""
|
239 |
|
240 |
+
#: bws_functions.php:648
|
241 |
msgid "Add BWS Plugins Shortcode"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: bws_functions.php:667
|
245 |
msgid "Add shortcode"
|
246 |
msgstr "Shortcode toevoegen"
|
247 |
|
248 |
+
#: bws_functions.php:667
|
249 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
250 |
msgstr "Voeg BestWebSoft plugins shortcodes toe aan deze knop."
|
251 |
|
252 |
+
#: bws_functions.php:723
|
253 |
msgid "Close"
|
254 |
msgstr "Sluiten"
|
255 |
|
256 |
+
#: bws_functions.php:815
|
257 |
msgid "Are you sure you want to restore default settings?"
|
258 |
msgstr "Weet u zeker dat u de standaardinstellingen wilt herstellen?"
|
259 |
|
260 |
+
#: bws_functions.php:818
|
261 |
msgid "Yes, restore all settings"
|
262 |
msgstr "Ja, herstel alle instellingen"
|
263 |
|
264 |
+
#: bws_functions.php:819
|
265 |
msgid "No, go back to the settings page"
|
266 |
msgstr "Nee, ga terug naar de instellingen"
|
267 |
|
268 |
+
#: bws_functions.php:861
|
269 |
msgid "Plugin"
|
270 |
msgstr "Plugin"
|
271 |
|
272 |
+
#: bws_functions.php:870
|
273 |
msgid "Shortcode settings"
|
274 |
msgstr "Shortcode instellingen"
|
275 |
|
276 |
+
#: bws_functions.php:875
|
277 |
msgid "The shortcode will be inserted"
|
278 |
msgstr "De shortcode wordt ingevoegd"
|
279 |
|
280 |
+
#: bws_functions.php:916
|
|
|
|
|
|
|
|
|
281 |
msgid "FAQ"
|
282 |
msgstr "FAQ"
|
283 |
|
284 |
+
#: bws_functions.php:922
|
285 |
msgid "For more information:"
|
286 |
msgstr "Voor meer informatie:"
|
287 |
|
288 |
+
#: bws_functions.php:923
|
289 |
msgid "Documentation"
|
290 |
msgstr "Documentatie"
|
291 |
|
292 |
+
#: bws_functions.php:924
|
293 |
msgid "Video Instructions"
|
294 |
msgstr "Video Instructies"
|
295 |
|
296 |
+
#: bws_functions.php:925
|
297 |
msgid "Submit a Request"
|
298 |
msgstr "Verzend een verzoek"
|
299 |
|
300 |
+
#: bws_menu.php:101 class-bws-settings.php:790 deprecated.php:322
|
301 |
msgid "Wrong license key"
|
302 |
msgstr "Incorrecte licentiesleutel"
|
303 |
|
304 |
+
#: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
|
305 |
+
#: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
|
306 |
#: deprecated.php:352
|
307 |
msgid ""
|
308 |
"Something went wrong. Please try again later. If the error appears again, "
|
311 |
"Er is iets fout gegaan. Probeer het later nogmaals. Als de fout zich blijft "
|
312 |
"voordoen, neem dan contact met ons op"
|
313 |
|
314 |
+
#: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
|
315 |
+
#: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
|
316 |
#: deprecated.php:352
|
317 |
msgid "We are sorry for inconvenience."
|
318 |
msgstr "Het spijt ons voor het ongemak."
|
319 |
|
320 |
+
#: bws_menu.php:128 class-bws-settings.php:822 class-bws-settings.php:925
|
321 |
#: deprecated.php:139 deprecated.php:358
|
322 |
msgid "Wrong license key."
|
323 |
msgstr "Verkeerde licentiesleutel."
|
338 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
339 |
msgstr "Helaas heb je het aantal beschikbare pogingen per dag overschreden."
|
340 |
|
341 |
+
#: bws_menu.php:134 class-bws-settings.php:931 deprecated.php:364
|
342 |
#, php-format
|
343 |
msgid ""
|
344 |
"Unfortunately, Your license has expired. To continue getting top-priority "
|
347 |
"Helaas is uw licentie verlopen. Om voort te gaan met ondersteuning voor top-"
|
348 |
"prioriteit en plugin-updates, moet u deze uitbreiden in uw %s"
|
349 |
|
350 |
+
#: bws_menu.php:136 class-bws-settings.php:933 deprecated.php:366
|
351 |
msgid ""
|
352 |
"Unfortunately, the Pro licence was already installed to this domain. The Pro "
|
353 |
"Trial license can be installed only once."
|
355 |
"Helaas is de Pro licentie al geïnstalleerd op dit domein. De Pro Trial "
|
356 |
"licentie kan slechts één keer geïnstalleerd worden."
|
357 |
|
358 |
+
#: bws_menu.php:142 class-bws-settings.php:837 deprecated.php:153
|
359 |
msgid "The license key is valid."
|
360 |
msgstr "De licentiesleutel is geldig."
|
361 |
|
362 |
+
#: bws_menu.php:144 class-bws-settings.php:840 deprecated.php:156
|
363 |
msgid "Your license will expire on"
|
364 |
msgstr "Uw licentie vervalt op"
|
365 |
|
368 |
msgstr ""
|
369 |
"Hartelijk gefeliciteerd! Uw Pro Membership licentie is succesvol geactiveerd."
|
370 |
|
371 |
+
#: bws_menu.php:153 class-bws-settings.php:1005 deprecated.php:435
|
372 |
msgid ""
|
373 |
"Something went wrong. Try again later or upload the plugin manually. We are "
|
374 |
"sorry for inconvenience."
|
542 |
msgid "Themes"
|
543 |
msgstr "Thema's"
|
544 |
|
545 |
+
#: bws_menu.php:309 bws_menu.php:313 bws_menu.php:641
|
546 |
msgid "System status"
|
547 |
msgstr "Systeem status"
|
548 |
|
563 |
msgid "Subscribe to Pro Membership"
|
564 |
msgstr "Abonneer je op de Pro Membership"
|
565 |
|
566 |
+
#: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:758
|
567 |
#: deprecated.php:227
|
568 |
msgid "Check license key"
|
569 |
msgstr "Controleer de licentiesleutel"
|
573 |
msgstr "Vul uw licentiesleutel in"
|
574 |
|
575 |
#: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
|
576 |
+
#: class-bws-settings.php:737 deprecated.php:259 deprecated.php:267
|
577 |
#: deprecated.php:629 deprecated.php:700 deprecated.php:709
|
578 |
msgid "Activate"
|
579 |
msgstr "Activateer"
|
616 |
msgstr "Installatiepakket downloaden vanaf"
|
617 |
|
618 |
#: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
|
619 |
+
#: class-bws-settings.php:957 class-bws-settings.php:979
|
620 |
+
#: class-bws-settings.php:1001 deprecated.php:387 deprecated.php:409
|
621 |
#: deprecated.php:431
|
622 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
623 |
msgstr ""
|
632 |
msgid "Installing the plugin"
|
633 |
msgstr "De plugin installeren"
|
634 |
|
635 |
+
#: bws_menu.php:417 class-bws-settings.php:969 deprecated.php:399
|
636 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
637 |
msgstr ""
|
638 |
"Kan het zip-bestand niet openen. Gelieve de plugin handmatig te uploaden"
|
639 |
|
640 |
+
#: bws_menu.php:424 class-bws-settings.php:975 deprecated.php:405
|
641 |
msgid ""
|
642 |
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
643 |
"plugin manually"
|
650 |
msgid "The plugin %s is successfully installed."
|
651 |
msgstr "De plugin %s is succesvol geïnstalleerd."
|
652 |
|
653 |
+
#: bws_menu.php:434 class-bws-settings.php:982 deprecated.php:412
|
654 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
655 |
msgstr ""
|
656 |
"UploadDir is kan niet worden weggeschreven. Gelieve de plugin handmatig te "
|
668 |
msgid "All"
|
669 |
msgstr "Alle"
|
670 |
|
671 |
+
#: bws_menu.php:450 bws_menu.php:630
|
672 |
msgid "Installed"
|
673 |
msgstr "Geinstalleerd"
|
674 |
|
701 |
msgid "Install Now"
|
702 |
msgstr "Installeer nu"
|
703 |
|
704 |
+
#: bws_menu.php:549 class-bws-settings.php:157 class-bws-settings.php:1065
|
705 |
msgid "Upgrade to Pro"
|
706 |
msgstr "Upgrade naar Pro"
|
707 |
|
717 |
msgid "Nothing found. Try another criteria."
|
718 |
msgstr "Niks gevonden. Probeer een ander criteria."
|
719 |
|
720 |
+
#: bws_menu.php:621
|
721 |
#, php-format
|
722 |
msgid "By %s"
|
723 |
msgstr "By %s"
|
724 |
|
725 |
+
#: bws_menu.php:628
|
726 |
msgid "Already Installed"
|
727 |
msgstr "Reeds geinstalleerd"
|
728 |
|
729 |
+
#: bws_menu.php:638
|
730 |
msgid "Browse Free WordPress Themes"
|
731 |
msgstr "Browse Gratis WordPress Themas"
|
732 |
|
733 |
+
#: bws_menu.php:647
|
734 |
msgid "Send to support"
|
735 |
msgstr "Stuur uw vraag"
|
736 |
|
737 |
+
#: bws_menu.php:654
|
738 |
msgid "Send to custom email »"
|
739 |
msgstr "Verzend naar aangepaste e-mail »"
|
740 |
|
741 |
+
#: class-bws-settings.php:136
|
742 |
msgid "Information"
|
743 |
msgstr "Informatie"
|
744 |
|
745 |
+
#: class-bws-settings.php:144
|
746 |
msgid "Inactive"
|
747 |
msgstr "Inactief"
|
748 |
|
749 |
+
#: class-bws-settings.php:152
|
750 |
msgid "Expired"
|
751 |
msgstr "Verlopen"
|
752 |
|
753 |
+
#: class-bws-settings.php:155
|
754 |
#, php-format
|
755 |
msgid "%s day(-s) left"
|
756 |
msgstr "%s dag(-en) over"
|
757 |
|
758 |
+
#: class-bws-settings.php:161
|
759 |
#, php-format
|
760 |
msgid "Expired on %s"
|
761 |
msgstr "Verlopen op %s"
|
762 |
|
763 |
+
#: class-bws-settings.php:161
|
764 |
msgid "Renew Now"
|
765 |
msgstr "Vernieuw nu"
|
766 |
|
767 |
+
#: class-bws-settings.php:163
|
768 |
msgid "Active"
|
769 |
msgstr "Actief"
|
770 |
|
771 |
+
#: class-bws-settings.php:168
|
772 |
msgid "License"
|
773 |
msgstr "Licentie"
|
774 |
|
775 |
+
#: class-bws-settings.php:171
|
776 |
msgid "Status"
|
777 |
msgstr "Status"
|
778 |
|
779 |
+
#: class-bws-settings.php:175
|
780 |
msgid "Version"
|
781 |
msgstr "Versiie"
|
782 |
|
783 |
+
#: class-bws-settings.php:285
|
784 |
msgid "All plugin settings were restored."
|
785 |
msgstr "Alle plugin-instellingen zijn hersteld."
|
786 |
|
787 |
+
#: class-bws-settings.php:423
|
788 |
msgid "Custom Code"
|
789 |
msgstr "Maatwerk Code"
|
790 |
|
791 |
+
#: class-bws-settings.php:427 deprecated.php:497
|
792 |
msgid "You do not have sufficient permissions to edit plugins for this site."
|
793 |
msgstr ""
|
794 |
"U heeft niet voldoende permissies om plugins voor deze website te bewerken."
|
795 |
|
796 |
+
#: class-bws-settings.php:432 deprecated.php:618
|
797 |
msgid "These styles will be added to the header on all pages of your site."
|
798 |
msgstr ""
|
799 |
"Deze stijlen worden toegevoegd aan de koptekst op alle pagina's van uw "
|
800 |
"website."
|
801 |
|
802 |
+
#: class-bws-settings.php:435 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 "
|
808 |
"Deze PHP-code wordt aangesloten op de %s actie en zal alleen op de website "
|
809 |
"worden getoond."
|
810 |
|
811 |
+
#: class-bws-settings.php:438
|
812 |
msgid "These code will be added to the header on all pages of your site."
|
813 |
msgstr ""
|
814 |
"Deze code wordt toegevoegd aan de koptekst op alle pagina's van uw website."
|
815 |
|
816 |
+
#: class-bws-settings.php:446 deprecated.php:644
|
817 |
#, php-format
|
818 |
msgid ""
|
819 |
"You need to make this files writable before you can save your changes. See "
|
822 |
"U moet deze bestanden schrijfrechten geven voordat u de wijzigingen kunt "
|
823 |
"opslaan. Zie %s de Codex %s voor meer informatie."
|
824 |
|
825 |
+
#: class-bws-settings.php:456 deprecated.php:626
|
826 |
msgid "Browsing"
|
827 |
msgstr "Browsing"
|
828 |
|
829 |
+
#: class-bws-settings.php:461
|
830 |
#, php-format
|
831 |
msgid "Activate custom %s code."
|
832 |
msgstr "Activateer maatwerk %s code."
|
833 |
|
834 |
+
#: class-bws-settings.php:469 deprecated.php:633
|
835 |
#, php-format
|
836 |
msgid "Learn more about %s"
|
837 |
msgstr "Leer meer over %s"
|
838 |
|
839 |
+
#: class-bws-settings.php:529
|
840 |
msgid "Miscellaneous Settings"
|
841 |
msgstr "Diversen instellingen"
|
842 |
|
843 |
+
#: class-bws-settings.php:538 class-bws-settings.php:593
|
844 |
#, php-format
|
845 |
msgid ""
|
846 |
"It is prohibited to change %s settings on this site in the %s network "
|
849 |
"Het is verboden om %s instellingen op deze website te wijzigen in de %s "
|
850 |
"netwerkinstellingen."
|
851 |
|
852 |
+
#: class-bws-settings.php:541 class-bws-settings.php:596
|
853 |
#, php-format
|
854 |
msgid ""
|
855 |
"It is prohibited to view %s settings on this site in the %s network settings."
|
857 |
"Het is verboden om %s instellingen op deze website te bekijken in de %s "
|
858 |
"netwerkinstellingen."
|
859 |
|
860 |
+
#: class-bws-settings.php:550
|
861 |
msgid "Pro Options"
|
862 |
msgstr "Pro Opties"
|
863 |
|
864 |
+
#: class-bws-settings.php:554
|
865 |
msgid "Enable to display plugin Pro options."
|
866 |
msgstr "Schakel in om plugin Pro opties te zien."
|
867 |
|
868 |
+
#: class-bws-settings.php:560
|
869 |
msgid "Track Usage"
|
870 |
msgstr "Track gebruik"
|
871 |
|
872 |
+
#: class-bws-settings.php:564
|
873 |
msgid ""
|
874 |
"Enable to allow tracking plugin usage anonymously in order to make it better."
|
875 |
msgstr ""
|
876 |
"Activeer het gebruik van anonieme tracking van de bijbehorende plug-in, om "
|
877 |
"het product beter te maken."
|
878 |
|
879 |
+
#: class-bws-settings.php:569
|
880 |
msgid "Default Settings"
|
881 |
msgstr "Standaard instellingen"
|
882 |
|
883 |
+
#: class-bws-settings.php:571
|
884 |
msgid "Restore Settings"
|
885 |
msgstr "Instellingen herstellen"
|
886 |
|
887 |
+
#: class-bws-settings.php:572
|
888 |
msgid "This will restore plugin settings to defaults."
|
889 |
msgstr ""
|
890 |
"Dit zal de plugininstellingen herstellen naar de standaardinstellingen."
|
891 |
|
892 |
+
#: class-bws-settings.php:584
|
893 |
msgid "Import / Export"
|
894 |
msgstr "Import / Export"
|
895 |
|
896 |
+
#: class-bws-settings.php:700 class-bws-settings.php:733
|
897 |
+
#: class-bws-settings.php:755
|
898 |
msgid "License Key"
|
899 |
msgstr "Licentiesleutel"
|
900 |
|
901 |
+
#: class-bws-settings.php:723
|
902 |
msgid "Congratulations! Pro license is activated successfully."
|
903 |
msgstr "Hartelijk gefeliciteerd! De Pro licentie is succesvol geactiveerd."
|
904 |
|
905 |
+
#: class-bws-settings.php:724
|
906 |
#, php-format
|
907 |
msgid "You will be automatically redirected to the %s in %s seconds."
|
908 |
msgstr "U wordt automatisch doorgestuurd naar %s in %s seconden."
|
909 |
|
910 |
+
#: class-bws-settings.php:724
|
911 |
msgid "Settings page"
|
912 |
msgstr "Instellingen"
|
913 |
|
914 |
+
#: class-bws-settings.php:739
|
915 |
#, php-format
|
916 |
msgid "Enter your license key to activate %s and get premium plugin features."
|
917 |
msgstr ""
|
918 |
"Voer uw licentiesleutel in om %s te activeren en premium-pluginfuncties te "
|
919 |
"krijgen."
|
920 |
|
921 |
+
#: class-bws-settings.php:742 class-bws-settings.php:929 deprecated.php:362
|
922 |
#: deprecated.php:703
|
923 |
msgid ""
|
924 |
"Unfortunately, you have exceeded the number of available tries per day. "
|
927 |
"Helaas heeft u het aantal beschikbare pogingen per dag overschreden. Gelieve "
|
928 |
"de plugin handmatig te uploaden."
|
929 |
|
930 |
+
#: class-bws-settings.php:745 deprecated.php:694
|
931 |
#, php-format
|
932 |
msgid "Start Your Free %s-Day Trial Now"
|
933 |
msgstr "Start nu uw gratis %s dag trial"
|
934 |
|
935 |
+
#: class-bws-settings.php:760
|
936 |
msgid ""
|
937 |
"If necessary, you can check if the license key is correct or reenter it in "
|
938 |
"the field below."
|
940 |
"Indien nodig kunt u controleren of de licentiesleutel juist is of u voert "
|
941 |
"het opnieuw in het onderstaande veld."
|
942 |
|
943 |
+
#: class-bws-settings.php:765
|
944 |
msgid "Manage License Settings"
|
945 |
msgstr "Beheer licentie instellingen"
|
946 |
|
947 |
+
#: class-bws-settings.php:767
|
948 |
msgid "Login to Client Area"
|
949 |
msgstr "Inloggen op client gebied"
|
950 |
|
951 |
+
#: class-bws-settings.php:769
|
952 |
msgid ""
|
953 |
"Manage active licenses, download BWS products, and view your payment history "
|
954 |
"using BestWebSoft Client Area."
|
956 |
"Beheer actieve licenties, download BWS-producten en bekijk uw de "
|
957 |
"betalingsgeschiedenis met behulp van de BestWebSoft Klanten Omgeving."
|
958 |
|
959 |
+
#: class-bws-settings.php:824 class-bws-settings.php:927 deprecated.php:141
|
960 |
#: deprecated.php:360
|
961 |
msgid "This license key is bound to another site."
|
962 |
msgstr "Deze licentiesleutel is gebonden aan een andere website."
|
963 |
|
964 |
+
#: class-bws-settings.php:826 deprecated.php:143
|
965 |
msgid ""
|
966 |
"This license key is valid, but Your license has expired. If you want to "
|
967 |
"update our plugin in future, you should extend the license."
|
969 |
"Deze licentiesleutel is geldig, maar uw licentie is verlopen. Als u onze "
|
970 |
"plugin in de toekomst wilt bijwerken, moet u de licentie verlengen."
|
971 |
|
972 |
+
#: class-bws-settings.php:828 deprecated.php:145
|
973 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
974 |
msgstr "Helaas heeft u het aantal beschikbare pogingen overschreden."
|
975 |
|
976 |
+
#: class-bws-settings.php:830 deprecated.php:147
|
977 |
msgid ""
|
978 |
"Unfortunately, the Pro Trial licence was already installed to this domain. "
|
979 |
"The Pro Trial license can be installed only once."
|
981 |
"Helaas, de Pro Trial licentie was al geïnstalleerd op dit domein. De Pro "
|
982 |
"Trial License kan helaas maar eenmalig gebruikt worden."
|
983 |
|
984 |
+
#: class-bws-settings.php:835 deprecated.php:151
|
985 |
msgid "The Pro Trial license key is valid."
|
986 |
msgstr "De Pro Trial licentiesleutel is geldig."
|
987 |
|
988 |
+
#: class-bws-settings.php:843 deprecated.php:159 deprecated.php:246
|
989 |
#, php-format
|
990 |
msgid ""
|
991 |
"In order to continue using the plugin it is necessary to buy a %s license."
|
992 |
msgstr ""
|
993 |
"Om door te gaan met de plugin is het nodig om een %s licentie te kopen."
|
994 |
|
995 |
+
#: class-bws-settings.php:1040 deprecated.php:463
|
996 |
msgid "Please, enter Your license key"
|
997 |
msgstr "Vul alstublieft uw licentiesleutel in"
|
998 |
|
999 |
+
#: class-bws-settings.php:1052
|
1000 |
msgid "Need Help?"
|
1001 |
msgstr "Hulp nodig?"
|
1002 |
|
1003 |
+
#: class-bws-settings.php:1054
|
1004 |
msgid "Read the Instruction"
|
1005 |
msgstr "Lees de instructie"
|
1006 |
|
1007 |
+
#: class-bws-settings.php:1058
|
1008 |
msgid "Watch the Video"
|
1009 |
msgstr "Bekijk de Video"
|
1010 |
|
1011 |
+
#: class-bws-settings.php:1069
|
1012 |
msgid "Start Your Free Trial"
|
1013 |
msgstr "Begin uw gratis proefperiode"
|
1014 |
|
1015 |
+
#: deactivation-form.php:26
|
1016 |
+
msgid "Need help? We are ready to answer your questions."
|
1017 |
+
msgstr ""
|
1018 |
+
|
1019 |
+
#: deactivation-form.php:26
|
1020 |
+
msgid "Contact Support"
|
1021 |
+
msgstr ""
|
1022 |
+
|
1023 |
+
#: deactivation-form.php:31
|
1024 |
+
msgid "The plugin is not working"
|
1025 |
+
msgstr ""
|
1026 |
+
|
1027 |
+
#: deactivation-form.php:33
|
1028 |
+
msgid "Kindly share what didn't work so we can fix it in future updates..."
|
1029 |
+
msgstr ""
|
1030 |
+
|
1031 |
+
#: deactivation-form.php:37
|
1032 |
+
msgid "The plugin didn't work as expected"
|
1033 |
+
msgstr ""
|
1034 |
+
|
1035 |
+
#: deactivation-form.php:39
|
1036 |
+
msgid "What did you expect?"
|
1037 |
+
msgstr ""
|
1038 |
+
|
1039 |
+
#: deactivation-form.php:43
|
1040 |
+
msgid "The plugin suddenly stopped working"
|
1041 |
+
msgstr ""
|
1042 |
+
|
1043 |
+
#: deactivation-form.php:50
|
1044 |
+
msgid "The plugin broke my site"
|
1045 |
+
msgstr ""
|
1046 |
+
|
1047 |
+
#: deactivation-form.php:57
|
1048 |
+
msgid "I couldn't understand how to get it work"
|
1049 |
+
msgstr ""
|
1050 |
+
|
1051 |
+
#: deactivation-form.php:64
|
1052 |
+
msgid "I found a better plugin"
|
1053 |
+
msgstr ""
|
1054 |
+
|
1055 |
+
#: deactivation-form.php:66
|
1056 |
+
msgid "What's the plugin name?"
|
1057 |
+
msgstr ""
|
1058 |
+
|
1059 |
+
#: deactivation-form.php:70
|
1060 |
+
msgid "The plugin is great, but I need specific feature that you don't support"
|
1061 |
+
msgstr ""
|
1062 |
+
|
1063 |
+
#: deactivation-form.php:72
|
1064 |
+
msgid "What feature?"
|
1065 |
+
msgstr ""
|
1066 |
+
|
1067 |
+
#: deactivation-form.php:76
|
1068 |
+
msgid "I no longer need the plugin"
|
1069 |
+
msgstr ""
|
1070 |
+
|
1071 |
+
#: deactivation-form.php:82
|
1072 |
+
msgid "It's a temporary deactivation, I'm just debugging an issue"
|
1073 |
+
msgstr ""
|
1074 |
+
|
1075 |
+
#: deactivation-form.php:88
|
1076 |
+
msgid "Other"
|
1077 |
+
msgstr "Anders"
|
1078 |
+
|
1079 |
+
#: deactivation-form.php:122
|
1080 |
+
msgid "Quick Feedback"
|
1081 |
+
msgstr ""
|
1082 |
+
|
1083 |
+
#: deactivation-form.php:123
|
1084 |
+
msgid "If you have a moment, please let us know why you are deactivating"
|
1085 |
+
msgstr ""
|
1086 |
+
|
1087 |
+
#: deactivation-form.php:128
|
1088 |
+
msgid "Anonymous feedback"
|
1089 |
+
msgstr ""
|
1090 |
+
|
1091 |
+
#: deactivation-form.php:130
|
1092 |
+
msgid "Cancel"
|
1093 |
+
msgstr ""
|
1094 |
+
|
1095 |
+
#: deactivation-form.php:230
|
1096 |
+
msgid "Processing"
|
1097 |
+
msgstr ""
|
1098 |
+
|
1099 |
+
#: deactivation-form.php:259
|
1100 |
+
msgid "Submit & Deactivate"
|
1101 |
+
msgstr ""
|
1102 |
+
|
1103 |
+
#: deactivation-form.php:276
|
1104 |
+
msgid "Please tell us the reason so we can improve it."
|
1105 |
+
msgstr ""
|
1106 |
+
|
1107 |
+
#: deactivation-form.php:344
|
1108 |
+
msgid "Deactivate"
|
1109 |
+
msgstr ""
|
1110 |
+
|
1111 |
#: deprecated.php:93
|
1112 |
msgid "System Status"
|
1113 |
msgstr "Systeem status"
|
1251 |
msgid "SMM"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: product_list.php:23
|
1255 |
msgid ""
|
1256 |
"Protect WordPress website forms from spam entries by means of math logic."
|
1257 |
msgstr ""
|
1258 |
|
1259 |
+
#: product_list.php:35
|
1260 |
msgid "Create your personal car rental/booking and reservation website."
|
1261 |
msgstr ""
|
1262 |
|
1263 |
+
#: product_list.php:45
|
1264 |
msgid ""
|
1265 |
"Allow customers to reach you using secure contact form plugin any website "
|
1266 |
"must have."
|
1267 |
msgstr ""
|
1268 |
|
1269 |
+
#: product_list.php:55
|
1270 |
msgid "Add unlimited number of contact forms to WordPress website."
|
1271 |
msgstr ""
|
1272 |
|
1273 |
+
#: product_list.php:65
|
1274 |
msgid "Save and manage Contact Form messages. Never lose important data."
|
1275 |
msgstr ""
|
1276 |
|
1277 |
+
#: product_list.php:75
|
1278 |
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1279 |
msgstr ""
|
1280 |
|
1281 |
+
#: product_list.php:82
|
1282 |
msgid "Add custom fields to WordPress website search results."
|
1283 |
msgstr ""
|
1284 |
|
1285 |
+
#: product_list.php:89
|
1286 |
msgid ""
|
1287 |
"Add custom post types and taxonomies to WordPress website search results."
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: product_list.php:99
|
1291 |
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1292 |
msgstr ""
|
1293 |
|
1294 |
+
#: product_list.php:106
|
|
|
|
|
|
|
|
|
|
|
|
|
1295 |
msgid ""
|
1296 |
"Get latest error log messages to diagnose website problems. Define and fix "
|
1297 |
"issues faster."
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: product_list.php:113
|
1301 |
msgid ""
|
1302 |
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1303 |
"widgets."
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: product_list.php:123
|
1307 |
msgid ""
|
1308 |
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1309 |
"clicks."
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: product_list.php:133
|
|
|
|
|
|
|
|
|
|
|
|
|
1313 |
msgid ""
|
1314 |
"Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
|
1315 |
"posts, pages and widgets."
|
1316 |
msgstr ""
|
1317 |
|
1318 |
+
#: product_list.php:143
|
1319 |
msgid ""
|
1320 |
"Stronger security solution which protects your WordPress website from hacks "
|
1321 |
"and unauthorized login attempts."
|
1322 |
msgstr ""
|
1323 |
|
1324 |
+
#: product_list.php:153
|
1325 |
msgid ""
|
1326 |
"Add Adsense ads to WordPress website pages, posts, custom posts, search "
|
1327 |
"results, categories, tags, and widgets."
|
1328 |
msgstr ""
|
1329 |
|
1330 |
+
#: product_list.php:163
|
1331 |
msgid "Add Google Analytics code to WordPress website and track basic stats."
|
1332 |
msgstr ""
|
1333 |
|
1334 |
+
#: product_list.php:173
|
1335 |
msgid ""
|
1336 |
"Protect WordPress website forms from spam entries with Google Captcha "
|
1337 |
"(reCaptcha)."
|
1338 |
msgstr ""
|
1339 |
|
1340 |
+
#: product_list.php:183
|
1341 |
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1342 |
msgstr ""
|
1343 |
|
1344 |
+
#: product_list.php:193
|
1345 |
msgid ""
|
1346 |
"Generate and add XML sitemap to WordPress website. Help search engines index "
|
1347 |
"your blog."
|
1348 |
msgstr ""
|
1349 |
|
1350 |
+
#: product_list.php:203
|
1351 |
msgid ""
|
1352 |
"Replace external WordPress website links with Google shortlinks and track "
|
1353 |
"click stats."
|
1354 |
msgstr ""
|
1355 |
|
1356 |
+
#: product_list.php:210
|
1357 |
msgid ""
|
1358 |
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1359 |
"hostnames, etc."
|
1360 |
msgstr ""
|
1361 |
|
1362 |
+
#: product_list.php:220
|
1363 |
msgid ""
|
1364 |
"Create your personal job board and listing WordPress website. Search jobs, "
|
1365 |
"submit CV/resumes, choose candidates."
|
1366 |
msgstr ""
|
1367 |
|
1368 |
+
#: product_list.php:227
|
1369 |
msgid ""
|
1370 |
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1371 |
"attempts."
|
1372 |
msgstr ""
|
1373 |
|
1374 |
+
#: product_list.php:237
|
1375 |
msgid ""
|
1376 |
"Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
|
1377 |
"5 plugins included – profile, insider, etc."
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: product_list.php:247
|
1381 |
msgid ""
|
1382 |
"Translate WordPress website content to other languages manually. Create "
|
1383 |
"multilingual pages, posts, widgets, menus, etc."
|
1384 |
msgstr ""
|
1385 |
|
1386 |
+
#: product_list.php:257
|
1387 |
msgid ""
|
1388 |
"Add customizable pagination to WordPress website. Split long content to "
|
1389 |
"multiple pages for better navigation."
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: product_list.php:267
|
1393 |
msgid ""
|
1394 |
"Generate PDF files and print WordPress posts/pages. Customize document "
|
1395 |
"header/footer styles and appearance."
|
1396 |
msgstr ""
|
1397 |
|
1398 |
+
#: product_list.php:277
|
1399 |
msgid ""
|
1400 |
"Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
|
1401 |
"Profile) to WordPress posts, pages and widgets."
|
1402 |
msgstr ""
|
1403 |
|
1404 |
+
#: product_list.php:287
|
1405 |
msgid ""
|
1406 |
"Create your personal portfolio WordPress website. Manage and showcase past "
|
1407 |
"projects to get more clients."
|
1408 |
msgstr ""
|
1409 |
|
1410 |
+
#: product_list.php:297
|
1411 |
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1412 |
msgstr ""
|
1413 |
|
1414 |
+
#: product_list.php:304
|
1415 |
msgid ""
|
1416 |
"Add extra fields to default WordPress user profile. The easiest way to "
|
1417 |
"create and manage additional custom values."
|
1418 |
msgstr ""
|
1419 |
|
1420 |
+
#: product_list.php:311
|
1421 |
msgid ""
|
1422 |
"Add and display HTML advertisement banner on WordPress website. Customize "
|
1423 |
"bar styles and appearance."
|
1424 |
msgstr ""
|
1425 |
|
1426 |
+
#: product_list.php:321
|
1427 |
msgid ""
|
1428 |
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1429 |
"widgets."
|
1430 |
msgstr ""
|
1431 |
|
1432 |
+
#: product_list.php:328
|
1433 |
msgid ""
|
1434 |
"Add rating plugin to your WordPress website to receive feedback from your "
|
1435 |
"customers."
|
1436 |
msgstr ""
|
1437 |
|
1438 |
+
#: product_list.php:335
|
1439 |
msgid ""
|
1440 |
"Create your personal real estate WordPress website. Sell, rent and buy "
|
1441 |
"properties. Add, search and browse listings easily."
|
1442 |
msgstr ""
|
1443 |
|
1444 |
+
#: product_list.php:345
|
|
|
|
|
|
|
|
|
|
|
|
|
1445 |
msgid ""
|
1446 |
"Add related, featured, latest, and popular posts to your WordPress website. "
|
1447 |
"Connect your blog readers with a relevant content."
|
1448 |
msgstr ""
|
1449 |
|
1450 |
+
#: product_list.php:352
|
1451 |
msgid ""
|
1452 |
"Send bulk email messages to WordPress users. Custom templates, advanced "
|
1453 |
"settings and detailed reports."
|
1454 |
msgstr ""
|
1455 |
|
1456 |
+
#: product_list.php:362
|
1457 |
msgid ""
|
1458 |
"The best responsive slider plugin for your WordPress website. Create "
|
1459 |
"beautifully animated slides just in a few clicks."
|
1460 |
msgstr ""
|
1461 |
|
1462 |
+
#: product_list.php:369
|
1463 |
msgid ""
|
1464 |
"Configure SMTP server to receive email messages from WordPress to Gmail, "
|
1465 |
"Yahoo, Hotmail and other services."
|
1466 |
msgstr ""
|
1467 |
|
1468 |
+
#: product_list.php:376
|
1469 |
msgid ""
|
1470 |
"Add social media buttons and widgets to WordPress posts, pages and widgets. "
|
1471 |
"FB, Twitter, G+1, Pinterest, LinkedIn."
|
1472 |
msgstr ""
|
1473 |
|
1474 |
+
#: product_list.php:386
|
1475 |
msgid ""
|
1476 |
"Add social media login, registration, and commenting to your WordPress "
|
1477 |
"website."
|
1478 |
msgstr ""
|
1479 |
|
1480 |
+
#: product_list.php:393
|
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 |
+
#: product_list.php:403
|
1487 |
msgid ""
|
1488 |
"Add testimonials and feedbacks from your customers to WordPress website "
|
1489 |
"posts, pages, and widgets."
|
1490 |
msgstr ""
|
1491 |
|
1492 |
+
#: product_list.php:410
|
1493 |
msgid ""
|
1494 |
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1495 |
"attendance and generate reports."
|
1496 |
msgstr ""
|
1497 |
|
1498 |
+
#: product_list.php:420
|
1499 |
msgid ""
|
1500 |
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1501 |
"and pages."
|
1502 |
msgstr ""
|
1503 |
|
1504 |
+
#: product_list.php:430
|
1505 |
msgid ""
|
1506 |
"Automatically check and update WordPress website core with all installed "
|
1507 |
"plugins and themes to the latest versions."
|
1508 |
msgstr ""
|
1509 |
|
1510 |
+
#: product_list.php:440
|
1511 |
msgid ""
|
1512 |
"Powerful user role management plugin for WordPress website. Create, edit, "
|
1513 |
"copy, and delete user roles."
|
1514 |
msgstr ""
|
1515 |
|
1516 |
+
#: product_list.php:450
|
1517 |
msgid ""
|
1518 |
"Display live count of online visitors who are currently browsing your "
|
1519 |
"WordPress website."
|
1520 |
msgstr ""
|
1521 |
|
1522 |
+
#: product_list.php:460
|
1523 |
msgid ""
|
1524 |
"Backup and export Zendesk Help Center content automatically to your "
|
1525 |
"WordPress website database."
|
1526 |
msgstr ""
|
1527 |
|
1528 |
+
#~ msgid ""
|
1529 |
+
#~ "You can use one license of the Pro plugin for one domain only. Please "
|
1530 |
+
#~ "check and edit your license or domain if necessary using you personal "
|
1531 |
+
#~ "Client Area. We strongly recommend you to solve the problem within 24 "
|
1532 |
+
#~ "hours, otherwise the Pro plugin will be deactivated."
|
1533 |
+
#~ msgstr ""
|
1534 |
+
#~ "U kunt één licentie van de Pro-plugin gebruiken voor één domein. "
|
1535 |
+
#~ "Controleer en bewerk uw licentie of domein indien nodig op uw "
|
1536 |
+
#~ "persoonlijke klantenomgeving. We raden u aan om het probleem binnen 24 "
|
1537 |
+
#~ "uur op te lossen, anders wordt de Pro-plugin gedeactiveerd."
|
1538 |
+
|
1539 |
+
#~ msgid "Insert"
|
1540 |
+
#~ msgstr "Invoegen"
|
1541 |
+
|
1542 |
#~ msgid "Advertisement"
|
1543 |
#~ msgstr "Advertentie"
|
1544 |
|
1556 |
|
1557 |
#~ msgid "Utilities"
|
1558 |
#~ msgstr "Voorzieningen"
|
|
|
|
|
|
bws_menu/languages/bestwebsoft-pl_PL.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-pl_PL.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
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"
|
@@ -18,11 +18,11 @@ msgstr ""
|
|
18 |
"|| n%100>=20) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: bws_functions.php:
|
22 |
msgid "requires"
|
23 |
msgstr "wymaga wersja"
|
24 |
|
25 |
-
#: bws_functions.php:
|
26 |
msgid ""
|
27 |
"or higher, that is why it has been deactivated! Please upgrade WordPress and "
|
28 |
"try again."
|
@@ -30,62 +30,57 @@ msgstr ""
|
|
30 |
"lub nowsza, dlatego wtyczka została wyłączona. Zaktualizuj WordPress i "
|
31 |
"spróbuj ponownie."
|
32 |
|
33 |
-
#: bws_functions.php:
|
34 |
msgid "Back to the WordPress"
|
35 |
msgstr "Wróć do WordPress"
|
36 |
|
37 |
-
#: bws_functions.php:
|
38 |
msgid "Plugins page"
|
39 |
msgstr "Wtyczki"
|
40 |
|
41 |
-
#: bws_functions.php:
|
42 |
#, fuzzy
|
43 |
msgid "Like the plugin?"
|
44 |
msgstr "Oceń wtyczkę"
|
45 |
|
46 |
-
#: bws_functions.php:
|
47 |
msgid "Rate it"
|
48 |
msgstr ""
|
49 |
|
50 |
-
#: bws_functions.php:
|
51 |
msgid "Need help?"
|
52 |
msgstr "Potrzebujesz pomocy?"
|
53 |
|
54 |
-
#: bws_functions.php:
|
55 |
msgid "Visit Help Center"
|
56 |
msgstr ""
|
57 |
|
58 |
-
#: bws_functions.php:
|
59 |
#, fuzzy
|
60 |
msgid "Want to support the plugin?"
|
61 |
msgstr "Oceń wtyczkę"
|
62 |
|
63 |
-
#: bws_functions.php:
|
64 |
msgid "Donate"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: bws_functions.php:
|
68 |
msgid "WARNING: Illegal use notification"
|
69 |
msgstr "UWAGA: Odnotowano nielegalne użycie"
|
70 |
|
71 |
-
#: bws_functions.php:
|
72 |
msgid ""
|
73 |
"You can use one license of the Pro plugin for one domain only. Please check "
|
74 |
-
"and edit your license or domain if necessary using
|
75 |
-
"We strongly recommend you to solve the problem within 24 hours,
|
76 |
-
"the Pro plugin will be deactivated."
|
77 |
msgstr ""
|
78 |
-
"Licencja wersji PRO może być wykorzystywana tylko na jednej domenie. Proszę "
|
79 |
-
"sprawdź i edytuj klucz licencji lub domenę, jeśli to konieczne wykorzystaj "
|
80 |
-
"Panel Klienta. Zalecamy rozwiązanie tego problemu w przeciągu 24 godzin, w "
|
81 |
-
"przeciwnym wypadku wersja PRO zostanie zablokowana."
|
82 |
|
83 |
-
#: bws_functions.php:
|
84 |
-
#: class-bws-settings.php:143
|
85 |
msgid "Learn More"
|
86 |
msgstr "Dowiedz się więcej"
|
87 |
|
88 |
-
#: bws_functions.php:
|
89 |
#, fuzzy
|
90 |
msgid ""
|
91 |
"Notice: Your Pro Trial license has expired. To continue using the plugin, "
|
@@ -94,7 +89,7 @@ msgstr ""
|
|
94 |
"Uwaga: Testowa wersja PRO niestety wygasła. Aby kontynuować korzystanie z "
|
95 |
"naszej wtyczki powinieneś zakupić klucz licencji."
|
96 |
|
97 |
-
#: bws_functions.php:
|
98 |
#, fuzzy
|
99 |
msgid ""
|
100 |
"Your license has expired. To continue getting top-priority support and "
|
@@ -103,24 +98,24 @@ msgstr ""
|
|
103 |
"Twoja licencja wygasła. Aby podtrzymać szybki dostęp do pomocy i "
|
104 |
"aktualizacji powinieneś przedłużyć licencję."
|
105 |
|
106 |
-
#: bws_functions.php:
|
107 |
msgid "Learn more"
|
108 |
msgstr "Dowiedz się więcej"
|
109 |
|
110 |
-
#: bws_functions.php:
|
111 |
#, php-format
|
112 |
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
113 |
msgstr "Uwaga: Wykorzystujesz próbną licencję wersji PRO dla %s."
|
114 |
|
115 |
-
#: bws_functions.php:
|
116 |
msgid "Notice: You are using the Pro Trial license of plugin."
|
117 |
msgstr "Uwaga: Wykorzystywana jest próbna licencja wtyczki."
|
118 |
|
119 |
-
#: bws_functions.php:
|
120 |
msgid "The Pro Trial license will expire on"
|
121 |
msgstr "Licencja próbna wygaśnie"
|
122 |
|
123 |
-
#: bws_functions.php:
|
124 |
msgid ""
|
125 |
"or higher! We do not guarantee that our plugin will work correctly. Please "
|
126 |
"upgrade to WordPress latest version."
|
@@ -128,75 +123,75 @@ msgstr ""
|
|
128 |
"lub nowsza! Nie gwarantujemy, że nasza wtyczka będzie działała poprawnie. "
|
129 |
"Proszę zaktualizować WordPress do najnowszej wersji."
|
130 |
|
131 |
-
#: bws_functions.php:
|
132 |
#, php-format
|
133 |
msgid "Thank you for installing %s plugin!"
|
134 |
msgstr ""
|
135 |
|
136 |
-
#: bws_functions.php:
|
137 |
msgid "Let's get started"
|
138 |
msgstr "Zaczynajmny"
|
139 |
|
140 |
-
#: bws_functions.php:
|
141 |
#: bws_menu.php:559
|
142 |
msgid "Settings"
|
143 |
msgstr "Ustawienia"
|
144 |
|
145 |
-
#: bws_functions.php:
|
146 |
-
#: class-bws-settings.php:
|
147 |
msgid "or"
|
148 |
msgstr "lub"
|
149 |
|
150 |
-
#: bws_functions.php:
|
151 |
msgid "Add New"
|
152 |
msgstr "Dodaj nowy"
|
153 |
|
154 |
-
#: bws_functions.php:
|
155 |
-
#: bws_functions.php:
|
156 |
msgid "Close notice"
|
157 |
msgstr "Zamknij powiadomienie"
|
158 |
|
159 |
-
#: bws_functions.php:
|
160 |
#, fuzzy
|
161 |
msgid "Thank you for installing plugins by BestWebSoft!"
|
162 |
msgstr "Dziękujemy za instalację"
|
163 |
|
164 |
-
#: bws_functions.php:
|
165 |
#, fuzzy
|
166 |
msgid "More Details"
|
167 |
msgstr "Szczegóły"
|
168 |
|
169 |
-
#: bws_functions.php:
|
170 |
#, fuzzy
|
171 |
msgid "Less Details"
|
172 |
msgstr "Szczegóły"
|
173 |
|
174 |
-
#: bws_functions.php:
|
175 |
msgid "Deprecated function(-s) is used on the site here:"
|
176 |
msgstr ""
|
177 |
|
178 |
-
#: bws_functions.php:
|
179 |
msgid ""
|
180 |
"This function(-s) will be removed over time. Please update the product(-s)."
|
181 |
msgstr ""
|
182 |
|
183 |
-
#: bws_functions.php:
|
184 |
msgid "It’s time to upgrade your"
|
185 |
msgstr "Czas by zaktualizować"
|
186 |
|
187 |
-
#: bws_functions.php:
|
188 |
msgid "to"
|
189 |
msgstr "do"
|
190 |
|
191 |
-
#: bws_functions.php:
|
192 |
msgid "version!"
|
193 |
msgstr "wersji!"
|
194 |
|
195 |
-
#: bws_functions.php:
|
196 |
msgid "Extend standard plugin functionality with new great options."
|
197 |
msgstr "Rozszerz podstawowe funkcje wtyczki o nowe wspaniałe opcje."
|
198 |
|
199 |
-
#: bws_functions.php:
|
200 |
#, fuzzy, php-format
|
201 |
msgid ""
|
202 |
"Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
|
@@ -205,36 +200,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:
|
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,85 +238,81 @@ 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 |
msgid "Add BWS Shortcode"
|
248 |
msgstr ""
|
249 |
|
250 |
-
#: bws_functions.php:
|
251 |
msgid "Add BWS Plugins Shortcode"
|
252 |
msgstr "Dodaj BWS Shortcode"
|
253 |
|
254 |
-
#: bws_functions.php:
|
255 |
#, fuzzy
|
256 |
msgid "Add shortcode"
|
257 |
msgstr "Dodaj BWS Shortcode"
|
258 |
|
259 |
-
#: bws_functions.php:
|
260 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
261 |
msgstr ""
|
262 |
|
263 |
-
#: bws_functions.php:
|
264 |
msgid "Close"
|
265 |
msgstr "Zamknij"
|
266 |
|
267 |
-
#: bws_functions.php:
|
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:
|
275 |
msgid "Yes, restore all settings"
|
276 |
msgstr "Tak, przywróć wszystkie ustawienia"
|
277 |
|
278 |
-
#: bws_functions.php:
|
279 |
msgid "No, go back to the settings page"
|
280 |
msgstr "Nie, wróć do ustawień"
|
281 |
|
282 |
-
#: bws_functions.php:
|
283 |
msgid "Plugin"
|
284 |
msgstr "Wtyczka"
|
285 |
|
286 |
-
#: bws_functions.php:
|
287 |
msgid "Shortcode settings"
|
288 |
msgstr "Ustawienia shortcode"
|
289 |
|
290 |
-
#: bws_functions.php:
|
291 |
msgid "The shortcode will be inserted"
|
292 |
msgstr "Shortcode zostanie umieszczony"
|
293 |
|
294 |
-
#: bws_functions.php:
|
295 |
-
msgid "Insert"
|
296 |
-
msgstr "Umieść"
|
297 |
-
|
298 |
-
#: bws_functions.php:912
|
299 |
msgid "FAQ"
|
300 |
msgstr "FAQ"
|
301 |
|
302 |
-
#: bws_functions.php:
|
303 |
msgid "For more information:"
|
304 |
msgstr ""
|
305 |
|
306 |
-
#: bws_functions.php:
|
307 |
msgid "Documentation"
|
308 |
msgstr ""
|
309 |
|
310 |
-
#: bws_functions.php:
|
311 |
msgid "Video Instructions"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: bws_functions.php:
|
315 |
#, fuzzy
|
316 |
msgid "Submit a Request"
|
317 |
msgstr "送信ボタン"
|
318 |
|
319 |
-
#: bws_menu.php:101 class-bws-settings.php:
|
320 |
msgid "Wrong license key"
|
321 |
msgstr "Niepoprawny klucz licencji"
|
322 |
|
323 |
-
#: bws_menu.php:122 class-bws-settings.php:
|
324 |
-
#: class-bws-settings.php:
|
325 |
#: deprecated.php:352
|
326 |
msgid ""
|
327 |
"Something went wrong. Please try again later. If the error appears again, "
|
@@ -330,13 +321,13 @@ msgstr ""
|
|
330 |
"Coś poszło nie tak. Spróbuj ponownie później. Jeśli błąd pojawi się ponownie "
|
331 |
"proszę skontaktować się z nami"
|
332 |
|
333 |
-
#: bws_menu.php:122 class-bws-settings.php:
|
334 |
-
#: class-bws-settings.php:
|
335 |
#: deprecated.php:352
|
336 |
msgid "We are sorry for inconvenience."
|
337 |
msgstr "Przepraszamy za niedogodności."
|
338 |
|
339 |
-
#: bws_menu.php:128 class-bws-settings.php:
|
340 |
#: deprecated.php:139 deprecated.php:358
|
341 |
msgid "Wrong license key."
|
342 |
msgstr "Niepoprawny klucz licencji"
|
@@ -356,7 +347,7 @@ msgstr ""
|
|
356 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
357 |
msgstr "Niestety, przekroczono dzienną liczbę dostępnych prób."
|
358 |
|
359 |
-
#: bws_menu.php:134 class-bws-settings.php:
|
360 |
#, fuzzy, php-format
|
361 |
msgid ""
|
362 |
"Unfortunately, Your license has expired. To continue getting top-priority "
|
@@ -365,7 +356,7 @@ msgstr ""
|
|
365 |
"Niestety, Twoja licencja wygasła. By nadal korzystać z szybkiego dostępu do "
|
366 |
"wsparcia oraz aktualizacji powinieneś przedłużyć licencję."
|
367 |
|
368 |
-
#: bws_menu.php:136 class-bws-settings.php:
|
369 |
msgid ""
|
370 |
"Unfortunately, the Pro licence was already installed to this domain. The Pro "
|
371 |
"Trial license can be installed only once."
|
@@ -373,11 +364,11 @@ msgstr ""
|
|
373 |
"Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
|
374 |
"może być wykorzystana tylko raz."
|
375 |
|
376 |
-
#: bws_menu.php:142 class-bws-settings.php:
|
377 |
msgid "The license key is valid."
|
378 |
msgstr "Klucz licencji jest poprawny"
|
379 |
|
380 |
-
#: bws_menu.php:144 class-bws-settings.php:
|
381 |
msgid "Your license will expire on"
|
382 |
msgstr "Twoja licencja wygaśnie"
|
383 |
|
@@ -386,7 +377,7 @@ msgstr "Twoja licencja wygaśnie"
|
|
386 |
msgid "Congratulations! Pro Membership license is activated successfully."
|
387 |
msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
|
388 |
|
389 |
-
#: bws_menu.php:153 class-bws-settings.php:
|
390 |
msgid ""
|
391 |
"Something went wrong. Try again later or upload the plugin manually. We are "
|
392 |
"sorry for inconvenience."
|
@@ -571,7 +562,7 @@ msgstr "Wtyczki"
|
|
571 |
msgid "Themes"
|
572 |
msgstr "Motywy"
|
573 |
|
574 |
-
#: bws_menu.php:309 bws_menu.php:313 bws_menu.php:
|
575 |
msgid "System status"
|
576 |
msgstr "Status systemu"
|
577 |
|
@@ -593,7 +584,7 @@ msgstr ""
|
|
593 |
msgid "Subscribe to Pro Membership"
|
594 |
msgstr "有効なテーマ"
|
595 |
|
596 |
-
#: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:
|
597 |
#: deprecated.php:227
|
598 |
msgid "Check license key"
|
599 |
msgstr "Sprawdź klucz licencji"
|
@@ -604,7 +595,7 @@ msgid "Enter your license key"
|
|
604 |
msgstr "Podaj klucz licencji"
|
605 |
|
606 |
#: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
|
607 |
-
#: class-bws-settings.php:
|
608 |
#: deprecated.php:629 deprecated.php:700 deprecated.php:709
|
609 |
msgid "Activate"
|
610 |
msgstr "Aktywuj"
|
@@ -643,8 +634,8 @@ msgid "Downloading install package from"
|
|
643 |
msgstr ""
|
644 |
|
645 |
#: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
|
646 |
-
#: class-bws-settings.php:
|
647 |
-
#: class-bws-settings.php:
|
648 |
#: deprecated.php:431
|
649 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
650 |
msgstr ""
|
@@ -660,13 +651,13 @@ msgstr ""
|
|
660 |
msgid "Installing the plugin"
|
661 |
msgstr "Zainstalowane"
|
662 |
|
663 |
-
#: bws_menu.php:417 class-bws-settings.php:
|
664 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
665 |
msgstr ""
|
666 |
"Otwieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
|
667 |
"manualnie"
|
668 |
|
669 |
-
#: bws_menu.php:424 class-bws-settings.php:
|
670 |
msgid ""
|
671 |
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
672 |
"plugin manually"
|
@@ -678,7 +669,7 @@ msgstr ""
|
|
678 |
msgid "The plugin %s is successfully installed."
|
679 |
msgstr ""
|
680 |
|
681 |
-
#: bws_menu.php:434 class-bws-settings.php:
|
682 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
683 |
msgstr ""
|
684 |
"Folder uploadu jest chroniony przez zapisem. Proszę dodać wtyczkę manualnie"
|
@@ -696,7 +687,7 @@ msgstr ""
|
|
696 |
msgid "All"
|
697 |
msgstr "Wszystko"
|
698 |
|
699 |
-
#: bws_menu.php:450 bws_menu.php:
|
700 |
msgid "Installed"
|
701 |
msgstr "Zainstalowane"
|
702 |
|
@@ -732,7 +723,7 @@ msgstr "Aktualizuj do wersji %s"
|
|
732 |
msgid "Install Now"
|
733 |
msgstr "Instaluj teraz"
|
734 |
|
735 |
-
#: bws_menu.php:549 class-bws-settings.php:
|
736 |
msgid "Upgrade to Pro"
|
737 |
msgstr ""
|
738 |
|
@@ -749,204 +740,204 @@ msgstr "Zainstalowane"
|
|
749 |
msgid "Nothing found. Try another criteria."
|
750 |
msgstr ""
|
751 |
|
752 |
-
#: bws_menu.php:621
|
753 |
#, php-format
|
754 |
msgid "By %s"
|
755 |
msgstr "Od %s"
|
756 |
|
757 |
-
#: bws_menu.php:
|
758 |
msgid "Already Installed"
|
759 |
msgstr "Zainstalowane"
|
760 |
|
761 |
-
#: bws_menu.php:
|
762 |
msgid "Browse Free WordPress Themes"
|
763 |
msgstr ""
|
764 |
|
765 |
-
#: bws_menu.php:
|
766 |
msgid "Send to support"
|
767 |
msgstr "Wyślij do supportu"
|
768 |
|
769 |
-
#: bws_menu.php:
|
770 |
msgid "Send to custom email »"
|
771 |
msgstr "Prześlij na własny adres »"
|
772 |
|
773 |
-
#: class-bws-settings.php:
|
774 |
msgid "Information"
|
775 |
msgstr ""
|
776 |
|
777 |
-
#: class-bws-settings.php:
|
778 |
#, fuzzy
|
779 |
msgid "Inactive"
|
780 |
msgstr "Nieaktywne wtyczki"
|
781 |
|
782 |
-
#: class-bws-settings.php:
|
783 |
msgid "Expired"
|
784 |
msgstr ""
|
785 |
|
786 |
-
#: class-bws-settings.php:
|
787 |
#, php-format
|
788 |
msgid "%s day(-s) left"
|
789 |
msgstr ""
|
790 |
|
791 |
-
#: class-bws-settings.php:
|
792 |
#, fuzzy, php-format
|
793 |
msgid "Expired on %s"
|
794 |
msgstr "wygasa"
|
795 |
|
796 |
-
#: class-bws-settings.php:
|
797 |
msgid "Renew Now"
|
798 |
msgstr ""
|
799 |
|
800 |
-
#: class-bws-settings.php:
|
801 |
#, fuzzy
|
802 |
msgid "Active"
|
803 |
msgstr "Aktywuj"
|
804 |
|
805 |
-
#: class-bws-settings.php:
|
806 |
#, fuzzy
|
807 |
msgid "License"
|
808 |
msgstr "Niepoprawny klucz licencji"
|
809 |
|
810 |
-
#: class-bws-settings.php:
|
811 |
#, fuzzy
|
812 |
msgid "Status"
|
813 |
msgstr "Status systemu"
|
814 |
|
815 |
-
#: class-bws-settings.php:
|
816 |
#, fuzzy
|
817 |
msgid "Version"
|
818 |
msgstr "wersji!"
|
819 |
|
820 |
-
#: class-bws-settings.php:
|
821 |
#, fuzzy
|
822 |
msgid "All plugin settings were restored."
|
823 |
msgstr "Ustawienia wtyczki zostały zmienione."
|
824 |
|
825 |
-
#: class-bws-settings.php:
|
826 |
msgid "Custom Code"
|
827 |
msgstr ""
|
828 |
|
829 |
-
#: class-bws-settings.php:
|
830 |
msgid "You do not have sufficient permissions to edit plugins for this site."
|
831 |
msgstr ""
|
832 |
|
833 |
-
#: class-bws-settings.php:
|
834 |
msgid "These styles will be added to the header on all pages of your site."
|
835 |
msgstr ""
|
836 |
|
837 |
-
#: class-bws-settings.php:
|
838 |
#, php-format
|
839 |
msgid ""
|
840 |
"This PHP code will be hooked to the %s action and will be printed on front "
|
841 |
"end only."
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: class-bws-settings.php:
|
845 |
msgid "These code will be added to the header on all pages of your site."
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: class-bws-settings.php:
|
849 |
#, php-format
|
850 |
msgid ""
|
851 |
"You need to make this files writable before you can save your changes. See "
|
852 |
"%s the Codex %s for more information."
|
853 |
msgstr ""
|
854 |
|
855 |
-
#: class-bws-settings.php:
|
856 |
msgid "Browsing"
|
857 |
msgstr ""
|
858 |
|
859 |
-
#: class-bws-settings.php:
|
860 |
#, php-format
|
861 |
msgid "Activate custom %s code."
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: class-bws-settings.php:
|
865 |
#, fuzzy, php-format
|
866 |
msgid "Learn more about %s"
|
867 |
msgstr "Dowiedz się więcej"
|
868 |
|
869 |
-
#: class-bws-settings.php:
|
870 |
msgid "Miscellaneous Settings"
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: class-bws-settings.php:
|
874 |
#, php-format
|
875 |
msgid ""
|
876 |
"It is prohibited to change %s settings on this site in the %s network "
|
877 |
"settings."
|
878 |
msgstr ""
|
879 |
|
880 |
-
#: class-bws-settings.php:
|
881 |
#, php-format
|
882 |
msgid ""
|
883 |
"It is prohibited to view %s settings on this site in the %s network settings."
|
884 |
msgstr ""
|
885 |
|
886 |
-
#: class-bws-settings.php:
|
887 |
#, fuzzy
|
888 |
msgid "Pro Options"
|
889 |
msgstr "Pro Plugins"
|
890 |
|
891 |
-
#: class-bws-settings.php:
|
892 |
msgid "Enable to display plugin Pro options."
|
893 |
msgstr ""
|
894 |
|
895 |
-
#: class-bws-settings.php:
|
896 |
msgid "Track Usage"
|
897 |
msgstr ""
|
898 |
|
899 |
-
#: class-bws-settings.php:
|
900 |
msgid ""
|
901 |
"Enable to allow tracking plugin usage anonymously in order to make it better."
|
902 |
msgstr ""
|
903 |
|
904 |
-
#: class-bws-settings.php:
|
905 |
#, fuzzy
|
906 |
msgid "Default Settings"
|
907 |
msgstr "Ustawienia"
|
908 |
|
909 |
-
#: class-bws-settings.php:
|
910 |
#, fuzzy
|
911 |
msgid "Restore Settings"
|
912 |
msgstr "Przywróć ustawienia"
|
913 |
|
914 |
-
#: class-bws-settings.php:
|
915 |
#, fuzzy
|
916 |
msgid "This will restore plugin settings to defaults."
|
917 |
msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
|
918 |
|
919 |
-
#: class-bws-settings.php:
|
920 |
msgid "Import / Export"
|
921 |
msgstr ""
|
922 |
|
923 |
-
#: class-bws-settings.php:
|
924 |
-
#: class-bws-settings.php:
|
925 |
#, fuzzy
|
926 |
msgid "License Key"
|
927 |
msgstr "Niepoprawny klucz licencji"
|
928 |
|
929 |
-
#: class-bws-settings.php:
|
930 |
#, fuzzy
|
931 |
msgid "Congratulations! Pro license is activated successfully."
|
932 |
msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
|
933 |
|
934 |
-
#: class-bws-settings.php:
|
935 |
#, php-format
|
936 |
msgid "You will be automatically redirected to the %s in %s seconds."
|
937 |
msgstr ""
|
938 |
|
939 |
-
#: class-bws-settings.php:
|
940 |
#, fuzzy
|
941 |
msgid "Settings page"
|
942 |
msgstr "設定保存."
|
943 |
|
944 |
-
#: class-bws-settings.php:
|
945 |
#, php-format
|
946 |
msgid "Enter your license key to activate %s and get premium plugin features."
|
947 |
msgstr ""
|
948 |
|
949 |
-
#: class-bws-settings.php:
|
950 |
#: deprecated.php:703
|
951 |
msgid ""
|
952 |
"Unfortunately, you have exceeded the number of available tries per day. "
|
@@ -955,12 +946,12 @@ msgstr ""
|
|
955 |
"Niestety, przekroczono liczb dostępnych prób na dziś. Proszę dodać wtyczkę "
|
956 |
"manualnie."
|
957 |
|
958 |
-
#: class-bws-settings.php:
|
959 |
#, php-format
|
960 |
msgid "Start Your Free %s-Day Trial Now"
|
961 |
msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
|
962 |
|
963 |
-
#: class-bws-settings.php:
|
964 |
#, fuzzy
|
965 |
msgid ""
|
966 |
"If necessary, you can check if the license key is correct or reenter it in "
|
@@ -970,28 +961,28 @@ msgstr ""
|
|
970 |
"w polu poniżej. Możesz znaleźć swój klucz na naszej stronie w strefie - "
|
971 |
"Panel Klienta"
|
972 |
|
973 |
-
#: class-bws-settings.php:
|
974 |
msgid "Manage License Settings"
|
975 |
msgstr ""
|
976 |
|
977 |
-
#: class-bws-settings.php:
|
978 |
#, fuzzy
|
979 |
msgid "Login to Client Area"
|
980 |
msgstr "Panel Klienta"
|
981 |
|
982 |
-
#: class-bws-settings.php:
|
983 |
msgid ""
|
984 |
"Manage active licenses, download BWS products, and view your payment history "
|
985 |
"using BestWebSoft Client Area."
|
986 |
msgstr ""
|
987 |
|
988 |
-
#: class-bws-settings.php:
|
989 |
#: deprecated.php:360
|
990 |
#, fuzzy
|
991 |
msgid "This license key is bound to another site."
|
992 |
msgstr "Klucz licencji został przypisany do innej strony."
|
993 |
|
994 |
-
#: class-bws-settings.php:
|
995 |
msgid ""
|
996 |
"This license key is valid, but Your license has expired. If you want to "
|
997 |
"update our plugin in future, you should extend the license."
|
@@ -999,11 +990,11 @@ msgstr ""
|
|
999 |
"Klucz jest poprawny, jednak Twoja licencja wygasła. Jeśli chcesz "
|
1000 |
"aktualizować naszą wtyczkę w przyszłości powinieneś przedłużyć licencję."
|
1001 |
|
1002 |
-
#: class-bws-settings.php:
|
1003 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
1004 |
msgstr "Niestety, przekroczono liczbę dostępnych prób."
|
1005 |
|
1006 |
-
#: class-bws-settings.php:
|
1007 |
msgid ""
|
1008 |
"Unfortunately, the Pro Trial licence was already installed to this domain. "
|
1009 |
"The Pro Trial license can be installed only once."
|
@@ -1011,11 +1002,11 @@ msgstr ""
|
|
1011 |
"Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
|
1012 |
"może być wykorzystana tylko raz."
|
1013 |
|
1014 |
-
#: class-bws-settings.php:
|
1015 |
msgid "The Pro Trial license key is valid."
|
1016 |
msgstr "Klucz licencji do testowej wersji PRO jest poprawny."
|
1017 |
|
1018 |
-
#: class-bws-settings.php:
|
1019 |
#, php-format
|
1020 |
msgid ""
|
1021 |
"In order to continue using the plugin it is necessary to buy a %s license."
|
@@ -1023,28 +1014,124 @@ msgstr ""
|
|
1023 |
"W celu dalszego wykorzystywania wtyczki niezbędne jest wykupienie licencji "
|
1024 |
"%s."
|
1025 |
|
1026 |
-
#: class-bws-settings.php:
|
1027 |
msgid "Please, enter Your license key"
|
1028 |
msgstr "Proszę podać klucz licencji."
|
1029 |
|
1030 |
-
#: class-bws-settings.php:
|
1031 |
#, fuzzy
|
1032 |
msgid "Need Help?"
|
1033 |
msgstr "Potrzebujesz pomocy?"
|
1034 |
|
1035 |
-
#: class-bws-settings.php:
|
1036 |
msgid "Read the Instruction"
|
1037 |
msgstr ""
|
1038 |
|
1039 |
-
#: class-bws-settings.php:
|
1040 |
msgid "Watch the Video"
|
1041 |
msgstr ""
|
1042 |
|
1043 |
-
#: class-bws-settings.php:
|
1044 |
#, fuzzy
|
1045 |
msgid "Start Your Free Trial"
|
1046 |
msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
|
1047 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1048 |
#: deprecated.php:93
|
1049 |
#, fuzzy
|
1050 |
msgid "System Status"
|
@@ -1191,298 +1278,294 @@ msgstr ""
|
|
1191 |
msgid "SMM"
|
1192 |
msgstr ""
|
1193 |
|
1194 |
-
#: product_list.php:
|
1195 |
msgid ""
|
1196 |
"Protect WordPress website forms from spam entries by means of math logic."
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: product_list.php:
|
1200 |
msgid "Create your personal car rental/booking and reservation website."
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: product_list.php:
|
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:
|
1210 |
msgid "Add unlimited number of contact forms to WordPress website."
|
1211 |
msgstr ""
|
1212 |
|
1213 |
-
#: product_list.php:
|
1214 |
msgid "Save and manage Contact Form messages. Never lose important data."
|
1215 |
msgstr ""
|
1216 |
|
1217 |
-
#: product_list.php:
|
1218 |
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#: product_list.php:
|
1222 |
msgid "Add custom fields to WordPress website search results."
|
1223 |
msgstr ""
|
1224 |
|
1225 |
-
#: product_list.php:
|
1226 |
msgid ""
|
1227 |
"Add custom post types and taxonomies to WordPress website search results."
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: product_list.php:
|
1231 |
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: product_list.php:
|
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:
|
1247 |
msgid ""
|
1248 |
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1249 |
"widgets."
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#: product_list.php:
|
1253 |
msgid ""
|
1254 |
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1255 |
"clicks."
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: product_list.php:
|
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:
|
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:
|
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:
|
1283 |
msgid "Add Google Analytics code to WordPress website and track basic stats."
|
1284 |
msgstr ""
|
1285 |
|
1286 |
-
#: product_list.php:
|
1287 |
msgid ""
|
1288 |
"Protect WordPress website forms from spam entries with Google Captcha "
|
1289 |
"(reCaptcha)."
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#: product_list.php:
|
1293 |
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#: product_list.php:
|
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:
|
1303 |
msgid ""
|
1304 |
"Replace external WordPress website links with Google shortlinks and track "
|
1305 |
"click stats."
|
1306 |
msgstr ""
|
1307 |
|
1308 |
-
#: product_list.php:
|
1309 |
msgid ""
|
1310 |
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1311 |
"hostnames, etc."
|
1312 |
msgstr ""
|
1313 |
|
1314 |
-
#: product_list.php:
|
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:
|
1321 |
msgid ""
|
1322 |
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1323 |
"attempts."
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: product_list.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
1363 |
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1364 |
msgstr ""
|
1365 |
|
1366 |
-
#: product_list.php:
|
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:
|
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:
|
1379 |
msgid ""
|
1380 |
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1381 |
"widgets."
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#: product_list.php:
|
1385 |
msgid ""
|
1386 |
"Add rating plugin to your WordPress website to receive feedback from your "
|
1387 |
"customers."
|
1388 |
msgstr ""
|
1389 |
|
1390 |
-
#: product_list.php:
|
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:
|
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:
|
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:
|
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:
|
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:
|
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:
|
1433 |
msgid ""
|
1434 |
"Add social media login, registration, and commenting to your WordPress "
|
1435 |
"website."
|
1436 |
msgstr ""
|
1437 |
|
1438 |
-
#: product_list.php:
|
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:
|
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:
|
1451 |
msgid ""
|
1452 |
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1453 |
"attendance and generate reports."
|
1454 |
msgstr ""
|
1455 |
|
1456 |
-
#: product_list.php:
|
1457 |
msgid ""
|
1458 |
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1459 |
"and pages."
|
1460 |
msgstr ""
|
1461 |
|
1462 |
-
#: product_list.php:
|
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:
|
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:
|
1475 |
msgid ""
|
1476 |
"Display live count of online visitors who are currently browsing your "
|
1477 |
"WordPress website."
|
1478 |
msgstr ""
|
1479 |
|
1480 |
-
#: product_list.php:
|
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"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-08-28 09:55+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-08-28 09:55+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"
|
18 |
"|| n%100>=20) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: bws_functions.php:73 bws_functions.php:191
|
22 |
msgid "requires"
|
23 |
msgstr "wymaga wersja"
|
24 |
|
25 |
+
#: bws_functions.php:75
|
26 |
msgid ""
|
27 |
"or higher, that is why it has been deactivated! Please upgrade WordPress and "
|
28 |
"try again."
|
30 |
"lub nowsza, dlatego wtyczka została wyłączona. Zaktualizuj WordPress i "
|
31 |
"spróbuj ponownie."
|
32 |
|
33 |
+
#: bws_functions.php:76
|
34 |
msgid "Back to the WordPress"
|
35 |
msgstr "Wróć do WordPress"
|
36 |
|
37 |
+
#: bws_functions.php:78
|
38 |
msgid "Plugins page"
|
39 |
msgstr "Wtyczki"
|
40 |
|
41 |
+
#: bws_functions.php:92
|
42 |
#, fuzzy
|
43 |
msgid "Like the plugin?"
|
44 |
msgstr "Oceń wtyczkę"
|
45 |
|
46 |
+
#: bws_functions.php:94
|
47 |
msgid "Rate it"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: bws_functions.php:103
|
51 |
msgid "Need help?"
|
52 |
msgstr "Potrzebujesz pomocy?"
|
53 |
|
54 |
+
#: bws_functions.php:104 bws_functions.php:911 class-bws-settings.php:1056
|
55 |
msgid "Visit Help Center"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: bws_functions.php:107
|
59 |
#, fuzzy
|
60 |
msgid "Want to support the plugin?"
|
61 |
msgstr "Oceń wtyczkę"
|
62 |
|
63 |
+
#: bws_functions.php:108 bws_menu.php:553
|
64 |
msgid "Donate"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: bws_functions.php:128
|
68 |
msgid "WARNING: Illegal use notification"
|
69 |
msgstr "UWAGA: Odnotowano nielegalne użycie"
|
70 |
|
71 |
+
#: bws_functions.php:128
|
72 |
msgid ""
|
73 |
"You can use one license of the Pro plugin for one domain only. Please check "
|
74 |
+
"and edit your license or domain if necessary using your personal Client "
|
75 |
+
"Area. We strongly recommend you to solve the problem within 24 hours, "
|
76 |
+
"otherwise the Pro plugin will be deactivated."
|
77 |
msgstr ""
|
|
|
|
|
|
|
|
|
78 |
|
79 |
+
#: bws_functions.php:128 bws_functions.php:340 class-bws-settings.php:144
|
|
|
80 |
msgid "Learn More"
|
81 |
msgstr "Dowiedz się więcej"
|
82 |
|
83 |
+
#: bws_functions.php:145
|
84 |
#, fuzzy
|
85 |
msgid ""
|
86 |
"Notice: Your Pro Trial license has expired. To continue using the plugin, "
|
89 |
"Uwaga: Testowa wersja PRO niestety wygasła. Aby kontynuować korzystanie z "
|
90 |
"naszej wtyczki powinieneś zakupić klucz licencji."
|
91 |
|
92 |
+
#: bws_functions.php:147
|
93 |
#, fuzzy
|
94 |
msgid ""
|
95 |
"Your license has expired. To continue getting top-priority support and "
|
98 |
"Twoja licencja wygasła. Aby podtrzymać szybki dostęp do pomocy i "
|
99 |
"aktualizacji powinieneś przedłużyć licencję."
|
100 |
|
101 |
+
#: bws_functions.php:147 bws_functions.php:383 deprecated.php:584
|
102 |
msgid "Learn more"
|
103 |
msgstr "Dowiedz się więcej"
|
104 |
|
105 |
+
#: bws_functions.php:165
|
106 |
#, php-format
|
107 |
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
108 |
msgstr "Uwaga: Wykorzystujesz próbną licencję wersji PRO dla %s."
|
109 |
|
110 |
+
#: bws_functions.php:167
|
111 |
msgid "Notice: You are using the Pro Trial license of plugin."
|
112 |
msgstr "Uwaga: Wykorzystywana jest próbna licencja wtyczki."
|
113 |
|
114 |
+
#: bws_functions.php:170
|
115 |
msgid "The Pro Trial license will expire on"
|
116 |
msgstr "Licencja próbna wygaśnie"
|
117 |
|
118 |
+
#: bws_functions.php:193
|
119 |
msgid ""
|
120 |
"or higher! We do not guarantee that our plugin will work correctly. Please "
|
121 |
"upgrade to WordPress latest version."
|
123 |
"lub nowsza! Nie gwarantujemy, że nasza wtyczka będzie działała poprawnie. "
|
124 |
"Proszę zaktualizować WordPress do najnowszej wersji."
|
125 |
|
126 |
+
#: bws_functions.php:208
|
127 |
#, php-format
|
128 |
msgid "Thank you for installing %s plugin!"
|
129 |
msgstr ""
|
130 |
|
131 |
+
#: bws_functions.php:209
|
132 |
msgid "Let's get started"
|
133 |
msgstr "Zaczynajmny"
|
134 |
|
135 |
+
#: bws_functions.php:210 bws_functions.php:243 bws_menu.php:557
|
136 |
#: bws_menu.php:559
|
137 |
msgid "Settings"
|
138 |
msgstr "Ustawienia"
|
139 |
|
140 |
+
#: bws_functions.php:212 bws_menu.php:328 class-bws-settings.php:745
|
141 |
+
#: class-bws-settings.php:1058 class-bws-settings.php:1068 deprecated.php:694
|
142 |
msgid "or"
|
143 |
msgstr "lub"
|
144 |
|
145 |
+
#: bws_functions.php:213 bws_functions.php:245
|
146 |
msgid "Add New"
|
147 |
msgstr "Dodaj nowy"
|
148 |
|
149 |
+
#: bws_functions.php:217 bws_functions.php:227 bws_functions.php:331
|
150 |
+
#: bws_functions.php:379 bws_functions.php:481
|
151 |
msgid "Close notice"
|
152 |
msgstr "Zamknij powiadomienie"
|
153 |
|
154 |
+
#: bws_functions.php:232
|
155 |
#, fuzzy
|
156 |
msgid "Thank you for installing plugins by BestWebSoft!"
|
157 |
msgstr "Dziękujemy za instalację"
|
158 |
|
159 |
+
#: bws_functions.php:234
|
160 |
#, fuzzy
|
161 |
msgid "More Details"
|
162 |
msgstr "Szczegóły"
|
163 |
|
164 |
+
#: bws_functions.php:235
|
165 |
#, fuzzy
|
166 |
msgid "Less Details"
|
167 |
msgstr "Szczegóły"
|
168 |
|
169 |
+
#: bws_functions.php:263
|
170 |
msgid "Deprecated function(-s) is used on the site here:"
|
171 |
msgstr ""
|
172 |
|
173 |
+
#: bws_functions.php:277
|
174 |
msgid ""
|
175 |
"This function(-s) will be removed over time. Please update the product(-s)."
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: bws_functions.php:336
|
179 |
msgid "It’s time to upgrade your"
|
180 |
msgstr "Czas by zaktualizować"
|
181 |
|
182 |
+
#: bws_functions.php:336
|
183 |
msgid "to"
|
184 |
msgstr "do"
|
185 |
|
186 |
+
#: bws_functions.php:336
|
187 |
msgid "version!"
|
188 |
msgstr "wersji!"
|
189 |
|
190 |
+
#: bws_functions.php:337
|
191 |
msgid "Extend standard plugin functionality with new great options."
|
192 |
msgstr "Rozszerz podstawowe funkcje wtyczki o nowe wspaniałe opcje."
|
193 |
|
194 |
+
#: bws_functions.php:383
|
195 |
#, fuzzy, php-format
|
196 |
msgid ""
|
197 |
"Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
|
200 |
"zostaniesz wówczas pozbawiony SZYBKIEGO DOSTĘDO DO SUPPORTU oraz "
|
201 |
"AKTUALIZACJI."
|
202 |
|
203 |
+
#: bws_functions.php:476
|
204 |
#, php-format
|
205 |
msgid "Thank you for choosing %s plugin!"
|
206 |
msgstr ""
|
207 |
|
208 |
+
#: bws_functions.php:477
|
209 |
msgid ""
|
210 |
"If you have a feature, suggestion or idea you'd like to see in the plugin, "
|
211 |
"we'd love to hear about it!"
|
212 |
msgstr ""
|
213 |
|
214 |
+
#: bws_functions.php:478
|
215 |
msgid "Suggest a Feature"
|
216 |
msgstr ""
|
217 |
|
218 |
+
#: bws_functions.php:494 class-bws-settings.php:538 class-bws-settings.php:541
|
219 |
+
#: class-bws-settings.php:593 class-bws-settings.php:596
|
220 |
msgid "Notice"
|
221 |
msgstr "Uwaga"
|
222 |
|
223 |
+
#: bws_functions.php:494
|
224 |
msgid "The plugin's settings have been changed."
|
225 |
msgstr "Ustawienia wtyczki zostały zmienione."
|
226 |
|
227 |
+
#: bws_functions.php:495 class-bws-settings.php:183 class-bws-settings.php:203
|
228 |
#: deprecated.php:640
|
229 |
msgid "Save Changes"
|
230 |
msgstr "Zapisz zmiany"
|
231 |
|
232 |
+
#: bws_functions.php:509
|
233 |
#, fuzzy
|
234 |
msgid ""
|
235 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
238 |
"Zawsze możesz sprawdzić funkcje premium poprzez kliknięcie \"Pokaż funkcje "
|
239 |
"PRO\" w zakładce \"Go PRO\""
|
240 |
|
241 |
+
#: bws_functions.php:647
|
242 |
msgid "Add BWS Shortcode"
|
243 |
msgstr ""
|
244 |
|
245 |
+
#: bws_functions.php:648
|
246 |
msgid "Add BWS Plugins Shortcode"
|
247 |
msgstr "Dodaj BWS Shortcode"
|
248 |
|
249 |
+
#: bws_functions.php:667
|
250 |
#, fuzzy
|
251 |
msgid "Add shortcode"
|
252 |
msgstr "Dodaj BWS Shortcode"
|
253 |
|
254 |
+
#: bws_functions.php:667
|
255 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
256 |
msgstr ""
|
257 |
|
258 |
+
#: bws_functions.php:723
|
259 |
msgid "Close"
|
260 |
msgstr "Zamknij"
|
261 |
|
262 |
+
#: bws_functions.php:815
|
263 |
#, fuzzy
|
264 |
msgid "Are you sure you want to restore default settings?"
|
265 |
msgstr ""
|
266 |
"Czy jesteś pewien, że chcesz przywrócić wszystkie ustawienia do wartości "
|
267 |
"domyślnych?"
|
268 |
|
269 |
+
#: bws_functions.php:818
|
270 |
msgid "Yes, restore all settings"
|
271 |
msgstr "Tak, przywróć wszystkie ustawienia"
|
272 |
|
273 |
+
#: bws_functions.php:819
|
274 |
msgid "No, go back to the settings page"
|
275 |
msgstr "Nie, wróć do ustawień"
|
276 |
|
277 |
+
#: bws_functions.php:861
|
278 |
msgid "Plugin"
|
279 |
msgstr "Wtyczka"
|
280 |
|
281 |
+
#: bws_functions.php:870
|
282 |
msgid "Shortcode settings"
|
283 |
msgstr "Ustawienia shortcode"
|
284 |
|
285 |
+
#: bws_functions.php:875
|
286 |
msgid "The shortcode will be inserted"
|
287 |
msgstr "Shortcode zostanie umieszczony"
|
288 |
|
289 |
+
#: bws_functions.php:916
|
|
|
|
|
|
|
|
|
290 |
msgid "FAQ"
|
291 |
msgstr "FAQ"
|
292 |
|
293 |
+
#: bws_functions.php:922
|
294 |
msgid "For more information:"
|
295 |
msgstr ""
|
296 |
|
297 |
+
#: bws_functions.php:923
|
298 |
msgid "Documentation"
|
299 |
msgstr ""
|
300 |
|
301 |
+
#: bws_functions.php:924
|
302 |
msgid "Video Instructions"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#: bws_functions.php:925
|
306 |
#, fuzzy
|
307 |
msgid "Submit a Request"
|
308 |
msgstr "送信ボタン"
|
309 |
|
310 |
+
#: bws_menu.php:101 class-bws-settings.php:790 deprecated.php:322
|
311 |
msgid "Wrong license key"
|
312 |
msgstr "Niepoprawny klucz licencji"
|
313 |
|
314 |
+
#: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
|
315 |
+
#: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
|
316 |
#: deprecated.php:352
|
317 |
msgid ""
|
318 |
"Something went wrong. Please try again later. If the error appears again, "
|
321 |
"Coś poszło nie tak. Spróbuj ponownie później. Jeśli błąd pojawi się ponownie "
|
322 |
"proszę skontaktować się z nami"
|
323 |
|
324 |
+
#: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
|
325 |
+
#: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
|
326 |
#: deprecated.php:352
|
327 |
msgid "We are sorry for inconvenience."
|
328 |
msgstr "Przepraszamy za niedogodności."
|
329 |
|
330 |
+
#: bws_menu.php:128 class-bws-settings.php:822 class-bws-settings.php:925
|
331 |
#: deprecated.php:139 deprecated.php:358
|
332 |
msgid "Wrong license key."
|
333 |
msgstr "Niepoprawny klucz licencji"
|
347 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
348 |
msgstr "Niestety, przekroczono dzienną liczbę dostępnych prób."
|
349 |
|
350 |
+
#: bws_menu.php:134 class-bws-settings.php:931 deprecated.php:364
|
351 |
#, fuzzy, php-format
|
352 |
msgid ""
|
353 |
"Unfortunately, Your license has expired. To continue getting top-priority "
|
356 |
"Niestety, Twoja licencja wygasła. By nadal korzystać z szybkiego dostępu do "
|
357 |
"wsparcia oraz aktualizacji powinieneś przedłużyć licencję."
|
358 |
|
359 |
+
#: bws_menu.php:136 class-bws-settings.php:933 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."
|
364 |
"Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
|
365 |
"może być wykorzystana tylko raz."
|
366 |
|
367 |
+
#: bws_menu.php:142 class-bws-settings.php:837 deprecated.php:153
|
368 |
msgid "The license key is valid."
|
369 |
msgstr "Klucz licencji jest poprawny"
|
370 |
|
371 |
+
#: bws_menu.php:144 class-bws-settings.php:840 deprecated.php:156
|
372 |
msgid "Your license will expire on"
|
373 |
msgstr "Twoja licencja wygaśnie"
|
374 |
|
377 |
msgid "Congratulations! Pro Membership license is activated successfully."
|
378 |
msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
|
379 |
|
380 |
+
#: bws_menu.php:153 class-bws-settings.php:1005 deprecated.php:435
|
381 |
msgid ""
|
382 |
"Something went wrong. Try again later or upload the plugin manually. We are "
|
383 |
"sorry for inconvenience."
|
562 |
msgid "Themes"
|
563 |
msgstr "Motywy"
|
564 |
|
565 |
+
#: bws_menu.php:309 bws_menu.php:313 bws_menu.php:641
|
566 |
msgid "System status"
|
567 |
msgstr "Status systemu"
|
568 |
|
584 |
msgid "Subscribe to Pro Membership"
|
585 |
msgstr "有効なテーマ"
|
586 |
|
587 |
+
#: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:758
|
588 |
#: deprecated.php:227
|
589 |
msgid "Check license key"
|
590 |
msgstr "Sprawdź klucz licencji"
|
595 |
msgstr "Podaj klucz licencji"
|
596 |
|
597 |
#: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
|
598 |
+
#: class-bws-settings.php:737 deprecated.php:259 deprecated.php:267
|
599 |
#: deprecated.php:629 deprecated.php:700 deprecated.php:709
|
600 |
msgid "Activate"
|
601 |
msgstr "Aktywuj"
|
634 |
msgstr ""
|
635 |
|
636 |
#: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
|
637 |
+
#: class-bws-settings.php:957 class-bws-settings.php:979
|
638 |
+
#: class-bws-settings.php:1001 deprecated.php:387 deprecated.php:409
|
639 |
#: deprecated.php:431
|
640 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
641 |
msgstr ""
|
651 |
msgid "Installing the plugin"
|
652 |
msgstr "Zainstalowane"
|
653 |
|
654 |
+
#: bws_menu.php:417 class-bws-settings.php:969 deprecated.php:399
|
655 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
656 |
msgstr ""
|
657 |
"Otwieranie archiwum zip zakończyło się niepowodzeniem. Proszę dodać wtyczkę "
|
658 |
"manualnie"
|
659 |
|
660 |
+
#: bws_menu.php:424 class-bws-settings.php:975 deprecated.php:405
|
661 |
msgid ""
|
662 |
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
663 |
"plugin manually"
|
669 |
msgid "The plugin %s is successfully installed."
|
670 |
msgstr ""
|
671 |
|
672 |
+
#: bws_menu.php:434 class-bws-settings.php:982 deprecated.php:412
|
673 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
674 |
msgstr ""
|
675 |
"Folder uploadu jest chroniony przez zapisem. Proszę dodać wtyczkę manualnie"
|
687 |
msgid "All"
|
688 |
msgstr "Wszystko"
|
689 |
|
690 |
+
#: bws_menu.php:450 bws_menu.php:630
|
691 |
msgid "Installed"
|
692 |
msgstr "Zainstalowane"
|
693 |
|
723 |
msgid "Install Now"
|
724 |
msgstr "Instaluj teraz"
|
725 |
|
726 |
+
#: bws_menu.php:549 class-bws-settings.php:157 class-bws-settings.php:1065
|
727 |
msgid "Upgrade to Pro"
|
728 |
msgstr ""
|
729 |
|
740 |
msgid "Nothing found. Try another criteria."
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: bws_menu.php:621
|
744 |
#, php-format
|
745 |
msgid "By %s"
|
746 |
msgstr "Od %s"
|
747 |
|
748 |
+
#: bws_menu.php:628
|
749 |
msgid "Already Installed"
|
750 |
msgstr "Zainstalowane"
|
751 |
|
752 |
+
#: bws_menu.php:638
|
753 |
msgid "Browse Free WordPress Themes"
|
754 |
msgstr ""
|
755 |
|
756 |
+
#: bws_menu.php:647
|
757 |
msgid "Send to support"
|
758 |
msgstr "Wyślij do supportu"
|
759 |
|
760 |
+
#: bws_menu.php:654
|
761 |
msgid "Send to custom email »"
|
762 |
msgstr "Prześlij na własny adres »"
|
763 |
|
764 |
+
#: class-bws-settings.php:136
|
765 |
msgid "Information"
|
766 |
msgstr ""
|
767 |
|
768 |
+
#: class-bws-settings.php:144
|
769 |
#, fuzzy
|
770 |
msgid "Inactive"
|
771 |
msgstr "Nieaktywne wtyczki"
|
772 |
|
773 |
+
#: class-bws-settings.php:152
|
774 |
msgid "Expired"
|
775 |
msgstr ""
|
776 |
|
777 |
+
#: class-bws-settings.php:155
|
778 |
#, php-format
|
779 |
msgid "%s day(-s) left"
|
780 |
msgstr ""
|
781 |
|
782 |
+
#: class-bws-settings.php:161
|
783 |
#, fuzzy, php-format
|
784 |
msgid "Expired on %s"
|
785 |
msgstr "wygasa"
|
786 |
|
787 |
+
#: class-bws-settings.php:161
|
788 |
msgid "Renew Now"
|
789 |
msgstr ""
|
790 |
|
791 |
+
#: class-bws-settings.php:163
|
792 |
#, fuzzy
|
793 |
msgid "Active"
|
794 |
msgstr "Aktywuj"
|
795 |
|
796 |
+
#: class-bws-settings.php:168
|
797 |
#, fuzzy
|
798 |
msgid "License"
|
799 |
msgstr "Niepoprawny klucz licencji"
|
800 |
|
801 |
+
#: class-bws-settings.php:171
|
802 |
#, fuzzy
|
803 |
msgid "Status"
|
804 |
msgstr "Status systemu"
|
805 |
|
806 |
+
#: class-bws-settings.php:175
|
807 |
#, fuzzy
|
808 |
msgid "Version"
|
809 |
msgstr "wersji!"
|
810 |
|
811 |
+
#: class-bws-settings.php:285
|
812 |
#, fuzzy
|
813 |
msgid "All plugin settings were restored."
|
814 |
msgstr "Ustawienia wtyczki zostały zmienione."
|
815 |
|
816 |
+
#: class-bws-settings.php:423
|
817 |
msgid "Custom Code"
|
818 |
msgstr ""
|
819 |
|
820 |
+
#: class-bws-settings.php:427 deprecated.php:497
|
821 |
msgid "You do not have sufficient permissions to edit plugins for this site."
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: class-bws-settings.php:432 deprecated.php:618
|
825 |
msgid "These styles will be added to the header on all pages of your site."
|
826 |
msgstr ""
|
827 |
|
828 |
+
#: class-bws-settings.php:435 deprecated.php:620
|
829 |
#, php-format
|
830 |
msgid ""
|
831 |
"This PHP code will be hooked to the %s action and will be printed on front "
|
832 |
"end only."
|
833 |
msgstr ""
|
834 |
|
835 |
+
#: class-bws-settings.php:438
|
836 |
msgid "These code will be added to the header on all pages of your site."
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: class-bws-settings.php:446 deprecated.php:644
|
840 |
#, php-format
|
841 |
msgid ""
|
842 |
"You need to make this files writable before you can save your changes. See "
|
843 |
"%s the Codex %s for more information."
|
844 |
msgstr ""
|
845 |
|
846 |
+
#: class-bws-settings.php:456 deprecated.php:626
|
847 |
msgid "Browsing"
|
848 |
msgstr ""
|
849 |
|
850 |
+
#: class-bws-settings.php:461
|
851 |
#, php-format
|
852 |
msgid "Activate custom %s code."
|
853 |
msgstr ""
|
854 |
|
855 |
+
#: class-bws-settings.php:469 deprecated.php:633
|
856 |
#, fuzzy, php-format
|
857 |
msgid "Learn more about %s"
|
858 |
msgstr "Dowiedz się więcej"
|
859 |
|
860 |
+
#: class-bws-settings.php:529
|
861 |
msgid "Miscellaneous Settings"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: class-bws-settings.php:538 class-bws-settings.php:593
|
865 |
#, php-format
|
866 |
msgid ""
|
867 |
"It is prohibited to change %s settings on this site in the %s network "
|
868 |
"settings."
|
869 |
msgstr ""
|
870 |
|
871 |
+
#: class-bws-settings.php:541 class-bws-settings.php:596
|
872 |
#, php-format
|
873 |
msgid ""
|
874 |
"It is prohibited to view %s settings on this site in the %s network settings."
|
875 |
msgstr ""
|
876 |
|
877 |
+
#: class-bws-settings.php:550
|
878 |
#, fuzzy
|
879 |
msgid "Pro Options"
|
880 |
msgstr "Pro Plugins"
|
881 |
|
882 |
+
#: class-bws-settings.php:554
|
883 |
msgid "Enable to display plugin Pro options."
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: class-bws-settings.php:560
|
887 |
msgid "Track Usage"
|
888 |
msgstr ""
|
889 |
|
890 |
+
#: class-bws-settings.php:564
|
891 |
msgid ""
|
892 |
"Enable to allow tracking plugin usage anonymously in order to make it better."
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: class-bws-settings.php:569
|
896 |
#, fuzzy
|
897 |
msgid "Default Settings"
|
898 |
msgstr "Ustawienia"
|
899 |
|
900 |
+
#: class-bws-settings.php:571
|
901 |
#, fuzzy
|
902 |
msgid "Restore Settings"
|
903 |
msgstr "Przywróć ustawienia"
|
904 |
|
905 |
+
#: class-bws-settings.php:572
|
906 |
#, fuzzy
|
907 |
msgid "This will restore plugin settings to defaults."
|
908 |
msgstr "Przywróć wszystkie ustawienia do wartości domyśłnych"
|
909 |
|
910 |
+
#: class-bws-settings.php:584
|
911 |
msgid "Import / Export"
|
912 |
msgstr ""
|
913 |
|
914 |
+
#: class-bws-settings.php:700 class-bws-settings.php:733
|
915 |
+
#: class-bws-settings.php:755
|
916 |
#, fuzzy
|
917 |
msgid "License Key"
|
918 |
msgstr "Niepoprawny klucz licencji"
|
919 |
|
920 |
+
#: class-bws-settings.php:723
|
921 |
#, fuzzy
|
922 |
msgid "Congratulations! Pro license is activated successfully."
|
923 |
msgstr "Gratulacje! Licencja do wersji PRO została aktywowana pomyślnie."
|
924 |
|
925 |
+
#: class-bws-settings.php:724
|
926 |
#, php-format
|
927 |
msgid "You will be automatically redirected to the %s in %s seconds."
|
928 |
msgstr ""
|
929 |
|
930 |
+
#: class-bws-settings.php:724
|
931 |
#, fuzzy
|
932 |
msgid "Settings page"
|
933 |
msgstr "設定保存."
|
934 |
|
935 |
+
#: class-bws-settings.php:739
|
936 |
#, php-format
|
937 |
msgid "Enter your license key to activate %s and get premium plugin features."
|
938 |
msgstr ""
|
939 |
|
940 |
+
#: class-bws-settings.php:742 class-bws-settings.php:929 deprecated.php:362
|
941 |
#: deprecated.php:703
|
942 |
msgid ""
|
943 |
"Unfortunately, you have exceeded the number of available tries per day. "
|
946 |
"Niestety, przekroczono liczb dostępnych prób na dziś. Proszę dodać wtyczkę "
|
947 |
"manualnie."
|
948 |
|
949 |
+
#: class-bws-settings.php:745 deprecated.php:694
|
950 |
#, php-format
|
951 |
msgid "Start Your Free %s-Day Trial Now"
|
952 |
msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
|
953 |
|
954 |
+
#: class-bws-settings.php:760
|
955 |
#, fuzzy
|
956 |
msgid ""
|
957 |
"If necessary, you can check if the license key is correct or reenter it in "
|
961 |
"w polu poniżej. Możesz znaleźć swój klucz na naszej stronie w strefie - "
|
962 |
"Panel Klienta"
|
963 |
|
964 |
+
#: class-bws-settings.php:765
|
965 |
msgid "Manage License Settings"
|
966 |
msgstr ""
|
967 |
|
968 |
+
#: class-bws-settings.php:767
|
969 |
#, fuzzy
|
970 |
msgid "Login to Client Area"
|
971 |
msgstr "Panel Klienta"
|
972 |
|
973 |
+
#: class-bws-settings.php:769
|
974 |
msgid ""
|
975 |
"Manage active licenses, download BWS products, and view your payment history "
|
976 |
"using BestWebSoft Client Area."
|
977 |
msgstr ""
|
978 |
|
979 |
+
#: class-bws-settings.php:824 class-bws-settings.php:927 deprecated.php:141
|
980 |
#: deprecated.php:360
|
981 |
#, fuzzy
|
982 |
msgid "This license key is bound to another site."
|
983 |
msgstr "Klucz licencji został przypisany do innej strony."
|
984 |
|
985 |
+
#: class-bws-settings.php:826 deprecated.php:143
|
986 |
msgid ""
|
987 |
"This license key is valid, but Your license has expired. If you want to "
|
988 |
"update our plugin in future, you should extend the license."
|
990 |
"Klucz jest poprawny, jednak Twoja licencja wygasła. Jeśli chcesz "
|
991 |
"aktualizować naszą wtyczkę w przyszłości powinieneś przedłużyć licencję."
|
992 |
|
993 |
+
#: class-bws-settings.php:828 deprecated.php:145
|
994 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
995 |
msgstr "Niestety, przekroczono liczbę dostępnych prób."
|
996 |
|
997 |
+
#: class-bws-settings.php:830 deprecated.php:147
|
998 |
msgid ""
|
999 |
"Unfortunately, the Pro Trial licence was already installed to this domain. "
|
1000 |
"The Pro Trial license can be installed only once."
|
1002 |
"Niestety, licencja PRO była już przypisana do tej domeny. Licencja testowa "
|
1003 |
"może być wykorzystana tylko raz."
|
1004 |
|
1005 |
+
#: class-bws-settings.php:835 deprecated.php:151
|
1006 |
msgid "The Pro Trial license key is valid."
|
1007 |
msgstr "Klucz licencji do testowej wersji PRO jest poprawny."
|
1008 |
|
1009 |
+
#: class-bws-settings.php:843 deprecated.php:159 deprecated.php:246
|
1010 |
#, php-format
|
1011 |
msgid ""
|
1012 |
"In order to continue using the plugin it is necessary to buy a %s license."
|
1014 |
"W celu dalszego wykorzystywania wtyczki niezbędne jest wykupienie licencji "
|
1015 |
"%s."
|
1016 |
|
1017 |
+
#: class-bws-settings.php:1040 deprecated.php:463
|
1018 |
msgid "Please, enter Your license key"
|
1019 |
msgstr "Proszę podać klucz licencji."
|
1020 |
|
1021 |
+
#: class-bws-settings.php:1052
|
1022 |
#, fuzzy
|
1023 |
msgid "Need Help?"
|
1024 |
msgstr "Potrzebujesz pomocy?"
|
1025 |
|
1026 |
+
#: class-bws-settings.php:1054
|
1027 |
msgid "Read the Instruction"
|
1028 |
msgstr ""
|
1029 |
|
1030 |
+
#: class-bws-settings.php:1058
|
1031 |
msgid "Watch the Video"
|
1032 |
msgstr ""
|
1033 |
|
1034 |
+
#: class-bws-settings.php:1069
|
1035 |
#, fuzzy
|
1036 |
msgid "Start Your Free Trial"
|
1037 |
msgstr "Rozpocznij swój darmowy %s-dniowy okres testowy"
|
1038 |
|
1039 |
+
#: deactivation-form.php:26
|
1040 |
+
msgid "Need help? We are ready to answer your questions."
|
1041 |
+
msgstr ""
|
1042 |
+
|
1043 |
+
#: deactivation-form.php:26
|
1044 |
+
msgid "Contact Support"
|
1045 |
+
msgstr ""
|
1046 |
+
|
1047 |
+
#: deactivation-form.php:31
|
1048 |
+
msgid "The plugin is not working"
|
1049 |
+
msgstr ""
|
1050 |
+
|
1051 |
+
#: deactivation-form.php:33
|
1052 |
+
msgid "Kindly share what didn't work so we can fix it in future updates..."
|
1053 |
+
msgstr ""
|
1054 |
+
|
1055 |
+
#: deactivation-form.php:37
|
1056 |
+
msgid "The plugin didn't work as expected"
|
1057 |
+
msgstr ""
|
1058 |
+
|
1059 |
+
#: deactivation-form.php:39
|
1060 |
+
msgid "What did you expect?"
|
1061 |
+
msgstr ""
|
1062 |
+
|
1063 |
+
#: deactivation-form.php:43
|
1064 |
+
msgid "The plugin suddenly stopped working"
|
1065 |
+
msgstr ""
|
1066 |
+
|
1067 |
+
#: deactivation-form.php:50
|
1068 |
+
msgid "The plugin broke my site"
|
1069 |
+
msgstr ""
|
1070 |
+
|
1071 |
+
#: deactivation-form.php:57
|
1072 |
+
msgid "I couldn't understand how to get it work"
|
1073 |
+
msgstr ""
|
1074 |
+
|
1075 |
+
#: deactivation-form.php:64
|
1076 |
+
msgid "I found a better plugin"
|
1077 |
+
msgstr ""
|
1078 |
+
|
1079 |
+
#: deactivation-form.php:66
|
1080 |
+
msgid "What's the plugin name?"
|
1081 |
+
msgstr ""
|
1082 |
+
|
1083 |
+
#: deactivation-form.php:70
|
1084 |
+
msgid "The plugin is great, but I need specific feature that you don't support"
|
1085 |
+
msgstr ""
|
1086 |
+
|
1087 |
+
#: deactivation-form.php:72
|
1088 |
+
msgid "What feature?"
|
1089 |
+
msgstr ""
|
1090 |
+
|
1091 |
+
#: deactivation-form.php:76
|
1092 |
+
msgid "I no longer need the plugin"
|
1093 |
+
msgstr ""
|
1094 |
+
|
1095 |
+
#: deactivation-form.php:82
|
1096 |
+
msgid "It's a temporary deactivation, I'm just debugging an issue"
|
1097 |
+
msgstr ""
|
1098 |
+
|
1099 |
+
#: deactivation-form.php:88
|
1100 |
+
msgid "Other"
|
1101 |
+
msgstr ""
|
1102 |
+
|
1103 |
+
#: deactivation-form.php:122
|
1104 |
+
msgid "Quick Feedback"
|
1105 |
+
msgstr ""
|
1106 |
+
|
1107 |
+
#: deactivation-form.php:123
|
1108 |
+
msgid "If you have a moment, please let us know why you are deactivating"
|
1109 |
+
msgstr ""
|
1110 |
+
|
1111 |
+
#: deactivation-form.php:128
|
1112 |
+
msgid "Anonymous feedback"
|
1113 |
+
msgstr ""
|
1114 |
+
|
1115 |
+
#: deactivation-form.php:130
|
1116 |
+
msgid "Cancel"
|
1117 |
+
msgstr ""
|
1118 |
+
|
1119 |
+
#: deactivation-form.php:230
|
1120 |
+
msgid "Processing"
|
1121 |
+
msgstr ""
|
1122 |
+
|
1123 |
+
#: deactivation-form.php:259
|
1124 |
+
msgid "Submit & Deactivate"
|
1125 |
+
msgstr ""
|
1126 |
+
|
1127 |
+
#: deactivation-form.php:276
|
1128 |
+
msgid "Please tell us the reason so we can improve it."
|
1129 |
+
msgstr ""
|
1130 |
+
|
1131 |
+
#: deactivation-form.php:344
|
1132 |
+
msgid "Deactivate"
|
1133 |
+
msgstr ""
|
1134 |
+
|
1135 |
#: deprecated.php:93
|
1136 |
#, fuzzy
|
1137 |
msgid "System Status"
|
1278 |
msgid "SMM"
|
1279 |
msgstr ""
|
1280 |
|
1281 |
+
#: product_list.php:23
|
1282 |
msgid ""
|
1283 |
"Protect WordPress website forms from spam entries by means of math logic."
|
1284 |
msgstr ""
|
1285 |
|
1286 |
+
#: product_list.php:35
|
1287 |
msgid "Create your personal car rental/booking and reservation website."
|
1288 |
msgstr ""
|
1289 |
|
1290 |
+
#: product_list.php:45
|
1291 |
msgid ""
|
1292 |
"Allow customers to reach you using secure contact form plugin any website "
|
1293 |
"must have."
|
1294 |
msgstr ""
|
1295 |
|
1296 |
+
#: product_list.php:55
|
1297 |
msgid "Add unlimited number of contact forms to WordPress website."
|
1298 |
msgstr ""
|
1299 |
|
1300 |
+
#: product_list.php:65
|
1301 |
msgid "Save and manage Contact Form messages. Never lose important data."
|
1302 |
msgstr ""
|
1303 |
|
1304 |
+
#: product_list.php:75
|
1305 |
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1306 |
msgstr ""
|
1307 |
|
1308 |
+
#: product_list.php:82
|
1309 |
msgid "Add custom fields to WordPress website search results."
|
1310 |
msgstr ""
|
1311 |
|
1312 |
+
#: product_list.php:89
|
1313 |
msgid ""
|
1314 |
"Add custom post types and taxonomies to WordPress website search results."
|
1315 |
msgstr ""
|
1316 |
|
1317 |
+
#: product_list.php:99
|
1318 |
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1319 |
msgstr ""
|
1320 |
|
1321 |
+
#: product_list.php:106
|
|
|
|
|
|
|
|
|
|
|
|
|
1322 |
msgid ""
|
1323 |
"Get latest error log messages to diagnose website problems. Define and fix "
|
1324 |
"issues faster."
|
1325 |
msgstr ""
|
1326 |
|
1327 |
+
#: product_list.php:113
|
1328 |
msgid ""
|
1329 |
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1330 |
"widgets."
|
1331 |
msgstr ""
|
1332 |
|
1333 |
+
#: product_list.php:123
|
1334 |
msgid ""
|
1335 |
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1336 |
"clicks."
|
1337 |
msgstr ""
|
1338 |
|
1339 |
+
#: product_list.php:133
|
|
|
|
|
|
|
|
|
|
|
|
|
1340 |
msgid ""
|
1341 |
"Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
|
1342 |
"posts, pages and widgets."
|
1343 |
msgstr ""
|
1344 |
|
1345 |
+
#: product_list.php:143
|
1346 |
msgid ""
|
1347 |
"Stronger security solution which protects your WordPress website from hacks "
|
1348 |
"and unauthorized login attempts."
|
1349 |
msgstr ""
|
1350 |
|
1351 |
+
#: product_list.php:153
|
1352 |
msgid ""
|
1353 |
"Add Adsense ads to WordPress website pages, posts, custom posts, search "
|
1354 |
"results, categories, tags, and widgets."
|
1355 |
msgstr ""
|
1356 |
|
1357 |
+
#: product_list.php:163
|
1358 |
msgid "Add Google Analytics code to WordPress website and track basic stats."
|
1359 |
msgstr ""
|
1360 |
|
1361 |
+
#: product_list.php:173
|
1362 |
msgid ""
|
1363 |
"Protect WordPress website forms from spam entries with Google Captcha "
|
1364 |
"(reCaptcha)."
|
1365 |
msgstr ""
|
1366 |
|
1367 |
+
#: product_list.php:183
|
1368 |
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1369 |
msgstr ""
|
1370 |
|
1371 |
+
#: product_list.php:193
|
1372 |
msgid ""
|
1373 |
"Generate and add XML sitemap to WordPress website. Help search engines index "
|
1374 |
"your blog."
|
1375 |
msgstr ""
|
1376 |
|
1377 |
+
#: product_list.php:203
|
1378 |
msgid ""
|
1379 |
"Replace external WordPress website links with Google shortlinks and track "
|
1380 |
"click stats."
|
1381 |
msgstr ""
|
1382 |
|
1383 |
+
#: product_list.php:210
|
1384 |
msgid ""
|
1385 |
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1386 |
"hostnames, etc."
|
1387 |
msgstr ""
|
1388 |
|
1389 |
+
#: product_list.php:220
|
1390 |
msgid ""
|
1391 |
"Create your personal job board and listing WordPress website. Search jobs, "
|
1392 |
"submit CV/resumes, choose candidates."
|
1393 |
msgstr ""
|
1394 |
|
1395 |
+
#: product_list.php:227
|
1396 |
msgid ""
|
1397 |
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1398 |
"attempts."
|
1399 |
msgstr ""
|
1400 |
|
1401 |
+
#: product_list.php:237
|
1402 |
msgid ""
|
1403 |
"Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
|
1404 |
"5 plugins included – profile, insider, etc."
|
1405 |
msgstr ""
|
1406 |
|
1407 |
+
#: product_list.php:247
|
1408 |
msgid ""
|
1409 |
"Translate WordPress website content to other languages manually. Create "
|
1410 |
"multilingual pages, posts, widgets, menus, etc."
|
1411 |
msgstr ""
|
1412 |
|
1413 |
+
#: product_list.php:257
|
1414 |
msgid ""
|
1415 |
"Add customizable pagination to WordPress website. Split long content to "
|
1416 |
"multiple pages for better navigation."
|
1417 |
msgstr ""
|
1418 |
|
1419 |
+
#: product_list.php:267
|
1420 |
msgid ""
|
1421 |
"Generate PDF files and print WordPress posts/pages. Customize document "
|
1422 |
"header/footer styles and appearance."
|
1423 |
msgstr ""
|
1424 |
|
1425 |
+
#: product_list.php:277
|
1426 |
msgid ""
|
1427 |
"Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
|
1428 |
"Profile) to WordPress posts, pages and widgets."
|
1429 |
msgstr ""
|
1430 |
|
1431 |
+
#: product_list.php:287
|
1432 |
msgid ""
|
1433 |
"Create your personal portfolio WordPress website. Manage and showcase past "
|
1434 |
"projects to get more clients."
|
1435 |
msgstr ""
|
1436 |
|
1437 |
+
#: product_list.php:297
|
1438 |
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1439 |
msgstr ""
|
1440 |
|
1441 |
+
#: product_list.php:304
|
1442 |
msgid ""
|
1443 |
"Add extra fields to default WordPress user profile. The easiest way to "
|
1444 |
"create and manage additional custom values."
|
1445 |
msgstr ""
|
1446 |
|
1447 |
+
#: product_list.php:311
|
1448 |
msgid ""
|
1449 |
"Add and display HTML advertisement banner on WordPress website. Customize "
|
1450 |
"bar styles and appearance."
|
1451 |
msgstr ""
|
1452 |
|
1453 |
+
#: product_list.php:321
|
1454 |
msgid ""
|
1455 |
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1456 |
"widgets."
|
1457 |
msgstr ""
|
1458 |
|
1459 |
+
#: product_list.php:328
|
1460 |
msgid ""
|
1461 |
"Add rating plugin to your WordPress website to receive feedback from your "
|
1462 |
"customers."
|
1463 |
msgstr ""
|
1464 |
|
1465 |
+
#: product_list.php:335
|
1466 |
msgid ""
|
1467 |
"Create your personal real estate WordPress website. Sell, rent and buy "
|
1468 |
"properties. Add, search and browse listings easily."
|
1469 |
msgstr ""
|
1470 |
|
1471 |
+
#: product_list.php:345
|
|
|
|
|
|
|
|
|
|
|
|
|
1472 |
msgid ""
|
1473 |
"Add related, featured, latest, and popular posts to your WordPress website. "
|
1474 |
"Connect your blog readers with a relevant content."
|
1475 |
msgstr ""
|
1476 |
|
1477 |
+
#: product_list.php:352
|
1478 |
msgid ""
|
1479 |
"Send bulk email messages to WordPress users. Custom templates, advanced "
|
1480 |
"settings and detailed reports."
|
1481 |
msgstr ""
|
1482 |
|
1483 |
+
#: product_list.php:362
|
1484 |
msgid ""
|
1485 |
"The best responsive slider plugin for your WordPress website. Create "
|
1486 |
"beautifully animated slides just in a few clicks."
|
1487 |
msgstr ""
|
1488 |
|
1489 |
+
#: product_list.php:369
|
1490 |
msgid ""
|
1491 |
"Configure SMTP server to receive email messages from WordPress to Gmail, "
|
1492 |
"Yahoo, Hotmail and other services."
|
1493 |
msgstr ""
|
1494 |
|
1495 |
+
#: product_list.php:376
|
1496 |
msgid ""
|
1497 |
"Add social media buttons and widgets to WordPress posts, pages and widgets. "
|
1498 |
"FB, Twitter, G+1, Pinterest, LinkedIn."
|
1499 |
msgstr ""
|
1500 |
|
1501 |
+
#: product_list.php:386
|
1502 |
msgid ""
|
1503 |
"Add social media login, registration, and commenting to your WordPress "
|
1504 |
"website."
|
1505 |
msgstr ""
|
1506 |
|
1507 |
+
#: product_list.php:393
|
1508 |
msgid ""
|
1509 |
"Add email newsletter sign up form to WordPress posts, pages and widgets. "
|
1510 |
"Collect data and subscribe your users."
|
1511 |
msgstr ""
|
1512 |
|
1513 |
+
#: product_list.php:403
|
1514 |
msgid ""
|
1515 |
"Add testimonials and feedbacks from your customers to WordPress website "
|
1516 |
"posts, pages, and widgets."
|
1517 |
msgstr ""
|
1518 |
|
1519 |
+
#: product_list.php:410
|
1520 |
msgid ""
|
1521 |
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1522 |
"attendance and generate reports."
|
1523 |
msgstr ""
|
1524 |
|
1525 |
+
#: product_list.php:420
|
1526 |
msgid ""
|
1527 |
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1528 |
"and pages."
|
1529 |
msgstr ""
|
1530 |
|
1531 |
+
#: product_list.php:430
|
1532 |
msgid ""
|
1533 |
"Automatically check and update WordPress website core with all installed "
|
1534 |
"plugins and themes to the latest versions."
|
1535 |
msgstr ""
|
1536 |
|
1537 |
+
#: product_list.php:440
|
1538 |
msgid ""
|
1539 |
"Powerful user role management plugin for WordPress website. Create, edit, "
|
1540 |
"copy, and delete user roles."
|
1541 |
msgstr ""
|
1542 |
|
1543 |
+
#: product_list.php:450
|
1544 |
msgid ""
|
1545 |
"Display live count of online visitors who are currently browsing your "
|
1546 |
"WordPress website."
|
1547 |
msgstr ""
|
1548 |
|
1549 |
+
#: product_list.php:460
|
1550 |
msgid ""
|
1551 |
"Backup and export Zendesk Help Center content automatically to your "
|
1552 |
"WordPress website database."
|
1553 |
msgstr ""
|
1554 |
|
1555 |
+
#~ msgid ""
|
1556 |
+
#~ "You can use one license of the Pro plugin for one domain only. Please "
|
1557 |
+
#~ "check and edit your license or domain if necessary using you personal "
|
1558 |
+
#~ "Client Area. We strongly recommend you to solve the problem within 24 "
|
1559 |
+
#~ "hours, otherwise the Pro plugin will be deactivated."
|
1560 |
+
#~ msgstr ""
|
1561 |
+
#~ "Licencja wersji PRO może być wykorzystywana tylko na jednej domenie. "
|
1562 |
+
#~ "Proszę sprawdź i edytuj klucz licencji lub domenę, jeśli to konieczne "
|
1563 |
+
#~ "wykorzystaj Panel Klienta. Zalecamy rozwiązanie tego problemu w przeciągu "
|
1564 |
+
#~ "24 godzin, w przeciwnym wypadku wersja PRO zostanie zablokowana."
|
1565 |
+
|
1566 |
+
#~ msgid "Insert"
|
1567 |
+
#~ msgstr "Umieść"
|
1568 |
+
|
1569 |
#, fuzzy
|
1570 |
#~ msgid "Site Stats"
|
1571 |
#~ msgstr "Status systemu"
|
bws_menu/languages/bestwebsoft-ru_RU.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-ru_RU.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
|
9 |
"Language: ru_RU\n"
|
@@ -16,11 +16,11 @@ msgstr ""
|
|
16 |
"X-Generator: Poedit 1.8.7.1\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
-
#: bws_functions.php:
|
20 |
msgid "requires"
|
21 |
msgstr "требует"
|
22 |
|
23 |
-
#: bws_functions.php:
|
24 |
msgid ""
|
25 |
"or higher, that is why it has been deactivated! Please upgrade WordPress and "
|
26 |
"try again."
|
@@ -28,60 +28,59 @@ msgstr ""
|
|
28 |
"или выше, поэтому он был деактивирован! Пожалуйста, обновите WordPress и "
|
29 |
"попробуйте еще раз."
|
30 |
|
31 |
-
#: bws_functions.php:
|
32 |
msgid "Back to the WordPress"
|
33 |
msgstr "Вернуться к WordPress на"
|
34 |
|
35 |
-
#: bws_functions.php:
|
36 |
msgid "Plugins page"
|
37 |
msgstr "Страницу плагинов"
|
38 |
|
39 |
-
#: bws_functions.php:
|
40 |
msgid "Like the plugin?"
|
41 |
msgstr "Понравился плагин?"
|
42 |
|
43 |
-
#: bws_functions.php:
|
44 |
msgid "Rate it"
|
45 |
msgstr "Оценить"
|
46 |
|
47 |
-
#: bws_functions.php:
|
48 |
msgid "Need help?"
|
49 |
msgstr "Нужна помощь?"
|
50 |
|
51 |
-
#: bws_functions.php:
|
52 |
msgid "Visit Help Center"
|
53 |
msgstr "Перейти в Help Center"
|
54 |
|
55 |
-
#: bws_functions.php:
|
56 |
msgid "Want to support the plugin?"
|
57 |
msgstr "Хотите поддержать плагин?"
|
58 |
|
59 |
-
#: bws_functions.php:
|
60 |
msgid "Donate"
|
61 |
msgstr "Пожертвовать"
|
62 |
|
63 |
-
#: bws_functions.php:
|
64 |
msgid "WARNING: Illegal use notification"
|
65 |
msgstr "ВНИМАНИЕ: уведомление о незаконном использовании"
|
66 |
|
67 |
-
#: bws_functions.php:
|
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
|
71 |
-
"We strongly recommend you to solve the problem within 24 hours,
|
72 |
-
"the Pro plugin will be deactivated."
|
73 |
msgstr ""
|
74 |
"Вы можете использовать одну лицензию Pro плагина только для одного домена. "
|
75 |
"Пожалуйста, проверьте и отредактируйте при необходимости лицензию или домен, "
|
76 |
"используя Ваш личный Client Area. Мы настоятельно рекомендуем вам решить "
|
77 |
"проблему в течение 24 часов, в противном случае плагин будет деактивирован."
|
78 |
|
79 |
-
#: bws_functions.php:
|
80 |
-
#: class-bws-settings.php:143
|
81 |
msgid "Learn More"
|
82 |
msgstr "Подробнее"
|
83 |
|
84 |
-
#: bws_functions.php:
|
85 |
msgid ""
|
86 |
"Notice: Your Pro Trial license has expired. To continue using the plugin, "
|
87 |
"you should buy a Pro license"
|
@@ -89,7 +88,7 @@ msgstr ""
|
|
89 |
"Внимание: Срок действия Pro Trial версии истек. Чтобы продолжить "
|
90 |
"пользоваться плагином, пожалуйста, приобретите Pro лицензию"
|
91 |
|
92 |
-
#: bws_functions.php:
|
93 |
msgid ""
|
94 |
"Your license has expired. To continue getting top-priority support and "
|
95 |
"plugin updates, you should extend it."
|
@@ -98,24 +97,24 @@ msgstr ""
|
|
98 |
"плагин в дальнейшем и иметь приоритетную тех.поддержку, то вам нужно "
|
99 |
"продлить лицензию."
|
100 |
|
101 |
-
#: bws_functions.php:
|
102 |
msgid "Learn more"
|
103 |
msgstr "Подробнее"
|
104 |
|
105 |
-
#: bws_functions.php:
|
106 |
#, php-format
|
107 |
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
108 |
msgstr "Внимание: Вы используете Pro Trial версию плагина %s."
|
109 |
|
110 |
-
#: bws_functions.php:
|
111 |
msgid "Notice: You are using the Pro Trial license of plugin."
|
112 |
msgstr "Внимание: Вы используете Pro Trial версию плагина."
|
113 |
|
114 |
-
#: bws_functions.php:
|
115 |
msgid "The Pro Trial license will expire on"
|
116 |
msgstr "Ваша лицензия Pro Trial версии плагина истекает"
|
117 |
|
118 |
-
#: bws_functions.php:
|
119 |
msgid ""
|
120 |
"or higher! We do not guarantee that our plugin will work correctly. Please "
|
121 |
"upgrade to WordPress latest version."
|
@@ -123,74 +122,74 @@ msgstr ""
|
|
123 |
"или выше! Мы не гарантируем, что наш плагин будет работать корректно. "
|
124 |
"Пожалуйста, обновите WordPress до последней версии."
|
125 |
|
126 |
-
#: bws_functions.php:
|
127 |
#, php-format
|
128 |
msgid "Thank you for installing %s plugin!"
|
129 |
msgstr "Спасибо, что установили %s плагин!"
|
130 |
|
131 |
-
#: bws_functions.php:
|
132 |
msgid "Let's get started"
|
133 |
msgstr "Давайте начнем"
|
134 |
|
135 |
-
#: bws_functions.php:
|
136 |
#: bws_menu.php:559
|
137 |
msgid "Settings"
|
138 |
msgstr "Настройки"
|
139 |
|
140 |
-
#: bws_functions.php:
|
141 |
-
#: class-bws-settings.php:
|
142 |
msgid "or"
|
143 |
msgstr "или"
|
144 |
|
145 |
-
#: bws_functions.php:
|
146 |
msgid "Add New"
|
147 |
msgstr "Добавить"
|
148 |
|
149 |
-
#: bws_functions.php:
|
150 |
-
#: bws_functions.php:
|
151 |
msgid "Close notice"
|
152 |
msgstr "Закрыть"
|
153 |
|
154 |
-
#: bws_functions.php:
|
155 |
msgid "Thank you for installing plugins by BestWebSoft!"
|
156 |
msgstr "Спасибо за установку плагинов компании BestWebSoft!"
|
157 |
|
158 |
-
#: bws_functions.php:
|
159 |
msgid "More Details"
|
160 |
msgstr "Детали"
|
161 |
|
162 |
-
#: bws_functions.php:
|
163 |
msgid "Less Details"
|
164 |
msgstr "Скрыть детали"
|
165 |
|
166 |
-
#: bws_functions.php:
|
167 |
msgid "Deprecated function(-s) is used on the site here:"
|
168 |
msgstr "Устаревшие функции используются на сайте здесь:"
|
169 |
|
170 |
-
#: bws_functions.php:
|
171 |
msgid ""
|
172 |
"This function(-s) will be removed over time. Please update the product(-s)."
|
173 |
msgstr ""
|
174 |
"Эти функции будет удалены через некоторое время. Пожалуйста, обновите "
|
175 |
"продукт."
|
176 |
|
177 |
-
#: bws_functions.php:
|
178 |
msgid "It’s time to upgrade your"
|
179 |
msgstr "Настало время обновить Ваш"
|
180 |
|
181 |
-
#: bws_functions.php:
|
182 |
msgid "to"
|
183 |
msgstr "до"
|
184 |
|
185 |
-
#: bws_functions.php:
|
186 |
msgid "version!"
|
187 |
msgstr "версии!"
|
188 |
|
189 |
-
#: bws_functions.php:
|
190 |
msgid "Extend standard plugin functionality with new great options."
|
191 |
msgstr "Расширяет возможности стандартного функционала плагина."
|
192 |
|
193 |
-
#: bws_functions.php:
|
194 |
#, php-format
|
195 |
msgid ""
|
196 |
"Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
|
@@ -199,12 +198,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 +212,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:
|
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,82 +238,78 @@ msgstr ""
|
|
239 |
"Вы всегда можете просмотреть премиум опции нажав на кнопку \"Pro опции\" на "
|
240 |
"вкладке \"Разное\"."
|
241 |
|
242 |
-
#: bws_functions.php:
|
243 |
msgid "Add BWS Shortcode"
|
244 |
msgstr "Добавить BWS шорткод"
|
245 |
|
246 |
-
#: bws_functions.php:
|
247 |
msgid "Add BWS Plugins Shortcode"
|
248 |
msgstr "Добавить шорткод BWS Плагина"
|
249 |
|
250 |
-
#: bws_functions.php:
|
251 |
msgid "Add shortcode"
|
252 |
msgstr "Добавить шорткод"
|
253 |
|
254 |
-
#: bws_functions.php:
|
255 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
256 |
msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
|
257 |
|
258 |
-
#: bws_functions.php:
|
259 |
msgid "Close"
|
260 |
msgstr "Закрыть"
|
261 |
|
262 |
-
#: bws_functions.php:
|
263 |
msgid "Are you sure you want to restore default settings?"
|
264 |
msgstr ""
|
265 |
"Вы уверены что хотите восстановить все настройки плагина к настройкам по "
|
266 |
"умолчанию?"
|
267 |
|
268 |
-
#: bws_functions.php:
|
269 |
msgid "Yes, restore all settings"
|
270 |
msgstr "Да, восстановить все настройки"
|
271 |
|
272 |
-
#: bws_functions.php:
|
273 |
msgid "No, go back to the settings page"
|
274 |
msgstr "Нет, вернуться на страницу настроек"
|
275 |
|
276 |
-
#: bws_functions.php:
|
277 |
msgid "Plugin"
|
278 |
msgstr "Плагин"
|
279 |
|
280 |
-
#: bws_functions.php:
|
281 |
msgid "Shortcode settings"
|
282 |
msgstr "Настройки шорткода"
|
283 |
|
284 |
-
#: bws_functions.php:
|
285 |
msgid "The shortcode will be inserted"
|
286 |
msgstr "Будет вставлен шорткод"
|
287 |
|
288 |
-
#: bws_functions.php:
|
289 |
-
msgid "Insert"
|
290 |
-
msgstr "Вставить"
|
291 |
-
|
292 |
-
#: bws_functions.php:912
|
293 |
msgid "FAQ"
|
294 |
msgstr "FAQ"
|
295 |
|
296 |
-
#: bws_functions.php:
|
297 |
msgid "For more information:"
|
298 |
msgstr "Для дополнительной информации:"
|
299 |
|
300 |
-
#: bws_functions.php:
|
301 |
msgid "Documentation"
|
302 |
msgstr "Документация"
|
303 |
|
304 |
-
#: bws_functions.php:
|
305 |
msgid "Video Instructions"
|
306 |
msgstr "Видео инструкции"
|
307 |
|
308 |
-
#: bws_functions.php:
|
309 |
msgid "Submit a Request"
|
310 |
msgstr "Отправить запрос"
|
311 |
|
312 |
-
#: bws_menu.php:101 class-bws-settings.php:
|
313 |
msgid "Wrong license key"
|
314 |
msgstr "Неправильный лицензионный ключ"
|
315 |
|
316 |
-
#: bws_menu.php:122 class-bws-settings.php:
|
317 |
-
#: class-bws-settings.php:
|
318 |
#: deprecated.php:352
|
319 |
msgid ""
|
320 |
"Something went wrong. Please try again later. If the error appears again, "
|
@@ -323,13 +318,13 @@ msgstr ""
|
|
323 |
"Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, "
|
324 |
"пожалуйста, свяжитесь с нами"
|
325 |
|
326 |
-
#: bws_menu.php:122 class-bws-settings.php:
|
327 |
-
#: class-bws-settings.php:
|
328 |
#: deprecated.php:352
|
329 |
msgid "We are sorry for inconvenience."
|
330 |
msgstr "Приносим извинения за неудобства."
|
331 |
|
332 |
-
#: bws_menu.php:128 class-bws-settings.php:
|
333 |
#: deprecated.php:139 deprecated.php:358
|
334 |
msgid "Wrong license key."
|
335 |
msgstr "Неправильный лицензионный ключ."
|
@@ -349,7 +344,7 @@ msgstr "Авторизоваться"
|
|
349 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
350 |
msgstr "К сожалению, вы превысили количество доступных попыток."
|
351 |
|
352 |
-
#: bws_menu.php:134 class-bws-settings.php:
|
353 |
#, php-format
|
354 |
msgid ""
|
355 |
"Unfortunately, Your license has expired. To continue getting top-priority "
|
@@ -359,7 +354,7 @@ msgstr ""
|
|
359 |
"обновлений и приоритетной тех.поддержки, вам необходимо продлить лицензию в "
|
360 |
"вашей %s"
|
361 |
|
362 |
-
#: bws_menu.php:136 class-bws-settings.php:
|
363 |
msgid ""
|
364 |
"Unfortunately, the Pro licence was already installed to this domain. The Pro "
|
365 |
"Trial license can be installed only once."
|
@@ -367,11 +362,11 @@ msgstr ""
|
|
367 |
"К сожалению, Pro лицензия уже была установлена на этом доменен. Pro Trial "
|
368 |
"лицензия может быть установлена только один раз."
|
369 |
|
370 |
-
#: bws_menu.php:142 class-bws-settings.php:
|
371 |
msgid "The license key is valid."
|
372 |
msgstr "Лицензионный ключ действителен."
|
373 |
|
374 |
-
#: bws_menu.php:144 class-bws-settings.php:
|
375 |
msgid "Your license will expire on"
|
376 |
msgstr "Ваша лицензия истечет"
|
377 |
|
@@ -379,7 +374,7 @@ msgstr "Ваша лицензия истечет"
|
|
379 |
msgid "Congratulations! Pro Membership license is activated successfully."
|
380 |
msgstr "Поздравляем! Pro Membership лицензия успешно активирована."
|
381 |
|
382 |
-
#: bws_menu.php:153 class-bws-settings.php:
|
383 |
msgid ""
|
384 |
"Something went wrong. Try again later or upload the plugin manually. We are "
|
385 |
"sorry for inconvenience."
|
@@ -553,7 +548,7 @@ msgstr "Плагины"
|
|
553 |
msgid "Themes"
|
554 |
msgstr "Темы"
|
555 |
|
556 |
-
#: bws_menu.php:309 bws_menu.php:313 bws_menu.php:
|
557 |
msgid "System status"
|
558 |
msgstr "Системная информация"
|
559 |
|
@@ -574,7 +569,7 @@ msgstr "Получить доступ к %s+ премиум плагинам"
|
|
574 |
msgid "Subscribe to Pro Membership"
|
575 |
msgstr "Подписаться на Pro Membership"
|
576 |
|
577 |
-
#: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:
|
578 |
#: deprecated.php:227
|
579 |
msgid "Check license key"
|
580 |
msgstr "Проверка лицензионного ключа"
|
@@ -584,7 +579,7 @@ msgid "Enter your license key"
|
|
584 |
msgstr "Ваш лицензионный ключ"
|
585 |
|
586 |
#: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
|
587 |
-
#: class-bws-settings.php:
|
588 |
#: deprecated.php:629 deprecated.php:700 deprecated.php:709
|
589 |
msgid "Activate"
|
590 |
msgstr "Активировать"
|
@@ -627,8 +622,8 @@ msgid "Downloading install package from"
|
|
627 |
msgstr "Скачивание установочного пакета из"
|
628 |
|
629 |
#: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
|
630 |
-
#: class-bws-settings.php:
|
631 |
-
#: class-bws-settings.php:
|
632 |
#: deprecated.php:431
|
633 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
634 |
msgstr ""
|
@@ -642,11 +637,11 @@ msgstr "Распаковка пакета"
|
|
642 |
msgid "Installing the plugin"
|
643 |
msgstr "Установка плагина"
|
644 |
|
645 |
-
#: bws_menu.php:417 class-bws-settings.php:
|
646 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
647 |
msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
|
648 |
|
649 |
-
#: bws_menu.php:424 class-bws-settings.php:
|
650 |
msgid ""
|
651 |
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
652 |
"plugin manually"
|
@@ -659,7 +654,7 @@ msgstr ""
|
|
659 |
msgid "The plugin %s is successfully installed."
|
660 |
msgstr "Плагин %s успешно установлен."
|
661 |
|
662 |
-
#: bws_menu.php:434 class-bws-settings.php:
|
663 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
664 |
msgstr ""
|
665 |
"Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
|
@@ -676,7 +671,7 @@ msgstr "Возврат к BestWebSoft Panel"
|
|
676 |
msgid "All"
|
677 |
msgstr "Все"
|
678 |
|
679 |
-
#: bws_menu.php:450 bws_menu.php:
|
680 |
msgid "Installed"
|
681 |
msgstr "Установленные"
|
682 |
|
@@ -709,7 +704,7 @@ msgstr "Обновить до версии %s"
|
|
709 |
msgid "Install Now"
|
710 |
msgstr "Установить"
|
711 |
|
712 |
-
#: bws_menu.php:549 class-bws-settings.php:
|
713 |
msgid "Upgrade to Pro"
|
714 |
msgstr "Обновить до Pro"
|
715 |
|
@@ -725,87 +720,87 @@ msgstr "Установить этот плагин"
|
|
725 |
msgid "Nothing found. Try another criteria."
|
726 |
msgstr "Ничего не найдено. Попробуйте другие критерии."
|
727 |
|
728 |
-
#: bws_menu.php:621
|
729 |
#, php-format
|
730 |
msgid "By %s"
|
731 |
msgstr "%s"
|
732 |
|
733 |
-
#: bws_menu.php:
|
734 |
msgid "Already Installed"
|
735 |
msgstr "Уже установлена"
|
736 |
|
737 |
-
#: bws_menu.php:
|
738 |
msgid "Browse Free WordPress Themes"
|
739 |
msgstr "Обзор бесплатных WordPress тем"
|
740 |
|
741 |
-
#: bws_menu.php:
|
742 |
msgid "Send to support"
|
743 |
msgstr "Отправить в тех. поддержку"
|
744 |
|
745 |
-
#: bws_menu.php:
|
746 |
msgid "Send to custom email »"
|
747 |
msgstr "Отправить на емейл »"
|
748 |
|
749 |
-
#: class-bws-settings.php:
|
750 |
msgid "Information"
|
751 |
msgstr "Информация"
|
752 |
|
753 |
-
#: class-bws-settings.php:
|
754 |
msgid "Inactive"
|
755 |
msgstr "Неактивна"
|
756 |
|
757 |
-
#: class-bws-settings.php:
|
758 |
msgid "Expired"
|
759 |
msgstr "Истекла"
|
760 |
|
761 |
-
#: class-bws-settings.php:
|
762 |
#, php-format
|
763 |
msgid "%s day(-s) left"
|
764 |
msgstr "%s дней осталось"
|
765 |
|
766 |
-
#: class-bws-settings.php:
|
767 |
#, php-format
|
768 |
msgid "Expired on %s"
|
769 |
msgstr "Истекает %s"
|
770 |
|
771 |
-
#: class-bws-settings.php:
|
772 |
msgid "Renew Now"
|
773 |
msgstr "Возобновить сейчас"
|
774 |
|
775 |
-
#: class-bws-settings.php:
|
776 |
msgid "Active"
|
777 |
msgstr "Активна"
|
778 |
|
779 |
-
#: class-bws-settings.php:
|
780 |
msgid "License"
|
781 |
msgstr "Лицензия"
|
782 |
|
783 |
-
#: class-bws-settings.php:
|
784 |
msgid "Status"
|
785 |
msgstr "Статус"
|
786 |
|
787 |
-
#: class-bws-settings.php:
|
788 |
msgid "Version"
|
789 |
msgstr "Версия"
|
790 |
|
791 |
-
#: class-bws-settings.php:
|
792 |
msgid "All plugin settings were restored."
|
793 |
msgstr "Все настройки плагина были восстановлены."
|
794 |
|
795 |
-
#: class-bws-settings.php:
|
796 |
msgid "Custom Code"
|
797 |
msgstr "Пользовательский код"
|
798 |
|
799 |
-
#: class-bws-settings.php:
|
800 |
msgid "You do not have sufficient permissions to edit plugins for this site."
|
801 |
msgstr ""
|
802 |
"У вас недостаточно полномочий, чтобы редактировать плагины на этом сайте."
|
803 |
|
804 |
-
#: class-bws-settings.php:
|
805 |
msgid "These styles will be added to the header on all pages of your site."
|
806 |
msgstr "Эти стили будут добавлены в хедер на всех страницах вашего сайта."
|
807 |
|
808 |
-
#: class-bws-settings.php:
|
809 |
#, php-format
|
810 |
msgid ""
|
811 |
"This PHP code will be hooked to the %s action and will be printed on front "
|
@@ -814,11 +809,11 @@ msgstr ""
|
|
814 |
"Этот PHP код будет прикреплен к %s аction и будет добавлен только во "
|
815 |
"фронтенде."
|
816 |
|
817 |
-
#: class-bws-settings.php:
|
818 |
msgid "These code will be added to the header on all pages of your site."
|
819 |
msgstr "Этот код будет добавлен в хедер на всех страницах вашего сайта."
|
820 |
|
821 |
-
#: class-bws-settings.php:
|
822 |
#, php-format
|
823 |
msgid ""
|
824 |
"You need to make this files writable before you can save your changes. See "
|
@@ -827,25 +822,25 @@ msgstr ""
|
|
827 |
"Чтобы сохранить изменения, нужно сделать этот файл доступным для записи. "
|
828 |
"Дополнительную информацию можно получить в %s Кодексе %s."
|
829 |
|
830 |
-
#: class-bws-settings.php:
|
831 |
msgid "Browsing"
|
832 |
msgstr "Просмотр"
|
833 |
|
834 |
-
#: class-bws-settings.php:
|
835 |
#, php-format
|
836 |
msgid "Activate custom %s code."
|
837 |
msgstr "Активировать пользовательский %s код."
|
838 |
|
839 |
-
#: class-bws-settings.php:
|
840 |
#, php-format
|
841 |
msgid "Learn more about %s"
|
842 |
msgstr "Подробнее о %s"
|
843 |
|
844 |
-
#: class-bws-settings.php:
|
845 |
msgid "Miscellaneous Settings"
|
846 |
msgstr "Прочие настройки"
|
847 |
|
848 |
-
#: class-bws-settings.php:
|
849 |
#, php-format
|
850 |
msgid ""
|
851 |
"It is prohibited to change %s settings on this site in the %s network "
|
@@ -853,74 +848,74 @@ msgid ""
|
|
853 |
msgstr ""
|
854 |
"Cетевыми настройками %s запрещается изменять настройки %s на этом сайте."
|
855 |
|
856 |
-
#: class-bws-settings.php:
|
857 |
#, php-format
|
858 |
msgid ""
|
859 |
"It is prohibited to view %s settings on this site in the %s network settings."
|
860 |
msgstr ""
|
861 |
"Cетевыми настройками %s запрещается просматривать настройки %s на этом сайте."
|
862 |
|
863 |
-
#: class-bws-settings.php:
|
864 |
msgid "Pro Options"
|
865 |
msgstr "Pro опции"
|
866 |
|
867 |
-
#: class-bws-settings.php:
|
868 |
msgid "Enable to display plugin Pro options."
|
869 |
msgstr "Включите для отображения Pro опций плагина."
|
870 |
|
871 |
-
#: class-bws-settings.php:
|
872 |
msgid "Track Usage"
|
873 |
msgstr "Собирать статистику"
|
874 |
|
875 |
-
#: class-bws-settings.php:
|
876 |
msgid ""
|
877 |
"Enable to allow tracking plugin usage anonymously in order to make it better."
|
878 |
msgstr ""
|
879 |
"Включить, чтобы разрешить анонимно отслеживать использование и сделать "
|
880 |
"плагин лучше."
|
881 |
|
882 |
-
#: class-bws-settings.php:
|
883 |
msgid "Default Settings"
|
884 |
msgstr "Настройки по умолчанию"
|
885 |
|
886 |
-
#: class-bws-settings.php:
|
887 |
msgid "Restore Settings"
|
888 |
msgstr "Восстановить настройки"
|
889 |
|
890 |
-
#: class-bws-settings.php:
|
891 |
msgid "This will restore plugin settings to defaults."
|
892 |
msgstr "Восстановить все настройки плагина к настройкам по умолчанию."
|
893 |
|
894 |
-
#: class-bws-settings.php:
|
895 |
msgid "Import / Export"
|
896 |
msgstr "Импорт / Экспорт"
|
897 |
|
898 |
-
#: class-bws-settings.php:
|
899 |
-
#: class-bws-settings.php:
|
900 |
msgid "License Key"
|
901 |
msgstr "Лицензионный ключ"
|
902 |
|
903 |
-
#: class-bws-settings.php:
|
904 |
msgid "Congratulations! Pro license is activated successfully."
|
905 |
msgstr "Поздравляем! Pro лицензия успешно активирована."
|
906 |
|
907 |
-
#: class-bws-settings.php:
|
908 |
#, php-format
|
909 |
msgid "You will be automatically redirected to the %s in %s seconds."
|
910 |
msgstr "Вы будете автоматически перенаправлены на %s через %s секунд."
|
911 |
|
912 |
-
#: class-bws-settings.php:
|
913 |
msgid "Settings page"
|
914 |
msgstr "страницу Настроек"
|
915 |
|
916 |
-
#: class-bws-settings.php:
|
917 |
#, php-format
|
918 |
msgid "Enter your license key to activate %s and get premium plugin features."
|
919 |
msgstr ""
|
920 |
"Введите лицензионный ключ для активации %s и получения дополнительных "
|
921 |
"возможностей плагина."
|
922 |
|
923 |
-
#: class-bws-settings.php:
|
924 |
#: deprecated.php:703
|
925 |
msgid ""
|
926 |
"Unfortunately, you have exceeded the number of available tries per day. "
|
@@ -929,12 +924,12 @@ msgstr ""
|
|
929 |
"К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, "
|
930 |
"загрузите плагин вручную."
|
931 |
|
932 |
-
#: class-bws-settings.php:
|
933 |
#, php-format
|
934 |
msgid "Start Your Free %s-Day Trial Now"
|
935 |
msgstr "Попробуйте %s-дневную Trial версию бесплатно"
|
936 |
|
937 |
-
#: class-bws-settings.php:
|
938 |
msgid ""
|
939 |
"If necessary, you can check if the license key is correct or reenter it in "
|
940 |
"the field below."
|
@@ -942,15 +937,15 @@ msgstr ""
|
|
942 |
"При необходимости вы можете проверить валидность лицензионного ключа или "
|
943 |
"повторно ввести его в поле ниже."
|
944 |
|
945 |
-
#: class-bws-settings.php:
|
946 |
msgid "Manage License Settings"
|
947 |
msgstr "Управление настройками лицензий"
|
948 |
|
949 |
-
#: class-bws-settings.php:
|
950 |
msgid "Login to Client Area"
|
951 |
msgstr "Зайти в Client Area"
|
952 |
|
953 |
-
#: class-bws-settings.php:
|
954 |
msgid ""
|
955 |
"Manage active licenses, download BWS products, and view your payment history "
|
956 |
"using BestWebSoft Client Area."
|
@@ -958,12 +953,12 @@ msgstr ""
|
|
958 |
"Управляй активными лицензиями, загружай BWS продукты, а также просматривай "
|
959 |
"историю платежей с помощью BestWebSoft Client Area."
|
960 |
|
961 |
-
#: class-bws-settings.php:
|
962 |
#: deprecated.php:360
|
963 |
msgid "This license key is bound to another site."
|
964 |
msgstr "Этот лицензионный ключ привязан к другому сайту."
|
965 |
|
966 |
-
#: class-bws-settings.php:
|
967 |
msgid ""
|
968 |
"This license key is valid, but Your license has expired. If you want to "
|
969 |
"update our plugin in future, you should extend the license."
|
@@ -971,11 +966,11 @@ msgstr ""
|
|
971 |
"Лицензионный ключ принят, но срок действия лицензии истек. Если вы хотите "
|
972 |
"обновлять плагин в будущем, вы должны продлить лицензию."
|
973 |
|
974 |
-
#: class-bws-settings.php:
|
975 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
976 |
msgstr "К сожалению, вы превысили количество доступных попыток."
|
977 |
|
978 |
-
#: class-bws-settings.php:
|
979 |
msgid ""
|
980 |
"Unfortunately, the Pro Trial licence was already installed to this domain. "
|
981 |
"The Pro Trial license can be installed only once."
|
@@ -983,37 +978,139 @@ msgstr ""
|
|
983 |
"К сожалению, Pro Trial версия плагина уже устанавливалась на этот домен. Pro "
|
984 |
"Trial версию можно устанавливать лишь один раз."
|
985 |
|
986 |
-
#: class-bws-settings.php:
|
987 |
msgid "The Pro Trial license key is valid."
|
988 |
msgstr "Ключ Pro Trial версии действителен."
|
989 |
|
990 |
-
#: class-bws-settings.php:
|
991 |
#, php-format
|
992 |
msgid ""
|
993 |
"In order to continue using the plugin it is necessary to buy a %s license."
|
994 |
msgstr ""
|
995 |
"Чтобы продолжить пользоваться плагином, необходимо приобрести %s лицензию."
|
996 |
|
997 |
-
#: class-bws-settings.php:
|
998 |
msgid "Please, enter Your license key"
|
999 |
msgstr "Пожалуйста, введите ваш лицензионный ключ"
|
1000 |
|
1001 |
-
#: class-bws-settings.php:
|
1002 |
msgid "Need Help?"
|
1003 |
msgstr "Нужна помощь?"
|
1004 |
|
1005 |
-
#: class-bws-settings.php:
|
1006 |
msgid "Read the Instruction"
|
1007 |
msgstr "Читать инструкцию"
|
1008 |
|
1009 |
-
#: class-bws-settings.php:
|
1010 |
msgid "Watch the Video"
|
1011 |
msgstr "Смотреть видео"
|
1012 |
|
1013 |
-
#: class-bws-settings.php:
|
1014 |
msgid "Start Your Free Trial"
|
1015 |
msgstr "Использовать бесплатную Trial версию"
|
1016 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1017 |
#: deprecated.php:93
|
1018 |
msgid "System Status"
|
1019 |
msgstr "Системная информация"
|
@@ -1152,17 +1249,17 @@ msgstr "Поисковая оптимизация"
|
|
1152 |
msgid "SMM"
|
1153 |
msgstr "СММ"
|
1154 |
|
1155 |
-
#: product_list.php:
|
1156 |
msgid ""
|
1157 |
"Protect WordPress website forms from spam entries by means of math logic."
|
1158 |
msgstr ""
|
1159 |
"Защищайте формы вашего сайта WordPress от взлома путем математической логики."
|
1160 |
|
1161 |
-
#: product_list.php:
|
1162 |
msgid "Create your personal car rental/booking and reservation website."
|
1163 |
msgstr "Создайте свой собственный сайт проката и резервирования автомобилей."
|
1164 |
|
1165 |
-
#: product_list.php:
|
1166 |
msgid ""
|
1167 |
"Allow customers to reach you using secure contact form plugin any website "
|
1168 |
"must have."
|
@@ -1170,50 +1267,42 @@ msgstr ""
|
|
1170 |
"Предоставьте возможность клиентам осуществлять связь с вами через безопасный "
|
1171 |
"плагин контактной формы, который должен иметь любой сайт."
|
1172 |
|
1173 |
-
#: product_list.php:
|
1174 |
msgid "Add unlimited number of contact forms to WordPress website."
|
1175 |
msgstr ""
|
1176 |
"Добавляйте неограниченное количество контактных форм на ваш сайт WordPress."
|
1177 |
|
1178 |
-
#: product_list.php:
|
1179 |
msgid "Save and manage Contact Form messages. Never lose important data."
|
1180 |
msgstr ""
|
1181 |
"Сохраняйте и управляйте сообщениями плагина Contact Form. Никогда не теряйте "
|
1182 |
"важные данные."
|
1183 |
|
1184 |
-
#: product_list.php:
|
1185 |
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1186 |
msgstr ""
|
1187 |
"Добавляйте неограниченное количество пользовательских страниц в панели "
|
1188 |
"администратора WordPress."
|
1189 |
|
1190 |
-
#: product_list.php:
|
1191 |
msgid "Add custom fields to WordPress website search results."
|
1192 |
msgstr ""
|
1193 |
"Добавляйте пользовательские поля в результаты поиска вашего сайта WordPress."
|
1194 |
|
1195 |
-
#: product_list.php:
|
1196 |
msgid ""
|
1197 |
"Add custom post types and taxonomies to WordPress website search results."
|
1198 |
msgstr ""
|
1199 |
"Добавляйте пользовательские типы постов и таксономии в результаты поиска на "
|
1200 |
"вашем сайте WordPress."
|
1201 |
|
1202 |
-
#: product_list.php:
|
1203 |
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1204 |
msgstr ""
|
1205 |
"Добавляйте кнопки PayPal и 2CO, чтобы получать пожертвования и "
|
1206 |
"благотворительные взносы."
|
1207 |
|
1208 |
-
#: product_list.php:
|
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."
|
@@ -1221,7 +1310,7 @@ msgstr ""
|
|
1221 |
"Получайте последние сообщения из журнала ошибок для диагностики проблем "
|
1222 |
"сайта. Быстрее выявляйте и устраняйте проблемы."
|
1223 |
|
1224 |
-
#: product_list.php:
|
1225 |
msgid ""
|
1226 |
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1227 |
"widgets."
|
@@ -1229,7 +1318,7 @@ msgstr ""
|
|
1229 |
"Добавляйте кнопки Facebook \"Подписаться\", \"Нравится\" и \"Поделиться\" в "
|
1230 |
"посты, страницы и виджеты сайта WordPress."
|
1231 |
|
1232 |
-
#: product_list.php:
|
1233 |
msgid ""
|
1234 |
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1235 |
"clicks."
|
@@ -1237,15 +1326,7 @@ msgstr ""
|
|
1237 |
"Добавляйте живописные галереи, альбомы и изображения на ваш сайт WordPress "
|
1238 |
"всего в несколько кликов."
|
1239 |
|
1240 |
-
#: product_list.php:
|
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."
|
@@ -1253,7 +1334,7 @@ msgstr ""
|
|
1253 |
"Добавляйте кнопки Google \"+1\", \"Поделиться\", \"Подписаться\", \"Hangout"
|
1254 |
"\" и значок профиля к постам, страницам и виджетам WordPress."
|
1255 |
|
1256 |
-
#: product_list.php:
|
1257 |
msgid ""
|
1258 |
"Stronger security solution which protects your WordPress website from hacks "
|
1259 |
"and unauthorized login attempts."
|
@@ -1261,7 +1342,7 @@ msgstr ""
|
|
1261 |
"Мощнейшее решение для безопасности, которое защищает ваш сайт WordPress от "
|
1262 |
"взломов и неавторизованных попыток входа в систему."
|
1263 |
|
1264 |
-
#: product_list.php:
|
1265 |
msgid ""
|
1266 |
"Add Adsense ads to WordPress website pages, posts, custom posts, search "
|
1267 |
"results, categories, tags, and widgets."
|
@@ -1269,13 +1350,13 @@ msgstr ""
|
|
1269 |
"Добавляйте рекламу сервиса Adsense на страницы, посты, пользовательские "
|
1270 |
"посты, результаты поиска, категории, теги и виджеты сайта WordPress."
|
1271 |
|
1272 |
-
#: product_list.php:
|
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:
|
1279 |
msgid ""
|
1280 |
"Protect WordPress website forms from spam entries with Google Captcha "
|
1281 |
"(reCaptcha)."
|
@@ -1283,13 +1364,13 @@ msgstr ""
|
|
1283 |
"Защищайте формы вашего сайта WordPress от спама с помощью Google Captcha "
|
1284 |
"(reCaptcha)."
|
1285 |
|
1286 |
-
#: product_list.php:
|
1287 |
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1288 |
msgstr ""
|
1289 |
"Добавляйте пользовательские карты Google в посты, страницы и виджеты "
|
1290 |
"WordPress."
|
1291 |
|
1292 |
-
#: product_list.php:
|
1293 |
msgid ""
|
1294 |
"Generate and add XML sitemap to WordPress website. Help search engines index "
|
1295 |
"your blog."
|
@@ -1297,7 +1378,7 @@ msgstr ""
|
|
1297 |
"Создавайте и добавляйте файлы XML sitemap на ваш сайт WordPress. Помогите "
|
1298 |
"поисковым системам проиндексировать ваш блог."
|
1299 |
|
1300 |
-
#: product_list.php:
|
1301 |
msgid ""
|
1302 |
"Replace external WordPress website links with Google shortlinks and track "
|
1303 |
"click stats."
|
@@ -1305,7 +1386,7 @@ msgstr ""
|
|
1305 |
"Замените внешние ссылки сайта WordPress на короткие ссылки Google и "
|
1306 |
"отслеживайте статистику кликов."
|
1307 |
|
1308 |
-
#: product_list.php:
|
1309 |
msgid ""
|
1310 |
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1311 |
"hostnames, etc."
|
@@ -1313,7 +1394,7 @@ msgstr ""
|
|
1313 |
"Защитите свой сайт WordPress - предоставляйте и запрещайте доступ с "
|
1314 |
"определенных IP-адресов, имен хостов и т.д."
|
1315 |
|
1316 |
-
#: product_list.php:
|
1317 |
msgid ""
|
1318 |
"Create your personal job board and listing WordPress website. Search jobs, "
|
1319 |
"submit CV/resumes, choose candidates."
|
@@ -1322,7 +1403,7 @@ msgstr ""
|
|
1322 |
"WordPress. Осуществляйте поиск вакансий, подачу резюме/CV кандидата, выбор "
|
1323 |
"кандидатов."
|
1324 |
|
1325 |
-
#: product_list.php:
|
1326 |
msgid ""
|
1327 |
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1328 |
"attempts."
|
@@ -1330,7 +1411,7 @@ msgstr ""
|
|
1330 |
"Защищайте свой сайт WordPress от брутфорс-атак. Ограничивайте количество "
|
1331 |
"попыток ввода логина."
|
1332 |
|
1333 |
-
#: product_list.php:
|
1334 |
msgid ""
|
1335 |
"Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
|
1336 |
"5 plugins included – profile, insider, etc."
|
@@ -1339,7 +1420,7 @@ msgstr ""
|
|
1339 |
"страницам и виджетам WordPress. 5 плагинов включено - Профиль, Инсайдер и т."
|
1340 |
"д."
|
1341 |
|
1342 |
-
#: product_list.php:
|
1343 |
msgid ""
|
1344 |
"Translate WordPress website content to other languages manually. Create "
|
1345 |
"multilingual pages, posts, widgets, menus, etc."
|
@@ -1347,7 +1428,7 @@ msgstr ""
|
|
1347 |
"Переводите содержимое сайта WordPress на другие языки вручную. Создавайте "
|
1348 |
"многоязычные страницы, посты, виджеты, меню и т.д."
|
1349 |
|
1350 |
-
#: product_list.php:
|
1351 |
msgid ""
|
1352 |
"Add customizable pagination to WordPress website. Split long content to "
|
1353 |
"multiple pages for better navigation."
|
@@ -1355,7 +1436,7 @@ msgstr ""
|
|
1355 |
"Добавляйте настраиваемую пагинацию на ваш сайт WordPress. Разбивайте "
|
1356 |
"объемный контент на несколько страниц для лучшей навигации."
|
1357 |
|
1358 |
-
#: product_list.php:
|
1359 |
msgid ""
|
1360 |
"Generate PDF files and print WordPress posts/pages. Customize document "
|
1361 |
"header/footer styles and appearance."
|
@@ -1363,7 +1444,7 @@ msgstr ""
|
|
1363 |
"Создавайте PDF-файлы и печатайте посты/страницы сайта WordPress. "
|
1364 |
"Настраивайте стили хедера/футера документа и его внешний вид."
|
1365 |
|
1366 |
-
#: product_list.php:
|
1367 |
msgid ""
|
1368 |
"Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
|
1369 |
"Profile) to WordPress posts, pages and widgets."
|
@@ -1371,7 +1452,7 @@ msgstr ""
|
|
1371 |
"Добавляйте кнопки Pinterest \"Подписаться\", \"Сохранить\" и виджеты профиля "
|
1372 |
"(Пин, Доска, Профиль) к постам, страницам и виджетам WordPress."
|
1373 |
|
1374 |
-
#: product_list.php:
|
1375 |
msgid ""
|
1376 |
"Create your personal portfolio WordPress website. Manage and showcase past "
|
1377 |
"projects to get more clients."
|
@@ -1379,13 +1460,13 @@ msgstr ""
|
|
1379 |
"Создавайте и добавляйте портфолио на свой сайт WordPress. Управляйте и "
|
1380 |
"демонстрируйте прошлые проекты, чтобы привлечь больше клиентов."
|
1381 |
|
1382 |
-
#: product_list.php:
|
1383 |
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1384 |
msgstr ""
|
1385 |
"С легкостью экспортируйте посты WordPress в файлы формата CSV. Настраивайте "
|
1386 |
"порядок отображения данных."
|
1387 |
|
1388 |
-
#: product_list.php:
|
1389 |
msgid ""
|
1390 |
"Add extra fields to default WordPress user profile. The easiest way to "
|
1391 |
"create and manage additional custom values."
|
@@ -1393,7 +1474,7 @@ msgstr ""
|
|
1393 |
"Добавляйте пользовательские поля в стандартный профиль WordPress. Самый "
|
1394 |
"простой способ создания и управления дополнительными полями."
|
1395 |
|
1396 |
-
#: product_list.php:
|
1397 |
msgid ""
|
1398 |
"Add and display HTML advertisement banner on WordPress website. Customize "
|
1399 |
"bar styles and appearance."
|
@@ -1401,7 +1482,7 @@ msgstr ""
|
|
1401 |
"Добавляйте и отображайте баннерную HTML рекламу на сайте WordPress. "
|
1402 |
"Настраивайте стили и внешний вид баннера."
|
1403 |
|
1404 |
-
#: product_list.php:
|
1405 |
msgid ""
|
1406 |
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1407 |
"widgets."
|
@@ -1409,7 +1490,7 @@ msgstr ""
|
|
1409 |
"Добавляйте настраиваемые цитаты и подсказки к постам, страницам и виджетам "
|
1410 |
"WordPress."
|
1411 |
|
1412 |
-
#: product_list.php:
|
1413 |
msgid ""
|
1414 |
"Add rating plugin to your WordPress website to receive feedback from your "
|
1415 |
"customers."
|
@@ -1417,7 +1498,7 @@ msgstr ""
|
|
1417 |
"Добавляйте систему оценивания и рейтинга на ваш сайт WordPress и получайте "
|
1418 |
"отзывы от ваших клиентов."
|
1419 |
|
1420 |
-
#: product_list.php:
|
1421 |
msgid ""
|
1422 |
"Create your personal real estate WordPress website. Sell, rent and buy "
|
1423 |
"properties. Add, search and browse listings easily."
|
@@ -1426,15 +1507,7 @@ msgstr ""
|
|
1426 |
"Продавайте, арендуйте и покупайте недвижимость. Легко добавляйте, находите и "
|
1427 |
"просматривайте листинги."
|
1428 |
|
1429 |
-
#: product_list.php:
|
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."
|
@@ -1442,7 +1515,7 @@ msgstr ""
|
|
1442 |
"Добавляйте похожие, избранные, последние и популярные посты на ваш сайт "
|
1443 |
"WordPress. Предоставляйте своим читателям контент схожей тематики."
|
1444 |
|
1445 |
-
#: product_list.php:
|
1446 |
msgid ""
|
1447 |
"Send bulk email messages to WordPress users. Custom templates, advanced "
|
1448 |
"settings and detailed reports."
|
@@ -1450,7 +1523,7 @@ msgstr ""
|
|
1450 |
"Осуществляйте массовую рассылку писем пользователям WordPress. "
|
1451 |
"Пользовательские шаблоны, дополнительные настройки и подробные отчеты."
|
1452 |
|
1453 |
-
#: product_list.php:
|
1454 |
msgid ""
|
1455 |
"The best responsive slider plugin for your WordPress website. Create "
|
1456 |
"beautifully animated slides just in a few clicks."
|
@@ -1458,15 +1531,16 @@ msgstr ""
|
|
1458 |
"Самый лучший адаптивный слайдер для вашего сайта WordPress. Создавайте "
|
1459 |
"красиво анимированные слайды всего в несколько кликов."
|
1460 |
|
1461 |
-
#: product_list.php:
|
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 на такие почтовые
|
|
|
1468 |
|
1469 |
-
#: product_list.php:
|
1470 |
msgid ""
|
1471 |
"Add social media buttons and widgets to WordPress posts, pages and widgets. "
|
1472 |
"FB, Twitter, G+1, Pinterest, LinkedIn."
|
@@ -1474,7 +1548,7 @@ msgstr ""
|
|
1474 |
"Добавляйте кнопки и виджеты социальных сетей к постам, страницам и виджетам "
|
1475 |
"WordPress. FB, Twitter, G+1, Pinterest, LinkedIn."
|
1476 |
|
1477 |
-
#: product_list.php:
|
1478 |
msgid ""
|
1479 |
"Add social media login, registration, and commenting to your WordPress "
|
1480 |
"website."
|
@@ -1482,7 +1556,7 @@ msgstr ""
|
|
1482 |
"Добавляйте на свой сайт WordPress возможность входа, регистрации и "
|
1483 |
"комментирования с использованием существующих аккаунтов социальных сетей."
|
1484 |
|
1485 |
-
#: product_list.php:
|
1486 |
msgid ""
|
1487 |
"Add email newsletter sign up form to WordPress posts, pages and widgets. "
|
1488 |
"Collect data and subscribe your users."
|
@@ -1490,7 +1564,7 @@ msgstr ""
|
|
1490 |
"Добавляйте форму подписки на новостную рассылку в посты, страницы и виджеты "
|
1491 |
"WordPress. Собирайте данные и осуществляйте подписку пользователей."
|
1492 |
|
1493 |
-
#: product_list.php:
|
1494 |
msgid ""
|
1495 |
"Add testimonials and feedbacks from your customers to WordPress website "
|
1496 |
"posts, pages, and widgets."
|
@@ -1498,7 +1572,7 @@ msgstr ""
|
|
1498 |
"Добавляйте рекомендации и отзывы ваших клиентов в посты, страницы и виджеты "
|
1499 |
"сайта WordPress."
|
1500 |
|
1501 |
-
#: product_list.php:
|
1502 |
msgid ""
|
1503 |
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1504 |
"attendance and generate reports."
|
@@ -1506,7 +1580,7 @@ msgstr ""
|
|
1506 |
"Лучший плагин учёта рабочего времени на сайте WordPress. Отслеживайте время "
|
1507 |
"работы сотрудников, оптимизируйте график работы в офисе и создавайте отчеты."
|
1508 |
|
1509 |
-
#: product_list.php:
|
1510 |
msgid ""
|
1511 |
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1512 |
"and pages."
|
@@ -1514,7 +1588,7 @@ msgstr ""
|
|
1514 |
"Добавляйте кнопки Твиттера \"Читать\", \"Твитнуть\", \"Метка\" и \"Упомянуть"
|
1515 |
"\" к постам и страницам WordPress. "
|
1516 |
|
1517 |
-
#: product_list.php:
|
1518 |
msgid ""
|
1519 |
"Automatically check and update WordPress website core with all installed "
|
1520 |
"plugins and themes to the latest versions."
|
@@ -1522,7 +1596,7 @@ msgstr ""
|
|
1522 |
"Выполняйте автоматическую проверку и обновление ядра WordPress до последних "
|
1523 |
"версий со всеми установленными плагинами и темами."
|
1524 |
|
1525 |
-
#: product_list.php:
|
1526 |
msgid ""
|
1527 |
"Powerful user role management plugin for WordPress website. Create, edit, "
|
1528 |
"copy, and delete user roles."
|
@@ -1530,7 +1604,7 @@ msgstr ""
|
|
1530 |
"Эффективный плагин управления ролями пользователей для сайта WordPress. "
|
1531 |
"Создавайте, редактируйте, копируйте и удаляйте роли пользователей."
|
1532 |
|
1533 |
-
#: product_list.php:
|
1534 |
msgid ""
|
1535 |
"Display live count of online visitors who are currently browsing your "
|
1536 |
"WordPress website."
|
@@ -1538,7 +1612,7 @@ msgstr ""
|
|
1538 |
"Ведите подсчет количества посетителей, которые в настоящее время "
|
1539 |
"просматривают ваш сайт WordPress."
|
1540 |
|
1541 |
-
#: product_list.php:
|
1542 |
msgid ""
|
1543 |
"Backup and export Zendesk Help Center content automatically to your "
|
1544 |
"WordPress website database."
|
@@ -1546,6 +1620,42 @@ 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."
|
@@ -1571,9 +1681,6 @@ msgstr ""
|
|
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 ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-08-28 09:55+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-08-28 10:12+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"
|
16 |
"X-Generator: Poedit 1.8.7.1\n"
|
17 |
"X-Poedit-SearchPath-0: .\n"
|
18 |
|
19 |
+
#: bws_functions.php:73 bws_functions.php:191
|
20 |
msgid "requires"
|
21 |
msgstr "требует"
|
22 |
|
23 |
+
#: bws_functions.php:75
|
24 |
msgid ""
|
25 |
"or higher, that is why it has been deactivated! Please upgrade WordPress and "
|
26 |
"try again."
|
28 |
"или выше, поэтому он был деактивирован! Пожалуйста, обновите WordPress и "
|
29 |
"попробуйте еще раз."
|
30 |
|
31 |
+
#: bws_functions.php:76
|
32 |
msgid "Back to the WordPress"
|
33 |
msgstr "Вернуться к WordPress на"
|
34 |
|
35 |
+
#: bws_functions.php:78
|
36 |
msgid "Plugins page"
|
37 |
msgstr "Страницу плагинов"
|
38 |
|
39 |
+
#: bws_functions.php:92
|
40 |
msgid "Like the plugin?"
|
41 |
msgstr "Понравился плагин?"
|
42 |
|
43 |
+
#: bws_functions.php:94
|
44 |
msgid "Rate it"
|
45 |
msgstr "Оценить"
|
46 |
|
47 |
+
#: bws_functions.php:103
|
48 |
msgid "Need help?"
|
49 |
msgstr "Нужна помощь?"
|
50 |
|
51 |
+
#: bws_functions.php:104 bws_functions.php:911 class-bws-settings.php:1056
|
52 |
msgid "Visit Help Center"
|
53 |
msgstr "Перейти в Help Center"
|
54 |
|
55 |
+
#: bws_functions.php:107
|
56 |
msgid "Want to support the plugin?"
|
57 |
msgstr "Хотите поддержать плагин?"
|
58 |
|
59 |
+
#: bws_functions.php:108 bws_menu.php:553
|
60 |
msgid "Donate"
|
61 |
msgstr "Пожертвовать"
|
62 |
|
63 |
+
#: bws_functions.php:128
|
64 |
msgid "WARNING: Illegal use notification"
|
65 |
msgstr "ВНИМАНИЕ: уведомление о незаконном использовании"
|
66 |
|
67 |
+
#: bws_functions.php:128
|
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 your personal Client "
|
71 |
+
"Area. We strongly recommend you to solve the problem within 24 hours, "
|
72 |
+
"otherwise the Pro plugin will be deactivated."
|
73 |
msgstr ""
|
74 |
"Вы можете использовать одну лицензию Pro плагина только для одного домена. "
|
75 |
"Пожалуйста, проверьте и отредактируйте при необходимости лицензию или домен, "
|
76 |
"используя Ваш личный Client Area. Мы настоятельно рекомендуем вам решить "
|
77 |
"проблему в течение 24 часов, в противном случае плагин будет деактивирован."
|
78 |
|
79 |
+
#: bws_functions.php:128 bws_functions.php:340 class-bws-settings.php:144
|
|
|
80 |
msgid "Learn More"
|
81 |
msgstr "Подробнее"
|
82 |
|
83 |
+
#: bws_functions.php:145
|
84 |
msgid ""
|
85 |
"Notice: Your Pro Trial license has expired. To continue using the plugin, "
|
86 |
"you should buy a Pro license"
|
88 |
"Внимание: Срок действия Pro Trial версии истек. Чтобы продолжить "
|
89 |
"пользоваться плагином, пожалуйста, приобретите Pro лицензию"
|
90 |
|
91 |
+
#: bws_functions.php:147
|
92 |
msgid ""
|
93 |
"Your license has expired. To continue getting top-priority support and "
|
94 |
"plugin updates, you should extend it."
|
97 |
"плагин в дальнейшем и иметь приоритетную тех.поддержку, то вам нужно "
|
98 |
"продлить лицензию."
|
99 |
|
100 |
+
#: bws_functions.php:147 bws_functions.php:383 deprecated.php:584
|
101 |
msgid "Learn more"
|
102 |
msgstr "Подробнее"
|
103 |
|
104 |
+
#: bws_functions.php:165
|
105 |
#, php-format
|
106 |
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
107 |
msgstr "Внимание: Вы используете Pro Trial версию плагина %s."
|
108 |
|
109 |
+
#: bws_functions.php:167
|
110 |
msgid "Notice: You are using the Pro Trial license of plugin."
|
111 |
msgstr "Внимание: Вы используете Pro Trial версию плагина."
|
112 |
|
113 |
+
#: bws_functions.php:170
|
114 |
msgid "The Pro Trial license will expire on"
|
115 |
msgstr "Ваша лицензия Pro Trial версии плагина истекает"
|
116 |
|
117 |
+
#: bws_functions.php:193
|
118 |
msgid ""
|
119 |
"or higher! We do not guarantee that our plugin will work correctly. Please "
|
120 |
"upgrade to WordPress latest version."
|
122 |
"или выше! Мы не гарантируем, что наш плагин будет работать корректно. "
|
123 |
"Пожалуйста, обновите WordPress до последней версии."
|
124 |
|
125 |
+
#: bws_functions.php:208
|
126 |
#, php-format
|
127 |
msgid "Thank you for installing %s plugin!"
|
128 |
msgstr "Спасибо, что установили %s плагин!"
|
129 |
|
130 |
+
#: bws_functions.php:209
|
131 |
msgid "Let's get started"
|
132 |
msgstr "Давайте начнем"
|
133 |
|
134 |
+
#: bws_functions.php:210 bws_functions.php:243 bws_menu.php:557
|
135 |
#: bws_menu.php:559
|
136 |
msgid "Settings"
|
137 |
msgstr "Настройки"
|
138 |
|
139 |
+
#: bws_functions.php:212 bws_menu.php:328 class-bws-settings.php:745
|
140 |
+
#: class-bws-settings.php:1058 class-bws-settings.php:1068 deprecated.php:694
|
141 |
msgid "or"
|
142 |
msgstr "или"
|
143 |
|
144 |
+
#: bws_functions.php:213 bws_functions.php:245
|
145 |
msgid "Add New"
|
146 |
msgstr "Добавить"
|
147 |
|
148 |
+
#: bws_functions.php:217 bws_functions.php:227 bws_functions.php:331
|
149 |
+
#: bws_functions.php:379 bws_functions.php:481
|
150 |
msgid "Close notice"
|
151 |
msgstr "Закрыть"
|
152 |
|
153 |
+
#: bws_functions.php:232
|
154 |
msgid "Thank you for installing plugins by BestWebSoft!"
|
155 |
msgstr "Спасибо за установку плагинов компании BestWebSoft!"
|
156 |
|
157 |
+
#: bws_functions.php:234
|
158 |
msgid "More Details"
|
159 |
msgstr "Детали"
|
160 |
|
161 |
+
#: bws_functions.php:235
|
162 |
msgid "Less Details"
|
163 |
msgstr "Скрыть детали"
|
164 |
|
165 |
+
#: bws_functions.php:263
|
166 |
msgid "Deprecated function(-s) is used on the site here:"
|
167 |
msgstr "Устаревшие функции используются на сайте здесь:"
|
168 |
|
169 |
+
#: bws_functions.php:277
|
170 |
msgid ""
|
171 |
"This function(-s) will be removed over time. Please update the product(-s)."
|
172 |
msgstr ""
|
173 |
"Эти функции будет удалены через некоторое время. Пожалуйста, обновите "
|
174 |
"продукт."
|
175 |
|
176 |
+
#: bws_functions.php:336
|
177 |
msgid "It’s time to upgrade your"
|
178 |
msgstr "Настало время обновить Ваш"
|
179 |
|
180 |
+
#: bws_functions.php:336
|
181 |
msgid "to"
|
182 |
msgstr "до"
|
183 |
|
184 |
+
#: bws_functions.php:336
|
185 |
msgid "version!"
|
186 |
msgstr "версии!"
|
187 |
|
188 |
+
#: bws_functions.php:337
|
189 |
msgid "Extend standard plugin functionality with new great options."
|
190 |
msgstr "Расширяет возможности стандартного функционала плагина."
|
191 |
|
192 |
+
#: bws_functions.php:383
|
193 |
#, php-format
|
194 |
msgid ""
|
195 |
"Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
|
198 |
"Ваш лицензионный ключ для %s истекает %s и вы не будете получать "
|
199 |
"приоритетную тех.поддержку или обновления."
|
200 |
|
201 |
+
#: bws_functions.php:476
|
202 |
#, php-format
|
203 |
msgid "Thank you for choosing %s plugin!"
|
204 |
msgstr "Спасибо за выбор плагина %s!"
|
205 |
|
206 |
+
#: bws_functions.php:477
|
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!"
|
212 |
"функционала плагина, пожалуйста, присылайте их нам! Мы вседа открыты для "
|
213 |
"новых идей!"
|
214 |
|
215 |
+
#: bws_functions.php:478
|
216 |
msgid "Suggest a Feature"
|
217 |
msgstr "Предложить функционал"
|
218 |
|
219 |
+
#: bws_functions.php:494 class-bws-settings.php:538 class-bws-settings.php:541
|
220 |
+
#: class-bws-settings.php:593 class-bws-settings.php:596
|
221 |
msgid "Notice"
|
222 |
msgstr "Внимание"
|
223 |
|
224 |
+
#: bws_functions.php:494
|
225 |
msgid "The plugin's settings have been changed."
|
226 |
msgstr "Настройки плагина были изменены"
|
227 |
|
228 |
+
#: bws_functions.php:495 class-bws-settings.php:183 class-bws-settings.php:203
|
229 |
#: deprecated.php:640
|
230 |
msgid "Save Changes"
|
231 |
msgstr "Сохранить изменения"
|
232 |
|
233 |
+
#: bws_functions.php:509
|
234 |
msgid ""
|
235 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
236 |
"the \"Misc\" tab."
|
238 |
"Вы всегда можете просмотреть премиум опции нажав на кнопку \"Pro опции\" на "
|
239 |
"вкладке \"Разное\"."
|
240 |
|
241 |
+
#: bws_functions.php:647
|
242 |
msgid "Add BWS Shortcode"
|
243 |
msgstr "Добавить BWS шорткод"
|
244 |
|
245 |
+
#: bws_functions.php:648
|
246 |
msgid "Add BWS Plugins Shortcode"
|
247 |
msgstr "Добавить шорткод BWS Плагина"
|
248 |
|
249 |
+
#: bws_functions.php:667
|
250 |
msgid "Add shortcode"
|
251 |
msgstr "Добавить шорткод"
|
252 |
|
253 |
+
#: bws_functions.php:667
|
254 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
255 |
msgstr "Добавьте шорткоды BestWebSoft плагинов с помощью этой кнопки."
|
256 |
|
257 |
+
#: bws_functions.php:723
|
258 |
msgid "Close"
|
259 |
msgstr "Закрыть"
|
260 |
|
261 |
+
#: bws_functions.php:815
|
262 |
msgid "Are you sure you want to restore default settings?"
|
263 |
msgstr ""
|
264 |
"Вы уверены что хотите восстановить все настройки плагина к настройкам по "
|
265 |
"умолчанию?"
|
266 |
|
267 |
+
#: bws_functions.php:818
|
268 |
msgid "Yes, restore all settings"
|
269 |
msgstr "Да, восстановить все настройки"
|
270 |
|
271 |
+
#: bws_functions.php:819
|
272 |
msgid "No, go back to the settings page"
|
273 |
msgstr "Нет, вернуться на страницу настроек"
|
274 |
|
275 |
+
#: bws_functions.php:861
|
276 |
msgid "Plugin"
|
277 |
msgstr "Плагин"
|
278 |
|
279 |
+
#: bws_functions.php:870
|
280 |
msgid "Shortcode settings"
|
281 |
msgstr "Настройки шорткода"
|
282 |
|
283 |
+
#: bws_functions.php:875
|
284 |
msgid "The shortcode will be inserted"
|
285 |
msgstr "Будет вставлен шорткод"
|
286 |
|
287 |
+
#: bws_functions.php:916
|
|
|
|
|
|
|
|
|
288 |
msgid "FAQ"
|
289 |
msgstr "FAQ"
|
290 |
|
291 |
+
#: bws_functions.php:922
|
292 |
msgid "For more information:"
|
293 |
msgstr "Для дополнительной информации:"
|
294 |
|
295 |
+
#: bws_functions.php:923
|
296 |
msgid "Documentation"
|
297 |
msgstr "Документация"
|
298 |
|
299 |
+
#: bws_functions.php:924
|
300 |
msgid "Video Instructions"
|
301 |
msgstr "Видео инструкции"
|
302 |
|
303 |
+
#: bws_functions.php:925
|
304 |
msgid "Submit a Request"
|
305 |
msgstr "Отправить запрос"
|
306 |
|
307 |
+
#: bws_menu.php:101 class-bws-settings.php:790 deprecated.php:322
|
308 |
msgid "Wrong license key"
|
309 |
msgstr "Неправильный лицензионный ключ"
|
310 |
|
311 |
+
#: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
|
312 |
+
#: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
|
313 |
#: deprecated.php:352
|
314 |
msgid ""
|
315 |
"Something went wrong. Please try again later. If the error appears again, "
|
318 |
"Что-то пошло не так. Повторите попытку позже. Если ошибка появится снова, "
|
319 |
"пожалуйста, свяжитесь с нами"
|
320 |
|
321 |
+
#: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
|
322 |
+
#: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
|
323 |
#: deprecated.php:352
|
324 |
msgid "We are sorry for inconvenience."
|
325 |
msgstr "Приносим извинения за неудобства."
|
326 |
|
327 |
+
#: bws_menu.php:128 class-bws-settings.php:822 class-bws-settings.php:925
|
328 |
#: deprecated.php:139 deprecated.php:358
|
329 |
msgid "Wrong license key."
|
330 |
msgstr "Неправильный лицензионный ключ."
|
344 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
345 |
msgstr "К сожалению, вы превысили количество доступных попыток."
|
346 |
|
347 |
+
#: bws_menu.php:134 class-bws-settings.php:931 deprecated.php:364
|
348 |
#, php-format
|
349 |
msgid ""
|
350 |
"Unfortunately, Your license has expired. To continue getting top-priority "
|
354 |
"обновлений и приоритетной тех.поддержки, вам необходимо продлить лицензию в "
|
355 |
"вашей %s"
|
356 |
|
357 |
+
#: bws_menu.php:136 class-bws-settings.php:933 deprecated.php:366
|
358 |
msgid ""
|
359 |
"Unfortunately, the Pro licence was already installed to this domain. The Pro "
|
360 |
"Trial license can be installed only once."
|
362 |
"К сожалению, Pro лицензия уже была установлена на этом доменен. Pro Trial "
|
363 |
"лицензия может быть установлена только один раз."
|
364 |
|
365 |
+
#: bws_menu.php:142 class-bws-settings.php:837 deprecated.php:153
|
366 |
msgid "The license key is valid."
|
367 |
msgstr "Лицензионный ключ действителен."
|
368 |
|
369 |
+
#: bws_menu.php:144 class-bws-settings.php:840 deprecated.php:156
|
370 |
msgid "Your license will expire on"
|
371 |
msgstr "Ваша лицензия истечет"
|
372 |
|
374 |
msgid "Congratulations! Pro Membership license is activated successfully."
|
375 |
msgstr "Поздравляем! Pro Membership лицензия успешно активирована."
|
376 |
|
377 |
+
#: bws_menu.php:153 class-bws-settings.php:1005 deprecated.php:435
|
378 |
msgid ""
|
379 |
"Something went wrong. Try again later or upload the plugin manually. We are "
|
380 |
"sorry for inconvenience."
|
548 |
msgid "Themes"
|
549 |
msgstr "Темы"
|
550 |
|
551 |
+
#: bws_menu.php:309 bws_menu.php:313 bws_menu.php:641
|
552 |
msgid "System status"
|
553 |
msgstr "Системная информация"
|
554 |
|
569 |
msgid "Subscribe to Pro Membership"
|
570 |
msgstr "Подписаться на Pro Membership"
|
571 |
|
572 |
+
#: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:758
|
573 |
#: deprecated.php:227
|
574 |
msgid "Check license key"
|
575 |
msgstr "Проверка лицензионного ключа"
|
579 |
msgstr "Ваш лицензионный ключ"
|
580 |
|
581 |
#: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
|
582 |
+
#: class-bws-settings.php:737 deprecated.php:259 deprecated.php:267
|
583 |
#: deprecated.php:629 deprecated.php:700 deprecated.php:709
|
584 |
msgid "Activate"
|
585 |
msgstr "Активировать"
|
622 |
msgstr "Скачивание установочного пакета из"
|
623 |
|
624 |
#: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
|
625 |
+
#: class-bws-settings.php:957 class-bws-settings.php:979
|
626 |
+
#: class-bws-settings.php:1001 deprecated.php:387 deprecated.php:409
|
627 |
#: deprecated.php:431
|
628 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
629 |
msgstr ""
|
637 |
msgid "Installing the plugin"
|
638 |
msgstr "Установка плагина"
|
639 |
|
640 |
+
#: bws_menu.php:417 class-bws-settings.php:969 deprecated.php:399
|
641 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
642 |
msgstr "Не удалось открыть архив ZIP. Пожалуйста, загрузите плагин вручную"
|
643 |
|
644 |
+
#: bws_menu.php:424 class-bws-settings.php:975 deprecated.php:405
|
645 |
msgid ""
|
646 |
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
647 |
"plugin manually"
|
654 |
msgid "The plugin %s is successfully installed."
|
655 |
msgstr "Плагин %s успешно установлен."
|
656 |
|
657 |
+
#: bws_menu.php:434 class-bws-settings.php:982 deprecated.php:412
|
658 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
659 |
msgstr ""
|
660 |
"Папка загрузки не доступна для записи. Пожалуйста, загрузите плагин вручную"
|
671 |
msgid "All"
|
672 |
msgstr "Все"
|
673 |
|
674 |
+
#: bws_menu.php:450 bws_menu.php:630
|
675 |
msgid "Installed"
|
676 |
msgstr "Установленные"
|
677 |
|
704 |
msgid "Install Now"
|
705 |
msgstr "Установить"
|
706 |
|
707 |
+
#: bws_menu.php:549 class-bws-settings.php:157 class-bws-settings.php:1065
|
708 |
msgid "Upgrade to Pro"
|
709 |
msgstr "Обновить до Pro"
|
710 |
|
720 |
msgid "Nothing found. Try another criteria."
|
721 |
msgstr "Ничего не найдено. Попробуйте другие критерии."
|
722 |
|
723 |
+
#: bws_menu.php:621
|
724 |
#, php-format
|
725 |
msgid "By %s"
|
726 |
msgstr "%s"
|
727 |
|
728 |
+
#: bws_menu.php:628
|
729 |
msgid "Already Installed"
|
730 |
msgstr "Уже установлена"
|
731 |
|
732 |
+
#: bws_menu.php:638
|
733 |
msgid "Browse Free WordPress Themes"
|
734 |
msgstr "Обзор бесплатных WordPress тем"
|
735 |
|
736 |
+
#: bws_menu.php:647
|
737 |
msgid "Send to support"
|
738 |
msgstr "Отправить в тех. поддержку"
|
739 |
|
740 |
+
#: bws_menu.php:654
|
741 |
msgid "Send to custom email »"
|
742 |
msgstr "Отправить на емейл »"
|
743 |
|
744 |
+
#: class-bws-settings.php:136
|
745 |
msgid "Information"
|
746 |
msgstr "Информация"
|
747 |
|
748 |
+
#: class-bws-settings.php:144
|
749 |
msgid "Inactive"
|
750 |
msgstr "Неактивна"
|
751 |
|
752 |
+
#: class-bws-settings.php:152
|
753 |
msgid "Expired"
|
754 |
msgstr "Истекла"
|
755 |
|
756 |
+
#: class-bws-settings.php:155
|
757 |
#, php-format
|
758 |
msgid "%s day(-s) left"
|
759 |
msgstr "%s дней осталось"
|
760 |
|
761 |
+
#: class-bws-settings.php:161
|
762 |
#, php-format
|
763 |
msgid "Expired on %s"
|
764 |
msgstr "Истекает %s"
|
765 |
|
766 |
+
#: class-bws-settings.php:161
|
767 |
msgid "Renew Now"
|
768 |
msgstr "Возобновить сейчас"
|
769 |
|
770 |
+
#: class-bws-settings.php:163
|
771 |
msgid "Active"
|
772 |
msgstr "Активна"
|
773 |
|
774 |
+
#: class-bws-settings.php:168
|
775 |
msgid "License"
|
776 |
msgstr "Лицензия"
|
777 |
|
778 |
+
#: class-bws-settings.php:171
|
779 |
msgid "Status"
|
780 |
msgstr "Статус"
|
781 |
|
782 |
+
#: class-bws-settings.php:175
|
783 |
msgid "Version"
|
784 |
msgstr "Версия"
|
785 |
|
786 |
+
#: class-bws-settings.php:285
|
787 |
msgid "All plugin settings were restored."
|
788 |
msgstr "Все настройки плагина были восстановлены."
|
789 |
|
790 |
+
#: class-bws-settings.php:423
|
791 |
msgid "Custom Code"
|
792 |
msgstr "Пользовательский код"
|
793 |
|
794 |
+
#: class-bws-settings.php:427 deprecated.php:497
|
795 |
msgid "You do not have sufficient permissions to edit plugins for this site."
|
796 |
msgstr ""
|
797 |
"У вас недостаточно полномочий, чтобы редактировать плагины на этом сайте."
|
798 |
|
799 |
+
#: class-bws-settings.php:432 deprecated.php:618
|
800 |
msgid "These styles will be added to the header on all pages of your site."
|
801 |
msgstr "Эти стили будут добавлены в хедер на всех страницах вашего сайта."
|
802 |
|
803 |
+
#: class-bws-settings.php:435 deprecated.php:620
|
804 |
#, php-format
|
805 |
msgid ""
|
806 |
"This PHP code will be hooked to the %s action and will be printed on front "
|
809 |
"Этот PHP код будет прикреплен к %s аction и будет добавлен только во "
|
810 |
"фронтенде."
|
811 |
|
812 |
+
#: class-bws-settings.php:438
|
813 |
msgid "These code will be added to the header on all pages of your site."
|
814 |
msgstr "Этот код будет добавлен в хедер на всех страницах вашего сайта."
|
815 |
|
816 |
+
#: class-bws-settings.php:446 deprecated.php:644
|
817 |
#, php-format
|
818 |
msgid ""
|
819 |
"You need to make this files writable before you can save your changes. See "
|
822 |
"Чтобы сохранить изменения, нужно сделать этот файл доступным для записи. "
|
823 |
"Дополнительную информацию можно получить в %s Кодексе %s."
|
824 |
|
825 |
+
#: class-bws-settings.php:456 deprecated.php:626
|
826 |
msgid "Browsing"
|
827 |
msgstr "Просмотр"
|
828 |
|
829 |
+
#: class-bws-settings.php:461
|
830 |
#, php-format
|
831 |
msgid "Activate custom %s code."
|
832 |
msgstr "Активировать пользовательский %s код."
|
833 |
|
834 |
+
#: class-bws-settings.php:469 deprecated.php:633
|
835 |
#, php-format
|
836 |
msgid "Learn more about %s"
|
837 |
msgstr "Подробнее о %s"
|
838 |
|
839 |
+
#: class-bws-settings.php:529
|
840 |
msgid "Miscellaneous Settings"
|
841 |
msgstr "Прочие настройки"
|
842 |
|
843 |
+
#: class-bws-settings.php:538 class-bws-settings.php:593
|
844 |
#, php-format
|
845 |
msgid ""
|
846 |
"It is prohibited to change %s settings on this site in the %s network "
|
848 |
msgstr ""
|
849 |
"Cетевыми настройками %s запрещается изменять настройки %s на этом сайте."
|
850 |
|
851 |
+
#: class-bws-settings.php:541 class-bws-settings.php:596
|
852 |
#, php-format
|
853 |
msgid ""
|
854 |
"It is prohibited to view %s settings on this site in the %s network settings."
|
855 |
msgstr ""
|
856 |
"Cетевыми настройками %s запрещается просматривать настройки %s на этом сайте."
|
857 |
|
858 |
+
#: class-bws-settings.php:550
|
859 |
msgid "Pro Options"
|
860 |
msgstr "Pro опции"
|
861 |
|
862 |
+
#: class-bws-settings.php:554
|
863 |
msgid "Enable to display plugin Pro options."
|
864 |
msgstr "Включите для отображения Pro опций плагина."
|
865 |
|
866 |
+
#: class-bws-settings.php:560
|
867 |
msgid "Track Usage"
|
868 |
msgstr "Собирать статистику"
|
869 |
|
870 |
+
#: class-bws-settings.php:564
|
871 |
msgid ""
|
872 |
"Enable to allow tracking plugin usage anonymously in order to make it better."
|
873 |
msgstr ""
|
874 |
"Включить, чтобы разрешить анонимно отслеживать использование и сделать "
|
875 |
"плагин лучше."
|
876 |
|
877 |
+
#: class-bws-settings.php:569
|
878 |
msgid "Default Settings"
|
879 |
msgstr "Настройки по умолчанию"
|
880 |
|
881 |
+
#: class-bws-settings.php:571
|
882 |
msgid "Restore Settings"
|
883 |
msgstr "Восстановить настройки"
|
884 |
|
885 |
+
#: class-bws-settings.php:572
|
886 |
msgid "This will restore plugin settings to defaults."
|
887 |
msgstr "Восстановить все настройки плагина к настройкам по умолчанию."
|
888 |
|
889 |
+
#: class-bws-settings.php:584
|
890 |
msgid "Import / Export"
|
891 |
msgstr "Импорт / Экспорт"
|
892 |
|
893 |
+
#: class-bws-settings.php:700 class-bws-settings.php:733
|
894 |
+
#: class-bws-settings.php:755
|
895 |
msgid "License Key"
|
896 |
msgstr "Лицензионный ключ"
|
897 |
|
898 |
+
#: class-bws-settings.php:723
|
899 |
msgid "Congratulations! Pro license is activated successfully."
|
900 |
msgstr "Поздравляем! Pro лицензия успешно активирована."
|
901 |
|
902 |
+
#: class-bws-settings.php:724
|
903 |
#, php-format
|
904 |
msgid "You will be automatically redirected to the %s in %s seconds."
|
905 |
msgstr "Вы будете автоматически перенаправлены на %s через %s секунд."
|
906 |
|
907 |
+
#: class-bws-settings.php:724
|
908 |
msgid "Settings page"
|
909 |
msgstr "страницу Настроек"
|
910 |
|
911 |
+
#: class-bws-settings.php:739
|
912 |
#, php-format
|
913 |
msgid "Enter your license key to activate %s and get premium plugin features."
|
914 |
msgstr ""
|
915 |
"Введите лицензионный ключ для активации %s и получения дополнительных "
|
916 |
"возможностей плагина."
|
917 |
|
918 |
+
#: class-bws-settings.php:742 class-bws-settings.php:929 deprecated.php:362
|
919 |
#: deprecated.php:703
|
920 |
msgid ""
|
921 |
"Unfortunately, you have exceeded the number of available tries per day. "
|
924 |
"К сожалению, вы превысили количество доступных попыток в день. Пожалуйста, "
|
925 |
"загрузите плагин вручную."
|
926 |
|
927 |
+
#: class-bws-settings.php:745 deprecated.php:694
|
928 |
#, php-format
|
929 |
msgid "Start Your Free %s-Day Trial Now"
|
930 |
msgstr "Попробуйте %s-дневную Trial версию бесплатно"
|
931 |
|
932 |
+
#: class-bws-settings.php:760
|
933 |
msgid ""
|
934 |
"If necessary, you can check if the license key is correct or reenter it in "
|
935 |
"the field below."
|
937 |
"При необходимости вы можете проверить валидность лицензионного ключа или "
|
938 |
"повторно ввести его в поле ниже."
|
939 |
|
940 |
+
#: class-bws-settings.php:765
|
941 |
msgid "Manage License Settings"
|
942 |
msgstr "Управление настройками лицензий"
|
943 |
|
944 |
+
#: class-bws-settings.php:767
|
945 |
msgid "Login to Client Area"
|
946 |
msgstr "Зайти в Client Area"
|
947 |
|
948 |
+
#: class-bws-settings.php:769
|
949 |
msgid ""
|
950 |
"Manage active licenses, download BWS products, and view your payment history "
|
951 |
"using BestWebSoft Client Area."
|
953 |
"Управляй активными лицензиями, загружай BWS продукты, а также просматривай "
|
954 |
"историю платежей с помощью BestWebSoft Client Area."
|
955 |
|
956 |
+
#: class-bws-settings.php:824 class-bws-settings.php:927 deprecated.php:141
|
957 |
#: deprecated.php:360
|
958 |
msgid "This license key is bound to another site."
|
959 |
msgstr "Этот лицензионный ключ привязан к другому сайту."
|
960 |
|
961 |
+
#: class-bws-settings.php:826 deprecated.php:143
|
962 |
msgid ""
|
963 |
"This license key is valid, but Your license has expired. If you want to "
|
964 |
"update our plugin in future, you should extend the license."
|
966 |
"Лицензионный ключ принят, но срок действия лицензии истек. Если вы хотите "
|
967 |
"обновлять плагин в будущем, вы должны продлить лицензию."
|
968 |
|
969 |
+
#: class-bws-settings.php:828 deprecated.php:145
|
970 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
971 |
msgstr "К сожалению, вы превысили количество доступных попыток."
|
972 |
|
973 |
+
#: class-bws-settings.php:830 deprecated.php:147
|
974 |
msgid ""
|
975 |
"Unfortunately, the Pro Trial licence was already installed to this domain. "
|
976 |
"The Pro Trial license can be installed only once."
|
978 |
"К сожалению, Pro Trial версия плагина уже устанавливалась на этот домен. Pro "
|
979 |
"Trial версию можно устанавливать лишь один раз."
|
980 |
|
981 |
+
#: class-bws-settings.php:835 deprecated.php:151
|
982 |
msgid "The Pro Trial license key is valid."
|
983 |
msgstr "Ключ Pro Trial версии действителен."
|
984 |
|
985 |
+
#: class-bws-settings.php:843 deprecated.php:159 deprecated.php:246
|
986 |
#, php-format
|
987 |
msgid ""
|
988 |
"In order to continue using the plugin it is necessary to buy a %s license."
|
989 |
msgstr ""
|
990 |
"Чтобы продолжить пользоваться плагином, необходимо приобрести %s лицензию."
|
991 |
|
992 |
+
#: class-bws-settings.php:1040 deprecated.php:463
|
993 |
msgid "Please, enter Your license key"
|
994 |
msgstr "Пожалуйста, введите ваш лицензионный ключ"
|
995 |
|
996 |
+
#: class-bws-settings.php:1052
|
997 |
msgid "Need Help?"
|
998 |
msgstr "Нужна помощь?"
|
999 |
|
1000 |
+
#: class-bws-settings.php:1054
|
1001 |
msgid "Read the Instruction"
|
1002 |
msgstr "Читать инструкцию"
|
1003 |
|
1004 |
+
#: class-bws-settings.php:1058
|
1005 |
msgid "Watch the Video"
|
1006 |
msgstr "Смотреть видео"
|
1007 |
|
1008 |
+
#: class-bws-settings.php:1069
|
1009 |
msgid "Start Your Free Trial"
|
1010 |
msgstr "Использовать бесплатную Trial версию"
|
1011 |
|
1012 |
+
#: deactivation-form.php:26
|
1013 |
+
msgid "Need help? We are ready to answer your questions."
|
1014 |
+
msgstr "Нужна помощь? Мы готовы ответить на ваши вопросы."
|
1015 |
+
|
1016 |
+
#: deactivation-form.php:26
|
1017 |
+
msgid "Contact Support"
|
1018 |
+
msgstr "Связаться с тех. поддержкой"
|
1019 |
+
|
1020 |
+
#: deactivation-form.php:31
|
1021 |
+
msgid "The plugin is not working"
|
1022 |
+
msgstr "Плагин не работает"
|
1023 |
+
|
1024 |
+
#: deactivation-form.php:33
|
1025 |
+
msgid "Kindly share what didn't work so we can fix it in future updates..."
|
1026 |
+
msgstr ""
|
1027 |
+
"Пожалуйста, сообщите, что не работает, чтобы мы смогли исправить это в "
|
1028 |
+
"будущих обновлениях..."
|
1029 |
+
|
1030 |
+
#: deactivation-form.php:37
|
1031 |
+
msgid "The plugin didn't work as expected"
|
1032 |
+
msgstr "Плагин не работает, как ожидалось"
|
1033 |
+
|
1034 |
+
#: deactivation-form.php:39
|
1035 |
+
msgid "What did you expect?"
|
1036 |
+
msgstr "Что именно вы ожидали?"
|
1037 |
+
|
1038 |
+
#: deactivation-form.php:43
|
1039 |
+
msgid "The plugin suddenly stopped working"
|
1040 |
+
msgstr "Плагин внезапно перестал работать"
|
1041 |
+
|
1042 |
+
#: deactivation-form.php:50
|
1043 |
+
msgid "The plugin broke my site"
|
1044 |
+
msgstr "Плагин сломал мой сайт"
|
1045 |
+
|
1046 |
+
#: deactivation-form.php:57
|
1047 |
+
msgid "I couldn't understand how to get it work"
|
1048 |
+
msgstr "Я не могу понять, как заставить его работать"
|
1049 |
+
|
1050 |
+
#: deactivation-form.php:64
|
1051 |
+
msgid "I found a better plugin"
|
1052 |
+
msgstr "Я нашел плагин лучше"
|
1053 |
+
|
1054 |
+
#: deactivation-form.php:66
|
1055 |
+
msgid "What's the plugin name?"
|
1056 |
+
msgstr "Какое название плагина?"
|
1057 |
+
|
1058 |
+
#: deactivation-form.php:70
|
1059 |
+
msgid "The plugin is great, but I need specific feature that you don't support"
|
1060 |
+
msgstr ""
|
1061 |
+
"Плагин замечательный, но мне нужен определенный функционал, которого у вас "
|
1062 |
+
"нет"
|
1063 |
+
|
1064 |
+
#: deactivation-form.php:72
|
1065 |
+
msgid "What feature?"
|
1066 |
+
msgstr "Какой функционал?"
|
1067 |
+
|
1068 |
+
#: deactivation-form.php:76
|
1069 |
+
msgid "I no longer need the plugin"
|
1070 |
+
msgstr "Мне больше не нужен плагин"
|
1071 |
+
|
1072 |
+
#: deactivation-form.php:82
|
1073 |
+
msgid "It's a temporary deactivation, I'm just debugging an issue"
|
1074 |
+
msgstr "Это временная деактивация, я просто отлаживаю проблему"
|
1075 |
+
|
1076 |
+
#: deactivation-form.php:88
|
1077 |
+
msgid "Other"
|
1078 |
+
msgstr "Другое"
|
1079 |
+
|
1080 |
+
#: deactivation-form.php:122
|
1081 |
+
msgid "Quick Feedback"
|
1082 |
+
msgstr "Быстрый отзыв"
|
1083 |
+
|
1084 |
+
#: deactivation-form.php:123
|
1085 |
+
msgid "If you have a moment, please let us know why you are deactivating"
|
1086 |
+
msgstr ""
|
1087 |
+
"Если у вас есть время, пожалуйста, сообщите нам, почему вы деактивируете "
|
1088 |
+
"плагин"
|
1089 |
+
|
1090 |
+
#: deactivation-form.php:128
|
1091 |
+
msgid "Anonymous feedback"
|
1092 |
+
msgstr "Анонимный отзыв"
|
1093 |
+
|
1094 |
+
#: deactivation-form.php:130
|
1095 |
+
msgid "Cancel"
|
1096 |
+
msgstr "Отмена"
|
1097 |
+
|
1098 |
+
#: deactivation-form.php:230
|
1099 |
+
msgid "Processing"
|
1100 |
+
msgstr "Обработка"
|
1101 |
+
|
1102 |
+
#: deactivation-form.php:259
|
1103 |
+
msgid "Submit & Deactivate"
|
1104 |
+
msgstr "Отправить и Деактивировать"
|
1105 |
+
|
1106 |
+
#: deactivation-form.php:276
|
1107 |
+
msgid "Please tell us the reason so we can improve it."
|
1108 |
+
msgstr "Пожалуйста, сообщите нам причину, чтобы мы могли улучшить плагин."
|
1109 |
+
|
1110 |
+
#: deactivation-form.php:344
|
1111 |
+
msgid "Deactivate"
|
1112 |
+
msgstr "Деактивировать"
|
1113 |
+
|
1114 |
#: deprecated.php:93
|
1115 |
msgid "System Status"
|
1116 |
msgstr "Системная информация"
|
1249 |
msgid "SMM"
|
1250 |
msgstr "СММ"
|
1251 |
|
1252 |
+
#: product_list.php:23
|
1253 |
msgid ""
|
1254 |
"Protect WordPress website forms from spam entries by means of math logic."
|
1255 |
msgstr ""
|
1256 |
"Защищайте формы вашего сайта WordPress от взлома путем математической логики."
|
1257 |
|
1258 |
+
#: product_list.php:35
|
1259 |
msgid "Create your personal car rental/booking and reservation website."
|
1260 |
msgstr "Создайте свой собственный сайт проката и резервирования автомобилей."
|
1261 |
|
1262 |
+
#: product_list.php:45
|
1263 |
msgid ""
|
1264 |
"Allow customers to reach you using secure contact form plugin any website "
|
1265 |
"must have."
|
1267 |
"Предоставьте возможность клиентам осуществлять связь с вами через безопасный "
|
1268 |
"плагин контактной формы, который должен иметь любой сайт."
|
1269 |
|
1270 |
+
#: product_list.php:55
|
1271 |
msgid "Add unlimited number of contact forms to WordPress website."
|
1272 |
msgstr ""
|
1273 |
"Добавляйте неограниченное количество контактных форм на ваш сайт WordPress."
|
1274 |
|
1275 |
+
#: product_list.php:65
|
1276 |
msgid "Save and manage Contact Form messages. Never lose important data."
|
1277 |
msgstr ""
|
1278 |
"Сохраняйте и управляйте сообщениями плагина Contact Form. Никогда не теряйте "
|
1279 |
"важные данные."
|
1280 |
|
1281 |
+
#: product_list.php:75
|
1282 |
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1283 |
msgstr ""
|
1284 |
"Добавляйте неограниченное количество пользовательских страниц в панели "
|
1285 |
"администратора WordPress."
|
1286 |
|
1287 |
+
#: product_list.php:82
|
1288 |
msgid "Add custom fields to WordPress website search results."
|
1289 |
msgstr ""
|
1290 |
"Добавляйте пользовательские поля в результаты поиска вашего сайта WordPress."
|
1291 |
|
1292 |
+
#: product_list.php:89
|
1293 |
msgid ""
|
1294 |
"Add custom post types and taxonomies to WordPress website search results."
|
1295 |
msgstr ""
|
1296 |
"Добавляйте пользовательские типы постов и таксономии в результаты поиска на "
|
1297 |
"вашем сайте WordPress."
|
1298 |
|
1299 |
+
#: product_list.php:99
|
1300 |
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1301 |
msgstr ""
|
1302 |
"Добавляйте кнопки PayPal и 2CO, чтобы получать пожертвования и "
|
1303 |
"благотворительные взносы."
|
1304 |
|
1305 |
+
#: product_list.php:106
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1306 |
msgid ""
|
1307 |
"Get latest error log messages to diagnose website problems. Define and fix "
|
1308 |
"issues faster."
|
1310 |
"Получайте последние сообщения из журнала ошибок для диагностики проблем "
|
1311 |
"сайта. Быстрее выявляйте и устраняйте проблемы."
|
1312 |
|
1313 |
+
#: product_list.php:113
|
1314 |
msgid ""
|
1315 |
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1316 |
"widgets."
|
1318 |
"Добавляйте кнопки Facebook \"Подписаться\", \"Нравится\" и \"Поделиться\" в "
|
1319 |
"посты, страницы и виджеты сайта WordPress."
|
1320 |
|
1321 |
+
#: product_list.php:123
|
1322 |
msgid ""
|
1323 |
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1324 |
"clicks."
|
1326 |
"Добавляйте живописные галереи, альбомы и изображения на ваш сайт WordPress "
|
1327 |
"всего в несколько кликов."
|
1328 |
|
1329 |
+
#: product_list.php:133
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1330 |
msgid ""
|
1331 |
"Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
|
1332 |
"posts, pages and widgets."
|
1334 |
"Добавляйте кнопки Google \"+1\", \"Поделиться\", \"Подписаться\", \"Hangout"
|
1335 |
"\" и значок профиля к постам, страницам и виджетам WordPress."
|
1336 |
|
1337 |
+
#: product_list.php:143
|
1338 |
msgid ""
|
1339 |
"Stronger security solution which protects your WordPress website from hacks "
|
1340 |
"and unauthorized login attempts."
|
1342 |
"Мощнейшее решение для безопасности, которое защищает ваш сайт WordPress от "
|
1343 |
"взломов и неавторизованных попыток входа в систему."
|
1344 |
|
1345 |
+
#: product_list.php:153
|
1346 |
msgid ""
|
1347 |
"Add Adsense ads to WordPress website pages, posts, custom posts, search "
|
1348 |
"results, categories, tags, and widgets."
|
1350 |
"Добавляйте рекламу сервиса Adsense на страницы, посты, пользовательские "
|
1351 |
"посты, результаты поиска, категории, теги и виджеты сайта WordPress."
|
1352 |
|
1353 |
+
#: product_list.php:163
|
1354 |
msgid "Add Google Analytics code to WordPress website and track basic stats."
|
1355 |
msgstr ""
|
1356 |
"Добавляйте код Google Analytics на ваш сайт WordPress и отслеживайте базовую "
|
1357 |
"статистику сайта."
|
1358 |
|
1359 |
+
#: product_list.php:173
|
1360 |
msgid ""
|
1361 |
"Protect WordPress website forms from spam entries with Google Captcha "
|
1362 |
"(reCaptcha)."
|
1364 |
"Защищайте формы вашего сайта WordPress от спама с помощью Google Captcha "
|
1365 |
"(reCaptcha)."
|
1366 |
|
1367 |
+
#: product_list.php:183
|
1368 |
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1369 |
msgstr ""
|
1370 |
"Добавляйте пользовательские карты Google в посты, страницы и виджеты "
|
1371 |
"WordPress."
|
1372 |
|
1373 |
+
#: product_list.php:193
|
1374 |
msgid ""
|
1375 |
"Generate and add XML sitemap to WordPress website. Help search engines index "
|
1376 |
"your blog."
|
1378 |
"Создавайте и добавляйте файлы XML sitemap на ваш сайт WordPress. Помогите "
|
1379 |
"поисковым системам проиндексировать ваш блог."
|
1380 |
|
1381 |
+
#: product_list.php:203
|
1382 |
msgid ""
|
1383 |
"Replace external WordPress website links with Google shortlinks and track "
|
1384 |
"click stats."
|
1386 |
"Замените внешние ссылки сайта WordPress на короткие ссылки Google и "
|
1387 |
"отслеживайте статистику кликов."
|
1388 |
|
1389 |
+
#: product_list.php:210
|
1390 |
msgid ""
|
1391 |
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1392 |
"hostnames, etc."
|
1394 |
"Защитите свой сайт WordPress - предоставляйте и запрещайте доступ с "
|
1395 |
"определенных IP-адресов, имен хостов и т.д."
|
1396 |
|
1397 |
+
#: product_list.php:220
|
1398 |
msgid ""
|
1399 |
"Create your personal job board and listing WordPress website. Search jobs, "
|
1400 |
"submit CV/resumes, choose candidates."
|
1403 |
"WordPress. Осуществляйте поиск вакансий, подачу резюме/CV кандидата, выбор "
|
1404 |
"кандидатов."
|
1405 |
|
1406 |
+
#: product_list.php:227
|
1407 |
msgid ""
|
1408 |
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1409 |
"attempts."
|
1411 |
"Защищайте свой сайт WordPress от брутфорс-атак. Ограничивайте количество "
|
1412 |
"попыток ввода логина."
|
1413 |
|
1414 |
+
#: product_list.php:237
|
1415 |
msgid ""
|
1416 |
"Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
|
1417 |
"5 plugins included – profile, insider, etc."
|
1420 |
"страницам и виджетам WordPress. 5 плагинов включено - Профиль, Инсайдер и т."
|
1421 |
"д."
|
1422 |
|
1423 |
+
#: product_list.php:247
|
1424 |
msgid ""
|
1425 |
"Translate WordPress website content to other languages manually. Create "
|
1426 |
"multilingual pages, posts, widgets, menus, etc."
|
1428 |
"Переводите содержимое сайта WordPress на другие языки вручную. Создавайте "
|
1429 |
"многоязычные страницы, посты, виджеты, меню и т.д."
|
1430 |
|
1431 |
+
#: product_list.php:257
|
1432 |
msgid ""
|
1433 |
"Add customizable pagination to WordPress website. Split long content to "
|
1434 |
"multiple pages for better navigation."
|
1436 |
"Добавляйте настраиваемую пагинацию на ваш сайт WordPress. Разбивайте "
|
1437 |
"объемный контент на несколько страниц для лучшей навигации."
|
1438 |
|
1439 |
+
#: product_list.php:267
|
1440 |
msgid ""
|
1441 |
"Generate PDF files and print WordPress posts/pages. Customize document "
|
1442 |
"header/footer styles and appearance."
|
1444 |
"Создавайте PDF-файлы и печатайте посты/страницы сайта WordPress. "
|
1445 |
"Настраивайте стили хедера/футера документа и его внешний вид."
|
1446 |
|
1447 |
+
#: product_list.php:277
|
1448 |
msgid ""
|
1449 |
"Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
|
1450 |
"Profile) to WordPress posts, pages and widgets."
|
1452 |
"Добавляйте кнопки Pinterest \"Подписаться\", \"Сохранить\" и виджеты профиля "
|
1453 |
"(Пин, Доска, Профиль) к постам, страницам и виджетам WordPress."
|
1454 |
|
1455 |
+
#: product_list.php:287
|
1456 |
msgid ""
|
1457 |
"Create your personal portfolio WordPress website. Manage and showcase past "
|
1458 |
"projects to get more clients."
|
1460 |
"Создавайте и добавляйте портфолио на свой сайт WordPress. Управляйте и "
|
1461 |
"демонстрируйте прошлые проекты, чтобы привлечь больше клиентов."
|
1462 |
|
1463 |
+
#: product_list.php:297
|
1464 |
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1465 |
msgstr ""
|
1466 |
"С легкостью экспортируйте посты WordPress в файлы формата CSV. Настраивайте "
|
1467 |
"порядок отображения данных."
|
1468 |
|
1469 |
+
#: product_list.php:304
|
1470 |
msgid ""
|
1471 |
"Add extra fields to default WordPress user profile. The easiest way to "
|
1472 |
"create and manage additional custom values."
|
1474 |
"Добавляйте пользовательские поля в стандартный профиль WordPress. Самый "
|
1475 |
"простой способ создания и управления дополнительными полями."
|
1476 |
|
1477 |
+
#: product_list.php:311
|
1478 |
msgid ""
|
1479 |
"Add and display HTML advertisement banner on WordPress website. Customize "
|
1480 |
"bar styles and appearance."
|
1482 |
"Добавляйте и отображайте баннерную HTML рекламу на сайте WordPress. "
|
1483 |
"Настраивайте стили и внешний вид баннера."
|
1484 |
|
1485 |
+
#: product_list.php:321
|
1486 |
msgid ""
|
1487 |
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1488 |
"widgets."
|
1490 |
"Добавляйте настраиваемые цитаты и подсказки к постам, страницам и виджетам "
|
1491 |
"WordPress."
|
1492 |
|
1493 |
+
#: product_list.php:328
|
1494 |
msgid ""
|
1495 |
"Add rating plugin to your WordPress website to receive feedback from your "
|
1496 |
"customers."
|
1498 |
"Добавляйте систему оценивания и рейтинга на ваш сайт WordPress и получайте "
|
1499 |
"отзывы от ваших клиентов."
|
1500 |
|
1501 |
+
#: product_list.php:335
|
1502 |
msgid ""
|
1503 |
"Create your personal real estate WordPress website. Sell, rent and buy "
|
1504 |
"properties. Add, search and browse listings easily."
|
1507 |
"Продавайте, арендуйте и покупайте недвижимость. Легко добавляйте, находите и "
|
1508 |
"просматривайте листинги."
|
1509 |
|
1510 |
+
#: product_list.php:345
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1511 |
msgid ""
|
1512 |
"Add related, featured, latest, and popular posts to your WordPress website. "
|
1513 |
"Connect your blog readers with a relevant content."
|
1515 |
"Добавляйте похожие, избранные, последние и популярные посты на ваш сайт "
|
1516 |
"WordPress. Предоставляйте своим читателям контент схожей тематики."
|
1517 |
|
1518 |
+
#: product_list.php:352
|
1519 |
msgid ""
|
1520 |
"Send bulk email messages to WordPress users. Custom templates, advanced "
|
1521 |
"settings and detailed reports."
|
1523 |
"Осуществляйте массовую рассылку писем пользователям WordPress. "
|
1524 |
"Пользовательские шаблоны, дополнительные настройки и подробные отчеты."
|
1525 |
|
1526 |
+
#: product_list.php:362
|
1527 |
msgid ""
|
1528 |
"The best responsive slider plugin for your WordPress website. Create "
|
1529 |
"beautifully animated slides just in a few clicks."
|
1531 |
"Самый лучший адаптивный слайдер для вашего сайта WordPress. Создавайте "
|
1532 |
"красиво анимированные слайды всего в несколько кликов."
|
1533 |
|
1534 |
+
#: product_list.php:369
|
1535 |
msgid ""
|
1536 |
"Configure SMTP server to receive email messages from WordPress to Gmail, "
|
1537 |
"Yahoo, Hotmail and other services."
|
1538 |
msgstr ""
|
1539 |
"Настраивайте SMTP-сервер, чтобы получать электронные сообщения с сайта "
|
1540 |
+
"WordPress на такие почтовые службы, как Gmail, Yahoo, Hotmail и многие "
|
1541 |
+
"другие."
|
1542 |
|
1543 |
+
#: product_list.php:376
|
1544 |
msgid ""
|
1545 |
"Add social media buttons and widgets to WordPress posts, pages and widgets. "
|
1546 |
"FB, Twitter, G+1, Pinterest, LinkedIn."
|
1548 |
"Добавляйте кнопки и виджеты социальных сетей к постам, страницам и виджетам "
|
1549 |
"WordPress. FB, Twitter, G+1, Pinterest, LinkedIn."
|
1550 |
|
1551 |
+
#: product_list.php:386
|
1552 |
msgid ""
|
1553 |
"Add social media login, registration, and commenting to your WordPress "
|
1554 |
"website."
|
1556 |
"Добавляйте на свой сайт WordPress возможность входа, регистрации и "
|
1557 |
"комментирования с использованием существующих аккаунтов социальных сетей."
|
1558 |
|
1559 |
+
#: product_list.php:393
|
1560 |
msgid ""
|
1561 |
"Add email newsletter sign up form to WordPress posts, pages and widgets. "
|
1562 |
"Collect data and subscribe your users."
|
1564 |
"Добавляйте форму подписки на новостную рассылку в посты, страницы и виджеты "
|
1565 |
"WordPress. Собирайте данные и осуществляйте подписку пользователей."
|
1566 |
|
1567 |
+
#: product_list.php:403
|
1568 |
msgid ""
|
1569 |
"Add testimonials and feedbacks from your customers to WordPress website "
|
1570 |
"posts, pages, and widgets."
|
1572 |
"Добавляйте рекомендации и отзывы ваших клиентов в посты, страницы и виджеты "
|
1573 |
"сайта WordPress."
|
1574 |
|
1575 |
+
#: product_list.php:410
|
1576 |
msgid ""
|
1577 |
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1578 |
"attendance and generate reports."
|
1580 |
"Лучший плагин учёта рабочего времени на сайте WordPress. Отслеживайте время "
|
1581 |
"работы сотрудников, оптимизируйте график работы в офисе и создавайте отчеты."
|
1582 |
|
1583 |
+
#: product_list.php:420
|
1584 |
msgid ""
|
1585 |
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1586 |
"and pages."
|
1588 |
"Добавляйте кнопки Твиттера \"Читать\", \"Твитнуть\", \"Метка\" и \"Упомянуть"
|
1589 |
"\" к постам и страницам WordPress. "
|
1590 |
|
1591 |
+
#: product_list.php:430
|
1592 |
msgid ""
|
1593 |
"Automatically check and update WordPress website core with all installed "
|
1594 |
"plugins and themes to the latest versions."
|
1596 |
"Выполняйте автоматическую проверку и обновление ядра WordPress до последних "
|
1597 |
"версий со всеми установленными плагинами и темами."
|
1598 |
|
1599 |
+
#: product_list.php:440
|
1600 |
msgid ""
|
1601 |
"Powerful user role management plugin for WordPress website. Create, edit, "
|
1602 |
"copy, and delete user roles."
|
1604 |
"Эффективный плагин управления ролями пользователей для сайта WordPress. "
|
1605 |
"Создавайте, редактируйте, копируйте и удаляйте роли пользователей."
|
1606 |
|
1607 |
+
#: product_list.php:450
|
1608 |
msgid ""
|
1609 |
"Display live count of online visitors who are currently browsing your "
|
1610 |
"WordPress website."
|
1612 |
"Ведите подсчет количества посетителей, которые в настоящее время "
|
1613 |
"просматривают ваш сайт WordPress."
|
1614 |
|
1615 |
+
#: product_list.php:460
|
1616 |
msgid ""
|
1617 |
"Backup and export Zendesk Help Center content automatically to your "
|
1618 |
"WordPress website database."
|
1620 |
"Делайте автоматическое резервное копирование и экспорт содержимого Zendesk "
|
1621 |
"Help Center в базу данных вашего сайта WordPress."
|
1622 |
|
1623 |
+
#~ msgid ""
|
1624 |
+
#~ "You can use one license of the Pro plugin for one domain only. Please "
|
1625 |
+
#~ "check and edit your license or domain if necessary using you personal "
|
1626 |
+
#~ "Client Area. We strongly recommend you to solve the problem within 24 "
|
1627 |
+
#~ "hours, otherwise the Pro plugin will be deactivated."
|
1628 |
+
#~ msgstr ""
|
1629 |
+
#~ "Вы можете использовать одну лицензию Pro плагина только для одного "
|
1630 |
+
#~ "домена. Пожалуйста, проверьте и отредактируйте при необходимости лицензию "
|
1631 |
+
#~ "или домен, используя Ваш личный Client Area. Мы настоятельно рекомендуем "
|
1632 |
+
#~ "вам решить проблему в течение 24 часов, в противном случае плагин будет "
|
1633 |
+
#~ "деактивирован."
|
1634 |
+
|
1635 |
+
#~ msgid "Insert"
|
1636 |
+
#~ msgstr "Вставить"
|
1637 |
+
|
1638 |
+
#~ msgid ""
|
1639 |
+
#~ "Automatically add outgoing email messages to queue instead of sending "
|
1640 |
+
#~ "them immediately."
|
1641 |
+
#~ msgstr ""
|
1642 |
+
#~ "Автоматически формируйте очередь отправки исходящих электронных "
|
1643 |
+
#~ "сообщений. Задавайте время и приоритет рассылки."
|
1644 |
+
|
1645 |
+
#~ msgid ""
|
1646 |
+
#~ "Add unlimited gallery categories. Organize images to make the navigation "
|
1647 |
+
#~ "through content easier."
|
1648 |
+
#~ msgstr ""
|
1649 |
+
#~ "Добавляйте неограниченное количество категорий галерей. Группируйте "
|
1650 |
+
#~ "изображения, чтобы упростить навигацию по контенту."
|
1651 |
+
|
1652 |
+
#~ msgid ""
|
1653 |
+
#~ "Attach, un-attach and re-attach media files quickly to WordPress posts "
|
1654 |
+
#~ "and pages."
|
1655 |
+
#~ msgstr ""
|
1656 |
+
#~ "Прикрепляйте, открепляйте и повторно прикрепляйте медиа файлы к постам и "
|
1657 |
+
#~ "страницам WordPress."
|
1658 |
+
|
1659 |
#~ msgid ""
|
1660 |
#~ "Add related posts to WordPress website posts or widgets. Link your "
|
1661 |
#~ "readers to relevant content."
|
1681 |
#~ msgid "Utilities"
|
1682 |
#~ msgstr "Утилиты"
|
1683 |
|
|
|
|
|
|
|
1684 |
#~ msgid ""
|
1685 |
#~ "Manage database and file system right from your WordPress admin dashboard."
|
1686 |
#~ msgstr ""
|
bws_menu/languages/bestwebsoft-uk.mo
CHANGED
Binary file
|
bws_menu/languages/bestwebsoft-uk.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date: 2017-
|
7 |
"Last-Translator: bestwebsoft.com <plugins@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <https://support.bestwebsoft.com>\n"
|
9 |
"Language: uk_UA\n"
|
@@ -18,11 +18,11 @@ msgstr ""
|
|
18 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#: bws_functions.php:
|
22 |
msgid "requires"
|
23 |
msgstr "потребує"
|
24 |
|
25 |
-
#: bws_functions.php:
|
26 |
msgid ""
|
27 |
"or higher, that is why it has been deactivated! Please upgrade WordPress and "
|
28 |
"try again."
|
@@ -30,60 +30,59 @@ msgstr ""
|
|
30 |
"чи вище, тому його було деактивовано! Будь ласка оновіть WordPress та "
|
31 |
"спробуйте ще раз."
|
32 |
|
33 |
-
#: bws_functions.php:
|
34 |
msgid "Back to the WordPress"
|
35 |
msgstr "Повернутися на WordPress на"
|
36 |
|
37 |
-
#: bws_functions.php:
|
38 |
msgid "Plugins page"
|
39 |
msgstr "Сторінку Плагінів"
|
40 |
|
41 |
-
#: bws_functions.php:
|
42 |
msgid "Like the plugin?"
|
43 |
msgstr "Сподобався плагін?"
|
44 |
|
45 |
-
#: bws_functions.php:
|
46 |
msgid "Rate it"
|
47 |
msgstr "Оцінити"
|
48 |
|
49 |
-
#: bws_functions.php:
|
50 |
msgid "Need help?"
|
51 |
msgstr "Потрібна допомога?"
|
52 |
|
53 |
-
#: bws_functions.php:
|
54 |
msgid "Visit Help Center"
|
55 |
msgstr "Перейти до Help Center"
|
56 |
|
57 |
-
#: bws_functions.php:
|
58 |
msgid "Want to support the plugin?"
|
59 |
msgstr "Хочете підтримати плагін?"
|
60 |
|
61 |
-
#: bws_functions.php:
|
62 |
msgid "Donate"
|
63 |
msgstr "Пожертвувати"
|
64 |
|
65 |
-
#: bws_functions.php:
|
66 |
msgid "WARNING: Illegal use notification"
|
67 |
msgstr "УВАГА: виявлено несанкціоноване використання плагіну"
|
68 |
|
69 |
-
#: bws_functions.php:
|
70 |
msgid ""
|
71 |
"You can use one license of the Pro plugin for one domain only. Please check "
|
72 |
-
"and edit your license or domain if necessary using
|
73 |
-
"We strongly recommend you to solve the problem within 24 hours,
|
74 |
-
"the Pro plugin will be deactivated."
|
75 |
msgstr ""
|
76 |
"Ви можете використовувати одну ліцензію Про-плагіну для одного домену. Будь "
|
77 |
"ласка, переконайтесь, що інформацію щодо ліцензії і домену введено вірно, у "
|
78 |
"вкладці Client Area. Ми настійливо рекомендуємо Вам вирішити це питання "
|
79 |
"протягом 24 годин, інакше плагін буде деактивовано."
|
80 |
|
81 |
-
#: bws_functions.php:
|
82 |
-
#: class-bws-settings.php:143
|
83 |
msgid "Learn More"
|
84 |
msgstr "Дізнатись більше"
|
85 |
|
86 |
-
#: bws_functions.php:
|
87 |
msgid ""
|
88 |
"Notice: Your Pro Trial license has expired. To continue using the plugin, "
|
89 |
"you should buy a Pro license"
|
@@ -91,7 +90,7 @@ msgstr ""
|
|
91 |
"Увага: Термін дії Pro Trial версії плагіну скінчився. Щоб продовжити "
|
92 |
"користуватись плагіном, будь ласка, придбайте Pro ліцензію"
|
93 |
|
94 |
-
#: bws_functions.php:
|
95 |
msgid ""
|
96 |
"Your license has expired. To continue getting top-priority support and "
|
97 |
"plugin updates, you should extend it."
|
@@ -99,24 +98,24 @@ msgstr ""
|
|
99 |
"Строк вашої ліцензії витік. Якщо ви хочете отримувати першочергову технічну "
|
100 |
"підтримку та оновлювати плагін у майбутньому, вам слід подовжити ліцензію."
|
101 |
|
102 |
-
#: bws_functions.php:
|
103 |
msgid "Learn more"
|
104 |
msgstr "Дізнатись більше"
|
105 |
|
106 |
-
#: bws_functions.php:
|
107 |
#, php-format
|
108 |
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
109 |
msgstr "Увага: Ви використовуєте тріал Pro версію плагіну %s."
|
110 |
|
111 |
-
#: bws_functions.php:
|
112 |
msgid "Notice: You are using the Pro Trial license of plugin."
|
113 |
msgstr "Увага: Ви використовуєте тріал Pro версію плагіну."
|
114 |
|
115 |
-
#: bws_functions.php:
|
116 |
msgid "The Pro Trial license will expire on"
|
117 |
msgstr "Trial період Pro версії плагіну закінчується"
|
118 |
|
119 |
-
#: bws_functions.php:
|
120 |
msgid ""
|
121 |
"or higher! We do not guarantee that our plugin will work correctly. Please "
|
122 |
"upgrade to WordPress latest version."
|
@@ -124,73 +123,73 @@ msgstr ""
|
|
124 |
"чи вище! Ми не гарантуємо, що наш плагін буде працювати правильно. Будь "
|
125 |
"ласка, оновіть WordPress до останньої версії."
|
126 |
|
127 |
-
#: bws_functions.php:
|
128 |
#, php-format
|
129 |
msgid "Thank you for installing %s plugin!"
|
130 |
msgstr "Дякуємо, що встановили %s плагін!"
|
131 |
|
132 |
-
#: bws_functions.php:
|
133 |
msgid "Let's get started"
|
134 |
msgstr "Розпочнемо"
|
135 |
|
136 |
-
#: bws_functions.php:
|
137 |
#: bws_menu.php:559
|
138 |
msgid "Settings"
|
139 |
msgstr "Налаштування"
|
140 |
|
141 |
-
#: bws_functions.php:
|
142 |
-
#: class-bws-settings.php:
|
143 |
msgid "or"
|
144 |
msgstr "або"
|
145 |
|
146 |
-
#: bws_functions.php:
|
147 |
msgid "Add New"
|
148 |
msgstr "Додати"
|
149 |
|
150 |
-
#: bws_functions.php:
|
151 |
-
#: bws_functions.php:
|
152 |
msgid "Close notice"
|
153 |
msgstr "Закрити"
|
154 |
|
155 |
-
#: bws_functions.php:
|
156 |
msgid "Thank you for installing plugins by BestWebSoft!"
|
157 |
msgstr "Дякуємо, що встановили плагіни від BestWebSoft!"
|
158 |
|
159 |
-
#: bws_functions.php:
|
160 |
msgid "More Details"
|
161 |
msgstr "Деталі"
|
162 |
|
163 |
-
#: bws_functions.php:
|
164 |
msgid "Less Details"
|
165 |
msgstr "Сховати Деталі"
|
166 |
|
167 |
-
#: bws_functions.php:
|
168 |
msgid "Deprecated function(-s) is used on the site here:"
|
169 |
msgstr "Застарілі функціі використовується на сайті тут:"
|
170 |
|
171 |
-
#: bws_functions.php:
|
172 |
msgid ""
|
173 |
"This function(-s) will be removed over time. Please update the product(-s)."
|
174 |
msgstr ""
|
175 |
"Ці функції буде видалено через деякий час. Будь ласка, поновіть продукт."
|
176 |
|
177 |
-
#: bws_functions.php:
|
178 |
msgid "It’s time to upgrade your"
|
179 |
msgstr "Настав час модернізувати Ваш"
|
180 |
|
181 |
-
#: bws_functions.php:
|
182 |
msgid "to"
|
183 |
msgstr "до"
|
184 |
|
185 |
-
#: bws_functions.php:
|
186 |
msgid "version!"
|
187 |
msgstr "версії!"
|
188 |
|
189 |
-
#: bws_functions.php:
|
190 |
msgid "Extend standard plugin functionality with new great options."
|
191 |
msgstr "Розширює можливості стандартного функціоналу плагіна."
|
192 |
|
193 |
-
#: bws_functions.php:
|
194 |
#, php-format
|
195 |
msgid ""
|
196 |
"Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
|
@@ -199,12 +198,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 +212,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:
|
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,80 +238,76 @@ msgstr ""
|
|
239 |
"Ви завжди можете подивитися на преміум опції, натиснувши на кнопку \"Pro "
|
240 |
"опції\" на вкладці \"Різне\"."
|
241 |
|
242 |
-
#: bws_functions.php:
|
243 |
msgid "Add BWS Shortcode"
|
244 |
msgstr "Додати BWS шорткод"
|
245 |
|
246 |
-
#: bws_functions.php:
|
247 |
msgid "Add BWS Plugins Shortcode"
|
248 |
msgstr "Додати шорткод BWS плагіну"
|
249 |
|
250 |
-
#: bws_functions.php:
|
251 |
msgid "Add shortcode"
|
252 |
msgstr "Додати шорткод"
|
253 |
|
254 |
-
#: bws_functions.php:
|
255 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
256 |
msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
|
257 |
|
258 |
-
#: bws_functions.php:
|
259 |
msgid "Close"
|
260 |
msgstr "Закрити"
|
261 |
|
262 |
-
#: bws_functions.php:
|
263 |
msgid "Are you sure you want to restore default settings?"
|
264 |
msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
|
265 |
|
266 |
-
#: bws_functions.php:
|
267 |
msgid "Yes, restore all settings"
|
268 |
msgstr "Так, скинути налаштування"
|
269 |
|
270 |
-
#: bws_functions.php:
|
271 |
msgid "No, go back to the settings page"
|
272 |
msgstr "Ні, повернутись назад на сторінку налаштувань"
|
273 |
|
274 |
-
#: bws_functions.php:
|
275 |
msgid "Plugin"
|
276 |
msgstr "Плагін"
|
277 |
|
278 |
-
#: bws_functions.php:
|
279 |
msgid "Shortcode settings"
|
280 |
msgstr "Налаштування шорткоду"
|
281 |
|
282 |
-
#: bws_functions.php:
|
283 |
msgid "The shortcode will be inserted"
|
284 |
msgstr "Буде вставлено шорткод"
|
285 |
|
286 |
-
#: bws_functions.php:
|
287 |
-
msgid "Insert"
|
288 |
-
msgstr "Вставити"
|
289 |
-
|
290 |
-
#: bws_functions.php:912
|
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 |
msgid "Submit a Request"
|
308 |
msgstr "Надіслати запит"
|
309 |
|
310 |
-
#: bws_menu.php:101 class-bws-settings.php:
|
311 |
msgid "Wrong license key"
|
312 |
msgstr "Невірний ключ ліцензії"
|
313 |
|
314 |
-
#: bws_menu.php:122 class-bws-settings.php:
|
315 |
-
#: class-bws-settings.php:
|
316 |
#: deprecated.php:352
|
317 |
msgid ""
|
318 |
"Something went wrong. Please try again later. If the error appears again, "
|
@@ -321,13 +316,13 @@ msgstr ""
|
|
321 |
"Щось не так, спробуйте пізніше. Якщо помилка повториться, будь ласка, "
|
322 |
"повідомте нам"
|
323 |
|
324 |
-
#: bws_menu.php:122 class-bws-settings.php:
|
325 |
-
#: class-bws-settings.php:
|
326 |
#: deprecated.php:352
|
327 |
msgid "We are sorry for inconvenience."
|
328 |
msgstr "Просимо вибачення за незручності."
|
329 |
|
330 |
-
#: bws_menu.php:128 class-bws-settings.php:
|
331 |
#: deprecated.php:139 deprecated.php:358
|
332 |
msgid "Wrong license key."
|
333 |
msgstr "Неправильний ліцензійний ключ."
|
@@ -347,7 +342,7 @@ msgstr "Увійти"
|
|
347 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
348 |
msgstr "На жаль, ви перевищили кількість допустимих спроб."
|
349 |
|
350 |
-
#: bws_menu.php:134 class-bws-settings.php:
|
351 |
#, php-format
|
352 |
msgid ""
|
353 |
"Unfortunately, Your license has expired. To continue getting top-priority "
|
@@ -356,7 +351,7 @@ msgstr ""
|
|
356 |
"На жаль, ваша ліцензія скінчилась. Для того, щоб і надалі отримувати "
|
357 |
"першочергову техпідтримку і оновлення, будь ласка, продовжте ліцензію на %s"
|
358 |
|
359 |
-
#: bws_menu.php:136 class-bws-settings.php:
|
360 |
msgid ""
|
361 |
"Unfortunately, the Pro licence was already installed to this domain. The Pro "
|
362 |
"Trial license can be installed only once."
|
@@ -364,11 +359,11 @@ msgstr ""
|
|
364 |
"На жаль, Pro ліцензія уже використовувалась на цьому домені. Тріал Pro "
|
365 |
"версії плагіну можна використати лише один раз."
|
366 |
|
367 |
-
#: bws_menu.php:142 class-bws-settings.php:
|
368 |
msgid "The license key is valid."
|
369 |
msgstr "Ліцензійний ключ дійсний."
|
370 |
|
371 |
-
#: bws_menu.php:144 class-bws-settings.php:
|
372 |
msgid "Your license will expire on"
|
373 |
msgstr "Ваша ліцензія закінчується"
|
374 |
|
@@ -376,7 +371,7 @@ msgstr "Ваша ліцензія закінчується"
|
|
376 |
msgid "Congratulations! Pro Membership license is activated successfully."
|
377 |
msgstr "Вітаємо! Pro Membership ліцензія успішно активована."
|
378 |
|
379 |
-
#: bws_menu.php:153 class-bws-settings.php:
|
380 |
msgid ""
|
381 |
"Something went wrong. Try again later or upload the plugin manually. We are "
|
382 |
"sorry for inconvenience."
|
@@ -550,7 +545,7 @@ msgstr "Плагіни"
|
|
550 |
msgid "Themes"
|
551 |
msgstr "Теми"
|
552 |
|
553 |
-
#: bws_menu.php:309 bws_menu.php:313 bws_menu.php:
|
554 |
msgid "System status"
|
555 |
msgstr "Системна інформація"
|
556 |
|
@@ -571,7 +566,7 @@ msgstr "Отримати доступ до %s+ преміум плагинам"
|
|
571 |
msgid "Subscribe to Pro Membership"
|
572 |
msgstr "Підписатися на Pro Membership"
|
573 |
|
574 |
-
#: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:
|
575 |
#: deprecated.php:227
|
576 |
msgid "Check license key"
|
577 |
msgstr "Перевірте ліцензійний ключ"
|
@@ -581,7 +576,7 @@ msgid "Enter your license key"
|
|
581 |
msgstr "Ваш ліцензійний ключ"
|
582 |
|
583 |
#: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
|
584 |
-
#: class-bws-settings.php:
|
585 |
#: deprecated.php:629 deprecated.php:700 deprecated.php:709
|
586 |
msgid "Activate"
|
587 |
msgstr "Активувати"
|
@@ -624,8 +619,8 @@ msgid "Downloading install package from"
|
|
624 |
msgstr "Завантаження встановлюючого пакунку з"
|
625 |
|
626 |
#: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
|
627 |
-
#: class-bws-settings.php:
|
628 |
-
#: class-bws-settings.php:
|
629 |
#: deprecated.php:431
|
630 |
msgid "Failed to download the zip archive. Please, upload the plugin manually"
|
631 |
msgstr ""
|
@@ -639,11 +634,11 @@ msgstr "Розпакування пакета"
|
|
639 |
msgid "Installing the plugin"
|
640 |
msgstr "Встановлення плагіну"
|
641 |
|
642 |
-
#: bws_menu.php:417 class-bws-settings.php:
|
643 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
644 |
msgstr "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну"
|
645 |
|
646 |
-
#: bws_menu.php:424 class-bws-settings.php:
|
647 |
msgid ""
|
648 |
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
649 |
"plugin manually"
|
@@ -656,7 +651,7 @@ msgstr ""
|
|
656 |
msgid "The plugin %s is successfully installed."
|
657 |
msgstr "Плагін %s успішно встановлено."
|
658 |
|
659 |
-
#: bws_menu.php:434 class-bws-settings.php:
|
660 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
661 |
msgstr ""
|
662 |
"Немає доступу до теки завантажень WordPress. Будь ласка, завантажте плагін "
|
@@ -674,7 +669,7 @@ msgstr "Назад до BestWebSoft Panel"
|
|
674 |
msgid "All"
|
675 |
msgstr "Всі"
|
676 |
|
677 |
-
#: bws_menu.php:450 bws_menu.php:
|
678 |
msgid "Installed"
|
679 |
msgstr "Встановлені"
|
680 |
|
@@ -707,7 +702,7 @@ msgstr "Оновити до версії %s"
|
|
707 |
msgid "Install Now"
|
708 |
msgstr "Встановити"
|
709 |
|
710 |
-
#: bws_menu.php:549 class-bws-settings.php:
|
711 |
msgid "Upgrade to Pro"
|
712 |
msgstr "Оновити до Pro"
|
713 |
|
@@ -723,86 +718,86 @@ msgstr "Встановити плагін"
|
|
723 |
msgid "Nothing found. Try another criteria."
|
724 |
msgstr "Нічого не знайдено. Спробуйте інші критерії."
|
725 |
|
726 |
-
#: bws_menu.php:621
|
727 |
#, php-format
|
728 |
msgid "By %s"
|
729 |
msgstr "За %s"
|
730 |
|
731 |
-
#: bws_menu.php:
|
732 |
msgid "Already Installed"
|
733 |
msgstr "Уже встановлено %s"
|
734 |
|
735 |
-
#: bws_menu.php:
|
736 |
msgid "Browse Free WordPress Themes"
|
737 |
msgstr "Огляд безкоштовних WordPress тем"
|
738 |
|
739 |
-
#: bws_menu.php:
|
740 |
msgid "Send to support"
|
741 |
msgstr "Відправити службі тех. підтримки"
|
742 |
|
743 |
-
#: bws_menu.php:
|
744 |
msgid "Send to custom email »"
|
745 |
msgstr "Відправити на електронну адресу »"
|
746 |
|
747 |
-
#: class-bws-settings.php:
|
748 |
msgid "Information"
|
749 |
msgstr "Інформація"
|
750 |
|
751 |
-
#: class-bws-settings.php:
|
752 |
msgid "Inactive"
|
753 |
msgstr "Неактивна"
|
754 |
|
755 |
-
#: class-bws-settings.php:
|
756 |
msgid "Expired"
|
757 |
msgstr "Закінчилась"
|
758 |
|
759 |
-
#: class-bws-settings.php:
|
760 |
#, php-format
|
761 |
msgid "%s day(-s) left"
|
762 |
msgstr "%s днів залишилося"
|
763 |
|
764 |
-
#: class-bws-settings.php:
|
765 |
#, php-format
|
766 |
msgid "Expired on %s"
|
767 |
msgstr "Витікає %s"
|
768 |
|
769 |
-
#: class-bws-settings.php:
|
770 |
msgid "Renew Now"
|
771 |
msgstr "Відновити зараз"
|
772 |
|
773 |
-
#: class-bws-settings.php:
|
774 |
msgid "Active"
|
775 |
msgstr "Активна"
|
776 |
|
777 |
-
#: class-bws-settings.php:
|
778 |
msgid "License"
|
779 |
msgstr "Ліцензія"
|
780 |
|
781 |
-
#: class-bws-settings.php:
|
782 |
msgid "Status"
|
783 |
msgstr "Статус"
|
784 |
|
785 |
-
#: class-bws-settings.php:
|
786 |
msgid "Version"
|
787 |
msgstr "Версія"
|
788 |
|
789 |
-
#: class-bws-settings.php:
|
790 |
msgid "All plugin settings were restored."
|
791 |
msgstr "Усі налаштування плагіну відновлені."
|
792 |
|
793 |
-
#: class-bws-settings.php:
|
794 |
msgid "Custom Code"
|
795 |
msgstr "Користувацький код"
|
796 |
|
797 |
-
#: class-bws-settings.php:
|
798 |
msgid "You do not have sufficient permissions to edit plugins for this site."
|
799 |
msgstr "У вас недостатньо повноважень для редагування плагінів цього сайту."
|
800 |
|
801 |
-
#: class-bws-settings.php:
|
802 |
msgid "These styles will be added to the header on all pages of your site."
|
803 |
msgstr "Ці стилі будуть додані в заголовок на всіх сторінках вашого сайту."
|
804 |
|
805 |
-
#: class-bws-settings.php:
|
806 |
#, php-format
|
807 |
msgid ""
|
808 |
"This PHP code will be hooked to the %s action and will be printed on front "
|
@@ -810,11 +805,11 @@ msgid ""
|
|
810 |
msgstr ""
|
811 |
"Цей PHP код буде прикріплений до %s action і буде додано лише у фронтенді."
|
812 |
|
813 |
-
#: class-bws-settings.php:
|
814 |
msgid "These code will be added to the header on all pages of your site."
|
815 |
msgstr "Цей код буде додано в заголовок на всіх сторінках вашого сайту."
|
816 |
|
817 |
-
#: class-bws-settings.php:
|
818 |
#, php-format
|
819 |
msgid ""
|
820 |
"You need to make this files writable before you can save your changes. See "
|
@@ -823,25 +818,25 @@ msgstr ""
|
|
823 |
"Вам потрібно зробити цей файл доступним для запису, перед тим як ви зможете "
|
824 |
"зберегти свої зміни. Перегляньте %sКодекс%s для додаткової інформації."
|
825 |
|
826 |
-
#: class-bws-settings.php:
|
827 |
msgid "Browsing"
|
828 |
msgstr "Огляд"
|
829 |
|
830 |
-
#: class-bws-settings.php:
|
831 |
#, php-format
|
832 |
msgid "Activate custom %s code."
|
833 |
msgstr "Активувати користувацький %s код."
|
834 |
|
835 |
-
#: class-bws-settings.php:
|
836 |
#, php-format
|
837 |
msgid "Learn more about %s"
|
838 |
msgstr "Дізнатись більше про %s"
|
839 |
|
840 |
-
#: class-bws-settings.php:
|
841 |
msgid "Miscellaneous Settings"
|
842 |
msgstr "Інші налаштування"
|
843 |
|
844 |
-
#: class-bws-settings.php:
|
845 |
#, php-format
|
846 |
msgid ""
|
847 |
"It is prohibited to change %s settings on this site in the %s network "
|
@@ -850,7 +845,7 @@ msgstr ""
|
|
850 |
"Мережевими налаштуваннями %s забороняється змінювати налаштування %s на "
|
851 |
"цьому сайті."
|
852 |
|
853 |
-
#: class-bws-settings.php:
|
854 |
#, php-format
|
855 |
msgid ""
|
856 |
"It is prohibited to view %s settings on this site in the %s network settings."
|
@@ -858,67 +853,67 @@ msgstr ""
|
|
858 |
"Мережевими налаштуваннями %s забороняється дивитися налаштування %s на цьому "
|
859 |
"сайті."
|
860 |
|
861 |
-
#: class-bws-settings.php:
|
862 |
msgid "Pro Options"
|
863 |
msgstr "Pro опції"
|
864 |
|
865 |
-
#: class-bws-settings.php:
|
866 |
msgid "Enable to display plugin Pro options."
|
867 |
msgstr "Увімкніть для відображення Pro опцій плагіна."
|
868 |
|
869 |
-
#: class-bws-settings.php:
|
870 |
msgid "Track Usage"
|
871 |
msgstr "Збирати статистику"
|
872 |
|
873 |
-
#: class-bws-settings.php:
|
874 |
msgid ""
|
875 |
"Enable to allow tracking plugin usage anonymously in order to make it better."
|
876 |
msgstr ""
|
877 |
"Включити, щоб дозволити анонімно відстежувати використання і зробити плагін "
|
878 |
"краще."
|
879 |
|
880 |
-
#: class-bws-settings.php:
|
881 |
msgid "Default Settings"
|
882 |
msgstr "Налаштування за замовчуванням"
|
883 |
|
884 |
-
#: class-bws-settings.php:
|
885 |
msgid "Restore Settings"
|
886 |
msgstr "Відновлення налаштувань"
|
887 |
|
888 |
-
#: class-bws-settings.php:
|
889 |
msgid "This will restore plugin settings to defaults."
|
890 |
msgstr "Відновити всі налаштування плагіна до налаштувань за замовчуванням."
|
891 |
|
892 |
-
#: class-bws-settings.php:
|
893 |
msgid "Import / Export"
|
894 |
msgstr "Імпорт / Експорт"
|
895 |
|
896 |
-
#: class-bws-settings.php:
|
897 |
-
#: class-bws-settings.php:
|
898 |
msgid "License Key"
|
899 |
msgstr "Ключ ліцензії"
|
900 |
|
901 |
-
#: class-bws-settings.php:
|
902 |
msgid "Congratulations! Pro license is activated successfully."
|
903 |
msgstr "Вітаємо! Pro ліцензія успішно активована."
|
904 |
|
905 |
-
#: class-bws-settings.php:
|
906 |
#, php-format
|
907 |
msgid "You will be automatically redirected to the %s in %s seconds."
|
908 |
msgstr "Вас буде автоматично перенаправлено на %s через %s секунд."
|
909 |
|
910 |
-
#: class-bws-settings.php:
|
911 |
msgid "Settings page"
|
912 |
msgstr "сторінку налаштувань"
|
913 |
|
914 |
-
#: class-bws-settings.php:
|
915 |
#, php-format
|
916 |
msgid "Enter your license key to activate %s and get premium plugin features."
|
917 |
msgstr ""
|
918 |
"Введіть ліцензійний ключ для активації %s і отримання додаткових можливостей "
|
919 |
"плагіна."
|
920 |
|
921 |
-
#: class-bws-settings.php:
|
922 |
#: deprecated.php:703
|
923 |
msgid ""
|
924 |
"Unfortunately, you have exceeded the number of available tries per day. "
|
@@ -927,12 +922,12 @@ msgstr ""
|
|
927 |
"На жаль, ви перевищили кількість доступних спроб на день. Будь ласка, "
|
928 |
"завантажте плагін вручну"
|
929 |
|
930 |
-
#: class-bws-settings.php:
|
931 |
#, php-format
|
932 |
msgid "Start Your Free %s-Day Trial Now"
|
933 |
msgstr "Спробуйте %s-денну Trial версію безкоштовно"
|
934 |
|
935 |
-
#: class-bws-settings.php:
|
936 |
msgid ""
|
937 |
"If necessary, you can check if the license key is correct or reenter it in "
|
938 |
"the field below."
|
@@ -940,15 +935,15 @@ msgstr ""
|
|
940 |
"При необхідності ви можете перевірити правильність вашого ліцензійного ключа "
|
941 |
"або знову ввести його у полі, що знаходиться нижче."
|
942 |
|
943 |
-
#: class-bws-settings.php:
|
944 |
msgid "Manage License Settings"
|
945 |
msgstr "Управління налаштуваннями ліцензій"
|
946 |
|
947 |
-
#: class-bws-settings.php:
|
948 |
msgid "Login to Client Area"
|
949 |
msgstr "Зайти в Client Area"
|
950 |
|
951 |
-
#: class-bws-settings.php:
|
952 |
msgid ""
|
953 |
"Manage active licenses, download BWS products, and view your payment history "
|
954 |
"using BestWebSoft Client Area."
|
@@ -956,12 +951,12 @@ msgstr ""
|
|
956 |
"Керуй активними ліцензіями, завантажуй BWS продукти, а також переглядай "
|
957 |
"історію платежів за допомогою BestWebSoft Client Area."
|
958 |
|
959 |
-
#: class-bws-settings.php:
|
960 |
#: deprecated.php:360
|
961 |
msgid "This license key is bound to another site."
|
962 |
msgstr "Цей ліцензійний ключ прив'язано до іншого сайту."
|
963 |
|
964 |
-
#: class-bws-settings.php:
|
965 |
msgid ""
|
966 |
"This license key is valid, but Your license has expired. If you want to "
|
967 |
"update our plugin in future, you should extend the license."
|
@@ -969,11 +964,11 @@ msgstr ""
|
|
969 |
"Даний ліцензійний ключ дійсний, але строк вашої ліцензії витік. Якщо ви "
|
970 |
"хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
|
971 |
|
972 |
-
#: class-bws-settings.php:
|
973 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
974 |
msgstr "На жаль, ви перевищили кількість допустимих спроб."
|
975 |
|
976 |
-
#: class-bws-settings.php:
|
977 |
msgid ""
|
978 |
"Unfortunately, the Pro Trial licence was already installed to this domain. "
|
979 |
"The Pro Trial license can be installed only once."
|
@@ -981,36 +976,135 @@ msgstr ""
|
|
981 |
"На жаль, Trial Pro версія плагіну уже встановлювалась на цей домен. Trial "
|
982 |
"Pro версію можна встановлювати лише один раз."
|
983 |
|
984 |
-
#: class-bws-settings.php:
|
985 |
msgid "The Pro Trial license key is valid."
|
986 |
msgstr "Ключ тріал Pro версії вірний."
|
987 |
|
988 |
-
#: class-bws-settings.php:
|
989 |
#, php-format
|
990 |
msgid ""
|
991 |
"In order to continue using the plugin it is necessary to buy a %s license."
|
992 |
msgstr "Щоб продовжити користуватись плагіном, потрібно придбати %s ліцензію."
|
993 |
|
994 |
-
#: class-bws-settings.php:
|
995 |
msgid "Please, enter Your license key"
|
996 |
msgstr "Будь ласка, впишіть ваш ліцензійний ключ"
|
997 |
|
998 |
-
#: class-bws-settings.php:
|
999 |
msgid "Need Help?"
|
1000 |
msgstr "Потрібна допомога?"
|
1001 |
|
1002 |
-
#: class-bws-settings.php:
|
1003 |
msgid "Read the Instruction"
|
1004 |
msgstr "Читати інструкцію"
|
1005 |
|
1006 |
-
#: class-bws-settings.php:
|
1007 |
msgid "Watch the Video"
|
1008 |
msgstr "Дивитися відео"
|
1009 |
|
1010 |
-
#: class-bws-settings.php:
|
1011 |
msgid "Start Your Free Trial"
|
1012 |
msgstr "Використовувати безкоштовну Trial версію"
|
1013 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1014 |
#: deprecated.php:93
|
1015 |
msgid "System Status"
|
1016 |
msgstr "Системна інформація"
|
@@ -1150,18 +1244,18 @@ msgstr "Пошукова оптимізація"
|
|
1150 |
msgid "SMM"
|
1151 |
msgstr "СММ"
|
1152 |
|
1153 |
-
#: product_list.php:
|
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:
|
1161 |
msgid "Create your personal car rental/booking and reservation website."
|
1162 |
msgstr "Створіть свій власний сайт прокату і резервування автомобілів."
|
1163 |
|
1164 |
-
#: product_list.php:
|
1165 |
msgid ""
|
1166 |
"Allow customers to reach you using secure contact form plugin any website "
|
1167 |
"must have."
|
@@ -1169,48 +1263,40 @@ msgstr ""
|
|
1169 |
"Надайте можливість клієнтам здійснювати зв'язок з вами через безпечний "
|
1170 |
"плагін контактної форми, який повинен мати будь-який сайт."
|
1171 |
|
1172 |
-
#: product_list.php:
|
1173 |
msgid "Add unlimited number of contact forms to WordPress website."
|
1174 |
msgstr "Додавайте необмежену кількість контактних форм на ваш сайт WordPress."
|
1175 |
|
1176 |
-
#: product_list.php:
|
1177 |
msgid "Save and manage Contact Form messages. Never lose important data."
|
1178 |
msgstr ""
|
1179 |
"Зберігайте і керуйте повідомленнями плагіну Contact Form. Ніколи не "
|
1180 |
"втрачайте важливі дані."
|
1181 |
|
1182 |
-
#: product_list.php:
|
1183 |
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1184 |
msgstr ""
|
1185 |
"Додавайте необмежену кількість користувацьких сторінок у панелі "
|
1186 |
"адміністратора WordPress."
|
1187 |
|
1188 |
-
#: product_list.php:
|
1189 |
msgid "Add custom fields to WordPress website search results."
|
1190 |
msgstr ""
|
1191 |
"Додавайте користувацькі поля у результати пошуку вашого сайту WordPress."
|
1192 |
|
1193 |
-
#: product_list.php:
|
1194 |
msgid ""
|
1195 |
"Add custom post types and taxonomies to WordPress website search results."
|
1196 |
msgstr ""
|
1197 |
"Додавайте користувацькі типи постів і таксономії у результати пошуку на "
|
1198 |
"вашому сайті WordPress."
|
1199 |
|
1200 |
-
#: product_list.php:
|
1201 |
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1202 |
msgstr ""
|
1203 |
"Додавайте кнопки PayPal і 2CO, щоб отримувати пожертви та благодійні внески."
|
1204 |
|
1205 |
-
#: product_list.php:
|
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."
|
@@ -1218,7 +1304,7 @@ msgstr ""
|
|
1218 |
"Отримуйте останні повідомлення з журналу помилок для діагностики проблем "
|
1219 |
"сайту. Швидше виявляйте і усувайте проблеми."
|
1220 |
|
1221 |
-
#: product_list.php:
|
1222 |
msgid ""
|
1223 |
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1224 |
"widgets."
|
@@ -1226,7 +1312,7 @@ msgstr ""
|
|
1226 |
"Додавайте кнопки Facebook \"Підписатися\", \"Подобається\" та \"Поділитися\" "
|
1227 |
"у пости, сторінки і віджети сайту WordPress."
|
1228 |
|
1229 |
-
#: product_list.php:
|
1230 |
msgid ""
|
1231 |
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1232 |
"clicks."
|
@@ -1234,15 +1320,7 @@ msgstr ""
|
|
1234 |
"Додавайте мальовничі галереї, альбоми і зображення на ваш сайт WordPress "
|
1235 |
"всього в декілька кліків."
|
1236 |
|
1237 |
-
#: product_list.php:
|
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."
|
@@ -1250,7 +1328,7 @@ msgstr ""
|
|
1250 |
"Додавайте кнопки Google \"+1\", \"Поділитися\", \"Підписатися\", \"Hangout\" "
|
1251 |
"і значок профілю до постів, сторінок та віджетів WordPress."
|
1252 |
|
1253 |
-
#: product_list.php:
|
1254 |
msgid ""
|
1255 |
"Stronger security solution which protects your WordPress website from hacks "
|
1256 |
"and unauthorized login attempts."
|
@@ -1258,7 +1336,7 @@ msgstr ""
|
|
1258 |
"Найпотужніше рішення безпеки, яке захищає ваш сайт WordPress від зломів та "
|
1259 |
"неавторизованих спроб входу в систему."
|
1260 |
|
1261 |
-
#: product_list.php:
|
1262 |
msgid ""
|
1263 |
"Add Adsense ads to WordPress website pages, posts, custom posts, search "
|
1264 |
"results, categories, tags, and widgets."
|
@@ -1266,13 +1344,13 @@ msgstr ""
|
|
1266 |
"Додавайте рекламу сервісу Adsense на сторінки, пости, користувацькі пости, "
|
1267 |
"результати пошуку, категорії, теги і віджети сайту WordPress."
|
1268 |
|
1269 |
-
#: product_list.php:
|
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:
|
1276 |
msgid ""
|
1277 |
"Protect WordPress website forms from spam entries with Google Captcha "
|
1278 |
"(reCaptcha)."
|
@@ -1280,12 +1358,12 @@ msgstr ""
|
|
1280 |
"Захищайте форми вашого сайту WordPress від спаму за допомогою Google Captcha "
|
1281 |
"(reCaptcha)."
|
1282 |
|
1283 |
-
#: product_list.php:
|
1284 |
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1285 |
msgstr ""
|
1286 |
"Додавайте користувацькі карти Google у пости, сторінки та віджети WordPress."
|
1287 |
|
1288 |
-
#: product_list.php:
|
1289 |
msgid ""
|
1290 |
"Generate and add XML sitemap to WordPress website. Help search engines index "
|
1291 |
"your blog."
|
@@ -1293,7 +1371,7 @@ msgstr ""
|
|
1293 |
"Створюйте та додавайте файли XML sitemap на ваш сайт WordPress. Допоможіть "
|
1294 |
"пошуковим системам проіндексувати ваш блог."
|
1295 |
|
1296 |
-
#: product_list.php:
|
1297 |
msgid ""
|
1298 |
"Replace external WordPress website links with Google shortlinks and track "
|
1299 |
"click stats."
|
@@ -1301,7 +1379,7 @@ msgstr ""
|
|
1301 |
"Замініть зовнішні посилання сайту WordPress на короткі посилання Google і "
|
1302 |
"відстежуйте статистику кліків."
|
1303 |
|
1304 |
-
#: product_list.php:
|
1305 |
msgid ""
|
1306 |
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1307 |
"hostnames, etc."
|
@@ -1309,7 +1387,7 @@ msgstr ""
|
|
1309 |
"Захистіть свій сайт WordPress - надавайте та забороняйте доступ з певних IP-"
|
1310 |
"адрес, імен хостів і т.д."
|
1311 |
|
1312 |
-
#: product_list.php:
|
1313 |
msgid ""
|
1314 |
"Create your personal job board and listing WordPress website. Search jobs, "
|
1315 |
"submit CV/resumes, choose candidates."
|
@@ -1318,7 +1396,7 @@ msgstr ""
|
|
1318 |
"WordPress. Здійснюйте пошук вакансій, подачу резюме/CV кандидата, вибір "
|
1319 |
"кандидатів."
|
1320 |
|
1321 |
-
#: product_list.php:
|
1322 |
msgid ""
|
1323 |
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1324 |
"attempts."
|
@@ -1326,7 +1404,7 @@ msgstr ""
|
|
1326 |
"Захищайте свій сайт WordPress від брутфорс-атак. Обмежуйте кількість спроб "
|
1327 |
"введення логіна."
|
1328 |
|
1329 |
-
#: product_list.php:
|
1330 |
msgid ""
|
1331 |
"Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
|
1332 |
"5 plugins included – profile, insider, etc."
|
@@ -1334,7 +1412,7 @@ msgstr ""
|
|
1334 |
"Додавайте кнопки LinkedIn \"Поділитися\" та \"Відстежувати\" до постів, "
|
1335 |
"сторінок і віджетів WordPress. 5 плагінів включено - Профіль, Інсайдер і т.д."
|
1336 |
|
1337 |
-
#: product_list.php:
|
1338 |
msgid ""
|
1339 |
"Translate WordPress website content to other languages manually. Create "
|
1340 |
"multilingual pages, posts, widgets, menus, etc."
|
@@ -1342,7 +1420,7 @@ msgstr ""
|
|
1342 |
"Перекладайте вміст сайту WordPress іншими мовами вручну. Створюйте "
|
1343 |
"багатомовні сторінки, пости, віджети, меню і т.д."
|
1344 |
|
1345 |
-
#: product_list.php:
|
1346 |
msgid ""
|
1347 |
"Add customizable pagination to WordPress website. Split long content to "
|
1348 |
"multiple pages for better navigation."
|
@@ -1350,7 +1428,7 @@ msgstr ""
|
|
1350 |
"Додавайте пагінацію з можливістю налаштування на ваш сайт WordPress. "
|
1351 |
"Розбивайте об'ємний контент на декілька сторінок для кращої навігації."
|
1352 |
|
1353 |
-
#: product_list.php:
|
1354 |
msgid ""
|
1355 |
"Generate PDF files and print WordPress posts/pages. Customize document "
|
1356 |
"header/footer styles and appearance."
|
@@ -1358,7 +1436,7 @@ msgstr ""
|
|
1358 |
"Створюйте PDF-файли і друкуйте пости/сторінки сайту WordPress. Налаштовуйте "
|
1359 |
"стилі хедера/футера документа і його зовнішній вигляд."
|
1360 |
|
1361 |
-
#: product_list.php:
|
1362 |
msgid ""
|
1363 |
"Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
|
1364 |
"Profile) to WordPress posts, pages and widgets."
|
@@ -1366,7 +1444,7 @@ msgstr ""
|
|
1366 |
"Додавайте кнопки Pinterest \"Підписатися\", \"Зберегти\" і віджети профілю "
|
1367 |
"(Пін, Дошка, Профіль) до постів, сторінок і віджетів WordPress."
|
1368 |
|
1369 |
-
#: product_list.php:
|
1370 |
msgid ""
|
1371 |
"Create your personal portfolio WordPress website. Manage and showcase past "
|
1372 |
"projects to get more clients."
|
@@ -1374,13 +1452,13 @@ msgstr ""
|
|
1374 |
"Створюйте і додавайте портфоліо на свій сайт WordPress. Керуйте і "
|
1375 |
"демонструйте минулі проекти, щоб залучити більше клієнтів."
|
1376 |
|
1377 |
-
#: product_list.php:
|
1378 |
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1379 |
msgstr ""
|
1380 |
"З легкістю експортуйте пости WordPress в файли формату CSV. Налаштуйте "
|
1381 |
"порядок відображення даних."
|
1382 |
|
1383 |
-
#: product_list.php:
|
1384 |
msgid ""
|
1385 |
"Add extra fields to default WordPress user profile. The easiest way to "
|
1386 |
"create and manage additional custom values."
|
@@ -1388,7 +1466,7 @@ msgstr ""
|
|
1388 |
"Додавайте користувацькі поля у стандартний профіль WordPress. Найпростіший "
|
1389 |
"спосіб створення і управління додатковими полями."
|
1390 |
|
1391 |
-
#: product_list.php:
|
1392 |
msgid ""
|
1393 |
"Add and display HTML advertisement banner on WordPress website. Customize "
|
1394 |
"bar styles and appearance."
|
@@ -1396,7 +1474,7 @@ msgstr ""
|
|
1396 |
"Додавайте відображення банерної HTML реклами на сайті WordPress. Налаштуйте "
|
1397 |
"стилі і зовнішній вигляд банеру."
|
1398 |
|
1399 |
-
#: product_list.php:
|
1400 |
msgid ""
|
1401 |
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1402 |
"widgets."
|
@@ -1404,7 +1482,7 @@ msgstr ""
|
|
1404 |
"Додавайте редаговані цитати та підказки до постів, сторінок і віджетів "
|
1405 |
"WordPress."
|
1406 |
|
1407 |
-
#: product_list.php:
|
1408 |
msgid ""
|
1409 |
"Add rating plugin to your WordPress website to receive feedback from your "
|
1410 |
"customers."
|
@@ -1412,7 +1490,7 @@ msgstr ""
|
|
1412 |
"Додавайте систему оцінювання і рейтингу на ваш сайт WordPress і отримуйте "
|
1413 |
"відгуки від ваших клієнтів."
|
1414 |
|
1415 |
-
#: product_list.php:
|
1416 |
msgid ""
|
1417 |
"Create your personal real estate WordPress website. Sell, rent and buy "
|
1418 |
"properties. Add, search and browse listings easily."
|
@@ -1421,15 +1499,7 @@ msgstr ""
|
|
1421 |
"Продавайте, орендуйте і купуйте нерухомість. Легко додавайте, знаходьте і "
|
1422 |
"переглядайте лістинги."
|
1423 |
|
1424 |
-
#: product_list.php:
|
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."
|
@@ -1437,7 +1507,7 @@ msgstr ""
|
|
1437 |
"Додавайте схожі, обрані, останні та популярні пости на ваш сайт WordPress. "
|
1438 |
"Надавайте своїм читачам контент схожої тематики."
|
1439 |
|
1440 |
-
#: product_list.php:
|
1441 |
msgid ""
|
1442 |
"Send bulk email messages to WordPress users. Custom templates, advanced "
|
1443 |
"settings and detailed reports."
|
@@ -1445,7 +1515,7 @@ msgstr ""
|
|
1445 |
"Здійснюйте масову розсилку листів користувачам WordPress. Користувацькі "
|
1446 |
"шаблони, додаткові налаштування і детальні звіти."
|
1447 |
|
1448 |
-
#: product_list.php:
|
1449 |
msgid ""
|
1450 |
"The best responsive slider plugin for your WordPress website. Create "
|
1451 |
"beautifully animated slides just in a few clicks."
|
@@ -1453,15 +1523,15 @@ msgstr ""
|
|
1453 |
"Найкращий адаптивний слайдер для вашого сайту WordPress. Створюйте красиво "
|
1454 |
"анімовані слайди всього в декілька кліків."
|
1455 |
|
1456 |
-
#: product_list.php:
|
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 на такі поштові
|
1463 |
|
1464 |
-
#: product_list.php:
|
1465 |
msgid ""
|
1466 |
"Add social media buttons and widgets to WordPress posts, pages and widgets. "
|
1467 |
"FB, Twitter, G+1, Pinterest, LinkedIn."
|
@@ -1469,7 +1539,7 @@ msgstr ""
|
|
1469 |
"Додавайте кнопки і віджети соціальних мереж до постів, сторінок і віджетів "
|
1470 |
"WordPress. FB, Twitter, G+1, Pinterest, LinkedIn."
|
1471 |
|
1472 |
-
#: product_list.php:
|
1473 |
msgid ""
|
1474 |
"Add social media login, registration, and commenting to your WordPress "
|
1475 |
"website."
|
@@ -1477,7 +1547,7 @@ msgstr ""
|
|
1477 |
"Додавайте на свій сайт WordPress можливість входу, реєстрації та "
|
1478 |
"коментування з використанням існуючих акаунтів соціальних мереж."
|
1479 |
|
1480 |
-
#: product_list.php:
|
1481 |
msgid ""
|
1482 |
"Add email newsletter sign up form to WordPress posts, pages and widgets. "
|
1483 |
"Collect data and subscribe your users."
|
@@ -1485,7 +1555,7 @@ msgstr ""
|
|
1485 |
"Додавайте форму підписки на розсилку новин у пости, сторінки і віджети "
|
1486 |
"WordPress. Збирайте дані і здійснюйте підписку користувачів."
|
1487 |
|
1488 |
-
#: product_list.php:
|
1489 |
msgid ""
|
1490 |
"Add testimonials and feedbacks from your customers to WordPress website "
|
1491 |
"posts, pages, and widgets."
|
@@ -1493,7 +1563,7 @@ msgstr ""
|
|
1493 |
"Додавайте рекомендації та відгуки ваших клієнтів в пости, сторінки і віджети "
|
1494 |
"сайту WordPress."
|
1495 |
|
1496 |
-
#: product_list.php:
|
1497 |
msgid ""
|
1498 |
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1499 |
"attendance and generate reports."
|
@@ -1501,7 +1571,7 @@ msgstr ""
|
|
1501 |
"Кращий плагін обліку робочого часу на сайті WordPress. Відстежуйте час "
|
1502 |
"роботи співробітників, оптимізуйте графік роботи в офісі і створюйте звіти."
|
1503 |
|
1504 |
-
#: product_list.php:
|
1505 |
msgid ""
|
1506 |
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1507 |
"and pages."
|
@@ -1509,7 +1579,7 @@ msgstr ""
|
|
1509 |
"Додавайте кнопки Твіттера \"Читати\", \"Твітнути\", \"Хештеґ\" і \"Згадати\" "
|
1510 |
"до постів і сторінок WordPress."
|
1511 |
|
1512 |
-
#: product_list.php:
|
1513 |
msgid ""
|
1514 |
"Automatically check and update WordPress website core with all installed "
|
1515 |
"plugins and themes to the latest versions."
|
@@ -1517,7 +1587,7 @@ msgstr ""
|
|
1517 |
"Виконуйте автоматичну перевірку і оновлення ядра WordPress до останніх "
|
1518 |
"версій з усіма встановленими плагінами та темами."
|
1519 |
|
1520 |
-
#: product_list.php:
|
1521 |
msgid ""
|
1522 |
"Powerful user role management plugin for WordPress website. Create, edit, "
|
1523 |
"copy, and delete user roles."
|
@@ -1525,7 +1595,7 @@ msgstr ""
|
|
1525 |
"Ефективний плагін управління ролями користувачів для сайту WordPress. "
|
1526 |
"Створюйте, редагуйте, копіюйте і видаляйте ролі користувачів."
|
1527 |
|
1528 |
-
#: product_list.php:
|
1529 |
msgid ""
|
1530 |
"Display live count of online visitors who are currently browsing your "
|
1531 |
"WordPress website."
|
@@ -1533,7 +1603,7 @@ msgstr ""
|
|
1533 |
"Ведіть підрахунок кількості відвідувачів, які в даний час переглядають ваш "
|
1534 |
"сайт WordPress."
|
1535 |
|
1536 |
-
#: product_list.php:
|
1537 |
msgid ""
|
1538 |
"Backup and export Zendesk Help Center content automatically to your "
|
1539 |
"WordPress website database."
|
@@ -1541,6 +1611,41 @@ 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."
|
@@ -1566,9 +1671,6 @@ msgstr ""
|
|
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 ""
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: bestwebsoft\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-08-28 10:04+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-08-28 10:13+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"
|
18 |
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: bws_functions.php:73 bws_functions.php:191
|
22 |
msgid "requires"
|
23 |
msgstr "потребує"
|
24 |
|
25 |
+
#: bws_functions.php:75
|
26 |
msgid ""
|
27 |
"or higher, that is why it has been deactivated! Please upgrade WordPress and "
|
28 |
"try again."
|
30 |
"чи вище, тому його було деактивовано! Будь ласка оновіть WordPress та "
|
31 |
"спробуйте ще раз."
|
32 |
|
33 |
+
#: bws_functions.php:76
|
34 |
msgid "Back to the WordPress"
|
35 |
msgstr "Повернутися на WordPress на"
|
36 |
|
37 |
+
#: bws_functions.php:78
|
38 |
msgid "Plugins page"
|
39 |
msgstr "Сторінку Плагінів"
|
40 |
|
41 |
+
#: bws_functions.php:92
|
42 |
msgid "Like the plugin?"
|
43 |
msgstr "Сподобався плагін?"
|
44 |
|
45 |
+
#: bws_functions.php:94
|
46 |
msgid "Rate it"
|
47 |
msgstr "Оцінити"
|
48 |
|
49 |
+
#: bws_functions.php:103
|
50 |
msgid "Need help?"
|
51 |
msgstr "Потрібна допомога?"
|
52 |
|
53 |
+
#: bws_functions.php:104 bws_functions.php:911 class-bws-settings.php:1056
|
54 |
msgid "Visit Help Center"
|
55 |
msgstr "Перейти до Help Center"
|
56 |
|
57 |
+
#: bws_functions.php:107
|
58 |
msgid "Want to support the plugin?"
|
59 |
msgstr "Хочете підтримати плагін?"
|
60 |
|
61 |
+
#: bws_functions.php:108 bws_menu.php:553
|
62 |
msgid "Donate"
|
63 |
msgstr "Пожертвувати"
|
64 |
|
65 |
+
#: bws_functions.php:128
|
66 |
msgid "WARNING: Illegal use notification"
|
67 |
msgstr "УВАГА: виявлено несанкціоноване використання плагіну"
|
68 |
|
69 |
+
#: bws_functions.php:128
|
70 |
msgid ""
|
71 |
"You can use one license of the Pro plugin for one domain only. Please check "
|
72 |
+
"and edit your license or domain if necessary using your personal Client "
|
73 |
+
"Area. We strongly recommend you to solve the problem within 24 hours, "
|
74 |
+
"otherwise the Pro plugin will be deactivated."
|
75 |
msgstr ""
|
76 |
"Ви можете використовувати одну ліцензію Про-плагіну для одного домену. Будь "
|
77 |
"ласка, переконайтесь, що інформацію щодо ліцензії і домену введено вірно, у "
|
78 |
"вкладці Client Area. Ми настійливо рекомендуємо Вам вирішити це питання "
|
79 |
"протягом 24 годин, інакше плагін буде деактивовано."
|
80 |
|
81 |
+
#: bws_functions.php:128 bws_functions.php:340 class-bws-settings.php:144
|
|
|
82 |
msgid "Learn More"
|
83 |
msgstr "Дізнатись більше"
|
84 |
|
85 |
+
#: bws_functions.php:145
|
86 |
msgid ""
|
87 |
"Notice: Your Pro Trial license has expired. To continue using the plugin, "
|
88 |
"you should buy a Pro license"
|
90 |
"Увага: Термін дії Pro Trial версії плагіну скінчився. Щоб продовжити "
|
91 |
"користуватись плагіном, будь ласка, придбайте Pro ліцензію"
|
92 |
|
93 |
+
#: bws_functions.php:147
|
94 |
msgid ""
|
95 |
"Your license has expired. To continue getting top-priority support and "
|
96 |
"plugin updates, you should extend it."
|
98 |
"Строк вашої ліцензії витік. Якщо ви хочете отримувати першочергову технічну "
|
99 |
"підтримку та оновлювати плагін у майбутньому, вам слід подовжити ліцензію."
|
100 |
|
101 |
+
#: bws_functions.php:147 bws_functions.php:383 deprecated.php:584
|
102 |
msgid "Learn more"
|
103 |
msgstr "Дізнатись більше"
|
104 |
|
105 |
+
#: bws_functions.php:165
|
106 |
#, php-format
|
107 |
msgid "Notice: You are using the Pro Trial license of %s plugin."
|
108 |
msgstr "Увага: Ви використовуєте тріал Pro версію плагіну %s."
|
109 |
|
110 |
+
#: bws_functions.php:167
|
111 |
msgid "Notice: You are using the Pro Trial license of plugin."
|
112 |
msgstr "Увага: Ви використовуєте тріал Pro версію плагіну."
|
113 |
|
114 |
+
#: bws_functions.php:170
|
115 |
msgid "The Pro Trial license will expire on"
|
116 |
msgstr "Trial період Pro версії плагіну закінчується"
|
117 |
|
118 |
+
#: bws_functions.php:193
|
119 |
msgid ""
|
120 |
"or higher! We do not guarantee that our plugin will work correctly. Please "
|
121 |
"upgrade to WordPress latest version."
|
123 |
"чи вище! Ми не гарантуємо, що наш плагін буде працювати правильно. Будь "
|
124 |
"ласка, оновіть WordPress до останньої версії."
|
125 |
|
126 |
+
#: bws_functions.php:208
|
127 |
#, php-format
|
128 |
msgid "Thank you for installing %s plugin!"
|
129 |
msgstr "Дякуємо, що встановили %s плагін!"
|
130 |
|
131 |
+
#: bws_functions.php:209
|
132 |
msgid "Let's get started"
|
133 |
msgstr "Розпочнемо"
|
134 |
|
135 |
+
#: bws_functions.php:210 bws_functions.php:243 bws_menu.php:557
|
136 |
#: bws_menu.php:559
|
137 |
msgid "Settings"
|
138 |
msgstr "Налаштування"
|
139 |
|
140 |
+
#: bws_functions.php:212 bws_menu.php:328 class-bws-settings.php:745
|
141 |
+
#: class-bws-settings.php:1058 class-bws-settings.php:1068 deprecated.php:694
|
142 |
msgid "or"
|
143 |
msgstr "або"
|
144 |
|
145 |
+
#: bws_functions.php:213 bws_functions.php:245
|
146 |
msgid "Add New"
|
147 |
msgstr "Додати"
|
148 |
|
149 |
+
#: bws_functions.php:217 bws_functions.php:227 bws_functions.php:331
|
150 |
+
#: bws_functions.php:379 bws_functions.php:481
|
151 |
msgid "Close notice"
|
152 |
msgstr "Закрити"
|
153 |
|
154 |
+
#: bws_functions.php:232
|
155 |
msgid "Thank you for installing plugins by BestWebSoft!"
|
156 |
msgstr "Дякуємо, що встановили плагіни від BestWebSoft!"
|
157 |
|
158 |
+
#: bws_functions.php:234
|
159 |
msgid "More Details"
|
160 |
msgstr "Деталі"
|
161 |
|
162 |
+
#: bws_functions.php:235
|
163 |
msgid "Less Details"
|
164 |
msgstr "Сховати Деталі"
|
165 |
|
166 |
+
#: bws_functions.php:263
|
167 |
msgid "Deprecated function(-s) is used on the site here:"
|
168 |
msgstr "Застарілі функціі використовується на сайті тут:"
|
169 |
|
170 |
+
#: bws_functions.php:277
|
171 |
msgid ""
|
172 |
"This function(-s) will be removed over time. Please update the product(-s)."
|
173 |
msgstr ""
|
174 |
"Ці функції буде видалено через деякий час. Будь ласка, поновіть продукт."
|
175 |
|
176 |
+
#: bws_functions.php:336
|
177 |
msgid "It’s time to upgrade your"
|
178 |
msgstr "Настав час модернізувати Ваш"
|
179 |
|
180 |
+
#: bws_functions.php:336
|
181 |
msgid "to"
|
182 |
msgstr "до"
|
183 |
|
184 |
+
#: bws_functions.php:336
|
185 |
msgid "version!"
|
186 |
msgstr "версії!"
|
187 |
|
188 |
+
#: bws_functions.php:337
|
189 |
msgid "Extend standard plugin functionality with new great options."
|
190 |
msgstr "Розширює можливості стандартного функціоналу плагіна."
|
191 |
|
192 |
+
#: bws_functions.php:383
|
193 |
#, php-format
|
194 |
msgid ""
|
195 |
"Your license key for %s expires on %s and you won't be granted TOP-PRIORITY "
|
198 |
"Ваш ліцензійний ключ для %s витікає %s та ви більше не будете отримувати "
|
199 |
"першочергову технічну підтримку та оновлення."
|
200 |
|
201 |
+
#: bws_functions.php:476
|
202 |
#, php-format
|
203 |
msgid "Thank you for choosing %s plugin!"
|
204 |
msgstr "Дякую за вибір плагіна %s!"
|
205 |
|
206 |
+
#: bws_functions.php:477
|
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!"
|
212 |
"функціоналу плагіна, будь ласка, надсилайте їх нам! Ми завжди відкриті для "
|
213 |
"нових ідей!"
|
214 |
|
215 |
+
#: bws_functions.php:478
|
216 |
msgid "Suggest a Feature"
|
217 |
msgstr "Запропонувати функціонал"
|
218 |
|
219 |
+
#: bws_functions.php:494 class-bws-settings.php:538 class-bws-settings.php:541
|
220 |
+
#: class-bws-settings.php:593 class-bws-settings.php:596
|
221 |
msgid "Notice"
|
222 |
msgstr "Зауважте"
|
223 |
|
224 |
+
#: bws_functions.php:494
|
225 |
msgid "The plugin's settings have been changed."
|
226 |
msgstr "Налаштування плагіну змінено."
|
227 |
|
228 |
+
#: bws_functions.php:495 class-bws-settings.php:183 class-bws-settings.php:203
|
229 |
#: deprecated.php:640
|
230 |
msgid "Save Changes"
|
231 |
msgstr "Зберегти зміни"
|
232 |
|
233 |
+
#: bws_functions.php:509
|
234 |
msgid ""
|
235 |
"You can always look at premium options by checking the \"Pro Options\" in "
|
236 |
"the \"Misc\" tab."
|
238 |
"Ви завжди можете подивитися на преміум опції, натиснувши на кнопку \"Pro "
|
239 |
"опції\" на вкладці \"Різне\"."
|
240 |
|
241 |
+
#: bws_functions.php:647
|
242 |
msgid "Add BWS Shortcode"
|
243 |
msgstr "Додати BWS шорткод"
|
244 |
|
245 |
+
#: bws_functions.php:648
|
246 |
msgid "Add BWS Plugins Shortcode"
|
247 |
msgstr "Додати шорткод BWS плагіну"
|
248 |
|
249 |
+
#: bws_functions.php:667
|
250 |
msgid "Add shortcode"
|
251 |
msgstr "Додати шорткод"
|
252 |
|
253 |
+
#: bws_functions.php:667
|
254 |
msgid "Add BestWebSoft plugins' shortcodes using this button."
|
255 |
msgstr "Додайте шорткоди BestWebSoft плагінів за допомогою цієї кнопки."
|
256 |
|
257 |
+
#: bws_functions.php:723
|
258 |
msgid "Close"
|
259 |
msgstr "Закрити"
|
260 |
|
261 |
+
#: bws_functions.php:815
|
262 |
msgid "Are you sure you want to restore default settings?"
|
263 |
msgstr "Ви впевнені, що хочете скинути налаштування плагіну до стандартних?"
|
264 |
|
265 |
+
#: bws_functions.php:818
|
266 |
msgid "Yes, restore all settings"
|
267 |
msgstr "Так, скинути налаштування"
|
268 |
|
269 |
+
#: bws_functions.php:819
|
270 |
msgid "No, go back to the settings page"
|
271 |
msgstr "Ні, повернутись назад на сторінку налаштувань"
|
272 |
|
273 |
+
#: bws_functions.php:861
|
274 |
msgid "Plugin"
|
275 |
msgstr "Плагін"
|
276 |
|
277 |
+
#: bws_functions.php:870
|
278 |
msgid "Shortcode settings"
|
279 |
msgstr "Налаштування шорткоду"
|
280 |
|
281 |
+
#: bws_functions.php:875
|
282 |
msgid "The shortcode will be inserted"
|
283 |
msgstr "Буде вставлено шорткод"
|
284 |
|
285 |
+
#: bws_functions.php:916
|
|
|
|
|
|
|
|
|
286 |
msgid "FAQ"
|
287 |
msgstr "FAQ"
|
288 |
|
289 |
+
#: bws_functions.php:922
|
290 |
msgid "For more information:"
|
291 |
msgstr "Для отримання додаткової інформації:"
|
292 |
|
293 |
+
#: bws_functions.php:923
|
294 |
msgid "Documentation"
|
295 |
msgstr "Документація"
|
296 |
|
297 |
+
#: bws_functions.php:924
|
298 |
msgid "Video Instructions"
|
299 |
msgstr "Відео інструкції"
|
300 |
|
301 |
+
#: bws_functions.php:925
|
302 |
msgid "Submit a Request"
|
303 |
msgstr "Надіслати запит"
|
304 |
|
305 |
+
#: bws_menu.php:101 class-bws-settings.php:790 deprecated.php:322
|
306 |
msgid "Wrong license key"
|
307 |
msgstr "Невірний ключ ліцензії"
|
308 |
|
309 |
+
#: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
|
310 |
+
#: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
|
311 |
#: deprecated.php:352
|
312 |
msgid ""
|
313 |
"Something went wrong. Please try again later. If the error appears again, "
|
316 |
"Щось не так, спробуйте пізніше. Якщо помилка повториться, будь ласка, "
|
317 |
"повідомте нам"
|
318 |
|
319 |
+
#: bws_menu.php:122 class-bws-settings.php:816 class-bws-settings.php:883
|
320 |
+
#: class-bws-settings.php:919 deprecated.php:133 deprecated.php:199
|
321 |
#: deprecated.php:352
|
322 |
msgid "We are sorry for inconvenience."
|
323 |
msgstr "Просимо вибачення за незручності."
|
324 |
|
325 |
+
#: bws_menu.php:128 class-bws-settings.php:822 class-bws-settings.php:925
|
326 |
#: deprecated.php:139 deprecated.php:358
|
327 |
msgid "Wrong license key."
|
328 |
msgstr "Неправильний ліцензійний ключ."
|
342 |
msgid "Unfortunately, you have exceeded the number of available tries per day."
|
343 |
msgstr "На жаль, ви перевищили кількість допустимих спроб."
|
344 |
|
345 |
+
#: bws_menu.php:134 class-bws-settings.php:931 deprecated.php:364
|
346 |
#, php-format
|
347 |
msgid ""
|
348 |
"Unfortunately, Your license has expired. To continue getting top-priority "
|
351 |
"На жаль, ваша ліцензія скінчилась. Для того, щоб і надалі отримувати "
|
352 |
"першочергову техпідтримку і оновлення, будь ласка, продовжте ліцензію на %s"
|
353 |
|
354 |
+
#: bws_menu.php:136 class-bws-settings.php:933 deprecated.php:366
|
355 |
msgid ""
|
356 |
"Unfortunately, the Pro licence was already installed to this domain. The Pro "
|
357 |
"Trial license can be installed only once."
|
359 |
"На жаль, Pro ліцензія уже використовувалась на цьому домені. Тріал Pro "
|
360 |
"версії плагіну можна використати лише один раз."
|
361 |
|
362 |
+
#: bws_menu.php:142 class-bws-settings.php:837 deprecated.php:153
|
363 |
msgid "The license key is valid."
|
364 |
msgstr "Ліцензійний ключ дійсний."
|
365 |
|
366 |
+
#: bws_menu.php:144 class-bws-settings.php:840 deprecated.php:156
|
367 |
msgid "Your license will expire on"
|
368 |
msgstr "Ваша ліцензія закінчується"
|
369 |
|
371 |
msgid "Congratulations! Pro Membership license is activated successfully."
|
372 |
msgstr "Вітаємо! Pro Membership ліцензія успішно активована."
|
373 |
|
374 |
+
#: bws_menu.php:153 class-bws-settings.php:1005 deprecated.php:435
|
375 |
msgid ""
|
376 |
"Something went wrong. Try again later or upload the plugin manually. We are "
|
377 |
"sorry for inconvenience."
|
545 |
msgid "Themes"
|
546 |
msgstr "Теми"
|
547 |
|
548 |
+
#: bws_menu.php:309 bws_menu.php:313 bws_menu.php:641
|
549 |
msgid "System status"
|
550 |
msgstr "Системна інформація"
|
551 |
|
566 |
msgid "Subscribe to Pro Membership"
|
567 |
msgstr "Підписатися на Pro Membership"
|
568 |
|
569 |
+
#: bws_menu.php:336 bws_menu.php:347 class-bws-settings.php:758
|
570 |
#: deprecated.php:227
|
571 |
msgid "Check license key"
|
572 |
msgstr "Перевірте ліцензійний ключ"
|
576 |
msgstr "Ваш ліцензійний ключ"
|
577 |
|
578 |
#: bws_menu.php:345 bws_menu.php:563 bws_menu.php:572
|
579 |
+
#: class-bws-settings.php:737 deprecated.php:259 deprecated.php:267
|
580 |
#: deprecated.php:629 deprecated.php:700 deprecated.php:709
|
581 |
msgid "Activate"
|
582 |
msgstr "Активувати"
|
619 |
msgstr "Завантаження встановлюючого пакунку з"
|
620 |
|
621 |
#: bws_menu.php:400 bws_menu.php:431 bws_menu.php:442
|
622 |
+
#: class-bws-settings.php:957 class-bws-settings.php:979
|
623 |
+
#: class-bws-settings.php:1001 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 ""
|
634 |
msgid "Installing the plugin"
|
635 |
msgstr "Встановлення плагіну"
|
636 |
|
637 |
+
#: bws_menu.php:417 class-bws-settings.php:969 deprecated.php:399
|
638 |
msgid "Failed to open the zip archive. Please, upload the plugin manually"
|
639 |
msgstr "Помилка при відкритті zip-архіву. Будь ласка, завантажте плагін вручну"
|
640 |
|
641 |
+
#: bws_menu.php:424 class-bws-settings.php:975 deprecated.php:405
|
642 |
msgid ""
|
643 |
"Your server does not support either ZipArchive or Phar. Please, upload the "
|
644 |
"plugin manually"
|
651 |
msgid "The plugin %s is successfully installed."
|
652 |
msgstr "Плагін %s успішно встановлено."
|
653 |
|
654 |
+
#: bws_menu.php:434 class-bws-settings.php:982 deprecated.php:412
|
655 |
msgid "UploadDir is not writable. Please, upload the plugin manually"
|
656 |
msgstr ""
|
657 |
"Немає доступу до теки завантажень WordPress. Будь ласка, завантажте плагін "
|
669 |
msgid "All"
|
670 |
msgstr "Всі"
|
671 |
|
672 |
+
#: bws_menu.php:450 bws_menu.php:630
|
673 |
msgid "Installed"
|
674 |
msgstr "Встановлені"
|
675 |
|
702 |
msgid "Install Now"
|
703 |
msgstr "Встановити"
|
704 |
|
705 |
+
#: bws_menu.php:549 class-bws-settings.php:157 class-bws-settings.php:1065
|
706 |
msgid "Upgrade to Pro"
|
707 |
msgstr "Оновити до Pro"
|
708 |
|
718 |
msgid "Nothing found. Try another criteria."
|
719 |
msgstr "Нічого не знайдено. Спробуйте інші критерії."
|
720 |
|
721 |
+
#: bws_menu.php:621
|
722 |
#, php-format
|
723 |
msgid "By %s"
|
724 |
msgstr "За %s"
|
725 |
|
726 |
+
#: bws_menu.php:628
|
727 |
msgid "Already Installed"
|
728 |
msgstr "Уже встановлено %s"
|
729 |
|
730 |
+
#: bws_menu.php:638
|
731 |
msgid "Browse Free WordPress Themes"
|
732 |
msgstr "Огляд безкоштовних WordPress тем"
|
733 |
|
734 |
+
#: bws_menu.php:647
|
735 |
msgid "Send to support"
|
736 |
msgstr "Відправити службі тех. підтримки"
|
737 |
|
738 |
+
#: bws_menu.php:654
|
739 |
msgid "Send to custom email »"
|
740 |
msgstr "Відправити на електронну адресу »"
|
741 |
|
742 |
+
#: class-bws-settings.php:136
|
743 |
msgid "Information"
|
744 |
msgstr "Інформація"
|
745 |
|
746 |
+
#: class-bws-settings.php:144
|
747 |
msgid "Inactive"
|
748 |
msgstr "Неактивна"
|
749 |
|
750 |
+
#: class-bws-settings.php:152
|
751 |
msgid "Expired"
|
752 |
msgstr "Закінчилась"
|
753 |
|
754 |
+
#: class-bws-settings.php:155
|
755 |
#, php-format
|
756 |
msgid "%s day(-s) left"
|
757 |
msgstr "%s днів залишилося"
|
758 |
|
759 |
+
#: class-bws-settings.php:161
|
760 |
#, php-format
|
761 |
msgid "Expired on %s"
|
762 |
msgstr "Витікає %s"
|
763 |
|
764 |
+
#: class-bws-settings.php:161
|
765 |
msgid "Renew Now"
|
766 |
msgstr "Відновити зараз"
|
767 |
|
768 |
+
#: class-bws-settings.php:163
|
769 |
msgid "Active"
|
770 |
msgstr "Активна"
|
771 |
|
772 |
+
#: class-bws-settings.php:168
|
773 |
msgid "License"
|
774 |
msgstr "Ліцензія"
|
775 |
|
776 |
+
#: class-bws-settings.php:171
|
777 |
msgid "Status"
|
778 |
msgstr "Статус"
|
779 |
|
780 |
+
#: class-bws-settings.php:175
|
781 |
msgid "Version"
|
782 |
msgstr "Версія"
|
783 |
|
784 |
+
#: class-bws-settings.php:285
|
785 |
msgid "All plugin settings were restored."
|
786 |
msgstr "Усі налаштування плагіну відновлені."
|
787 |
|
788 |
+
#: class-bws-settings.php:423
|
789 |
msgid "Custom Code"
|
790 |
msgstr "Користувацький код"
|
791 |
|
792 |
+
#: class-bws-settings.php:427 deprecated.php:497
|
793 |
msgid "You do not have sufficient permissions to edit plugins for this site."
|
794 |
msgstr "У вас недостатньо повноважень для редагування плагінів цього сайту."
|
795 |
|
796 |
+
#: class-bws-settings.php:432 deprecated.php:618
|
797 |
msgid "These styles will be added to the header on all pages of your site."
|
798 |
msgstr "Ці стилі будуть додані в заголовок на всіх сторінках вашого сайту."
|
799 |
|
800 |
+
#: class-bws-settings.php:435 deprecated.php:620
|
801 |
#, php-format
|
802 |
msgid ""
|
803 |
"This PHP code will be hooked to the %s action and will be printed on front "
|
805 |
msgstr ""
|
806 |
"Цей PHP код буде прикріплений до %s action і буде додано лише у фронтенді."
|
807 |
|
808 |
+
#: class-bws-settings.php:438
|
809 |
msgid "These code will be added to the header on all pages of your site."
|
810 |
msgstr "Цей код буде додано в заголовок на всіх сторінках вашого сайту."
|
811 |
|
812 |
+
#: class-bws-settings.php:446 deprecated.php:644
|
813 |
#, php-format
|
814 |
msgid ""
|
815 |
"You need to make this files writable before you can save your changes. See "
|
818 |
"Вам потрібно зробити цей файл доступним для запису, перед тим як ви зможете "
|
819 |
"зберегти свої зміни. Перегляньте %sКодекс%s для додаткової інформації."
|
820 |
|
821 |
+
#: class-bws-settings.php:456 deprecated.php:626
|
822 |
msgid "Browsing"
|
823 |
msgstr "Огляд"
|
824 |
|
825 |
+
#: class-bws-settings.php:461
|
826 |
#, php-format
|
827 |
msgid "Activate custom %s code."
|
828 |
msgstr "Активувати користувацький %s код."
|
829 |
|
830 |
+
#: class-bws-settings.php:469 deprecated.php:633
|
831 |
#, php-format
|
832 |
msgid "Learn more about %s"
|
833 |
msgstr "Дізнатись більше про %s"
|
834 |
|
835 |
+
#: class-bws-settings.php:529
|
836 |
msgid "Miscellaneous Settings"
|
837 |
msgstr "Інші налаштування"
|
838 |
|
839 |
+
#: class-bws-settings.php:538 class-bws-settings.php:593
|
840 |
#, php-format
|
841 |
msgid ""
|
842 |
"It is prohibited to change %s settings on this site in the %s network "
|
845 |
"Мережевими налаштуваннями %s забороняється змінювати налаштування %s на "
|
846 |
"цьому сайті."
|
847 |
|
848 |
+
#: class-bws-settings.php:541 class-bws-settings.php:596
|
849 |
#, php-format
|
850 |
msgid ""
|
851 |
"It is prohibited to view %s settings on this site in the %s network settings."
|
853 |
"Мережевими налаштуваннями %s забороняється дивитися налаштування %s на цьому "
|
854 |
"сайті."
|
855 |
|
856 |
+
#: class-bws-settings.php:550
|
857 |
msgid "Pro Options"
|
858 |
msgstr "Pro опції"
|
859 |
|
860 |
+
#: class-bws-settings.php:554
|
861 |
msgid "Enable to display plugin Pro options."
|
862 |
msgstr "Увімкніть для відображення Pro опцій плагіна."
|
863 |
|
864 |
+
#: class-bws-settings.php:560
|
865 |
msgid "Track Usage"
|
866 |
msgstr "Збирати статистику"
|
867 |
|
868 |
+
#: class-bws-settings.php:564
|
869 |
msgid ""
|
870 |
"Enable to allow tracking plugin usage anonymously in order to make it better."
|
871 |
msgstr ""
|
872 |
"Включити, щоб дозволити анонімно відстежувати використання і зробити плагін "
|
873 |
"краще."
|
874 |
|
875 |
+
#: class-bws-settings.php:569
|
876 |
msgid "Default Settings"
|
877 |
msgstr "Налаштування за замовчуванням"
|
878 |
|
879 |
+
#: class-bws-settings.php:571
|
880 |
msgid "Restore Settings"
|
881 |
msgstr "Відновлення налаштувань"
|
882 |
|
883 |
+
#: class-bws-settings.php:572
|
884 |
msgid "This will restore plugin settings to defaults."
|
885 |
msgstr "Відновити всі налаштування плагіна до налаштувань за замовчуванням."
|
886 |
|
887 |
+
#: class-bws-settings.php:584
|
888 |
msgid "Import / Export"
|
889 |
msgstr "Імпорт / Експорт"
|
890 |
|
891 |
+
#: class-bws-settings.php:700 class-bws-settings.php:733
|
892 |
+
#: class-bws-settings.php:755
|
893 |
msgid "License Key"
|
894 |
msgstr "Ключ ліцензії"
|
895 |
|
896 |
+
#: class-bws-settings.php:723
|
897 |
msgid "Congratulations! Pro license is activated successfully."
|
898 |
msgstr "Вітаємо! Pro ліцензія успішно активована."
|
899 |
|
900 |
+
#: class-bws-settings.php:724
|
901 |
#, php-format
|
902 |
msgid "You will be automatically redirected to the %s in %s seconds."
|
903 |
msgstr "Вас буде автоматично перенаправлено на %s через %s секунд."
|
904 |
|
905 |
+
#: class-bws-settings.php:724
|
906 |
msgid "Settings page"
|
907 |
msgstr "сторінку налаштувань"
|
908 |
|
909 |
+
#: class-bws-settings.php:739
|
910 |
#, php-format
|
911 |
msgid "Enter your license key to activate %s and get premium plugin features."
|
912 |
msgstr ""
|
913 |
"Введіть ліцензійний ключ для активації %s і отримання додаткових можливостей "
|
914 |
"плагіна."
|
915 |
|
916 |
+
#: class-bws-settings.php:742 class-bws-settings.php:929 deprecated.php:362
|
917 |
#: deprecated.php:703
|
918 |
msgid ""
|
919 |
"Unfortunately, you have exceeded the number of available tries per day. "
|
922 |
"На жаль, ви перевищили кількість доступних спроб на день. Будь ласка, "
|
923 |
"завантажте плагін вручну"
|
924 |
|
925 |
+
#: class-bws-settings.php:745 deprecated.php:694
|
926 |
#, php-format
|
927 |
msgid "Start Your Free %s-Day Trial Now"
|
928 |
msgstr "Спробуйте %s-денну Trial версію безкоштовно"
|
929 |
|
930 |
+
#: class-bws-settings.php:760
|
931 |
msgid ""
|
932 |
"If necessary, you can check if the license key is correct or reenter it in "
|
933 |
"the field below."
|
935 |
"При необхідності ви можете перевірити правильність вашого ліцензійного ключа "
|
936 |
"або знову ввести його у полі, що знаходиться нижче."
|
937 |
|
938 |
+
#: class-bws-settings.php:765
|
939 |
msgid "Manage License Settings"
|
940 |
msgstr "Управління налаштуваннями ліцензій"
|
941 |
|
942 |
+
#: class-bws-settings.php:767
|
943 |
msgid "Login to Client Area"
|
944 |
msgstr "Зайти в Client Area"
|
945 |
|
946 |
+
#: class-bws-settings.php:769
|
947 |
msgid ""
|
948 |
"Manage active licenses, download BWS products, and view your payment history "
|
949 |
"using BestWebSoft Client Area."
|
951 |
"Керуй активними ліцензіями, завантажуй BWS продукти, а також переглядай "
|
952 |
"історію платежів за допомогою BestWebSoft Client Area."
|
953 |
|
954 |
+
#: class-bws-settings.php:824 class-bws-settings.php:927 deprecated.php:141
|
955 |
#: deprecated.php:360
|
956 |
msgid "This license key is bound to another site."
|
957 |
msgstr "Цей ліцензійний ключ прив'язано до іншого сайту."
|
958 |
|
959 |
+
#: class-bws-settings.php:826 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."
|
964 |
"Даний ліцензійний ключ дійсний, але строк вашої ліцензії витік. Якщо ви "
|
965 |
"хочете оновлювати наш плагін у майбутньому, вам слід подовжити ліцензію."
|
966 |
|
967 |
+
#: class-bws-settings.php:828 deprecated.php:145
|
968 |
msgid "Unfortunately, you have exceeded the number of available tries."
|
969 |
msgstr "На жаль, ви перевищили кількість допустимих спроб."
|
970 |
|
971 |
+
#: class-bws-settings.php:830 deprecated.php:147
|
972 |
msgid ""
|
973 |
"Unfortunately, the Pro Trial licence was already installed to this domain. "
|
974 |
"The Pro Trial license can be installed only once."
|
976 |
"На жаль, Trial Pro версія плагіну уже встановлювалась на цей домен. Trial "
|
977 |
"Pro версію можна встановлювати лише один раз."
|
978 |
|
979 |
+
#: class-bws-settings.php:835 deprecated.php:151
|
980 |
msgid "The Pro Trial license key is valid."
|
981 |
msgstr "Ключ тріал Pro версії вірний."
|
982 |
|
983 |
+
#: class-bws-settings.php:843 deprecated.php:159 deprecated.php:246
|
984 |
#, php-format
|
985 |
msgid ""
|
986 |
"In order to continue using the plugin it is necessary to buy a %s license."
|
987 |
msgstr "Щоб продовжити користуватись плагіном, потрібно придбати %s ліцензію."
|
988 |
|
989 |
+
#: class-bws-settings.php:1040 deprecated.php:463
|
990 |
msgid "Please, enter Your license key"
|
991 |
msgstr "Будь ласка, впишіть ваш ліцензійний ключ"
|
992 |
|
993 |
+
#: class-bws-settings.php:1052
|
994 |
msgid "Need Help?"
|
995 |
msgstr "Потрібна допомога?"
|
996 |
|
997 |
+
#: class-bws-settings.php:1054
|
998 |
msgid "Read the Instruction"
|
999 |
msgstr "Читати інструкцію"
|
1000 |
|
1001 |
+
#: class-bws-settings.php:1058
|
1002 |
msgid "Watch the Video"
|
1003 |
msgstr "Дивитися відео"
|
1004 |
|
1005 |
+
#: class-bws-settings.php:1069
|
1006 |
msgid "Start Your Free Trial"
|
1007 |
msgstr "Використовувати безкоштовну Trial версію"
|
1008 |
|
1009 |
+
#: deactivation-form.php:26
|
1010 |
+
msgid "Need help? We are ready to answer your questions."
|
1011 |
+
msgstr "Потрібна допомога? Ми готові відповісти на ваші питання."
|
1012 |
+
|
1013 |
+
#: deactivation-form.php:26
|
1014 |
+
msgid "Contact Support"
|
1015 |
+
msgstr "Зв'язатися з тех. підтримкою"
|
1016 |
+
|
1017 |
+
#: deactivation-form.php:31
|
1018 |
+
msgid "The plugin is not working"
|
1019 |
+
msgstr "Плагін не працює"
|
1020 |
+
|
1021 |
+
#: deactivation-form.php:33
|
1022 |
+
msgid "Kindly share what didn't work so we can fix it in future updates..."
|
1023 |
+
msgstr ""
|
1024 |
+
"Будь ласка, повідомте, що не працює, щоб ми змогли виправити це в майбутніх "
|
1025 |
+
"оновленнях..."
|
1026 |
+
|
1027 |
+
#: deactivation-form.php:37
|
1028 |
+
msgid "The plugin didn't work as expected"
|
1029 |
+
msgstr "Плагін не працює, як очікувалося"
|
1030 |
+
|
1031 |
+
#: deactivation-form.php:39
|
1032 |
+
msgid "What did you expect?"
|
1033 |
+
msgstr "Що саме ви очікували?"
|
1034 |
+
|
1035 |
+
#: deactivation-form.php:43
|
1036 |
+
msgid "The plugin suddenly stopped working"
|
1037 |
+
msgstr "Плагін раптово перестав працювати"
|
1038 |
+
|
1039 |
+
#: deactivation-form.php:50
|
1040 |
+
msgid "The plugin broke my site"
|
1041 |
+
msgstr "Плагін зламав мій сайт"
|
1042 |
+
|
1043 |
+
#: deactivation-form.php:57
|
1044 |
+
msgid "I couldn't understand how to get it work"
|
1045 |
+
msgstr "Я не можу зрозуміти, як змусити його працювати"
|
1046 |
+
|
1047 |
+
#: deactivation-form.php:64
|
1048 |
+
msgid "I found a better plugin"
|
1049 |
+
msgstr "Я знайшов кращий плагін"
|
1050 |
+
|
1051 |
+
#: deactivation-form.php:66
|
1052 |
+
msgid "What's the plugin name?"
|
1053 |
+
msgstr "Яка назва плагіна?"
|
1054 |
+
|
1055 |
+
#: deactivation-form.php:70
|
1056 |
+
msgid "The plugin is great, but I need specific feature that you don't support"
|
1057 |
+
msgstr "Плагін чудовий, але мені потрібен певний функціонал, якого у вас немає"
|
1058 |
+
|
1059 |
+
#: deactivation-form.php:72
|
1060 |
+
msgid "What feature?"
|
1061 |
+
msgstr "Який функціонал?"
|
1062 |
+
|
1063 |
+
#: deactivation-form.php:76
|
1064 |
+
msgid "I no longer need the plugin"
|
1065 |
+
msgstr "Плагін мені більше не потрібен"
|
1066 |
+
|
1067 |
+
#: deactivation-form.php:82
|
1068 |
+
msgid "It's a temporary deactivation, I'm just debugging an issue"
|
1069 |
+
msgstr "Це тимчасова деактивація, я просто відлагоджую проблему"
|
1070 |
+
|
1071 |
+
#: deactivation-form.php:88
|
1072 |
+
msgid "Other"
|
1073 |
+
msgstr "Інше"
|
1074 |
+
|
1075 |
+
#: deactivation-form.php:122
|
1076 |
+
msgid "Quick Feedback"
|
1077 |
+
msgstr "Швидкий відгук"
|
1078 |
+
|
1079 |
+
#: deactivation-form.php:123
|
1080 |
+
msgid "If you have a moment, please let us know why you are deactivating"
|
1081 |
+
msgstr ""
|
1082 |
+
"Якщо у вас є час, будь ласка, повідомте нам, чому ви деактивуете плагін"
|
1083 |
+
|
1084 |
+
#: deactivation-form.php:128
|
1085 |
+
msgid "Anonymous feedback"
|
1086 |
+
msgstr "Анонімний відгук"
|
1087 |
+
|
1088 |
+
#: deactivation-form.php:130
|
1089 |
+
msgid "Cancel"
|
1090 |
+
msgstr "Відміна"
|
1091 |
+
|
1092 |
+
#: deactivation-form.php:230
|
1093 |
+
msgid "Processing"
|
1094 |
+
msgstr "Обробка"
|
1095 |
+
|
1096 |
+
#: deactivation-form.php:259
|
1097 |
+
msgid "Submit & Deactivate"
|
1098 |
+
msgstr "Надіслати і деактивувати"
|
1099 |
+
|
1100 |
+
#: deactivation-form.php:276
|
1101 |
+
msgid "Please tell us the reason so we can improve it."
|
1102 |
+
msgstr "Будь ласка, повідомте нам причину, щоб ми могли покращити плагін."
|
1103 |
+
|
1104 |
+
#: deactivation-form.php:344
|
1105 |
+
msgid "Deactivate"
|
1106 |
+
msgstr "Деактивувати"
|
1107 |
+
|
1108 |
#: deprecated.php:93
|
1109 |
msgid "System Status"
|
1110 |
msgstr "Системна інформація"
|
1244 |
msgid "SMM"
|
1245 |
msgstr "СММ"
|
1246 |
|
1247 |
+
#: product_list.php:23
|
1248 |
msgid ""
|
1249 |
"Protect WordPress website forms from spam entries by means of math logic."
|
1250 |
msgstr ""
|
1251 |
"Захищайте форми вашого сайту WordPress від зламування шляхом математичної "
|
1252 |
"логіки."
|
1253 |
|
1254 |
+
#: product_list.php:35
|
1255 |
msgid "Create your personal car rental/booking and reservation website."
|
1256 |
msgstr "Створіть свій власний сайт прокату і резервування автомобілів."
|
1257 |
|
1258 |
+
#: product_list.php:45
|
1259 |
msgid ""
|
1260 |
"Allow customers to reach you using secure contact form plugin any website "
|
1261 |
"must have."
|
1263 |
"Надайте можливість клієнтам здійснювати зв'язок з вами через безпечний "
|
1264 |
"плагін контактної форми, який повинен мати будь-який сайт."
|
1265 |
|
1266 |
+
#: product_list.php:55
|
1267 |
msgid "Add unlimited number of contact forms to WordPress website."
|
1268 |
msgstr "Додавайте необмежену кількість контактних форм на ваш сайт WordPress."
|
1269 |
|
1270 |
+
#: product_list.php:65
|
1271 |
msgid "Save and manage Contact Form messages. Never lose important data."
|
1272 |
msgstr ""
|
1273 |
"Зберігайте і керуйте повідомленнями плагіну Contact Form. Ніколи не "
|
1274 |
"втрачайте важливі дані."
|
1275 |
|
1276 |
+
#: product_list.php:75
|
1277 |
msgid "Add unlimited custom pages to WordPress admin dashboard."
|
1278 |
msgstr ""
|
1279 |
"Додавайте необмежену кількість користувацьких сторінок у панелі "
|
1280 |
"адміністратора WordPress."
|
1281 |
|
1282 |
+
#: product_list.php:82
|
1283 |
msgid "Add custom fields to WordPress website search results."
|
1284 |
msgstr ""
|
1285 |
"Додавайте користувацькі поля у результати пошуку вашого сайту WordPress."
|
1286 |
|
1287 |
+
#: product_list.php:89
|
1288 |
msgid ""
|
1289 |
"Add custom post types and taxonomies to WordPress website search results."
|
1290 |
msgstr ""
|
1291 |
"Додавайте користувацькі типи постів і таксономії у результати пошуку на "
|
1292 |
"вашому сайті WordPress."
|
1293 |
|
1294 |
+
#: product_list.php:99
|
1295 |
msgid "Add PayPal and 2CO donate buttons to receive charity payments."
|
1296 |
msgstr ""
|
1297 |
"Додавайте кнопки PayPal і 2CO, щоб отримувати пожертви та благодійні внески."
|
1298 |
|
1299 |
+
#: product_list.php:106
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1300 |
msgid ""
|
1301 |
"Get latest error log messages to diagnose website problems. Define and fix "
|
1302 |
"issues faster."
|
1304 |
"Отримуйте останні повідомлення з журналу помилок для діагностики проблем "
|
1305 |
"сайту. Швидше виявляйте і усувайте проблеми."
|
1306 |
|
1307 |
+
#: product_list.php:113
|
1308 |
msgid ""
|
1309 |
"Add Facebook Follow, Like, and Share buttons to WordPress posts, pages, and "
|
1310 |
"widgets."
|
1312 |
"Додавайте кнопки Facebook \"Підписатися\", \"Подобається\" та \"Поділитися\" "
|
1313 |
"у пости, сторінки і віджети сайту WordPress."
|
1314 |
|
1315 |
+
#: product_list.php:123
|
1316 |
msgid ""
|
1317 |
"Add beautiful galleries, albums & images to your WordPress website in a few "
|
1318 |
"clicks."
|
1320 |
"Додавайте мальовничі галереї, альбоми і зображення на ваш сайт WordPress "
|
1321 |
"всього в декілька кліків."
|
1322 |
|
1323 |
+
#: product_list.php:133
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1324 |
msgid ""
|
1325 |
"Add Google +1, Share, Follow, Hangout buttons and profile badge to WordPress "
|
1326 |
"posts, pages and widgets."
|
1328 |
"Додавайте кнопки Google \"+1\", \"Поділитися\", \"Підписатися\", \"Hangout\" "
|
1329 |
"і значок профілю до постів, сторінок та віджетів WordPress."
|
1330 |
|
1331 |
+
#: product_list.php:143
|
1332 |
msgid ""
|
1333 |
"Stronger security solution which protects your WordPress website from hacks "
|
1334 |
"and unauthorized login attempts."
|
1336 |
"Найпотужніше рішення безпеки, яке захищає ваш сайт WordPress від зломів та "
|
1337 |
"неавторизованих спроб входу в систему."
|
1338 |
|
1339 |
+
#: product_list.php:153
|
1340 |
msgid ""
|
1341 |
"Add Adsense ads to WordPress website pages, posts, custom posts, search "
|
1342 |
"results, categories, tags, and widgets."
|
1344 |
"Додавайте рекламу сервісу Adsense на сторінки, пости, користувацькі пости, "
|
1345 |
"результати пошуку, категорії, теги і віджети сайту WordPress."
|
1346 |
|
1347 |
+
#: product_list.php:163
|
1348 |
msgid "Add Google Analytics code to WordPress website and track basic stats."
|
1349 |
msgstr ""
|
1350 |
"Додавайте код Google Analytics на ваш сайт WordPress та відстежуйте базову "
|
1351 |
"статистику сайту."
|
1352 |
|
1353 |
+
#: product_list.php:173
|
1354 |
msgid ""
|
1355 |
"Protect WordPress website forms from spam entries with Google Captcha "
|
1356 |
"(reCaptcha)."
|
1358 |
"Захищайте форми вашого сайту WordPress від спаму за допомогою Google Captcha "
|
1359 |
"(reCaptcha)."
|
1360 |
|
1361 |
+
#: product_list.php:183
|
1362 |
msgid "Add customized Google maps to WordPress posts, pages and widgets."
|
1363 |
msgstr ""
|
1364 |
"Додавайте користувацькі карти Google у пости, сторінки та віджети WordPress."
|
1365 |
|
1366 |
+
#: product_list.php:193
|
1367 |
msgid ""
|
1368 |
"Generate and add XML sitemap to WordPress website. Help search engines index "
|
1369 |
"your blog."
|
1371 |
"Створюйте та додавайте файли XML sitemap на ваш сайт WordPress. Допоможіть "
|
1372 |
"пошуковим системам проіндексувати ваш блог."
|
1373 |
|
1374 |
+
#: product_list.php:203
|
1375 |
msgid ""
|
1376 |
"Replace external WordPress website links with Google shortlinks and track "
|
1377 |
"click stats."
|
1379 |
"Замініть зовнішні посилання сайту WordPress на короткі посилання Google і "
|
1380 |
"відстежуйте статистику кліків."
|
1381 |
|
1382 |
+
#: product_list.php:210
|
1383 |
msgid ""
|
1384 |
"Protect WordPress website – allow and deny access for certain IP addresses, "
|
1385 |
"hostnames, etc."
|
1387 |
"Захистіть свій сайт WordPress - надавайте та забороняйте доступ з певних IP-"
|
1388 |
"адрес, імен хостів і т.д."
|
1389 |
|
1390 |
+
#: product_list.php:220
|
1391 |
msgid ""
|
1392 |
"Create your personal job board and listing WordPress website. Search jobs, "
|
1393 |
"submit CV/resumes, choose candidates."
|
1396 |
"WordPress. Здійснюйте пошук вакансій, подачу резюме/CV кандидата, вибір "
|
1397 |
"кандидатів."
|
1398 |
|
1399 |
+
#: product_list.php:227
|
1400 |
msgid ""
|
1401 |
"Protect WordPress website against brute force attacks. Limit rate of login "
|
1402 |
"attempts."
|
1404 |
"Захищайте свій сайт WordPress від брутфорс-атак. Обмежуйте кількість спроб "
|
1405 |
"введення логіна."
|
1406 |
|
1407 |
+
#: product_list.php:237
|
1408 |
msgid ""
|
1409 |
"Add LinkedIn Share and Follow buttons to WordPress posts, pages and widgets. "
|
1410 |
"5 plugins included – profile, insider, etc."
|
1412 |
"Додавайте кнопки LinkedIn \"Поділитися\" та \"Відстежувати\" до постів, "
|
1413 |
"сторінок і віджетів WordPress. 5 плагінів включено - Профіль, Інсайдер і т.д."
|
1414 |
|
1415 |
+
#: product_list.php:247
|
1416 |
msgid ""
|
1417 |
"Translate WordPress website content to other languages manually. Create "
|
1418 |
"multilingual pages, posts, widgets, menus, etc."
|
1420 |
"Перекладайте вміст сайту WordPress іншими мовами вручну. Створюйте "
|
1421 |
"багатомовні сторінки, пости, віджети, меню і т.д."
|
1422 |
|
1423 |
+
#: product_list.php:257
|
1424 |
msgid ""
|
1425 |
"Add customizable pagination to WordPress website. Split long content to "
|
1426 |
"multiple pages for better navigation."
|
1428 |
"Додавайте пагінацію з можливістю налаштування на ваш сайт WordPress. "
|
1429 |
"Розбивайте об'ємний контент на декілька сторінок для кращої навігації."
|
1430 |
|
1431 |
+
#: product_list.php:267
|
1432 |
msgid ""
|
1433 |
"Generate PDF files and print WordPress posts/pages. Customize document "
|
1434 |
"header/footer styles and appearance."
|
1436 |
"Створюйте PDF-файли і друкуйте пости/сторінки сайту WordPress. Налаштовуйте "
|
1437 |
"стилі хедера/футера документа і його зовнішній вигляд."
|
1438 |
|
1439 |
+
#: product_list.php:277
|
1440 |
msgid ""
|
1441 |
"Add Pinterest Follow, Pin It buttons and profile widgets (Pin, Board, "
|
1442 |
"Profile) to WordPress posts, pages and widgets."
|
1444 |
"Додавайте кнопки Pinterest \"Підписатися\", \"Зберегти\" і віджети профілю "
|
1445 |
"(Пін, Дошка, Профіль) до постів, сторінок і віджетів WordPress."
|
1446 |
|
1447 |
+
#: product_list.php:287
|
1448 |
msgid ""
|
1449 |
"Create your personal portfolio WordPress website. Manage and showcase past "
|
1450 |
"projects to get more clients."
|
1452 |
"Створюйте і додавайте портфоліо на свій сайт WordPress. Керуйте і "
|
1453 |
"демонструйте минулі проекти, щоб залучити більше клієнтів."
|
1454 |
|
1455 |
+
#: product_list.php:297
|
1456 |
msgid "Export WordPress posts to CSV file format easily. Configure data order."
|
1457 |
msgstr ""
|
1458 |
"З легкістю експортуйте пости WordPress в файли формату CSV. Налаштуйте "
|
1459 |
"порядок відображення даних."
|
1460 |
|
1461 |
+
#: product_list.php:304
|
1462 |
msgid ""
|
1463 |
"Add extra fields to default WordPress user profile. The easiest way to "
|
1464 |
"create and manage additional custom values."
|
1466 |
"Додавайте користувацькі поля у стандартний профіль WordPress. Найпростіший "
|
1467 |
"спосіб створення і управління додатковими полями."
|
1468 |
|
1469 |
+
#: product_list.php:311
|
1470 |
msgid ""
|
1471 |
"Add and display HTML advertisement banner on WordPress website. Customize "
|
1472 |
"bar styles and appearance."
|
1474 |
"Додавайте відображення банерної HTML реклами на сайті WordPress. Налаштуйте "
|
1475 |
"стилі і зовнішній вигляд банеру."
|
1476 |
|
1477 |
+
#: product_list.php:321
|
1478 |
msgid ""
|
1479 |
"Add customizable quotes and tips blocks to WordPress posts, pages and "
|
1480 |
"widgets."
|
1482 |
"Додавайте редаговані цитати та підказки до постів, сторінок і віджетів "
|
1483 |
"WordPress."
|
1484 |
|
1485 |
+
#: product_list.php:328
|
1486 |
msgid ""
|
1487 |
"Add rating plugin to your WordPress website to receive feedback from your "
|
1488 |
"customers."
|
1490 |
"Додавайте систему оцінювання і рейтингу на ваш сайт WordPress і отримуйте "
|
1491 |
"відгуки від ваших клієнтів."
|
1492 |
|
1493 |
+
#: product_list.php:335
|
1494 |
msgid ""
|
1495 |
"Create your personal real estate WordPress website. Sell, rent and buy "
|
1496 |
"properties. Add, search and browse listings easily."
|
1499 |
"Продавайте, орендуйте і купуйте нерухомість. Легко додавайте, знаходьте і "
|
1500 |
"переглядайте лістинги."
|
1501 |
|
1502 |
+
#: product_list.php:345
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1503 |
msgid ""
|
1504 |
"Add related, featured, latest, and popular posts to your WordPress website. "
|
1505 |
"Connect your blog readers with a relevant content."
|
1507 |
"Додавайте схожі, обрані, останні та популярні пости на ваш сайт WordPress. "
|
1508 |
"Надавайте своїм читачам контент схожої тематики."
|
1509 |
|
1510 |
+
#: product_list.php:352
|
1511 |
msgid ""
|
1512 |
"Send bulk email messages to WordPress users. Custom templates, advanced "
|
1513 |
"settings and detailed reports."
|
1515 |
"Здійснюйте масову розсилку листів користувачам WordPress. Користувацькі "
|
1516 |
"шаблони, додаткові налаштування і детальні звіти."
|
1517 |
|
1518 |
+
#: product_list.php:362
|
1519 |
msgid ""
|
1520 |
"The best responsive slider plugin for your WordPress website. Create "
|
1521 |
"beautifully animated slides just in a few clicks."
|
1523 |
"Найкращий адаптивний слайдер для вашого сайту WordPress. Створюйте красиво "
|
1524 |
"анімовані слайди всього в декілька кліків."
|
1525 |
|
1526 |
+
#: product_list.php:369
|
1527 |
msgid ""
|
1528 |
"Configure SMTP server to receive email messages from WordPress to Gmail, "
|
1529 |
"Yahoo, Hotmail and other services."
|
1530 |
msgstr ""
|
1531 |
"Налаштовуйте SMTP-сервер, щоб отримувати електронні повідомлення з сайту "
|
1532 |
+
"WordPress на такі поштові служби, як Gmail, Yahoo, Hotmail і багато інших."
|
1533 |
|
1534 |
+
#: product_list.php:376
|
1535 |
msgid ""
|
1536 |
"Add social media buttons and widgets to WordPress posts, pages and widgets. "
|
1537 |
"FB, Twitter, G+1, Pinterest, LinkedIn."
|
1539 |
"Додавайте кнопки і віджети соціальних мереж до постів, сторінок і віджетів "
|
1540 |
"WordPress. FB, Twitter, G+1, Pinterest, LinkedIn."
|
1541 |
|
1542 |
+
#: product_list.php:386
|
1543 |
msgid ""
|
1544 |
"Add social media login, registration, and commenting to your WordPress "
|
1545 |
"website."
|
1547 |
"Додавайте на свій сайт WordPress можливість входу, реєстрації та "
|
1548 |
"коментування з використанням існуючих акаунтів соціальних мереж."
|
1549 |
|
1550 |
+
#: product_list.php:393
|
1551 |
msgid ""
|
1552 |
"Add email newsletter sign up form to WordPress posts, pages and widgets. "
|
1553 |
"Collect data and subscribe your users."
|
1555 |
"Додавайте форму підписки на розсилку новин у пости, сторінки і віджети "
|
1556 |
"WordPress. Збирайте дані і здійснюйте підписку користувачів."
|
1557 |
|
1558 |
+
#: product_list.php:403
|
1559 |
msgid ""
|
1560 |
"Add testimonials and feedbacks from your customers to WordPress website "
|
1561 |
"posts, pages, and widgets."
|
1563 |
"Додавайте рекомендації та відгуки ваших клієнтів в пости, сторінки і віджети "
|
1564 |
"сайту WordPress."
|
1565 |
|
1566 |
+
#: product_list.php:410
|
1567 |
msgid ""
|
1568 |
"Best timesheet plugin for WordPress. Track employee time, streamline "
|
1569 |
"attendance and generate reports."
|
1571 |
"Кращий плагін обліку робочого часу на сайті WordPress. Відстежуйте час "
|
1572 |
"роботи співробітників, оптимізуйте графік роботи в офісі і створюйте звіти."
|
1573 |
|
1574 |
+
#: product_list.php:420
|
1575 |
msgid ""
|
1576 |
"Add Twitter Follow, Tweet, Hashtag, and Mention buttons to WordPress posts "
|
1577 |
"and pages."
|
1579 |
"Додавайте кнопки Твіттера \"Читати\", \"Твітнути\", \"Хештеґ\" і \"Згадати\" "
|
1580 |
"до постів і сторінок WordPress."
|
1581 |
|
1582 |
+
#: product_list.php:430
|
1583 |
msgid ""
|
1584 |
"Automatically check and update WordPress website core with all installed "
|
1585 |
"plugins and themes to the latest versions."
|
1587 |
"Виконуйте автоматичну перевірку і оновлення ядра WordPress до останніх "
|
1588 |
"версій з усіма встановленими плагінами та темами."
|
1589 |
|
1590 |
+
#: product_list.php:440
|
1591 |
msgid ""
|
1592 |
"Powerful user role management plugin for WordPress website. Create, edit, "
|
1593 |
"copy, and delete user roles."
|
1595 |
"Ефективний плагін управління ролями користувачів для сайту WordPress. "
|
1596 |
"Створюйте, редагуйте, копіюйте і видаляйте ролі користувачів."
|
1597 |
|
1598 |
+
#: product_list.php:450
|
1599 |
msgid ""
|
1600 |
"Display live count of online visitors who are currently browsing your "
|
1601 |
"WordPress website."
|
1603 |
"Ведіть підрахунок кількості відвідувачів, які в даний час переглядають ваш "
|
1604 |
"сайт WordPress."
|
1605 |
|
1606 |
+
#: product_list.php:460
|
1607 |
msgid ""
|
1608 |
"Backup and export Zendesk Help Center content automatically to your "
|
1609 |
"WordPress website database."
|
1611 |
"Робіть автоматичне резервне копіювання і експорт вмісту Zendesk Help Center "
|
1612 |
"в базу даних вашого сайту WordPress."
|
1613 |
|
1614 |
+
#~ msgid ""
|
1615 |
+
#~ "You can use one license of the Pro plugin for one domain only. Please "
|
1616 |
+
#~ "check and edit your license or domain if necessary using you personal "
|
1617 |
+
#~ "Client Area. We strongly recommend you to solve the problem within 24 "
|
1618 |
+
#~ "hours, otherwise the Pro plugin will be deactivated."
|
1619 |
+
#~ msgstr ""
|
1620 |
+
#~ "Ви можете використовувати одну ліцензію Про-плагіну для одного домену. "
|
1621 |
+
#~ "Будь ласка, переконайтесь, що інформацію щодо ліцензії і домену введено "
|
1622 |
+
#~ "вірно, у вкладці Client Area. Ми настійливо рекомендуємо Вам вирішити це "
|
1623 |
+
#~ "питання протягом 24 годин, інакше плагін буде деактивовано."
|
1624 |
+
|
1625 |
+
#~ msgid "Insert"
|
1626 |
+
#~ msgstr "Вставити"
|
1627 |
+
|
1628 |
+
#~ msgid ""
|
1629 |
+
#~ "Automatically add outgoing email messages to queue instead of sending "
|
1630 |
+
#~ "them immediately."
|
1631 |
+
#~ msgstr ""
|
1632 |
+
#~ "Автоматично формуйте чергу відправки вихідних електронних повідомлень. "
|
1633 |
+
#~ "Задавайте час і пріоритет розсилки."
|
1634 |
+
|
1635 |
+
#~ msgid ""
|
1636 |
+
#~ "Add unlimited gallery categories. Organize images to make the navigation "
|
1637 |
+
#~ "through content easier."
|
1638 |
+
#~ msgstr ""
|
1639 |
+
#~ "Додавайте необмежену кількість категорій галерей. Групуйте зображення, "
|
1640 |
+
#~ "щоб спростити навігацію контентом."
|
1641 |
+
|
1642 |
+
#~ msgid ""
|
1643 |
+
#~ "Attach, un-attach and re-attach media files quickly to WordPress posts "
|
1644 |
+
#~ "and pages."
|
1645 |
+
#~ msgstr ""
|
1646 |
+
#~ "Прикріплюйте, відкріплюйте і повторно прикріплюйте медіа файли до постів "
|
1647 |
+
#~ "і сторінок WordPress."
|
1648 |
+
|
1649 |
#~ msgid ""
|
1650 |
#~ "Add related posts to WordPress website posts or widgets. Link your "
|
1651 |
#~ "readers to relevant content."
|
1671 |
#~ msgid "Utilities"
|
1672 |
#~ msgstr "Утиліти"
|
1673 |
|
|
|
|
|
|
|
1674 |
#~ msgid ""
|
1675 |
#~ "Manage database and file system right from your WordPress admin dashboard."
|
1676 |
#~ msgstr ""
|
google-sitemap-plugin.php
CHANGED
@@ -6,7 +6,7 @@ Description: Generate and add XML sitemap to WordPress website. Help search engi
|
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: google-sitemap-plugin
|
8 |
Domain Path: /languages
|
9 |
-
Version: 3.1.
|
10 |
Author URI: https://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
@@ -242,6 +242,19 @@ if ( ! function_exists( 'gglstmp_get_options_default' ) ) {
|
|
242 |
}
|
243 |
}
|
244 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
245 |
/**
|
246 |
* @since 3.1.0
|
247 |
* Schedules sitemap preparing task for specified blog.
|
@@ -299,7 +312,7 @@ if ( ! function_exists( 'gglstmp_prepare_sitemap' ) ) {
|
|
299 |
|
300 |
$gglstmp_options = get_option( 'gglstmp_options' );
|
301 |
|
302 |
-
$post_types = get_post_types( array( 'public' => true )
|
303 |
/* get all posts */
|
304 |
|
305 |
foreach ( $post_types as $post_type => $post_type_object ) {
|
@@ -356,7 +369,7 @@ if ( ! function_exists( 'gglstmp_prepare_sitemap' ) ) {
|
|
356 |
$frontpage_is_added = false;
|
357 |
|
358 |
if ( ! empty( $post_types ) ) {
|
359 |
-
$excluded_posts_string = $post_types_string =
|
360 |
|
361 |
$post_types_string = "AND p.`post_type` IN ('" . implode( "','", (array)$post_types ) . "')";
|
362 |
|
@@ -1338,6 +1351,8 @@ add_action( 'created_term','gglstmp_schedule_sitemap', 10, 0 );
|
|
1338 |
add_action( 'edited_term','gglstmp_schedule_sitemap', 10, 0 );
|
1339 |
add_action( 'delete_term','gglstmp_schedule_sitemap', 10, 0 );
|
1340 |
|
|
|
|
|
1341 |
add_action( 'wp_head', 'gglstmp_add_verification_code' );
|
1342 |
|
1343 |
add_filter( 'plugin_action_links', 'gglstmp_action_links', 10, 2 );
|
6 |
Author: BestWebSoft
|
7 |
Text Domain: google-sitemap-plugin
|
8 |
Domain Path: /languages
|
9 |
+
Version: 3.1.1
|
10 |
Author URI: https://bestwebsoft.com/
|
11 |
License: GPLv2 or later
|
12 |
*/
|
242 |
}
|
243 |
}
|
244 |
|
245 |
+
/**
|
246 |
+
* @since 3.1.1
|
247 |
+
* Update sitemap on permalink structure update.
|
248 |
+
* @param array $rules array of existing rules. No modification is needed.
|
249 |
+
* @return array $rules
|
250 |
+
*/
|
251 |
+
if ( ! function_exists( 'gglstmp_rewrite_rules' ) ) {
|
252 |
+
function gglstmp_rewrite_rules( $rules ) {
|
253 |
+
gglstmp_schedule_sitemap();
|
254 |
+
return $rules;
|
255 |
+
}
|
256 |
+
}
|
257 |
+
|
258 |
/**
|
259 |
* @since 3.1.0
|
260 |
* Schedules sitemap preparing task for specified blog.
|
312 |
|
313 |
$gglstmp_options = get_option( 'gglstmp_options' );
|
314 |
|
315 |
+
$post_types = get_post_types( array( 'public' => true ) );
|
316 |
/* get all posts */
|
317 |
|
318 |
foreach ( $post_types as $post_type => $post_type_object ) {
|
369 |
$frontpage_is_added = false;
|
370 |
|
371 |
if ( ! empty( $post_types ) ) {
|
372 |
+
$excluded_posts_string = $post_types_string = '';
|
373 |
|
374 |
$post_types_string = "AND p.`post_type` IN ('" . implode( "','", (array)$post_types ) . "')";
|
375 |
|
1351 |
add_action( 'edited_term','gglstmp_schedule_sitemap', 10, 0 );
|
1352 |
add_action( 'delete_term','gglstmp_schedule_sitemap', 10, 0 );
|
1353 |
|
1354 |
+
add_filter( 'rewrite_rules_array','gglstmp_rewrite_rules', PHP_INT_MAX, 1 );
|
1355 |
+
|
1356 |
add_action( 'wp_head', 'gglstmp_add_verification_code' );
|
1357 |
|
1358 |
add_filter( 'plugin_action_links', 'gglstmp_action_links', 10, 2 );
|
languages/google-sitemap-plugin-cs_CZ.mo
CHANGED
Binary file
|
languages/google-sitemap-plugin-cs_CZ.po
CHANGED
@@ -2,18 +2,18 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Sitemap - BWS\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-08-14
|
6 |
-
"PO-Revision-Date: 2017-08-14
|
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
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator: Poedit 1.
|
17 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
@@ -23,7 +23,7 @@ msgid "Google Sitemap Settings"
|
|
23 |
msgstr "Nastavení Google Sitemap"
|
24 |
|
25 |
#: google-sitemap-plugin.php:49 google-sitemap-plugin.php:808
|
26 |
-
#: google-sitemap-plugin.php:
|
27 |
#: includes/class-gglstmp-settings.php:27
|
28 |
msgid "Settings"
|
29 |
msgstr "Nastavení"
|
@@ -38,279 +38,143 @@ msgid "Upgrade to Pro"
|
|
38 |
msgstr "Aktualizovat na Pro"
|
39 |
|
40 |
#: google-sitemap-plugin.php:343
|
41 |
-
#, fuzzy
|
42 |
msgid "Post categories"
|
43 |
-
msgstr "
|
44 |
|
45 |
#: google-sitemap-plugin.php:344
|
46 |
-
#, fuzzy
|
47 |
msgid "Post tags"
|
48 |
-
msgstr "
|
49 |
|
50 |
#: google-sitemap-plugin.php:809
|
51 |
-
#, fuzzy
|
52 |
msgid "Please enable JavaScript in your browser."
|
53 |
msgstr "Prosím, povolte JavaScript ve vašem prohlížeči."
|
54 |
|
55 |
#: google-sitemap-plugin.php:814
|
56 |
msgid "Add New"
|
57 |
-
msgstr ""
|
58 |
|
59 |
-
#: google-sitemap-plugin.php:
|
60 |
-
#: google-sitemap-plugin.php:
|
61 |
msgid "Website"
|
62 |
msgstr "Webová stránka"
|
63 |
|
64 |
-
#: google-sitemap-plugin.php:
|
65 |
-
#: google-sitemap-plugin.php:
|
66 |
-
#: google-sitemap-plugin.php:
|
67 |
msgid "Status"
|
68 |
msgstr "Stav"
|
69 |
|
70 |
-
#: google-sitemap-plugin.php:
|
71 |
-
#: google-sitemap-plugin.php:
|
72 |
msgid "Not added"
|
73 |
msgstr "Nepřidáno"
|
74 |
|
75 |
-
#: google-sitemap-plugin.php:
|
76 |
-
#: google-sitemap-plugin.php:
|
77 |
msgid "Added"
|
78 |
msgstr "Přidáno"
|
79 |
|
80 |
-
#: google-sitemap-plugin.php:
|
81 |
-
#: google-sitemap-plugin.php:
|
82 |
msgid "Verification Status"
|
83 |
msgstr "Stav ověření"
|
84 |
|
85 |
-
#: google-sitemap-plugin.php:
|
86 |
msgid "Verified"
|
87 |
msgstr "Ověřeno"
|
88 |
|
89 |
-
#: google-sitemap-plugin.php:
|
90 |
msgid "Not verified"
|
91 |
msgstr "Nevěřeno"
|
92 |
|
93 |
-
#: google-sitemap-plugin.php:
|
94 |
msgid "Sitemap Status"
|
95 |
msgstr "Stav sitemap.xml"
|
96 |
|
97 |
-
#: google-sitemap-plugin.php:
|
98 |
msgid "Added with errors."
|
99 |
msgstr "Přidáno s chybami."
|
100 |
|
101 |
-
#: google-sitemap-plugin.php:
|
102 |
msgid "View errors in Google Webmaster Tools"
|
103 |
msgstr "Zobrazit chyby v Google Webmaster Tools"
|
104 |
|
105 |
-
#: google-sitemap-plugin.php:
|
106 |
msgid "Sitemap URL"
|
107 |
msgstr "URL sitemap.xml"
|
108 |
|
109 |
-
#: google-sitemap-plugin.php:
|
110 |
-
#: google-sitemap-plugin.php:
|
111 |
-
#: google-sitemap-plugin.php:
|
112 |
-
#: google-sitemap-plugin.php:
|
113 |
#: includes/class-gglstmp-settings.php:379
|
114 |
msgid "Error"
|
115 |
msgstr "Chyba"
|
116 |
|
117 |
-
#: google-sitemap-plugin.php:
|
118 |
msgid "Please check the sitemap file manually."
|
119 |
msgstr "Zkontrolujte soubor sitemap.xml manuálně."
|
120 |
|
121 |
-
#: google-sitemap-plugin.php:
|
122 |
-
#: google-sitemap-plugin.php:
|
123 |
-
#: google-sitemap-plugin.php:
|
124 |
-
#: includes/
|
125 |
msgid "Learn More"
|
126 |
msgstr "Více informací"
|
127 |
|
128 |
-
#: google-sitemap-plugin.php:
|
129 |
-
#: google-sitemap-plugin.php:
|
130 |
-
#: google-sitemap-plugin.php:
|
131 |
msgid "Unexpected error"
|
132 |
msgstr "Neočekávaná chyba"
|
133 |
|
134 |
-
#: google-sitemap-plugin.php:
|
135 |
-
#: google-sitemap-plugin.php:
|
136 |
msgid "Manual verification required."
|
137 |
msgstr "Je vyžadováno ruční ověření."
|
138 |
|
139 |
-
#: google-sitemap-plugin.php:
|
140 |
msgid "Deleted"
|
141 |
msgstr "Odstraněno"
|
142 |
|
143 |
-
#: google-sitemap-plugin.php:
|
144 |
-
#: google-sitemap-plugin.php:
|
145 |
msgid "Verification Code"
|
146 |
msgstr "Ověřovací kód"
|
147 |
|
148 |
-
#: google-sitemap-plugin.php:
|
149 |
msgid "Received and added to the site"
|
150 |
msgstr "Přijato a přidáno na web"
|
151 |
|
152 |
-
#: google-sitemap-plugin.php:
|
153 |
msgid "Received, but has not been added to the site"
|
154 |
msgstr "Přijato avšak nepřidáno na web"
|
155 |
|
156 |
-
#: google-sitemap-plugin.php:
|
157 |
msgid "Please add the sitemap file manually."
|
158 |
msgstr "Přidejte soubor sitemap.xml manuálně."
|
159 |
|
160 |
-
#: google-sitemap-plugin.php:
|
161 |
msgid "Error 404"
|
162 |
msgstr "Chyba 404"
|
163 |
|
164 |
-
#: google-sitemap-plugin.php:
|
165 |
#, php-format
|
166 |
msgid "The sitemap file %s not found."
|
167 |
msgstr "Soubor sitemap.xml %s nebyl nalezen."
|
168 |
|
169 |
-
#: google-sitemap-plugin.php:
|
170 |
msgid "The sitemap file not found."
|
171 |
msgstr "Soubor sitemap.xml nebyl nalezen."
|
172 |
|
173 |
-
#: google-sitemap-plugin.php:
|
174 |
msgid "FAQ"
|
175 |
-
msgstr "
|
176 |
|
177 |
-
#: google-sitemap-plugin.php:
|
178 |
msgid "Support"
|
179 |
msgstr "Podpora"
|
180 |
|
181 |
-
#: includes/pro_banners.php:18
|
182 |
-
#, fuzzy
|
183 |
-
msgid "This option is available in Pro version of plugin"
|
184 |
-
msgstr "Toto nastavení je k dispozici v Pro verzi pluginu"
|
185 |
-
|
186 |
-
#: includes/pro_banners.php:21 includes/class-gglstmp-settings.php:218
|
187 |
-
#: includes/class-gglstmp-settings.php:323
|
188 |
-
msgid "Close"
|
189 |
-
msgstr "Zavřít"
|
190 |
-
|
191 |
-
#: includes/pro_banners.php:42 includes/pro_banners.php:106
|
192 |
-
#: includes/pro_banners.php:185
|
193 |
-
msgid "Change Frequency"
|
194 |
-
msgstr "Frekvence obnovy"
|
195 |
-
|
196 |
-
#: includes/pro_banners.php:45 includes/pro_banners.php:143
|
197 |
-
#: includes/pro_banners.php:151 includes/pro_banners.php:159
|
198 |
-
#: includes/pro_banners.php:167 includes/pro_banners.php:175
|
199 |
-
msgid "Monthly"
|
200 |
-
msgstr "Měsíčně"
|
201 |
-
|
202 |
-
#: includes/pro_banners.php:47
|
203 |
-
msgid ""
|
204 |
-
"This value provides general information to search engines and tell them how "
|
205 |
-
"frequently the page is likely to change. It may not correlate exactly to how "
|
206 |
-
"often they crawl the website."
|
207 |
-
msgstr ""
|
208 |
-
"Tato hodnota poskytuje obecné informace vyhledávačům a řekněte jim, jak "
|
209 |
-
"často se stránka mění. Což nemusí přesně korelovat s tím, jak často "
|
210 |
-
"procházejí web."
|
211 |
-
|
212 |
-
#: includes/pro_banners.php:51
|
213 |
-
msgid "External Sitemap Update Frequency"
|
214 |
-
msgstr ""
|
215 |
-
|
216 |
-
#: includes/pro_banners.php:53
|
217 |
-
msgid "day(-s)"
|
218 |
-
msgstr ""
|
219 |
-
|
220 |
-
#: includes/pro_banners.php:55
|
221 |
-
msgid ""
|
222 |
-
"This option sets how often the external index sitemap files should be "
|
223 |
-
"checked for updates."
|
224 |
-
msgstr ""
|
225 |
-
|
226 |
-
#: includes/pro_banners.php:69
|
227 |
-
msgid "Example of site pages' tree"
|
228 |
-
msgstr "Příklad stromu stránek webu"
|
229 |
-
|
230 |
-
#: includes/pro_banners.php:82
|
231 |
-
msgid "All"
|
232 |
-
msgstr ""
|
233 |
-
|
234 |
-
#: includes/pro_banners.php:83
|
235 |
-
msgid "Enabled"
|
236 |
-
msgstr ""
|
237 |
-
|
238 |
-
#: includes/pro_banners.php:84
|
239 |
-
msgid "Disabled"
|
240 |
-
msgstr ""
|
241 |
-
|
242 |
-
#: includes/pro_banners.php:88
|
243 |
-
msgid "Search"
|
244 |
-
msgstr "Hledání"
|
245 |
-
|
246 |
-
#: includes/pro_banners.php:93
|
247 |
-
msgid "Bulk Actions"
|
248 |
-
msgstr "Hromadné akce"
|
249 |
-
|
250 |
-
#: includes/pro_banners.php:95
|
251 |
-
msgid "Apply"
|
252 |
-
msgstr "Použít"
|
253 |
-
|
254 |
-
#: includes/pro_banners.php:97
|
255 |
-
msgid "items"
|
256 |
-
msgstr ""
|
257 |
-
|
258 |
-
#: includes/pro_banners.php:105 includes/pro_banners.php:184
|
259 |
-
msgid "Priority"
|
260 |
-
msgstr "Priorita"
|
261 |
-
|
262 |
-
#: includes/pro_banners.php:107 includes/pro_banners.php:186
|
263 |
-
msgid "Last Changed"
|
264 |
-
msgstr "Poslední změna"
|
265 |
-
|
266 |
-
#: includes/pro_banners.php:116
|
267 |
-
msgid "Please note"
|
268 |
-
msgstr "Upozorňujeme"
|
269 |
-
|
270 |
-
#: includes/pro_banners.php:117
|
271 |
-
#, fuzzy
|
272 |
-
msgid ""
|
273 |
-
"All URLs listed in the sitemap.xml must use the same protocol (HTTP or "
|
274 |
-
"HTTPS) and must be located on the same host as the sitemap.xml. For more "
|
275 |
-
"info see"
|
276 |
-
msgstr ""
|
277 |
-
"Všechny URL adresy uvedené v sitemap.xml musí používat stejný protokol (HTTP "
|
278 |
-
"nebo HTTPS) a nacházet se na stejném hostu jako sitemap.xml. Pro více "
|
279 |
-
"informací viz"
|
280 |
-
|
281 |
-
#: includes/pro_banners.php:117
|
282 |
-
msgid "here"
|
283 |
-
msgstr "zde"
|
284 |
-
|
285 |
-
#: includes/pro_banners.php:124
|
286 |
-
msgid "Always"
|
287 |
-
msgstr "Vždy"
|
288 |
-
|
289 |
-
#: includes/pro_banners.php:128
|
290 |
-
msgid "Save"
|
291 |
-
msgstr "Uložit"
|
292 |
-
|
293 |
-
#: includes/pro_banners.php:136
|
294 |
-
msgid "Edit"
|
295 |
-
msgstr ""
|
296 |
-
|
297 |
-
#: includes/pro_banners.php:137
|
298 |
-
msgid "Disable"
|
299 |
-
msgstr ""
|
300 |
-
|
301 |
-
#: includes/pro_banners.php:138 includes/class-gglstmp-settings.php:253
|
302 |
-
msgid "Delete"
|
303 |
-
msgstr "Smazat"
|
304 |
-
|
305 |
-
#: includes/pro_banners.php:141
|
306 |
-
msgid "Yes"
|
307 |
-
msgstr ""
|
308 |
-
|
309 |
-
#: includes/pro_banners.php:149 includes/pro_banners.php:157
|
310 |
-
#: includes/pro_banners.php:165 includes/pro_banners.php:173
|
311 |
-
msgid "No"
|
312 |
-
msgstr ""
|
313 |
-
|
314 |
#: includes/class-gglstmp-settings.php:28
|
315 |
msgid "Structure"
|
316 |
msgstr "Struktura"
|
@@ -327,29 +191,11 @@ msgstr "Licenční klíč"
|
|
327 |
msgid "Settings saved."
|
328 |
msgstr "Nastavení uloženo."
|
329 |
|
330 |
-
#: includes/class-gglstmp-settings.php:167
|
331 |
-
#, fuzzy, php-format
|
332 |
-
msgctxt "%robots.txt file link%"
|
333 |
-
msgid "Enable to add a sitemap file path to the %s file."
|
334 |
-
msgstr "Přidat cestu k souboru sitemap.xml do souboru %s."
|
335 |
-
|
336 |
-
#: includes/class-gglstmp-settings.php:172
|
337 |
-
#, php-format
|
338 |
-
msgctxt "%reading settings page link%"
|
339 |
-
msgid "\"Search Engine Visibility\" option have to be unmarked on the %s."
|
340 |
-
msgstr ""
|
341 |
-
|
342 |
-
#: includes/class-gglstmp-settings.php:176
|
343 |
-
#, fuzzy
|
344 |
-
msgctxt "...on the reading settings page."
|
345 |
-
msgid "Reading Settings page"
|
346 |
-
msgstr "Nastavení uloženo"
|
347 |
-
|
348 |
#: includes/class-gglstmp-settings.php:180
|
349 |
msgid ""
|
350 |
"Also, please add the following code to the beginning of your \".htaccess\" "
|
351 |
"file:"
|
352 |
-
msgstr ""
|
353 |
|
354 |
#: includes/class-gglstmp-settings.php:194
|
355 |
msgid "This option will be applied to all websites in the network."
|
@@ -377,24 +223,32 @@ msgstr "Povolte přístup ke XML souborům pomocí %s pluginu."
|
|
377 |
msgid "The following string will be added to your .htaccess file"
|
378 |
msgstr "Následující řetězec bude přidán do vašeho .htaccess souboru"
|
379 |
|
|
|
|
|
|
|
|
|
|
|
380 |
#: includes/class-gglstmp-settings.php:229
|
381 |
msgid "URLs Limit"
|
382 |
-
msgstr ""
|
383 |
|
384 |
#: includes/class-gglstmp-settings.php:233
|
385 |
msgid ""
|
386 |
"A sitemap file can't contain more than 50,000 URLs and must be no larger "
|
387 |
"than 50 MB uncompressed."
|
388 |
msgstr ""
|
|
|
|
|
389 |
|
390 |
#: includes/class-gglstmp-settings.php:234
|
391 |
msgid "Decrease the limit if your sitemap exceeds file size limit."
|
392 |
msgstr ""
|
|
|
393 |
|
394 |
#: includes/class-gglstmp-settings.php:235
|
395 |
msgid ""
|
396 |
"When the limit is reached, the sitemap will be splitted into multiple files."
|
397 |
-
msgstr ""
|
398 |
|
399 |
#: includes/class-gglstmp-settings.php:240
|
400 |
msgid "Google Webmaster Tools"
|
@@ -420,6 +274,10 @@ msgstr "Spravovat web s Google Webmaster Tools"
|
|
420 |
msgid "Add"
|
421 |
msgstr "Přidat"
|
422 |
|
|
|
|
|
|
|
|
|
423 |
#: includes/class-gglstmp-settings.php:254
|
424 |
msgid "Get Info"
|
425 |
msgstr "Získat informace"
|
@@ -482,13 +340,15 @@ msgstr "Do souboru sitemap.xml přidat taxonomie."
|
|
482 |
|
483 |
#: includes/class-gglstmp-settings.php:370
|
484 |
msgid "Note"
|
485 |
-
msgstr ""
|
486 |
|
487 |
#: includes/class-gglstmp-settings.php:370
|
488 |
msgid ""
|
489 |
"Another plugin is providing Google Client functionality and may interrupt "
|
490 |
"proper plugin work."
|
491 |
msgstr ""
|
|
|
|
|
492 |
|
493 |
#: includes/class-gglstmp-settings.php:380
|
494 |
#, php-format
|
@@ -510,6 +370,133 @@ msgstr "%s je v kořenovém adresáři webu."
|
|
510 |
msgid "The Sitemap file"
|
511 |
msgstr "Soubor sitemap.xml"
|
512 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
513 |
#~ msgid "Cannot edit \"robots.txt\". Check your permissions"
|
514 |
#~ msgstr "Nelze upravit \"robots.txt\". Prosím, zkontrolujte oprávnění"
|
515 |
|
@@ -520,6 +507,9 @@ msgstr "Soubor sitemap.xml"
|
|
520 |
#~ "Vzhledem k tomu, že používáte multisite, plugin neumožňuje přidat soubor "
|
521 |
#~ "sitemap.xml do %s."
|
522 |
|
|
|
|
|
|
|
523 |
#~ msgid "Cannot edit \"robot.txt\". Check your permissions"
|
524 |
#~ msgstr "Nelze upravit \"robot.txt\". Prosím, zkontrolujte oprávnění"
|
525 |
|
@@ -527,6 +517,20 @@ msgstr "Soubor sitemap.xml"
|
|
527 |
#~ msgstr ""
|
528 |
#~ "Soubor sitemap.xml pro tento web byl odstraněn sítovým administrátorem."
|
529 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
530 |
#~ msgid "Your Sitemap file has been created in the site root directory"
|
531 |
#~ msgstr "Váš soubor sitemap.xml byl vytvořen v kořenovém adresáři webu"
|
532 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Google Sitemap - BWS\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-08-30 14:34+0300\n"
|
6 |
+
"PO-Revision-Date: 2017-08-30 14:34+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\n"
|
14 |
"X-Poedit-Basepath: ..\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
+
"X-Generator: Poedit 1.8.7.1\n"
|
17 |
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
18 |
"X-Poedit-SearchPath-0: .\n"
|
19 |
|
23 |
msgstr "Nastavení Google Sitemap"
|
24 |
|
25 |
#: google-sitemap-plugin.php:49 google-sitemap-plugin.php:808
|
26 |
+
#: google-sitemap-plugin.php:1190 google-sitemap-plugin.php:1203
|
27 |
#: includes/class-gglstmp-settings.php:27
|
28 |
msgid "Settings"
|
29 |
msgstr "Nastavení"
|
38 |
msgstr "Aktualizovat na Pro"
|
39 |
|
40 |
#: google-sitemap-plugin.php:343
|
|
|
41 |
msgid "Post categories"
|
42 |
+
msgstr "Rubriky příspěvků"
|
43 |
|
44 |
#: google-sitemap-plugin.php:344
|
|
|
45 |
msgid "Post tags"
|
46 |
+
msgstr "Štítky příspěvků"
|
47 |
|
48 |
#: google-sitemap-plugin.php:809
|
|
|
49 |
msgid "Please enable JavaScript in your browser."
|
50 |
msgstr "Prosím, povolte JavaScript ve vašem prohlížeči."
|
51 |
|
52 |
#: google-sitemap-plugin.php:814
|
53 |
msgid "Add New"
|
54 |
+
msgstr "Přidat nový"
|
55 |
|
56 |
+
#: google-sitemap-plugin.php:856 google-sitemap-plugin.php:933
|
57 |
+
#: google-sitemap-plugin.php:983
|
58 |
msgid "Website"
|
59 |
msgstr "Webová stránka"
|
60 |
|
61 |
+
#: google-sitemap-plugin.php:867 google-sitemap-plugin.php:871
|
62 |
+
#: google-sitemap-plugin.php:949 google-sitemap-plugin.php:965
|
63 |
+
#: google-sitemap-plugin.php:987 google-sitemap-plugin.php:1001
|
64 |
msgid "Status"
|
65 |
msgstr "Stav"
|
66 |
|
67 |
+
#: google-sitemap-plugin.php:868 google-sitemap-plugin.php:891
|
68 |
+
#: google-sitemap-plugin.php:966
|
69 |
msgid "Not added"
|
70 |
msgstr "Nepřidáno"
|
71 |
|
72 |
+
#: google-sitemap-plugin.php:872 google-sitemap-plugin.php:894
|
73 |
+
#: google-sitemap-plugin.php:988 google-sitemap-plugin.php:1097
|
74 |
msgid "Added"
|
75 |
msgstr "Přidáno"
|
76 |
|
77 |
+
#: google-sitemap-plugin.php:874 google-sitemap-plugin.php:1043
|
78 |
+
#: google-sitemap-plugin.php:1055 google-sitemap-plugin.php:1069
|
79 |
msgid "Verification Status"
|
80 |
msgstr "Stav ověření"
|
81 |
|
82 |
+
#: google-sitemap-plugin.php:876
|
83 |
msgid "Verified"
|
84 |
msgstr "Ověřeno"
|
85 |
|
86 |
+
#: google-sitemap-plugin.php:878
|
87 |
msgid "Not verified"
|
88 |
msgstr "Nevěřeno"
|
89 |
|
90 |
+
#: google-sitemap-plugin.php:886 google-sitemap-plugin.php:1076
|
91 |
msgid "Sitemap Status"
|
92 |
msgstr "Stav sitemap.xml"
|
93 |
|
94 |
+
#: google-sitemap-plugin.php:896
|
95 |
msgid "Added with errors."
|
96 |
msgstr "Přidáno s chybami."
|
97 |
|
98 |
+
#: google-sitemap-plugin.php:896
|
99 |
msgid "View errors in Google Webmaster Tools"
|
100 |
msgstr "Zobrazit chyby v Google Webmaster Tools"
|
101 |
|
102 |
+
#: google-sitemap-plugin.php:899
|
103 |
msgid "Sitemap URL"
|
104 |
msgstr "URL sitemap.xml"
|
105 |
|
106 |
+
#: google-sitemap-plugin.php:902 google-sitemap-plugin.php:918
|
107 |
+
#: google-sitemap-plugin.php:968 google-sitemap-plugin.php:1003
|
108 |
+
#: google-sitemap-plugin.php:1040 google-sitemap-plugin.php:1071
|
109 |
+
#: google-sitemap-plugin.php:1110 google-sitemap-plugin.php:1129
|
110 |
#: includes/class-gglstmp-settings.php:379
|
111 |
msgid "Error"
|
112 |
msgstr "Chyba"
|
113 |
|
114 |
+
#: google-sitemap-plugin.php:902
|
115 |
msgid "Please check the sitemap file manually."
|
116 |
msgstr "Zkontrolujte soubor sitemap.xml manuálně."
|
117 |
|
118 |
+
#: google-sitemap-plugin.php:902 google-sitemap-plugin.php:920
|
119 |
+
#: google-sitemap-plugin.php:1005 google-sitemap-plugin.php:1044
|
120 |
+
#: google-sitemap-plugin.php:1073 google-sitemap-plugin.php:1112
|
121 |
+
#: includes/class-gglstmp-settings.php:233 includes/pro_banners.php:47
|
122 |
msgid "Learn More"
|
123 |
msgstr "Více informací"
|
124 |
|
125 |
+
#: google-sitemap-plugin.php:907 google-sitemap-plugin.php:956
|
126 |
+
#: google-sitemap-plugin.php:991 google-sitemap-plugin.php:1028
|
127 |
+
#: google-sitemap-plugin.php:1059 google-sitemap-plugin.php:1100
|
128 |
msgid "Unexpected error"
|
129 |
msgstr "Neočekávaná chyba"
|
130 |
|
131 |
+
#: google-sitemap-plugin.php:920 google-sitemap-plugin.php:1005
|
132 |
+
#: google-sitemap-plugin.php:1073
|
133 |
msgid "Manual verification required."
|
134 |
msgstr "Je vyžadováno ruční ověření."
|
135 |
|
136 |
+
#: google-sitemap-plugin.php:950
|
137 |
msgid "Deleted"
|
138 |
msgstr "Odstraněno"
|
139 |
|
140 |
+
#: google-sitemap-plugin.php:1020 google-sitemap-plugin.php:1023
|
141 |
+
#: google-sitemap-plugin.php:1039
|
142 |
msgid "Verification Code"
|
143 |
msgstr "Ověřovací kód"
|
144 |
|
145 |
+
#: google-sitemap-plugin.php:1021
|
146 |
msgid "Received and added to the site"
|
147 |
msgstr "Přijato a přidáno na web"
|
148 |
|
149 |
+
#: google-sitemap-plugin.php:1024
|
150 |
msgid "Received, but has not been added to the site"
|
151 |
msgstr "Přijato avšak nepřidáno na web"
|
152 |
|
153 |
+
#: google-sitemap-plugin.php:1112
|
154 |
msgid "Please add the sitemap file manually."
|
155 |
msgstr "Přidejte soubor sitemap.xml manuálně."
|
156 |
|
157 |
+
#: google-sitemap-plugin.php:1117
|
158 |
msgid "Error 404"
|
159 |
msgstr "Chyba 404"
|
160 |
|
161 |
+
#: google-sitemap-plugin.php:1119
|
162 |
#, php-format
|
163 |
msgid "The sitemap file %s not found."
|
164 |
msgstr "Soubor sitemap.xml %s nebyl nalezen."
|
165 |
|
166 |
+
#: google-sitemap-plugin.php:1129
|
167 |
msgid "The sitemap file not found."
|
168 |
msgstr "Soubor sitemap.xml nebyl nalezen."
|
169 |
|
170 |
+
#: google-sitemap-plugin.php:1204
|
171 |
msgid "FAQ"
|
172 |
+
msgstr "Časté dotazy (FAQ)"
|
173 |
|
174 |
+
#: google-sitemap-plugin.php:1205
|
175 |
msgid "Support"
|
176 |
msgstr "Podpora"
|
177 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
178 |
#: includes/class-gglstmp-settings.php:28
|
179 |
msgid "Structure"
|
180 |
msgstr "Struktura"
|
191 |
msgid "Settings saved."
|
192 |
msgstr "Nastavení uloženo."
|
193 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
194 |
#: includes/class-gglstmp-settings.php:180
|
195 |
msgid ""
|
196 |
"Also, please add the following code to the beginning of your \".htaccess\" "
|
197 |
"file:"
|
198 |
+
msgstr "Také přidejte následující kód na začátek souboru \".htaccess\":"
|
199 |
|
200 |
#: includes/class-gglstmp-settings.php:194
|
201 |
msgid "This option will be applied to all websites in the network."
|
223 |
msgid "The following string will be added to your .htaccess file"
|
224 |
msgstr "Následující řetězec bude přidán do vašeho .htaccess souboru"
|
225 |
|
226 |
+
#: includes/class-gglstmp-settings.php:218
|
227 |
+
#: includes/class-gglstmp-settings.php:323 includes/pro_banners.php:21
|
228 |
+
msgid "Close"
|
229 |
+
msgstr "Zavřít"
|
230 |
+
|
231 |
#: includes/class-gglstmp-settings.php:229
|
232 |
msgid "URLs Limit"
|
233 |
+
msgstr "Limit URL adres"
|
234 |
|
235 |
#: includes/class-gglstmp-settings.php:233
|
236 |
msgid ""
|
237 |
"A sitemap file can't contain more than 50,000 URLs and must be no larger "
|
238 |
"than 50 MB uncompressed."
|
239 |
msgstr ""
|
240 |
+
"Soubor sitemap.xml nesmí obsahovat více než 50 000 URL adres a v "
|
241 |
+
"nekomprimované podobě nesmí být větší než 50 MB."
|
242 |
|
243 |
#: includes/class-gglstmp-settings.php:234
|
244 |
msgid "Decrease the limit if your sitemap exceeds file size limit."
|
245 |
msgstr ""
|
246 |
+
"Snižte limit, pokud váš soubor sitemap.xml překročí limit velikosti souboru."
|
247 |
|
248 |
#: includes/class-gglstmp-settings.php:235
|
249 |
msgid ""
|
250 |
"When the limit is reached, the sitemap will be splitted into multiple files."
|
251 |
+
msgstr "Po dosažení limitu bude soubor sitemap.xml rozdělen na více souborů."
|
252 |
|
253 |
#: includes/class-gglstmp-settings.php:240
|
254 |
msgid "Google Webmaster Tools"
|
274 |
msgid "Add"
|
275 |
msgstr "Přidat"
|
276 |
|
277 |
+
#: includes/class-gglstmp-settings.php:253 includes/pro_banners.php:138
|
278 |
+
msgid "Delete"
|
279 |
+
msgstr "Smazat"
|
280 |
+
|
281 |
#: includes/class-gglstmp-settings.php:254
|
282 |
msgid "Get Info"
|
283 |
msgstr "Získat informace"
|
340 |
|
341 |
#: includes/class-gglstmp-settings.php:370
|
342 |
msgid "Note"
|
343 |
+
msgstr "Poznámka"
|
344 |
|
345 |
#: includes/class-gglstmp-settings.php:370
|
346 |
msgid ""
|
347 |
"Another plugin is providing Google Client functionality and may interrupt "
|
348 |
"proper plugin work."
|
349 |
msgstr ""
|
350 |
+
"Nějaký jiný plugin poskytuje funkce Google clienta a může narušit správnou "
|
351 |
+
"funkci pluginu."
|
352 |
|
353 |
#: includes/class-gglstmp-settings.php:380
|
354 |
#, php-format
|
370 |
msgid "The Sitemap file"
|
371 |
msgstr "Soubor sitemap.xml"
|
372 |
|
373 |
+
#: includes/pro_banners.php:18
|
374 |
+
msgid "This option is available in Pro version of plugin"
|
375 |
+
msgstr "Toto nastavení je k dispozici v Pro verzi pluginu"
|
376 |
+
|
377 |
+
#: includes/pro_banners.php:42 includes/pro_banners.php:106
|
378 |
+
#: includes/pro_banners.php:185
|
379 |
+
msgid "Change Frequency"
|
380 |
+
msgstr "Frekvence obnovy"
|
381 |
+
|
382 |
+
#: includes/pro_banners.php:45 includes/pro_banners.php:143
|
383 |
+
#: includes/pro_banners.php:151 includes/pro_banners.php:159
|
384 |
+
#: includes/pro_banners.php:167 includes/pro_banners.php:175
|
385 |
+
msgid "Monthly"
|
386 |
+
msgstr "Měsíčně"
|
387 |
+
|
388 |
+
#: includes/pro_banners.php:47
|
389 |
+
msgid ""
|
390 |
+
"This value provides general information to search engines and tell them how "
|
391 |
+
"frequently the page is likely to change. It may not correlate exactly to how "
|
392 |
+
"often they crawl the website."
|
393 |
+
msgstr ""
|
394 |
+
"Tato hodnota poskytuje obecné informace vyhledávačům a řekněte jim, jak "
|
395 |
+
"často se stránka mění. Což nemusí přesně korelovat s tím, jak často "
|
396 |
+
"procházejí web."
|
397 |
+
|
398 |
+
#: includes/pro_banners.php:51
|
399 |
+
msgid "External Sitemap Update Frequency"
|
400 |
+
msgstr "Frekvence aktualizace externího sitemap.xml"
|
401 |
+
|
402 |
+
#: includes/pro_banners.php:53
|
403 |
+
msgid "day(-s)"
|
404 |
+
msgstr "den(y)"
|
405 |
+
|
406 |
+
#: includes/pro_banners.php:55
|
407 |
+
msgid ""
|
408 |
+
"This option sets how often the external index sitemap files should be "
|
409 |
+
"checked for updates."
|
410 |
+
msgstr ""
|
411 |
+
"Tato volba určuje, jak často by měly být aktualizovány soubory externího "
|
412 |
+
"sitemap.xml indexu."
|
413 |
+
|
414 |
+
#: includes/pro_banners.php:69
|
415 |
+
msgid "Example of site pages' tree"
|
416 |
+
msgstr "Příklad stromu stránek webu"
|
417 |
+
|
418 |
+
#: includes/pro_banners.php:82
|
419 |
+
msgid "All"
|
420 |
+
msgstr "Vše"
|
421 |
+
|
422 |
+
#: includes/pro_banners.php:83
|
423 |
+
msgid "Enabled"
|
424 |
+
msgstr "Povolen"
|
425 |
+
|
426 |
+
#: includes/pro_banners.php:84
|
427 |
+
msgid "Disabled"
|
428 |
+
msgstr "Zakázán"
|
429 |
+
|
430 |
+
#: includes/pro_banners.php:88
|
431 |
+
msgid "Search"
|
432 |
+
msgstr "Hledání"
|
433 |
+
|
434 |
+
#: includes/pro_banners.php:93
|
435 |
+
msgid "Bulk Actions"
|
436 |
+
msgstr "Hromadné akce"
|
437 |
+
|
438 |
+
#: includes/pro_banners.php:95
|
439 |
+
msgid "Apply"
|
440 |
+
msgstr "Použít"
|
441 |
+
|
442 |
+
#: includes/pro_banners.php:97
|
443 |
+
msgid "items"
|
444 |
+
msgstr "položky"
|
445 |
+
|
446 |
+
#: includes/pro_banners.php:105 includes/pro_banners.php:184
|
447 |
+
msgid "Priority"
|
448 |
+
msgstr "Priorita"
|
449 |
+
|
450 |
+
#: includes/pro_banners.php:107 includes/pro_banners.php:186
|
451 |
+
msgid "Last Changed"
|
452 |
+
msgstr "Poslední změna"
|
453 |
+
|
454 |
+
#: includes/pro_banners.php:116
|
455 |
+
msgid "Please note"
|
456 |
+
msgstr "Upozorňujeme"
|
457 |
+
|
458 |
+
#: includes/pro_banners.php:117
|
459 |
+
msgid ""
|
460 |
+
"All URLs listed in the sitemap.xml must use the same protocol (HTTP or "
|
461 |
+
"HTTPS) and must be located on the same host as the sitemap.xml. For more "
|
462 |
+
"info see"
|
463 |
+
msgstr ""
|
464 |
+
"Všechny URL adresy uvedené v sitemap.xml musí používat stejný protokol (HTTP "
|
465 |
+
"nebo HTTPS) a nacházet se na stejném hostu jako sitemap.xml. Pro více "
|
466 |
+
"informací viz"
|
467 |
+
|
468 |
+
#: includes/pro_banners.php:117
|
469 |
+
msgid "here"
|
470 |
+
msgstr "zde"
|
471 |
+
|
472 |
+
#: includes/pro_banners.php:124
|
473 |
+
msgid "Always"
|
474 |
+
msgstr "Vždy"
|
475 |
+
|
476 |
+
#: includes/pro_banners.php:128
|
477 |
+
msgid "Save"
|
478 |
+
msgstr "Uložit"
|
479 |
+
|
480 |
+
#: includes/pro_banners.php:136
|
481 |
+
msgid "Edit"
|
482 |
+
msgstr "Upravit"
|
483 |
+
|
484 |
+
#: includes/pro_banners.php:137
|
485 |
+
msgid "Disable"
|
486 |
+
msgstr "Zakázat"
|
487 |
+
|
488 |
+
#: includes/pro_banners.php:141
|
489 |
+
msgid "Yes"
|
490 |
+
msgstr "Ano"
|
491 |
+
|
492 |
+
#: includes/pro_banners.php:149 includes/pro_banners.php:157
|
493 |
+
#: includes/pro_banners.php:165 includes/pro_banners.php:173
|
494 |
+
msgid "No"
|
495 |
+
msgstr "Ne"
|
496 |
+
|
497 |
+
#~ msgid "Please enable JavaScript in Your browser."
|
498 |
+
#~ msgstr "Prosím, povolte JavaScript ve vašem prohlížeči."
|
499 |
+
|
500 |
#~ msgid "Cannot edit \"robots.txt\". Check your permissions"
|
501 |
#~ msgstr "Nelze upravit \"robots.txt\". Prosím, zkontrolujte oprávnění"
|
502 |
|
507 |
#~ "Vzhledem k tomu, že používáte multisite, plugin neumožňuje přidat soubor "
|
508 |
#~ "sitemap.xml do %s."
|
509 |
|
510 |
+
#~ msgid "Enable to add a sitemap file path to the %s file."
|
511 |
+
#~ msgstr "Přidat cestu k souboru sitemap.xml do souboru %s."
|
512 |
+
|
513 |
#~ msgid "Cannot edit \"robot.txt\". Check your permissions"
|
514 |
#~ msgstr "Nelze upravit \"robot.txt\". Prosím, zkontrolujte oprávnění"
|
515 |
|
517 |
#~ msgstr ""
|
518 |
#~ "Soubor sitemap.xml pro tento web byl odstraněn sítovým administrátorem."
|
519 |
|
520 |
+
#~ msgid "This options is available in Pro version of plugin"
|
521 |
+
#~ msgstr "Toto nastavení je k dispozici v Pro verzi pluginu"
|
522 |
+
|
523 |
+
#~ msgid ""
|
524 |
+
#~ "All URLs listed in the sitemap.xml must use the same protocol ( HTTP or "
|
525 |
+
#~ "HTTPS ) and reside on the same host as the sitemap.xml. For more info see"
|
526 |
+
#~ msgstr ""
|
527 |
+
#~ "Všechny URL adresy uvedené v sitemap.xml musí používat stejný protokol "
|
528 |
+
#~ "(HTTP nebo HTTPS) a nacházet se na stejném hostu jako sitemap.xml. Pro "
|
529 |
+
#~ "více informací viz"
|
530 |
+
|
531 |
+
#~ msgid "Settings saved"
|
532 |
+
#~ msgstr "Nastavení uloženo"
|
533 |
+
|
534 |
#~ msgid "Your Sitemap file has been created in the site root directory"
|
535 |
#~ msgstr "Váš soubor sitemap.xml byl vytvořen v kořenovém adresáři webu"
|
536 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://bestwebsoft.com/donate/
|
|
4 |
Tags: add pages to sitemap, add posts to sitemap, add sitemap, google, google sitemap, google sitemap plugin, sitemap file path, update sitemap, google webmaster tools, site map, sitemaps, webmaster tools
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.8.1
|
7 |
-
Stable tag: 3.1.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -30,7 +30,7 @@ https://www.youtube.com/watch?v=CgYXKRXpj_0
|
|
30 |
* Custom post types
|
31 |
* Custom taxonomies
|
32 |
* Add a path to your sitemap file in robots.txt automatically
|
33 |
-
* Set the maximum number of URLs in one sitemap file
|
34 |
* Connect your Google Webmaster Tools account to:
|
35 |
* Add website
|
36 |
* Add sitemap
|
@@ -44,11 +44,11 @@ https://www.youtube.com/watch?v=CgYXKRXpj_0
|
|
44 |
>
|
45 |
> All features from Free version included plus:
|
46 |
>
|
47 |
-
> * Add external sitemap files
|
48 |
> * Exclude certain pages or post types from your sitemap file
|
49 |
> * Set the frequency of
|
50 |
> * Your website content changes for all pages
|
51 |
-
> * External sitemap file update
|
52 |
> * Configure all subsites on the network
|
53 |
> * Add custom URLs to the sitemap file
|
54 |
> * Get answer to your support question within one business day ([Support Policy](https://bestwebsoft.com/support-policy/))
|
@@ -143,6 +143,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
|
|
143 |
|
144 |
== Changelog ==
|
145 |
|
|
|
|
|
|
|
146 |
= V3.1.0 - 16.08.2017 =
|
147 |
* Update : Plugin performance has been optimized.
|
148 |
* NEW : Sitemap file splitting functionality for a large amount of posts has been added.
|
@@ -326,6 +329,9 @@ Please make sure that the problem hasn't been discussed yet on our forum (<https
|
|
326 |
|
327 |
== Upgrade Notice ==
|
328 |
|
|
|
|
|
|
|
329 |
= V3.1.0 =
|
330 |
* Performance optimized.
|
331 |
* New features added.
|
4 |
Tags: add pages to sitemap, add posts to sitemap, add sitemap, google, google sitemap, google sitemap plugin, sitemap file path, update sitemap, google webmaster tools, site map, sitemaps, webmaster tools
|
5 |
Requires at least: 3.9
|
6 |
Tested up to: 4.8.1
|
7 |
+
Stable tag: 3.1.1
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
30 |
* Custom post types
|
31 |
* Custom taxonomies
|
32 |
* Add a path to your sitemap file in robots.txt automatically
|
33 |
+
* Set the maximum number of URLs in one sitemap file
|
34 |
* Connect your Google Webmaster Tools account to:
|
35 |
* Add website
|
36 |
* Add sitemap
|
44 |
>
|
45 |
> All features from Free version included plus:
|
46 |
>
|
47 |
+
> * Add external sitemap files
|
48 |
> * Exclude certain pages or post types from your sitemap file
|
49 |
> * Set the frequency of
|
50 |
> * Your website content changes for all pages
|
51 |
+
> * External sitemap file update
|
52 |
> * Configure all subsites on the network
|
53 |
> * Add custom URLs to the sitemap file
|
54 |
> * Get answer to your support question within one business day ([Support Policy](https://bestwebsoft.com/support-policy/))
|
143 |
|
144 |
== Changelog ==
|
145 |
|
146 |
+
= V3.1.1 - 31.08.2017 =
|
147 |
+
* Update : The Czech language file has been updated.
|
148 |
+
|
149 |
= V3.1.0 - 16.08.2017 =
|
150 |
* Update : Plugin performance has been optimized.
|
151 |
* NEW : Sitemap file splitting functionality for a large amount of posts has been added.
|
329 |
|
330 |
== Upgrade Notice ==
|
331 |
|
332 |
+
= V3.1.1 =
|
333 |
+
* Languages updated.
|
334 |
+
|
335 |
= V3.1.0 =
|
336 |
* Performance optimized.
|
337 |
* New features added.
|