Version Description
(05.06.2017) =
- Fix: Export filters was not generating correct data
- Update: POT file
- Update: Translation for Czech (cs_CZ) language updated (Thanks to Martin)
- Tweak: Do not show confirm notice while exporting subscribers
Download this release
Release Info
Developer | storeapps |
Plugin | Email Subscribers & Newsletters |
Version | 3.2.11 |
Comparing to | |
See all releases |
Code changes from version 3.2.10 to 3.2.11
- changelog.txt +7 -0
- classes/es-register.php +14 -15
- email-subscribers.php +2 -2
- export/export-email-address.php +14 -2
- help/help.php +1 -1
- languages/email-subscribers-cs_CZ.mo +0 -0
- languages/email-subscribers-cs_CZ.po +901 -883
- languages/email-subscribers.pot +87 -78
- readme.txt +17 -3
- subscribers/view-subscriber-export.php +3 -3
- subscribers/view-subscriber.js +2 -4
changelog.txt
CHANGED
@@ -4,6 +4,13 @@ Author : Icegram
|
|
4 |
Author URI : http://www.icegram.com/
|
5 |
License : GPLv3
|
6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7 |
********************************Version 3.2.10************************************************************
|
8 |
|
9 |
* New: Admin can now include user subscribed group name in the Welcome Email (Email Subscribers v3.2.10+)
|
4 |
Author URI : http://www.icegram.com/
|
5 |
License : GPLv3
|
6 |
|
7 |
+
********************************Version 3.2.11************************************************************
|
8 |
+
|
9 |
+
* Fix: Export filters was not generating correct data
|
10 |
+
* Update: POT file
|
11 |
+
* Update: Translation for Czech (cs_CZ) language updated (Thanks to Martin)
|
12 |
+
* Tweak: Do not show confirm notice while exporting subscribers
|
13 |
+
|
14 |
********************************Version 3.2.10************************************************************
|
15 |
|
16 |
* New: Admin can now include user subscribed group name in the Welcome Email (Email Subscribers v3.2.10+)
|
classes/es-register.php
CHANGED
@@ -191,7 +191,6 @@ class es_cls_registerhook {
|
|
191 |
'es_subscriber_new_status' => _x( 'Please select new status for subscribers', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
|
192 |
'es_subscriber_group_update' => _x( 'Do you want to update subscribers group?', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
|
193 |
'es_subscriber_status_update' => _x( 'Do you want to update subscribers status?', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
|
194 |
-
'es_subscriber_export' => _x( 'Do you want to export the emails?', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
|
195 |
'es_subscriber_csv_file' => _x( 'Please select only csv file. Please check official website for csv structure..', 'view-subscriber-enhanced-select', ES_TDOMAIN )
|
196 |
);
|
197 |
wp_localize_script( 'es-view-subscribers', 'es_view_subscriber_notices', $es_select_params );
|
@@ -381,24 +380,24 @@ class es_cls_registerhook {
|
|
381 |
|
382 |
// Compose table
|
383 |
$wpdb->query( "UPDATE {$wpdb->prefix}es_templatetable
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
|
391 |
// Sent Details table
|
392 |
$wpdb->query( "UPDATE {$wpdb->prefix}es_sentdetails
|
393 |
SET es_sent_type =
|
394 |
( CASE
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
( CASE
|
401 |
-
|
402 |
WHEN es_sent_source = 'notification' THEN 'Post Notification'
|
403 |
ELSE es_sent_source
|
404 |
END ) " );
|
@@ -407,10 +406,10 @@ class es_cls_registerhook {
|
|
407 |
$wpdb->query( "UPDATE {$wpdb->prefix}es_deliverreport
|
408 |
SET es_deliver_senttype =
|
409 |
( CASE
|
410 |
-
|
411 |
WHEN es_deliver_senttype = 'Cron Mail' THEN 'Cron'
|
412 |
ELSE es_deliver_senttype
|
413 |
-
|
414 |
|
415 |
update_option( 'current_sa_email_subscribers_db_version', '3.2.7' );
|
416 |
}
|
191 |
'es_subscriber_new_status' => _x( 'Please select new status for subscribers', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
|
192 |
'es_subscriber_group_update' => _x( 'Do you want to update subscribers group?', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
|
193 |
'es_subscriber_status_update' => _x( 'Do you want to update subscribers status?', 'view-subscriber-enhanced-select', ES_TDOMAIN ),
|
|
|
194 |
'es_subscriber_csv_file' => _x( 'Please select only csv file. Please check official website for csv structure..', 'view-subscriber-enhanced-select', ES_TDOMAIN )
|
195 |
);
|
196 |
wp_localize_script( 'es-view-subscribers', 'es_view_subscriber_notices', $es_select_params );
|
380 |
|
381 |
// Compose table
|
382 |
$wpdb->query( "UPDATE {$wpdb->prefix}es_templatetable
|
383 |
+
SET es_email_type =
|
384 |
+
( CASE
|
385 |
+
WHEN es_email_type = 'Static Template' THEN 'Newsletter'
|
386 |
+
WHEN es_email_type = 'Dynamic Template' THEN 'Post Notification'
|
387 |
+
ELSE es_email_type
|
388 |
+
END ) " );
|
389 |
|
390 |
// Sent Details table
|
391 |
$wpdb->query( "UPDATE {$wpdb->prefix}es_sentdetails
|
392 |
SET es_sent_type =
|
393 |
( CASE
|
394 |
+
WHEN es_sent_type = 'Instant Mail' THEN 'Immediately'
|
395 |
+
WHEN es_sent_type = 'Cron Mail' THEN 'Cron'
|
396 |
+
ELSE es_sent_type
|
397 |
+
END ),
|
398 |
+
es_sent_source =
|
399 |
( CASE
|
400 |
+
WHEN es_sent_source = 'manual' THEN 'Newsletter'
|
401 |
WHEN es_sent_source = 'notification' THEN 'Post Notification'
|
402 |
ELSE es_sent_source
|
403 |
END ) " );
|
406 |
$wpdb->query( "UPDATE {$wpdb->prefix}es_deliverreport
|
407 |
SET es_deliver_senttype =
|
408 |
( CASE
|
409 |
+
WHEN es_deliver_senttype = 'Instant Mail' THEN 'Immediately'
|
410 |
WHEN es_deliver_senttype = 'Cron Mail' THEN 'Cron'
|
411 |
ELSE es_deliver_senttype
|
412 |
+
END ) " );
|
413 |
|
414 |
update_option( 'current_sa_email_subscribers_db_version', '3.2.7' );
|
415 |
}
|
email-subscribers.php
CHANGED
@@ -3,11 +3,11 @@
|
|
3 |
* Plugin Name: Email Subscribers & Newsletters
|
4 |
* Plugin URI: http://www.icegram.com/
|
5 |
* Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
|
6 |
-
* Version: 3.2.
|
7 |
* Author: Icegram
|
8 |
* Author URI: http://www.icegram.com/
|
9 |
* Requires at least: 3.4
|
10 |
-
* Tested up to: 4.7.
|
11 |
* Text Domain: email-subscribers
|
12 |
* Domain Path: /languages/
|
13 |
* License: GPLv3
|
3 |
* Plugin Name: Email Subscribers & Newsletters
|
4 |
* Plugin URI: http://www.icegram.com/
|
5 |
* Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
|
6 |
+
* Version: 3.2.11
|
7 |
* Author: Icegram
|
8 |
* Author URI: http://www.icegram.com/
|
9 |
* Requires at least: 3.4
|
10 |
+
* Tested up to: 4.7.5
|
11 |
* Text Domain: email-subscribers
|
12 |
* Domain Path: /languages/
|
13 |
* License: GPLv3
|
export/export-email-address.php
CHANGED
@@ -13,9 +13,21 @@ if ( !empty($_SERVER) && !empty($_GET) && !empty($_GET['es']) && $_GET['es'] ==
|
|
13 |
global $wpdb;
|
14 |
$option = isset($_REQUEST['option']) ? $_REQUEST['option'] : '';
|
15 |
switch ($option) {
|
16 |
-
case "
|
17 |
$sSql = "SELECT es_email_mail as Email, es_email_name as Name, es_email_status as Status, es_email_created as Created,";
|
18 |
-
$sSql = $sSql . " es_email_group as
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
$data = $wpdb->get_results($sSql);
|
20 |
es_cls_common::download($data, 's', '');
|
21 |
break;
|
13 |
global $wpdb;
|
14 |
$option = isset($_REQUEST['option']) ? $_REQUEST['option'] : '';
|
15 |
switch ($option) {
|
16 |
+
case "view_all_subscribers":
|
17 |
$sSql = "SELECT es_email_mail as Email, es_email_name as Name, es_email_status as Status, es_email_created as Created,";
|
18 |
+
$sSql = $sSql . " es_email_group as EmailGroup from ". $wpdb->prefix . "es_emaillist ORDER BY es_email_created";
|
19 |
+
$data = $wpdb->get_results($sSql);
|
20 |
+
es_cls_common::download($data, 's', '');
|
21 |
+
break;
|
22 |
+
case "view_active_subscribers":
|
23 |
+
$sSql = "SELECT es_email_mail as Email, es_email_name as Name, es_email_status as Status, es_email_created as Created,";
|
24 |
+
$sSql = $sSql . " es_email_group as EmailGroup from ". $wpdb->prefix . "es_emaillist WHERE es_email_status IN ( 'Confirmed', 'Single Opt In' ) ORDER BY es_email_created";
|
25 |
+
$data = $wpdb->get_results($sSql);
|
26 |
+
es_cls_common::download($data, 's', '');
|
27 |
+
break;
|
28 |
+
case "view_inactive_subscribers":
|
29 |
+
$sSql = "SELECT es_email_mail as Email, es_email_name as Name, es_email_status as Status, es_email_created as Created,";
|
30 |
+
$sSql = $sSql . " es_email_group as EmailGroup from ". $wpdb->prefix . "es_emaillist WHERE es_email_status IN ( 'Unconfirmed', 'Unsubscribed' ) ORDER BY es_email_created";
|
31 |
$data = $wpdb->get_results($sSql);
|
32 |
es_cls_common::download($data, 's', '');
|
33 |
break;
|
help/help.php
CHANGED
@@ -111,7 +111,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
111 |
|
112 |
</style>
|
113 |
|
114 |
-
<?php $subbox_code = esc_html( '<?php es_subbox(
|
115 |
|
116 |
<ol class="es_faq_list">
|
117 |
<li class="es_faq">
|
111 |
|
112 |
</style>
|
113 |
|
114 |
+
<?php $subbox_code = esc_html( '<?php es_subbox($namefield = "YES", $desc = "", $group = "Public"); ?>' ); ?>
|
115 |
|
116 |
<ol class="es_faq_list">
|
117 |
<li class="es_faq">
|
languages/email-subscribers-cs_CZ.mo
CHANGED
Binary file
|
languages/email-subscribers-cs_CZ.po
CHANGED
@@ -1,662 +1,829 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.2.
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2017-
|
6 |
-
"PO-Revision-Date:
|
7 |
-
"Last-Translator:
|
8 |
-
"Language-Team:
|
9 |
-
"Language:
|
10 |
-
"Plural-Forms: nplurals=3; plural=( n == 1 ) ? 0 : ( n >= 2 && n <= 4 ) ? 1 : "
|
11 |
-
"2\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
"X-Poedit-SourceCharset: UTF-8\n"
|
16 |
-
"X-Generator:
|
17 |
"X-Poedit-Basepath: .\n"
|
18 |
-
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
|
19 |
-
"
|
20 |
-
"
|
21 |
-
"
|
22 |
-
"
|
23 |
"X-Loco-Target-Locale: cs_CZ\n"
|
24 |
-
"X-Poedit-SearchPath-0:
|
25 |
|
26 |
-
#:
|
27 |
-
msgid "
|
28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
|
30 |
-
#: classes/es-
|
31 |
-
|
32 |
-
|
|
|
33 |
|
34 |
-
#: classes/es-
|
35 |
-
|
36 |
-
|
|
|
37 |
|
38 |
-
#:
|
39 |
-
|
40 |
-
|
|
|
41 |
|
42 |
-
#:
|
43 |
-
|
44 |
-
|
|
|
45 |
|
46 |
-
#:
|
47 |
-
|
48 |
-
|
|
|
49 |
|
50 |
-
#:
|
51 |
-
|
52 |
-
|
|
|
53 |
|
54 |
-
#:
|
55 |
-
|
56 |
-
|
|
|
57 |
|
58 |
-
#:
|
59 |
-
|
60 |
-
msgid "
|
61 |
-
msgstr "
|
62 |
|
63 |
-
#:
|
64 |
-
|
65 |
-
|
|
|
66 |
|
67 |
-
#:
|
68 |
-
|
69 |
-
|
|
|
70 |
|
71 |
-
#:
|
72 |
-
|
73 |
-
|
|
|
74 |
|
75 |
-
#:
|
76 |
-
|
77 |
-
msgid "
|
78 |
-
msgstr "
|
79 |
|
80 |
-
#:
|
81 |
-
|
82 |
-
msgid "
|
83 |
-
msgstr "
|
84 |
|
85 |
-
#:
|
86 |
-
|
87 |
-
|
|
|
88 |
|
89 |
-
#:
|
90 |
msgid ""
|
91 |
-
"
|
92 |
-
"
|
93 |
msgstr ""
|
94 |
-
"
|
95 |
-
"
|
96 |
|
97 |
-
#:
|
98 |
-
msgid "
|
99 |
-
msgstr "
|
100 |
|
101 |
-
#:
|
102 |
-
msgid "
|
103 |
-
msgstr "
|
104 |
|
105 |
-
#:
|
106 |
-
|
107 |
-
|
108 |
-
msgstr "Odeslal"
|
109 |
|
110 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
111 |
msgid ""
|
112 |
-
"
|
113 |
-
"
|
114 |
msgstr ""
|
115 |
-
"
|
116 |
-
"
|
117 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
|
119 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
120 |
msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
|
121 |
msgstr "<span style=\"color:#006600;font-weight:bold;\">Potvrzeno</span>"
|
122 |
|
123 |
-
#: classes/es-common.php:
|
124 |
msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
|
125 |
msgstr "<span style=\"color:#FF0000\">Nepotvrzeno</span>"
|
126 |
|
127 |
-
#: classes/es-common.php:
|
128 |
msgid "<span style=\"color:#999900\">Unsubscribed</span>"
|
129 |
msgstr "<span style=\"color:#999900\">Odhlášen/a</span>"
|
130 |
|
131 |
-
#: classes/es-common.php:
|
132 |
msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
|
133 |
msgstr "<span style=\"color:#0000FF\">Jednoduché potvrzení</span>"
|
134 |
|
135 |
-
#: classes/es-common.php:
|
136 |
msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
|
137 |
msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Zobrazeno</span>"
|
138 |
|
139 |
-
#: classes/es-common.php:
|
140 |
msgid "<span style=\"color:#999900;\">Nodata</span>"
|
141 |
msgstr "<span style=\"color:#999900;\">Neuvedeno</span>"
|
142 |
|
143 |
-
#: classes/es-common.php:
|
|
|
|
|
|
|
|
|
144 |
msgid "<span style=\"color:#FF0000\">In Queue</span>"
|
145 |
msgstr "<span style=\"color:#FF0000\">Ve frontě</span>"
|
146 |
|
147 |
-
#: classes/es-common.php:
|
148 |
msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
|
149 |
msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Odesláno</span>"
|
150 |
|
151 |
-
#: classes/es-
|
152 |
-
|
153 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
154 |
msgid "Name"
|
155 |
msgstr "Jméno"
|
156 |
|
157 |
-
#: classes/es-loadwidget.php:
|
158 |
msgid "Email *"
|
159 |
msgstr "Email *"
|
160 |
|
161 |
-
#: classes/es-loadwidget.php:
|
162 |
msgid "Subscribe"
|
163 |
msgstr "Odebírat"
|
164 |
|
165 |
-
#: classes/es-register.php:
|
166 |
msgid "Email Subscribers"
|
167 |
msgstr "Email Subscribers"
|
168 |
|
169 |
-
#: classes/es-register.php:
|
170 |
-
#: subscribers/view-subscriber-show.php:
|
171 |
msgid "Subscribers"
|
172 |
msgstr "Odběratelé"
|
173 |
|
174 |
-
#: classes/es-register.php:
|
175 |
-
#: compose/compose-show.php:
|
176 |
msgid "Compose"
|
177 |
msgstr "Vytvořit"
|
178 |
|
179 |
-
#: classes/es-register.php:
|
180 |
-
#: notification/notification-show.php:
|
181 |
msgid "Post Notifications"
|
182 |
msgstr "Oznámení o příspěvcích"
|
183 |
|
184 |
-
#: classes/es-register.php:
|
185 |
msgid "Newsletters"
|
186 |
msgstr "Zpravodaje"
|
187 |
|
188 |
-
#: classes/es-register.php:
|
189 |
msgid "Cron Settings"
|
190 |
msgstr "Cron nastavení"
|
191 |
|
192 |
-
#: classes/es-register.php:
|
193 |
-
#: settings/settings-edit.php:
|
194 |
msgid "Email Settings"
|
195 |
msgstr "Nastavení e-mailu"
|
196 |
|
197 |
-
#: classes/es-register.php:
|
198 |
msgid "User Roles"
|
199 |
msgstr "Uživatelské úrovně"
|
200 |
|
201 |
-
#: classes/es-register.php:
|
202 |
-
#: sentmail/sentmail-show.php:
|
203 |
msgid "Reports"
|
204 |
msgstr "Přehledy"
|
205 |
|
206 |
-
#: classes/es-register.php:
|
207 |
msgid "Help & Info"
|
208 |
msgstr "Nápověda"
|
209 |
|
210 |
-
#: classes/es-register.php:
|
211 |
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
|
212 |
msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Nápověda"
|
213 |
|
214 |
-
#: classes/es-register.php:
|
215 |
msgctxt "view-subscriber-enhanced-select"
|
216 |
msgid "Please enter subscriber email address."
|
217 |
msgstr "Zadejte emailovou adresu odběratele."
|
218 |
|
219 |
-
#: classes/es-register.php:
|
220 |
msgctxt "view-subscriber-enhanced-select"
|
221 |
msgid "Please select subscriber email status."
|
222 |
msgstr "Vyberte stav emailu odběratele."
|
223 |
|
224 |
-
#: classes/es-register.php:
|
225 |
msgctxt "view-subscriber-enhanced-select"
|
226 |
msgid "Please select or create group for this subscriber."
|
227 |
msgstr "Vyberte nebo vytvořte skupinu pro tohoto odběratele."
|
228 |
|
229 |
-
#: classes/es-register.php:
|
230 |
msgctxt "view-subscriber-enhanced-select"
|
231 |
msgid "Do you want to delete this record?"
|
232 |
msgstr "Opravdu chcete smazat tento záznam?"
|
233 |
|
234 |
-
#: classes/es-register.php:
|
235 |
msgctxt "view-subscriber-enhanced-select"
|
236 |
msgid "Please select the bulk action."
|
237 |
msgstr "Vyberte hromadnou akci."
|
238 |
|
239 |
-
#: classes/es-register.php:
|
240 |
msgctxt "view-subscriber-enhanced-select"
|
241 |
msgid "Are you sure you want to delete selected records?"
|
242 |
msgstr "Skutečně chcete smazat vybrané záznamy?"
|
243 |
|
244 |
-
#: classes/es-register.php:
|
245 |
msgctxt "view-subscriber-enhanced-select"
|
246 |
msgid ""
|
247 |
-
"Do you want to resend confirmation email? \\nAlso please note, this will "
|
248 |
-
"
|
249 |
msgstr ""
|
250 |
"Chcete znovu odeslat potvrzovací email? \\nUpozorňujeme, že bude aktualizován "
|
251 |
"současný stav odběratele na „Nepotvrzeno“."
|
252 |
|
253 |
-
#: classes/es-register.php:
|
254 |
msgctxt "view-subscriber-enhanced-select"
|
255 |
msgid "Please select new subscriber group."
|
256 |
-
msgstr "Vyberte novou skupinu odběratele.
|
257 |
|
258 |
-
#: classes/es-register.php:
|
259 |
msgctxt "view-subscriber-enhanced-select"
|
260 |
msgid "Please select new status for subscribers"
|
261 |
msgstr "Vyberte nový stav odběratele"
|
262 |
|
263 |
-
#: classes/es-register.php:
|
264 |
msgctxt "view-subscriber-enhanced-select"
|
265 |
msgid "Do you want to update subscribers group?"
|
266 |
msgstr "Chcete upravit skupinu odběratelů?"
|
267 |
|
268 |
-
#: classes/es-register.php:
|
269 |
msgctxt "view-subscriber-enhanced-select"
|
270 |
msgid "Do you want to update subscribers status?"
|
271 |
msgstr "Chcete upravit stav odběratele?"
|
272 |
|
273 |
-
#: classes/es-register.php:
|
274 |
msgctxt "view-subscriber-enhanced-select"
|
275 |
msgid "Do you want to export the emails?"
|
276 |
msgstr "Chcete exportovat emaily?"
|
277 |
|
278 |
-
#: classes/es-register.php:
|
279 |
msgctxt "view-subscriber-enhanced-select"
|
280 |
msgid ""
|
281 |
-
"Please select only csv file. Please check official website for csv structure
|
282 |
-
"."
|
283 |
msgstr ""
|
284 |
-
"Použijte výhradně soubor ve formátu CSV. Zkontrolujte strukturu csv souboru "
|
285 |
-
"
|
286 |
|
287 |
-
#: classes/es-register.php:
|
288 |
msgctxt "compose-enhanced-select"
|
289 |
msgid "Please enter name for configuration."
|
290 |
-
msgstr "Zadejte název konfigurace.
|
291 |
|
292 |
-
#: classes/es-register.php:
|
293 |
msgctxt "compose-enhanced-select"
|
294 |
msgid "Please select template for this configuration."
|
295 |
msgstr "Vyberte šablonu pro tuto konfiguraci."
|
296 |
|
297 |
-
#: classes/es-register.php:
|
298 |
msgctxt "compose-enhanced-select"
|
299 |
msgid "Do you want to delete this record?"
|
300 |
msgstr "Chcete smazat tento záznam?"
|
301 |
|
302 |
-
#: classes/es-register.php:
|
303 |
msgctxt "notification-enhanced-select"
|
304 |
msgid "Please select subscribers group."
|
305 |
msgstr "Vyberte skupinu odběratelů."
|
306 |
|
307 |
-
#: classes/es-register.php:
|
308 |
msgctxt "notification-enhanced-select"
|
309 |
msgid "Please select notification mail subject. Use compose menu to create new."
|
310 |
msgstr ""
|
311 |
-
"Vyberte předmět oznamovacího emailu. Pro vytvoření nového použijte menu "
|
312 |
-
"„Vytvořit“."
|
313 |
|
314 |
-
#: classes/es-register.php:
|
315 |
msgctxt "notification-enhanced-select"
|
316 |
msgid "Please select notification status."
|
317 |
-
msgstr "Vyberte stav oznámení.
|
318 |
|
319 |
-
#: classes/es-register.php:
|
320 |
msgctxt "notification-enhanced-select"
|
321 |
msgid "Do you want to delete this record?"
|
322 |
msgstr "Chcete smazat tento záznam?"
|
323 |
|
324 |
-
#: classes/es-register.php:
|
325 |
msgctxt "sendmail-enhanced-select"
|
326 |
msgid "Please select your mail subject."
|
327 |
msgstr "Vyberte předmět zprávy."
|
328 |
|
329 |
-
#: classes/es-register.php:
|
330 |
msgctxt "sendmail-enhanced-select"
|
331 |
msgid "Please select your mail type."
|
332 |
msgstr "Vyberte typ zprávy."
|
333 |
|
334 |
-
#: classes/es-register.php:
|
335 |
msgctxt "sendmail-enhanced-select"
|
336 |
msgid ""
|
337 |
-
"Have you double checked your selected group? If so, let's go ahead and send "
|
338 |
-
"this."
|
339 |
msgstr "Zkontrolovali jste si vybranou skupinu? Jestli ano, formulář můžete odeslat."
|
340 |
|
341 |
-
#: classes/es-register.php:
|
342 |
msgctxt "sentmail-enhanced-select"
|
343 |
msgid "Do you want to delete this record?"
|
344 |
msgstr "Chcete smazat tento záznam?"
|
345 |
|
346 |
-
#: classes/es-register.php:
|
347 |
msgctxt "sentmail-enhanced-select"
|
348 |
msgid "Do you want to delete all records except latest 10?"
|
349 |
msgstr "Chcete smazat všechny záznamy kromě posledních 10?"
|
350 |
|
351 |
-
#: classes/es-register.php:
|
352 |
msgctxt "cron-enhanced-select"
|
353 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
354 |
msgstr "Vyberte počet emailů, které chcete odeslat za hodinu/spuštění."
|
355 |
|
356 |
-
#: classes/es-register.php:
|
357 |
msgctxt "cron-enhanced-select"
|
358 |
msgid "Please enter the mail count, only number."
|
359 |
msgstr "Zadejte počet emailů (pouze číslo)."
|
360 |
|
361 |
-
#: classes/es-register.php:
|
362 |
-
msgctxt "widget-enhanced-select"
|
363 |
-
msgid "Please enter email address."
|
364 |
-
msgstr "Zadejte emailovou adresu."
|
365 |
-
|
366 |
-
#: classes/es-register.php:253
|
367 |
-
msgctxt "widget-enhanced-select"
|
368 |
-
msgid "Please provide a valid email address."
|
369 |
-
msgstr "Zadejte platnou emailovou adresu."
|
370 |
-
|
371 |
-
#: classes/es-register.php:254
|
372 |
msgctxt "widget-enhanced-select"
|
373 |
msgid "loading..."
|
374 |
msgstr "načítání..."
|
375 |
|
376 |
-
#: classes/es-register.php:
|
377 |
msgctxt "widget-enhanced-select"
|
378 |
msgid "Cannot create XMLHTTP instance"
|
379 |
msgstr "Nelze vytvořit instanci XMLHTTP"
|
380 |
|
381 |
-
#: classes/es-register.php:
|
382 |
-
msgctxt "widget-enhanced-select"
|
383 |
-
msgid "Subscribed successfully."
|
384 |
-
msgstr "Úspěnšně jste se přihlásili k odběru."
|
385 |
-
|
386 |
-
#: classes/es-register.php:257
|
387 |
msgctxt "widget-enhanced-select"
|
388 |
msgid ""
|
389 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
390 |
-
"
|
391 |
-
"
|
392 |
msgstr ""
|
393 |
-
"Úspěšně jste se přihlásili k odběru! Během několika minut zkontrolujte "
|
394 |
-
"
|
395 |
-
"
|
396 |
-
|
397 |
-
#: classes/es-register.php:258
|
398 |
-
msgctxt "widget-enhanced-select"
|
399 |
-
msgid "Email Address already exists."
|
400 |
-
msgstr "Email adresa již existuje."
|
401 |
|
402 |
-
#: classes/es-register.php:
|
403 |
msgctxt "widget-enhanced-select"
|
404 |
msgid "Oops.. Unexpected error occurred."
|
405 |
msgstr "Nastala neočekávaná chyba."
|
406 |
|
407 |
-
#: classes/es-register.php:
|
408 |
-
msgctxt "widget-enhanced-select"
|
409 |
-
msgid "Invalid email address."
|
410 |
-
msgstr "Neplatná emailová adresa."
|
411 |
-
|
412 |
-
#: classes/es-register.php:261
|
413 |
-
msgctxt "widget-enhanced-select"
|
414 |
-
msgid "Please try after some time."
|
415 |
-
msgstr "Zkuste to prosím později."
|
416 |
-
|
417 |
-
#: classes/es-register.php:262
|
418 |
-
msgctxt "widget-enhanced-select"
|
419 |
-
msgid "There was a problem with the request."
|
420 |
-
msgstr "Došlo k potížím s požadavkem."
|
421 |
-
|
422 |
-
#: classes/es-register.php:269
|
423 |
-
msgctxt "widget-page-enhanced-select"
|
424 |
-
msgid "Please enter email address."
|
425 |
-
msgstr "Zadejte emailovou adresu."
|
426 |
-
|
427 |
-
#: classes/es-register.php:270
|
428 |
-
msgctxt "widget-page-enhanced-select"
|
429 |
-
msgid "Please provide a valid email address."
|
430 |
-
msgstr "Zadejte platnou emailovou adresu."
|
431 |
-
|
432 |
-
#: classes/es-register.php:271
|
433 |
msgctxt "widget-page-enhanced-select"
|
434 |
msgid "loading..."
|
435 |
msgstr "načítání..."
|
436 |
|
437 |
-
#: classes/es-register.php:
|
438 |
msgctxt "widget-page-enhanced-select"
|
439 |
msgid "Cannot create XMLHTTP instance"
|
440 |
msgstr "Nelze vytvořit instanci XMLHTTP"
|
441 |
|
442 |
-
#: classes/es-register.php:
|
443 |
-
msgctxt "widget-page-enhanced-select"
|
444 |
-
msgid "Subscribed successfully."
|
445 |
-
msgstr "Úspěnšně jste se přihlásili k odběru."
|
446 |
-
|
447 |
-
#: classes/es-register.php:274
|
448 |
msgctxt "widget-page-enhanced-select"
|
449 |
msgid ""
|
450 |
-
"Your subscription was successful! Within a few minutes, kindly check the "
|
451 |
-
"
|
452 |
-
"
|
453 |
msgstr ""
|
454 |
-
"Úspěšně jste se přihlásili k odběru! Během několika minut zkontrolujte "
|
455 |
-
"
|
456 |
-
"
|
457 |
|
458 |
-
#: classes/es-register.php:
|
459 |
-
msgctxt "widget-page-enhanced-select"
|
460 |
-
msgid "Email Address already exists."
|
461 |
-
msgstr "Email adresa již existuje."
|
462 |
-
|
463 |
-
#: classes/es-register.php:276
|
464 |
msgctxt "widget-page-enhanced-select"
|
465 |
msgid "Oops.. Unexpected error occurred."
|
466 |
msgstr "Nastala neočekávaná chyba."
|
467 |
|
468 |
-
#: classes/es-register.php:
|
469 |
-
msgctxt "widget-page-enhanced-select"
|
470 |
-
msgid "Invalid email address."
|
471 |
-
msgstr "Neplatná emailová adresa."
|
472 |
-
|
473 |
-
#: classes/es-register.php:278
|
474 |
-
msgctxt "widget-page-enhanced-select"
|
475 |
-
msgid "Please try after some time."
|
476 |
-
msgstr "Zkuste to prosím později."
|
477 |
-
|
478 |
-
#: classes/es-register.php:279
|
479 |
-
msgctxt "widget-page-enhanced-select"
|
480 |
-
msgid "There was a problem with the request."
|
481 |
-
msgstr "Došlo k potížím s požadavkem."
|
482 |
-
|
483 |
-
#: classes/es-register.php:456
|
484 |
-
msgid ""
|
485 |
-
"Email Subscribers recommends free plugin <b>Rainmaker</b> to collect leads "
|
486 |
-
"instantly"
|
487 |
-
msgstr ""
|
488 |
-
"Email Subscribers doporučuje bezplatný plugin <b>Rainmaker</b> k okamžitému "
|
489 |
-
"zběru potenciálních zákazníků"
|
490 |
-
|
491 |
-
#: classes/es-register.php:457
|
492 |
-
msgid "Yes, I want this"
|
493 |
-
msgstr "Ano, chci ho."
|
494 |
-
|
495 |
-
#: classes/es-register.php:457
|
496 |
-
msgid "No, I don't want it"
|
497 |
-
msgstr "Ne, nechci ho."
|
498 |
-
|
499 |
-
#: classes/es-register.php:592
|
500 |
msgid "Widget Title"
|
501 |
msgstr "Nadpis widgetu"
|
502 |
|
503 |
-
#: classes/es-register.php:
|
504 |
msgid "Display Name Field"
|
505 |
msgstr "Zobrazit pole „Jméno“"
|
506 |
|
507 |
-
#: classes/es-register.php:
|
508 |
-
|
509 |
-
|
|
|
510 |
|
511 |
-
#: classes/es-register.php:
|
512 |
-
|
513 |
-
|
|
|
514 |
|
515 |
-
#: classes/es-register.php:
|
516 |
msgid "Subscriber Group"
|
517 |
msgstr "Skupina odběratelů"
|
518 |
|
519 |
-
#: compose/compose-add.php:
|
520 |
msgid "Please enter template heading."
|
521 |
msgstr "Vyberte šablonu záhlaví."
|
522 |
|
523 |
-
#: compose/compose-add.php:
|
524 |
msgid "Template successfully created. "
|
525 |
-
msgstr "Šablona byla úspěšně vytvořena."
|
526 |
|
527 |
-
#: compose/compose-add.php:
|
528 |
msgid "Add new Email"
|
529 |
msgstr "Přidat nový e-mail"
|
530 |
|
531 |
-
#: compose/compose-add.php:
|
532 |
-
#: compose/compose-preview.php:
|
533 |
-
#: notification/notification-add.php:
|
534 |
-
#: notification/notification-show.php:
|
535 |
-
#: sendmail/sendmail.php:
|
536 |
-
#: sentmail/sentmail-preview.php:
|
537 |
-
#: settings/settings-edit.php:
|
538 |
-
#: subscribers/view-subscriber-edit.php:
|
539 |
-
#: php:
|
540 |
-
#: subscribers/view-subscriber-
|
541 |
-
#: subscribers/view-subscriber-show.php:245 subscribers/view-subscriber-sync.php:91
|
542 |
msgid "Help"
|
543 |
msgstr "Nápověda"
|
544 |
|
545 |
-
#: compose/compose-add.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
546 |
msgid "Keyword: ###POSTTITLE###"
|
547 |
msgstr "Klíčové slovo: ###POSTTITLE###"
|
548 |
|
549 |
-
#: compose/compose-add.php:
|
|
|
|
|
|
|
|
|
550 |
#, c-format
|
551 |
msgid ""
|
552 |
"%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
553 |
-
"###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, "
|
554 |
-
"###
|
555 |
msgstr ""
|
556 |
"%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
557 |
-
"###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, "
|
558 |
-
"###
|
559 |
|
560 |
-
#: compose/compose-add.php:
|
561 |
msgid "Available Keywords"
|
562 |
msgstr "Dostupná klíčová slova"
|
563 |
|
564 |
-
#: compose/compose-add.php:
|
565 |
-
#: sentmail/deliverreport-show.php:
|
566 |
-
#: sentmail/sentmail-show.php:
|
567 |
-
#: subscribers/view-subscriber-show.php:
|
568 |
-
#: 368
|
569 |
msgid "Status"
|
570 |
msgstr "Stav"
|
571 |
|
572 |
-
#: compose/compose-add.php:
|
573 |
msgid "Published"
|
574 |
msgstr "Publikováno"
|
575 |
|
576 |
-
#: compose/compose-add.php:
|
577 |
msgid "Please select your mail status"
|
578 |
msgstr "Vyberte stav zprávy"
|
579 |
|
580 |
-
#: compose/compose-add.php:
|
581 |
-
#: notification/notification-add.php:
|
582 |
-
#: roles/roles-add.php:
|
583 |
msgid "Save"
|
584 |
msgstr "Uložit"
|
585 |
|
586 |
-
#: compose/compose-edit.php:
|
587 |
-
#: compose/compose-show.php:
|
588 |
-
#: notification/notification-show.php:
|
589 |
-
#: sentmail/sentmail-show.php:
|
590 |
-
#: subscribers/view-subscriber-edit.php:
|
591 |
msgid "Oops, selected details does not exists."
|
592 |
msgstr "Vybrané podrobnosti neexistují."
|
593 |
|
594 |
-
#: compose/compose-edit.php:
|
595 |
msgid "Template successfully updated. "
|
596 |
-
msgstr "Šablona byla úspěšně aktualizována."
|
597 |
|
598 |
-
#: compose/compose-edit.php:
|
599 |
msgid "Edit Email"
|
600 |
msgstr "Upravit e-mail"
|
601 |
|
602 |
-
#: compose/compose-edit.php:
|
603 |
-
#: notification/notification-edit.php:
|
604 |
msgid "Add New"
|
605 |
msgstr "Vytvoit"
|
606 |
|
607 |
-
#: compose/compose-preview.php:
|
608 |
msgid "Preview Mail"
|
609 |
msgstr "Náhled emailu"
|
610 |
|
611 |
-
#: compose/compose-preview.php:
|
612 |
-
#: notification/notification-show.php:
|
613 |
msgid "Edit"
|
614 |
msgstr "Upravit"
|
615 |
|
616 |
-
#: compose/compose-show.php:
|
617 |
-
#: subscribers/view-subscriber-show.php:
|
618 |
msgid "Click Here"
|
619 |
msgstr "Klikněte zde"
|
620 |
|
621 |
-
#: compose/compose-show.php:
|
622 |
-
#: sentmail/sentmail-show.php:
|
623 |
msgid "Selected record deleted."
|
624 |
msgstr "Vybraný záznam byl smazán."
|
625 |
|
626 |
-
#: compose/compose-show.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
627 |
msgid "Actions"
|
628 |
msgstr "Akce"
|
629 |
|
630 |
-
#: compose/compose-show.php:
|
631 |
-
#: subscribers/view-subscriber-show.php:
|
632 |
-
#: 403
|
633 |
msgid "Delete"
|
634 |
msgstr "Smazat"
|
635 |
|
636 |
-
#: compose/compose-show.php:
|
637 |
-
#: sentmail/sentmail-show.php:
|
638 |
msgid "Preview"
|
639 |
msgstr "Náhled"
|
640 |
|
641 |
-
#: compose/compose-show.php:
|
642 |
-
#: sentmail/deliverreport-show.php:
|
643 |
-
#: subscribers/view-subscriber-show.php:
|
644 |
msgid "No records available."
|
645 |
msgstr "Žádné záznamy nejsou k dispozici."
|
646 |
|
647 |
-
#: cron/cron-add.php:
|
648 |
msgid "Please enter valid mail count."
|
649 |
msgstr "Zadejte platný počet emailů."
|
650 |
|
651 |
-
#: cron/cron-add.php:
|
652 |
msgid "Successfully updated."
|
653 |
msgstr "Úspěšně upraveno."
|
654 |
|
655 |
-
#: cron/cron-add.php:
|
656 |
msgid "Cron job URL"
|
657 |
msgstr "URL cronu"
|
658 |
|
659 |
-
#: cron/cron-add.php:
|
660 |
msgid ""
|
661 |
"This is your Cron Job URL. It is a readonly field and you are advised not to "
|
662 |
"modify it."
|
@@ -664,41 +831,35 @@ msgstr ""
|
|
664 |
"Toto je URL vašeho cronu. Pole je pouze pro čtení, nedoporučujeme vám jej "
|
665 |
"upravovat."
|
666 |
|
667 |
-
#: cron/cron-add.php:
|
668 |
-
msgid "Mail Count"
|
669 |
-
msgstr "Počet zpráv"
|
670 |
-
|
671 |
-
#: cron/cron-add.php:97
|
672 |
-
msgid "Number of mails you want to trigger per hour."
|
673 |
-
msgstr "Zadejte počet emailů, které chcete poslat za hodinu pomocí trigeru."
|
674 |
-
|
675 |
-
#: cron/cron-add.php:102
|
676 |
msgid "(Your web host has limits. We suggest 50 emails per hour to be safe)"
|
677 |
msgstr "(Web host má své limity. Doporučujeme odesílat nejvíce 50 mailů za hodinu.)"
|
678 |
|
679 |
-
#: cron/cron-add.php:
|
680 |
msgid "Admin Report"
|
681 |
msgstr "Hlášení pro administrátora"
|
682 |
|
683 |
-
#: cron/cron-add.php:
|
684 |
msgid ""
|
685 |
"Email to admin whenever cron URL is triggered from your server. (Keywords: "
|
686 |
"###DATE###, ###SUBJECT###, ###COUNT###)"
|
687 |
msgstr ""
|
688 |
-
"Poslat administrátorovi výše uvedený email kdykoli zapracuje cron URL ve "
|
689 |
-
"
|
690 |
|
691 |
-
#: cron/cron-add.php:
|
692 |
msgid "What is Cron (auto emails) and how to setup Cron Job?"
|
693 |
msgstr "Co je to cron (automatický e-mail) a jak nastavit cron?"
|
694 |
|
695 |
-
#: cron/cron-add.php:
|
696 |
msgid ""
|
697 |
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
698 |
"schedule-cron-emails/\">What is Cron?</a>"
|
699 |
-
msgstr "
|
|
|
|
|
700 |
|
701 |
-
#: cron/cron-add.php:
|
702 |
msgid ""
|
703 |
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
704 |
"schedule-cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
|
@@ -706,7 +867,7 @@ msgstr ""
|
|
706 |
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
707 |
"schedule-cron-emails-in-parallels-plesk/\">Nastavení cronu v Plesk</a>"
|
708 |
|
709 |
-
#: cron/cron-add.php:
|
710 |
msgid ""
|
711 |
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
712 |
"schedule-cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
|
@@ -714,1177 +875,1025 @@ msgstr ""
|
|
714 |
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
715 |
"schedule-cron-emails-in-cpanel/\">Nastavení cronu v cPanel</a>"
|
716 |
|
717 |
-
#: cron/cron-add.php:
|
718 |
msgid ""
|
719 |
-
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-"
|
720 |
-
"
|
721 |
msgstr ""
|
722 |
-
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-"
|
723 |
-
"
|
724 |
|
725 |
#: export/export-email-address.php:33 export/export-email-address.php:37
|
726 |
msgid "Unexpected url submit has been detected"
|
727 |
msgstr "Byla zjištěna neočekávaná URL adresa"
|
728 |
|
729 |
-
#: help/help.php:
|
730 |
msgid "Welcome to Email Subscribers!"
|
731 |
msgstr "Vítá vás plugin Email Subscribers!"
|
732 |
|
733 |
-
#: help/help.php:
|
734 |
msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
|
735 |
msgstr "Děkujeme vám za instalaci a doufáme, že se vám Email Subscribers bude líbit."
|
736 |
|
737 |
-
#: help/help.php:
|
738 |
msgid "For more help and tips..."
|
739 |
msgstr "Pro další pomoc a rady..."
|
740 |
|
741 |
-
#: help/help.php:
|
742 |
#, c-format
|
743 |
msgid "Like Email Subscribers? Please consider %s."
|
744 |
msgstr "Zvažte like pro Email Subscribers %s."
|
745 |
|
746 |
-
#: help/help.php:
|
747 |
msgid "contributing to us"
|
748 |
msgstr "kontaktujte nás"
|
749 |
|
750 |
-
#: help/help.php:
|
751 |
msgid "Frequently Asked Questions"
|
752 |
msgstr "Časté dotazy (anglicky)"
|
753 |
|
754 |
-
#: help/help.php:
|
755 |
-
#: help/help.php:
|
756 |
-
#: help/help.php:
|
757 |
-
#: help/help.php:
|
758 |
-
#: help/help.php:
|
759 |
#, c-format
|
760 |
msgid "%s"
|
761 |
msgstr "%s"
|
762 |
|
763 |
-
#: help/help.php:
|
764 |
msgid "How to Add Subscription box to website?"
|
765 |
msgstr "Jak na web přidat přihlašovací formulář?"
|
766 |
|
767 |
-
#: help/help.php:
|
768 |
msgid "General Plugin Settings"
|
769 |
msgstr "Základní nastavení pluginu"
|
770 |
|
771 |
-
#: help/help.php:
|
772 |
msgid ""
|
773 |
-
" (How to modify the existing email content like Confirmation email, Welcome "
|
774 |
-
"
|
775 |
msgstr ""
|
776 |
-
"(Jak upravit existující obsah potvrzovacího emailu, uvítacího emailu, emailu "
|
777 |
-
"
|
778 |
|
779 |
-
#: help/help.php:
|
780 |
msgid "How to Import or Export Email Addresses?"
|
781 |
msgstr "Jak importovat nebo exportovat emailové adresy?"
|
782 |
|
783 |
-
#: help/help.php:
|
784 |
msgid "How to change/update/translate any texts from Email Subscribers?"
|
785 |
-
msgstr "Jak změnit/aktualizovat/přeložit jakýkoliv text v Email Subscribers?
|
786 |
|
787 |
-
#: help/help.php:
|
788 |
msgid "How to add Unsubscribe link in emails?"
|
789 |
msgstr "Jak do emailů přidat odkaz pro odhlášení?"
|
790 |
|
791 |
-
#: help/help.php:
|
792 |
msgid "What are Static Templates and Dynamic Templates?"
|
793 |
msgstr "Co je statická šablona a dynamická šablona?"
|
794 |
|
795 |
-
#: help/help.php:
|
796 |
msgid "How to Compose and Send Newsletter Emails?"
|
797 |
msgstr "Jak vytvářet a odesílat emaily zpravodajů?"
|
798 |
|
799 |
-
#: help/help.php:
|
800 |
msgid ""
|
801 |
-
"How to Configure and Send Post Notification emails to subscribers when new "
|
802 |
-
"
|
803 |
msgstr ""
|
804 |
-
"Jak nastavit a odesílat emailová oznámení odběratelům, jakmile jsou "
|
805 |
-
"
|
806 |
|
807 |
-
#: help/help.php:
|
808 |
msgid "How to Send a sample new post notification email to testgroup/myself?"
|
809 |
msgstr "Jak poslat ukázku nového oznamovacího emailu testovací skupině/sobě?"
|
810 |
|
811 |
-
#: help/help.php:
|
812 |
msgid "How to check Sent emails reports?"
|
813 |
msgstr "Jak zkontrolovat přehled odeslaných emailů?"
|
814 |
|
815 |
-
#: help/help.php:
|
816 |
msgid "How to Add/Update Existing Subscribers Group?"
|
817 |
msgstr "Jak přidat/aktualizovat existující skupinu odběratelů?"
|
818 |
|
819 |
-
#: help/help.php:
|
820 |
msgid "Subscribers are not receiving Emails?"
|
821 |
msgstr "Odběratelé nepřijímají emaily?"
|
822 |
|
823 |
-
#: help/help.php:
|
824 |
msgid "How to show subscribe form inside a popup?"
|
825 |
msgstr "Jak zobrazit přihlašovací formulář ve vyskakovacím okně?"
|
826 |
|
827 |
-
#: help/help.php:
|
828 |
msgid "How to use Rainmaker’s form in Email Subscribers?"
|
829 |
msgstr "Jak používat formulář Rainmaker v Email Subscribers?"
|
830 |
|
831 |
-
#: help/help.php:
|
832 |
msgid "How to Schedule Cron Mails?"
|
833 |
msgstr "Jak naplánovat cron emaily?"
|
834 |
|
835 |
-
#: help/help.php:
|
836 |
msgid "How to Schedule Cron Emails in cPanel?"
|
837 |
msgstr "Jak naplánovat cron emaily v cPanelu?"
|
838 |
|
839 |
-
#: help/help.php:
|
840 |
msgid "How to Schedule Cron Emails in Parallels Plesk?"
|
841 |
msgstr "Jak naplánovat cron emaily v Parallels Plesk?"
|
842 |
|
843 |
-
#: help/help.php:
|
844 |
msgid "What to do if Hosting doesn’t support Cron Jobs?"
|
845 |
msgstr "Co dělat, když hosting nepodporuje crony?"
|
846 |
|
847 |
-
#: help/help.php:
|
848 |
msgid "Commonly Asked Questions"
|
849 |
msgstr "Nejčastější dotazy"
|
850 |
|
851 |
-
#: job/es-optin.php:
|
852 |
-
#: job/es-unsubscribe.php:
|
853 |
msgid ""
|
854 |
-
"Oops.. We are getting some technical error. Please try again or contact "
|
855 |
-
"admin."
|
856 |
msgstr ""
|
857 |
-
"Nastala technická chyba. Zkuste to prosím znovu nebo se obraťte na "
|
858 |
-
"administrátora."
|
859 |
|
860 |
-
#: job/es-optin.php:
|
861 |
msgid "This email address has already been confirmed."
|
862 |
msgstr "Tato emailová adresa již byla potvrzena."
|
863 |
|
864 |
-
#: notification/notification-add.php:
|
865 |
msgid "Please select subscribers group."
|
866 |
msgstr "Vyberte skupinu odběratelů."
|
867 |
|
868 |
-
#: notification/notification-add.php:
|
869 |
msgid "Please select notification status."
|
870 |
msgstr "Vyberte stav oznámení."
|
871 |
|
872 |
-
#: notification/notification-add.php:
|
873 |
msgid "Please select notification mail subject. Use compose menu to create new."
|
874 |
msgstr ""
|
875 |
-
"Vyberte předmět oznamovacího emailu. Pro vytvoření nového použijte menu "
|
876 |
-
"„Vytvořit“."
|
877 |
|
878 |
-
#: notification/notification-add.php:
|
879 |
msgid "Please select post categories."
|
880 |
msgstr "Vyberte rubriky příspěvků."
|
881 |
|
882 |
-
#: notification/notification-add.php:
|
883 |
msgid "Notification successfully created. "
|
884 |
-
msgstr "Oznámení bylo úspěšně vytvořeno."
|
885 |
|
886 |
-
#: notification/notification-add.php:
|
887 |
msgid "Add Notification"
|
888 |
msgstr "Přidat oznámení"
|
889 |
|
890 |
-
#: notification/notification-add.php:
|
891 |
msgid "Select Subscribers Group"
|
892 |
msgstr "Vyberte skupinu odběratelů"
|
893 |
|
894 |
-
#: notification/notification-add.php:
|
895 |
-
#: notification/notification-edit.php:
|
896 |
-
#: sendmail/sendmail.php:
|
897 |
-
#: subscribers/view-subscriber-add.php:
|
898 |
-
#: subscribers/view-subscriber-import.php:
|
899 |
-
#: subscribers/view-subscriber-sync.php:
|
900 |
msgid "Select"
|
901 |
msgstr "Vybrat"
|
902 |
|
903 |
#: notification/notification-add.php:142 notification/notification-edit.php:162
|
|
|
|
|
|
|
|
|
904 |
msgid "(Use compose menu to create new)"
|
905 |
msgstr "(Pro nový předmět použijte menu „Vytvořit“)"
|
906 |
|
907 |
-
#: notification/notification-add.php:
|
908 |
msgid "Select Post Categories"
|
909 |
msgstr "Vyberte rubriky příspěvků"
|
910 |
|
911 |
-
#: notification/notification-add.php:
|
912 |
msgid "Check All"
|
913 |
msgstr "Označit vše"
|
914 |
|
915 |
-
#: notification/notification-add.php:
|
916 |
msgid "Uncheck All"
|
917 |
msgstr "Odznačit vše"
|
918 |
|
919 |
-
#: notification/notification-add.php:
|
920 |
msgid "Select your Custom Post Type"
|
921 |
msgstr "Vyberte vlastní typ obsahu"
|
922 |
|
923 |
-
#: notification/notification-add.php:
|
924 |
msgid "(Optional)"
|
925 |
msgstr "(nepovinné)"
|
926 |
|
927 |
-
#: notification/notification-add.php:
|
928 |
msgid "No Custom Post Types Available"
|
929 |
msgstr "Vlastní typ obsahu není dostupný"
|
930 |
|
931 |
-
#: notification/notification-edit.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
932 |
msgid "Please select subscribers group"
|
933 |
msgstr "Vyberte skupinu odběratelů"
|
934 |
|
935 |
-
#: notification/notification-edit.php:
|
936 |
msgid "Please select notification status"
|
937 |
msgstr "Vyberte stav oznámení"
|
938 |
|
939 |
-
#: notification/notification-edit.php:
|
940 |
msgid "Notification successfully updated. "
|
941 |
-
msgstr "Oznámení bylo úspěšně upraveno."
|
942 |
|
943 |
-
#: notification/notification-edit.php:
|
944 |
msgid "Edit Notification"
|
945 |
msgstr "Upravit oznámení"
|
946 |
|
947 |
-
#: notification/notification-edit.php:
|
948 |
msgid "Update Subscribers Group"
|
949 |
msgstr "Upravit skupinu odběratelů"
|
950 |
|
951 |
-
#: notification/notification-show.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
952 |
msgid "Subscribers Group"
|
953 |
msgstr "Skupina odběratelů"
|
954 |
|
955 |
#: notification/notification-show.php:70 notification/notification-show.php:78
|
|
|
|
|
|
|
|
|
956 |
msgid "Notification Status"
|
957 |
msgstr "Stav oznámení"
|
958 |
|
959 |
-
#: roles/roles-add.php:
|
960 |
msgid "Role Updated. "
|
961 |
-
msgstr "Oprávnění bylo aktualizováno."
|
962 |
|
963 |
-
#: roles/roles-add.php:
|
964 |
msgid "Select user roles who can access following menus. Only Admin can change this."
|
965 |
msgstr ""
|
966 |
"Vyberte uživatelské role, které mají mít přístup k následujícím menu. Pouze "
|
967 |
"správce zde může provádět změny."
|
968 |
|
969 |
-
#: roles/roles-add.php:
|
970 |
msgid "Subscribers Menu"
|
971 |
msgstr "Menu odběratelé"
|
972 |
|
973 |
-
#: roles/roles-add.php:124 roles/roles-add.php:136 roles/roles-add.php:148
|
974 |
-
#: roles/roles-add.php:160 roles/roles-add.php:172 roles/roles-add.php:184
|
975 |
-
#: roles/roles-add.php:196
|
976 |
-
msgid "Administrator Only"
|
977 |
-
msgstr "Pouze administrátor"
|
978 |
-
|
979 |
#: roles/roles-add.php:125 roles/roles-add.php:137 roles/roles-add.php:149
|
980 |
#: roles/roles-add.php:161 roles/roles-add.php:173 roles/roles-add.php:185
|
981 |
#: roles/roles-add.php:197
|
982 |
-
msgid "Administrator
|
983 |
-
msgstr "
|
984 |
|
985 |
#: roles/roles-add.php:126 roles/roles-add.php:138 roles/roles-add.php:150
|
986 |
#: roles/roles-add.php:162 roles/roles-add.php:174 roles/roles-add.php:186
|
987 |
#: roles/roles-add.php:198
|
|
|
|
|
|
|
|
|
|
|
|
|
988 |
msgid "Administrator/Editor/Author/Contributor"
|
989 |
msgstr "Administrátor/Editor/Autor/Spolupracovník"
|
990 |
|
991 |
-
#: roles/roles-add.php:
|
992 |
msgid "Compose Menu"
|
993 |
msgstr "Menu vytvořit"
|
994 |
|
995 |
-
#: roles/roles-add.php:
|
996 |
msgid "Post Notifications Menu"
|
997 |
msgstr "Oznámení o příspěvcích"
|
998 |
|
999 |
-
#: roles/roles-add.php:
|
1000 |
msgid "Newsletters + Cron Settings Menu"
|
1001 |
msgstr "Zpravodaje + Menu nastavení cronu"
|
1002 |
|
1003 |
-
#: roles/roles-add.php:
|
1004 |
msgid "Email Settings Menu"
|
1005 |
msgstr "Menu nastavení emailu"
|
1006 |
|
1007 |
-
#: roles/roles-add.php:
|
1008 |
msgid "Reports Menu"
|
1009 |
msgstr "Menu přehledů"
|
1010 |
|
1011 |
-
#: roles/roles-add.php:
|
1012 |
msgid "Help & Info Menu"
|
1013 |
msgstr "Menu Nápověda"
|
1014 |
|
1015 |
-
#: sendmail/sendmail.php:
|
1016 |
msgid "Please select your mail subject."
|
1017 |
msgstr "Vyberte předmět zprávy."
|
1018 |
|
1019 |
-
#: sendmail/sendmail.php:
|
1020 |
msgid "Please select your mail type."
|
1021 |
msgstr "Vyberte typ zprávy."
|
1022 |
|
1023 |
-
#: sendmail/sendmail.php:
|
1024 |
msgid "Please select your group."
|
1025 |
msgstr "Vyberte skupinu."
|
1026 |
|
1027 |
-
#: sendmail/sendmail.php:
|
1028 |
msgid "Mail sent successfully. "
|
1029 |
-
msgstr "Email byl úspěšně odeslán."
|
1030 |
|
1031 |
-
#: sendmail/sendmail.php:
|
1032 |
msgid "Click here to check Statistics"
|
1033 |
msgstr "Klikněte zde pro kontrolu statistik"
|
1034 |
|
1035 |
-
#: sendmail/sendmail.php:
|
1036 |
msgid "Oops.. We are getting some error. mail not sending."
|
1037 |
msgstr "Nastala chyba. Zprávy se neodesílají."
|
1038 |
|
1039 |
-
#: sendmail/sendmail.php:
|
1040 |
msgid "Use this to send newsletter emails to your subscribers."
|
1041 |
msgstr "Použijete při odeslání emailů svým odběratelům."
|
1042 |
|
1043 |
-
#: sendmail/sendmail.php:
|
1044 |
-
msgid "
|
1045 |
-
msgstr "
|
1046 |
-
|
1047 |
-
#: sendmail/sendmail.php:131
|
1048 |
-
msgid "Select Mail Type"
|
1049 |
-
msgstr "Vyberte typ emailu"
|
1050 |
-
|
1051 |
-
#: sendmail/sendmail.php:145
|
1052 |
-
msgid "Select Subscribers group to Send Mail"
|
1053 |
-
msgstr "Vyberte skupinu odběratelů pro odeslání zprávy"
|
1054 |
|
1055 |
-
#: sendmail/sendmail.php:
|
1056 |
msgid "Recipients : 0 "
|
1057 |
-
msgstr "Příjemců: 0"
|
1058 |
|
1059 |
-
#: sendmail/sendmail.php:
|
1060 |
#, c-format
|
1061 |
msgid "Recipients : %s"
|
1062 |
msgstr "Příjemců: %s"
|
1063 |
|
1064 |
-
#: sendmail/sendmail.php:
|
1065 |
msgid ""
|
1066 |
-
"<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend "
|
1067 |
-
"
|
1068 |
-
"
|
1069 |
msgstr ""
|
1070 |
-
"<br><br><strong>Váš počet příjemců je vyšší než 100.<br>Důrazně doporučujeme,"
|
1071 |
-
"
|
1072 |
-
"
|
1073 |
|
1074 |
-
#: sendmail/sendmail.php:
|
1075 |
msgid "Send Email"
|
1076 |
msgstr "Odeslat email"
|
1077 |
|
1078 |
-
#: sendmail/sendmail.php:
|
1079 |
msgid "Reset"
|
1080 |
msgstr "Reset"
|
1081 |
|
1082 |
-
#: sentmail/deliverreport-show.php:
|
1083 |
msgid "Oops.. Unexpected error occurred. Please try again."
|
1084 |
msgstr "Nastala neznámá chyba. Prosím opakujte akci."
|
1085 |
|
1086 |
-
#: sentmail/deliverreport-show.php:
|
1087 |
msgid " << "
|
1088 |
msgstr " << "
|
1089 |
|
1090 |
-
#: sentmail/deliverreport-show.php:
|
1091 |
msgid " >> "
|
1092 |
msgstr " >> "
|
1093 |
|
1094 |
-
#: sentmail/deliverreport-show.php:
|
1095 |
msgid "Delivery Report"
|
1096 |
msgstr "Hlášení o doručení"
|
1097 |
|
1098 |
-
#: sentmail/deliverreport-show.php:
|
1099 |
-
#: subscribers/view-subscriber-export.php:
|
1100 |
-
#: subscribers/view-subscriber-export.php:
|
1101 |
-
#: 351
|
1102 |
-
#: subscribers/view-subscriber-show.php:365
|
1103 |
msgid "Sno"
|
1104 |
msgstr "Číslo"
|
1105 |
|
1106 |
-
#: sentmail/deliverreport-show.php:
|
1107 |
msgid "Email"
|
1108 |
msgstr "Email"
|
1109 |
|
1110 |
#: sentmail/deliverreport-show.php:74 sentmail/deliverreport-show.php:85
|
|
|
|
|
|
|
|
|
|
|
1111 |
msgid "Sent Date"
|
1112 |
msgstr "Datum odeslání"
|
1113 |
|
1114 |
-
#: sentmail/deliverreport-show.php:
|
1115 |
msgid "Viewed Status"
|
1116 |
msgstr "Stav zobrazení"
|
1117 |
|
1118 |
-
#: sentmail/deliverreport-show.php:
|
1119 |
msgid "Viewed Date"
|
1120 |
msgstr "Datum zobrazení"
|
1121 |
|
1122 |
-
#: sentmail/sentmail-preview.php:
|
1123 |
msgid "Back"
|
1124 |
msgstr "Zpět"
|
1125 |
|
1126 |
-
#: sentmail/sentmail-show.php:
|
1127 |
msgid "Successfully deleted all reports except latest 10."
|
1128 |
msgstr "Úspěšně smazány všechny sestavy kromě posledních 10."
|
1129 |
|
1130 |
-
#: sentmail/sentmail-show.php:
|
1131 |
msgid "It will show reports for all Newsletters & Post Notification emails sent."
|
1132 |
msgstr "Zobrazí přehledy všech odeslaných zpravodajů a oznámení o příspěvcích."
|
1133 |
|
1134 |
-
#: sentmail/sentmail-show.php:
|
1135 |
msgid "View Reports"
|
1136 |
msgstr "Zobrazit hlášení"
|
1137 |
|
1138 |
-
#: sentmail/sentmail-show.php:
|
1139 |
msgid "Type"
|
1140 |
msgstr "Typ"
|
1141 |
|
1142 |
-
#: sentmail/sentmail-show.php:
|
1143 |
msgid "Start Date"
|
1144 |
msgstr "Počáteční datum"
|
1145 |
|
1146 |
-
#: sentmail/sentmail-show.php:
|
1147 |
msgid "End Date"
|
1148 |
msgstr "Datum ukončení"
|
1149 |
|
1150 |
-
#: sentmail/sentmail-show.php:
|
1151 |
msgid "Total"
|
1152 |
msgstr "Celkem"
|
1153 |
|
1154 |
-
#: sentmail/sentmail-show.php:
|
1155 |
-
#: subscribers/view-subscriber-export.php:
|
1156 |
-
#: subscribers/view-subscriber-export.php:
|
1157 |
-
#:
|
1158 |
-
#: subscribers/view-subscriber-show.php:371
|
1159 |
msgid "Action"
|
1160 |
msgstr "Akce"
|
1161 |
|
1162 |
-
#: sentmail/sentmail-show.php:
|
1163 |
msgid "Optimize Table & Delete Records"
|
1164 |
msgstr "Optimalizovat tabulku a smazat záznamy"
|
1165 |
|
1166 |
-
#: sentmail/sentmail-show.php:
|
1167 |
msgid ""
|
1168 |
-
"Note: Please click on <strong>Optimize Table & Delete Records</strong> "
|
1169 |
-
"
|
1170 |
msgstr ""
|
1171 |
-
"Poznámka: Klikněte na tlačítko <strong>Optimalizace tabulek a Smazání "
|
1172 |
-
"
|
1173 |
|
1174 |
-
#: settings/setting-sync.php:
|
1175 |
msgid "Table sync completed successfully."
|
1176 |
msgstr "Synchronizace tabulek byla úspěšná."
|
1177 |
|
1178 |
-
#: settings/setting-sync.php:
|
1179 |
msgid "Sync plugin tables"
|
1180 |
msgstr "Synchronizace tabulek pluginu"
|
1181 |
|
1182 |
-
#: settings/setting-sync.php:
|
1183 |
msgid "Click to sync tables"
|
1184 |
msgstr "Klikněte pro synchronizaci tabulek"
|
1185 |
|
1186 |
-
#: settings/settings-edit.php:
|
1187 |
msgid "Please enter sender of notifications from name."
|
1188 |
-
msgstr "Zadejte jméno odesílatele oznámení.
|
1189 |
|
1190 |
-
#: settings/settings-edit.php:
|
1191 |
msgid "Please enter sender of notifications from email."
|
1192 |
msgstr "Zadejte email odesílatele oznámení."
|
1193 |
|
1194 |
-
#: settings/settings-edit.php:
|
1195 |
msgid "Settings Saved."
|
1196 |
msgstr "Nastavení bylo uloženo."
|
1197 |
|
1198 |
-
#: settings/settings-edit.php:
|
1199 |
msgid "Oops, unable to update."
|
1200 |
msgstr "Nelze aktualizovat."
|
1201 |
|
1202 |
-
#: settings/settings-edit.php:
|
1203 |
msgid "Sender of Notifications"
|
1204 |
msgstr "Odesílatel oznámení"
|
1205 |
|
1206 |
-
#: settings/settings-edit.php:
|
1207 |
msgid ""
|
1208 |
-
"Choose a FROM name and FROM email address for all the emails to be sent from "
|
1209 |
-
"
|
1210 |
msgstr ""
|
1211 |
"Vyberte jméno a emailovou adresu ODESÍLATELE pro všechny oznamovací emaily z "
|
1212 |
"tohoto pluginu."
|
1213 |
|
1214 |
-
#: settings/settings-edit.php:
|
1215 |
msgid "Mail Type"
|
1216 |
msgstr "Typ emailu"
|
1217 |
|
1218 |
-
#: settings/settings-edit.php:
|
1219 |
msgid ""
|
1220 |
-
"Option 1 & 2 is to send mails with default Wordpress method wp_mail(). "
|
1221 |
-
"
|
1222 |
msgstr ""
|
1223 |
-
"Varianty 1 a 2 odesílají emaily výchozí Wordpress metodou wp_mail(). "
|
1224 |
-
"
|
1225 |
|
1226 |
-
#: settings/settings-edit.php:
|
1227 |
msgid "1. WP HTML MAIL"
|
1228 |
msgstr "1. WP HTML ZPRÁVA"
|
1229 |
|
1230 |
-
#: settings/settings-edit.php:
|
1231 |
msgid "2. WP PLAINTEXT MAIL"
|
1232 |
msgstr "2. WP PROSTÝ TEXT"
|
1233 |
|
1234 |
-
#: settings/settings-edit.php:
|
1235 |
msgid "3. PHP HTML MAIL"
|
1236 |
msgstr "3. PHP HTML ZPRÁVA"
|
1237 |
|
1238 |
-
#: settings/settings-edit.php:
|
1239 |
msgid "4. PHP PLAINTEXT MAIL"
|
1240 |
msgstr "4. PHP PROSTÝ TEXT"
|
1241 |
|
1242 |
-
#: settings/settings-edit.php:
|
1243 |
-
msgid "Opt-in Option"
|
1244 |
-
msgstr "Nastavení potvrzení"
|
1245 |
-
|
1246 |
-
#: settings/settings-edit.php:231
|
1247 |
msgid ""
|
1248 |
"Double Opt In means subscribers need to confirm their email address by an "
|
1249 |
-
"activation link sent them on a activation email message.<br />Single Opt In "
|
1250 |
-
"
|
1251 |
msgstr ""
|
1252 |
-
"Dvojité potvrzení, znamená, že požadujete aby odběratelé potvrdili svou "
|
1253 |
-
"
|
1254 |
-
"
|
1255 |
-
"adresu."
|
1256 |
|
1257 |
-
#: settings/settings-edit.php:
|
1258 |
msgid "Double Opt In"
|
1259 |
msgstr "Dvojí potvrzení"
|
1260 |
|
1261 |
-
#: settings/settings-edit.php:
|
1262 |
-
#: subscribers/view-subscriber-edit.php:
|
1263 |
-
#: subscribers/view-subscriber-import.php:
|
1264 |
-
#: subscribers/view-subscriber-show.php:
|
1265 |
-
#: 329
|
1266 |
msgid "Single Opt In"
|
1267 |
msgstr "Jednoduché potvrzení"
|
1268 |
|
1269 |
-
#: settings/settings-edit.php:
|
1270 |
msgid "Image Size"
|
1271 |
msgstr "Velikost obrázku"
|
1272 |
|
1273 |
-
#: settings/settings-edit.php:
|
1274 |
msgid ""
|
1275 |
-
"Select image size for ###POSTIMAGE### to be shown in the Post Notification "
|
1276 |
-
"Emails."
|
1277 |
msgstr ""
|
1278 |
"Vyberte velikost obrázku ###POSTIMAGE###, který se zobrazí v emailu oznámení "
|
1279 |
-
"příspěvku"
|
1280 |
|
1281 |
-
#: settings/settings-edit.php:
|
1282 |
msgid "Full Size"
|
1283 |
msgstr "Plná velikost"
|
1284 |
|
1285 |
-
#: settings/settings-edit.php:
|
1286 |
msgid "Medium Size"
|
1287 |
msgstr "Střední velikost"
|
1288 |
|
1289 |
-
#: settings/settings-edit.php:
|
1290 |
msgid "Thumbnail"
|
1291 |
msgstr "Náhled"
|
1292 |
|
1293 |
-
#: settings/settings-edit.php:
|
1294 |
-
msgid "Double Opt In Mail Subject (Confirmation Email)"
|
1295 |
-
msgstr "Nastavení předmětu emailu (Potvrzovací email)"
|
1296 |
-
|
1297 |
-
#: settings/settings-edit.php:256
|
1298 |
-
msgid ""
|
1299 |
-
"Enter the subject for the confirmation email to be sent Double Opt In "
|
1300 |
-
"whenever a user signs up."
|
1301 |
-
msgstr ""
|
1302 |
-
"Zadejte předmět potvrzovacího emailu pro odeslání uživateli při přihlášení "
|
1303 |
-
"dvojitým potvrzením."
|
1304 |
-
|
1305 |
-
#: settings/settings-edit.php:262
|
1306 |
-
msgid "Double Opt In Mail Content (Confirmation Email)"
|
1307 |
-
msgstr "Nastavení obsahu emailu (Potvrzovací email)"
|
1308 |
-
|
1309 |
-
#: settings/settings-edit.php:263
|
1310 |
-
msgid ""
|
1311 |
-
"Enter the content for the confirmation email to be sent for Double Opt In "
|
1312 |
-
"whenever a user signs up. (Keyword: ###NAME###)"
|
1313 |
-
msgstr ""
|
1314 |
-
"Zadejte obsah potvrzovacího emailu pro odeslání uživateli při přihlášení "
|
1315 |
-
"dvojitým potvrzením. (Klíčové slovo: ###NAME###)"
|
1316 |
-
|
1317 |
-
#: settings/settings-edit.php:269
|
1318 |
msgid "Double Opt In Confirmation Link"
|
1319 |
msgstr "Potvrzovací odkaz pro dvojité potvrzení. Není nutné tuto hodnotu měnit."
|
1320 |
|
1321 |
-
#: settings/settings-edit.php:
|
1322 |
msgid "It is a readonly field and you are advised not to modify it."
|
1323 |
msgstr "Toto je pole pouze pro čtení a doporučujeme hodnotu neupravovat."
|
1324 |
|
1325 |
-
#: settings/settings-edit.php:
|
1326 |
-
msgid ""
|
1327 |
-
"Text to display after Email is successfully subscribed from Double Opt In "
|
1328 |
-
"(confirmation) Email"
|
1329 |
-
msgstr "Text se zobrazí po úspěšném přihlášení emailu při dvojitém potvrzení emailu"
|
1330 |
-
|
1331 |
-
#: settings/settings-edit.php:277
|
1332 |
msgid ""
|
1333 |
-
"This text will be displayed once user clicks on email confirmation link from "
|
1334 |
-
"
|
1335 |
msgstr ""
|
1336 |
-
"Tento text bude zobrazen po kliknutí na odkaz v potvrzovacím emailu při "
|
1337 |
-
"
|
1338 |
|
1339 |
-
#: settings/settings-edit.php:
|
1340 |
msgid "Subscriber Welcome Email"
|
1341 |
msgstr "Uvítací email pro odběratele"
|
1342 |
|
1343 |
-
#: settings/settings-edit.php:
|
1344 |
msgid ""
|
1345 |
-
"To send welcome email to subscriber after successful signup. This option "
|
1346 |
-
"
|
1347 |
msgstr ""
|
1348 |
-
"Chcete-li odeslat uvítací email odběrateli po úspěšné registraci musí být "
|
1349 |
-
"
|
1350 |
-
|
1351 |
-
#: settings/settings-edit.php:289 settings/settings-edit.php:362
|
1352 |
-
#: subscribers/view-subscriber-sync.php:106
|
1353 |
-
msgid "YES"
|
1354 |
-
msgstr "ANO"
|
1355 |
|
1356 |
-
#: settings/settings-edit.php:
|
1357 |
-
#: subscribers/view-subscriber-sync.php:105
|
1358 |
-
msgid "NO"
|
1359 |
-
msgstr "NE"
|
1360 |
-
|
1361 |
-
#: settings/settings-edit.php:296
|
1362 |
msgid "Subscriber Welcome Email Subject"
|
1363 |
msgstr "Předmět uvítacího emailu pro odběratele"
|
1364 |
|
1365 |
-
#: settings/settings-edit.php:
|
1366 |
-
msgid ""
|
1367 |
-
"Enter the subject for the subscriber welcome email. This will be sent "
|
1368 |
-
"whenever a user's email is either confirmed (if Double Opt In) / subscribed "
|
1369 |
-
"(if Single Op In) successfully."
|
1370 |
-
msgstr ""
|
1371 |
-
"Zadejte předmět uvítacího emailu. Bude odeslán jestliže uživatelský email "
|
1372 |
-
"bude úspěšně potvrzen (dvojité potvrzení) / přihlášen (jednoduché potvrzení)."
|
1373 |
-
|
1374 |
-
#: settings/settings-edit.php:303
|
1375 |
msgid "Subscriber Welcome Email Content"
|
1376 |
msgstr "Obsah uvítacího emailu pro odběratele"
|
1377 |
|
1378 |
-
#: settings/settings-edit.php:
|
1379 |
-
msgid ""
|
1380 |
-
"Enter the content for the subscriber welcome email whenever a user's email "
|
1381 |
-
"is either confirmed (if Double Opt In) / subscribed (if Single Opt In) "
|
1382 |
-
"successfully. (Keyword: ###NAME###)"
|
1383 |
-
msgstr ""
|
1384 |
-
"Zadejte předmět uvítacího emailu. Bude odeslán jestliže uživatelský email "
|
1385 |
-
"bude úspěšně potvrzen (dvojité potvrzení) / přihlášen (jednoduché potvrzení)."
|
1386 |
-
" (Klíčové slovo: ###NAME###)"
|
1387 |
-
|
1388 |
-
#: settings/settings-edit.php:312
|
1389 |
msgid "Unsubscribe Link"
|
1390 |
msgstr "Odhlašovací odkaz"
|
1391 |
|
1392 |
-
#: settings/settings-edit.php:
|
1393 |
msgid "Unsubscribe Text in Email"
|
1394 |
msgstr "Text emailu pro odhlášení"
|
1395 |
|
1396 |
-
#: settings/settings-edit.php:
|
1397 |
msgid ""
|
1398 |
-
"Enter the text for the unsubscribe link. This text is added with unsubscribe "
|
1399 |
-
"
|
1400 |
msgstr ""
|
1401 |
-
"Zadejte text odkazu pro odhlášení. Tento text je přidán do odkazu pro "
|
1402 |
-
"
|
1403 |
-
|
1404 |
-
#: settings/settings-edit.php:326
|
1405 |
-
msgid "Text to display after Email is unsubscribed"
|
1406 |
-
msgstr "Text bude zobrazen po odhlášení emailu"
|
1407 |
|
1408 |
-
#: settings/settings-edit.php:
|
1409 |
msgid "This text will be displayed once user clicks on unsubscribe link."
|
1410 |
-
msgstr "Tento text bude zobrazen při prvním kliknutí na odhlašovací odkaz"
|
1411 |
-
|
1412 |
-
#: settings/settings-edit.php:334
|
1413 |
-
msgid "Error in Confirmation Link"
|
1414 |
-
msgstr "Chybové hlášení potvrzovacího odkazu"
|
1415 |
|
1416 |
-
#: settings/settings-edit.php:
|
1417 |
msgid ""
|
1418 |
-
"Default message to display if there is any issue while clicking on "
|
1419 |
-
"
|
1420 |
msgstr ""
|
1421 |
"Základní zpráva k zobrazení po kliknutí na potvrzovací odkaz při dvojitém "
|
1422 |
"potvrzení emailu."
|
1423 |
|
1424 |
-
#: settings/settings-edit.php:
|
1425 |
-
msgid "Error in Unsubscribe Link"
|
1426 |
-
msgstr "Chybové hlášení odhlašovacího odkazu"
|
1427 |
-
|
1428 |
-
#: settings/settings-edit.php:342
|
1429 |
msgid ""
|
1430 |
-
"Default message to display if there is any issue while clicking on "
|
1431 |
-
"
|
1432 |
msgstr "Základní zpráva k zobrazení po kliknutí na odhlašovací odkaz v emailu."
|
1433 |
|
1434 |
-
#: settings/settings-edit.php:
|
1435 |
msgid "Admin Email Addresses"
|
1436 |
msgstr "Emailová adresa administrátora"
|
1437 |
|
1438 |
-
#: settings/settings-edit.php:
|
1439 |
-
msgid ""
|
1440 |
-
"Enter the admin email addresses that should receive notifications (separated "
|
1441 |
-
"by comma)."
|
1442 |
-
msgstr ""
|
1443 |
-
"Zadejte emailové adresy administrátorů, kteří by měli přijímat oznámení "
|
1444 |
-
"(oddělené čárkou)."
|
1445 |
-
|
1446 |
-
#: settings/settings-edit.php:356
|
1447 |
-
msgid "Notify Admin about New Subscriber"
|
1448 |
-
msgstr "Oznámení administrátorovi o novém odběrateli"
|
1449 |
-
|
1450 |
-
#: settings/settings-edit.php:357
|
1451 |
-
msgid ""
|
1452 |
-
"To send admin email notifications for the new subscriber. This option must "
|
1453 |
-
"be set to YES."
|
1454 |
-
msgstr ""
|
1455 |
-
"Pro odeslání oznámení administrátorovi o novém odběrateli, je nutné volbu "
|
1456 |
-
"nastavit na ANO."
|
1457 |
-
|
1458 |
-
#: settings/settings-edit.php:369
|
1459 |
-
msgid "Admin Email Subject"
|
1460 |
-
msgstr "Subjekt emailu pro administrátora"
|
1461 |
-
|
1462 |
-
#: settings/settings-edit.php:370
|
1463 |
msgid ""
|
1464 |
-
"Enter the
|
1465 |
-
"
|
1466 |
msgstr ""
|
1467 |
-
"Zadejte
|
1468 |
-
"
|
1469 |
|
1470 |
-
#: settings/settings-edit.php:
|
1471 |
-
msgid "Admin Email Content"
|
1472 |
-
msgstr "Obsah emailu pro administrátora"
|
1473 |
-
|
1474 |
-
#: settings/settings-edit.php:377
|
1475 |
msgid ""
|
1476 |
-
"
|
1477 |
-
"
|
1478 |
msgstr ""
|
1479 |
-
"
|
1480 |
-
"
|
1481 |
|
1482 |
-
#: settings/settings-edit.php:
|
1483 |
msgid "Sent Report Subject"
|
1484 |
msgstr "Předmět emailu pro hlášení o odeslání"
|
1485 |
|
1486 |
-
#: settings/settings-edit.php:
|
1487 |
-
msgid "Enter the subject for the sent email report. It will be mailed to Admin."
|
1488 |
-
msgstr ""
|
1489 |
-
"Zadejte předmět emailu s přehledem o odeslání. Bude odesílán "
|
1490 |
-
"administrátorovi."
|
1491 |
-
|
1492 |
-
#: settings/settings-edit.php:391
|
1493 |
msgid "Sent Report Content"
|
1494 |
msgstr "Obsah hlášení o odeslání"
|
1495 |
|
1496 |
-
#: settings/settings-edit.php:
|
1497 |
-
msgid ""
|
1498 |
-
"Enter the content for the sent mail report. It will be mailed to Admin. "
|
1499 |
-
"(Keyword: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
|
1500 |
-
msgstr ""
|
1501 |
-
"Zadejte obsah emailu s přehledem. Bude odesílán administrátorovi. (Klíčová "
|
1502 |
-
"slova: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
|
1503 |
-
|
1504 |
-
#: settings/settings-edit.php:402
|
1505 |
msgid "Save Settings"
|
1506 |
msgstr "Uložit nastavení"
|
1507 |
|
1508 |
-
#: subscribers/view-subscriber-add.php:
|
1509 |
msgid "Please enter subscriber email address."
|
1510 |
msgstr "Zadejte emailovou adresu odběratele."
|
1511 |
|
1512 |
-
#: subscribers/view-subscriber-add.php:
|
1513 |
msgid "Please select or create your group for this email."
|
1514 |
msgstr "Vyberte nebo vytvořte skupinu pro tento email."
|
1515 |
|
1516 |
-
#: subscribers/view-subscriber-add.php:
|
1517 |
msgid ""
|
1518 |
-
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1519 |
-
"
|
1520 |
msgstr ""
|
1521 |
-
"Chyba: Speciální znaky (['^$%&*()}{@#~?><>,|=_+\\\"]) v názvu skupiny nelze "
|
1522 |
-
"použít."
|
1523 |
|
1524 |
-
#: subscribers/view-subscriber-add.php:
|
1525 |
msgid "Subscriber has been saved."
|
1526 |
msgstr "Odběratel byl uložen."
|
1527 |
|
1528 |
-
#: subscribers/view-subscriber-add.php:
|
1529 |
msgid "Subscriber already exists."
|
1530 |
msgstr "Odběratel již existuje."
|
1531 |
|
1532 |
-
#: subscribers/view-subscriber-add.php:
|
1533 |
msgid "Invalid Email."
|
1534 |
msgstr "Neplatný email."
|
1535 |
|
1536 |
-
#: subscribers/view-subscriber-add.php:
|
1537 |
-
#: subscribers/view-subscriber-export.php:
|
1538 |
-
#: subscribers/view-subscriber-import.php:
|
1539 |
-
#: subscribers/view-subscriber-show.php:
|
1540 |
msgid "Add New Subscriber"
|
1541 |
msgstr "Přidat nového odběratele"
|
1542 |
|
1543 |
-
#: subscribers/view-subscriber-add.php:
|
1544 |
-
#: subscribers/view-subscriber-export.php:
|
1545 |
-
#: subscribers/view-subscriber-import.php:
|
1546 |
-
#: subscribers/view-subscriber-show.php:
|
1547 |
msgid "Import"
|
1548 |
msgstr "Import"
|
1549 |
|
1550 |
-
#: subscribers/view-subscriber-add.php:
|
1551 |
-
#: subscribers/view-subscriber-import.php:
|
1552 |
-
#: subscribers/view-subscriber-show.php:
|
1553 |
msgid "Export"
|
1554 |
msgstr "Export"
|
1555 |
|
1556 |
-
#: subscribers/view-subscriber-add.php:
|
1557 |
-
#: subscribers/view-subscriber-export.php:
|
1558 |
-
#: subscribers/view-subscriber-import.php:
|
1559 |
-
#: subscribers/view-subscriber-show.php:
|
1560 |
-
#: 142
|
1561 |
msgid "Sync"
|
1562 |
msgstr "Synchronizovat"
|
1563 |
|
1564 |
-
#: subscribers/view-subscriber-add.php:
|
1565 |
msgid "Enter Subscriber's Full name"
|
1566 |
msgstr "Zadejte celé jméno odběratele"
|
1567 |
|
1568 |
-
#: subscribers/view-subscriber-add.php:
|
1569 |
msgid "Enter Subscriber's Email Address"
|
1570 |
msgstr "Zadejte emailovou adresu odběratele"
|
1571 |
|
1572 |
-
#: subscribers/view-subscriber-add.php:
|
1573 |
msgid "Select Subscriber's Status"
|
1574 |
msgstr "Vyberte stav odběratele"
|
1575 |
|
1576 |
-
#: subscribers/view-subscriber-add.php:
|
1577 |
-
#: subscribers/view-subscriber-import.php:
|
1578 |
-
#: subscribers/view-subscriber-show.php:
|
1579 |
-
#: 326
|
1580 |
msgid "Confirmed"
|
1581 |
msgstr "Potvrzeno"
|
1582 |
|
1583 |
-
#: subscribers/view-subscriber-add.php:
|
1584 |
-
#: subscribers/view-subscriber-import.php:
|
1585 |
-
#: subscribers/view-subscriber-show.php:
|
1586 |
-
#: 327
|
1587 |
msgid "Unconfirmed"
|
1588 |
msgstr "Nepotvrzeno"
|
1589 |
|
1590 |
-
#: subscribers/view-subscriber-add.php:
|
1591 |
-
#: subscribers/view-subscriber-import.php:
|
1592 |
-
#: subscribers/view-subscriber-show.php:
|
1593 |
-
#: 328
|
1594 |
msgid "Unsubscribed"
|
1595 |
msgstr "Zrušen odběr"
|
1596 |
|
1597 |
-
#: subscribers/view-subscriber-add.php:
|
1598 |
msgid "Select (or) Create Group for Subscriber"
|
1599 |
msgstr "Vyberte (nebo) vytvořte skupinu pro odběratele"
|
1600 |
|
1601 |
-
#: subscribers/view-subscriber-add.php:
|
1602 |
-
#: 201
|
1603 |
msgid "(or)"
|
1604 |
msgstr "(nebo)"
|
1605 |
|
1606 |
-
#: subscribers/view-subscriber-add.php:
|
1607 |
msgid "Add Subscriber"
|
1608 |
msgstr "Přidat odběratele"
|
1609 |
|
1610 |
-
#: subscribers/view-subscriber-edit.php:
|
1611 |
msgid "Error: Special characters are not allowed in the group name."
|
1612 |
msgstr "Chyba: Speciální znaky v názvu skupiny nelze použít."
|
1613 |
|
1614 |
-
#: subscribers/view-subscriber-edit.php:
|
1615 |
msgid "Subscriber details updated."
|
1616 |
msgstr "Podrobnosti odběratele byly aktualizovány."
|
1617 |
|
1618 |
-
#: subscribers/view-subscriber-edit.php:
|
1619 |
msgid "Subscriber already exists for this group."
|
1620 |
msgstr "Odběratel již v této skupině existuje."
|
1621 |
|
1622 |
-
#: subscribers/view-subscriber-edit.php:
|
1623 |
msgid "Edit Subscriber"
|
1624 |
msgstr "Upravit odběratele"
|
1625 |
|
1626 |
-
#: subscribers/view-subscriber-edit.php:
|
1627 |
msgid "Subscriber's Full Name"
|
1628 |
msgstr "Celé jména odběratele"
|
1629 |
|
1630 |
-
#: subscribers/view-subscriber-edit.php:
|
1631 |
msgid "Subscriber's Email Address"
|
1632 |
msgstr "Emailová adresa odběratele"
|
1633 |
|
1634 |
-
#: subscribers/view-subscriber-edit.php:
|
1635 |
msgid "Update Subscriber's Status"
|
1636 |
msgstr "Změna stavu odběratele"
|
1637 |
|
1638 |
-
#: subscribers/view-subscriber-edit.php:
|
1639 |
msgid "Update Subscriber's Group"
|
1640 |
-
msgstr "Změna skupiny odběratele
|
1641 |
|
1642 |
-
#: subscribers/view-subscriber-export.php:
|
1643 |
msgid "Export Email Addresses"
|
1644 |
msgstr "Exportovat emailové adresy"
|
1645 |
|
1646 |
-
#: subscribers/view-subscriber-export.php:
|
1647 |
-
#: subscribers/view-subscriber-export.php:
|
1648 |
msgid "Type of List to Export"
|
1649 |
msgstr "Typ seznamu pro export"
|
1650 |
|
1651 |
-
#: subscribers/view-subscriber-export.php:
|
1652 |
-
#: subscribers/view-subscriber-export.php:46
|
1653 |
-
msgid "Total Emails"
|
1654 |
-
msgstr "Celkem emailů"
|
1655 |
-
|
1656 |
-
#: subscribers/view-subscriber-export.php:52
|
1657 |
msgid "1"
|
1658 |
msgstr "1"
|
1659 |
|
1660 |
-
#: subscribers/view-subscriber-export.php:
|
1661 |
-
|
1662 |
-
|
1663 |
-
|
1664 |
-
#: subscribers/view-subscriber-export.php:
|
1665 |
-
#: subscribers/view-subscriber-export.php:61
|
1666 |
-
#: subscribers/view-subscriber-export.php:67
|
1667 |
msgid "Click to Export in CSV"
|
1668 |
msgstr "Klikněte pro export do CSV"
|
1669 |
|
1670 |
-
#: subscribers/view-subscriber-export.php:
|
1671 |
msgid "2"
|
1672 |
msgstr "2"
|
1673 |
|
1674 |
-
#: subscribers/view-subscriber-export.php:
|
1675 |
-
msgid "WordPress Registered Users"
|
1676 |
-
msgstr "WordPress registrovaní uživatelé"
|
1677 |
-
|
1678 |
-
#: subscribers/view-subscriber-export.php:64
|
1679 |
msgid "3"
|
1680 |
msgstr "3"
|
1681 |
|
1682 |
-
#: subscribers/view-subscriber-export.php:
|
|
|
|
|
|
|
|
|
1683 |
msgid "Commented Authors"
|
1684 |
msgstr "Autoři komentářů"
|
1685 |
|
1686 |
-
#: subscribers/view-subscriber-import.php:
|
1687 |
msgid ""
|
1688 |
-
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
|
1689 |
-
"
|
1690 |
msgstr ""
|
1691 |
-
"Chyba: Speciální znaky (['^$%&*()}{@#~?><>,|=_+\\\"]) v názvu skupiny nelze "
|
1692 |
-
"použít."
|
1693 |
|
1694 |
-
#: subscribers/view-subscriber-import.php:
|
1695 |
msgid "email imported."
|
1696 |
msgstr "email byl importován."
|
1697 |
|
1698 |
-
#: subscribers/view-subscriber-import.php:
|
1699 |
msgid "email already exists."
|
1700 |
msgstr "email již existuje."
|
1701 |
|
1702 |
-
#: subscribers/view-subscriber-import.php:
|
1703 |
msgid "email are invalid."
|
1704 |
msgstr "emaily jsou neplatné."
|
1705 |
|
1706 |
-
#: subscribers/view-subscriber-import.php:
|
1707 |
-
#: subscribers/view-subscriber-import.php:
|
1708 |
msgid "Click here"
|
1709 |
msgstr "Klikněte zde"
|
1710 |
|
1711 |
-
#: subscribers/view-subscriber-import.php:
|
1712 |
-
#: subscribers/view-subscriber-import.php:
|
1713 |
msgid " to view details."
|
1714 |
-
msgstr "pro zobrazení podrobností."
|
1715 |
|
1716 |
-
#: subscribers/view-subscriber-import.php:
|
1717 |
msgid "File Upload Failed."
|
1718 |
msgstr "Nahrávání souboru selhalo."
|
1719 |
|
1720 |
-
#: subscribers/view-subscriber-import.php:
|
1721 |
msgid "Import Email Addresses"
|
1722 |
msgstr "Import emailových adres"
|
1723 |
|
1724 |
-
#: subscribers/view-subscriber-import.php:
|
1725 |
msgid "Select CSV file"
|
1726 |
msgstr "Vyberte soubor CSV"
|
1727 |
|
1728 |
-
#: subscribers/view-subscriber-import.php:
|
1729 |
msgid "Check CSV structure "
|
1730 |
-
msgstr "Zkontrolujte CSV strukturu"
|
1731 |
|
1732 |
-
#: subscribers/view-subscriber-import.php:
|
1733 |
msgid "from here"
|
1734 |
msgstr "zde"
|
1735 |
|
1736 |
-
#: subscribers/view-subscriber-import.php:
|
1737 |
msgid "Select Subscribers Email Status"
|
1738 |
msgstr "Vybrat stav emailů odběratelů"
|
1739 |
|
1740 |
-
#: subscribers/view-subscriber-import.php:
|
1741 |
msgid "Select (or) Create Group for Subscribers"
|
1742 |
msgstr "Vyberte (nebo) vytvořte skupinu pro odběratele"
|
1743 |
|
1744 |
-
#: subscribers/view-subscriber-show.php:
|
1745 |
msgid "Selected details does not exists."
|
1746 |
msgstr "Vybrané detaily neexistují."
|
1747 |
|
1748 |
-
#: subscribers/view-subscriber-show.php:
|
1749 |
msgid "Record deleted."
|
1750 |
msgstr "Záznam byl smazán."
|
1751 |
|
1752 |
-
#: subscribers/view-subscriber-show.php:
|
1753 |
msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
|
1754 |
msgstr ""
|
1755 |
-
"Chcete-li odeslat potvrzovací email, změňte možnost potvrzení na dvojité "
|
1756 |
-
"potvrzení."
|
1757 |
|
1758 |
-
#: subscribers/view-subscriber-show.php:
|
1759 |
msgid "Confirmation emails Resent Successfully."
|
1760 |
msgstr "Potvrzovací emaily úspěšně odeslány."
|
1761 |
|
1762 |
-
#: subscribers/view-subscriber-show.php:
|
1763 |
-
#: subscribers/view-subscriber-show.php:
|
1764 |
-
#: 215
|
1765 |
msgid "No record was selected."
|
1766 |
msgstr "Není vybrán žádný záznam."
|
1767 |
|
1768 |
-
#: subscribers/view-subscriber-show.php:
|
1769 |
msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
|
1770 |
msgstr ""
|
1771 |
"Chcete-li odeslat potvrzovací zprávu, změňte možnost potvrzení na dvojité "
|
1772 |
"potvrzení."
|
1773 |
|
1774 |
-
#: subscribers/view-subscriber-show.php:
|
1775 |
msgid "Subscribers Group updated."
|
1776 |
msgstr "Skupina odběratelů je upravena."
|
1777 |
|
1778 |
-
#: subscribers/view-subscriber-show.php:
|
1779 |
msgid "Please select New group to update."
|
1780 |
msgstr "Vyberte novou skupinu k úpravě."
|
1781 |
|
1782 |
-
#: subscribers/view-subscriber-show.php:
|
1783 |
msgid "Subscribers Status updated."
|
1784 |
msgstr "Stav odběratele upraven."
|
1785 |
|
1786 |
-
#: subscribers/view-subscriber-show.php:
|
1787 |
msgid "Please select New Status to update."
|
1788 |
msgstr "Vyberte nový stav ke změně."
|
1789 |
|
1790 |
-
#: subscribers/view-subscriber-show.php:
|
1791 |
msgid "Bulk Actions"
|
1792 |
msgstr "Hromadné úpravy"
|
1793 |
|
1794 |
-
#: subscribers/view-subscriber-show.php:
|
1795 |
-
#: 411
|
1796 |
msgid "Resend Confirmation"
|
1797 |
msgstr "Znovu odeslat povtrzení"
|
1798 |
|
1799 |
-
#: subscribers/view-subscriber-show.php:
|
1800 |
msgid "Update Subscribers Status"
|
1801 |
msgstr "Změna stavu odběratele"
|
1802 |
|
1803 |
-
#: subscribers/view-subscriber-show.php:
|
1804 |
msgid "Select Group"
|
1805 |
msgstr "Vyberte skupinu"
|
1806 |
|
1807 |
-
#: subscribers/view-subscriber-show.php:
|
1808 |
-
#: 325
|
1809 |
-
msgid "All Status"
|
1810 |
-
msgstr "Všechny stavy"
|
1811 |
-
|
1812 |
-
#: subscribers/view-subscriber-show.php:304
|
1813 |
msgid "Apply"
|
1814 |
msgstr "Použít"
|
1815 |
|
1816 |
-
#: subscribers/view-subscriber-show.php:
|
1817 |
msgid "All Groups"
|
1818 |
msgstr "Všechny skupiny"
|
1819 |
|
1820 |
-
#: subscribers/view-subscriber-show.php:332
|
1821 |
-
msgid "1 to 200 emails"
|
1822 |
-
msgstr "1 - 200 emailů"
|
1823 |
-
|
1824 |
-
#: subscribers/view-subscriber-show.php:333
|
1825 |
-
msgid "201 to 400"
|
1826 |
-
msgstr "201 - 400"
|
1827 |
-
|
1828 |
-
#: subscribers/view-subscriber-show.php:334
|
1829 |
-
msgid "401 to 600"
|
1830 |
-
msgstr "401 - 600"
|
1831 |
-
|
1832 |
#: subscribers/view-subscriber-show.php:335
|
1833 |
-
msgid "
|
1834 |
-
msgstr "
|
1835 |
-
|
1836 |
-
#: subscribers/view-subscriber-show.php:336
|
1837 |
-
msgid "801 to 1000"
|
1838 |
-
msgstr "801 - 1000"
|
1839 |
-
|
1840 |
-
#: subscribers/view-subscriber-show.php:337
|
1841 |
-
msgid "1001 to 2000"
|
1842 |
-
msgstr "1001 - 2000"
|
1843 |
-
|
1844 |
-
#: subscribers/view-subscriber-show.php:338
|
1845 |
-
msgid "2001 to 5000"
|
1846 |
-
msgstr "2001 - 5000"
|
1847 |
-
|
1848 |
-
#: subscribers/view-subscriber-show.php:339
|
1849 |
-
msgid "5001 to 10000"
|
1850 |
-
msgstr "5001 - 10000"
|
1851 |
|
1852 |
-
#: subscribers/view-subscriber-show.php:
|
1853 |
msgid "Display All"
|
1854 |
msgstr "Zobrazit vše"
|
1855 |
|
1856 |
-
#: subscribers/view-subscriber-show.php:
|
1857 |
-
#: 366
|
1858 |
msgid "Email Address"
|
1859 |
msgstr "Emailová adresa"
|
1860 |
|
1861 |
-
#: subscribers/view-subscriber-show.php:
|
1862 |
-
#: 369
|
1863 |
msgid "Group"
|
1864 |
msgstr "Skupina"
|
1865 |
|
1866 |
-
#: subscribers/view-subscriber-
|
1867 |
-
#: 370
|
1868 |
-
msgid "Signup Date<br>(YYYY-MM-DD)"
|
1869 |
-
msgstr "Datum přihlášení<br>(YYYY-MM-DD)"
|
1870 |
-
|
1871 |
-
#: subscribers/view-subscriber-sync.php:35
|
1872 |
msgid "Please select default group to newly registered user."
|
1873 |
-
msgstr "Vyberte výchozí skupinu pro nově registrované uživatele"
|
1874 |
|
1875 |
-
#: subscribers/view-subscriber-sync.php:
|
1876 |
msgid "Emails Successfully Synced."
|
1877 |
msgstr "Emaily byly úspěšně synchronizovány."
|
1878 |
|
1879 |
-
#: subscribers/view-subscriber-sync.php:
|
1880 |
msgid "Sync Email"
|
1881 |
msgstr "Synchronizace emailu"
|
1882 |
|
1883 |
-
#: subscribers/view-subscriber-sync.php:
|
1884 |
msgid "Sync newly registered users to subscribers list"
|
1885 |
msgstr "Synchronizovat nově registrované uživatele do seznamu"
|
1886 |
|
1887 |
-
#: subscribers/view-subscriber-sync.php:
|
1888 |
msgid "Select group to add newly registered users to"
|
1889 |
msgstr "Vybert skupinu do které se mají přidávat nově registrovaní uživatelé"
|
1890 |
|
@@ -1899,6 +1908,15 @@ msgstr "Email Subscribers & Newsletters"
|
|
1899 |
msgid "http://www.icegram.com/"
|
1900 |
msgstr "http://www.icegram.com/"
|
1901 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1902 |
#. Author of the plugin/theme
|
1903 |
msgid "Icegram"
|
1904 |
msgstr "Icegram"
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.2.10\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2017-05-11 05:14:33+00:00\n"
|
6 |
+
"PO-Revision-Date: 2017-05-27 19:31+0200\n"
|
7 |
+
"Last-Translator: admin <mansi.shah@appsmagnet.com>\n"
|
8 |
+
"Language-Team: StoreApps <support@storeapps.org>\n"
|
9 |
+
"Language: cs\n"
|
10 |
+
"Plural-Forms: nplurals=3; plural=( n == 1 ) ? 0 : ( n >= 2 && n <= 4 ) ? 1 : 2;\n"
|
|
|
11 |
"MIME-Version: 1.0\n"
|
12 |
"Content-Type: text/plain; charset=UTF-8\n"
|
13 |
"Content-Transfer-Encoding: 8bit\n"
|
14 |
"X-Poedit-SourceCharset: UTF-8\n"
|
15 |
+
"X-Generator: Poedit 2.0.1\n"
|
16 |
"X-Poedit-Basepath: .\n"
|
17 |
+
"X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;__:1;"
|
18 |
+
"_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;_x:1,2c;"
|
19 |
+
"_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;esc_attr__:1;"
|
20 |
+
"esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;esc_html_x:1,2c;"
|
21 |
+
"comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
|
22 |
"X-Loco-Target-Locale: cs_CZ\n"
|
23 |
+
"X-Poedit-SearchPath-0: ..\n"
|
24 |
|
25 |
+
#: base/es-defined.php:32
|
26 |
+
msgid ""
|
27 |
+
"If you like <strong>Email Subscribers</strong>, please consider leaving us a <a "
|
28 |
+
"target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-subscribers/"
|
29 |
+
"reviews/?filter=5#new-post\">★★★★★</a> rating. A "
|
30 |
+
"huge thank you from Icegram in advance!"
|
31 |
+
msgstr ""
|
32 |
+
"Pokud se vám líbí <strong> Email Subscribers </strong>, zvažte, prosím, zanechání "
|
33 |
+
"<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-subscribers/"
|
34 |
+
"reviews/?filter=5#new-post\">★★★★★</a> hodnocení. "
|
35 |
+
"Icegram předem mnohokrát děkuje!"
|
36 |
|
37 |
+
#: classes/es-register.php:257
|
38 |
+
msgctxt "widget-enhanced-select"
|
39 |
+
msgid "Please enter email address"
|
40 |
+
msgstr "Zadejte emailovou adresu"
|
41 |
|
42 |
+
#: classes/es-register.php:258
|
43 |
+
msgctxt "widget-enhanced-select"
|
44 |
+
msgid "Please provide a valid email address"
|
45 |
+
msgstr "Zadejte platnou emailovou adresu"
|
46 |
|
47 |
+
#: classes/es-register.php:261
|
48 |
+
msgctxt "widget-enhanced-select"
|
49 |
+
msgid "Successfully Subscribed."
|
50 |
+
msgstr "Úspěšné přihlášení k odběru."
|
51 |
|
52 |
+
#: classes/es-register.php:263
|
53 |
+
msgctxt "widget-enhanced-select"
|
54 |
+
msgid "Email Address already exists!"
|
55 |
+
msgstr "Emailová adresa již existuje!"
|
56 |
|
57 |
+
#: classes/es-register.php:265
|
58 |
+
msgctxt "widget-enhanced-select"
|
59 |
+
msgid "Invalid email address"
|
60 |
+
msgstr "Neplatná emailová adresa"
|
61 |
|
62 |
+
#: classes/es-register.php:266
|
63 |
+
msgctxt "widget-enhanced-select"
|
64 |
+
msgid "Please try after some time"
|
65 |
+
msgstr "Prosím, zkuste to později"
|
66 |
|
67 |
+
#: classes/es-register.php:267
|
68 |
+
msgctxt "widget-enhanced-select"
|
69 |
+
msgid "There was a problem with the request"
|
70 |
+
msgstr "Došlo k potížím s požadavkem"
|
71 |
|
72 |
+
#: classes/es-register.php:274
|
73 |
+
msgctxt "widget-page-enhanced-select"
|
74 |
+
msgid "Please enter email address"
|
75 |
+
msgstr "Zadejte emailovou adresu"
|
76 |
|
77 |
+
#: classes/es-register.php:275
|
78 |
+
msgctxt "widget-page-enhanced-select"
|
79 |
+
msgid "Please provide a valid email address"
|
80 |
+
msgstr "Zadejte platnou emailovou adresu"
|
81 |
|
82 |
+
#: classes/es-register.php:278
|
83 |
+
msgctxt "widget-page-enhanced-select"
|
84 |
+
msgid "Successfully Subscribed."
|
85 |
+
msgstr "Úspěšné přihlášení k odběru."
|
86 |
|
87 |
+
#: classes/es-register.php:280
|
88 |
+
msgctxt "widget-page-enhanced-select"
|
89 |
+
msgid "Email Address already exists!"
|
90 |
+
msgstr "Emailová adresa již existuje!"
|
91 |
|
92 |
+
#: classes/es-register.php:282
|
93 |
+
msgctxt "widget-page-enhanced-select"
|
94 |
+
msgid "Invalid email address"
|
95 |
+
msgstr "Neplatná emailová adresa"
|
96 |
|
97 |
+
#: classes/es-register.php:283
|
98 |
+
msgctxt "widget-page-enhanced-select"
|
99 |
+
msgid "Please try after some time"
|
100 |
+
msgstr "Prosím, zkuste to později"
|
101 |
|
102 |
+
#: classes/es-register.php:284
|
103 |
+
msgctxt "widget-page-enhanced-select"
|
104 |
+
msgid "There was a problem with the request"
|
105 |
+
msgstr "Došlo k potížím s požadavkem"
|
106 |
|
107 |
+
#: classes/es-register.php:460
|
108 |
msgid ""
|
109 |
+
"<b>FREE</b> plugin: Quickly grow your subscribers list with beautiful and high "
|
110 |
+
"converting optins."
|
111 |
msgstr ""
|
112 |
+
"<b>ZDARMA</b> plugin: Rychle rozšiřte seznam odběratelů díky fantastickému "
|
113 |
+
"nastavení s velkými možnostmi."
|
114 |
|
115 |
+
#: classes/es-register.php:461
|
116 |
+
msgid "Try Icegram"
|
117 |
+
msgstr "Zkusit Icegram"
|
118 |
|
119 |
+
#: classes/es-register.php:461
|
120 |
+
msgid "No, I don't need it"
|
121 |
+
msgstr "Ne, nechci ho"
|
122 |
|
123 |
+
#: classes/es-register.php:619
|
124 |
+
msgid "Short description about subscription form"
|
125 |
+
msgstr "Krátký popis k vašemu přihlašovacímu formuláři"
|
|
|
126 |
|
127 |
+
#: cron/cron-add.php:97
|
128 |
+
msgid "Email Count"
|
129 |
+
msgstr "Počet emailů"
|
130 |
+
|
131 |
+
#: cron/cron-add.php:98
|
132 |
+
msgid "Number of emails that you want to trigger per hour."
|
133 |
+
msgstr "Zadejte počet emailů, které chcete poslat za hodinu pomocí trigeru."
|
134 |
+
|
135 |
+
#: help/help.php:178
|
136 |
+
msgid "CSS Help"
|
137 |
+
msgstr "CSS Nápověda"
|
138 |
+
|
139 |
+
#: sendmail/sendmail.php:105
|
140 |
+
msgid "Select Email Subject from available list"
|
141 |
+
msgstr "Vyberte předmět emailu ze seznamu"
|
142 |
+
|
143 |
+
#: sendmail/sendmail.php:132
|
144 |
+
msgid "Select Email Type"
|
145 |
+
msgstr "Vyberte typ emailu"
|
146 |
+
|
147 |
+
#: sendmail/sendmail.php:146
|
148 |
+
msgid "Select Subscribers group to Send Email"
|
149 |
+
msgstr "Vyberte skupinu odběratelů pro odesílání emailů"
|
150 |
+
|
151 |
+
#: settings/settings-edit.php:231
|
152 |
+
msgid "Opt-In Option"
|
153 |
+
msgstr "Nastavení potvrzení"
|
154 |
+
|
155 |
+
#: settings/settings-edit.php:256
|
156 |
+
msgid "Double Opt In Email Subject (Confirmation Email)"
|
157 |
+
msgstr "Nastavení předmětu emailu (Potvrzovací email)"
|
158 |
+
|
159 |
+
#: settings/settings-edit.php:257
|
160 |
msgid ""
|
161 |
+
"Enter the subject for the confirmation email to be sent for Double Opt In whenever "
|
162 |
+
"a user signs up."
|
163 |
msgstr ""
|
164 |
+
"Zadejte předmět potvrzovacího emailu pro odeslání uživateli při přihlášení "
|
165 |
+
"dvojitým potvrzením."
|
166 |
+
|
167 |
+
#: settings/settings-edit.php:263
|
168 |
+
msgid "Double Opt In Email Content (Confirmation Email)"
|
169 |
+
msgstr "Nastavení obsahu emailu (Potvrzovací email)"
|
170 |
+
|
171 |
+
#: settings/settings-edit.php:264
|
172 |
+
msgid ""
|
173 |
+
"Enter the content for the confirmation email to be sent for Double Opt In whenever "
|
174 |
+
"a user signs up. (Keyword: ###NAME###, ###LINK###)"
|
175 |
+
msgstr ""
|
176 |
+
"Zadejte obsah potvrzovacího emailu pro odeslání uživateli při přihlášení dvojitým "
|
177 |
+
"potvrzením. (Klíčové slovo: ###NAME###, ###LINK###)"
|
178 |
+
|
179 |
+
#: settings/settings-edit.php:277
|
180 |
+
msgid ""
|
181 |
+
"Text to display after an email address is successfully subscribed from Double Opt "
|
182 |
+
"In (confirmation) Email"
|
183 |
+
msgstr "Text se zobrazí po úspěšném přihlášení emailu při dvojitém potvrzení e-mailu"
|
184 |
+
|
185 |
+
#: settings/settings-edit.php:298
|
186 |
+
msgid ""
|
187 |
+
"Enter the subject for the subscriber welcome email. This will be sent whenever a "
|
188 |
+
"user's email is either confirmed (if Double Opt In) / subscribed (if Single Opt "
|
189 |
+
"In) successfully."
|
190 |
+
msgstr ""
|
191 |
+
"Zadejte předmět uvítacího emailu. Bude odeslán jestliže uživatelský email bude "
|
192 |
+
"úspěšně potvrzen (dvojité potvrzení) / přihlášen (jednoduché potvrzení)."
|
193 |
+
|
194 |
+
#: settings/settings-edit.php:305
|
195 |
+
msgid ""
|
196 |
+
"Enter the content for the subscriber welcome email whenever a user's email is "
|
197 |
+
"either confirmed (if Double Opt In) / subscribed (if Single Opt In) successfully. "
|
198 |
+
"(Keyword: ###NAME###, ###GROUP###, ###LINK###)"
|
199 |
+
msgstr ""
|
200 |
+
"Zadejte předmět uvítacího emailu. Bude odeslán jestliže uživatelský email bude "
|
201 |
+
"úspěšně potvrzen (dvojité potvrzení) / přihlášen (jednoduché potvrzení). (Klíčové "
|
202 |
+
"slovo: ###NAME###, ###GROUP###, ###LINK###)"
|
203 |
+
|
204 |
+
#: settings/settings-edit.php:314
|
205 |
+
msgid ""
|
206 |
+
"The unsubscribe link gets added automatically to all emails that are sent from "
|
207 |
+
"this plugin. It is a readonly field and you are advised not to modify it."
|
208 |
+
msgstr ""
|
209 |
+
"Odkaz na odhlášení se automaticky přidá do všech emailů odesílaných z tohoto "
|
210 |
+
"pluginu. Pole je pouze pro čtení a nedoporučuje se, aby jste jej měnili."
|
211 |
|
212 |
+
#: settings/settings-edit.php:327
|
213 |
+
msgid "Text to display after an email address is unsubscribed"
|
214 |
+
msgstr "Text bude zobrazen po odhlášení emailu"
|
215 |
+
|
216 |
+
#: settings/settings-edit.php:335
|
217 |
+
msgid "Error in the Confirmation Link"
|
218 |
+
msgstr "Chybové hlášení potvrzovacího odkazu"
|
219 |
+
|
220 |
+
#: settings/settings-edit.php:342
|
221 |
+
msgid "Error in the Unsubscribe Link"
|
222 |
+
msgstr "Chybové hlášení odhlašovacího odkazu"
|
223 |
+
|
224 |
+
#: settings/settings-edit.php:357
|
225 |
+
msgid "Notify admin when a new subscriber signs up"
|
226 |
+
msgstr "Upozornění pro administrátora, když se zaregistruje nový účastník"
|
227 |
+
|
228 |
+
#: settings/settings-edit.php:370
|
229 |
+
msgid "Admin Email Subject when a new subscriber signs up"
|
230 |
+
msgstr "Předmět emailu pro administrátora, když se zaregistruje nový účastník"
|
231 |
+
|
232 |
+
#: settings/settings-edit.php:371
|
233 |
+
msgid ""
|
234 |
+
"Enter the subject for the admin email which will be sent whenever a new email is "
|
235 |
+
"added and confirmed."
|
236 |
+
msgstr ""
|
237 |
+
"Zadejte předmět emailu pro administrátora. Bude odeslán jakmile bude do databáze "
|
238 |
+
"přidán a potvrzen nový e-mail."
|
239 |
+
|
240 |
+
#: settings/settings-edit.php:377
|
241 |
+
msgid "Admin Email Content when a new subscriber signs up"
|
242 |
+
msgstr "Obsah emailu pro administrátora, když se zaregistruje nový účastník"
|
243 |
+
|
244 |
+
#: settings/settings-edit.php:378
|
245 |
+
msgid ""
|
246 |
+
"Enter the email content for the admin email which will be sent whenever a new "
|
247 |
+
"email is added and confirmed. (Keyword: ###NAME###, ###EMAIL###)"
|
248 |
+
msgstr ""
|
249 |
+
"Zadejte obsah emailu pro administrátora. Bude odeslán jakmile bude do databáze "
|
250 |
+
"přidán a potvrzen nový e-mail. (Klíčová slova: ###NAME###, ###EMAIL###)"
|
251 |
+
|
252 |
+
#: settings/settings-edit.php:386
|
253 |
+
msgid "Enter the subject for the sent email report. It will be emailed to Admin."
|
254 |
+
msgstr ""
|
255 |
+
"Zadejte předmět emailu s přehledem o odeslání. Bude odeslán administrátorovi."
|
256 |
+
|
257 |
+
#: settings/settings-edit.php:393
|
258 |
+
msgid ""
|
259 |
+
"Enter the content for the sent email report. It will be emailed to Admin. "
|
260 |
+
"(Keyword: ###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
|
261 |
+
msgstr ""
|
262 |
+
"Zadejte obsah emailu s přehledem. Bude odeslán administrátorovi. (Klíčová slova: "
|
263 |
+
"###COUNT###, ###UNIQUE###, ###STARTTIME###, ###ENDTIME###)"
|
264 |
+
|
265 |
+
#: subscribers/view-subscriber-export.php:47
|
266 |
+
#: subscribers/view-subscriber-export.php:55
|
267 |
+
msgid "Total Emails Count"
|
268 |
+
msgstr "Počet emailů celkem"
|
269 |
+
|
270 |
+
#: subscribers/view-subscriber-export.php:62
|
271 |
+
msgid "All Subscribers"
|
272 |
+
msgstr "Všichni odběratelé"
|
273 |
+
|
274 |
+
#: subscribers/view-subscriber-export.php:68
|
275 |
+
msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
|
276 |
+
msgstr "Aktivní odběratelé (Status: Potvrzen & Přihlášen)"
|
277 |
+
|
278 |
+
#: subscribers/view-subscriber-export.php:74
|
279 |
+
msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
|
280 |
+
msgstr "Neaktivní odběratelé (Status: Nepotvrzen & Odhlášen)"
|
281 |
+
|
282 |
+
#: subscribers/view-subscriber-export.php:79
|
283 |
+
msgid "4"
|
284 |
+
msgstr "4"
|
285 |
+
|
286 |
+
#: subscribers/view-subscriber-export.php:85
|
287 |
+
msgid "5"
|
288 |
+
msgstr "5"
|
289 |
+
|
290 |
+
#: subscribers/view-subscriber-show.php:252
|
291 |
+
#, c-format
|
292 |
+
msgid "Total Subscribers: %s"
|
293 |
+
msgstr "Celkem odběratelů: %s"
|
294 |
+
|
295 |
+
#: subscribers/view-subscriber-show.php:254
|
296 |
+
#, c-format
|
297 |
+
msgid "Active Subscribers: %s"
|
298 |
+
msgstr "Aktivní odběratelé: %s"
|
299 |
+
|
300 |
+
#: subscribers/view-subscriber-show.php:308
|
301 |
+
msgid "Select Status"
|
302 |
+
msgstr "Vybrat status"
|
303 |
+
|
304 |
+
#: subscribers/view-subscriber-show.php:342
|
305 |
+
msgid "1 to 500 emails"
|
306 |
+
msgstr "1 až 500 emailů"
|
307 |
+
|
308 |
+
#: subscribers/view-subscriber-show.php:343
|
309 |
+
msgid "501 to 1000"
|
310 |
+
msgstr "501 až 1000"
|
311 |
+
|
312 |
+
#: subscribers/view-subscriber-show.php:344
|
313 |
+
msgid "1001 to 1500"
|
314 |
+
msgstr "1001 až 1500"
|
315 |
+
|
316 |
+
#: subscribers/view-subscriber-show.php:345
|
317 |
+
msgid "1501 to 2000"
|
318 |
+
msgstr "1501 až 2000"
|
319 |
+
|
320 |
+
#: subscribers/view-subscriber-show.php:346
|
321 |
+
msgid "2001 to 4000"
|
322 |
+
msgstr "2001 až 4000"
|
323 |
+
|
324 |
+
#: subscribers/view-subscriber-show.php:347
|
325 |
+
msgid "4001 to 6000"
|
326 |
+
msgstr "4001 až 6000"
|
327 |
+
|
328 |
+
#: subscribers/view-subscriber-show.php:348
|
329 |
+
msgid "6001 to 10000"
|
330 |
+
msgstr "6001 až 10000"
|
331 |
+
|
332 |
+
#: subscribers/view-subscriber-show.php:364 subscribers/view-subscriber-show.php:377
|
333 |
+
msgid "Signup Date & Time<br>(Y-M-D H:I:S)"
|
334 |
+
msgstr "Datum a čas přihlášení<br>(Y-M-D H:I:S)"
|
335 |
+
|
336 |
+
#: classes/es-common.php:13
|
337 |
msgid "<span style=\"color:#006600;font-weight:bold;\">Confirmed</span>"
|
338 |
msgstr "<span style=\"color:#006600;font-weight:bold;\">Potvrzeno</span>"
|
339 |
|
340 |
+
#: classes/es-common.php:16
|
341 |
msgid "<span style=\"color:#FF0000\">Unconfirmed</span>"
|
342 |
msgstr "<span style=\"color:#FF0000\">Nepotvrzeno</span>"
|
343 |
|
344 |
+
#: classes/es-common.php:19
|
345 |
msgid "<span style=\"color:#999900\">Unsubscribed</span>"
|
346 |
msgstr "<span style=\"color:#999900\">Odhlášen/a</span>"
|
347 |
|
348 |
+
#: classes/es-common.php:22
|
349 |
msgid "<span style=\"color:#0000FF\">Single Opt In</span>"
|
350 |
msgstr "<span style=\"color:#0000FF\">Jednoduché potvrzení</span>"
|
351 |
|
352 |
+
#: classes/es-common.php:25
|
353 |
msgid "<span style=\"color:#00CC00;font-weight:bold;\">Viewed</span>"
|
354 |
msgstr "<span style=\"color:#00CC00;font-weight:bold;\">Zobrazeno</span>"
|
355 |
|
356 |
+
#: classes/es-common.php:28
|
357 |
msgid "<span style=\"color:#999900;\">Nodata</span>"
|
358 |
msgstr "<span style=\"color:#999900;\">Neuvedeno</span>"
|
359 |
|
360 |
+
#: classes/es-common.php:31
|
361 |
+
msgid "<span style=\"color:#FF0000\">Disabled</span>"
|
362 |
+
msgstr "<span style=\"color:#FF0000\">Neaktivní</span>"
|
363 |
+
|
364 |
+
#: classes/es-common.php:34
|
365 |
msgid "<span style=\"color:#FF0000\">In Queue</span>"
|
366 |
msgstr "<span style=\"color:#FF0000\">Ve frontě</span>"
|
367 |
|
368 |
+
#: classes/es-common.php:37
|
369 |
msgid "<span style=\"color:#00FF00;font-weight:bold;\">Sent</span>"
|
370 |
msgstr "<span style=\"color:#00FF00;font-weight:bold;\">Odesláno</span>"
|
371 |
|
372 |
+
#: classes/es-common.php:40
|
373 |
+
msgid "<span style=\"color:#20b2aa;font-weight:bold;\">via Cron</span>"
|
374 |
+
msgstr "<span style=\"color:#20b2aa;font-weight:bold;\">Cron email</span>"
|
375 |
+
|
376 |
+
#: classes/es-common.php:43
|
377 |
+
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
378 |
+
msgstr "<span style=\"color:#993399;\">Okamžitý email</span>"
|
379 |
+
|
380 |
+
#: classes/es-loadwidget.php:28 classes/es-register.php:567
|
381 |
+
#: subscribers/view-subscriber-show.php:361 subscribers/view-subscriber-show.php:374
|
382 |
msgid "Name"
|
383 |
msgstr "Jméno"
|
384 |
|
385 |
+
#: classes/es-loadwidget.php:33 classes/es-register.php:572
|
386 |
msgid "Email *"
|
387 |
msgstr "Email *"
|
388 |
|
389 |
+
#: classes/es-loadwidget.php:38 classes/es-register.php:577
|
390 |
msgid "Subscribe"
|
391 |
msgstr "Odebírat"
|
392 |
|
393 |
+
#: classes/es-register.php:144 classes/es-register.php:145
|
394 |
msgid "Email Subscribers"
|
395 |
msgstr "Email Subscribers"
|
396 |
|
397 |
+
#: classes/es-register.php:147 classes/es-register.php:148
|
398 |
+
#: subscribers/view-subscriber-show.php:241
|
399 |
msgid "Subscribers"
|
400 |
msgstr "Odběratelé"
|
401 |
|
402 |
+
#: classes/es-register.php:150 classes/es-register.php:151
|
403 |
+
#: compose/compose-show.php:64
|
404 |
msgid "Compose"
|
405 |
msgstr "Vytvořit"
|
406 |
|
407 |
+
#: classes/es-register.php:153 classes/es-register.php:154
|
408 |
+
#: notification/notification-show.php:52
|
409 |
msgid "Post Notifications"
|
410 |
msgstr "Oznámení o příspěvcích"
|
411 |
|
412 |
+
#: classes/es-register.php:156 classes/es-register.php:157 sendmail/sendmail.php:93
|
413 |
msgid "Newsletters"
|
414 |
msgstr "Zpravodaje"
|
415 |
|
416 |
+
#: classes/es-register.php:159 classes/es-register.php:160 cron/cron-add.php:79
|
417 |
msgid "Cron Settings"
|
418 |
msgstr "Cron nastavení"
|
419 |
|
420 |
+
#: classes/es-register.php:162 classes/es-register.php:163
|
421 |
+
#: settings/settings-edit.php:197
|
422 |
msgid "Email Settings"
|
423 |
msgstr "Nastavení e-mailu"
|
424 |
|
425 |
+
#: classes/es-register.php:165 classes/es-register.php:166 roles/roles-add.php:110
|
426 |
msgid "User Roles"
|
427 |
msgstr "Uživatelské úrovně"
|
428 |
|
429 |
+
#: classes/es-register.php:168 classes/es-register.php:169
|
430 |
+
#: sentmail/sentmail-show.php:96
|
431 |
msgid "Reports"
|
432 |
msgstr "Přehledy"
|
433 |
|
434 |
+
#: classes/es-register.php:171
|
435 |
msgid "Help & Info"
|
436 |
msgstr "Nápověda"
|
437 |
|
438 |
+
#: classes/es-register.php:172
|
439 |
msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info"
|
440 |
msgstr "<span style=\"color:#f18500;font-weight:bolder;\">Nápověda"
|
441 |
|
442 |
+
#: classes/es-register.php:183
|
443 |
msgctxt "view-subscriber-enhanced-select"
|
444 |
msgid "Please enter subscriber email address."
|
445 |
msgstr "Zadejte emailovou adresu odběratele."
|
446 |
|
447 |
+
#: classes/es-register.php:184
|
448 |
msgctxt "view-subscriber-enhanced-select"
|
449 |
msgid "Please select subscriber email status."
|
450 |
msgstr "Vyberte stav emailu odběratele."
|
451 |
|
452 |
+
#: classes/es-register.php:185
|
453 |
msgctxt "view-subscriber-enhanced-select"
|
454 |
msgid "Please select or create group for this subscriber."
|
455 |
msgstr "Vyberte nebo vytvořte skupinu pro tohoto odběratele."
|
456 |
|
457 |
+
#: classes/es-register.php:186
|
458 |
msgctxt "view-subscriber-enhanced-select"
|
459 |
msgid "Do you want to delete this record?"
|
460 |
msgstr "Opravdu chcete smazat tento záznam?"
|
461 |
|
462 |
+
#: classes/es-register.php:187
|
463 |
msgctxt "view-subscriber-enhanced-select"
|
464 |
msgid "Please select the bulk action."
|
465 |
msgstr "Vyberte hromadnou akci."
|
466 |
|
467 |
+
#: classes/es-register.php:188
|
468 |
msgctxt "view-subscriber-enhanced-select"
|
469 |
msgid "Are you sure you want to delete selected records?"
|
470 |
msgstr "Skutečně chcete smazat vybrané záznamy?"
|
471 |
|
472 |
+
#: classes/es-register.php:189
|
473 |
msgctxt "view-subscriber-enhanced-select"
|
474 |
msgid ""
|
475 |
+
"Do you want to resend confirmation email? \\nAlso please note, this will update "
|
476 |
+
"subscriber current status to 'Unconfirmed'."
|
477 |
msgstr ""
|
478 |
"Chcete znovu odeslat potvrzovací email? \\nUpozorňujeme, že bude aktualizován "
|
479 |
"současný stav odběratele na „Nepotvrzeno“."
|
480 |
|
481 |
+
#: classes/es-register.php:190
|
482 |
msgctxt "view-subscriber-enhanced-select"
|
483 |
msgid "Please select new subscriber group."
|
484 |
+
msgstr "Vyberte novou skupinu odběratele."
|
485 |
|
486 |
+
#: classes/es-register.php:191
|
487 |
msgctxt "view-subscriber-enhanced-select"
|
488 |
msgid "Please select new status for subscribers"
|
489 |
msgstr "Vyberte nový stav odběratele"
|
490 |
|
491 |
+
#: classes/es-register.php:192
|
492 |
msgctxt "view-subscriber-enhanced-select"
|
493 |
msgid "Do you want to update subscribers group?"
|
494 |
msgstr "Chcete upravit skupinu odběratelů?"
|
495 |
|
496 |
+
#: classes/es-register.php:193
|
497 |
msgctxt "view-subscriber-enhanced-select"
|
498 |
msgid "Do you want to update subscribers status?"
|
499 |
msgstr "Chcete upravit stav odběratele?"
|
500 |
|
501 |
+
#: classes/es-register.php:194
|
502 |
msgctxt "view-subscriber-enhanced-select"
|
503 |
msgid "Do you want to export the emails?"
|
504 |
msgstr "Chcete exportovat emaily?"
|
505 |
|
506 |
+
#: classes/es-register.php:195
|
507 |
msgctxt "view-subscriber-enhanced-select"
|
508 |
msgid ""
|
509 |
+
"Please select only csv file. Please check official website for csv structure.."
|
|
|
510 |
msgstr ""
|
511 |
+
"Použijte výhradně soubor ve formátu CSV. Zkontrolujte strukturu csv souboru na "
|
512 |
+
"oficiálních internetových stránkách..."
|
513 |
|
514 |
+
#: classes/es-register.php:203
|
515 |
msgctxt "compose-enhanced-select"
|
516 |
msgid "Please enter name for configuration."
|
517 |
+
msgstr "Zadejte název konfigurace."
|
518 |
|
519 |
+
#: classes/es-register.php:204
|
520 |
msgctxt "compose-enhanced-select"
|
521 |
msgid "Please select template for this configuration."
|
522 |
msgstr "Vyberte šablonu pro tuto konfiguraci."
|
523 |
|
524 |
+
#: classes/es-register.php:205
|
525 |
msgctxt "compose-enhanced-select"
|
526 |
msgid "Do you want to delete this record?"
|
527 |
msgstr "Chcete smazat tento záznam?"
|
528 |
|
529 |
+
#: classes/es-register.php:213
|
530 |
msgctxt "notification-enhanced-select"
|
531 |
msgid "Please select subscribers group."
|
532 |
msgstr "Vyberte skupinu odběratelů."
|
533 |
|
534 |
+
#: classes/es-register.php:214
|
535 |
msgctxt "notification-enhanced-select"
|
536 |
msgid "Please select notification mail subject. Use compose menu to create new."
|
537 |
msgstr ""
|
538 |
+
"Vyberte předmět oznamovacího emailu. Pro vytvoření nového použijte menu „Vytvořit“."
|
|
|
539 |
|
540 |
+
#: classes/es-register.php:215
|
541 |
msgctxt "notification-enhanced-select"
|
542 |
msgid "Please select notification status."
|
543 |
+
msgstr "Vyberte stav oznámení."
|
544 |
|
545 |
+
#: classes/es-register.php:216
|
546 |
msgctxt "notification-enhanced-select"
|
547 |
msgid "Do you want to delete this record?"
|
548 |
msgstr "Chcete smazat tento záznam?"
|
549 |
|
550 |
+
#: classes/es-register.php:224
|
551 |
msgctxt "sendmail-enhanced-select"
|
552 |
msgid "Please select your mail subject."
|
553 |
msgstr "Vyberte předmět zprávy."
|
554 |
|
555 |
+
#: classes/es-register.php:225
|
556 |
msgctxt "sendmail-enhanced-select"
|
557 |
msgid "Please select your mail type."
|
558 |
msgstr "Vyberte typ zprávy."
|
559 |
|
560 |
+
#: classes/es-register.php:226
|
561 |
msgctxt "sendmail-enhanced-select"
|
562 |
msgid ""
|
563 |
+
"Have you double checked your selected group? If so, let's go ahead and send this."
|
|
|
564 |
msgstr "Zkontrolovali jste si vybranou skupinu? Jestli ano, formulář můžete odeslat."
|
565 |
|
566 |
+
#: classes/es-register.php:234
|
567 |
msgctxt "sentmail-enhanced-select"
|
568 |
msgid "Do you want to delete this record?"
|
569 |
msgstr "Chcete smazat tento záznam?"
|
570 |
|
571 |
+
#: classes/es-register.php:235
|
572 |
msgctxt "sentmail-enhanced-select"
|
573 |
msgid "Do you want to delete all records except latest 10?"
|
574 |
msgstr "Chcete smazat všechny záznamy kromě posledních 10?"
|
575 |
|
576 |
+
#: classes/es-register.php:243
|
577 |
msgctxt "cron-enhanced-select"
|
578 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
579 |
msgstr "Vyberte počet emailů, které chcete odeslat za hodinu/spuštění."
|
580 |
|
581 |
+
#: classes/es-register.php:244
|
582 |
msgctxt "cron-enhanced-select"
|
583 |
msgid "Please enter the mail count, only number."
|
584 |
msgstr "Zadejte počet emailů (pouze číslo)."
|
585 |
|
586 |
+
#: classes/es-register.php:259
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
587 |
msgctxt "widget-enhanced-select"
|
588 |
msgid "loading..."
|
589 |
msgstr "načítání..."
|
590 |
|
591 |
+
#: classes/es-register.php:260
|
592 |
msgctxt "widget-enhanced-select"
|
593 |
msgid "Cannot create XMLHTTP instance"
|
594 |
msgstr "Nelze vytvořit instanci XMLHTTP"
|
595 |
|
596 |
+
#: classes/es-register.php:262
|
|
|
|
|
|
|
|
|
|
|
597 |
msgctxt "widget-enhanced-select"
|
598 |
msgid ""
|
599 |
+
"Your subscription was successful! Within a few minutes, kindly check the mail in "
|
600 |
+
"your mailbox and confirm your subscription. If you can't see the mail in your "
|
601 |
+
"mailbox, please check your spam folder."
|
602 |
msgstr ""
|
603 |
+
"Úspěšně jste se přihlásili k odběru! Během několika minut zkontrolujte emaily ve "
|
604 |
+
"své schránce a potvrďte registraci. Pokud email nenajdete, zkontrolujte prosím "
|
605 |
+
"složku se spamem."
|
|
|
|
|
|
|
|
|
|
|
606 |
|
607 |
+
#: classes/es-register.php:264
|
608 |
msgctxt "widget-enhanced-select"
|
609 |
msgid "Oops.. Unexpected error occurred."
|
610 |
msgstr "Nastala neočekávaná chyba."
|
611 |
|
612 |
+
#: classes/es-register.php:276
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
613 |
msgctxt "widget-page-enhanced-select"
|
614 |
msgid "loading..."
|
615 |
msgstr "načítání..."
|
616 |
|
617 |
+
#: classes/es-register.php:277
|
618 |
msgctxt "widget-page-enhanced-select"
|
619 |
msgid "Cannot create XMLHTTP instance"
|
620 |
msgstr "Nelze vytvořit instanci XMLHTTP"
|
621 |
|
622 |
+
#: classes/es-register.php:279
|
|
|
|
|
|
|
|
|
|
|
623 |
msgctxt "widget-page-enhanced-select"
|
624 |
msgid ""
|
625 |
+
"Your subscription was successful! Within a few minutes, kindly check the mail in "
|
626 |
+
"your mailbox and confirm your subscription. If you can't see the mail in your "
|
627 |
+
"mailbox, please check your spam folder."
|
628 |
msgstr ""
|
629 |
+
"Úspěšně jste se přihlásili k odběru! Během několika minut zkontrolujte emaily ve "
|
630 |
+
"své schránce a potvrďte registraci. Pokud email nenajdete, zkontrolujte prosím "
|
631 |
+
"složku se spamem."
|
632 |
|
633 |
+
#: classes/es-register.php:281
|
|
|
|
|
|
|
|
|
|
|
634 |
msgctxt "widget-page-enhanced-select"
|
635 |
msgid "Oops.. Unexpected error occurred."
|
636 |
msgstr "Nastala neočekávaná chyba."
|
637 |
|
638 |
+
#: classes/es-register.php:615
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
639 |
msgid "Widget Title"
|
640 |
msgstr "Nadpis widgetu"
|
641 |
|
642 |
+
#: classes/es-register.php:623
|
643 |
msgid "Display Name Field"
|
644 |
msgstr "Zobrazit pole „Jméno“"
|
645 |
|
646 |
+
#: classes/es-register.php:625 settings/settings-edit.php:290
|
647 |
+
#: settings/settings-edit.php:363 subscribers/view-subscriber-sync.php:107
|
648 |
+
msgid "YES"
|
649 |
+
msgstr "ANO"
|
650 |
|
651 |
+
#: classes/es-register.php:626 settings/settings-edit.php:291
|
652 |
+
#: settings/settings-edit.php:364 subscribers/view-subscriber-sync.php:106
|
653 |
+
msgid "NO"
|
654 |
+
msgstr "NE"
|
655 |
|
656 |
+
#: classes/es-register.php:630
|
657 |
msgid "Subscriber Group"
|
658 |
msgstr "Skupina odběratelů"
|
659 |
|
660 |
+
#: compose/compose-add.php:31 compose/compose-edit.php:48
|
661 |
msgid "Please enter template heading."
|
662 |
msgstr "Vyberte šablonu záhlaví."
|
663 |
|
664 |
+
#: compose/compose-add.php:43
|
665 |
msgid "Template successfully created. "
|
666 |
+
msgstr "Šablona byla úspěšně vytvořena. "
|
667 |
|
668 |
+
#: compose/compose-add.php:74
|
669 |
msgid "Add new Email"
|
670 |
msgstr "Přidat nový e-mail"
|
671 |
|
672 |
+
#: compose/compose-add.php:75 compose/compose-edit.php:86
|
673 |
+
#: compose/compose-preview.php:28 compose/compose-show.php:66 cron/cron-add.php:80
|
674 |
+
#: notification/notification-add.php:113 notification/notification-edit.php:124
|
675 |
+
#: notification/notification-show.php:54 roles/roles-add.php:111
|
676 |
+
#: sendmail/sendmail.php:94 sentmail/deliverreport-show.php:61
|
677 |
+
#: sentmail/sentmail-preview.php:28 sentmail/sentmail-show.php:97
|
678 |
+
#: settings/settings-edit.php:198 subscribers/view-subscriber-add.php:114
|
679 |
+
#: subscribers/view-subscriber-edit.php:113 subscribers/view-subscriber-export.php:38
|
680 |
+
#: subscribers/view-subscriber-import.php:146
|
681 |
+
#: subscribers/view-subscriber-show.php:246 subscribers/view-subscriber-sync.php:92
|
|
|
682 |
msgid "Help"
|
683 |
msgstr "Nápověda"
|
684 |
|
685 |
+
#: compose/compose-add.php:78 compose/compose-edit.php:89
|
686 |
+
msgid "Select your Mail Template"
|
687 |
+
msgstr "Vyberte šablonu emailu"
|
688 |
+
|
689 |
+
#: compose/compose-add.php:80 compose/compose-edit.php:91
|
690 |
+
msgid "Newsletter"
|
691 |
+
msgstr "Zpravodaj"
|
692 |
+
|
693 |
+
#: compose/compose-add.php:81 compose/compose-edit.php:92
|
694 |
+
msgid "Post Notification"
|
695 |
+
msgstr "Potvrzení příspěvku"
|
696 |
+
|
697 |
+
#: compose/compose-add.php:85 compose/compose-edit.php:96
|
698 |
+
msgid "Enter your Email Subject"
|
699 |
+
msgstr "Zadejte předmět emailu"
|
700 |
+
|
701 |
+
#: compose/compose-add.php:87 compose/compose-edit.php:98
|
702 |
msgid "Keyword: ###POSTTITLE###"
|
703 |
msgstr "Klíčové slovo: ###POSTTITLE###"
|
704 |
|
705 |
+
#: compose/compose-add.php:89 compose/compose-edit.php:100
|
706 |
+
msgid "Enter Content for your Email"
|
707 |
+
msgstr "Zadejte obsah emailu"
|
708 |
+
|
709 |
+
#: compose/compose-add.php:93 compose/compose-edit.php:104
|
710 |
#, c-format
|
711 |
msgid ""
|
712 |
"%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
713 |
+
"###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, ###POSTDESC###, "
|
714 |
+
"###POSTFULL###"
|
715 |
msgstr ""
|
716 |
"%s : ###NAME###, ###EMAIL###, ###DATE###, ###POSTTITLE###, ###POSTLINK###, "
|
717 |
+
"###POSTLINK-WITHTITLE###, ###POSTLINK-ONLY###, ###POSTIMAGE###, ###POSTDESC###, "
|
718 |
+
"###POSTFULL###"
|
719 |
|
720 |
+
#: compose/compose-add.php:93 compose/compose-edit.php:104
|
721 |
msgid "Available Keywords"
|
722 |
msgstr "Dostupná klíčová slova"
|
723 |
|
724 |
+
#: compose/compose-add.php:97 compose/compose-edit.php:108
|
725 |
+
#: sentmail/deliverreport-show.php:73 sentmail/deliverreport-show.php:84
|
726 |
+
#: sentmail/sentmail-show.php:113 sentmail/sentmail-show.php:126
|
727 |
+
#: subscribers/view-subscriber-show.php:362 subscribers/view-subscriber-show.php:375
|
|
|
728 |
msgid "Status"
|
729 |
msgstr "Stav"
|
730 |
|
731 |
+
#: compose/compose-add.php:99 compose/compose-edit.php:110
|
732 |
msgid "Published"
|
733 |
msgstr "Publikováno"
|
734 |
|
735 |
+
#: compose/compose-add.php:101 compose/compose-edit.php:112
|
736 |
msgid "Please select your mail status"
|
737 |
msgstr "Vyberte stav zprávy"
|
738 |
|
739 |
+
#: compose/compose-add.php:105 compose/compose-edit.php:117 cron/cron-add.php:120
|
740 |
+
#: notification/notification-add.php:253 notification/notification-edit.php:290
|
741 |
+
#: roles/roles-add.php:207 subscribers/view-subscriber-edit.php:191
|
742 |
msgid "Save"
|
743 |
msgstr "Uložit"
|
744 |
|
745 |
+
#: compose/compose-edit.php:20 compose/compose-preview.php:18
|
746 |
+
#: compose/compose-show.php:33 notification/notification-edit.php:20
|
747 |
+
#: notification/notification-show.php:21 sentmail/sentmail-preview.php:18
|
748 |
+
#: sentmail/sentmail-show.php:22 settings/settings-edit.php:20
|
749 |
+
#: subscribers/view-subscriber-edit.php:22
|
750 |
msgid "Oops, selected details does not exists."
|
751 |
msgstr "Vybrané podrobnosti neexistují."
|
752 |
|
753 |
+
#: compose/compose-edit.php:61
|
754 |
msgid "Template successfully updated. "
|
755 |
+
msgstr "Šablona byla úspěšně aktualizována. "
|
756 |
|
757 |
+
#: compose/compose-edit.php:84
|
758 |
msgid "Edit Email"
|
759 |
msgstr "Upravit e-mail"
|
760 |
|
761 |
+
#: compose/compose-edit.php:85 compose/compose-show.php:65
|
762 |
+
#: notification/notification-edit.php:123 notification/notification-show.php:53
|
763 |
msgid "Add New"
|
764 |
msgstr "Vytvoit"
|
765 |
|
766 |
+
#: compose/compose-preview.php:27 sentmail/sentmail-preview.php:27
|
767 |
msgid "Preview Mail"
|
768 |
msgstr "Náhled emailu"
|
769 |
|
770 |
+
#: compose/compose-preview.php:40 compose/compose-show.php:101
|
771 |
+
#: notification/notification-show.php:100 subscribers/view-subscriber-show.php:404
|
772 |
msgid "Edit"
|
773 |
msgstr "Upravit"
|
774 |
|
775 |
+
#: compose/compose-show.php:14 sendmail/sendmail.php:18
|
776 |
+
#: subscribers/view-subscriber-show.php:17
|
777 |
msgid "Click Here"
|
778 |
msgstr "Klikněte zde"
|
779 |
|
780 |
+
#: compose/compose-show.php:47 notification/notification-show.php:35
|
781 |
+
#: sentmail/sentmail-show.php:36
|
782 |
msgid "Selected record deleted."
|
783 |
msgstr "Vybraný záznam byl smazán."
|
784 |
|
785 |
+
#: compose/compose-show.php:77 compose/compose-show.php:84
|
786 |
+
#: notification/notification-show.php:68 notification/notification-show.php:76
|
787 |
+
msgid "Email Subject"
|
788 |
+
msgstr "Předmět emailu"
|
789 |
+
|
790 |
+
#: compose/compose-show.php:78 compose/compose-show.php:85
|
791 |
+
msgid "Email Template"
|
792 |
+
msgstr "Šablona emailu"
|
793 |
+
|
794 |
+
#: compose/compose-show.php:79 compose/compose-show.php:86
|
795 |
msgid "Actions"
|
796 |
msgstr "Akce"
|
797 |
|
798 |
+
#: compose/compose-show.php:102 notification/notification-show.php:103
|
799 |
+
#: subscribers/view-subscriber-show.php:287 subscribers/view-subscriber-show.php:409
|
|
|
800 |
msgid "Delete"
|
801 |
msgstr "Smazat"
|
802 |
|
803 |
+
#: compose/compose-show.php:103 sentmail/sentmail-show.php:111
|
804 |
+
#: sentmail/sentmail-show.php:124
|
805 |
msgid "Preview"
|
806 |
msgstr "Náhled"
|
807 |
|
808 |
+
#: compose/compose-show.php:111 notification/notification-show.php:143
|
809 |
+
#: sentmail/deliverreport-show.php:127 sentmail/sentmail-show.php:183
|
810 |
+
#: subscribers/view-subscriber-show.php:432
|
811 |
msgid "No records available."
|
812 |
msgstr "Žádné záznamy nejsou k dispozici."
|
813 |
|
814 |
+
#: cron/cron-add.php:24
|
815 |
msgid "Please enter valid mail count."
|
816 |
msgstr "Zadejte platný počet emailů."
|
817 |
|
818 |
+
#: cron/cron-add.php:34
|
819 |
msgid "Successfully updated."
|
820 |
msgstr "Úspěšně upraveno."
|
821 |
|
822 |
+
#: cron/cron-add.php:87
|
823 |
msgid "Cron job URL"
|
824 |
msgstr "URL cronu"
|
825 |
|
826 |
+
#: cron/cron-add.php:88
|
827 |
msgid ""
|
828 |
"This is your Cron Job URL. It is a readonly field and you are advised not to "
|
829 |
"modify it."
|
831 |
"Toto je URL vašeho cronu. Pole je pouze pro čtení, nedoporučujeme vám jej "
|
832 |
"upravovat."
|
833 |
|
834 |
+
#: cron/cron-add.php:103
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
835 |
msgid "(Your web host has limits. We suggest 50 emails per hour to be safe)"
|
836 |
msgstr "(Web host má své limity. Doporučujeme odesílat nejvíce 50 mailů za hodinu.)"
|
837 |
|
838 |
+
#: cron/cron-add.php:108
|
839 |
msgid "Admin Report"
|
840 |
msgstr "Hlášení pro administrátora"
|
841 |
|
842 |
+
#: cron/cron-add.php:109
|
843 |
msgid ""
|
844 |
"Email to admin whenever cron URL is triggered from your server. (Keywords: "
|
845 |
"###DATE###, ###SUBJECT###, ###COUNT###)"
|
846 |
msgstr ""
|
847 |
+
"Poslat administrátorovi výše uvedený email kdykoli zapracuje cron URL ve vašem "
|
848 |
+
"serveru <br /> (klíčová slova: ###DATE###, ###SUBJECT###, ###COUNT###)"
|
849 |
|
850 |
+
#: cron/cron-add.php:126
|
851 |
msgid "What is Cron (auto emails) and how to setup Cron Job?"
|
852 |
msgstr "Co je to cron (automatický e-mail) a jak nastavit cron?"
|
853 |
|
854 |
+
#: cron/cron-add.php:127
|
855 |
msgid ""
|
856 |
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
857 |
"schedule-cron-emails/\">What is Cron?</a>"
|
858 |
+
msgstr ""
|
859 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
860 |
+
"schedule-cron-emails/\">Co je to cron?</a>"
|
861 |
|
862 |
+
#: cron/cron-add.php:128
|
863 |
msgid ""
|
864 |
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
865 |
"schedule-cron-emails-in-parallels-plesk/\">Setup cron job in Plesk</a>"
|
867 |
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
868 |
"schedule-cron-emails-in-parallels-plesk/\">Nastavení cronu v Plesk</a>"
|
869 |
|
870 |
+
#: cron/cron-add.php:129
|
871 |
msgid ""
|
872 |
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
873 |
"schedule-cron-emails-in-cpanel/\">Setup cron job in cPanal</a>"
|
875 |
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-how-to-"
|
876 |
"schedule-cron-emails-in-cpanel/\">Nastavení cronu v cPanel</a>"
|
877 |
|
878 |
+
#: cron/cron-add.php:130
|
879 |
msgid ""
|
880 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
|
881 |
+
"hosting-doesnt-support-cron-jobs/\">Hosting does not support cron jobs?</a>"
|
882 |
msgstr ""
|
883 |
+
"<a target=\"_blank\" href=\"http://www.icegram.com/documentation/es-what-to-do-if-"
|
884 |
+
"hosting-doesnt-support-cron-jobs/\">Hosting nepodporuje crony?</a>"
|
885 |
|
886 |
#: export/export-email-address.php:33 export/export-email-address.php:37
|
887 |
msgid "Unexpected url submit has been detected"
|
888 |
msgstr "Byla zjištěna neočekávaná URL adresa"
|
889 |
|
890 |
+
#: help/help.php:47
|
891 |
msgid "Welcome to Email Subscribers!"
|
892 |
msgstr "Vítá vás plugin Email Subscribers!"
|
893 |
|
894 |
+
#: help/help.php:48
|
895 |
msgid "Thanks for installing and we hope you will enjoy using Email Subscribers."
|
896 |
msgstr "Děkujeme vám za instalaci a doufáme, že se vám Email Subscribers bude líbit."
|
897 |
|
898 |
+
#: help/help.php:52
|
899 |
msgid "For more help and tips..."
|
900 |
msgstr "Pro další pomoc a rady..."
|
901 |
|
902 |
+
#: help/help.php:67
|
903 |
#, c-format
|
904 |
msgid "Like Email Subscribers? Please consider %s."
|
905 |
msgstr "Zvažte like pro Email Subscribers %s."
|
906 |
|
907 |
+
#: help/help.php:67
|
908 |
msgid "contributing to us"
|
909 |
msgstr "kontaktujte nás"
|
910 |
|
911 |
+
#: help/help.php:99
|
912 |
msgid "Frequently Asked Questions"
|
913 |
msgstr "Časté dotazy (anglicky)"
|
914 |
|
915 |
+
#: help/help.php:118 help/help.php:127 help/help.php:130 help/help.php:133
|
916 |
+
#: help/help.php:136 help/help.php:139 help/help.php:142 help/help.php:145
|
917 |
+
#: help/help.php:148 help/help.php:151 help/help.php:154 help/help.php:157
|
918 |
+
#: help/help.php:160 help/help.php:163 help/help.php:166 help/help.php:169
|
919 |
+
#: help/help.php:172 help/help.php:175 help/help.php:178 help/help.php:180
|
920 |
#, c-format
|
921 |
msgid "%s"
|
922 |
msgstr "%s"
|
923 |
|
924 |
+
#: help/help.php:118
|
925 |
msgid "How to Add Subscription box to website?"
|
926 |
msgstr "Jak na web přidat přihlašovací formulář?"
|
927 |
|
928 |
+
#: help/help.php:127
|
929 |
msgid "General Plugin Settings"
|
930 |
msgstr "Základní nastavení pluginu"
|
931 |
|
932 |
+
#: help/help.php:127
|
933 |
msgid ""
|
934 |
+
" (How to modify the existing email content like Confirmation email, Welcome email, "
|
935 |
+
"Admin emails)"
|
936 |
msgstr ""
|
937 |
+
" (Jak upravit existující obsah potvrzovacího emailu, uvítacího emailu, emailu pro "
|
938 |
+
"administrátora)"
|
939 |
|
940 |
+
#: help/help.php:130
|
941 |
msgid "How to Import or Export Email Addresses?"
|
942 |
msgstr "Jak importovat nebo exportovat emailové adresy?"
|
943 |
|
944 |
+
#: help/help.php:133
|
945 |
msgid "How to change/update/translate any texts from Email Subscribers?"
|
946 |
+
msgstr "Jak změnit/aktualizovat/přeložit jakýkoliv text v Email Subscribers?"
|
947 |
|
948 |
+
#: help/help.php:136
|
949 |
msgid "How to add Unsubscribe link in emails?"
|
950 |
msgstr "Jak do emailů přidat odkaz pro odhlášení?"
|
951 |
|
952 |
+
#: help/help.php:139
|
953 |
msgid "What are Static Templates and Dynamic Templates?"
|
954 |
msgstr "Co je statická šablona a dynamická šablona?"
|
955 |
|
956 |
+
#: help/help.php:142
|
957 |
msgid "How to Compose and Send Newsletter Emails?"
|
958 |
msgstr "Jak vytvářet a odesílat emaily zpravodajů?"
|
959 |
|
960 |
+
#: help/help.php:145
|
961 |
msgid ""
|
962 |
+
"How to Configure and Send Post Notification emails to subscribers when new posts "
|
963 |
+
"are published?"
|
964 |
msgstr ""
|
965 |
+
"Jak nastavit a odesílat emailová oznámení odběratelům, jakmile jsou publikovány "
|
966 |
+
"nové příspěvky?"
|
967 |
|
968 |
+
#: help/help.php:148
|
969 |
msgid "How to Send a sample new post notification email to testgroup/myself?"
|
970 |
msgstr "Jak poslat ukázku nového oznamovacího emailu testovací skupině/sobě?"
|
971 |
|
972 |
+
#: help/help.php:151
|
973 |
msgid "How to check Sent emails reports?"
|
974 |
msgstr "Jak zkontrolovat přehled odeslaných emailů?"
|
975 |
|
976 |
+
#: help/help.php:154
|
977 |
msgid "How to Add/Update Existing Subscribers Group?"
|
978 |
msgstr "Jak přidat/aktualizovat existující skupinu odběratelů?"
|
979 |
|
980 |
+
#: help/help.php:157
|
981 |
msgid "Subscribers are not receiving Emails?"
|
982 |
msgstr "Odběratelé nepřijímají emaily?"
|
983 |
|
984 |
+
#: help/help.php:160
|
985 |
msgid "How to show subscribe form inside a popup?"
|
986 |
msgstr "Jak zobrazit přihlašovací formulář ve vyskakovacím okně?"
|
987 |
|
988 |
+
#: help/help.php:163
|
989 |
msgid "How to use Rainmaker’s form in Email Subscribers?"
|
990 |
msgstr "Jak používat formulář Rainmaker v Email Subscribers?"
|
991 |
|
992 |
+
#: help/help.php:166
|
993 |
msgid "How to Schedule Cron Mails?"
|
994 |
msgstr "Jak naplánovat cron emaily?"
|
995 |
|
996 |
+
#: help/help.php:169
|
997 |
msgid "How to Schedule Cron Emails in cPanel?"
|
998 |
msgstr "Jak naplánovat cron emaily v cPanelu?"
|
999 |
|
1000 |
+
#: help/help.php:172
|
1001 |
msgid "How to Schedule Cron Emails in Parallels Plesk?"
|
1002 |
msgstr "Jak naplánovat cron emaily v Parallels Plesk?"
|
1003 |
|
1004 |
+
#: help/help.php:175
|
1005 |
msgid "What to do if Hosting doesn’t support Cron Jobs?"
|
1006 |
msgstr "Co dělat, když hosting nepodporuje crony?"
|
1007 |
|
1008 |
+
#: help/help.php:180
|
1009 |
msgid "Commonly Asked Questions"
|
1010 |
msgstr "Nejčastější dotazy"
|
1011 |
|
1012 |
+
#: job/es-optin.php:58 job/es-optin.php:68 job/es-unsubscribe.php:55
|
1013 |
+
#: job/es-unsubscribe.php:62
|
1014 |
msgid ""
|
1015 |
+
"Oops.. We are getting some technical error. Please try again or contact admin."
|
|
|
1016 |
msgstr ""
|
1017 |
+
"Nastala technická chyba. Zkuste to prosím znovu nebo se obraťte na administrátora."
|
|
|
1018 |
|
1019 |
+
#: job/es-optin.php:61
|
1020 |
msgid "This email address has already been confirmed."
|
1021 |
msgstr "Tato emailová adresa již byla potvrzena."
|
1022 |
|
1023 |
+
#: notification/notification-add.php:33
|
1024 |
msgid "Please select subscribers group."
|
1025 |
msgstr "Vyberte skupinu odběratelů."
|
1026 |
|
1027 |
+
#: notification/notification-add.php:39
|
1028 |
msgid "Please select notification status."
|
1029 |
msgstr "Vyberte stav oznámení."
|
1030 |
|
1031 |
+
#: notification/notification-add.php:45 notification/notification-edit.php:61
|
1032 |
msgid "Please select notification mail subject. Use compose menu to create new."
|
1033 |
msgstr ""
|
1034 |
+
"Vyberte předmět oznamovacího emailu. Pro vytvoření nového použijte menu „Vytvořit“."
|
|
|
1035 |
|
1036 |
+
#: notification/notification-add.php:51 notification/notification-edit.php:67
|
1037 |
msgid "Please select post categories."
|
1038 |
msgstr "Vyberte rubriky příspěvků."
|
1039 |
|
1040 |
+
#: notification/notification-add.php:71
|
1041 |
msgid "Notification successfully created. "
|
1042 |
+
msgstr "Oznámení bylo úspěšně vytvořeno. "
|
1043 |
|
1044 |
+
#: notification/notification-add.php:112
|
1045 |
msgid "Add Notification"
|
1046 |
msgstr "Přidat oznámení"
|
1047 |
|
1048 |
+
#: notification/notification-add.php:120
|
1049 |
msgid "Select Subscribers Group"
|
1050 |
msgstr "Vyberte skupinu odběratelů"
|
1051 |
|
1052 |
+
#: notification/notification-add.php:124 notification/notification-add.php:148
|
1053 |
+
#: notification/notification-edit.php:135 notification/notification-edit.php:168
|
1054 |
+
#: sendmail/sendmail.php:110 sendmail/sendmail.php:137 sendmail/sendmail.php:151
|
1055 |
+
#: subscribers/view-subscriber-add.php:162 subscribers/view-subscriber-edit.php:162
|
1056 |
+
#: subscribers/view-subscriber-import.php:190
|
1057 |
+
#: subscribers/view-subscriber-sync.php:119
|
1058 |
msgid "Select"
|
1059 |
msgstr "Vybrat"
|
1060 |
|
1061 |
#: notification/notification-add.php:142 notification/notification-edit.php:162
|
1062 |
+
msgid "Select Notification Email Subject"
|
1063 |
+
msgstr "Vyberte předmět oznamovacího emailu"
|
1064 |
+
|
1065 |
+
#: notification/notification-add.php:143 notification/notification-edit.php:163
|
1066 |
msgid "(Use compose menu to create new)"
|
1067 |
msgstr "(Pro nový předmět použijte menu „Vytvořit“)"
|
1068 |
|
1069 |
+
#: notification/notification-add.php:167 notification/notification-edit.php:190
|
1070 |
msgid "Select Post Categories"
|
1071 |
msgstr "Vyberte rubriky příspěvků"
|
1072 |
|
1073 |
+
#: notification/notification-add.php:195 notification/notification-edit.php:225
|
1074 |
msgid "Check All"
|
1075 |
msgstr "Označit vše"
|
1076 |
|
1077 |
+
#: notification/notification-add.php:196 notification/notification-edit.php:226
|
1078 |
msgid "Uncheck All"
|
1079 |
msgstr "Odznačit vše"
|
1080 |
|
1081 |
+
#: notification/notification-add.php:202 notification/notification-edit.php:233
|
1082 |
msgid "Select your Custom Post Type"
|
1083 |
msgstr "Vyberte vlastní typ obsahu"
|
1084 |
|
1085 |
+
#: notification/notification-add.php:203 notification/notification-edit.php:234
|
1086 |
msgid "(Optional)"
|
1087 |
msgstr "(nepovinné)"
|
1088 |
|
1089 |
+
#: notification/notification-add.php:232 notification/notification-edit.php:268
|
1090 |
msgid "No Custom Post Types Available"
|
1091 |
msgstr "Vlastní typ obsahu není dostupný"
|
1092 |
|
1093 |
+
#: notification/notification-add.php:239 notification/notification-edit.php:275
|
1094 |
+
msgid "Select Notification Status when a new post is published"
|
1095 |
+
msgstr "Vybrat stav potvrzení pro nově publikovaný příspěvek"
|
1096 |
+
|
1097 |
+
#: notification/notification-add.php:243 notification/notification-edit.php:279
|
1098 |
+
#: notification/notification-show.php:130 sendmail/sendmail.php:138
|
1099 |
+
msgid "Send email immediately"
|
1100 |
+
msgstr "Odeslat email okamžitě"
|
1101 |
+
|
1102 |
+
#: notification/notification-add.php:244 notification/notification-edit.php:280
|
1103 |
+
#: notification/notification-show.php:132
|
1104 |
+
msgid "Add to cron and send email via cron job"
|
1105 |
+
msgstr "Přidat do cronu a odeslat cronem"
|
1106 |
+
|
1107 |
+
#: notification/notification-add.php:245 notification/notification-edit.php:281
|
1108 |
+
msgid "Disable email notification"
|
1109 |
+
msgstr "Zakázat oznamovací email"
|
1110 |
+
|
1111 |
+
#: notification/notification-edit.php:49
|
1112 |
msgid "Please select subscribers group"
|
1113 |
msgstr "Vyberte skupinu odběratelů"
|
1114 |
|
1115 |
+
#: notification/notification-edit.php:55
|
1116 |
msgid "Please select notification status"
|
1117 |
msgstr "Vyberte stav oznámení"
|
1118 |
|
1119 |
+
#: notification/notification-edit.php:89
|
1120 |
msgid "Notification successfully updated. "
|
1121 |
+
msgstr "Oznámení bylo úspěšně upraveno. "
|
1122 |
|
1123 |
+
#: notification/notification-edit.php:122
|
1124 |
msgid "Edit Notification"
|
1125 |
msgstr "Upravit oznámení"
|
1126 |
|
1127 |
+
#: notification/notification-edit.php:131 subscribers/view-subscriber-show.php:289
|
1128 |
msgid "Update Subscribers Group"
|
1129 |
msgstr "Upravit skupinu odběratelů"
|
1130 |
|
1131 |
+
#: notification/notification-show.php:57
|
1132 |
+
msgid ""
|
1133 |
+
"Use this to setup and send notification emails to your subscribers when a new post "
|
1134 |
+
"is published in your blog."
|
1135 |
+
msgstr ""
|
1136 |
+
"Slouží k nastavení a odeslání oznamovacího emailu vašim odběratelům, když je nový "
|
1137 |
+
"příspěvek publikován na vašem webu."
|
1138 |
+
|
1139 |
+
#: notification/notification-show.php:69 notification/notification-show.php:77
|
1140 |
msgid "Subscribers Group"
|
1141 |
msgstr "Skupina odběratelů"
|
1142 |
|
1143 |
#: notification/notification-show.php:70 notification/notification-show.php:78
|
1144 |
+
msgid "Post Categories / Custom Post Types"
|
1145 |
+
msgstr "Kategorie příspěvků / Vlastní typy příspěvků"
|
1146 |
+
|
1147 |
+
#: notification/notification-show.php:71 notification/notification-show.php:79
|
1148 |
msgid "Notification Status"
|
1149 |
msgstr "Stav oznámení"
|
1150 |
|
1151 |
+
#: roles/roles-add.php:53
|
1152 |
msgid "Role Updated. "
|
1153 |
+
msgstr "Oprávnění bylo aktualizováno. "
|
1154 |
|
1155 |
+
#: roles/roles-add.php:114
|
1156 |
msgid "Select user roles who can access following menus. Only Admin can change this."
|
1157 |
msgstr ""
|
1158 |
"Vyberte uživatelské role, které mají mít přístup k následujícím menu. Pouze "
|
1159 |
"správce zde může provádět změny."
|
1160 |
|
1161 |
+
#: roles/roles-add.php:121
|
1162 |
msgid "Subscribers Menu"
|
1163 |
msgstr "Menu odběratelé"
|
1164 |
|
|
|
|
|
|
|
|
|
|
|
|
|
1165 |
#: roles/roles-add.php:125 roles/roles-add.php:137 roles/roles-add.php:149
|
1166 |
#: roles/roles-add.php:161 roles/roles-add.php:173 roles/roles-add.php:185
|
1167 |
#: roles/roles-add.php:197
|
1168 |
+
msgid "Administrator Only"
|
1169 |
+
msgstr "Pouze administrátor"
|
1170 |
|
1171 |
#: roles/roles-add.php:126 roles/roles-add.php:138 roles/roles-add.php:150
|
1172 |
#: roles/roles-add.php:162 roles/roles-add.php:174 roles/roles-add.php:186
|
1173 |
#: roles/roles-add.php:198
|
1174 |
+
msgid "Administrator/Editor"
|
1175 |
+
msgstr "Administrátor/Editor"
|
1176 |
+
|
1177 |
+
#: roles/roles-add.php:127 roles/roles-add.php:139 roles/roles-add.php:151
|
1178 |
+
#: roles/roles-add.php:163 roles/roles-add.php:175 roles/roles-add.php:187
|
1179 |
+
#: roles/roles-add.php:199
|
1180 |
msgid "Administrator/Editor/Author/Contributor"
|
1181 |
msgstr "Administrátor/Editor/Autor/Spolupracovník"
|
1182 |
|
1183 |
+
#: roles/roles-add.php:133
|
1184 |
msgid "Compose Menu"
|
1185 |
msgstr "Menu vytvořit"
|
1186 |
|
1187 |
+
#: roles/roles-add.php:145
|
1188 |
msgid "Post Notifications Menu"
|
1189 |
msgstr "Oznámení o příspěvcích"
|
1190 |
|
1191 |
+
#: roles/roles-add.php:157
|
1192 |
msgid "Newsletters + Cron Settings Menu"
|
1193 |
msgstr "Zpravodaje + Menu nastavení cronu"
|
1194 |
|
1195 |
+
#: roles/roles-add.php:169
|
1196 |
msgid "Email Settings Menu"
|
1197 |
msgstr "Menu nastavení emailu"
|
1198 |
|
1199 |
+
#: roles/roles-add.php:181
|
1200 |
msgid "Reports Menu"
|
1201 |
msgstr "Menu přehledů"
|
1202 |
|
1203 |
+
#: roles/roles-add.php:193
|
1204 |
msgid "Help & Info Menu"
|
1205 |
msgstr "Menu Nápověda"
|
1206 |
|
1207 |
+
#: sendmail/sendmail.php:40
|
1208 |
msgid "Please select your mail subject."
|
1209 |
msgstr "Vyberte předmět zprávy."
|
1210 |
|
1211 |
+
#: sendmail/sendmail.php:46
|
1212 |
msgid "Please select your mail type."
|
1213 |
msgstr "Vyberte typ zprávy."
|
1214 |
|
1215 |
+
#: sendmail/sendmail.php:52
|
1216 |
msgid "Please select your group."
|
1217 |
msgstr "Vyberte skupinu."
|
1218 |
|
1219 |
+
#: sendmail/sendmail.php:59
|
1220 |
msgid "Mail sent successfully. "
|
1221 |
+
msgstr "Email byl úspěšně odeslán. "
|
1222 |
|
1223 |
+
#: sendmail/sendmail.php:63
|
1224 |
msgid "Click here to check Statistics"
|
1225 |
msgstr "Klikněte zde pro kontrolu statistik"
|
1226 |
|
1227 |
+
#: sendmail/sendmail.php:69
|
1228 |
msgid "Oops.. We are getting some error. mail not sending."
|
1229 |
msgstr "Nastala chyba. Zprávy se neodesílají."
|
1230 |
|
1231 |
+
#: sendmail/sendmail.php:97
|
1232 |
msgid "Use this to send newsletter emails to your subscribers."
|
1233 |
msgstr "Použijete při odeslání emailů svým odběratelům."
|
1234 |
|
1235 |
+
#: sendmail/sendmail.php:139
|
1236 |
+
msgid "Send email via cron job"
|
1237 |
+
msgstr "Odeslat email cronem"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1238 |
|
1239 |
+
#: sendmail/sendmail.php:178
|
1240 |
msgid "Recipients : 0 "
|
1241 |
+
msgstr "Příjemců: 0 "
|
1242 |
|
1243 |
+
#: sendmail/sendmail.php:180
|
1244 |
#, c-format
|
1245 |
msgid "Recipients : %s"
|
1246 |
msgstr "Příjemců: %s"
|
1247 |
|
1248 |
+
#: sendmail/sendmail.php:183
|
1249 |
msgid ""
|
1250 |
+
"<br><br><strong>Your Recipients count is above 100.<br>We strongly recommend that "
|
1251 |
+
"you change above Mail Type to Cron and Send Mail via Cron Job.</strong><br>Click "
|
1252 |
+
"on Help for more information."
|
1253 |
msgstr ""
|
1254 |
+
"<br><br><strong>Váš počet příjemců je vyšší než 100.<br>Důrazně doporučujeme, "
|
1255 |
+
"abyste výše změnili typ emailu na cron a zprávy odeslali přes cron.</"
|
1256 |
+
"strong><br>Pro více informací klikněte na nápovědu."
|
1257 |
|
1258 |
+
#: sendmail/sendmail.php:194 sendmail/sendmail.php:196
|
1259 |
msgid "Send Email"
|
1260 |
msgstr "Odeslat email"
|
1261 |
|
1262 |
+
#: sendmail/sendmail.php:199
|
1263 |
msgid "Reset"
|
1264 |
msgstr "Reset"
|
1265 |
|
1266 |
+
#: sentmail/deliverreport-show.php:14
|
1267 |
msgid "Oops.. Unexpected error occurred. Please try again."
|
1268 |
msgstr "Nastala neznámá chyba. Prosím opakujte akci."
|
1269 |
|
1270 |
+
#: sentmail/deliverreport-show.php:50 sentmail/sentmail-show.php:86
|
1271 |
msgid " << "
|
1272 |
msgstr " << "
|
1273 |
|
1274 |
+
#: sentmail/deliverreport-show.php:51 sentmail/sentmail-show.php:87
|
1275 |
msgid " >> "
|
1276 |
msgstr " >> "
|
1277 |
|
1278 |
+
#: sentmail/deliverreport-show.php:60
|
1279 |
msgid "Delivery Report"
|
1280 |
msgstr "Hlášení o doručení"
|
1281 |
|
1282 |
+
#: sentmail/deliverreport-show.php:71 sentmail/deliverreport-show.php:82
|
1283 |
+
#: subscribers/view-subscriber-export.php:45
|
1284 |
+
#: subscribers/view-subscriber-export.php:53
|
|
|
|
|
1285 |
msgid "Sno"
|
1286 |
msgstr "Číslo"
|
1287 |
|
1288 |
+
#: sentmail/deliverreport-show.php:72 sentmail/deliverreport-show.php:83
|
1289 |
msgid "Email"
|
1290 |
msgstr "Email"
|
1291 |
|
1292 |
#: sentmail/deliverreport-show.php:74 sentmail/deliverreport-show.php:85
|
1293 |
+
#: sentmail/sentmail-show.php:114 sentmail/sentmail-show.php:127
|
1294 |
+
msgid "Sent"
|
1295 |
+
msgstr "Odeslal"
|
1296 |
+
|
1297 |
+
#: sentmail/deliverreport-show.php:75 sentmail/deliverreport-show.php:86
|
1298 |
msgid "Sent Date"
|
1299 |
msgstr "Datum odeslání"
|
1300 |
|
1301 |
+
#: sentmail/deliverreport-show.php:76 sentmail/deliverreport-show.php:87
|
1302 |
msgid "Viewed Status"
|
1303 |
msgstr "Stav zobrazení"
|
1304 |
|
1305 |
+
#: sentmail/deliverreport-show.php:77 sentmail/deliverreport-show.php:88
|
1306 |
msgid "Viewed Date"
|
1307 |
msgstr "Datum zobrazení"
|
1308 |
|
1309 |
+
#: sentmail/sentmail-preview.php:42
|
1310 |
msgid "Back"
|
1311 |
msgstr "Zpět"
|
1312 |
|
1313 |
+
#: sentmail/sentmail-show.php:43
|
1314 |
msgid "Successfully deleted all reports except latest 10."
|
1315 |
msgstr "Úspěšně smazány všechny sestavy kromě posledních 10."
|
1316 |
|
1317 |
+
#: sentmail/sentmail-show.php:100
|
1318 |
msgid "It will show reports for all Newsletters & Post Notification emails sent."
|
1319 |
msgstr "Zobrazí přehledy všech odeslaných zpravodajů a oznámení o příspěvcích."
|
1320 |
|
1321 |
+
#: sentmail/sentmail-show.php:110 sentmail/sentmail-show.php:123
|
1322 |
msgid "View Reports"
|
1323 |
msgstr "Zobrazit hlášení"
|
1324 |
|
1325 |
+
#: sentmail/sentmail-show.php:112 sentmail/sentmail-show.php:125
|
1326 |
msgid "Type"
|
1327 |
msgstr "Typ"
|
1328 |
|
1329 |
+
#: sentmail/sentmail-show.php:115 sentmail/sentmail-show.php:128
|
1330 |
msgid "Start Date"
|
1331 |
msgstr "Počáteční datum"
|
1332 |
|
1333 |
+
#: sentmail/sentmail-show.php:116 sentmail/sentmail-show.php:129
|
1334 |
msgid "End Date"
|
1335 |
msgstr "Datum ukončení"
|
1336 |
|
1337 |
+
#: sentmail/sentmail-show.php:117 sentmail/sentmail-show.php:130
|
1338 |
msgid "Total"
|
1339 |
msgstr "Celkem"
|
1340 |
|
1341 |
+
#: sentmail/sentmail-show.php:118 sentmail/sentmail-show.php:131
|
1342 |
+
#: subscribers/view-subscriber-export.php:48
|
1343 |
+
#: subscribers/view-subscriber-export.php:56 subscribers/view-subscriber-show.php:365
|
1344 |
+
#: subscribers/view-subscriber-show.php:378
|
|
|
1345 |
msgid "Action"
|
1346 |
msgstr "Akce"
|
1347 |
|
1348 |
+
#: sentmail/sentmail-show.php:193
|
1349 |
msgid "Optimize Table & Delete Records"
|
1350 |
msgstr "Optimalizovat tabulku a smazat záznamy"
|
1351 |
|
1352 |
+
#: sentmail/sentmail-show.php:202
|
1353 |
msgid ""
|
1354 |
+
"Note: Please click on <strong>Optimize Table & Delete Records</strong> button to "
|
1355 |
+
"delete all reports except latest 10."
|
1356 |
msgstr ""
|
1357 |
+
"Poznámka: Klikněte na tlačítko <strong>Optimalizace tabulek a Smazání záznamů</"
|
1358 |
+
"strong> pro vymazání všech zpráv kromě posledních 10."
|
1359 |
|
1360 |
+
#: settings/setting-sync.php:16
|
1361 |
msgid "Table sync completed successfully."
|
1362 |
msgstr "Synchronizace tabulek byla úspěšná."
|
1363 |
|
1364 |
+
#: settings/setting-sync.php:29
|
1365 |
msgid "Sync plugin tables"
|
1366 |
msgstr "Synchronizace tabulek pluginu"
|
1367 |
|
1368 |
+
#: settings/setting-sync.php:33
|
1369 |
msgid "Click to sync tables"
|
1370 |
msgstr "Klikněte pro synchronizaci tabulek"
|
1371 |
|
1372 |
+
#: settings/settings-edit.php:117
|
1373 |
msgid "Please enter sender of notifications from name."
|
1374 |
+
msgstr "Zadejte jméno odesílatele oznámení."
|
1375 |
|
1376 |
+
#: settings/settings-edit.php:122
|
1377 |
msgid "Please enter sender of notifications from email."
|
1378 |
msgstr "Zadejte email odesílatele oznámení."
|
1379 |
|
1380 |
+
#: settings/settings-edit.php:155
|
1381 |
msgid "Settings Saved."
|
1382 |
msgstr "Nastavení bylo uloženo."
|
1383 |
|
1384 |
+
#: settings/settings-edit.php:158
|
1385 |
msgid "Oops, unable to update."
|
1386 |
msgstr "Nelze aktualizovat."
|
1387 |
|
1388 |
+
#: settings/settings-edit.php:205
|
1389 |
msgid "Sender of Notifications"
|
1390 |
msgstr "Odesílatel oznámení"
|
1391 |
|
1392 |
+
#: settings/settings-edit.php:206
|
1393 |
msgid ""
|
1394 |
+
"Choose a FROM name and FROM email address for all the emails to be sent from this "
|
1395 |
+
"plugin."
|
1396 |
msgstr ""
|
1397 |
"Vyberte jméno a emailovou adresu ODESÍLATELE pro všechny oznamovací emaily z "
|
1398 |
"tohoto pluginu."
|
1399 |
|
1400 |
+
#: settings/settings-edit.php:216
|
1401 |
msgid "Mail Type"
|
1402 |
msgstr "Typ emailu"
|
1403 |
|
1404 |
+
#: settings/settings-edit.php:217
|
1405 |
msgid ""
|
1406 |
+
"Option 1 & 2 is to send mails with default Wordpress method wp_mail(). Option 3 & "
|
1407 |
+
"4 is to send mails with PHP method mail()."
|
1408 |
msgstr ""
|
1409 |
+
"Varianty 1 a 2 odesílají emaily výchozí Wordpress metodou wp_mail(). Varianty 3 a "
|
1410 |
+
"4 odesílají emaily PHP metodou mail()."
|
1411 |
|
1412 |
+
#: settings/settings-edit.php:221
|
1413 |
msgid "1. WP HTML MAIL"
|
1414 |
msgstr "1. WP HTML ZPRÁVA"
|
1415 |
|
1416 |
+
#: settings/settings-edit.php:222
|
1417 |
msgid "2. WP PLAINTEXT MAIL"
|
1418 |
msgstr "2. WP PROSTÝ TEXT"
|
1419 |
|
1420 |
+
#: settings/settings-edit.php:223
|
1421 |
msgid "3. PHP HTML MAIL"
|
1422 |
msgstr "3. PHP HTML ZPRÁVA"
|
1423 |
|
1424 |
+
#: settings/settings-edit.php:224
|
1425 |
msgid "4. PHP PLAINTEXT MAIL"
|
1426 |
msgstr "4. PHP PROSTÝ TEXT"
|
1427 |
|
1428 |
+
#: settings/settings-edit.php:232
|
|
|
|
|
|
|
|
|
1429 |
msgid ""
|
1430 |
"Double Opt In means subscribers need to confirm their email address by an "
|
1431 |
+
"activation link sent them on a activation email message.<br />Single Opt In means "
|
1432 |
+
"subscribers do not need to confirm their email address."
|
1433 |
msgstr ""
|
1434 |
+
"Dvojité potvrzení, znamená, že požadujete aby odběratelé potvrdili svou emailovou "
|
1435 |
+
"adresu aktivačním odkazem zaslaným v aktivační emailové zprávě. Jednoduché "
|
1436 |
+
"potvrzení, znamená že odběratelé nemusí potvrdit svou emailovou adresu."
|
|
|
1437 |
|
1438 |
+
#: settings/settings-edit.php:236
|
1439 |
msgid "Double Opt In"
|
1440 |
msgstr "Dvojí potvrzení"
|
1441 |
|
1442 |
+
#: settings/settings-edit.php:237 subscribers/view-subscriber-add.php:151
|
1443 |
+
#: subscribers/view-subscriber-edit.php:150
|
1444 |
+
#: subscribers/view-subscriber-import.php:178
|
1445 |
+
#: subscribers/view-subscriber-show.php:312 subscribers/view-subscriber-show.php:339
|
|
|
1446 |
msgid "Single Opt In"
|
1447 |
msgstr "Jednoduché potvrzení"
|
1448 |
|
1449 |
+
#: settings/settings-edit.php:243
|
1450 |
msgid "Image Size"
|
1451 |
msgstr "Velikost obrázku"
|
1452 |
|
1453 |
+
#: settings/settings-edit.php:244
|
1454 |
msgid ""
|
1455 |
+
"Select image size for ###POSTIMAGE### to be shown in the Post Notification Emails."
|
|
|
1456 |
msgstr ""
|
1457 |
"Vyberte velikost obrázku ###POSTIMAGE###, který se zobrazí v emailu oznámení "
|
1458 |
+
"příspěvku."
|
1459 |
|
1460 |
+
#: settings/settings-edit.php:248
|
1461 |
msgid "Full Size"
|
1462 |
msgstr "Plná velikost"
|
1463 |
|
1464 |
+
#: settings/settings-edit.php:249
|
1465 |
msgid "Medium Size"
|
1466 |
msgstr "Střední velikost"
|
1467 |
|
1468 |
+
#: settings/settings-edit.php:250
|
1469 |
msgid "Thumbnail"
|
1470 |
msgstr "Náhled"
|
1471 |
|
1472 |
+
#: settings/settings-edit.php:270
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1473 |
msgid "Double Opt In Confirmation Link"
|
1474 |
msgstr "Potvrzovací odkaz pro dvojité potvrzení. Není nutné tuto hodnotu měnit."
|
1475 |
|
1476 |
+
#: settings/settings-edit.php:271
|
1477 |
msgid "It is a readonly field and you are advised not to modify it."
|
1478 |
msgstr "Toto je pole pouze pro čtení a doporučujeme hodnotu neupravovat."
|
1479 |
|
1480 |
+
#: settings/settings-edit.php:278
|
|
|
|
|
|
|
|
|
|
|
|
|
1481 |
msgid ""
|
1482 |
+
"This text will be displayed once user clicks on email confirmation link from the "
|
1483 |
+
"Double Opt In (confirmation) Email."
|
1484 |
msgstr ""
|
1485 |
+
"Tento text bude zobrazen po kliknutí na odkaz v potvrzovacím emailu při dvojitém "
|
1486 |
+
"potvrzení."
|
1487 |
|
1488 |
+
#: settings/settings-edit.php:285
|
1489 |
msgid "Subscriber Welcome Email"
|
1490 |
msgstr "Uvítací email pro odběratele"
|
1491 |
|
1492 |
+
#: settings/settings-edit.php:286
|
1493 |
msgid ""
|
1494 |
+
"To send welcome email to subscriber after successful signup. This option must be "
|
1495 |
+
"set to YES."
|
1496 |
msgstr ""
|
1497 |
+
"Chcete-li odeslat uvítací email odběrateli po úspěšné registraci musí být tato "
|
1498 |
+
"volba nastavena na hodnotu ANO."
|
|
|
|
|
|
|
|
|
|
|
1499 |
|
1500 |
+
#: settings/settings-edit.php:297
|
|
|
|
|
|
|
|
|
|
|
1501 |
msgid "Subscriber Welcome Email Subject"
|
1502 |
msgstr "Předmět uvítacího emailu pro odběratele"
|
1503 |
|
1504 |
+
#: settings/settings-edit.php:304
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1505 |
msgid "Subscriber Welcome Email Content"
|
1506 |
msgstr "Obsah uvítacího emailu pro odběratele"
|
1507 |
|
1508 |
+
#: settings/settings-edit.php:313
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1509 |
msgid "Unsubscribe Link"
|
1510 |
msgstr "Odhlašovací odkaz"
|
1511 |
|
1512 |
+
#: settings/settings-edit.php:320
|
1513 |
msgid "Unsubscribe Text in Email"
|
1514 |
msgstr "Text emailu pro odhlášení"
|
1515 |
|
1516 |
+
#: settings/settings-edit.php:321
|
1517 |
msgid ""
|
1518 |
+
"Enter the text for the unsubscribe link. This text is added with unsubscribe link "
|
1519 |
+
"in the emails. (Keyword: ###LINK###)"
|
1520 |
msgstr ""
|
1521 |
+
"Zadejte text odkazu pro odhlášení. Tento text je přidán do odkazu pro odhlášení ve "
|
1522 |
+
"zpravodaji. (Klíčové slovo: ###LINK###)"
|
|
|
|
|
|
|
|
|
1523 |
|
1524 |
+
#: settings/settings-edit.php:328
|
1525 |
msgid "This text will be displayed once user clicks on unsubscribe link."
|
1526 |
+
msgstr "Tento text bude zobrazen při prvním kliknutí na odhlašovací odkaz."
|
|
|
|
|
|
|
|
|
1527 |
|
1528 |
+
#: settings/settings-edit.php:336
|
1529 |
msgid ""
|
1530 |
+
"Default message to display if there is any issue while clicking on confirmation "
|
1531 |
+
"link from the Double Opt In (confirmation) Emails."
|
1532 |
msgstr ""
|
1533 |
"Základní zpráva k zobrazení po kliknutí na potvrzovací odkaz při dvojitém "
|
1534 |
"potvrzení emailu."
|
1535 |
|
1536 |
+
#: settings/settings-edit.php:343
|
|
|
|
|
|
|
|
|
1537 |
msgid ""
|
1538 |
+
"Default message to display if there is any issue while clicking on unsubscribe "
|
1539 |
+
"link from the Emails."
|
1540 |
msgstr "Základní zpráva k zobrazení po kliknutí na odhlašovací odkaz v emailu."
|
1541 |
|
1542 |
+
#: settings/settings-edit.php:350
|
1543 |
msgid "Admin Email Addresses"
|
1544 |
msgstr "Emailová adresa administrátora"
|
1545 |
|
1546 |
+
#: settings/settings-edit.php:351
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1547 |
msgid ""
|
1548 |
+
"Enter the admin email addresses that should receive notifications (separated by "
|
1549 |
+
"comma)."
|
1550 |
msgstr ""
|
1551 |
+
"Zadejte emailové adresy administrátorů, kteří by měli přijímat oznámení (oddělené "
|
1552 |
+
"čárkou)."
|
1553 |
|
1554 |
+
#: settings/settings-edit.php:358
|
|
|
|
|
|
|
|
|
1555 |
msgid ""
|
1556 |
+
"To send admin email notifications for the new subscriber. This option must be set "
|
1557 |
+
"to YES."
|
1558 |
msgstr ""
|
1559 |
+
"Pro odeslání oznámení administrátorovi o novém odběrateli, je nutné volbu nastavit "
|
1560 |
+
"na ANO."
|
1561 |
|
1562 |
+
#: settings/settings-edit.php:385
|
1563 |
msgid "Sent Report Subject"
|
1564 |
msgstr "Předmět emailu pro hlášení o odeslání"
|
1565 |
|
1566 |
+
#: settings/settings-edit.php:392
|
|
|
|
|
|
|
|
|
|
|
|
|
1567 |
msgid "Sent Report Content"
|
1568 |
msgstr "Obsah hlášení o odeslání"
|
1569 |
|
1570 |
+
#: settings/settings-edit.php:403
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1571 |
msgid "Save Settings"
|
1572 |
msgstr "Uložit nastavení"
|
1573 |
|
1574 |
+
#: subscribers/view-subscriber-add.php:36 subscribers/view-subscriber-edit.php:54
|
1575 |
msgid "Please enter subscriber email address."
|
1576 |
msgstr "Zadejte emailovou adresu odběratele."
|
1577 |
|
1578 |
+
#: subscribers/view-subscriber-add.php:49
|
1579 |
msgid "Please select or create your group for this email."
|
1580 |
msgstr "Vyberte nebo vytvořte skupinu pro tento email."
|
1581 |
|
1582 |
+
#: subscribers/view-subscriber-add.php:56
|
1583 |
msgid ""
|
1584 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in the "
|
1585 |
+
"group name."
|
1586 |
msgstr ""
|
1587 |
+
"Chyba: Speciální znaky (['^$%&*()}{@#~?><>,|=_+\\\"]) v názvu skupiny nelze použít."
|
|
|
1588 |
|
1589 |
+
#: subscribers/view-subscriber-add.php:66
|
1590 |
msgid "Subscriber has been saved."
|
1591 |
msgstr "Odběratel byl uložen."
|
1592 |
|
1593 |
+
#: subscribers/view-subscriber-add.php:68
|
1594 |
msgid "Subscriber already exists."
|
1595 |
msgstr "Odběratel již existuje."
|
1596 |
|
1597 |
+
#: subscribers/view-subscriber-add.php:71
|
1598 |
msgid "Invalid Email."
|
1599 |
msgstr "Neplatný email."
|
1600 |
|
1601 |
+
#: subscribers/view-subscriber-add.php:110 subscribers/view-subscriber-edit.php:109
|
1602 |
+
#: subscribers/view-subscriber-export.php:35
|
1603 |
+
#: subscribers/view-subscriber-import.php:143
|
1604 |
+
#: subscribers/view-subscriber-show.php:242 subscribers/view-subscriber-sync.php:89
|
1605 |
msgid "Add New Subscriber"
|
1606 |
msgstr "Přidat nového odběratele"
|
1607 |
|
1608 |
+
#: subscribers/view-subscriber-add.php:111 subscribers/view-subscriber-edit.php:110
|
1609 |
+
#: subscribers/view-subscriber-export.php:36
|
1610 |
+
#: subscribers/view-subscriber-import.php:210
|
1611 |
+
#: subscribers/view-subscriber-show.php:243 subscribers/view-subscriber-sync.php:90
|
1612 |
msgid "Import"
|
1613 |
msgstr "Import"
|
1614 |
|
1615 |
+
#: subscribers/view-subscriber-add.php:112 subscribers/view-subscriber-edit.php:111
|
1616 |
+
#: subscribers/view-subscriber-import.php:144
|
1617 |
+
#: subscribers/view-subscriber-show.php:244 subscribers/view-subscriber-sync.php:91
|
1618 |
msgid "Export"
|
1619 |
msgstr "Export"
|
1620 |
|
1621 |
+
#: subscribers/view-subscriber-add.php:113 subscribers/view-subscriber-edit.php:112
|
1622 |
+
#: subscribers/view-subscriber-export.php:37
|
1623 |
+
#: subscribers/view-subscriber-import.php:145
|
1624 |
+
#: subscribers/view-subscriber-show.php:245 subscribers/view-subscriber-sync.php:143
|
|
|
1625 |
msgid "Sync"
|
1626 |
msgstr "Synchronizovat"
|
1627 |
|
1628 |
+
#: subscribers/view-subscriber-add.php:123
|
1629 |
msgid "Enter Subscriber's Full name"
|
1630 |
msgstr "Zadejte celé jméno odběratele"
|
1631 |
|
1632 |
+
#: subscribers/view-subscriber-add.php:133
|
1633 |
msgid "Enter Subscriber's Email Address"
|
1634 |
msgstr "Zadejte emailovou adresu odběratele"
|
1635 |
|
1636 |
+
#: subscribers/view-subscriber-add.php:143
|
1637 |
msgid "Select Subscriber's Status"
|
1638 |
msgstr "Vyberte stav odběratele"
|
1639 |
|
1640 |
+
#: subscribers/view-subscriber-add.php:148 subscribers/view-subscriber-edit.php:147
|
1641 |
+
#: subscribers/view-subscriber-import.php:175
|
1642 |
+
#: subscribers/view-subscriber-show.php:309 subscribers/view-subscriber-show.php:336
|
|
|
1643 |
msgid "Confirmed"
|
1644 |
msgstr "Potvrzeno"
|
1645 |
|
1646 |
+
#: subscribers/view-subscriber-add.php:149 subscribers/view-subscriber-edit.php:148
|
1647 |
+
#: subscribers/view-subscriber-import.php:176
|
1648 |
+
#: subscribers/view-subscriber-show.php:310 subscribers/view-subscriber-show.php:337
|
|
|
1649 |
msgid "Unconfirmed"
|
1650 |
msgstr "Nepotvrzeno"
|
1651 |
|
1652 |
+
#: subscribers/view-subscriber-add.php:150 subscribers/view-subscriber-edit.php:149
|
1653 |
+
#: subscribers/view-subscriber-import.php:177
|
1654 |
+
#: subscribers/view-subscriber-show.php:311 subscribers/view-subscriber-show.php:338
|
|
|
1655 |
msgid "Unsubscribed"
|
1656 |
msgstr "Zrušen odběr"
|
1657 |
|
1658 |
+
#: subscribers/view-subscriber-add.php:158
|
1659 |
msgid "Select (or) Create Group for Subscriber"
|
1660 |
msgstr "Vyberte (nebo) vytvořte skupinu pro odběratele"
|
1661 |
|
1662 |
+
#: subscribers/view-subscriber-add.php:174 subscribers/view-subscriber-import.php:202
|
|
|
1663 |
msgid "(or)"
|
1664 |
msgstr "(nebo)"
|
1665 |
|
1666 |
+
#: subscribers/view-subscriber-add.php:183
|
1667 |
msgid "Add Subscriber"
|
1668 |
msgstr "Přidat odběratele"
|
1669 |
|
1670 |
+
#: subscribers/view-subscriber-edit.php:64
|
1671 |
msgid "Error: Special characters are not allowed in the group name."
|
1672 |
msgstr "Chyba: Speciální znaky v názvu skupiny nelze použít."
|
1673 |
|
1674 |
+
#: subscribers/view-subscriber-edit.php:74
|
1675 |
msgid "Subscriber details updated."
|
1676 |
msgstr "Podrobnosti odběratele byly aktualizovány."
|
1677 |
|
1678 |
+
#: subscribers/view-subscriber-edit.php:76
|
1679 |
msgid "Subscriber already exists for this group."
|
1680 |
msgstr "Odběratel již v této skupině existuje."
|
1681 |
|
1682 |
+
#: subscribers/view-subscriber-edit.php:108
|
1683 |
msgid "Edit Subscriber"
|
1684 |
msgstr "Upravit odběratele"
|
1685 |
|
1686 |
+
#: subscribers/view-subscriber-edit.php:122
|
1687 |
msgid "Subscriber's Full Name"
|
1688 |
msgstr "Celé jména odběratele"
|
1689 |
|
1690 |
+
#: subscribers/view-subscriber-edit.php:132
|
1691 |
msgid "Subscriber's Email Address"
|
1692 |
msgstr "Emailová adresa odběratele"
|
1693 |
|
1694 |
+
#: subscribers/view-subscriber-edit.php:142
|
1695 |
msgid "Update Subscriber's Status"
|
1696 |
msgstr "Změna stavu odběratele"
|
1697 |
|
1698 |
+
#: subscribers/view-subscriber-edit.php:157
|
1699 |
msgid "Update Subscriber's Group"
|
1700 |
+
msgstr "Změna skupiny odběratele"
|
1701 |
|
1702 |
+
#: subscribers/view-subscriber-export.php:34
|
1703 |
msgid "Export Email Addresses"
|
1704 |
msgstr "Exportovat emailové adresy"
|
1705 |
|
1706 |
+
#: subscribers/view-subscriber-export.php:46
|
1707 |
+
#: subscribers/view-subscriber-export.php:54
|
1708 |
msgid "Type of List to Export"
|
1709 |
msgstr "Typ seznamu pro export"
|
1710 |
|
1711 |
+
#: subscribers/view-subscriber-export.php:61
|
|
|
|
|
|
|
|
|
|
|
1712 |
msgid "1"
|
1713 |
msgstr "1"
|
1714 |
|
1715 |
+
#: subscribers/view-subscriber-export.php:64
|
1716 |
+
#: subscribers/view-subscriber-export.php:70
|
1717 |
+
#: subscribers/view-subscriber-export.php:76
|
1718 |
+
#: subscribers/view-subscriber-export.php:82
|
1719 |
+
#: subscribers/view-subscriber-export.php:88
|
|
|
|
|
1720 |
msgid "Click to Export in CSV"
|
1721 |
msgstr "Klikněte pro export do CSV"
|
1722 |
|
1723 |
+
#: subscribers/view-subscriber-export.php:67
|
1724 |
msgid "2"
|
1725 |
msgstr "2"
|
1726 |
|
1727 |
+
#: subscribers/view-subscriber-export.php:73
|
|
|
|
|
|
|
|
|
1728 |
msgid "3"
|
1729 |
msgstr "3"
|
1730 |
|
1731 |
+
#: subscribers/view-subscriber-export.php:80
|
1732 |
+
msgid "WordPress Registered Users"
|
1733 |
+
msgstr "WordPress registrovaní uživatelé"
|
1734 |
+
|
1735 |
+
#: subscribers/view-subscriber-export.php:86
|
1736 |
msgid "Commented Authors"
|
1737 |
msgstr "Autoři komentářů"
|
1738 |
|
1739 |
+
#: subscribers/view-subscriber-import.php:44
|
1740 |
msgid ""
|
1741 |
+
"Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in the "
|
1742 |
+
"Group name."
|
1743 |
msgstr ""
|
1744 |
+
"Chyba: Speciální znaky (['^$%&*()}{@#~?><>,|=_+\\\"]) v názvu skupiny nelze použít."
|
|
|
1745 |
|
1746 |
+
#: subscribers/view-subscriber-import.php:92
|
1747 |
msgid "email imported."
|
1748 |
msgstr "email byl importován."
|
1749 |
|
1750 |
+
#: subscribers/view-subscriber-import.php:93
|
1751 |
msgid "email already exists."
|
1752 |
msgstr "email již existuje."
|
1753 |
|
1754 |
+
#: subscribers/view-subscriber-import.php:94
|
1755 |
msgid "email are invalid."
|
1756 |
msgstr "emaily jsou neplatné."
|
1757 |
|
1758 |
+
#: subscribers/view-subscriber-import.php:97
|
1759 |
+
#: subscribers/view-subscriber-import.php:126
|
1760 |
msgid "Click here"
|
1761 |
msgstr "Klikněte zde"
|
1762 |
|
1763 |
+
#: subscribers/view-subscriber-import.php:97
|
1764 |
+
#: subscribers/view-subscriber-import.php:126
|
1765 |
msgid " to view details."
|
1766 |
+
msgstr " pro zobrazení podrobností."
|
1767 |
|
1768 |
+
#: subscribers/view-subscriber-import.php:105
|
1769 |
msgid "File Upload Failed."
|
1770 |
msgstr "Nahrávání souboru selhalo."
|
1771 |
|
1772 |
+
#: subscribers/view-subscriber-import.php:142
|
1773 |
msgid "Import Email Addresses"
|
1774 |
msgstr "Import emailových adres"
|
1775 |
|
1776 |
+
#: subscribers/view-subscriber-import.php:155
|
1777 |
msgid "Select CSV file"
|
1778 |
msgstr "Vyberte soubor CSV"
|
1779 |
|
1780 |
+
#: subscribers/view-subscriber-import.php:157
|
1781 |
msgid "Check CSV structure "
|
1782 |
+
msgstr "Zkontrolujte CSV strukturu "
|
1783 |
|
1784 |
+
#: subscribers/view-subscriber-import.php:158
|
1785 |
msgid "from here"
|
1786 |
msgstr "zde"
|
1787 |
|
1788 |
+
#: subscribers/view-subscriber-import.php:169
|
1789 |
msgid "Select Subscribers Email Status"
|
1790 |
msgstr "Vybrat stav emailů odběratelů"
|
1791 |
|
1792 |
+
#: subscribers/view-subscriber-import.php:185
|
1793 |
msgid "Select (or) Create Group for Subscribers"
|
1794 |
msgstr "Vyberte (nebo) vytvořte skupinu pro odběratele"
|
1795 |
|
1796 |
+
#: subscribers/view-subscriber-show.php:45
|
1797 |
msgid "Selected details does not exists."
|
1798 |
msgstr "Vybrané detaily neexistují."
|
1799 |
|
1800 |
+
#: subscribers/view-subscriber-show.php:56 subscribers/view-subscriber-show.php:95
|
1801 |
msgid "Record deleted."
|
1802 |
msgstr "Záznam byl smazán."
|
1803 |
|
1804 |
+
#: subscribers/view-subscriber-show.php:67
|
1805 |
msgid "To send confirmation email, please change the Opt-in option to Double Opt In."
|
1806 |
msgstr ""
|
1807 |
+
"Chcete-li odeslat potvrzovací email, změňte možnost potvrzení na dvojité potvrzení."
|
|
|
1808 |
|
1809 |
+
#: subscribers/view-subscriber-show.php:75 subscribers/view-subscriber-show.php:134
|
1810 |
msgid "Confirmation emails Resent Successfully."
|
1811 |
msgstr "Potvrzovací emaily úspěšně odeslány."
|
1812 |
|
1813 |
+
#: subscribers/view-subscriber-show.php:100 subscribers/view-subscriber-show.php:139
|
1814 |
+
#: subscribers/view-subscriber-show.php:177 subscribers/view-subscriber-show.php:216
|
|
|
1815 |
msgid "No record was selected."
|
1816 |
msgstr "Není vybrán žádný záznam."
|
1817 |
|
1818 |
+
#: subscribers/view-subscriber-show.php:115
|
1819 |
msgid "To send confirmation mail, please change the Opt-in option to Double Opt In."
|
1820 |
msgstr ""
|
1821 |
"Chcete-li odeslat potvrzovací zprávu, změňte možnost potvrzení na dvojité "
|
1822 |
"potvrzení."
|
1823 |
|
1824 |
+
#: subscribers/view-subscriber-show.php:163
|
1825 |
msgid "Subscribers Group updated."
|
1826 |
msgstr "Skupina odběratelů je upravena."
|
1827 |
|
1828 |
+
#: subscribers/view-subscriber-show.php:168
|
1829 |
msgid "Please select New group to update."
|
1830 |
msgstr "Vyberte novou skupinu k úpravě."
|
1831 |
|
1832 |
+
#: subscribers/view-subscriber-show.php:202
|
1833 |
msgid "Subscribers Status updated."
|
1834 |
msgstr "Stav odběratele upraven."
|
1835 |
|
1836 |
+
#: subscribers/view-subscriber-show.php:207
|
1837 |
msgid "Please select New Status to update."
|
1838 |
msgstr "Vyberte nový stav ke změně."
|
1839 |
|
1840 |
+
#: subscribers/view-subscriber-show.php:286
|
1841 |
msgid "Bulk Actions"
|
1842 |
msgstr "Hromadné úpravy"
|
1843 |
|
1844 |
+
#: subscribers/view-subscriber-show.php:288 subscribers/view-subscriber-show.php:417
|
|
|
1845 |
msgid "Resend Confirmation"
|
1846 |
msgstr "Znovu odeslat povtrzení"
|
1847 |
|
1848 |
+
#: subscribers/view-subscriber-show.php:290
|
1849 |
msgid "Update Subscribers Status"
|
1850 |
msgstr "Změna stavu odběratele"
|
1851 |
|
1852 |
+
#: subscribers/view-subscriber-show.php:293
|
1853 |
msgid "Select Group"
|
1854 |
msgstr "Vyberte skupinu"
|
1855 |
|
1856 |
+
#: subscribers/view-subscriber-show.php:314
|
|
|
|
|
|
|
|
|
|
|
1857 |
msgid "Apply"
|
1858 |
msgstr "Použít"
|
1859 |
|
1860 |
+
#: subscribers/view-subscriber-show.php:318
|
1861 |
msgid "All Groups"
|
1862 |
msgstr "Všechny skupiny"
|
1863 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1864 |
#: subscribers/view-subscriber-show.php:335
|
1865 |
+
msgid "All Status"
|
1866 |
+
msgstr "Všechny stavy"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1867 |
|
1868 |
+
#: subscribers/view-subscriber-show.php:349
|
1869 |
msgid "Display All"
|
1870 |
msgstr "Zobrazit vše"
|
1871 |
|
1872 |
+
#: subscribers/view-subscriber-show.php:360 subscribers/view-subscriber-show.php:373
|
|
|
1873 |
msgid "Email Address"
|
1874 |
msgstr "Emailová adresa"
|
1875 |
|
1876 |
+
#: subscribers/view-subscriber-show.php:363 subscribers/view-subscriber-show.php:376
|
|
|
1877 |
msgid "Group"
|
1878 |
msgstr "Skupina"
|
1879 |
|
1880 |
+
#: subscribers/view-subscriber-sync.php:36
|
|
|
|
|
|
|
|
|
|
|
1881 |
msgid "Please select default group to newly registered user."
|
1882 |
+
msgstr "Vyberte výchozí skupinu pro nově registrované uživatele."
|
1883 |
|
1884 |
+
#: subscribers/view-subscriber-sync.php:50
|
1885 |
msgid "Emails Successfully Synced."
|
1886 |
msgstr "Emaily byly úspěšně synchronizovány."
|
1887 |
|
1888 |
+
#: subscribers/view-subscriber-sync.php:88
|
1889 |
msgid "Sync Email"
|
1890 |
msgstr "Synchronizace emailu"
|
1891 |
|
1892 |
+
#: subscribers/view-subscriber-sync.php:101
|
1893 |
msgid "Sync newly registered users to subscribers list"
|
1894 |
msgstr "Synchronizovat nově registrované uživatele do seznamu"
|
1895 |
|
1896 |
+
#: subscribers/view-subscriber-sync.php:114
|
1897 |
msgid "Select group to add newly registered users to"
|
1898 |
msgstr "Vybert skupinu do které se mají přidávat nově registrovaní uživatelé"
|
1899 |
|
1908 |
msgid "http://www.icegram.com/"
|
1909 |
msgstr "http://www.icegram.com/"
|
1910 |
|
1911 |
+
#. Description of the plugin/theme
|
1912 |
+
msgid ""
|
1913 |
+
"Add subscription forms on website, send HTML newsletters & automatically notify "
|
1914 |
+
"subscribers about new blog posts once it is published."
|
1915 |
+
msgstr ""
|
1916 |
+
"Přidejte formulář přihlášení k zasílání zpravodajů na internetové stránky, "
|
1917 |
+
"posílejte HTML zpravodaje a automaticky informujte objednatele o nových "
|
1918 |
+
"příspěvcích, jakmile budou zveřejněny."
|
1919 |
+
|
1920 |
#. Author of the plugin/theme
|
1921 |
msgid "Icegram"
|
1922 |
msgstr "Icegram"
|
languages/email-subscribers.pot
CHANGED
@@ -2,13 +2,13 @@
|
|
2 |
# This file is distributed under the same license as the Email Subscribers & Newsletters package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Email Subscribers & Newsletters 3.2.
|
6 |
"Report-Msgid-Bugs-To: http://www.storeapps.org/support/contact-us/\n"
|
7 |
-
"POT-Creation-Date: 2017-05
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
-
"PO-Revision-Date:
|
12 |
"Last-Translator: Ratnakar Dubey <ratnakar.dubey@storeapps.org>\n"
|
13 |
"Language-Team: StoreApps <support@storeapps.org>\n"
|
14 |
|
@@ -64,17 +64,17 @@ msgstr ""
|
|
64 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
65 |
msgstr ""
|
66 |
|
67 |
-
#: classes/es-loadwidget.php:28 classes/es-register.php:
|
68 |
#: subscribers/view-subscriber-show.php:361
|
69 |
#: subscribers/view-subscriber-show.php:374
|
70 |
msgid "Name"
|
71 |
msgstr ""
|
72 |
|
73 |
-
#: classes/es-loadwidget.php:33 classes/es-register.php:
|
74 |
msgid "Email *"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#: classes/es-loadwidget.php:38 classes/es-register.php:
|
78 |
msgid "Subscribe"
|
79 |
msgstr ""
|
80 |
|
@@ -102,7 +102,8 @@ msgstr ""
|
|
102 |
msgid "Newsletters"
|
103 |
msgstr ""
|
104 |
|
105 |
-
#: classes/es-register.php:159 classes/es-register.php:160
|
|
|
106 |
msgid "Cron Settings"
|
107 |
msgstr ""
|
108 |
|
@@ -188,115 +189,110 @@ msgstr ""
|
|
188 |
|
189 |
#: classes/es-register.php:194
|
190 |
msgctxt "view-subscriber-enhanced-select"
|
191 |
-
msgid "Do you want to export the emails?"
|
192 |
-
msgstr ""
|
193 |
-
|
194 |
-
#: classes/es-register.php:195
|
195 |
-
msgctxt "view-subscriber-enhanced-select"
|
196 |
msgid ""
|
197 |
"Please select only csv file. Please check official website for csv "
|
198 |
"structure.."
|
199 |
msgstr ""
|
200 |
|
201 |
-
#: classes/es-register.php:
|
202 |
msgctxt "compose-enhanced-select"
|
203 |
msgid "Please enter name for configuration."
|
204 |
msgstr ""
|
205 |
|
206 |
-
#: classes/es-register.php:
|
207 |
msgctxt "compose-enhanced-select"
|
208 |
msgid "Please select template for this configuration."
|
209 |
msgstr ""
|
210 |
|
211 |
-
#: classes/es-register.php:
|
212 |
msgctxt "compose-enhanced-select"
|
213 |
msgid "Do you want to delete this record?"
|
214 |
msgstr ""
|
215 |
|
216 |
-
#: classes/es-register.php:
|
217 |
msgctxt "notification-enhanced-select"
|
218 |
msgid "Please select subscribers group."
|
219 |
msgstr ""
|
220 |
|
221 |
-
#: classes/es-register.php:
|
222 |
msgctxt "notification-enhanced-select"
|
223 |
msgid ""
|
224 |
"Please select notification mail subject. Use compose menu to create new."
|
225 |
msgstr ""
|
226 |
|
227 |
-
#: classes/es-register.php:
|
228 |
msgctxt "notification-enhanced-select"
|
229 |
msgid "Please select notification status."
|
230 |
msgstr ""
|
231 |
|
232 |
-
#: classes/es-register.php:
|
233 |
msgctxt "notification-enhanced-select"
|
234 |
msgid "Do you want to delete this record?"
|
235 |
msgstr ""
|
236 |
|
237 |
-
#: classes/es-register.php:
|
238 |
msgctxt "sendmail-enhanced-select"
|
239 |
msgid "Please select your mail subject."
|
240 |
msgstr ""
|
241 |
|
242 |
-
#: classes/es-register.php:
|
243 |
msgctxt "sendmail-enhanced-select"
|
244 |
msgid "Please select your mail type."
|
245 |
msgstr ""
|
246 |
|
247 |
-
#: classes/es-register.php:
|
248 |
msgctxt "sendmail-enhanced-select"
|
249 |
msgid ""
|
250 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
251 |
"this."
|
252 |
msgstr ""
|
253 |
|
254 |
-
#: classes/es-register.php:
|
255 |
msgctxt "sentmail-enhanced-select"
|
256 |
msgid "Do you want to delete this record?"
|
257 |
msgstr ""
|
258 |
|
259 |
-
#: classes/es-register.php:
|
260 |
msgctxt "sentmail-enhanced-select"
|
261 |
msgid "Do you want to delete all records except latest 10?"
|
262 |
msgstr ""
|
263 |
|
264 |
-
#: classes/es-register.php:
|
265 |
msgctxt "cron-enhanced-select"
|
266 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
267 |
msgstr ""
|
268 |
|
269 |
-
#: classes/es-register.php:
|
270 |
msgctxt "cron-enhanced-select"
|
271 |
msgid "Please enter the mail count, only number."
|
272 |
msgstr ""
|
273 |
|
274 |
-
#: classes/es-register.php:
|
275 |
msgctxt "widget-enhanced-select"
|
276 |
msgid "Please enter email address"
|
277 |
msgstr ""
|
278 |
|
279 |
-
#: classes/es-register.php:
|
280 |
msgctxt "widget-enhanced-select"
|
281 |
msgid "Please provide a valid email address"
|
282 |
msgstr ""
|
283 |
|
284 |
-
#: classes/es-register.php:
|
285 |
msgctxt "widget-enhanced-select"
|
286 |
msgid "loading..."
|
287 |
msgstr ""
|
288 |
|
289 |
-
#: classes/es-register.php:
|
290 |
msgctxt "widget-enhanced-select"
|
291 |
msgid "Cannot create XMLHTTP instance"
|
292 |
msgstr ""
|
293 |
|
294 |
-
#: classes/es-register.php:
|
295 |
msgctxt "widget-enhanced-select"
|
296 |
msgid "Successfully Subscribed."
|
297 |
msgstr ""
|
298 |
|
299 |
-
#: classes/es-register.php:
|
300 |
msgctxt "widget-enhanced-select"
|
301 |
msgid ""
|
302 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -304,57 +300,57 @@ msgid ""
|
|
304 |
"mail in your mailbox, please check your spam folder."
|
305 |
msgstr ""
|
306 |
|
307 |
-
#: classes/es-register.php:
|
308 |
msgctxt "widget-enhanced-select"
|
309 |
msgid "Email Address already exists!"
|
310 |
msgstr ""
|
311 |
|
312 |
-
#: classes/es-register.php:
|
313 |
msgctxt "widget-enhanced-select"
|
314 |
msgid "Oops.. Unexpected error occurred."
|
315 |
msgstr ""
|
316 |
|
317 |
-
#: classes/es-register.php:
|
318 |
msgctxt "widget-enhanced-select"
|
319 |
msgid "Invalid email address"
|
320 |
msgstr ""
|
321 |
|
322 |
-
#: classes/es-register.php:
|
323 |
msgctxt "widget-enhanced-select"
|
324 |
msgid "Please try after some time"
|
325 |
msgstr ""
|
326 |
|
327 |
-
#: classes/es-register.php:
|
328 |
msgctxt "widget-enhanced-select"
|
329 |
msgid "There was a problem with the request"
|
330 |
msgstr ""
|
331 |
|
332 |
-
#: classes/es-register.php:
|
333 |
msgctxt "widget-page-enhanced-select"
|
334 |
msgid "Please enter email address"
|
335 |
msgstr ""
|
336 |
|
337 |
-
#: classes/es-register.php:
|
338 |
msgctxt "widget-page-enhanced-select"
|
339 |
msgid "Please provide a valid email address"
|
340 |
msgstr ""
|
341 |
|
342 |
-
#: classes/es-register.php:
|
343 |
msgctxt "widget-page-enhanced-select"
|
344 |
msgid "loading..."
|
345 |
msgstr ""
|
346 |
|
347 |
-
#: classes/es-register.php:
|
348 |
msgctxt "widget-page-enhanced-select"
|
349 |
msgid "Cannot create XMLHTTP instance"
|
350 |
msgstr ""
|
351 |
|
352 |
-
#: classes/es-register.php:
|
353 |
msgctxt "widget-page-enhanced-select"
|
354 |
msgid "Successfully Subscribed."
|
355 |
msgstr ""
|
356 |
|
357 |
-
#: classes/es-register.php:
|
358 |
msgctxt "widget-page-enhanced-select"
|
359 |
msgid ""
|
360 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
@@ -362,68 +358,68 @@ msgid ""
|
|
362 |
"mail in your mailbox, please check your spam folder."
|
363 |
msgstr ""
|
364 |
|
365 |
-
#: classes/es-register.php:
|
366 |
msgctxt "widget-page-enhanced-select"
|
367 |
msgid "Email Address already exists!"
|
368 |
msgstr ""
|
369 |
|
370 |
-
#: classes/es-register.php:
|
371 |
msgctxt "widget-page-enhanced-select"
|
372 |
msgid "Oops.. Unexpected error occurred."
|
373 |
msgstr ""
|
374 |
|
375 |
-
#: classes/es-register.php:
|
376 |
msgctxt "widget-page-enhanced-select"
|
377 |
msgid "Invalid email address"
|
378 |
msgstr ""
|
379 |
|
380 |
-
#: classes/es-register.php:
|
381 |
msgctxt "widget-page-enhanced-select"
|
382 |
msgid "Please try after some time"
|
383 |
msgstr ""
|
384 |
|
385 |
-
#: classes/es-register.php:
|
386 |
msgctxt "widget-page-enhanced-select"
|
387 |
msgid "There was a problem with the request"
|
388 |
msgstr ""
|
389 |
|
390 |
-
#: classes/es-register.php:
|
391 |
msgid ""
|
392 |
"<b>FREE</b> plugin: Quickly grow your subscribers list with beautiful and "
|
393 |
"high converting optins."
|
394 |
msgstr ""
|
395 |
|
396 |
-
#: classes/es-register.php:
|
397 |
msgid "Try Icegram"
|
398 |
msgstr ""
|
399 |
|
400 |
-
#: classes/es-register.php:
|
401 |
msgid "No, I don't need it"
|
402 |
msgstr ""
|
403 |
|
404 |
-
#: classes/es-register.php:
|
405 |
msgid "Widget Title"
|
406 |
msgstr ""
|
407 |
|
408 |
-
#: classes/es-register.php:
|
409 |
msgid "Short description about subscription form"
|
410 |
msgstr ""
|
411 |
|
412 |
-
#: classes/es-register.php:
|
413 |
msgid "Display Name Field"
|
414 |
msgstr ""
|
415 |
|
416 |
-
#: classes/es-register.php:
|
417 |
#: settings/settings-edit.php:363 subscribers/view-subscriber-sync.php:107
|
418 |
msgid "YES"
|
419 |
msgstr ""
|
420 |
|
421 |
-
#: classes/es-register.php:
|
422 |
#: settings/settings-edit.php:364 subscribers/view-subscriber-sync.php:106
|
423 |
msgid "NO"
|
424 |
msgstr ""
|
425 |
|
426 |
-
#: classes/es-register.php:
|
427 |
msgid "Subscriber Group"
|
428 |
msgstr ""
|
429 |
|
@@ -442,11 +438,11 @@ msgstr ""
|
|
442 |
#: compose/compose-add.php:75 compose/compose-edit.php:86
|
443 |
#: compose/compose-preview.php:28 compose/compose-show.php:66
|
444 |
#: cron/cron-add.php:80 notification/notification-add.php:113
|
445 |
-
#: notification/notification-edit.php:124
|
446 |
-
#:
|
447 |
-
#:
|
448 |
-
#: sentmail/sentmail-
|
449 |
-
#: subscribers/view-subscriber-add.php:114
|
450 |
#: subscribers/view-subscriber-edit.php:113
|
451 |
#: subscribers/view-subscriber-export.php:38
|
452 |
#: subscribers/view-subscriber-import.php:146
|
@@ -530,7 +526,8 @@ msgid "Edit Email"
|
|
530 |
msgstr ""
|
531 |
|
532 |
#: compose/compose-edit.php:85 compose/compose-show.php:65
|
533 |
-
#: notification/notification-edit.php:123
|
|
|
534 |
msgid "Add New"
|
535 |
msgstr ""
|
536 |
|
@@ -653,7 +650,7 @@ msgid ""
|
|
653 |
"</a>"
|
654 |
msgstr ""
|
655 |
|
656 |
-
#: export/export-email-address.php:
|
657 |
msgid "Unexpected url submit has been detected"
|
658 |
msgstr ""
|
659 |
|
@@ -829,53 +826,65 @@ msgstr ""
|
|
829 |
msgid "Select"
|
830 |
msgstr ""
|
831 |
|
832 |
-
#: notification/notification-add.php:142
|
|
|
833 |
msgid "Select Notification Email Subject"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#: notification/notification-add.php:143
|
|
|
837 |
msgid "(Use compose menu to create new)"
|
838 |
msgstr ""
|
839 |
|
840 |
-
#: notification/notification-add.php:167
|
|
|
841 |
msgid "Select Post Categories"
|
842 |
msgstr ""
|
843 |
|
844 |
-
#: notification/notification-add.php:195
|
|
|
845 |
msgid "Check All"
|
846 |
msgstr ""
|
847 |
|
848 |
-
#: notification/notification-add.php:196
|
|
|
849 |
msgid "Uncheck All"
|
850 |
msgstr ""
|
851 |
|
852 |
-
#: notification/notification-add.php:202
|
|
|
853 |
msgid "Select your Custom Post Type"
|
854 |
msgstr ""
|
855 |
|
856 |
-
#: notification/notification-add.php:203
|
|
|
857 |
msgid "(Optional)"
|
858 |
msgstr ""
|
859 |
|
860 |
-
#: notification/notification-add.php:232
|
|
|
861 |
msgid "No Custom Post Types Available"
|
862 |
msgstr ""
|
863 |
|
864 |
-
#: notification/notification-add.php:239
|
|
|
865 |
msgid "Select Notification Status when a new post is published"
|
866 |
msgstr ""
|
867 |
|
868 |
-
#: notification/notification-add.php:243
|
|
|
869 |
#: notification/notification-show.php:130 sendmail/sendmail.php:138
|
870 |
msgid "Send email immediately"
|
871 |
msgstr ""
|
872 |
|
873 |
-
#: notification/notification-add.php:244
|
|
|
874 |
#: notification/notification-show.php:132
|
875 |
msgid "Add to cron and send email via cron job"
|
876 |
msgstr ""
|
877 |
|
878 |
-
#: notification/notification-add.php:245
|
|
|
879 |
msgid "Disable email notification"
|
880 |
msgstr ""
|
881 |
|
@@ -1847,9 +1856,9 @@ msgstr ""
|
|
1847 |
msgid "Email Subscribers & Newsletters"
|
1848 |
msgstr ""
|
1849 |
|
1850 |
-
#. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.2.
|
1851 |
#. Plugin URI of the plugin/theme
|
1852 |
-
#. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.2.
|
1853 |
#. Author URI of the plugin/theme
|
1854 |
msgid "http://www.icegram.com/"
|
1855 |
msgstr ""
|
2 |
# This file is distributed under the same license as the Email Subscribers & Newsletters package.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Email Subscribers & Newsletters 3.2.11\n"
|
6 |
"Report-Msgid-Bugs-To: http://www.storeapps.org/support/contact-us/\n"
|
7 |
+
"POT-Creation-Date: 2017-06-05 08:14:43+00:00\n"
|
8 |
"MIME-Version: 1.0\n"
|
9 |
"Content-Type: text/plain; charset=UTF-8\n"
|
10 |
"Content-Transfer-Encoding: 8bit\n"
|
11 |
+
"PO-Revision-Date: Mon, 05 Jun 2017 13:44:43 +0530\n"
|
12 |
"Last-Translator: Ratnakar Dubey <ratnakar.dubey@storeapps.org>\n"
|
13 |
"Language-Team: StoreApps <support@storeapps.org>\n"
|
14 |
|
64 |
msgid "<span style=\"color:#993399;\">Immediately</span>"
|
65 |
msgstr ""
|
66 |
|
67 |
+
#: classes/es-loadwidget.php:28 classes/es-register.php:566
|
68 |
#: subscribers/view-subscriber-show.php:361
|
69 |
#: subscribers/view-subscriber-show.php:374
|
70 |
msgid "Name"
|
71 |
msgstr ""
|
72 |
|
73 |
+
#: classes/es-loadwidget.php:33 classes/es-register.php:571
|
74 |
msgid "Email *"
|
75 |
msgstr ""
|
76 |
|
77 |
+
#: classes/es-loadwidget.php:38 classes/es-register.php:576
|
78 |
msgid "Subscribe"
|
79 |
msgstr ""
|
80 |
|
102 |
msgid "Newsletters"
|
103 |
msgstr ""
|
104 |
|
105 |
+
#: classes/es-register.php:159 classes/es-register.php:160
|
106 |
+
#: cron/cron-add.php:79
|
107 |
msgid "Cron Settings"
|
108 |
msgstr ""
|
109 |
|
189 |
|
190 |
#: classes/es-register.php:194
|
191 |
msgctxt "view-subscriber-enhanced-select"
|
|
|
|
|
|
|
|
|
|
|
192 |
msgid ""
|
193 |
"Please select only csv file. Please check official website for csv "
|
194 |
"structure.."
|
195 |
msgstr ""
|
196 |
|
197 |
+
#: classes/es-register.php:202
|
198 |
msgctxt "compose-enhanced-select"
|
199 |
msgid "Please enter name for configuration."
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: classes/es-register.php:203
|
203 |
msgctxt "compose-enhanced-select"
|
204 |
msgid "Please select template for this configuration."
|
205 |
msgstr ""
|
206 |
|
207 |
+
#: classes/es-register.php:204
|
208 |
msgctxt "compose-enhanced-select"
|
209 |
msgid "Do you want to delete this record?"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: classes/es-register.php:212
|
213 |
msgctxt "notification-enhanced-select"
|
214 |
msgid "Please select subscribers group."
|
215 |
msgstr ""
|
216 |
|
217 |
+
#: classes/es-register.php:213
|
218 |
msgctxt "notification-enhanced-select"
|
219 |
msgid ""
|
220 |
"Please select notification mail subject. Use compose menu to create new."
|
221 |
msgstr ""
|
222 |
|
223 |
+
#: classes/es-register.php:214
|
224 |
msgctxt "notification-enhanced-select"
|
225 |
msgid "Please select notification status."
|
226 |
msgstr ""
|
227 |
|
228 |
+
#: classes/es-register.php:215
|
229 |
msgctxt "notification-enhanced-select"
|
230 |
msgid "Do you want to delete this record?"
|
231 |
msgstr ""
|
232 |
|
233 |
+
#: classes/es-register.php:223
|
234 |
msgctxt "sendmail-enhanced-select"
|
235 |
msgid "Please select your mail subject."
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: classes/es-register.php:224
|
239 |
msgctxt "sendmail-enhanced-select"
|
240 |
msgid "Please select your mail type."
|
241 |
msgstr ""
|
242 |
|
243 |
+
#: classes/es-register.php:225
|
244 |
msgctxt "sendmail-enhanced-select"
|
245 |
msgid ""
|
246 |
"Have you double checked your selected group? If so, let's go ahead and send "
|
247 |
"this."
|
248 |
msgstr ""
|
249 |
|
250 |
+
#: classes/es-register.php:233
|
251 |
msgctxt "sentmail-enhanced-select"
|
252 |
msgid "Do you want to delete this record?"
|
253 |
msgstr ""
|
254 |
|
255 |
+
#: classes/es-register.php:234
|
256 |
msgctxt "sentmail-enhanced-select"
|
257 |
msgid "Do you want to delete all records except latest 10?"
|
258 |
msgstr ""
|
259 |
|
260 |
+
#: classes/es-register.php:242
|
261 |
msgctxt "cron-enhanced-select"
|
262 |
msgid "Please select enter number of mails you want to send per hour/trigger."
|
263 |
msgstr ""
|
264 |
|
265 |
+
#: classes/es-register.php:243
|
266 |
msgctxt "cron-enhanced-select"
|
267 |
msgid "Please enter the mail count, only number."
|
268 |
msgstr ""
|
269 |
|
270 |
+
#: classes/es-register.php:256
|
271 |
msgctxt "widget-enhanced-select"
|
272 |
msgid "Please enter email address"
|
273 |
msgstr ""
|
274 |
|
275 |
+
#: classes/es-register.php:257
|
276 |
msgctxt "widget-enhanced-select"
|
277 |
msgid "Please provide a valid email address"
|
278 |
msgstr ""
|
279 |
|
280 |
+
#: classes/es-register.php:258
|
281 |
msgctxt "widget-enhanced-select"
|
282 |
msgid "loading..."
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: classes/es-register.php:259
|
286 |
msgctxt "widget-enhanced-select"
|
287 |
msgid "Cannot create XMLHTTP instance"
|
288 |
msgstr ""
|
289 |
|
290 |
+
#: classes/es-register.php:260
|
291 |
msgctxt "widget-enhanced-select"
|
292 |
msgid "Successfully Subscribed."
|
293 |
msgstr ""
|
294 |
|
295 |
+
#: classes/es-register.php:261
|
296 |
msgctxt "widget-enhanced-select"
|
297 |
msgid ""
|
298 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
300 |
"mail in your mailbox, please check your spam folder."
|
301 |
msgstr ""
|
302 |
|
303 |
+
#: classes/es-register.php:262
|
304 |
msgctxt "widget-enhanced-select"
|
305 |
msgid "Email Address already exists!"
|
306 |
msgstr ""
|
307 |
|
308 |
+
#: classes/es-register.php:263
|
309 |
msgctxt "widget-enhanced-select"
|
310 |
msgid "Oops.. Unexpected error occurred."
|
311 |
msgstr ""
|
312 |
|
313 |
+
#: classes/es-register.php:264
|
314 |
msgctxt "widget-enhanced-select"
|
315 |
msgid "Invalid email address"
|
316 |
msgstr ""
|
317 |
|
318 |
+
#: classes/es-register.php:265
|
319 |
msgctxt "widget-enhanced-select"
|
320 |
msgid "Please try after some time"
|
321 |
msgstr ""
|
322 |
|
323 |
+
#: classes/es-register.php:266
|
324 |
msgctxt "widget-enhanced-select"
|
325 |
msgid "There was a problem with the request"
|
326 |
msgstr ""
|
327 |
|
328 |
+
#: classes/es-register.php:273
|
329 |
msgctxt "widget-page-enhanced-select"
|
330 |
msgid "Please enter email address"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: classes/es-register.php:274
|
334 |
msgctxt "widget-page-enhanced-select"
|
335 |
msgid "Please provide a valid email address"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: classes/es-register.php:275
|
339 |
msgctxt "widget-page-enhanced-select"
|
340 |
msgid "loading..."
|
341 |
msgstr ""
|
342 |
|
343 |
+
#: classes/es-register.php:276
|
344 |
msgctxt "widget-page-enhanced-select"
|
345 |
msgid "Cannot create XMLHTTP instance"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: classes/es-register.php:277
|
349 |
msgctxt "widget-page-enhanced-select"
|
350 |
msgid "Successfully Subscribed."
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: classes/es-register.php:278
|
354 |
msgctxt "widget-page-enhanced-select"
|
355 |
msgid ""
|
356 |
"Your subscription was successful! Within a few minutes, kindly check the "
|
358 |
"mail in your mailbox, please check your spam folder."
|
359 |
msgstr ""
|
360 |
|
361 |
+
#: classes/es-register.php:279
|
362 |
msgctxt "widget-page-enhanced-select"
|
363 |
msgid "Email Address already exists!"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: classes/es-register.php:280
|
367 |
msgctxt "widget-page-enhanced-select"
|
368 |
msgid "Oops.. Unexpected error occurred."
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: classes/es-register.php:281
|
372 |
msgctxt "widget-page-enhanced-select"
|
373 |
msgid "Invalid email address"
|
374 |
msgstr ""
|
375 |
|
376 |
+
#: classes/es-register.php:282
|
377 |
msgctxt "widget-page-enhanced-select"
|
378 |
msgid "Please try after some time"
|
379 |
msgstr ""
|
380 |
|
381 |
+
#: classes/es-register.php:283
|
382 |
msgctxt "widget-page-enhanced-select"
|
383 |
msgid "There was a problem with the request"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: classes/es-register.php:459
|
387 |
msgid ""
|
388 |
"<b>FREE</b> plugin: Quickly grow your subscribers list with beautiful and "
|
389 |
"high converting optins."
|
390 |
msgstr ""
|
391 |
|
392 |
+
#: classes/es-register.php:460
|
393 |
msgid "Try Icegram"
|
394 |
msgstr ""
|
395 |
|
396 |
+
#: classes/es-register.php:460
|
397 |
msgid "No, I don't need it"
|
398 |
msgstr ""
|
399 |
|
400 |
+
#: classes/es-register.php:614
|
401 |
msgid "Widget Title"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: classes/es-register.php:618
|
405 |
msgid "Short description about subscription form"
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: classes/es-register.php:622
|
409 |
msgid "Display Name Field"
|
410 |
msgstr ""
|
411 |
|
412 |
+
#: classes/es-register.php:624 settings/settings-edit.php:290
|
413 |
#: settings/settings-edit.php:363 subscribers/view-subscriber-sync.php:107
|
414 |
msgid "YES"
|
415 |
msgstr ""
|
416 |
|
417 |
+
#: classes/es-register.php:625 settings/settings-edit.php:291
|
418 |
#: settings/settings-edit.php:364 subscribers/view-subscriber-sync.php:106
|
419 |
msgid "NO"
|
420 |
msgstr ""
|
421 |
|
422 |
+
#: classes/es-register.php:629
|
423 |
msgid "Subscriber Group"
|
424 |
msgstr ""
|
425 |
|
438 |
#: compose/compose-add.php:75 compose/compose-edit.php:86
|
439 |
#: compose/compose-preview.php:28 compose/compose-show.php:66
|
440 |
#: cron/cron-add.php:80 notification/notification-add.php:113
|
441 |
+
#: notification/notification-edit.php:124
|
442 |
+
#: notification/notification-show.php:54 roles/roles-add.php:111
|
443 |
+
#: sendmail/sendmail.php:94 sentmail/deliverreport-show.php:61
|
444 |
+
#: sentmail/sentmail-preview.php:28 sentmail/sentmail-show.php:97
|
445 |
+
#: settings/settings-edit.php:198 subscribers/view-subscriber-add.php:114
|
446 |
#: subscribers/view-subscriber-edit.php:113
|
447 |
#: subscribers/view-subscriber-export.php:38
|
448 |
#: subscribers/view-subscriber-import.php:146
|
526 |
msgstr ""
|
527 |
|
528 |
#: compose/compose-edit.php:85 compose/compose-show.php:65
|
529 |
+
#: notification/notification-edit.php:123
|
530 |
+
#: notification/notification-show.php:53
|
531 |
msgid "Add New"
|
532 |
msgstr ""
|
533 |
|
650 |
"</a>"
|
651 |
msgstr ""
|
652 |
|
653 |
+
#: export/export-email-address.php:45 export/export-email-address.php:49
|
654 |
msgid "Unexpected url submit has been detected"
|
655 |
msgstr ""
|
656 |
|
826 |
msgid "Select"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: notification/notification-add.php:142
|
830 |
+
#: notification/notification-edit.php:162
|
831 |
msgid "Select Notification Email Subject"
|
832 |
msgstr ""
|
833 |
|
834 |
+
#: notification/notification-add.php:143
|
835 |
+
#: notification/notification-edit.php:163
|
836 |
msgid "(Use compose menu to create new)"
|
837 |
msgstr ""
|
838 |
|
839 |
+
#: notification/notification-add.php:167
|
840 |
+
#: notification/notification-edit.php:190
|
841 |
msgid "Select Post Categories"
|
842 |
msgstr ""
|
843 |
|
844 |
+
#: notification/notification-add.php:195
|
845 |
+
#: notification/notification-edit.php:225
|
846 |
msgid "Check All"
|
847 |
msgstr ""
|
848 |
|
849 |
+
#: notification/notification-add.php:196
|
850 |
+
#: notification/notification-edit.php:226
|
851 |
msgid "Uncheck All"
|
852 |
msgstr ""
|
853 |
|
854 |
+
#: notification/notification-add.php:202
|
855 |
+
#: notification/notification-edit.php:233
|
856 |
msgid "Select your Custom Post Type"
|
857 |
msgstr ""
|
858 |
|
859 |
+
#: notification/notification-add.php:203
|
860 |
+
#: notification/notification-edit.php:234
|
861 |
msgid "(Optional)"
|
862 |
msgstr ""
|
863 |
|
864 |
+
#: notification/notification-add.php:232
|
865 |
+
#: notification/notification-edit.php:268
|
866 |
msgid "No Custom Post Types Available"
|
867 |
msgstr ""
|
868 |
|
869 |
+
#: notification/notification-add.php:239
|
870 |
+
#: notification/notification-edit.php:275
|
871 |
msgid "Select Notification Status when a new post is published"
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: notification/notification-add.php:243
|
875 |
+
#: notification/notification-edit.php:279
|
876 |
#: notification/notification-show.php:130 sendmail/sendmail.php:138
|
877 |
msgid "Send email immediately"
|
878 |
msgstr ""
|
879 |
|
880 |
+
#: notification/notification-add.php:244
|
881 |
+
#: notification/notification-edit.php:280
|
882 |
#: notification/notification-show.php:132
|
883 |
msgid "Add to cron and send email via cron job"
|
884 |
msgstr ""
|
885 |
|
886 |
+
#: notification/notification-add.php:245
|
887 |
+
#: notification/notification-edit.php:281
|
888 |
msgid "Disable email notification"
|
889 |
msgstr ""
|
890 |
|
1856 |
msgid "Email Subscribers & Newsletters"
|
1857 |
msgstr ""
|
1858 |
|
1859 |
+
#. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.2.11) #-#-#-#-#
|
1860 |
#. Plugin URI of the plugin/theme
|
1861 |
+
#. #-#-#-#-# email-subscribers.pot (Email Subscribers & Newsletters 3.2.11) #-#-#-#-#
|
1862 |
#. Author URI of the plugin/theme
|
1863 |
msgid "http://www.icegram.com/"
|
1864 |
msgstr ""
|
readme.txt
CHANGED
@@ -4,8 +4,8 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
|
|
4 |
Author URI: http://www.icegram.com/
|
5 |
Tags: email marketing, email newsletter form, email signup, email widget, newsletter, newsletter signup, subscribe, subscription form, bulk emails, signup form, list builder, lead generation
|
6 |
Requires at least: 3.4
|
7 |
-
Tested up to: 4.7.
|
8 |
-
Stable tag: 3.2.
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.htmlss
|
11 |
|
@@ -153,10 +153,10 @@ If you like Email Subscribers, please leave a [5 star](https://wordpress.org/sup
|
|
153 |
|
154 |
**Translations on [translate.wordpress.org](https://translate.wordpress.org/)**
|
155 |
|
|
|
156 |
* Czech - Martin & Tomas ([cs_CZ](https://translate.wordpress.org/locale/cs/default/wp-plugins/email-subscribers))
|
157 |
* Italian - [daepa](https://profiles.wordpress.org/daepa/) ([it_IT](https://translate.wordpress.org/locale/it/default/wp-plugins/email-subscribers))
|
158 |
* Lithuanian - [kubandrius](https://profiles.wordpress.org/kubandrius/) ([lt_LT](https://translate.wordpress.org/locale/lt/default/wp-plugins/email-subscribers))
|
159 |
-
* Dutch Nederlands - [Erwin](https://profiles.wordpress.org/erwindouwes/) ([nl_NL](https://translate.wordpress.org/locale/nl/default/wp-plugins/email-subscribers))
|
160 |
|
161 |
== Installation ==
|
162 |
|
@@ -309,6 +309,13 @@ Use [Email Subscribers - Group Selector](https://wordpress.org/plugins/email-sub
|
|
309 |
|
310 |
== Changelog ==
|
311 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
312 |
= 3.2.10 (11.05.2017) =
|
313 |
|
314 |
* New: Admin can now include user subscribed group name in the Welcome Email (Email Subscribers v3.2.10+)
|
@@ -544,6 +551,13 @@ For the changelog of earlier versions, please refer to the separate [changelog.t
|
|
544 |
|
545 |
== Upgrade Notice ==
|
546 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
547 |
= 3.2.10 (11.05.2017) =
|
548 |
|
549 |
* New: Admin can now include user subscribed group name in the Welcome Email (Email Subscribers v3.2.10+)
|
4 |
Author URI: http://www.icegram.com/
|
5 |
Tags: email marketing, email newsletter form, email signup, email widget, newsletter, newsletter signup, subscribe, subscription form, bulk emails, signup form, list builder, lead generation
|
6 |
Requires at least: 3.4
|
7 |
+
Tested up to: 4.7.5
|
8 |
+
Stable tag: 3.2.11
|
9 |
License: GPLv3
|
10 |
License URI: http://www.gnu.org/licenses/gpl-3.0.htmlss
|
11 |
|
153 |
|
154 |
**Translations on [translate.wordpress.org](https://translate.wordpress.org/)**
|
155 |
|
156 |
+
* Dutch Nederlands - [Erwin](https://profiles.wordpress.org/erwindouwes/) , [mesan00](https://profiles.wordpress.org/mesan00) ([nl_NL](https://translate.wordpress.org/locale/nl/default/wp-plugins/email-subscribers))
|
157 |
* Czech - Martin & Tomas ([cs_CZ](https://translate.wordpress.org/locale/cs/default/wp-plugins/email-subscribers))
|
158 |
* Italian - [daepa](https://profiles.wordpress.org/daepa/) ([it_IT](https://translate.wordpress.org/locale/it/default/wp-plugins/email-subscribers))
|
159 |
* Lithuanian - [kubandrius](https://profiles.wordpress.org/kubandrius/) ([lt_LT](https://translate.wordpress.org/locale/lt/default/wp-plugins/email-subscribers))
|
|
|
160 |
|
161 |
== Installation ==
|
162 |
|
309 |
|
310 |
== Changelog ==
|
311 |
|
312 |
+
= 3.2.11 (05.06.2017) =
|
313 |
+
|
314 |
+
* Fix: Export filters was not generating correct data
|
315 |
+
* Update: POT file
|
316 |
+
* Update: Translation for Czech (cs_CZ) language updated (Thanks to Martin)
|
317 |
+
* Tweak: Do not show confirm notice while exporting subscribers
|
318 |
+
|
319 |
= 3.2.10 (11.05.2017) =
|
320 |
|
321 |
* New: Admin can now include user subscribed group name in the Welcome Email (Email Subscribers v3.2.10+)
|
551 |
|
552 |
== Upgrade Notice ==
|
553 |
|
554 |
+
= 3.2.11 (05.06.2017) =
|
555 |
+
|
556 |
+
* Fix: Export filters was not generating correct data
|
557 |
+
* Update: POT file
|
558 |
+
* Update: Translation for Czech (cs_CZ) language updated (Thanks to Martin)
|
559 |
+
* Tweak: Do not show confirm notice while exporting subscribers
|
560 |
+
|
561 |
= 3.2.10 (11.05.2017) =
|
562 |
|
563 |
* New: Admin can now include user subscribed group name in the Welcome Email (Email Subscribers v3.2.10+)
|
subscribers/view-subscriber-export.php
CHANGED
@@ -61,19 +61,19 @@ $cnt_comment_author = $wpdb->get_var( "SELECT count(DISTINCT comment_author_emai
|
|
61 |
<td><?php echo __( '1', ES_TDOMAIN ); ?></td>
|
62 |
<td><?php echo __( 'All Subscribers', ES_TDOMAIN ); ?></td>
|
63 |
<td><?php echo $cnt_all_subscribers; ?></td>
|
64 |
-
<td><a onClick="javascript:_es_exportcsv('<?php echo $home_url. "?es=export"; ?>', '
|
65 |
</tr>
|
66 |
<tr class="alternate">
|
67 |
<td><?php echo __( '2', ES_TDOMAIN ); ?></td>
|
68 |
<td><?php echo __( 'Active Subscribers (Status: Confirmed & Single Opt In)', ES_TDOMAIN ); ?></td>
|
69 |
<td><?php echo $cnt_active_subscribers; ?></td>
|
70 |
-
<td><a onClick="javascript:_es_exportcsv('<?php echo $home_url. "?es=export"; ?>', '
|
71 |
</tr>
|
72 |
<tr>
|
73 |
<td><?php echo __( '3', ES_TDOMAIN ); ?></td>
|
74 |
<td><?php echo __( 'Inactive Subscribers (Status: Unconfirmed & Unsubscribed)', ES_TDOMAIN ); ?></td>
|
75 |
<td><?php echo $cnt_inactive_subscribers; ?></td>
|
76 |
-
<td><a onClick="javascript:_es_exportcsv('<?php echo $home_url. "?es=export"; ?>', '
|
77 |
</tr>
|
78 |
<tr class="alternate">
|
79 |
<td><?php echo __( '4', ES_TDOMAIN ); ?></td>
|
61 |
<td><?php echo __( '1', ES_TDOMAIN ); ?></td>
|
62 |
<td><?php echo __( 'All Subscribers', ES_TDOMAIN ); ?></td>
|
63 |
<td><?php echo $cnt_all_subscribers; ?></td>
|
64 |
+
<td><a onClick="javascript:_es_exportcsv('<?php echo $home_url. "?es=export"; ?>', 'view_all_subscribers')" href="javascript:void(0);"><?php echo __( 'Click to Export in CSV', ES_TDOMAIN ); ?></a></td>
|
65 |
</tr>
|
66 |
<tr class="alternate">
|
67 |
<td><?php echo __( '2', ES_TDOMAIN ); ?></td>
|
68 |
<td><?php echo __( 'Active Subscribers (Status: Confirmed & Single Opt In)', ES_TDOMAIN ); ?></td>
|
69 |
<td><?php echo $cnt_active_subscribers; ?></td>
|
70 |
+
<td><a onClick="javascript:_es_exportcsv('<?php echo $home_url. "?es=export"; ?>', 'view_active_subscribers')" href="javascript:void(0);"><?php echo __( 'Click to Export in CSV', ES_TDOMAIN ); ?></a></td>
|
71 |
</tr>
|
72 |
<tr>
|
73 |
<td><?php echo __( '3', ES_TDOMAIN ); ?></td>
|
74 |
<td><?php echo __( 'Inactive Subscribers (Status: Unconfirmed & Unsubscribed)', ES_TDOMAIN ); ?></td>
|
75 |
<td><?php echo $cnt_inactive_subscribers; ?></td>
|
76 |
+
<td><a onClick="javascript:_es_exportcsv('<?php echo $home_url. "?es=export"; ?>', 'view_inactive_subscribers')" href="javascript:void(0);"><?php echo __( 'Click to Export in CSV', ES_TDOMAIN ); ?></a></td>
|
77 |
</tr>
|
78 |
<tr class="alternate">
|
79 |
<td><?php echo __( '4', ES_TDOMAIN ); ?></td>
|
subscribers/view-subscriber.js
CHANGED
@@ -148,10 +148,8 @@ function _es_action_visible(val) {
|
|
148 |
}
|
149 |
|
150 |
function _es_exportcsv(url, option) {
|
151 |
-
|
152 |
-
|
153 |
-
document.frm_es_subscriberexport.submit();
|
154 |
-
}
|
155 |
}
|
156 |
|
157 |
function _es_importemail() {
|
148 |
}
|
149 |
|
150 |
function _es_exportcsv(url, option) {
|
151 |
+
document.frm_es_subscriberexport.action= url+"&option="+option;
|
152 |
+
document.frm_es_subscriberexport.submit();
|
|
|
|
|
153 |
}
|
154 |
|
155 |
function _es_importemail() {
|