Version Description
Download this release
Release Info
Developer | DvanKooten |
Plugin | MailChimp for WordPress |
Version | 3.0.5 |
Comparing to | |
See all releases |
Code changes from version 3.0.4 to 3.0.5
- CHANGELOG.md +7 -0
- includes/class-api.php +12 -6
- includes/views/parts/admin-sidebar.php +7 -7
- languages/mailchimp-for-wp-da_DK.mo +0 -0
- languages/mailchimp-for-wp-da_DK.po +671 -1426
- languages/mailchimp-for-wp-fr_FR.mo +0 -0
- languages/mailchimp-for-wp-fr_FR.po +637 -1856
- languages/mailchimp-for-wp-ru_RU.mo +0 -0
- languages/mailchimp-for-wp-ru_RU.po +617 -1837
- mailchimp-for-wp.php +2 -2
- readme.txt +8 -1
- vendor/autoload_52.php +1 -1
- vendor/composer/ClassLoader.php +6 -6
- vendor/composer/autoload_files.php +6 -6
- vendor/composer/autoload_real_52.php +3 -3
CHANGELOG.md
CHANGED
@@ -1,6 +1,13 @@
|
|
1 |
Changelog
|
2 |
=========
|
3 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
#### 3.0.4 - December 7, 2015
|
5 |
|
6 |
**Fixes**
|
1 |
Changelog
|
2 |
=========
|
3 |
|
4 |
+
#### 3.0.5 - December 9, 2015
|
5 |
+
|
6 |
+
**Fixes**
|
7 |
+
|
8 |
+
Workaround for SSL certification error introduced by WordPress 4.4, only affecting very old versions of PHP CURL.
|
9 |
+
|
10 |
+
|
11 |
#### 3.0.4 - December 7, 2015
|
12 |
|
13 |
**Fixes**
|
includes/class-api.php
CHANGED
@@ -349,15 +349,21 @@ class MC4WP_API {
|
|
349 |
}
|
350 |
|
351 |
$data['apikey'] = $this->api_key;
|
352 |
-
$url = $this->api_url . $method . '.json';
|
353 |
|
354 |
-
$
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
)
|
359 |
);
|
360 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
361 |
// test for wp errors
|
362 |
if( is_wp_error( $response ) ) {
|
363 |
// show error message to admins
|
349 |
}
|
350 |
|
351 |
$data['apikey'] = $this->api_key;
|
|
|
352 |
|
353 |
+
$url = $this->api_url . $method . '.json';
|
354 |
+
$request_args = array(
|
355 |
+
'body' => $data,
|
356 |
+
'timeout' => 10,
|
357 |
+
'headers' => $this->get_headers(),
|
358 |
);
|
359 |
|
360 |
+
// disable ssl certificate verification for old versions of php-curl & all other http transports
|
361 |
+
if( ! function_exists( 'curl_version' ) || ( ( $curl_version = curl_version() ) && version_compare( $curl_version['version'], '7.20', '<' ) ) ) {
|
362 |
+
$request_args['sslverify'] = false;
|
363 |
+
}
|
364 |
+
|
365 |
+
$response = wp_remote_post( $url, $request_args );
|
366 |
+
|
367 |
// test for wp errors
|
368 |
if( is_wp_error( $response ) ) {
|
369 |
// show error message to admins
|
includes/views/parts/admin-sidebar.php
CHANGED
@@ -8,15 +8,15 @@ defined( 'ABSPATH' ) or exit;
|
|
8 |
function __mc4wp_admin_sidebar_support_notice() {
|
9 |
?>
|
10 |
<div class="mc4wp-box">
|
11 |
-
<h4 class="mc4wp-title"
|
12 |
-
<p
|
13 |
<ul class="ul-square">
|
14 |
-
<li><a href="https://mc4wp.com/kb/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=sidebar"
|
15 |
-
<li><a href="https://wordpress.org/plugins/mailchimp-for-wp/faq/"
|
16 |
-
<li><a href="http://developer.mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=sidebar"
|
17 |
</ul>
|
18 |
-
<p
|
19 |
-
<p
|
20 |
</div>
|
21 |
<?php
|
22 |
}
|
8 |
function __mc4wp_admin_sidebar_support_notice() {
|
9 |
?>
|
10 |
<div class="mc4wp-box">
|
11 |
+
<h4 class="mc4wp-title"><?php echo __( 'Looking for help?', 'mailchimp-for-wp' ); ?></h4>
|
12 |
+
<p><?php echo __( 'We have some resources available to help you in the right direction.', 'mailchimp-for-wp' ); ?></p>
|
13 |
<ul class="ul-square">
|
14 |
+
<li><a href="https://mc4wp.com/kb/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=sidebar"><?php echo __( 'Knowledge Base', 'mailchimp-for-wp' ); ?></a></li>
|
15 |
+
<li><a href="https://wordpress.org/plugins/mailchimp-for-wp/faq/"><?php echo __( 'Frequently Asked Questions', 'mailchimp-for-wp' ); ?></a></li>
|
16 |
+
<li><a href="http://developer.mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=sidebar"><?php echo __( 'Code reference for developers', 'mailchimp-for-wp' ); ?></a></li>
|
17 |
</ul>
|
18 |
+
<p><?php echo sprintf( __( 'If your answer can not be found in the resources listed above, please use the <a href="%s">support forums on WordPress.org</a>.' ), 'https://wordpress.org/support/plugin/mailchimp-for-wp' ); ?></p>
|
19 |
+
<p><?php echo sprintf( __( 'If you think you found an issue, please <a href="%s">open an issue on GitHub</a>.' ), 'https://github.com/ibericode/mailchimp-for-wordpress/issues' ); ?></p>
|
20 |
</div>
|
21 |
<?php
|
22 |
}
|
languages/mailchimp-for-wp-da_DK.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-da_DK.po
CHANGED
@@ -1,1635 +1,880 @@
|
|
1 |
-
# Copyright (C)
|
2 |
-
# This file is distributed under the
|
3 |
# Translators:
|
|
|
4 |
# Rasmus Larsen <rasmus@rblarsen.dk>, 2014
|
|
|
5 |
msgid ""
|
6 |
msgstr ""
|
7 |
"Project-Id-Version: MailChimp for WordPress\n"
|
8 |
-
"Report-Msgid-Bugs-To:
|
9 |
-
"POT-Creation-Date:
|
10 |
-
"PO-Revision-Date:
|
11 |
-
"Last-Translator:
|
12 |
-
"Language-Team: Danish (Denmark) (http://www.transifex.com/
|
13 |
"MIME-Version: 1.0\n"
|
14 |
"Content-Type: text/plain; charset=UTF-8\n"
|
15 |
"Content-Transfer-Encoding: 8bit\n"
|
16 |
"Language: da_DK\n"
|
17 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
18 |
-
"X-Generator: grunt-wp-i18n 0.4.4\n"
|
19 |
-
"X-Poedit-Basepath: .\n"
|
20 |
-
"X-Poedit-Bookmarks: \n"
|
21 |
-
"X-Poedit-Country: UNITED STATES\n"
|
22 |
-
"X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2; _nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_attr__; esc_html__;esc_attr_e; esc_html_e;esc_attr_x:1,2c; esc_html_x:1,2c;\n"
|
23 |
-
"X-Poedit-Language: English\n"
|
24 |
-
"X-Poedit-SearchPath-0: .\n"
|
25 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
26 |
-
"X-Textdomain-Support: yes\n"
|
27 |
-
|
28 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:130
|
29 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:185
|
30 |
-
msgid "Settings"
|
31 |
-
msgstr "Indstillinger"
|
32 |
|
33 |
-
#:
|
34 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:163
|
35 |
-
msgid "Upgrade to Pro"
|
36 |
-
msgstr "Opgrader til Pro"
|
37 |
-
|
38 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:160
|
39 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:12
|
40 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:106
|
41 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:10
|
42 |
-
msgid "MailChimp Settings"
|
43 |
-
msgstr "MailChimp Indstillinger"
|
44 |
-
|
45 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:161
|
46 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:572
|
47 |
-
msgid "Checkboxes"
|
48 |
-
msgstr "Checkboxe"
|
49 |
-
|
50 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:162
|
51 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:573
|
52 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
|
53 |
-
msgid "Forms"
|
54 |
-
msgstr ""
|
55 |
-
|
56 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:299
|
57 |
-
msgid "This option is only available in MailChimp for WordPress Pro."
|
58 |
-
msgstr "Denne mulighed er kun tilgængelig i MailChimp for WordPress Pro."
|
59 |
-
|
60 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:313
|
61 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
|
62 |
-
msgid "Comment form"
|
63 |
-
msgstr ""
|
64 |
-
|
65 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:314
|
66 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:672
|
67 |
-
msgid "Registration form"
|
68 |
-
msgstr ""
|
69 |
-
|
70 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:318
|
71 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:676
|
72 |
-
msgid "MultiSite forms"
|
73 |
-
msgstr ""
|
74 |
-
|
75 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:322
|
76 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:680
|
77 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:231
|
78 |
-
msgid "BuddyPress registration"
|
79 |
-
msgstr ""
|
80 |
-
|
81 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:330
|
82 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:334
|
83 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:688
|
84 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:692
|
85 |
-
msgid "%s checkout"
|
86 |
-
msgstr ""
|
87 |
-
|
88 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:363
|
89 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:738
|
90 |
-
msgid "Renewed MailChimp cache."
|
91 |
-
msgstr ""
|
92 |
-
|
93 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:365
|
94 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:740
|
95 |
-
msgid "Failed to renew MailChimp cache - please try again later."
|
96 |
-
msgstr ""
|
97 |
-
|
98 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:398
|
99 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:313
|
100 |
-
msgid "An EMAIL field. Example: <code>%s</code>"
|
101 |
-
msgstr ""
|
102 |
-
|
103 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:404
|
104 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:319
|
105 |
-
msgid "A submit button. Example: <code>%s</code>"
|
106 |
-
msgstr ""
|
107 |
-
|
108 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:404
|
109 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:319
|
110 |
-
msgid "Sign Up"
|
111 |
-
msgstr ""
|
112 |
-
|
113 |
-
#: mailchimp-for-wordpress/includes/class-admin.php:429
|
114 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:347
|
115 |
-
msgid "A '%s' field"
|
116 |
-
msgstr ""
|
117 |
-
|
118 |
-
#: mailchimp-for-wordpress/includes/class-form-request.php:675
|
119 |
-
msgid "Please select at least one list to subscribe to."
|
120 |
-
msgstr ""
|
121 |
-
|
122 |
-
#: mailchimp-for-wordpress/includes/class-widget.php:20
|
123 |
-
msgid "MailChimp Sign-Up Form"
|
124 |
-
msgstr ""
|
125 |
-
|
126 |
-
#: mailchimp-for-wordpress/includes/class-widget.php:21
|
127 |
-
msgid "Displays your MailChimp for WordPress sign-up form"
|
128 |
-
msgstr ""
|
129 |
-
|
130 |
-
#: mailchimp-for-wordpress/includes/class-widget.php:62
|
131 |
-
#: mailchimp-for-wordpress-pro/includes/class-widget.php:69
|
132 |
-
msgid "Newsletter"
|
133 |
-
msgstr ""
|
134 |
-
|
135 |
-
#: mailchimp-for-wordpress/includes/class-widget.php:65
|
136 |
-
#: mailchimp-for-wordpress-pro/includes/class-widget.php:80
|
137 |
-
msgid "Title:"
|
138 |
-
msgstr ""
|
139 |
-
|
140 |
-
#: mailchimp-for-wordpress/includes/class-widget.php:69
|
141 |
-
msgid ""
|
142 |
-
"You can edit your sign-up form in the %sMailChimp for WordPress form "
|
143 |
-
"settings%s."
|
144 |
-
msgstr ""
|
145 |
-
|
146 |
-
#: mailchimp-for-wordpress/includes/functions/general.php:21
|
147 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:285
|
148 |
-
#: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:135
|
149 |
msgid "Email address"
|
150 |
-
msgstr ""
|
151 |
|
152 |
-
#:
|
153 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:284
|
154 |
msgid "Your email address"
|
155 |
-
msgstr ""
|
156 |
|
157 |
-
#:
|
158 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:286
|
159 |
msgid "Sign up"
|
160 |
-
msgstr ""
|
161 |
|
162 |
-
#:
|
163 |
-
#: mailchimp-for-wordpress-pro/includes/functions/general.php:27
|
164 |
-
msgid "Sign me up for the newsletter!"
|
165 |
-
msgstr ""
|
166 |
-
|
167 |
-
#: mailchimp-for-wordpress/includes/functions/general.php:47
|
168 |
msgid ""
|
169 |
-
"Thank you, your sign-up request was successful! Please check your
|
170 |
-
"inbox."
|
171 |
-
msgstr ""
|
172 |
|
173 |
-
#:
|
174 |
-
#: mailchimp-for-wordpress-pro/includes/functions/general.php:51
|
175 |
msgid "Oops. Something went wrong. Please try again later."
|
176 |
-
msgstr ""
|
177 |
|
178 |
-
#:
|
179 |
-
#: mailchimp-for-wordpress-pro/includes/functions/general.php:52
|
180 |
msgid "Please provide a valid email address."
|
181 |
-
msgstr ""
|
182 |
|
183 |
-
#:
|
184 |
-
#: mailchimp-for-wordpress-pro/includes/functions/general.php:53
|
185 |
msgid "Given email address is already subscribed, thank you!"
|
186 |
-
msgstr ""
|
187 |
-
|
188 |
-
#: mailchimp-for-wordpress/includes/functions/general.php:51
|
189 |
-
#: mailchimp-for-wordpress-pro/includes/functions/general.php:54
|
190 |
-
msgid "Please complete the CAPTCHA."
|
191 |
-
msgstr ""
|
192 |
|
193 |
-
#:
|
194 |
-
#: mailchimp-for-wordpress-pro/includes/functions/general.php:55
|
195 |
msgid "Please fill in the required fields."
|
196 |
-
msgstr ""
|
197 |
-
|
198 |
-
#: mailchimp-for-wordpress/includes/integrations/class-cf7.php:44
|
199 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:52
|
200 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:91
|
201 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:96
|
202 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:113
|
203 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:126
|
204 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:136
|
205 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:147
|
206 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:166
|
207 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:180
|
208 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-cf7.php:44
|
209 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:17
|
210 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:37
|
211 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:56
|
212 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:75
|
213 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:98
|
214 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:116
|
215 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:139
|
216 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:52
|
217 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:60
|
218 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:99
|
219 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:104
|
220 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:59
|
221 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:72
|
222 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:82
|
223 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:97
|
224 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:115
|
225 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:123
|
226 |
-
msgid "Yes"
|
227 |
-
msgstr ""
|
228 |
-
|
229 |
-
#: mailchimp-for-wordpress/includes/integrations/class-cf7.php:44
|
230 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:56
|
231 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:91
|
232 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:96
|
233 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:27
|
234 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:117
|
235 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:128
|
236 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:138
|
237 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:151
|
238 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:170
|
239 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:184
|
240 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-cf7.php:44
|
241 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:21
|
242 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:41
|
243 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:60
|
244 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:79
|
245 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:102
|
246 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:120
|
247 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:140
|
248 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:52
|
249 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:62
|
250 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:99
|
251 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:104
|
252 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:22
|
253 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:63
|
254 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:73
|
255 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:86
|
256 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:101
|
257 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:116
|
258 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:124
|
259 |
-
msgid "No"
|
260 |
-
msgstr ""
|
261 |
-
|
262 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:212
|
263 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:215
|
264 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:293
|
265 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:302
|
266 |
-
msgid "MailChimp for WordPress - Error"
|
267 |
-
msgstr ""
|
268 |
-
|
269 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:213
|
270 |
-
msgid ""
|
271 |
-
"Please select a list to subscribe to in the <a href=\"%s\">checkbox "
|
272 |
-
"settings</a>."
|
273 |
-
msgstr ""
|
274 |
-
|
275 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:214
|
276 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
|
277 |
-
msgid "This message is only visible to administrators for debugging purposes."
|
278 |
-
msgstr ""
|
279 |
-
|
280 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:294
|
281 |
-
msgid ""
|
282 |
-
"The MailChimp server returned the following error message as a response to "
|
283 |
-
"our sign-up request:"
|
284 |
-
msgstr ""
|
285 |
-
|
286 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:296
|
287 |
-
msgid "This is the data that was sent to MailChimp:"
|
288 |
-
msgstr ""
|
289 |
-
|
290 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:297
|
291 |
-
#: mailchimp-for-wordpress-pro/includes/class-form-request.php:638
|
292 |
-
msgid "Email address:"
|
293 |
-
msgstr ""
|
294 |
-
|
295 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:299
|
296 |
-
msgid "Merge variables:"
|
297 |
-
msgstr ""
|
298 |
-
|
299 |
-
#. Plugin Name of the plugin/theme
|
300 |
-
msgid "MailChimp for WordPress"
|
301 |
-
msgstr ""
|
302 |
-
|
303 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:22
|
304 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:19
|
305 |
-
msgid "API Settings"
|
306 |
-
msgstr ""
|
307 |
-
|
308 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:24
|
309 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:21
|
310 |
-
msgid "CONNECTED"
|
311 |
-
msgstr ""
|
312 |
-
|
313 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:26
|
314 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:23
|
315 |
-
msgid "NOT CONNECTED"
|
316 |
-
msgstr ""
|
317 |
-
|
318 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:32
|
319 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:29
|
320 |
-
msgid "API Key"
|
321 |
-
msgstr ""
|
322 |
-
|
323 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:34
|
324 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:31
|
325 |
-
msgid "Your MailChimp API key"
|
326 |
-
msgstr ""
|
327 |
-
|
328 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:35
|
329 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:32
|
330 |
-
msgid "Get your API key here."
|
331 |
-
msgstr ""
|
332 |
-
|
333 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:47
|
334 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:48
|
335 |
-
msgid "MailChimp Data"
|
336 |
-
msgstr ""
|
337 |
-
|
338 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:48
|
339 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:49
|
340 |
-
msgid ""
|
341 |
-
"The table below shows your MailChimp lists data. If you applied changes to "
|
342 |
-
"your MailChimp lists, please use the following button to renew your cached "
|
343 |
-
"data."
|
344 |
-
msgstr ""
|
345 |
-
|
346 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:54
|
347 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:125
|
348 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:55
|
349 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:126
|
350 |
-
msgid "Renew MailChimp lists"
|
351 |
-
msgstr ""
|
352 |
-
|
353 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:112
|
354 |
-
msgid "No lists were found in your MailChimp account"
|
355 |
-
msgstr ""
|
356 |
-
|
357 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:11
|
358 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:11
|
359 |
-
msgid "Checkbox Settings"
|
360 |
-
msgstr ""
|
361 |
-
|
362 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:16
|
363 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:14
|
364 |
-
msgid ""
|
365 |
-
"To use sign-up checkboxes, select at least one list and one form to add the "
|
366 |
-
"checkbox to."
|
367 |
-
msgstr ""
|
368 |
-
|
369 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:21
|
370 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:21
|
371 |
-
msgid "MailChimp settings for checkboxes"
|
372 |
-
msgstr ""
|
373 |
-
|
374 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:25
|
375 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:26
|
376 |
-
msgid ""
|
377 |
-
"If you want to use sign-up checkboxes, select at least one MailChimp list to"
|
378 |
-
" subscribe people to."
|
379 |
-
msgstr ""
|
380 |
-
|
381 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:31
|
382 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:34
|
383 |
-
msgid "MailChimp Lists"
|
384 |
-
msgstr ""
|
385 |
-
|
386 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:35
|
387 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:48
|
388 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:17
|
389 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:38
|
390 |
-
msgid "No lists found, %sare you connected to MailChimp?%s"
|
391 |
-
msgstr ""
|
392 |
-
|
393 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:42
|
394 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:45
|
395 |
-
msgid ""
|
396 |
-
"Select the list(s) to which people who check the checkbox should be "
|
397 |
-
"subscribed."
|
398 |
-
msgstr ""
|
399 |
-
|
400 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:48
|
401 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:109
|
402 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:13
|
403 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:51
|
404 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:55
|
405 |
-
msgid "Double opt-in?"
|
406 |
-
msgstr ""
|
407 |
-
|
408 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:59
|
409 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:120
|
410 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:28
|
411 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:53
|
412 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:66
|
413 |
-
msgid ""
|
414 |
-
"Select \"yes\" if you want people to confirm their email address before "
|
415 |
-
"being subscribed (recommended)"
|
416 |
-
msgstr ""
|
417 |
-
|
418 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:63
|
419 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:68
|
420 |
-
msgid "Checkbox settings"
|
421 |
-
msgstr ""
|
422 |
-
|
423 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:67
|
424 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:71
|
425 |
-
msgid "Add the checkbox to these forms"
|
426 |
-
msgstr ""
|
427 |
-
|
428 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:79
|
429 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:78
|
430 |
-
msgid "Selecting a form will automatically add the sign-up checkbox to it."
|
431 |
-
msgstr ""
|
432 |
-
|
433 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:83
|
434 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:91
|
435 |
-
msgid "Checkbox label text"
|
436 |
-
msgstr ""
|
437 |
-
|
438 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:86
|
439 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:94
|
440 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:134
|
441 |
-
msgid "HTML tags like %s are allowed in the label text."
|
442 |
-
msgstr ""
|
443 |
-
|
444 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:90
|
445 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:98
|
446 |
-
msgid "Pre-check the checkbox?"
|
447 |
-
msgstr ""
|
448 |
-
|
449 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:95
|
450 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:103
|
451 |
-
msgid "Load some default CSS?"
|
452 |
-
msgstr ""
|
453 |
-
|
454 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:97
|
455 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:105
|
456 |
-
msgid "Select \"yes\" if the checkbox appears in a weird place."
|
457 |
-
msgstr ""
|
458 |
-
|
459 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:100
|
460 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
|
461 |
-
msgid "WooCommerce checkbox position"
|
462 |
-
msgstr ""
|
463 |
-
|
464 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:103
|
465 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:111
|
466 |
-
msgid "After the billing details"
|
467 |
-
msgstr ""
|
468 |
-
|
469 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:104
|
470 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
|
471 |
-
msgid "After the additional information"
|
472 |
-
msgstr ""
|
473 |
-
|
474 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:107
|
475 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:115
|
476 |
-
msgid ""
|
477 |
-
"Choose the position for the checkbox in your WooCommerce checkout form."
|
478 |
-
msgstr ""
|
479 |
-
|
480 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:9
|
481 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:431
|
482 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
|
483 |
-
msgid "Form Settings"
|
484 |
-
msgstr ""
|
485 |
-
|
486 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:15
|
487 |
-
msgid ""
|
488 |
-
"To use the MailChimp sign-up form, configure the form below and then either "
|
489 |
-
"paste %s in the content of a post or page or use the widget."
|
490 |
-
msgstr ""
|
491 |
-
|
492 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:20
|
493 |
-
msgid "Required form settings"
|
494 |
-
msgstr ""
|
495 |
-
|
496 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:24
|
497 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:19
|
498 |
-
msgid "Load form styles (CSS)?"
|
499 |
-
msgstr ""
|
500 |
-
|
501 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:28
|
502 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:23
|
503 |
-
msgid "Yes, load basic form styles"
|
504 |
-
msgstr ""
|
505 |
-
|
506 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:29
|
507 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:36
|
508 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
|
509 |
-
msgid "(PRO ONLY)"
|
510 |
-
msgstr ""
|
511 |
-
|
512 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:29
|
513 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
|
514 |
-
msgid "Yes, load my custom form styles"
|
515 |
-
msgstr ""
|
516 |
-
|
517 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:30
|
518 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:25
|
519 |
-
msgid "Yes, load default form theme"
|
520 |
-
msgstr ""
|
521 |
-
|
522 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:31
|
523 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:26
|
524 |
-
msgid "Light Theme"
|
525 |
-
msgstr ""
|
526 |
-
|
527 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:32
|
528 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:27
|
529 |
-
msgid "Red Theme"
|
530 |
-
msgstr ""
|
531 |
-
|
532 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:33
|
533 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:28
|
534 |
-
msgid "Green Theme"
|
535 |
-
msgstr ""
|
536 |
-
|
537 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:34
|
538 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:29
|
539 |
-
msgid "Blue Theme"
|
540 |
-
msgstr ""
|
541 |
-
|
542 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:35
|
543 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:30
|
544 |
-
msgid "Dark Theme"
|
545 |
-
msgstr ""
|
546 |
-
|
547 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:36
|
548 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:31
|
549 |
-
msgid "Custom Color Theme"
|
550 |
-
msgstr ""
|
551 |
|
552 |
-
#:
|
553 |
-
msgid ""
|
554 |
-
"
|
555 |
-
"styles\" or choose one of the color themes"
|
556 |
-
msgstr ""
|
557 |
-
|
558 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:45
|
559 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:14
|
560 |
-
msgid "Lists this form subscribes to"
|
561 |
-
msgstr ""
|
562 |
-
|
563 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:63
|
564 |
-
msgid ""
|
565 |
-
"Select the list(s) to which people who submit this form should be "
|
566 |
-
"subscribed."
|
567 |
-
msgstr ""
|
568 |
-
|
569 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:69
|
570 |
-
msgid "Form mark-up"
|
571 |
-
msgstr ""
|
572 |
-
|
573 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:75
|
574 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:359
|
575 |
-
msgid "Your form is missing the following (required) form fields:"
|
576 |
-
msgstr ""
|
577 |
-
|
578 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:92
|
579 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:87
|
580 |
-
msgid ""
|
581 |
-
"Use the shortcode %s to display this form inside a post, page or text "
|
582 |
-
"widget."
|
583 |
-
msgstr ""
|
584 |
-
|
585 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:123
|
586 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:71
|
587 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:57
|
588 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:70
|
589 |
-
msgid "Send Welcome Email?"
|
590 |
-
msgstr ""
|
591 |
-
|
592 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:130
|
593 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:86
|
594 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:64
|
595 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:75
|
596 |
-
msgid ""
|
597 |
-
"Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
|
598 |
-
"succeeds (only when double opt-in is disabled)."
|
599 |
-
msgstr ""
|
600 |
-
|
601 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:133
|
602 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:33
|
603 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:78
|
604 |
-
msgid "Update existing subscribers?"
|
605 |
-
msgstr ""
|
606 |
-
|
607 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:140
|
608 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:47
|
609 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:89
|
610 |
-
msgid ""
|
611 |
-
"Select \"yes\" if you want to update existing subscribers (instead of "
|
612 |
-
"showing the \"already subscribed\" message)."
|
613 |
-
msgstr ""
|
614 |
|
615 |
-
#:
|
616 |
-
|
617 |
-
|
618 |
-
msgid "Replace interest groups?"
|
619 |
-
msgstr ""
|
620 |
-
|
621 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:154
|
622 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:66
|
623 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:104
|
624 |
-
msgid ""
|
625 |
-
"Select \"yes\" if you want to replace the interest groups with the groups "
|
626 |
-
"provided instead of adding the provided groups to the member's interest "
|
627 |
-
"groups (only when updating a subscriber)."
|
628 |
-
msgstr ""
|
629 |
-
|
630 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:158
|
631 |
-
msgid "Form Settings & Messages"
|
632 |
-
msgstr ""
|
633 |
-
|
634 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:162
|
635 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:94
|
636 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:113
|
637 |
-
msgid "Enable AJAX form submission?"
|
638 |
-
msgstr ""
|
639 |
-
|
640 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:173
|
641 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:108
|
642 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:118
|
643 |
-
msgid "Select \"yes\" if you want to use AJAX (JavaScript) to submit forms."
|
644 |
-
msgstr ""
|
645 |
-
|
646 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:176
|
647 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:112
|
648 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:121
|
649 |
-
msgid "Hide form after a successful sign-up?"
|
650 |
-
msgstr ""
|
651 |
-
|
652 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:187
|
653 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:126
|
654 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:126
|
655 |
-
msgid "Select \"yes\" to hide the form fields after a successful sign-up."
|
656 |
-
msgstr ""
|
657 |
-
|
658 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:190
|
659 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:130
|
660 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:129
|
661 |
-
msgid "Redirect to URL after successful sign-ups"
|
662 |
-
msgstr ""
|
663 |
-
|
664 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:192
|
665 |
-
msgid "Example: %s"
|
666 |
-
msgstr ""
|
667 |
-
|
668 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:193
|
669 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:133
|
670 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:132
|
671 |
-
msgid ""
|
672 |
-
"Leave empty or enter 0 for no redirection. Use complete (absolute) URLs, "
|
673 |
-
"including <code>http://</code>"
|
674 |
-
msgstr ""
|
675 |
-
|
676 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:197
|
677 |
-
msgid "Success message"
|
678 |
-
msgstr ""
|
679 |
-
|
680 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:201
|
681 |
-
msgid "Invalid email address message"
|
682 |
-
msgstr ""
|
683 |
-
|
684 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:205
|
685 |
-
msgid "Required field missing message"
|
686 |
-
msgstr ""
|
687 |
-
|
688 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:209
|
689 |
-
msgid "Already subscribed message"
|
690 |
-
msgstr ""
|
691 |
-
|
692 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:214
|
693 |
-
msgid "Invalid CAPTCHA message"
|
694 |
-
msgstr ""
|
695 |
-
|
696 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:219
|
697 |
-
msgid "General error message"
|
698 |
-
msgstr ""
|
699 |
-
|
700 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:225
|
701 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:181
|
702 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:169
|
703 |
-
msgid "HTML tags like %s are allowed in the message fields."
|
704 |
-
msgstr ""
|
705 |
-
|
706 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:239
|
707 |
-
msgid "Building your sign-up form"
|
708 |
-
msgstr ""
|
709 |
-
|
710 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:240
|
711 |
-
msgid ""
|
712 |
-
"At a minimum, your form should include just an %s field and a submit button."
|
713 |
-
msgstr ""
|
714 |
-
|
715 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:241
|
716 |
-
msgid ""
|
717 |
-
"Add more form fields if your selected lists require more fields. Field names"
|
718 |
-
" should match the field tags of the selected lists. Use the \"Add a new "
|
719 |
-
"field\" tool to have the HTML generated for you."
|
720 |
-
msgstr ""
|
721 |
|
722 |
-
#:
|
723 |
-
msgid "
|
724 |
-
msgstr ""
|
725 |
|
726 |
-
#:
|
727 |
-
msgid "
|
728 |
-
msgstr ""
|
729 |
|
730 |
-
#:
|
731 |
-
|
732 |
-
|
733 |
-
"
|
734 |
-
" plugin like %s"
|
735 |
-
msgstr ""
|
736 |
|
737 |
-
#:
|
738 |
-
msgid ""
|
739 |
-
|
740 |
-
"selectors you can use to target the different form elements."
|
741 |
-
msgstr ""
|
742 |
|
743 |
-
#:
|
744 |
msgid ""
|
745 |
-
"
|
746 |
-
"
|
747 |
-
"lets you customize form styles without writing any code."
|
748 |
-
msgstr ""
|
749 |
|
750 |
-
#:
|
751 |
-
msgid "Form variables"
|
752 |
-
msgstr ""
|
753 |
-
|
754 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:250
|
755 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:473
|
756 |
-
msgid "Use the following variables to add some dynamic content to your form."
|
757 |
-
msgstr ""
|
758 |
-
|
759 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:257
|
760 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:13
|
761 |
-
msgid "Replaced with the visitor's email (if set in URL or cookie)."
|
762 |
-
msgstr ""
|
763 |
-
|
764 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:261
|
765 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:17
|
766 |
-
msgid "Replaced with the form response (error or success messages)."
|
767 |
-
msgstr ""
|
768 |
-
|
769 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:266
|
770 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:22
|
771 |
-
msgid "Replaced with a captcha field."
|
772 |
-
msgstr ""
|
773 |
-
|
774 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:271
|
775 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:27
|
776 |
-
msgid "Replaced with the number of subscribers on the selected list(s)"
|
777 |
-
msgstr ""
|
778 |
-
|
779 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:275
|
780 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:31
|
781 |
-
msgid "Replaced with the current site language, eg: %s"
|
782 |
-
msgstr ""
|
783 |
-
|
784 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:279
|
785 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:35
|
786 |
-
msgid "Replaced with the visitor's IP address"
|
787 |
-
msgstr ""
|
788 |
-
|
789 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:283
|
790 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:39
|
791 |
-
msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
|
792 |
-
msgstr ""
|
793 |
-
|
794 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:287
|
795 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:43
|
796 |
-
msgid "Replaced with the current time (hh:mm:ss eg: %s)"
|
797 |
-
msgstr ""
|
798 |
-
|
799 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:291
|
800 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:47
|
801 |
msgid ""
|
802 |
-
"
|
803 |
-
"
|
804 |
-
msgstr ""
|
805 |
-
|
806 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:295
|
807 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:51
|
808 |
-
msgid "First name of the current user"
|
809 |
-
msgstr ""
|
810 |
-
|
811 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:299
|
812 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:55
|
813 |
-
msgid "Last name of the current user"
|
814 |
-
msgstr ""
|
815 |
-
|
816 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:303
|
817 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:59
|
818 |
-
msgid "Current user ID"
|
819 |
-
msgstr ""
|
820 |
-
|
821 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:307
|
822 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:63
|
823 |
-
msgid "Current URL"
|
824 |
-
msgstr ""
|
825 |
-
|
826 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:10
|
827 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:29
|
828 |
-
msgid "Add a new field"
|
829 |
-
msgstr ""
|
830 |
|
831 |
-
#:
|
832 |
-
msgid "
|
833 |
-
msgstr ""
|
834 |
|
835 |
-
#:
|
836 |
-
#:
|
837 |
-
msgid "
|
838 |
-
msgstr ""
|
839 |
|
840 |
-
#:
|
841 |
-
|
842 |
-
|
843 |
-
msgstr ""
|
844 |
-
|
845 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
|
846 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:37
|
847 |
-
msgid "Lists Choice"
|
848 |
-
msgstr ""
|
849 |
-
|
850 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:28
|
851 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:45
|
852 |
-
msgid "Label"
|
853 |
-
msgstr ""
|
854 |
-
|
855 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:28
|
856 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:33
|
857 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:38
|
858 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:45
|
859 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:50
|
860 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:55
|
861 |
-
msgid "(optional)"
|
862 |
-
msgstr ""
|
863 |
-
|
864 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:33
|
865 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:50
|
866 |
-
msgid "Placeholder"
|
867 |
-
msgstr ""
|
868 |
-
|
869 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:38
|
870 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:55
|
871 |
-
msgid "Initial value"
|
872 |
-
msgstr ""
|
873 |
-
|
874 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:43
|
875 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:60
|
876 |
-
msgid "Labels"
|
877 |
-
msgstr ""
|
878 |
-
|
879 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:43
|
880 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:60
|
881 |
-
msgid "(leave empty to hide)"
|
882 |
-
msgstr ""
|
883 |
-
|
884 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:48
|
885 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:65
|
886 |
-
msgid "Wrap in paragraph %s tags?"
|
887 |
-
msgstr ""
|
888 |
-
|
889 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:53
|
890 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:69
|
891 |
-
msgid "Required field?"
|
892 |
-
msgstr ""
|
893 |
-
|
894 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:57
|
895 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:73
|
896 |
-
msgid "Add to form"
|
897 |
-
msgstr ""
|
898 |
-
|
899 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:61
|
900 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:77
|
901 |
-
msgid "Generated HTML"
|
902 |
-
msgstr ""
|
903 |
-
|
904 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:68
|
905 |
-
msgid "Select at least one list first."
|
906 |
-
msgstr ""
|
907 |
-
|
908 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:9
|
909 |
-
msgid ""
|
910 |
-
"MailChimp for WordPress is in need of translations. Is the plugin not "
|
911 |
-
"translated in your language or do you spot errors with the current "
|
912 |
-
"translations? Helping out is easy! Head over to <a href=\"%s\">the "
|
913 |
-
"translation project and click \"help translate\"</a>."
|
914 |
-
msgstr ""
|
915 |
-
|
916 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:10
|
917 |
-
msgid ""
|
918 |
-
"Enjoying this plugin? <a href=\"%s\">Upgrade to MailChimp for WordPress Pro "
|
919 |
-
"now</a> for an even better plugin, you will love it."
|
920 |
-
msgstr ""
|
921 |
|
922 |
-
#:
|
923 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
|
924 |
msgid ""
|
925 |
-
"
|
926 |
-
|
927 |
-
|
928 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:9
|
929 |
-
msgid "Looking for support?"
|
930 |
-
msgstr ""
|
931 |
|
932 |
-
#:
|
933 |
-
msgid ""
|
934 |
-
|
935 |
-
"use the <a href=\"%s\">support forums</a> on WordPress.org."
|
936 |
-
msgstr ""
|
937 |
|
938 |
-
#:
|
939 |
msgid ""
|
940 |
-
"
|
941 |
-
"
|
942 |
-
msgstr ""
|
943 |
|
944 |
-
#:
|
945 |
-
msgid "
|
946 |
-
msgstr ""
|
947 |
-
|
948 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
|
949 |
-
msgid "Upgrade to MailChimp for WordPress Pro"
|
950 |
-
msgstr ""
|
951 |
-
|
952 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
|
953 |
-
msgid "Leave a %s plugin review on WordPress.org"
|
954 |
-
msgstr ""
|
955 |
|
956 |
-
#:
|
957 |
-
msgid "
|
958 |
-
msgstr ""
|
959 |
|
960 |
-
#:
|
961 |
-
msgid "
|
962 |
-
msgstr ""
|
963 |
|
964 |
-
#:
|
965 |
-
msgid ""
|
966 |
-
"
|
967 |
-
"page</a>."
|
968 |
-
msgstr ""
|
969 |
|
970 |
-
#:
|
971 |
-
msgid "
|
972 |
-
msgstr ""
|
973 |
|
974 |
-
#:
|
975 |
-
msgid "
|
976 |
-
msgstr ""
|
977 |
|
978 |
-
#:
|
979 |
-
|
980 |
-
|
981 |
-
msgstr ""
|
982 |
|
983 |
-
#:
|
984 |
-
msgid ""
|
985 |
-
"
|
986 |
-
"styling, more default themes, detailed statistics and priority support."
|
987 |
-
msgstr ""
|
988 |
|
989 |
-
#:
|
990 |
-
msgid "
|
991 |
-
msgstr ""
|
992 |
|
993 |
-
#:
|
994 |
-
msgid "
|
995 |
-
msgstr ""
|
996 |
|
997 |
-
#:
|
998 |
-
msgid "
|
999 |
-
msgstr ""
|
1000 |
|
1001 |
-
#:
|
1002 |
-
msgid "
|
1003 |
-
msgstr ""
|
1004 |
|
1005 |
-
#:
|
1006 |
-
msgid "
|
1007 |
-
msgstr ""
|
1008 |
|
1009 |
-
#:
|
1010 |
-
msgid "
|
1011 |
-
msgstr ""
|
1012 |
|
1013 |
-
#:
|
1014 |
-
|
1015 |
-
|
|
|
1016 |
|
1017 |
-
#:
|
1018 |
-
msgid "
|
1019 |
-
msgstr ""
|
1020 |
|
1021 |
-
#:
|
1022 |
-
msgid "
|
1023 |
-
msgstr ""
|
1024 |
|
1025 |
-
#:
|
1026 |
-
msgid "
|
1027 |
-
msgstr ""
|
1028 |
|
1029 |
-
#:
|
1030 |
-
|
1031 |
-
|
1032 |
-
msgstr ""
|
1033 |
|
1034 |
-
#:
|
1035 |
-
msgid ""
|
1036 |
-
"
|
1037 |
-
"href=\"%s\">Provide a valid API key.</a>"
|
1038 |
-
msgstr ""
|
1039 |
|
1040 |
-
#:
|
1041 |
-
msgid "
|
1042 |
-
msgstr ""
|
1043 |
|
1044 |
-
#:
|
1045 |
-
msgid ""
|
1046 |
-
"
|
1047 |
-
"page."
|
1048 |
-
msgstr ""
|
1049 |
|
1050 |
-
#:
|
1051 |
-
msgid ""
|
1052 |
-
"
|
1053 |
-
"settings you had set in the Lite version, please <a href=\"%s\">deactivate "
|
1054 |
-
"it now</a> to prevent problems"
|
1055 |
-
msgstr ""
|
1056 |
|
1057 |
-
#:
|
1058 |
-
msgid ""
|
1059 |
-
"
|
1060 |
-
" stylesheet by using the %sTheme Editor%s or use FTP and edit <em>%s</em>."
|
1061 |
-
msgstr ""
|
1062 |
|
1063 |
-
#:
|
1064 |
-
msgid "
|
1065 |
-
msgstr ""
|
1066 |
|
1067 |
-
#:
|
1068 |
-
msgid ""
|
1069 |
-
|
1070 |
-
" the %sform settings%s"
|
1071 |
-
msgstr ""
|
1072 |
|
1073 |
-
#:
|
1074 |
-
msgid "
|
1075 |
-
msgstr ""
|
1076 |
|
1077 |
-
#:
|
1078 |
-
msgid "
|
1079 |
-
msgstr ""
|
1080 |
|
1081 |
-
#:
|
1082 |
msgid ""
|
1083 |
-
"
|
1084 |
-
"
|
1085 |
-
msgstr ""
|
1086 |
|
1087 |
-
#:
|
1088 |
-
msgid "
|
1089 |
-
msgstr ""
|
1090 |
|
1091 |
-
#:
|
1092 |
-
msgid "
|
1093 |
-
msgstr ""
|
1094 |
|
1095 |
-
#:
|
1096 |
-
msgid "
|
1097 |
-
msgstr ""
|
1098 |
|
1099 |
-
#:
|
1100 |
-
msgid ""
|
1101 |
-
|
1102 |
-
" it?</a>"
|
1103 |
-
msgstr ""
|
1104 |
|
1105 |
-
#:
|
1106 |
-
msgid ""
|
1107 |
-
"
|
1108 |
-
"<a href=\"%s\">upgrade your license</a> to use it on this site."
|
1109 |
-
msgstr ""
|
1110 |
|
1111 |
-
#:
|
1112 |
-
msgid ""
|
1113 |
-
|
1114 |
-
"you want to use it again."
|
1115 |
-
msgstr ""
|
1116 |
|
1117 |
-
#:
|
1118 |
-
msgid "
|
1119 |
-
msgstr ""
|
1120 |
|
1121 |
-
#:
|
1122 |
-
msgid "
|
1123 |
-
msgstr ""
|
1124 |
|
1125 |
-
#:
|
1126 |
-
#:
|
1127 |
-
#:
|
1128 |
-
|
1129 |
-
"
|
1130 |
-
|
1131 |
-
msgstr ""
|
1132 |
|
1133 |
-
#:
|
1134 |
-
msgid "
|
1135 |
-
msgstr ""
|
1136 |
|
1137 |
-
#:
|
1138 |
-
msgid "
|
1139 |
-
msgstr ""
|
1140 |
|
1141 |
-
#:
|
1142 |
-
msgid "
|
1143 |
-
msgstr ""
|
1144 |
|
1145 |
-
#:
|
1146 |
-
msgid ""
|
1147 |
-
"
|
1148 |
-
"the license."
|
1149 |
-
msgstr ""
|
1150 |
|
1151 |
-
#:
|
1152 |
-
msgid ""
|
1153 |
-
"
|
1154 |
-
|
|
|
|
|
|
|
|
|
1155 |
|
1156 |
-
#:
|
1157 |
msgid ""
|
1158 |
-
"
|
1159 |
-
"
|
1160 |
-
"
|
1161 |
-
msgstr ""
|
1162 |
|
1163 |
-
#:
|
1164 |
-
msgid "
|
1165 |
-
msgstr ""
|
1166 |
|
1167 |
-
#:
|
1168 |
-
msgid "
|
1169 |
-
msgstr "
|
1170 |
|
1171 |
-
#:
|
1172 |
-
msgid "
|
1173 |
-
msgstr ""
|
1174 |
|
1175 |
-
#:
|
1176 |
-
msgid "
|
1177 |
-
msgstr "
|
1178 |
|
1179 |
-
#:
|
1180 |
-
|
1181 |
-
|
1182 |
-
msgstr ""
|
1183 |
|
1184 |
-
#:
|
1185 |
-
msgid "
|
1186 |
-
|
|
|
|
|
1187 |
|
1188 |
-
#:
|
1189 |
-
|
1190 |
-
|
|
|
1191 |
|
1192 |
-
#:
|
1193 |
-
msgid "
|
1194 |
-
msgstr ""
|
1195 |
|
1196 |
-
#:
|
1197 |
msgid ""
|
1198 |
-
"
|
1199 |
-
|
|
|
1200 |
|
1201 |
-
#:
|
1202 |
-
msgid "
|
1203 |
-
msgstr "
|
1204 |
|
1205 |
-
#:
|
1206 |
-
msgid "
|
1207 |
-
msgstr ""
|
1208 |
|
1209 |
-
#:
|
1210 |
-
msgid "
|
1211 |
-
msgstr ""
|
1212 |
|
1213 |
-
#:
|
1214 |
-
msgid "
|
1215 |
-
msgstr ""
|
1216 |
|
1217 |
-
#:
|
1218 |
-
msgid "
|
1219 |
-
msgstr ""
|
1220 |
|
1221 |
-
#:
|
1222 |
-
msgid "
|
1223 |
-
msgstr ""
|
1224 |
|
1225 |
-
#:
|
1226 |
-
msgid "
|
1227 |
-
msgstr ""
|
1228 |
|
1229 |
-
#:
|
1230 |
-
msgid "
|
1231 |
-
msgstr ""
|
1232 |
|
1233 |
-
#:
|
1234 |
-
msgid ""
|
1235 |
-
"
|
1236 |
-
" correct form ID."
|
1237 |
-
msgstr ""
|
1238 |
|
1239 |
-
#:
|
1240 |
-
msgid "
|
1241 |
-
msgstr ""
|
1242 |
|
1243 |
-
#:
|
1244 |
-
msgid "
|
1245 |
-
msgstr ""
|
1246 |
|
1247 |
-
#:
|
1248 |
-
msgid "
|
1249 |
-
|
|
|
|
|
1250 |
|
1251 |
-
#:
|
1252 |
-
|
1253 |
-
|
1254 |
-
msgstr "Liste"
|
1255 |
|
1256 |
-
#:
|
1257 |
-
msgid "
|
1258 |
-
msgstr ""
|
1259 |
|
1260 |
-
#:
|
1261 |
-
msgid ""
|
1262 |
-
"
|
1263 |
-
"be added to the selected MailChimp lists until they confirm their email "
|
1264 |
-
"address."
|
1265 |
-
msgstr ""
|
1266 |
|
1267 |
-
#:
|
1268 |
-
msgid "
|
1269 |
-
msgstr ""
|
1270 |
|
1271 |
-
#:
|
1272 |
-
msgid "
|
1273 |
-
|
|
|
|
|
1274 |
|
1275 |
-
#:
|
1276 |
-
msgid "
|
1277 |
-
msgstr ""
|
1278 |
|
1279 |
-
#:
|
1280 |
-
msgid "
|
1281 |
-
msgstr ""
|
1282 |
|
1283 |
-
#:
|
1284 |
msgid ""
|
1285 |
-
"
|
1286 |
-
"
|
1287 |
-
msgstr ""
|
1288 |
|
1289 |
-
#:
|
1290 |
-
msgid "
|
1291 |
-
msgstr ""
|
1292 |
|
1293 |
-
#:
|
1294 |
-
msgid "
|
1295 |
-
msgstr ""
|
1296 |
|
1297 |
-
#:
|
1298 |
-
msgid "
|
1299 |
-
msgstr ""
|
1300 |
|
1301 |
-
#:
|
1302 |
msgid ""
|
1303 |
-
"
|
1304 |
-
"
|
1305 |
-
msgstr ""
|
1306 |
|
1307 |
-
#:
|
1308 |
-
msgid "
|
1309 |
-
msgstr ""
|
1310 |
|
1311 |
-
#:
|
1312 |
-
|
1313 |
-
|
1314 |
-
|
1315 |
-
msgstr ""
|
1316 |
|
1317 |
-
#:
|
1318 |
-
msgid "
|
1319 |
-
msgstr ""
|
1320 |
|
1321 |
-
#:
|
1322 |
-
msgid "
|
1323 |
-
msgstr ""
|
1324 |
|
1325 |
-
#:
|
1326 |
-
msgid "
|
1327 |
-
msgstr ""
|
1328 |
|
1329 |
-
#:
|
1330 |
-
|
1331 |
-
|
1332 |
-
|
|
|
1333 |
|
1334 |
-
#:
|
1335 |
-
|
1336 |
-
|
1337 |
-
msgstr "Slet"
|
1338 |
|
1339 |
-
#:
|
1340 |
-
msgid "
|
1341 |
-
|
|
|
|
|
1342 |
|
1343 |
-
#:
|
1344 |
-
msgid "
|
1345 |
-
msgstr ""
|
1346 |
|
1347 |
-
#:
|
1348 |
-
msgid "
|
1349 |
-
msgstr ""
|
1350 |
|
1351 |
-
#:
|
1352 |
-
msgid "
|
1353 |
-
msgstr ""
|
1354 |
|
1355 |
-
#:
|
1356 |
-
msgid "
|
1357 |
-
msgstr ""
|
1358 |
|
1359 |
-
#:
|
1360 |
-
|
1361 |
-
|
|
|
1362 |
|
1363 |
-
#:
|
1364 |
-
msgid "
|
1365 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1366 |
|
1367 |
-
#:
|
1368 |
-
|
1369 |
-
|
|
|
|
|
|
|
1370 |
|
1371 |
-
#:
|
1372 |
-
msgid "
|
1373 |
-
msgstr ""
|
1374 |
|
1375 |
-
#:
|
1376 |
-
|
1377 |
-
|
|
|
|
|
|
|
1378 |
|
1379 |
-
#:
|
1380 |
-
#:
|
1381 |
-
msgid "
|
1382 |
-
msgstr "
|
1383 |
|
1384 |
-
#:
|
1385 |
-
|
1386 |
-
|
|
|
|
|
|
|
1387 |
|
1388 |
-
#:
|
1389 |
-
|
1390 |
-
|
|
|
1391 |
|
1392 |
-
#:
|
1393 |
-
|
1394 |
-
|
|
|
|
|
|
|
1395 |
|
1396 |
-
#:
|
1397 |
-
#:
|
1398 |
-
msgid "
|
1399 |
-
msgstr ""
|
1400 |
|
1401 |
-
#:
|
1402 |
-
msgid "
|
1403 |
-
msgstr ""
|
1404 |
|
1405 |
-
#:
|
1406 |
-
msgid "
|
1407 |
-
msgstr ""
|
1408 |
|
1409 |
-
#:
|
1410 |
-
msgid "
|
1411 |
-
msgstr ""
|
1412 |
|
1413 |
-
#:
|
1414 |
-
msgid "
|
1415 |
-
msgstr ""
|
1416 |
|
1417 |
-
#:
|
1418 |
-
msgid "
|
1419 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
1420 |
|
1421 |
-
#:
|
1422 |
-
|
1423 |
-
|
|
|
|
|
|
|
|
|
1424 |
|
1425 |
-
#:
|
1426 |
-
msgid "
|
1427 |
-
msgstr ""
|
1428 |
|
1429 |
-
#:
|
|
|
|
|
|
|
|
|
1430 |
msgid ""
|
1431 |
-
"
|
1432 |
-
"
|
1433 |
-
"value will be used."
|
1434 |
-
msgstr ""
|
1435 |
|
1436 |
-
#:
|
1437 |
-
|
1438 |
-
|
1439 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:83
|
1440 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:106
|
1441 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:124
|
1442 |
-
msgid "Inherit"
|
1443 |
-
msgstr ""
|
1444 |
|
1445 |
-
#:
|
1446 |
-
msgid "
|
1447 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1448 |
|
1449 |
-
#:
|
1450 |
msgid ""
|
1451 |
-
"
|
1452 |
-
"
|
1453 |
-
msgstr ""
|
1454 |
|
1455 |
-
#:
|
1456 |
-
msgid "
|
1457 |
-
msgstr ""
|
1458 |
|
1459 |
-
#:
|
1460 |
-
msgid "
|
1461 |
-
msgstr "
|
1462 |
|
1463 |
-
#:
|
1464 |
-
|
1465 |
-
|
1466 |
-
msgstr ""
|
1467 |
|
1468 |
-
#:
|
1469 |
-
|
1470 |
-
|
1471 |
-
msgstr ""
|
1472 |
|
1473 |
-
#:
|
1474 |
-
|
1475 |
-
|
1476 |
-
msgstr ""
|
1477 |
|
1478 |
-
#:
|
1479 |
-
|
1480 |
-
|
1481 |
-
msgstr ""
|
1482 |
|
1483 |
-
#:
|
1484 |
-
|
1485 |
-
|
1486 |
-
msgstr ""
|
1487 |
|
1488 |
-
#:
|
1489 |
-
|
1490 |
-
|
1491 |
-
msgstr "Andre fejl"
|
1492 |
|
1493 |
-
#:
|
1494 |
-
msgid "
|
1495 |
-
|
|
|
|
|
1496 |
|
1497 |
-
#:
|
1498 |
msgid ""
|
1499 |
-
"
|
1500 |
-
"
|
1501 |
-
|
|
|
|
|
1502 |
|
1503 |
-
#:
|
1504 |
-
msgid "
|
1505 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1506 |
|
1507 |
-
#:
|
1508 |
msgid ""
|
1509 |
-
"
|
1510 |
-
"
|
1511 |
-
msgstr ""
|
1512 |
|
1513 |
-
#:
|
1514 |
-
msgid "
|
1515 |
-
msgstr ""
|
1516 |
|
1517 |
-
#:
|
1518 |
-
msgid "
|
1519 |
-
msgstr ""
|
1520 |
|
1521 |
-
#:
|
1522 |
-
msgid "
|
1523 |
-
msgstr ""
|
1524 |
|
1525 |
-
#:
|
1526 |
-
msgid "
|
1527 |
-
msgstr ""
|
1528 |
|
1529 |
-
#:
|
1530 |
-
msgid "
|
1531 |
-
msgstr ""
|
1532 |
|
1533 |
-
#:
|
1534 |
-
msgid "
|
1535 |
-
msgstr ""
|
1536 |
|
1537 |
-
#:
|
1538 |
-
msgid ""
|
1539 |
-
|
1540 |
-
"email me directly at <a href=\"%s\">support@mc4wp.com</a>."
|
1541 |
-
msgstr ""
|
1542 |
|
1543 |
-
#:
|
1544 |
-
msgid "
|
1545 |
-
msgstr ""
|
1546 |
|
1547 |
-
#:
|
1548 |
-
msgid "
|
1549 |
-
msgstr ""
|
1550 |
|
1551 |
-
#:
|
1552 |
-
msgid "
|
1553 |
-
msgstr ""
|
1554 |
|
1555 |
-
#:
|
1556 |
-
msgid "
|
1557 |
-
|
|
|
|
|
1558 |
|
1559 |
-
#:
|
1560 |
-
msgid "
|
1561 |
-
msgstr ""
|
1562 |
|
1563 |
-
#:
|
1564 |
-
msgid "
|
1565 |
-
|
|
|
|
|
|
|
|
|
1566 |
|
1567 |
-
#:
|
1568 |
-
msgid "
|
1569 |
-
|
|
|
1570 |
|
1571 |
-
#:
|
1572 |
-
msgid "
|
1573 |
-
msgstr ""
|
1574 |
|
1575 |
-
#:
|
1576 |
-
msgid "
|
1577 |
-
|
|
|
|
|
|
|
1578 |
|
1579 |
-
#:
|
1580 |
-
msgid "
|
1581 |
-
msgstr ""
|
1582 |
|
1583 |
-
#:
|
1584 |
-
msgid "
|
1585 |
-
msgstr ""
|
1586 |
|
1587 |
-
#:
|
1588 |
-
msgid ""
|
1589 |
-
"
|
1590 |
-
"\"custom form styles\". Otherwise, choose the basic formatting styles or one"
|
1591 |
-
" of the default themes."
|
1592 |
-
msgstr ""
|
1593 |
|
1594 |
-
#:
|
1595 |
-
msgid "
|
1596 |
-
msgstr "
|
1597 |
|
1598 |
-
#:
|
1599 |
-
msgid "
|
1600 |
-
msgstr ""
|
1601 |
|
1602 |
-
#:
|
1603 |
-
msgid "
|
1604 |
-
msgstr ""
|
1605 |
|
1606 |
-
#:
|
1607 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1608 |
msgid ""
|
1609 |
-
"
|
1610 |
-
"
|
1611 |
-
msgstr ""
|
1612 |
|
1613 |
-
#:
|
1614 |
-
msgid "
|
1615 |
-
|
|
|
|
|
1616 |
|
1617 |
-
#:
|
1618 |
-
msgid "
|
1619 |
-
msgstr ""
|
|
|
|
|
|
|
|
|
1620 |
|
1621 |
#. Plugin URI of the plugin/theme
|
1622 |
-
msgid "
|
1623 |
-
|
|
|
|
|
1624 |
|
1625 |
#. Description of the plugin/theme
|
1626 |
-
msgid "
|
1627 |
-
|
|
|
|
|
1628 |
|
1629 |
#. Author of the plugin/theme
|
1630 |
-
msgid "
|
1631 |
-
msgstr "
|
1632 |
|
1633 |
#. Author URI of the plugin/theme
|
1634 |
-
msgid "
|
1635 |
-
msgstr "
|
1 |
+
# Copyright (C) 2015 MailChimp for WordPress
|
2 |
+
# This file is distributed under the same license as the MailChimp for WordPress package.
|
3 |
# Translators:
|
4 |
+
# Mathias Brask <seo@bravocom.dk>, 2015
|
5 |
# Rasmus Larsen <rasmus@rblarsen.dk>, 2014
|
6 |
+
# Ronni Andersen <ronniva@gmail.com>, 2015
|
7 |
msgid ""
|
8 |
msgstr ""
|
9 |
"Project-Id-Version: MailChimp for WordPress\n"
|
10 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mailchimp-for-wp\n"
|
11 |
+
"POT-Creation-Date: 2015-11-30 10:15:18+00:00\n"
|
12 |
+
"PO-Revision-Date: 2015-12-08 12:27+0000\n"
|
13 |
+
"Last-Translator: Ronni Andersen <ronniva@gmail.com>\n"
|
14 |
+
"Language-Team: Danish (Denmark) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/da_DK/)\n"
|
15 |
"MIME-Version: 1.0\n"
|
16 |
"Content-Type: text/plain; charset=UTF-8\n"
|
17 |
"Content-Transfer-Encoding: 8bit\n"
|
18 |
"Language: da_DK\n"
|
19 |
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
|
21 |
+
#: config/default-form-content.php:3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
msgid "Email address"
|
23 |
+
msgstr "Email adresse"
|
24 |
|
25 |
+
#: config/default-form-content.php:4
|
|
|
26 |
msgid "Your email address"
|
27 |
+
msgstr "Din email adresse"
|
28 |
|
29 |
+
#: config/default-form-content.php:5
|
|
|
30 |
msgid "Sign up"
|
31 |
+
msgstr "Tilmeld"
|
32 |
|
33 |
+
#: config/default-form-messages.php:5
|
|
|
|
|
|
|
|
|
|
|
34 |
msgid ""
|
35 |
+
"Thank you, your sign-up request was successful! Please check your email "
|
36 |
+
"inbox to confirm."
|
37 |
+
msgstr "TAK! Du er nu tilmeldt nyhedsbrevet! Tjek venligst din mail."
|
38 |
|
39 |
+
#: config/default-form-messages.php:9
|
|
|
40 |
msgid "Oops. Something went wrong. Please try again later."
|
41 |
+
msgstr "Oops. Noget gik galt. Prøv venligst igen senere."
|
42 |
|
43 |
+
#: config/default-form-messages.php:13
|
|
|
44 |
msgid "Please provide a valid email address."
|
45 |
+
msgstr "Venligst udfyld en gyldig email adresse."
|
46 |
|
47 |
+
#: config/default-form-messages.php:17
|
|
|
48 |
msgid "Given email address is already subscribed, thank you!"
|
49 |
+
msgstr "Prøv lige en anden email adresse, denne er allerede tilmeldt."
|
|
|
|
|
|
|
|
|
|
|
50 |
|
51 |
+
#: config/default-form-messages.php:21
|
|
|
52 |
msgid "Please fill in the required fields."
|
53 |
+
msgstr "Venligst udfyld de påkrævede felter."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
54 |
|
55 |
+
#: config/default-form-messages.php:25
|
56 |
+
msgid "You were successfully unsubscribed."
|
57 |
+
msgstr "Du er nu afmeldt nyhedsbrevet."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
|
59 |
+
#: config/default-form-messages.php:29
|
60 |
+
msgid "Given email address is not subscribed."
|
61 |
+
msgstr "Denne mail adresse er ikke tilmeldt nyhedsbrevet."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
62 |
|
63 |
+
#: config/default-form-messages.php:33
|
64 |
+
msgid "Please select at least one list."
|
65 |
+
msgstr "Vælg venligst mindst én liste."
|
66 |
|
67 |
+
#: config/default-integration-options.php:5
|
68 |
+
msgid "Sign me up for the newsletter!"
|
69 |
+
msgstr "Tilmeld mig nyhedsbrevet!"
|
70 |
|
71 |
+
#: includes/admin/class-admin-texts.php:62
|
72 |
+
#: includes/forms/views/edit-form.php:6
|
73 |
+
msgid "Settings"
|
74 |
+
msgstr "Indstillinger"
|
|
|
|
|
75 |
|
76 |
+
#: includes/admin/class-admin-texts.php:80
|
77 |
+
msgid "Documentation"
|
78 |
+
msgstr "Dokumentation"
|
|
|
|
|
79 |
|
80 |
+
#: includes/admin/class-admin.php:167
|
81 |
msgid ""
|
82 |
+
"Success! The cached configuration for your MailChimp lists has been renewed."
|
83 |
+
msgstr "Succes! Den cachede konfiguration for din MailChimp lister er blevet fornyet."
|
|
|
|
|
84 |
|
85 |
+
#: includes/admin/class-admin.php:257
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
86 |
msgid ""
|
87 |
+
"This is a pro-only feature. Please upgrade to the premium version to be able"
|
88 |
+
" to use it."
|
89 |
+
msgstr "Dette er en PRO funktion. Opgrader til premium-version for at bruge dette."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
90 |
|
91 |
+
#: includes/admin/class-admin.php:323 includes/views/general-settings.php:28
|
92 |
+
msgid "MailChimp API Settings"
|
93 |
+
msgstr "MailChimp API indstillinger"
|
94 |
|
95 |
+
#: includes/admin/class-admin.php:324
|
96 |
+
#: integrations/ninja-forms/class-ninja-forms.php:34
|
97 |
+
msgid "MailChimp"
|
98 |
+
msgstr "MailChimp"
|
99 |
|
100 |
+
#: includes/admin/class-ads.php:33
|
101 |
+
msgid "Upgrade to MailChimp for WordPress Pro"
|
102 |
+
msgstr "Opgrader til Mailchimp for Wordpress Pro"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
|
104 |
+
#: includes/admin/class-ads.php:41
|
|
|
105 |
msgid ""
|
106 |
+
"Enjoying this plugin? <a href=\"%s\">Purchase our bundle of premium "
|
107 |
+
"features</a> for an even better plugin."
|
108 |
+
msgstr "Nyder du dette plugin? <a href=“%s”>Køb vores pakke af premium-funktioner</a> for et endnu bedre plugin."
|
|
|
|
|
|
|
109 |
|
110 |
+
#: includes/admin/class-ads.php:62
|
111 |
+
msgid "More subscribers, better newsletters."
|
112 |
+
msgstr "Flere abonnenter, bedre nyhedsbreve."
|
|
|
|
|
113 |
|
114 |
+
#: includes/admin/class-ads.php:63
|
115 |
msgid ""
|
116 |
+
"Learn how to best grow your lists & write better emails by subscribing to "
|
117 |
+
"our monthly tips."
|
118 |
+
msgstr "Lær hvordan du bedst få dine lister til at vokse og skriver bedre mails ved at abonnere på vores månedlige tips."
|
119 |
|
120 |
+
#: includes/admin/class-ads.php:66
|
121 |
+
msgid "Email Address"
|
122 |
+
msgstr "E-mail adresse"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
123 |
|
124 |
+
#: includes/admin/class-ads.php:70
|
125 |
+
msgid "First Name"
|
126 |
+
msgstr "Fornavn"
|
127 |
|
128 |
+
#: includes/admin/class-ads.php:77
|
129 |
+
msgid "Subscribe"
|
130 |
+
msgstr "Tilmeld"
|
131 |
|
132 |
+
#: includes/admin/class-usage-tracking.php:57
|
133 |
+
msgid "Once a month"
|
134 |
+
msgstr "En gang om måneden"
|
|
|
|
|
135 |
|
136 |
+
#: includes/admin/migrations/3.0-form-1-post-type.php:35
|
137 |
+
msgid "Default sign-up form"
|
138 |
+
msgstr "Standard tilmeldings formular"
|
139 |
|
140 |
+
#: includes/class-api.php:83
|
141 |
+
msgid "Read more about common connectivity issues."
|
142 |
+
msgstr "Læs mere om almindelige forbindelsesproblemer."
|
143 |
|
144 |
+
#: includes/forms/class-admin.php:71 includes/forms/class-admin.php:72
|
145 |
+
#: includes/forms/views/edit-form.php:17
|
146 |
+
msgid "Forms"
|
147 |
+
msgstr "Formularer"
|
148 |
|
149 |
+
#: includes/forms/class-admin.php:101 includes/forms/class-admin.php:176
|
150 |
+
msgid "<strong>Success!</strong> Form successfully saved."
|
151 |
+
msgstr "<strong>Succes!</strong> Formular er nu gemt."
|
|
|
|
|
152 |
|
153 |
+
#: includes/forms/class-admin.php:176
|
154 |
+
msgid "Preview form"
|
155 |
+
msgstr "Vis formular"
|
156 |
|
157 |
+
#: includes/forms/class-admin.php:279
|
158 |
+
msgid "Form not found."
|
159 |
+
msgstr "Formular ikke fundet"
|
160 |
|
161 |
+
#: includes/forms/class-admin.php:281
|
162 |
+
msgid "Go back"
|
163 |
+
msgstr "Gå tilbage"
|
164 |
|
165 |
+
#: includes/forms/class-form-previewer.php:162
|
166 |
+
msgid "Form preview"
|
167 |
+
msgstr "Vis formular"
|
168 |
|
169 |
+
#: includes/forms/class-form-tags.php:51
|
170 |
+
msgid "Replaced with the form response (error or success messages)."
|
171 |
+
msgstr "Erstattet med formularens svar (fejl eller succes meddelelser)."
|
172 |
|
173 |
+
#: includes/forms/class-form-tags.php:56
|
174 |
+
msgid "Data from the URL or a submitted form."
|
175 |
+
msgstr "Data fra URL eller en indsendt formular."
|
176 |
|
177 |
+
#: includes/forms/class-form-tags.php:62
|
178 |
+
#: includes/integrations/class-integration-tags.php:45
|
179 |
+
msgid "Replaced with the number of subscribers on the selected list(s)"
|
180 |
+
msgstr "Erstattet med antallet af abonnenter på den valgte liste(r)"
|
181 |
|
182 |
+
#: includes/forms/class-form-tags.php:67
|
183 |
+
msgid "The email address of the current visitor (if known)."
|
184 |
+
msgstr "Email-adressen på den aktuelle besøgende (hvis kendt)."
|
185 |
|
186 |
+
#: includes/forms/class-form-tags.php:72
|
187 |
+
msgid "The URL of the page."
|
188 |
+
msgstr "Sidens URL"
|
189 |
|
190 |
+
#: includes/forms/class-form-tags.php:77
|
191 |
+
msgid "The path of the page."
|
192 |
+
msgstr "Sidens sti"
|
193 |
|
194 |
+
#: includes/forms/class-form-tags.php:82
|
195 |
+
msgid "The current date. Example: %s."
|
196 |
+
msgstr "Den aktuelle dato. Eksempel: %s."
|
|
|
197 |
|
198 |
+
#: includes/forms/class-form-tags.php:87
|
199 |
+
msgid "The current time. Example: %s."
|
200 |
+
msgstr "Den aktuelle tid. Eksempel: %s."
|
|
|
|
|
201 |
|
202 |
+
#: includes/forms/class-form-tags.php:92
|
203 |
+
msgid "The site's language. Example: %s."
|
204 |
+
msgstr "Webstedets sprog. Eksempel: %s."
|
205 |
|
206 |
+
#: includes/forms/class-form-tags.php:97
|
207 |
+
msgid "The visitor's IP address. Example: %s."
|
208 |
+
msgstr "Den besøgendes IP-adresse. Eksempel: %s."
|
|
|
|
|
209 |
|
210 |
+
#: includes/forms/class-form-tags.php:102
|
211 |
+
msgid "The property of the currently logged-in user."
|
212 |
+
msgstr "Ejet af den bruger som er logget på."
|
|
|
|
|
|
|
213 |
|
214 |
+
#: includes/forms/class-form.php:128
|
215 |
+
msgid "There is no form with ID %d, perhaps it was deleted?"
|
216 |
+
msgstr "Der er ingen formular med ID %d, måske er den blev slettet?"
|
|
|
|
|
217 |
|
218 |
+
#: includes/forms/class-widget.php:26
|
219 |
+
msgid "Newsletter"
|
220 |
+
msgstr "Nyhedsbrev"
|
221 |
|
222 |
+
#: includes/forms/class-widget.php:30
|
223 |
+
msgid "MailChimp Sign-Up Form"
|
224 |
+
msgstr "MailChimp tilmeldings formular"
|
|
|
|
|
225 |
|
226 |
+
#: includes/forms/class-widget.php:32
|
227 |
+
msgid "Displays your MailChimp for WordPress sign-up form"
|
228 |
+
msgstr "Viser din MailChimp for WordPress tilmeldings formular"
|
229 |
|
230 |
+
#: includes/forms/class-widget.php:75
|
231 |
+
msgid "Title:"
|
232 |
+
msgstr "Titel:"
|
233 |
|
234 |
+
#: includes/forms/class-widget.php:92
|
235 |
msgid ""
|
236 |
+
"You can edit your sign-up form in the <a href=\"%s\">MailChimp for WordPress"
|
237 |
+
" form settings</a>."
|
238 |
+
msgstr "Du kan redigere din tilmeldings formular i <a href=“%s”>MailChimp til WordPress farmular indstillinger.</a>"
|
239 |
|
240 |
+
#: includes/forms/views/add-form.php:10 includes/forms/views/add-form.php:60
|
241 |
+
msgid "Add new form"
|
242 |
+
msgstr "Tilføj ny formular"
|
243 |
|
244 |
+
#: includes/forms/views/add-form.php:27
|
245 |
+
msgid "What is the name of this form?"
|
246 |
+
msgstr "Hvad er navnet på denne formular?"
|
247 |
|
248 |
+
#: includes/forms/views/add-form.php:30
|
249 |
+
msgid "Enter your form title.."
|
250 |
+
msgstr "Indtast din formular titel .."
|
251 |
|
252 |
+
#: includes/forms/views/add-form.php:37
|
253 |
+
msgid "To which MailChimp lists should this form subscribe?"
|
254 |
+
msgstr "Hvilken MailChimp liste skal denne formular tilmeldes?"
|
|
|
|
|
255 |
|
256 |
+
#: includes/forms/views/add-form.php:54
|
257 |
+
msgid "No lists found. Did you <a href=\"%s\">connect with MailChimp</a>?"
|
258 |
+
msgstr "Ingen lister fundet. Har du <a href=“%s”>forbundet med MailChimp?</a>"
|
|
|
|
|
259 |
|
260 |
+
#: includes/forms/views/edit-form.php:4
|
261 |
+
msgid "Fields"
|
262 |
+
msgstr "Felter"
|
|
|
|
|
263 |
|
264 |
+
#: includes/forms/views/edit-form.php:5
|
265 |
+
msgid "Messages"
|
266 |
+
msgstr "Beskeder"
|
267 |
|
268 |
+
#: includes/forms/views/edit-form.php:7
|
269 |
+
msgid "Appearance"
|
270 |
+
msgstr "Udseende"
|
271 |
|
272 |
+
#: includes/forms/views/edit-form.php:15
|
273 |
+
#: includes/integrations/views/integration-settings.php:8
|
274 |
+
#: includes/integrations/views/integrations.php:7
|
275 |
+
#: includes/views/general-settings.php:7
|
276 |
+
msgid "You are here: "
|
277 |
+
msgstr "Du er her:"
|
|
|
278 |
|
279 |
+
#: includes/forms/views/edit-form.php:27
|
280 |
+
msgid "Edit Form"
|
281 |
+
msgstr "Redigér formular"
|
282 |
|
283 |
+
#: includes/forms/views/edit-form.php:45
|
284 |
+
msgid "Enter form title here"
|
285 |
+
msgstr "Indtast formular titel her"
|
286 |
|
287 |
+
#: includes/forms/views/edit-form.php:46
|
288 |
+
msgid "Enter the title of your sign-up form"
|
289 |
+
msgstr "Indtast titlen på din tilmeldings formular"
|
290 |
|
291 |
+
#: includes/forms/views/edit-form.php:54
|
292 |
+
msgid "Get shortcode"
|
293 |
+
msgstr "Få “shortcode”"
|
|
|
|
|
294 |
|
295 |
+
#: includes/forms/views/edit-form.php:59
|
296 |
+
msgid "Preview this form"
|
297 |
+
msgstr "Vis formular"
|
298 |
+
|
299 |
+
#: includes/forms/views/parts/add-fields-help.php:4
|
300 |
+
#: includes/forms/views/tabs/form-fields.php:10
|
301 |
+
msgid "Add more fields"
|
302 |
+
msgstr "Tilføj flere felter"
|
303 |
|
304 |
+
#: includes/forms/views/parts/add-fields-help.php:9
|
305 |
msgid ""
|
306 |
+
"To add more fields to your form, you will need to create those fields in "
|
307 |
+
"MailChimp first."
|
308 |
+
msgstr "Hvis du vil tilføje flere felter til formularen, skal du oprette disse felter i MailChimp først."
|
|
|
309 |
|
310 |
+
#: includes/forms/views/parts/add-fields-help.php:12
|
311 |
+
msgid "Here's how:"
|
312 |
+
msgstr "Sådan gør du:"
|
313 |
|
314 |
+
#: includes/forms/views/parts/add-fields-help.php:17
|
315 |
+
msgid "Log in to your MailChimp account."
|
316 |
+
msgstr "Log ind på din MailChimp konto."
|
317 |
|
318 |
+
#: includes/forms/views/parts/add-fields-help.php:22
|
319 |
+
msgid "Add list fields to any of your selected lists."
|
320 |
+
msgstr "Tilføj listefelterne til hvilken som helst af dine valgte lister."
|
321 |
|
322 |
+
#: includes/forms/views/parts/add-fields-help.php:23
|
323 |
+
msgid "Clicking the following links will take you to the right screen."
|
324 |
+
msgstr "Hvis du klikker på følgende links vil sende dig til den rigtige skærm."
|
325 |
|
326 |
+
#: includes/forms/views/parts/add-fields-help.php:29
|
327 |
+
msgid "Edit list fields for"
|
328 |
+
msgstr "Rediger listefelterne for"
|
|
|
329 |
|
330 |
+
#: includes/forms/views/parts/add-fields-help.php:38
|
331 |
+
msgid ""
|
332 |
+
"Click the following button to have MailChimp for WordPress pick up on your "
|
333 |
+
"changes."
|
334 |
+
msgstr "Klik på følgende knap for at få MailChimp for WordPress indsamle dine ændringer."
|
335 |
|
336 |
+
#: includes/forms/views/parts/add-fields-help.php:43
|
337 |
+
#: includes/views/parts/lists-overview.php:8
|
338 |
+
msgid "Renew MailChimp lists"
|
339 |
+
msgstr "Forny MailChimp lister"
|
340 |
|
341 |
+
#: includes/forms/views/parts/dynamic-content-tags.php:6
|
342 |
+
msgid "Add dynamic form variable"
|
343 |
+
msgstr "Tilføj dynamisk formular variabel"
|
344 |
|
345 |
+
#: includes/forms/views/parts/dynamic-content-tags.php:8
|
346 |
msgid ""
|
347 |
+
"The following list of variables can be used to <a href=\"%s\">add some "
|
348 |
+
"dynamic content to your form or success and error messages</a>."
|
349 |
+
msgstr "Følgende liste over variabler kan bruges til at <a href=“%s”>tilføje dynamisk indhold til din formular eller succes og fejlmeddelelser.</a>"
|
350 |
|
351 |
+
#: includes/forms/views/parts/dynamic-content-tags.php:8
|
352 |
+
msgid "This allows you to personalise your form or response messages."
|
353 |
+
msgstr "Dette giver dig mulighed for at personliggøre din formular eller svar meddelelser."
|
354 |
|
355 |
+
#: includes/forms/views/tabs/form-appearance.php:5
|
356 |
+
msgid "Inherit from %s theme"
|
357 |
+
msgstr "Arv fra %s tema"
|
358 |
|
359 |
+
#: includes/forms/views/tabs/form-appearance.php:6
|
360 |
+
msgid "Basic"
|
361 |
+
msgstr "Grundlæggende"
|
362 |
|
363 |
+
#: includes/forms/views/tabs/form-appearance.php:7
|
364 |
+
msgid "Form Themes"
|
365 |
+
msgstr "Formular tema"
|
366 |
|
367 |
+
#: includes/forms/views/tabs/form-appearance.php:8
|
368 |
+
msgid "Light Theme"
|
369 |
+
msgstr "Lyst tema"
|
370 |
|
371 |
+
#: includes/forms/views/tabs/form-appearance.php:9
|
372 |
+
msgid "Dark Theme"
|
373 |
+
msgstr "Mørkt tema"
|
374 |
|
375 |
+
#: includes/forms/views/tabs/form-appearance.php:10
|
376 |
+
msgid "Red Theme"
|
377 |
+
msgstr "Rødt tema"
|
378 |
|
379 |
+
#: includes/forms/views/tabs/form-appearance.php:11
|
380 |
+
msgid "Green Theme"
|
381 |
+
msgstr "Grønt tema"
|
382 |
|
383 |
+
#: includes/forms/views/tabs/form-appearance.php:12
|
384 |
+
msgid "Blue Theme"
|
385 |
+
msgstr "Blåt tema"
|
|
|
|
|
386 |
|
387 |
+
#: includes/forms/views/tabs/form-appearance.php:25
|
388 |
+
msgid "Form Appearance"
|
389 |
+
msgstr "Formular Udseende"
|
390 |
|
391 |
+
#: includes/forms/views/tabs/form-appearance.php:29
|
392 |
+
msgid "Form Style"
|
393 |
+
msgstr "Formular Styling"
|
394 |
|
395 |
+
#: includes/forms/views/tabs/form-appearance.php:48
|
396 |
+
msgid ""
|
397 |
+
"If you want to load some default CSS styles, select \"basic formatting "
|
398 |
+
"styles\" or choose one of the color themes"
|
399 |
+
msgstr "Hvis du ønsker at indlæse standard CSS styling, skal du vælge “grundlæggende formaterings stilarter”, eller vælge en af farvetemaerne"
|
400 |
|
401 |
+
#: includes/forms/views/tabs/form-fields.php:6
|
402 |
+
msgid "Form variables"
|
403 |
+
msgstr "Formular Variabler"
|
|
|
404 |
|
405 |
+
#: includes/forms/views/tabs/form-fields.php:13
|
406 |
+
msgid "Form Fields"
|
407 |
+
msgstr "Formular Felter"
|
408 |
|
409 |
+
#: includes/forms/views/tabs/form-fields.php:19
|
410 |
+
msgid "Enter the HTML code for your form fields.."
|
411 |
+
msgstr "Indtast HTML-kode til dit formularfelter .."
|
|
|
|
|
|
|
412 |
|
413 |
+
#: includes/forms/views/tabs/form-fields.php:27
|
414 |
+
msgid "Your form is missing the following (required) form fields:"
|
415 |
+
msgstr "Din formular mangler følgende (påkrævet) formular felter:"
|
416 |
|
417 |
+
#: includes/forms/views/tabs/form-fields.php:34
|
418 |
+
msgid ""
|
419 |
+
"Use the shortcode %s to display this form inside a post, page or text "
|
420 |
+
"widget."
|
421 |
+
msgstr "Brug denne shortcode%s for at vise denne formular i en post, side eller tekst widget."
|
422 |
|
423 |
+
#: includes/forms/views/tabs/form-messages.php:3
|
424 |
+
msgid "Form Messages"
|
425 |
+
msgstr "Formular beskeder"
|
426 |
|
427 |
+
#: includes/forms/views/tabs/form-messages.php:10
|
428 |
+
msgid "Successfully subscribed"
|
429 |
+
msgstr "Du er nu tilmeldt"
|
430 |
|
431 |
+
#: includes/forms/views/tabs/form-messages.php:13
|
432 |
msgid ""
|
433 |
+
"The text that shows when an email address is successfully subscribed to the "
|
434 |
+
"selected list(s)."
|
435 |
+
msgstr "Den tekst, der viser, hvornår en email adresse er korrekt tilmeldt den valgte liste(r)."
|
436 |
|
437 |
+
#: includes/forms/views/tabs/form-messages.php:17
|
438 |
+
msgid "Invalid email address"
|
439 |
+
msgstr "Ugyldig email adresse"
|
440 |
|
441 |
+
#: includes/forms/views/tabs/form-messages.php:20
|
442 |
+
msgid "The text that shows when an invalid email address is given."
|
443 |
+
msgstr "Den tekst, der viser, hvornår en ugyldig email adresse er givet."
|
444 |
|
445 |
+
#: includes/forms/views/tabs/form-messages.php:24
|
446 |
+
msgid "Required field missing"
|
447 |
+
msgstr "Påkrævet felt mangler"
|
448 |
|
449 |
+
#: includes/forms/views/tabs/form-messages.php:27
|
450 |
msgid ""
|
451 |
+
"The text that shows when a required field for the selected list(s) is "
|
452 |
+
"missing."
|
453 |
+
msgstr "Den tekst, der viser, hvornår et obligatorisk felt for den valgte liste(r) mangler."
|
454 |
|
455 |
+
#: includes/forms/views/tabs/form-messages.php:31
|
456 |
+
msgid "Already subscribed"
|
457 |
+
msgstr "Allerede tilmeldt"
|
458 |
|
459 |
+
#: includes/forms/views/tabs/form-messages.php:34
|
460 |
+
msgid ""
|
461 |
+
"The text that shows when the given email is already subscribed to the "
|
462 |
+
"selected list(s)."
|
463 |
+
msgstr "Den tekst, der viser, hvornår en email adresse allerede er tilmeldt den valgte liste(r)."
|
464 |
|
465 |
+
#: includes/forms/views/tabs/form-messages.php:38
|
466 |
+
msgid "General error"
|
467 |
+
msgstr "Generel fejl"
|
468 |
|
469 |
+
#: includes/forms/views/tabs/form-messages.php:41
|
470 |
+
msgid "The text that shows when a general error occured."
|
471 |
+
msgstr "Den tekst, der viser, at en generel fejl er opstået."
|
472 |
|
473 |
+
#: includes/forms/views/tabs/form-messages.php:45
|
474 |
+
msgid "Unsubscribed"
|
475 |
+
msgstr "Afmeldt"
|
476 |
|
477 |
+
#: includes/forms/views/tabs/form-messages.php:48
|
478 |
+
msgid ""
|
479 |
+
"When using the unsubscribe method, this is the text that shows when the "
|
480 |
+
"given email address is successfully unsubscribed from the selected list(s)."
|
481 |
+
msgstr "Ved brug af “afmeld metoden”, er dette den tekst, der viser, hvornår den givne e-mail adresse er afmeldt den valgte liste (r)."
|
482 |
|
483 |
+
#: includes/forms/views/tabs/form-messages.php:52
|
484 |
+
msgid "Not subscribed"
|
485 |
+
msgstr "Ikke tilmeldt"
|
|
|
486 |
|
487 |
+
#: includes/forms/views/tabs/form-messages.php:55
|
488 |
+
msgid ""
|
489 |
+
"When using the unsubscribe method, this is the text that shows when the "
|
490 |
+
"given email address is not on the selected list(s)."
|
491 |
+
msgstr "Ved brug af “afmelde metode”, er dette den tekst, der viser, hvis den givne email adressen ikke er på den valgte liste (r)."
|
492 |
|
493 |
+
#: includes/forms/views/tabs/form-messages.php:64
|
494 |
+
msgid "HTML tags like %s are allowed in the message fields."
|
495 |
+
msgstr "HTML-tags som %s er tilladt i besked felterne."
|
496 |
|
497 |
+
#: includes/forms/views/tabs/form-settings.php:1
|
498 |
+
msgid "Form Settings"
|
499 |
+
msgstr "Formular indstillinger"
|
500 |
|
501 |
+
#: includes/forms/views/tabs/form-settings.php:5
|
502 |
+
msgid "MailChimp specific settings"
|
503 |
+
msgstr "MailChimp specifikke indstillinger"
|
504 |
|
505 |
+
#: includes/forms/views/tabs/form-settings.php:12
|
506 |
+
msgid "Lists this form subscribes to"
|
507 |
+
msgstr "Lister denne formular abonnerer på"
|
508 |
|
509 |
+
#: includes/forms/views/tabs/form-settings.php:15
|
510 |
+
#: includes/integrations/views/integration-settings.php:93
|
511 |
+
msgid "No lists found, <a href=\"%s\">are you connected to MailChimp</a>?"
|
512 |
+
msgstr "Ingen lister fundet, <a href=“%s”>er du forbundet til MailChimp?</a>"
|
513 |
|
514 |
+
#: includes/forms/views/tabs/form-settings.php:29
|
515 |
+
msgid ""
|
516 |
+
"Select the list(s) to which people who submit this form should be "
|
517 |
+
"subscribed."
|
518 |
+
msgstr "Vælg liste(r), som folk, der indsender denne formular skal tilmeldes på."
|
519 |
+
|
520 |
+
#: includes/forms/views/tabs/form-settings.php:35
|
521 |
+
msgid "Use double opt-in?"
|
522 |
+
msgstr "Brug dobbelt opt-in?"
|
523 |
+
|
524 |
+
#: includes/forms/views/tabs/form-settings.php:39
|
525 |
+
#: includes/forms/views/tabs/form-settings.php:54
|
526 |
+
#: includes/forms/views/tabs/form-settings.php:69
|
527 |
+
#: includes/forms/views/tabs/form-settings.php:85
|
528 |
+
#: includes/forms/views/tabs/form-settings.php:115
|
529 |
+
#: includes/integrations/views/integration-settings.php:53
|
530 |
+
#: includes/integrations/views/integration-settings.php:66
|
531 |
+
#: includes/integrations/views/integration-settings.php:117
|
532 |
+
#: includes/integrations/views/integration-settings.php:129
|
533 |
+
#: includes/integrations/views/integration-settings.php:142
|
534 |
+
#: includes/integrations/views/integration-settings.php:163
|
535 |
+
#: includes/integrations/views/integration-settings.php:180
|
536 |
+
#: includes/integrations/views/integration-settings.php:199
|
537 |
+
#: integrations/contact-form-7/class-contact-form-7.php:69
|
538 |
+
msgid "Yes"
|
539 |
+
msgstr "Ja"
|
540 |
+
|
541 |
+
#: includes/forms/views/tabs/form-settings.php:43
|
542 |
+
#: includes/forms/views/tabs/form-settings.php:58
|
543 |
+
#: includes/forms/views/tabs/form-settings.php:73
|
544 |
+
#: includes/forms/views/tabs/form-settings.php:89
|
545 |
+
#: includes/forms/views/tabs/form-settings.php:119
|
546 |
+
#: includes/integrations/views/integration-settings.php:54
|
547 |
+
#: includes/integrations/views/integration-settings.php:67
|
548 |
+
#: includes/integrations/views/integration-settings.php:118
|
549 |
+
#: includes/integrations/views/integration-settings.php:130
|
550 |
+
#: includes/integrations/views/integration-settings.php:146
|
551 |
+
#: includes/integrations/views/integration-settings.php:167
|
552 |
+
#: includes/integrations/views/integration-settings.php:184
|
553 |
+
#: includes/integrations/views/integration-settings.php:203
|
554 |
+
#: integrations/contact-form-7/class-contact-form-7.php:69
|
555 |
+
msgid "No"
|
556 |
+
msgstr "Nej"
|
557 |
|
558 |
+
#: includes/forms/views/tabs/form-settings.php:45
|
559 |
+
#: includes/integrations/views/integration-settings.php:149
|
560 |
+
msgid ""
|
561 |
+
"Select \"yes\" if you want people to confirm their email address before "
|
562 |
+
"being subscribed (recommended)"
|
563 |
+
msgstr "Vælg “Ja”, hvis du vil have folk til at bekræfte deres e-mail adresse, før de tilmeldes (anbefales)"
|
564 |
|
565 |
+
#: includes/forms/views/tabs/form-settings.php:50
|
566 |
+
msgid "Send final welcome email?"
|
567 |
+
msgstr "Send endelig velkomst email?"
|
568 |
|
569 |
+
#: includes/forms/views/tabs/form-settings.php:60
|
570 |
+
#: includes/integrations/views/integration-settings.php:169
|
571 |
+
msgid ""
|
572 |
+
"Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
|
573 |
+
"succeeds (only when double opt-in is disabled)."
|
574 |
+
msgstr "Vælg “Ja”, hvis du vil sende dine lister Velkomst Email, hvis en tilmelding lykkes (kun når dobbelt opt-in er deaktiveret)."
|
575 |
|
576 |
+
#: includes/forms/views/tabs/form-settings.php:65
|
577 |
+
#: includes/integrations/views/integration-settings.php:176
|
578 |
+
msgid "Update existing subscribers?"
|
579 |
+
msgstr "Opdatere eksisterende abonnenter?"
|
580 |
|
581 |
+
#: includes/forms/views/tabs/form-settings.php:75
|
582 |
+
#: includes/integrations/views/integration-settings.php:186
|
583 |
+
msgid ""
|
584 |
+
"Select \"yes\" if you want to update existing subscribers with the data that"
|
585 |
+
" is sent."
|
586 |
+
msgstr "Vælg “Ja”, hvis du ønsker at opdatere eksisterende abonnenter med de data, der sendes."
|
587 |
|
588 |
+
#: includes/forms/views/tabs/form-settings.php:81
|
589 |
+
#: includes/integrations/views/integration-settings.php:195
|
590 |
+
msgid "Replace interest groups?"
|
591 |
+
msgstr "Udskift interesse grupper?"
|
592 |
|
593 |
+
#: includes/forms/views/tabs/form-settings.php:92
|
594 |
+
#: includes/integrations/views/integration-settings.php:206
|
595 |
+
msgid ""
|
596 |
+
"Select \"no\" if you want to add the selected groupings to any previously "
|
597 |
+
"selected groupings when updating a subscriber."
|
598 |
+
msgstr "Vælg “nej”, hvis du ønsker at tilføje de valgte grupperinger på eventuelle tidligere valgte grupperinger ved opdatering en abonnent."
|
599 |
|
600 |
+
#: includes/forms/views/tabs/form-settings.php:93
|
601 |
+
#: includes/integrations/views/integration-settings.php:207
|
602 |
+
msgid "What does this do?"
|
603 |
+
msgstr "Hvad gør denne?"
|
604 |
|
605 |
+
#: includes/forms/views/tabs/form-settings.php:104
|
606 |
+
msgid "Form behaviour"
|
607 |
+
msgstr "Formular adfærd"
|
608 |
|
609 |
+
#: includes/forms/views/tabs/form-settings.php:111
|
610 |
+
msgid "Hide form after a successful sign-up?"
|
611 |
+
msgstr "Skjul formular efter en vellykket tilmelding?"
|
612 |
|
613 |
+
#: includes/forms/views/tabs/form-settings.php:122
|
614 |
+
msgid "Select \"yes\" to hide the form fields after a successful sign-up."
|
615 |
+
msgstr "Vælg “Ja” for at skjule formularfelterne efter en vellykket tilmelding."
|
616 |
|
617 |
+
#: includes/forms/views/tabs/form-settings.php:127
|
618 |
+
msgid "Redirect to URL after successful sign-ups"
|
619 |
+
msgstr "Omdiriger til URL efter vellykkede tilmelding"
|
620 |
|
621 |
+
#: includes/forms/views/tabs/form-settings.php:129
|
622 |
+
msgid "Example: %s"
|
623 |
+
msgstr "Eksempel: %s"
|
624 |
+
|
625 |
+
#: includes/forms/views/tabs/form-settings.php:130
|
626 |
+
msgid ""
|
627 |
+
"Leave empty or enter <code>0</code> for no redirect. Otherwise, use complete"
|
628 |
+
" (absolute) URLs, including <code>http://</code>."
|
629 |
+
msgstr "Efterlad tomt eller indtast <code>0</code> for ingen omdirigering. Ellers skal du bruge komplet (absolut) URL’er, herunder <code>http://</code>"
|
630 |
|
631 |
+
#: includes/integrations/class-admin.php:79
|
632 |
+
#: includes/integrations/class-admin.php:80
|
633 |
+
#: includes/integrations/views/integration-settings.php:10
|
634 |
+
#: includes/integrations/views/integrations.php:9
|
635 |
+
#: includes/integrations/views/integrations.php:17
|
636 |
+
msgid "Integrations"
|
637 |
+
msgstr "Integrationer"
|
638 |
|
639 |
+
#: includes/integrations/views/integration-settings.php:20
|
640 |
+
msgid "%s integration"
|
641 |
+
msgstr "%s integration"
|
642 |
|
643 |
+
#: includes/integrations/views/integration-settings.php:51
|
644 |
+
msgid "Enabled?"
|
645 |
+
msgstr "Aktiveret?"
|
646 |
+
|
647 |
+
#: includes/integrations/views/integration-settings.php:55
|
648 |
msgid ""
|
649 |
+
"Enable the %s integration? This will add a sign-up checkbox to the form."
|
650 |
+
msgstr "Aktiver %s integration? Dette vil tilføje et tilmeldings afkrydsningsboks til formularen."
|
|
|
|
|
651 |
|
652 |
+
#: includes/integrations/views/integration-settings.php:64
|
653 |
+
msgid "Implicit?"
|
654 |
+
msgstr "Underforstået?"
|
|
|
|
|
|
|
|
|
|
|
655 |
|
656 |
+
#: includes/integrations/views/integration-settings.php:68
|
657 |
+
msgid ""
|
658 |
+
"Select \"no\" if you want to ask your visitors before they are subscribed "
|
659 |
+
"(recommended)."
|
660 |
+
msgstr "Vælg “nej”, hvis du ønsker at spørge dine besøgende, før de bliver tilmeldt (anbefales)."
|
661 |
+
|
662 |
+
#: includes/integrations/views/integration-settings.php:78
|
663 |
+
msgid "MailChimp Lists"
|
664 |
+
msgstr "MailChimp Lister"
|
665 |
|
666 |
+
#: includes/integrations/views/integration-settings.php:89
|
667 |
msgid ""
|
668 |
+
"Select the list(s) to which people who check the checkbox should be "
|
669 |
+
"subscribed."
|
670 |
+
msgstr "Vælg liste(r), som folk, der afkrydser afkrydsningsfeltet skal tilmeldes."
|
671 |
|
672 |
+
#: includes/integrations/views/integration-settings.php:102
|
673 |
+
msgid "Checkbox label text"
|
674 |
+
msgstr "Afkrydsningsfelt label tekst"
|
675 |
|
676 |
+
#: includes/integrations/views/integration-settings.php:105
|
677 |
+
msgid "HTML tags like %s are allowed in the label text."
|
678 |
+
msgstr "HTML-tags som %s er tilladt i labelen tekst."
|
679 |
|
680 |
+
#: includes/integrations/views/integration-settings.php:115
|
681 |
+
msgid "Pre-check the checkbox?"
|
682 |
+
msgstr "Marker afkrydsningsfeltet?"
|
|
|
683 |
|
684 |
+
#: includes/integrations/views/integration-settings.php:119
|
685 |
+
msgid "Select \"yes\" if the checkbox should be pre-checked."
|
686 |
+
msgstr "Vælg “ja”, hvis afkrydsningsfeltet skal være markeret."
|
|
|
687 |
|
688 |
+
#: includes/integrations/views/integration-settings.php:127
|
689 |
+
msgid "Load some default CSS?"
|
690 |
+
msgstr "Indlæs noget standard CSS?"
|
|
|
691 |
|
692 |
+
#: includes/integrations/views/integration-settings.php:131
|
693 |
+
msgid "Select \"yes\" if the checkbox appears in a weird place."
|
694 |
+
msgstr "Vælg “ja”, hvis afkrydsningsfeltet vises et mærkeligt sted."
|
|
|
695 |
|
696 |
+
#: includes/integrations/views/integration-settings.php:138
|
697 |
+
msgid "Double opt-in?"
|
698 |
+
msgstr "Dobbelt opt-in?"
|
|
|
699 |
|
700 |
+
#: includes/integrations/views/integration-settings.php:159
|
701 |
+
msgid "Send Welcome Email?"
|
702 |
+
msgstr "Send Velkomst Email?"
|
|
|
703 |
|
704 |
+
#: includes/integrations/views/integration-settings.php:244
|
705 |
+
msgid ""
|
706 |
+
"The selected MailChimp lists require non-default fields, which may prevent "
|
707 |
+
"this integration from working."
|
708 |
+
msgstr "De valgte MailChimp lister kræver ikke-standard felter, som kan hindre denne integration i at fungere."
|
709 |
|
710 |
+
#: includes/integrations/views/integration-settings.php:245
|
711 |
msgid ""
|
712 |
+
"Please ensure you <a href=\"%s\">configure the plugin to send all required "
|
713 |
+
"fields</a> or <a href=\"%s\">log into your MailChimp account</a> and make "
|
714 |
+
"sure only the email & name fields are marked as required fields for the "
|
715 |
+
"selected list(s)."
|
716 |
+
msgstr "Kontroller, at du <a href=“%s”>konfigurerer dette plugin til at sende alle nødvendige felter</a> eller <a href=“%s”>log ind på din MailChimp konto</a> og sørg for kun de e-mail & navne felter der er påkrævet for den valgte liste(r) er markeret."
|
717 |
|
718 |
+
#: includes/integrations/views/integrations.php:30
|
719 |
+
msgid "Enabled"
|
720 |
+
msgstr "Aktiveret"
|
721 |
+
|
722 |
+
#: includes/integrations/views/integrations.php:31
|
723 |
+
msgid "Name"
|
724 |
+
msgstr "Navn"
|
725 |
+
|
726 |
+
#: includes/integrations/views/integrations.php:32
|
727 |
+
msgid "Description"
|
728 |
+
msgstr "Beskrivelse"
|
729 |
|
730 |
+
#: includes/integrations/views/integrations.php:50
|
731 |
msgid ""
|
732 |
+
"This integration is enabled by default as it requires manual actions to "
|
733 |
+
"work."
|
734 |
+
msgstr "Denne integration er aktiveret som standard, da det kræver manuelle handlinger for at fungere."
|
735 |
|
736 |
+
#: includes/integrations/views/integrations.php:57
|
737 |
+
msgid "Configure this integration"
|
738 |
+
msgstr "Konfigurere denne integration"
|
739 |
|
740 |
+
#: includes/views/general-settings.php:18
|
741 |
+
msgid "General Settings"
|
742 |
+
msgstr "Generelle indstillinger"
|
743 |
|
744 |
+
#: includes/views/general-settings.php:35
|
745 |
+
msgid "Status"
|
746 |
+
msgstr "Status"
|
747 |
|
748 |
+
#: includes/views/general-settings.php:39
|
749 |
+
msgid "CONNECTED"
|
750 |
+
msgstr "TILSLUTTET"
|
751 |
|
752 |
+
#: includes/views/general-settings.php:41
|
753 |
+
msgid "NOT CONNECTED"
|
754 |
+
msgstr "IKKE TILSLUTTET"
|
755 |
|
756 |
+
#: includes/views/general-settings.php:48
|
757 |
+
msgid "API Key"
|
758 |
+
msgstr "API nøgle"
|
759 |
|
760 |
+
#: includes/views/general-settings.php:50
|
761 |
+
msgid "Your MailChimp API key"
|
762 |
+
msgstr "Din MailChimp API nøgle"
|
|
|
|
|
763 |
|
764 |
+
#: includes/views/general-settings.php:52
|
765 |
+
msgid "The API key for connecting with your MailChimp account."
|
766 |
+
msgstr "API nøgle til at forbinde med din MailChimp konto."
|
767 |
|
768 |
+
#: includes/views/general-settings.php:53
|
769 |
+
msgid "Get your API key here."
|
770 |
+
msgstr "Få din API nøgle her."
|
771 |
|
772 |
+
#: includes/views/general-settings.php:65
|
773 |
+
msgid "Usage Tracking"
|
774 |
+
msgstr "Anvendelse Sporing"
|
775 |
|
776 |
+
#: includes/views/general-settings.php:71
|
777 |
+
msgid ""
|
778 |
+
"Allow us to anonymously track how this plugin is used to help us make it "
|
779 |
+
"better fit your needs."
|
780 |
+
msgstr "Tillad os at anonymt spore, hvor dette plugin bruges, for at hjælpe os med at få det bedre at passe til dine behov."
|
781 |
|
782 |
+
#: includes/views/general-settings.php:73
|
783 |
+
msgid "This is what we track."
|
784 |
+
msgstr "Dette er hvad vi sporer."
|
785 |
|
786 |
+
#: includes/views/parts/admin-footer.php:11
|
787 |
+
msgid ""
|
788 |
+
"MailChimp for WordPress is in need of translations. Is the plugin not "
|
789 |
+
"translated in your language or do you spot errors with the current "
|
790 |
+
"translations? Helping out is easy! Head over to <a href=\"%s\">the "
|
791 |
+
"translation project and click \"help translate\"</a>."
|
792 |
+
msgstr "MailChimp til WordPress har behov for oversættelser. Er dette plugin ikke oversat på dit sprog, eller har du fundet fejl i de nuværende oversættelser? At hjælpe til er nemt! Smut over til <a href=“%s”>oversættelses projektet og klik på “hjælp med at oversætte”.</a>"
|
793 |
|
794 |
+
#: includes/views/parts/admin-footer.php:31
|
795 |
+
msgid ""
|
796 |
+
"This plugin is not developed by or affiliated with MailChimp in any way."
|
797 |
+
msgstr "Dette plugin er ikke udviklet af eller tilknyttet MailChimp på nogen måde."
|
798 |
|
799 |
+
#: includes/views/parts/lists-overview.php:1
|
800 |
+
msgid "Your MailChimp Account"
|
801 |
+
msgstr "Din MailChimp konto"
|
802 |
|
803 |
+
#: includes/views/parts/lists-overview.php:2
|
804 |
+
msgid ""
|
805 |
+
"The table below shows your MailChimp lists and their details. If you just "
|
806 |
+
"applied changes to your MailChimp lists, please use the following button to "
|
807 |
+
"renew the cached lists configuration."
|
808 |
+
msgstr "Tabellen nedenfor viser dine MailChimp lister og deres detaljer. Hvis du lige har tilføjet ændringer til en af dine MailChimp lister, skal du bruge følgende knap for at forny “lagerede lister konfigurationen”."
|
809 |
|
810 |
+
#: includes/views/parts/lists-overview.php:14
|
811 |
+
msgid "No lists were found in your MailChimp account"
|
812 |
+
msgstr "Ingen lister blev fundet i din MailChimp konto"
|
813 |
|
814 |
+
#: includes/views/parts/lists-overview.php:16
|
815 |
+
msgid "A total of %d lists were found in your MailChimp account."
|
816 |
+
msgstr "Der blev i alt fundet % d lister på din MailChimp konto."
|
817 |
|
818 |
+
#: includes/views/parts/lists-overview.php:21
|
819 |
+
msgid "List Name"
|
820 |
+
msgstr "Liste Navn"
|
|
|
|
|
|
|
821 |
|
822 |
+
#: includes/views/parts/lists-overview.php:22
|
823 |
+
msgid "ID"
|
824 |
+
msgstr "ID"
|
825 |
|
826 |
+
#: includes/views/parts/lists-overview.php:23
|
827 |
+
msgid "Subscribers"
|
828 |
+
msgstr "Abonnenter"
|
829 |
|
830 |
+
#: includes/views/parts/lists-overview.php:45
|
831 |
+
msgid "Edit this list in MailChimp"
|
832 |
+
msgstr "Redigere denne liste i MailChimp"
|
833 |
|
834 |
+
#: includes/views/parts/lists-overview.php:59
|
835 |
+
msgid "%s (%s) with field type %s."
|
836 |
+
msgstr "%s (%s) med felttype %s."
|
837 |
+
|
838 |
+
#: includes/views/parts/lists-overview.php:83
|
839 |
+
msgid "%s (ID: %s) with type %s."
|
840 |
+
msgstr "%s (ID:%s) med type %s."
|
841 |
+
|
842 |
+
#: integrations/contact-form-7/admin-before.php:2
|
843 |
msgid ""
|
844 |
+
"To integrate with Contact Form 7, configure the settings below and then add "
|
845 |
+
"%s to your CF7 form mark-up."
|
846 |
+
msgstr "For at integrere med Contact Form 7, skal du konfigurere indstillingerne nedenfor og derefter tilføje %s til din CF7 formular mark-up."
|
847 |
|
848 |
+
#: integrations/custom/admin-before.php:2
|
849 |
+
msgid ""
|
850 |
+
"To get a custom integration to work, include the following HTML in the form "
|
851 |
+
"you are trying to integrate with."
|
852 |
+
msgstr "For at få en brugerdefineret integration til fungere, skal du inkludere følgende HTML i den formular, du forsøger at integrere med."
|
853 |
|
854 |
+
#: integrations/woocommerce/class-woocommerce.php:102
|
855 |
+
msgid "Order #%d"
|
856 |
+
msgstr "Ordre %d"
|
857 |
+
|
858 |
+
#. Plugin Name of the plugin/theme
|
859 |
+
msgid "MailChimp for WordPress"
|
860 |
+
msgstr "MailChimp til WordPress"
|
861 |
|
862 |
#. Plugin URI of the plugin/theme
|
863 |
+
msgid ""
|
864 |
+
"https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-"
|
865 |
+
"wp&utm_campaign=plugins-page"
|
866 |
+
msgstr "https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=plugins-page"
|
867 |
|
868 |
#. Description of the plugin/theme
|
869 |
+
msgid ""
|
870 |
+
"MailChimp for WordPress by ibericode. Adds various highly effective sign-up "
|
871 |
+
"methods to your site."
|
872 |
+
msgstr "MailChimp for WordPress af ibericode. Tilføjer forskellige yderst effektive tilmeldings metoder til dit websted."
|
873 |
|
874 |
#. Author of the plugin/theme
|
875 |
+
msgid "ibericode"
|
876 |
+
msgstr "ibericode"
|
877 |
|
878 |
#. Author URI of the plugin/theme
|
879 |
+
msgid "https://ibericode.com/"
|
880 |
+
msgstr "https://ibericode.com/"
|
languages/mailchimp-for-wp-fr_FR.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-fr_FR.po
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
-
# Copyright (C) 2015
|
2 |
-
# This file is distributed under the
|
3 |
# Translators:
|
4 |
# ChrisFromLafare <carnaud@free.fr>, 2014
|
5 |
# Cedric R <thorin31@gmail.com>, 2014
|
@@ -8,2099 +8,880 @@
|
|
8 |
# fgerber <gerber.francois@gmail.com>, 2014
|
9 |
# François KUSZTOS <kukus___@hotmail.com>, 2014
|
10 |
# fgerber <gerber.francois@gmail.com>, 2014-2015
|
|
|
|
|
11 |
# sleininger <stef.leininger@gmail.com>, 2014
|
12 |
msgid ""
|
13 |
msgstr ""
|
14 |
"Project-Id-Version: MailChimp for WordPress\n"
|
15 |
-
"Report-Msgid-Bugs-To:
|
16 |
-
"POT-Creation-Date: 2015-
|
17 |
-
"PO-Revision-Date: 2015-
|
18 |
-
"Last-Translator:
|
19 |
"Language-Team: French (France) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/fr_FR/)\n"
|
20 |
"MIME-Version: 1.0\n"
|
21 |
"Content-Type: text/plain; charset=UTF-8\n"
|
22 |
"Content-Transfer-Encoding: 8bit\n"
|
23 |
"Language: fr_FR\n"
|
24 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
25 |
-
"X-Generator: grunt-wp-i18n 0.4.4\n"
|
26 |
-
"X-Poedit-Basepath: .\n"
|
27 |
-
"X-Poedit-Bookmarks: \n"
|
28 |
-
"X-Poedit-Country: UNITED STATES\n"
|
29 |
-
"X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2; _nx:1,2,4c;_n_noop:1,2;_nx_noop:1,2,3c;esc_attr__; esc_html__;esc_attr_e; esc_html_e;esc_attr_x:1,2c; esc_html_x:1,2c;\n"
|
30 |
-
"X-Poedit-Language: English\n"
|
31 |
-
"X-Poedit-SearchPath-0: .\n"
|
32 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
33 |
-
"X-Textdomain-Support: yes\n"
|
34 |
-
|
35 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:141
|
36 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:157
|
37 |
-
msgid "Settings"
|
38 |
-
msgstr "Paramètres"
|
39 |
-
|
40 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:160
|
41 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:16
|
42 |
-
msgid "Upgrade to MailChimp for WordPress Pro"
|
43 |
-
msgstr "Passer à MailChimp pour WordPress Pro"
|
44 |
-
|
45 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:179
|
46 |
-
msgid "MailChimp API Settings"
|
47 |
-
msgstr "Paramètres de l'API MailChimp"
|
48 |
-
|
49 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:180
|
50 |
-
msgid "MailChimp"
|
51 |
-
msgstr "MailChimp"
|
52 |
-
|
53 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:185
|
54 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:11
|
55 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:506
|
56 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:11
|
57 |
-
msgid "Checkbox Settings"
|
58 |
-
msgstr "Paramètres des cases à cocher"
|
59 |
-
|
60 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:186
|
61 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:507
|
62 |
-
msgid "Checkboxes"
|
63 |
-
msgstr "Cases à cocher"
|
64 |
-
|
65 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:191
|
66 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:9
|
67 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:364
|
68 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:512
|
69 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
|
70 |
-
msgid "Form Settings"
|
71 |
-
msgstr "Paramètres du formulaire"
|
72 |
-
|
73 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:192
|
74 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:513
|
75 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:10
|
76 |
-
msgid "Forms"
|
77 |
-
msgstr "Formulaires"
|
78 |
-
|
79 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:196
|
80 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:197
|
81 |
-
msgid "Upgrade to Pro"
|
82 |
-
msgstr "Passer à la version Pro"
|
83 |
-
|
84 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:283
|
85 |
-
msgid "This option is only available in MailChimp for WordPress Pro."
|
86 |
-
msgstr "Cette option n'est disponible que dans la version Pro de l'extension MailChimp pour WordPress."
|
87 |
-
|
88 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:285
|
89 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:29
|
90 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:36
|
91 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:21
|
92 |
-
msgid "(PRO ONLY)"
|
93 |
-
msgstr "(Seulement pour les pros)"
|
94 |
-
|
95 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:286
|
96 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:610
|
97 |
-
msgid "Button text"
|
98 |
-
msgstr "Texte du bouton"
|
99 |
-
|
100 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:287
|
101 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:39
|
102 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:611
|
103 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:59
|
104 |
-
msgid "Initial value"
|
105 |
-
msgstr "Valeur initiale"
|
106 |
-
|
107 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:288
|
108 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:29
|
109 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:34
|
110 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:39
|
111 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:612
|
112 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:49
|
113 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:54
|
114 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:59
|
115 |
-
msgid "(optional)"
|
116 |
-
msgstr "(Optionnel) "
|
117 |
-
|
118 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:289
|
119 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:613
|
120 |
-
msgid "Label for"
|
121 |
-
msgstr "Libellé pour"
|
122 |
-
|
123 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:290
|
124 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:614
|
125 |
-
msgid "(or leave empty)"
|
126 |
-
msgstr "(ou laissez vide)"
|
127 |
-
|
128 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:291
|
129 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:615
|
130 |
-
msgid "Subscribe"
|
131 |
-
msgstr "Abonnez-vous"
|
132 |
-
|
133 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:292
|
134 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:616
|
135 |
-
msgid "Unsubscribe"
|
136 |
-
msgstr "Se désabonner"
|
137 |
-
|
138 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:316
|
139 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:654
|
140 |
-
msgid "Comment form"
|
141 |
-
msgstr "Formulaire de commentaires"
|
142 |
-
|
143 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:317
|
144 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:655
|
145 |
-
msgid "Registration form"
|
146 |
-
msgstr "Formulaire d'inscription"
|
147 |
-
|
148 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:321
|
149 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
|
150 |
-
msgid "MultiSite forms"
|
151 |
-
msgstr "Formulaires multisite"
|
152 |
-
|
153 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:325
|
154 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
|
155 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
|
156 |
-
msgid "BuddyPress registration"
|
157 |
-
msgstr "Inscription à BuddyPress"
|
158 |
-
|
159 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:333
|
160 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:337
|
161 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
|
162 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
|
163 |
-
msgid "%s checkout"
|
164 |
-
msgstr "%s achat"
|
165 |
-
|
166 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:365
|
167 |
-
msgid ""
|
168 |
-
"The plugin can only fetch a maximum of 100 lists from MailChimp, only your "
|
169 |
-
"first 100 lists are shown."
|
170 |
-
msgstr "Le plugin ne peut accéder qu'à un nombre maximum de 100 listes à partir de MailChimp, seules vos 100 premières listes sont donc visibles."
|
171 |
-
|
172 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:370
|
173 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:719
|
174 |
-
msgid "Renewed MailChimp cache."
|
175 |
-
msgstr "Cache MailChimp correctement renouvelé."
|
176 |
|
177 |
-
#:
|
178 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:721
|
179 |
-
msgid "Failed to renew MailChimp cache - please try again later."
|
180 |
-
msgstr "Le renouvellement du cache MailChimp a échoué - veuillez réessayer plus-tard."
|
181 |
-
|
182 |
-
#: mailchimp-for-wordpress/includes/class-widget.php:21
|
183 |
-
msgid "MailChimp Sign-Up Form"
|
184 |
-
msgstr "Formulaire d’enregistrement à MailChimp"
|
185 |
-
|
186 |
-
#: mailchimp-for-wordpress/includes/class-widget.php:23
|
187 |
-
msgid "Displays your MailChimp for WordPress sign-up form"
|
188 |
-
msgstr "Affiche votre formulaire d'inscription de \"MailChimp pour WordPress\""
|
189 |
-
|
190 |
-
#: mailchimp-for-wordpress/includes/class-widget.php:67
|
191 |
-
#: mailchimp-for-wordpress-pro/includes/class-widget.php:71
|
192 |
-
msgid "Newsletter"
|
193 |
-
msgstr "Lettre d'information"
|
194 |
-
|
195 |
-
#: mailchimp-for-wordpress/includes/class-widget.php:70
|
196 |
-
#: mailchimp-for-wordpress-pro/includes/class-widget.php:82
|
197 |
-
msgid "Title:"
|
198 |
-
msgstr "Titre :"
|
199 |
-
|
200 |
-
#: mailchimp-for-wordpress/includes/class-widget.php:74
|
201 |
-
msgid ""
|
202 |
-
"You can edit your sign-up form in the <a href=\"%s\">MailChimp for WordPress"
|
203 |
-
" form settings</a>."
|
204 |
-
msgstr "Vous pouvez éditer votre propre formulaire d'abonnement dans les paramètres des formulaires de <a href=\"%s\">MailChimp pour WordPress</a>."
|
205 |
-
|
206 |
-
#: mailchimp-for-wordpress/includes/functions/general.php:15
|
207 |
-
#: mailchimp-for-wordpress-pro/includes/class-mailchimp.php:135
|
208 |
-
#: mailchimp-for-wordpress-pro/includes/config/default-form.php:3
|
209 |
msgid "Email address"
|
210 |
-
msgstr "Adresse
|
211 |
|
212 |
-
#:
|
213 |
-
#: mailchimp-for-wordpress-pro/includes/config/default-form.php:4
|
214 |
-
#: mailchimp-for-wordpress-pro/includes/config/inline-form.php:2
|
215 |
msgid "Your email address"
|
216 |
msgstr "Votre adresse de courrier électronique"
|
217 |
|
218 |
-
#:
|
219 |
-
#: mailchimp-for-wordpress-pro/includes/config/default-form.php:5
|
220 |
-
#: mailchimp-for-wordpress-pro/includes/config/inline-form.php:3
|
221 |
msgid "Sign up"
|
222 |
msgstr "Abonnez-vous"
|
223 |
|
224 |
-
#:
|
225 |
-
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:9
|
226 |
-
msgid "Sign me up for the newsletter!"
|
227 |
-
msgstr "Inscrivez-vous pour recevoir notre lettre d'information !"
|
228 |
-
|
229 |
-
#: mailchimp-for-wordpress/includes/functions/general.php:44
|
230 |
msgid ""
|
231 |
-
"Thank you, your sign-up request was successful! Please check your
|
232 |
-
"inbox."
|
233 |
-
msgstr "Merci, votre
|
234 |
|
235 |
-
#:
|
236 |
-
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:35
|
237 |
msgid "Oops. Something went wrong. Please try again later."
|
238 |
msgstr "Oups, une erreur s'est produite. Veuillez réessayer plus-tard "
|
239 |
|
240 |
-
#:
|
241 |
-
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:36
|
242 |
msgid "Please provide a valid email address."
|
243 |
msgstr "Veuillez fournir une adresse email valide."
|
244 |
|
245 |
-
#:
|
246 |
-
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:37
|
247 |
msgid "Given email address is already subscribed, thank you!"
|
248 |
msgstr "Cette adresse de courrier électronique est déjà inscrite, merci !"
|
249 |
|
250 |
-
#:
|
251 |
-
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:38
|
252 |
-
msgid "Please complete the CAPTCHA."
|
253 |
-
msgstr "Veuillez retranscrire le code CAPTCHA."
|
254 |
-
|
255 |
-
#: mailchimp-for-wordpress/includes/functions/general.php:49
|
256 |
-
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:39
|
257 |
msgid "Please fill in the required fields."
|
258 |
msgstr "Veuillez remplir les champs obligatoires."
|
259 |
|
260 |
-
#:
|
261 |
-
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:40
|
262 |
msgid "You were successfully unsubscribed."
|
263 |
-
msgstr ""
|
264 |
|
265 |
-
#:
|
266 |
-
#: mailchimp-for-wordpress-pro/includes/config/default-options.php:41
|
267 |
msgid "Given email address is not subscribed."
|
268 |
-
msgstr ""
|
269 |
-
|
270 |
-
#: mailchimp-for-wordpress/includes/integrations/class-cf7.php:55
|
271 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:52
|
272 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:91
|
273 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:96
|
274 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:106
|
275 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:121
|
276 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:134
|
277 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:145
|
278 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:164
|
279 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:178
|
280 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-cf7.php:57
|
281 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:17
|
282 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:37
|
283 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:56
|
284 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:75
|
285 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:98
|
286 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:116
|
287 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:139
|
288 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:52
|
289 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:60
|
290 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:71
|
291 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:113
|
292 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:118
|
293 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:59
|
294 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:72
|
295 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:82
|
296 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:97
|
297 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:115
|
298 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:123
|
299 |
-
msgid "Yes"
|
300 |
-
msgstr "Oui"
|
301 |
-
|
302 |
-
#: mailchimp-for-wordpress/includes/integrations/class-cf7.php:55
|
303 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:56
|
304 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:91
|
305 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:96
|
306 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:27
|
307 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:110
|
308 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:125
|
309 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:136
|
310 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:149
|
311 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:168
|
312 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:182
|
313 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-cf7.php:57
|
314 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:21
|
315 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:41
|
316 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:60
|
317 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:79
|
318 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:102
|
319 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:120
|
320 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:140
|
321 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:52
|
322 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:62
|
323 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:75
|
324 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:113
|
325 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:118
|
326 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:22
|
327 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:63
|
328 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:73
|
329 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:86
|
330 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:101
|
331 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:116
|
332 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:124
|
333 |
-
msgid "No"
|
334 |
-
msgstr "Non"
|
335 |
-
|
336 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:235
|
337 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:238
|
338 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:300
|
339 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:309
|
340 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:235
|
341 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:238
|
342 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:300
|
343 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:309
|
344 |
-
msgid "MailChimp for WordPress - Error"
|
345 |
-
msgstr "MailChimp pour Wordpress - Erreur"
|
346 |
-
|
347 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:236
|
348 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:236
|
349 |
-
msgid ""
|
350 |
-
"Please select a list to subscribe to in the <a href=\"%s\">checkbox "
|
351 |
-
"settings</a>."
|
352 |
-
msgstr "Choisissez une liste à laquelle vous inscrire dans les <a href=\"%s\">paramètres de case à cocher</a>."
|
353 |
-
|
354 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:237
|
355 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:308
|
356 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:237
|
357 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:308
|
358 |
-
msgid "This message is only visible to administrators for debugging purposes."
|
359 |
-
msgstr "Ce message n'est visible que pour les administrateurs, à des fins de débuggage."
|
360 |
-
|
361 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
|
362 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:301
|
363 |
-
msgid ""
|
364 |
-
"The MailChimp server returned the following error message as a response to "
|
365 |
-
"our sign-up request:"
|
366 |
-
msgstr "Le serveur de MailChimp a renvoyé le message d'erreur suivant en réponse à votre demande d'inscription :"
|
367 |
-
|
368 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:303
|
369 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:303
|
370 |
-
msgid "This is the data that was sent to MailChimp:"
|
371 |
-
msgstr "Voici les données qui ont été envoyées à MailChimp :"
|
372 |
-
|
373 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:304
|
374 |
-
#: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:216
|
375 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:304
|
376 |
-
msgid "Email address:"
|
377 |
-
msgstr "Adresse email : "
|
378 |
-
|
379 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:306
|
380 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:306
|
381 |
-
msgid "Merge variables:"
|
382 |
-
msgstr "Fusionner les variables : "
|
383 |
-
|
384 |
-
#. Plugin Name of the plugin/theme
|
385 |
-
msgid "MailChimp for WordPress"
|
386 |
-
msgstr "MailChimp pour WordPress"
|
387 |
-
|
388 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:12
|
389 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:99
|
390 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:10
|
391 |
-
msgid "MailChimp Settings"
|
392 |
-
msgstr "Paramètres de MailChimp"
|
393 |
|
394 |
-
#:
|
395 |
-
|
396 |
-
|
397 |
-
msgstr "Paramètres de l'API"
|
398 |
|
399 |
-
#:
|
400 |
-
|
401 |
-
|
402 |
-
msgstr "CONNECTÉ"
|
403 |
-
|
404 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:26
|
405 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:23
|
406 |
-
msgid "NOT CONNECTED"
|
407 |
-
msgstr "NON CONNECTE"
|
408 |
-
|
409 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:32
|
410 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:29
|
411 |
-
msgid "API Key"
|
412 |
-
msgstr "Clé API"
|
413 |
-
|
414 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:34
|
415 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:31
|
416 |
-
msgid "Your MailChimp API key"
|
417 |
-
msgstr "Votre clé API MailChimp"
|
418 |
-
|
419 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:35
|
420 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:32
|
421 |
-
msgid "Get your API key here."
|
422 |
-
msgstr "Récupérez votre clé API ici."
|
423 |
-
|
424 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:47
|
425 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:48
|
426 |
-
msgid "MailChimp Data"
|
427 |
-
msgstr "Données MailChimp"
|
428 |
-
|
429 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:48
|
430 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:49
|
431 |
-
msgid ""
|
432 |
-
"The table below shows your MailChimp lists data. If you applied changes to "
|
433 |
-
"your MailChimp lists, please use the following button to renew your cached "
|
434 |
-
"data."
|
435 |
-
msgstr "Le tableau ci-dessous affiche les données de vos listes MailChimp. Si vous avez apporté des modifications à vos listes MailChimp, merci de cliquer sur le bouton suivant pour rafraîchir les données en mémoire."
|
436 |
-
|
437 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:54
|
438 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:125
|
439 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:55
|
440 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:126
|
441 |
-
msgid "Renew MailChimp lists"
|
442 |
-
msgstr "Rafraîchir les listes MailChimp"
|
443 |
-
|
444 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:112
|
445 |
-
msgid "No lists were found in your MailChimp account"
|
446 |
-
msgstr "Nous n'avons pas trouvé de liste dans votre compte MailChimp"
|
447 |
-
|
448 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:16
|
449 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:14
|
450 |
-
msgid ""
|
451 |
-
"To use sign-up checkboxes, select at least one list and one form to add the "
|
452 |
-
"checkbox to."
|
453 |
-
msgstr "Pour utiliser les cases à cocher d'inscription, sélectionner au moins une liste et un formulaire auquel ajouter la case à cocher."
|
454 |
-
|
455 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:21
|
456 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:21
|
457 |
-
msgid "MailChimp settings for checkboxes"
|
458 |
-
msgstr "Paramètres de Mailchimp pour les cases à cocher"
|
459 |
-
|
460 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:25
|
461 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:26
|
462 |
-
msgid ""
|
463 |
-
"If you want to use sign-up checkboxes, select at least one MailChimp list to"
|
464 |
-
" subscribe people to."
|
465 |
-
msgstr "Si vous voulez utiliser les cases à cocher d'inscription, sélectionner au moins une liste MailChimp à laquelle inscrire des personnes."
|
466 |
-
|
467 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:31
|
468 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:34
|
469 |
-
msgid "MailChimp Lists"
|
470 |
-
msgstr "Listes MailChimp"
|
471 |
-
|
472 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:35
|
473 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:48
|
474 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:17
|
475 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:38
|
476 |
-
msgid "No lists found, <a href=\"%s\">are you connected to MailChimp</a>?"
|
477 |
-
msgstr "Aucune liste trouvée, <a href=\"%s\">êtes-vous connecté à MaiChimp</a> ?"
|
478 |
-
|
479 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:42
|
480 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:45
|
481 |
-
msgid ""
|
482 |
-
"Select the list(s) to which people who check the checkbox should be "
|
483 |
-
"subscribed."
|
484 |
-
msgstr "Sélectionnez la liste(s) à laquelle les utilisateurs qui cochent la case seront inscrits."
|
485 |
-
|
486 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:48
|
487 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:102
|
488 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:13
|
489 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:51
|
490 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:55
|
491 |
-
msgid "Double opt-in?"
|
492 |
-
msgstr "Double opt-in (validation de l'adresse du destinataire par e-mail) ?"
|
493 |
-
|
494 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:59
|
495 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:113
|
496 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:28
|
497 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:53
|
498 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:66
|
499 |
-
msgid ""
|
500 |
-
"Select \"yes\" if you want people to confirm their email address before "
|
501 |
-
"being subscribed (recommended)"
|
502 |
-
msgstr "Sélectionnez \"oui\" si vous souhaitez que vos membres soient obligés de confirmer leur email après s’être inscrit (recommandé)"
|
503 |
-
|
504 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:63
|
505 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:82
|
506 |
-
msgid "Checkbox settings"
|
507 |
-
msgstr "Paramètres de case à cocher"
|
508 |
-
|
509 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:67
|
510 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:85
|
511 |
-
msgid "Add the checkbox to these forms"
|
512 |
-
msgstr "Ajouter la case à cocher à ces formulaires"
|
513 |
-
|
514 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:79
|
515 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:92
|
516 |
-
msgid "Selecting a form will automatically add the sign-up checkbox to it."
|
517 |
-
msgstr "La sélection d'un formulaire ajoute automatiquement la case à cocher d'inscription à celui-ci."
|
518 |
-
|
519 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:83
|
520 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:105
|
521 |
-
msgid "Checkbox label text"
|
522 |
-
msgstr "Texte de l'etiquette de la case à cocher"
|
523 |
-
|
524 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:86
|
525 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:108
|
526 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:148
|
527 |
-
msgid "HTML tags like %s are allowed in the label text."
|
528 |
-
msgstr "Les balises HTML telles que %s sont autorisées dans le texte de l'étiquette."
|
529 |
-
|
530 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:90
|
531 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:112
|
532 |
-
msgid "Pre-check the checkbox?"
|
533 |
-
msgstr "Pré-sélectionner les cases à cocher ?"
|
534 |
-
|
535 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:95
|
536 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:117
|
537 |
-
msgid "Load some default CSS?"
|
538 |
-
msgstr "Voulez-vous charger du code CSS par défaut ?"
|
539 |
-
|
540 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:97
|
541 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:119
|
542 |
-
msgid "Select \"yes\" if the checkbox appears in a weird place."
|
543 |
-
msgstr "Sélectionner \"oui\" si la case à cocher apparaît à un endroit bizarre."
|
544 |
-
|
545 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:100
|
546 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:122
|
547 |
-
msgid "WooCommerce checkbox position"
|
548 |
-
msgstr "Position de la case à cocher WooCommerce"
|
549 |
-
|
550 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:103
|
551 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:125
|
552 |
-
msgid "After the billing details"
|
553 |
-
msgstr "Après les informations de facturation"
|
554 |
-
|
555 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:104
|
556 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:126
|
557 |
-
msgid "After the additional information"
|
558 |
-
msgstr "Après les informations complémentaires"
|
559 |
-
|
560 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:107
|
561 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:129
|
562 |
-
msgid ""
|
563 |
-
"Choose the position for the checkbox in your WooCommerce checkout form."
|
564 |
-
msgstr "Choisissez la position de votre case à cocher dans votre formulaire de paiement WooCommerce"
|
565 |
-
|
566 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:15
|
567 |
-
msgid ""
|
568 |
-
"To use the MailChimp sign-up form, configure the form below and then either "
|
569 |
-
"paste %s in the content of a post or page or use the widget."
|
570 |
-
msgstr "Afin d'utiliser le formulaire d'enregistrement de MailChimp, configurez le formulaire ci-dessous et ensuite, soit vous collez %s dans le contenu d'un article, soit dans le contenu d'une page où vous utilisez le widget à cet effet."
|
571 |
-
|
572 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:20
|
573 |
-
msgid "Required form settings"
|
574 |
-
msgstr "Paramètres de formulaire requis"
|
575 |
-
|
576 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:24
|
577 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:19
|
578 |
-
msgid "Load form styles (CSS)?"
|
579 |
-
msgstr "Charger le style des formulaires (CSS) ?"
|
580 |
-
|
581 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:28
|
582 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:23
|
583 |
-
msgid "Yes, load basic form styles"
|
584 |
-
msgstr "Oui, charger un style minimal pour les formulaires"
|
585 |
-
|
586 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:29
|
587 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
|
588 |
-
msgid "Yes, load my custom form styles"
|
589 |
-
msgstr "Oui, charger mes styles de formulaire personnalisés"
|
590 |
-
|
591 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:30
|
592 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:25
|
593 |
-
msgid "Yes, load default form theme"
|
594 |
-
msgstr "Oui, charger le thème de formulaire par défaut"
|
595 |
-
|
596 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:31
|
597 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:26
|
598 |
-
msgid "Light Theme"
|
599 |
-
msgstr "Thème léger"
|
600 |
-
|
601 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:32
|
602 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:27
|
603 |
-
msgid "Red Theme"
|
604 |
-
msgstr "Thème rouge"
|
605 |
-
|
606 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:33
|
607 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:28
|
608 |
-
msgid "Green Theme"
|
609 |
-
msgstr "Thème vert"
|
610 |
-
|
611 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:34
|
612 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:29
|
613 |
-
msgid "Blue Theme"
|
614 |
-
msgstr "Thème bleu"
|
615 |
-
|
616 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:35
|
617 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:30
|
618 |
-
msgid "Dark Theme"
|
619 |
-
msgstr "Thème sombre"
|
620 |
-
|
621 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:36
|
622 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:31
|
623 |
-
msgid "Custom Color Theme"
|
624 |
-
msgstr "Thème avec couleur personnalisée"
|
625 |
-
|
626 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:41
|
627 |
-
msgid ""
|
628 |
-
"If you want to load some default CSS styles, select \"basic formatting "
|
629 |
-
"styles\" or choose one of the color themes"
|
630 |
-
msgstr "Si vous voulez charger un style CSS par défaut, selectionnez \"styles de formatage basiques\" ou choisissez un des thèmes couleurs."
|
631 |
-
|
632 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:45
|
633 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:14
|
634 |
-
msgid "Lists this form subscribes to"
|
635 |
-
msgstr "Listes auxquelles ce formulaire permet de s'inscrire"
|
636 |
-
|
637 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:63
|
638 |
-
msgid ""
|
639 |
-
"Select the list(s) to which people who submit this form should be "
|
640 |
-
"subscribed."
|
641 |
-
msgstr "Sélectionnez la liste(s) à laquelle, les utilisateurs seront inscrits une fois le formulaire validé."
|
642 |
-
|
643 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:69
|
644 |
-
msgid "Form mark-up"
|
645 |
-
msgstr "Formulaire de balisage"
|
646 |
-
|
647 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:79
|
648 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:91
|
649 |
-
msgid ""
|
650 |
-
"Use the shortcode %s to display this form inside a post, page or text "
|
651 |
-
"widget."
|
652 |
-
msgstr "Utilisez le shortcode %s pour afficher ce formulaire dans vos billet, page ou widget avec texte"
|
653 |
-
|
654 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:92
|
655 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/missing-fields-notice.php:4
|
656 |
-
msgid "Your form is missing the following (required) form fields:"
|
657 |
-
msgstr "Il manque à votre formulaire les champs obligatoires suivants :"
|
658 |
-
|
659 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:117
|
660 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:71
|
661 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:57
|
662 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:70
|
663 |
-
msgid "Send Welcome Email?"
|
664 |
-
msgstr "Voulez-vous envoyer un email de bienvenue ?"
|
665 |
-
|
666 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:128
|
667 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:86
|
668 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:64
|
669 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:75
|
670 |
-
msgid ""
|
671 |
-
"Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
|
672 |
-
"succeeds (only when double opt-in is disabled)."
|
673 |
-
msgstr "Choisissez \"oui\" si vous voulez envoyer à vos listes un email de bienvenue suite à une inscription réussie (uniquement si la double validation est désactivée)."
|
674 |
-
|
675 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:131
|
676 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:33
|
677 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:67
|
678 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:78
|
679 |
-
msgid "Update existing subscribers?"
|
680 |
-
msgstr "Voulez-vous que les données des internautes déjà inscrit soit mise à jour ?"
|
681 |
-
|
682 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:138
|
683 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:47
|
684 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:89
|
685 |
-
msgid ""
|
686 |
-
"Select \"yes\" if you want to update existing subscribers (instead of "
|
687 |
-
"showing the \"already subscribed\" message)."
|
688 |
-
msgstr "Choisissez \"oui\" si vous voulez mettre à jour les inscrits déjà existants (au lieu d'afficher le message \"vous êtes déjà inscrit\")."
|
689 |
-
|
690 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:141
|
691 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:52
|
692 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:93
|
693 |
-
msgid "Replace interest groups?"
|
694 |
-
msgstr "Remplacer les groupes d'intérêt"
|
695 |
-
|
696 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:152
|
697 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:66
|
698 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:104
|
699 |
-
msgid ""
|
700 |
-
"Select \"yes\" if you want to replace the interest groups with the groups "
|
701 |
-
"provided instead of adding the provided groups to the member's interest "
|
702 |
-
"groups (only when updating a subscriber)."
|
703 |
-
msgstr "Sélectionnez \\\"oui\\\" si vous voulez remplacer les groupes d'intérêt avec les groupes prévus au lieu d'ajouter les groupes prévus aux groupes d'intérêt du membre (uniquement lors de la mise à jour d'un abonné)."
|
704 |
-
|
705 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:156
|
706 |
-
msgid "Form Settings & Messages"
|
707 |
-
msgstr "Formulaire de configuration et de messages"
|
708 |
-
|
709 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:160
|
710 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:94
|
711 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:113
|
712 |
-
msgid "Enable AJAX form submission?"
|
713 |
-
msgstr "Activer soumission du formulaire grâce à la technologie AJAX ?"
|
714 |
-
|
715 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:171
|
716 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:108
|
717 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:118
|
718 |
-
msgid "Select \"yes\" if you want to use AJAX (JavaScript) to submit forms."
|
719 |
-
msgstr "Sélectionnez \"oui\" si vous voulez utiliser AJAX (JavaScript) pour soumettre des formulaires."
|
720 |
-
|
721 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:174
|
722 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:112
|
723 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:121
|
724 |
-
msgid "Hide form after a successful sign-up?"
|
725 |
-
msgstr "Voulez vous cacher le formulaire après un enregistrement réussi ?"
|
726 |
-
|
727 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:185
|
728 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:126
|
729 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:126
|
730 |
-
msgid "Select \"yes\" to hide the form fields after a successful sign-up."
|
731 |
-
msgstr "Sélectionnez \"oui\" afin de cacher les champs du formulaire après un enregistrement réussi."
|
732 |
-
|
733 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:188
|
734 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:130
|
735 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:129
|
736 |
-
msgid "Redirect to URL after successful sign-ups"
|
737 |
-
msgstr "redirection vers une URL après une inscription réussite."
|
738 |
-
|
739 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:190
|
740 |
-
msgid "Example: %s"
|
741 |
-
msgstr "Exemple : %s"
|
742 |
-
|
743 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:191
|
744 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:133
|
745 |
-
msgid ""
|
746 |
-
"Leave empty or enter <code>0</code> for no redirect. Otherwise, use complete"
|
747 |
-
" (absolute) URLs, including <code>http://</code>."
|
748 |
-
msgstr ""
|
749 |
-
|
750 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:195
|
751 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:140
|
752 |
-
msgid "Successfully subscribed"
|
753 |
-
msgstr ""
|
754 |
-
|
755 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:198
|
756 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:156
|
757 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:143
|
758 |
-
msgid ""
|
759 |
-
"The text that shows when an email address is successfully subscribed to the "
|
760 |
-
"selected list(s)."
|
761 |
-
msgstr ""
|
762 |
-
|
763 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:202
|
764 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:160
|
765 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:147
|
766 |
-
msgid "Invalid email address"
|
767 |
-
msgstr "Adresse email invalide"
|
768 |
-
|
769 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:205
|
770 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:163
|
771 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:150
|
772 |
-
msgid "The text that shows when an invalid email address is given."
|
773 |
-
msgstr ""
|
774 |
-
|
775 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:209
|
776 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:167
|
777 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:154
|
778 |
-
msgid "Required field missing"
|
779 |
-
msgstr "Vous avez oublié de remplir un champs obligatoire. "
|
780 |
-
|
781 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:212
|
782 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:170
|
783 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:157
|
784 |
-
msgid ""
|
785 |
-
"The text that shows when a required field for the selected list(s) is "
|
786 |
-
"missing."
|
787 |
-
msgstr ""
|
788 |
-
|
789 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:216
|
790 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:174
|
791 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:161
|
792 |
-
msgid "Already subscribed"
|
793 |
-
msgstr "Déjà inscrit"
|
794 |
-
|
795 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:219
|
796 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:177
|
797 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:164
|
798 |
-
msgid ""
|
799 |
-
"The text that shows when the given email is already subscribed to the "
|
800 |
-
"selected list(s)."
|
801 |
-
msgstr ""
|
802 |
-
|
803 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:224
|
804 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:182
|
805 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:169
|
806 |
-
msgid "Invalid CAPTCHA"
|
807 |
-
msgstr "CAPTCHA invalide"
|
808 |
-
|
809 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:229
|
810 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:174
|
811 |
-
msgid "General error"
|
812 |
-
msgstr ""
|
813 |
-
|
814 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:232
|
815 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:193
|
816 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:177
|
817 |
-
msgid "The text that shows when a general error occured."
|
818 |
-
msgstr ""
|
819 |
-
|
820 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:236
|
821 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:197
|
822 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:181
|
823 |
-
msgid "Unsubscribed"
|
824 |
-
msgstr "désabonné"
|
825 |
-
|
826 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:239
|
827 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:200
|
828 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:184
|
829 |
-
msgid ""
|
830 |
-
"When using the unsubscribe method, this is the text that shows when the "
|
831 |
-
"given email address is successfully unsubscribed from the selected list(s)."
|
832 |
-
msgstr ""
|
833 |
-
|
834 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:243
|
835 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:204
|
836 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:188
|
837 |
-
msgid "Not subscribed"
|
838 |
-
msgstr ""
|
839 |
-
|
840 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:246
|
841 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:207
|
842 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:191
|
843 |
-
msgid ""
|
844 |
-
"When using the unsubscribe method, this is the text that shows when the "
|
845 |
-
"given email address is not on the selected list(s)."
|
846 |
-
msgstr ""
|
847 |
-
|
848 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:252
|
849 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:213
|
850 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:197
|
851 |
-
msgid "HTML tags like %s are allowed in the message fields."
|
852 |
-
msgstr "Les balises HTML tel que %s sont acceptées dans les champs."
|
853 |
-
|
854 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:266
|
855 |
-
msgid "Form Styling"
|
856 |
-
msgstr "Mise en page du formulaire"
|
857 |
-
|
858 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:267
|
859 |
-
msgid "Alter the visual appearance of the form by applying CSS rules to %s."
|
860 |
-
msgstr "Modifier l'apparence du formulaire en appliquant des règles CSS à %s."
|
861 |
-
|
862 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:268
|
863 |
-
msgid ""
|
864 |
-
"You can add the CSS rules to your theme stylesheet using the <a "
|
865 |
-
"href=\"%s\">Theme Editor</a> or by using a plugin like %s"
|
866 |
-
msgstr ""
|
867 |
-
|
868 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:269
|
869 |
-
msgid ""
|
870 |
-
"The <a href=\"%s\" target=\"_blank\">plugin FAQ</a> lists the various CSS "
|
871 |
-
"selectors you can use to target the different form elements."
|
872 |
-
msgstr "La <a href=\"%s\" target=\"_blank\">FAQ du plugin</a> recense les différents sélecteurs CSS vous permettant de pointer vers les éléments de formulaire."
|
873 |
-
|
874 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:270
|
875 |
-
msgid ""
|
876 |
-
"If you need an easier way to style your forms, consider <a "
|
877 |
-
"href=\"%s\">upgrading to MailChimp for WordPress Pro</a> which comes with an"
|
878 |
-
" easy Styles Builder."
|
879 |
-
msgstr ""
|
880 |
-
|
881 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:272
|
882 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:366
|
883 |
-
msgid "Variables"
|
884 |
-
msgstr ""
|
885 |
-
|
886 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:274
|
887 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:11
|
888 |
-
msgid ""
|
889 |
-
"The following list of variables can be used to <a href=\"%s\">add some "
|
890 |
-
"dynamic content to your form or success and error messages</a>."
|
891 |
-
msgstr ""
|
892 |
-
|
893 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:274
|
894 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:11
|
895 |
-
msgid "This allows you to personalise your form or response messages."
|
896 |
-
msgstr ""
|
897 |
-
|
898 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:282
|
899 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:16
|
900 |
-
msgid "Replaced with the visitor's email (if set in URL or cookie)."
|
901 |
-
msgstr "Remplacé par l'email du visiteur (si disponible dans l'URL ou le cookie)"
|
902 |
-
|
903 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:286
|
904 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:20
|
905 |
-
msgid "Replaced with the form response (error or success messages)."
|
906 |
-
msgstr "Remplacer avec un message de réponse (message d'erreur ou de réussite)."
|
907 |
-
|
908 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:291
|
909 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:25
|
910 |
-
msgid "Replaced with a captcha field."
|
911 |
-
msgstr "Remplacé par un champ captcha."
|
912 |
-
|
913 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:296
|
914 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:30
|
915 |
-
msgid "Replaced with the number of subscribers on the selected list(s)"
|
916 |
-
msgstr "Remplacé par le nombre d'abonnés de la liste sélectionnée"
|
917 |
-
|
918 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:300
|
919 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:34
|
920 |
-
msgid "Replaced with the current site language, eg: %s"
|
921 |
-
msgstr "Remplacé par la langue du site en cours, par exemple : %s"
|
922 |
-
|
923 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:304
|
924 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:38
|
925 |
-
msgid "Replaced with the visitor's IP address"
|
926 |
-
msgstr "Remplacé par l'adresse IP du visiteur"
|
927 |
-
|
928 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:308
|
929 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:42
|
930 |
-
msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
|
931 |
-
msgstr "Remplacé par la date actuelle (yyyy/mm/dd par exemple: %s)"
|
932 |
-
|
933 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:312
|
934 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:46
|
935 |
-
msgid "Replaced with the current time (hh:mm:ss eg: %s)"
|
936 |
-
msgstr "Remplacé par l'heure actuelle (hh:mm:ss par exemple: %s)"
|
937 |
-
|
938 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:316
|
939 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:50
|
940 |
-
msgid ""
|
941 |
-
"Replaced with the logged in user's email (or nothing, if there is no logged "
|
942 |
-
"in user)"
|
943 |
-
msgstr "Remplacé par l'e-mail de l'utilisateur connecté (ou rien, s'il n'y a pas d'utilisateur connecté)"
|
944 |
-
|
945 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:320
|
946 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:54
|
947 |
-
msgid "First name of the current user"
|
948 |
-
msgstr "Prénom de l'utilisateur actif"
|
949 |
-
|
950 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:324
|
951 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:58
|
952 |
-
msgid "Last name of the current user"
|
953 |
-
msgstr "Nom de l'utilisateur actif"
|
954 |
-
|
955 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:328
|
956 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:62
|
957 |
-
msgid "Current user ID"
|
958 |
-
msgstr "Identifiant de l'utilisateur actif"
|
959 |
-
|
960 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:332
|
961 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:66
|
962 |
-
msgid "Current URL"
|
963 |
-
msgstr "URL active"
|
964 |
-
|
965 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:336
|
966 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:70
|
967 |
-
msgid "The value of the <strong>FNAME</strong> field, if set."
|
968 |
-
msgstr ""
|
969 |
-
|
970 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:10
|
971 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:31
|
972 |
-
msgid "Add a new field"
|
973 |
-
msgstr "Ajouter un nouveau champ "
|
974 |
-
|
975 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:12
|
976 |
-
msgid "Use the tool below to generate the HTML for your form fields."
|
977 |
-
msgstr "Utilisez l'outils si dessous pour générer le code HTML de vos champs de formulaire."
|
978 |
-
|
979 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:15
|
980 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:35
|
981 |
-
msgid "Select MailChimp field.."
|
982 |
-
msgstr "Sélectionnez le champ MailChimp ..."
|
983 |
-
|
984 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:19
|
985 |
-
msgid "Submit Button"
|
986 |
-
msgstr "Bouton de validation"
|
987 |
-
|
988 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
|
989 |
-
msgid "Subscribe / unsubscribe choice"
|
990 |
-
msgstr ""
|
991 |
-
|
992 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:21
|
993 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:40
|
994 |
-
msgid "List choice"
|
995 |
-
msgstr ""
|
996 |
|
997 |
-
#:
|
998 |
-
#:
|
999 |
-
msgid "
|
1000 |
-
msgstr "
|
1001 |
-
|
1002 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:34
|
1003 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:54
|
1004 |
-
msgid "Placeholder"
|
1005 |
-
msgstr "Texte par défaut"
|
1006 |
-
|
1007 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:44
|
1008 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:64
|
1009 |
-
msgid "Labels"
|
1010 |
-
msgstr "Labels"
|
1011 |
-
|
1012 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:44
|
1013 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:64
|
1014 |
-
msgid "(leave empty to hide)"
|
1015 |
-
msgstr "(laissez vide pour cacher)"
|
1016 |
-
|
1017 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:49
|
1018 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:69
|
1019 |
-
msgid "Wrap in paragraph %s tags?"
|
1020 |
-
msgstr "Voulez-vous activer les tags %s dans les paragraphes"
|
1021 |
-
|
1022 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:54
|
1023 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:73
|
1024 |
-
msgid "Required field?"
|
1025 |
-
msgstr "est-ce un champ obligatoire ?"
|
1026 |
-
|
1027 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:58
|
1028 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:77
|
1029 |
-
msgid "Add to form"
|
1030 |
-
msgstr "Ajouter au formulaire"
|
1031 |
-
|
1032 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:62
|
1033 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:81
|
1034 |
-
msgid "Generated HTML"
|
1035 |
-
msgstr "HTML généré"
|
1036 |
-
|
1037 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:69
|
1038 |
-
msgid "Select at least one list first."
|
1039 |
-
msgstr "Sélectionnez au moins une première liste."
|
1040 |
-
|
1041 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
|
1042 |
-
msgid ""
|
1043 |
-
"MailChimp for WordPress is in need of translations. Is the plugin not "
|
1044 |
-
"translated in your language or do you spot errors with the current "
|
1045 |
-
"translations? Helping out is easy! Head over to <a href=\"%s\">the "
|
1046 |
-
"translation project and click \"help translate\"</a>."
|
1047 |
-
msgstr "MailChimp for WordPress a besoin de traductions. Le plugin n'est pas traduit dans votre langue ou vous avez localisé des erreurs dans la traduction? Nous aider est facile! Rendez vous sur <a href=\"%s\">le site de traduction du projet et cliquez sur \"help translate\"</a>"
|
1048 |
|
1049 |
-
#:
|
1050 |
-
msgid ""
|
1051 |
-
|
1052 |
-
"Pro</a> for an even better plugin, you will love it."
|
1053 |
-
msgstr ""
|
1054 |
|
1055 |
-
#:
|
1056 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:13
|
1057 |
msgid ""
|
1058 |
-
"
|
1059 |
-
msgstr "
|
1060 |
-
|
1061 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:9
|
1062 |
-
msgid "Looking for help?"
|
1063 |
-
msgstr ""
|
1064 |
|
1065 |
-
#:
|
1066 |
msgid ""
|
1067 |
-
"
|
1068 |
-
"
|
1069 |
-
"
|
1070 |
-
msgstr ""
|
1071 |
-
|
1072 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:14
|
1073 |
-
msgid "Do you enjoy this plugin?"
|
1074 |
-
msgstr ""
|
1075 |
|
1076 |
-
#:
|
1077 |
-
msgid "
|
1078 |
-
msgstr "
|
1079 |
|
1080 |
-
#:
|
1081 |
-
|
1082 |
-
|
|
|
1083 |
|
1084 |
-
#:
|
1085 |
-
msgid "
|
1086 |
-
msgstr "
|
1087 |
|
1088 |
-
#:
|
1089 |
msgid ""
|
1090 |
-
"
|
1091 |
-
"
|
1092 |
-
msgstr "
|
1093 |
-
|
1094 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
|
1095 |
-
msgid "There is an <a href=\"%s\">affiliate program</a> as well."
|
1096 |
-
msgstr ""
|
1097 |
|
1098 |
-
#:
|
1099 |
-
msgid "
|
1100 |
-
msgstr "
|
1101 |
|
1102 |
-
#:
|
1103 |
msgid ""
|
1104 |
-
"
|
1105 |
-
|
1106 |
-
|
1107 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
|
1108 |
-
msgid "Some differences with this free version of the plugin:"
|
1109 |
-
msgstr ""
|
1110 |
-
|
1111 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:14
|
1112 |
-
msgid "Multiple forms"
|
1113 |
-
msgstr ""
|
1114 |
-
|
1115 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:15
|
1116 |
-
msgid "Each subscribing to one or multiple MailChimp lists."
|
1117 |
-
msgstr ""
|
1118 |
-
|
1119 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:18
|
1120 |
-
msgid "AJAX forms"
|
1121 |
-
msgstr ""
|
1122 |
-
|
1123 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:19
|
1124 |
-
msgid "Forms do not require a full page reload."
|
1125 |
-
msgstr ""
|
1126 |
-
|
1127 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:22
|
1128 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:14
|
1129 |
-
msgid "Statistics"
|
1130 |
-
msgstr "Statistiques"
|
1131 |
-
|
1132 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:23
|
1133 |
-
msgid "Every form interaction is logged and visualised in insightful charts."
|
1134 |
-
msgstr ""
|
1135 |
|
1136 |
-
#:
|
1137 |
-
msgid "
|
1138 |
-
msgstr ""
|
1139 |
-
|
1140 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:27
|
1141 |
-
msgid "Create beautiful form themes with ease."
|
1142 |
-
msgstr ""
|
1143 |
|
1144 |
-
#:
|
1145 |
-
msgid "
|
1146 |
-
msgstr "
|
1147 |
|
1148 |
-
#:
|
1149 |
-
msgid "
|
1150 |
-
msgstr ""
|
1151 |
|
1152 |
-
#:
|
1153 |
-
msgid "
|
1154 |
-
msgstr "
|
1155 |
|
1156 |
-
#:
|
1157 |
-
msgid "
|
1158 |
-
msgstr "
|
1159 |
|
1160 |
-
#:
|
1161 |
-
msgid "
|
1162 |
-
msgstr "
|
1163 |
|
1164 |
-
#:
|
1165 |
-
|
1166 |
-
|
|
|
1167 |
|
1168 |
-
#:
|
1169 |
-
msgid "Form
|
1170 |
-
msgstr "Le formulaire a été
|
1171 |
|
1172 |
-
#:
|
1173 |
-
msgid "
|
1174 |
-
msgstr "
|
1175 |
|
1176 |
-
#:
|
1177 |
-
msgid "
|
1178 |
-
msgstr "
|
1179 |
|
1180 |
-
#:
|
1181 |
-
msgid "
|
1182 |
-
msgstr "
|
1183 |
|
1184 |
-
#:
|
1185 |
-
msgid "
|
1186 |
-
msgstr "
|
1187 |
|
1188 |
-
#:
|
1189 |
-
|
1190 |
-
|
1191 |
-
msgid "Reports"
|
1192 |
-
msgstr "Rapports"
|
1193 |
|
1194 |
-
#:
|
1195 |
-
msgid ""
|
1196 |
-
"
|
1197 |
-
"href=\"%s\">Provide a valid API key.</a>"
|
1198 |
-
msgstr "Veuillez-vous assurer que le plugin est bien connecté à MailChimp. <a href=\"%s\">fournissez une clef d'API valide.</a>"
|
1199 |
|
1200 |
-
#:
|
1201 |
-
|
1202 |
-
"
|
1203 |
-
"
|
1204 |
-
msgstr "Vous avez désactivé la journalisation en utilisant le filtre %s. Réactivez le pour pouvoir utiliser la page des Rapports"
|
1205 |
|
1206 |
-
#:
|
1207 |
-
msgid ""
|
1208 |
-
"
|
1209 |
-
"settings you set in the Lite version, you can safely <a "
|
1210 |
-
"href=\"%s\">deactivate it now</a>."
|
1211 |
-
msgstr "<strong>Bienvenue dans MailChimp pour Wordpress Pro !</strong> Nous avons repris les paramètres que vous aviez mis en place dans la version gratuite, vous pouvez donc maintenant <a href=\"%s\">désactiver</a> la version Lite en toute sécurité."
|
1212 |
|
1213 |
-
#:
|
1214 |
-
msgid "
|
1215 |
-
msgstr "
|
1216 |
|
1217 |
-
#:
|
1218 |
-
msgid ""
|
1219 |
-
"
|
1220 |
-
" stylesheet or use a plugin like <em>%s</em>."
|
1221 |
-
msgstr ""
|
1222 |
|
1223 |
-
#:
|
1224 |
-
msgid "
|
1225 |
-
msgstr "
|
1226 |
|
1227 |
-
#:
|
1228 |
-
msgid "The
|
1229 |
-
msgstr "
|
1230 |
|
1231 |
-
#:
|
1232 |
-
msgid "
|
1233 |
-
msgstr "
|
1234 |
|
1235 |
-
#:
|
1236 |
-
msgid ""
|
1237 |
-
"
|
1238 |
-
" correct form ID."
|
1239 |
-
msgstr "<strong>Erreur :</strong> Formulaire d'inscription non trouvé. Veuillez vérifier que vous utilisez le bon ID de formulaire."
|
1240 |
|
1241 |
-
#:
|
1242 |
-
msgid "
|
1243 |
-
msgstr "
|
1244 |
|
1245 |
-
#:
|
1246 |
-
msgid "
|
1247 |
-
msgstr "
|
1248 |
|
1249 |
-
#:
|
1250 |
-
msgid "
|
1251 |
-
msgstr "
|
1252 |
|
1253 |
-
#:
|
1254 |
-
msgid "
|
1255 |
-
msgstr "
|
1256 |
|
1257 |
-
#:
|
1258 |
-
|
1259 |
-
|
1260 |
-
msgstr "Liste"
|
1261 |
|
1262 |
-
#:
|
1263 |
-
msgid "
|
1264 |
-
msgstr "
|
1265 |
|
1266 |
-
#:
|
1267 |
msgid ""
|
1268 |
-
"
|
1269 |
-
"
|
1270 |
-
"
|
1271 |
-
msgstr "Notez que vous avez activé le double validation pour le formulaire \\\"%s\\\". L'utilisateur de sera pas ajouté à la liste MailChimp sélectionnée jusqu'à ce qu'il confirme son adresse e-mail."
|
1272 |
|
1273 |
-
#:
|
1274 |
-
msgid "
|
1275 |
-
msgstr "
|
1276 |
|
1277 |
-
#:
|
1278 |
-
msgid "
|
1279 |
-
msgstr "
|
1280 |
|
1281 |
-
#:
|
1282 |
-
msgid "
|
1283 |
-
msgstr "
|
1284 |
|
1285 |
-
#:
|
1286 |
-
msgid ""
|
1287 |
-
"
|
1288 |
-
"href=\"%s\">widget settings</a>."
|
1289 |
-
msgstr "Veuillez selectionner le formulaire d'inscription que vous souhaitez montrer ici dans les <a href=\\\"%s\\\">paramètres de widgets</a>."
|
1290 |
|
1291 |
-
#:
|
1292 |
-
msgid "
|
1293 |
-
msgstr "
|
1294 |
|
1295 |
-
#:
|
1296 |
-
msgid "
|
1297 |
-
msgstr "
|
1298 |
|
1299 |
-
#:
|
1300 |
-
msgid "
|
1301 |
-
msgstr "
|
1302 |
|
1303 |
-
#:
|
1304 |
-
msgid ""
|
1305 |
-
|
1306 |
-
"inbox to confirm."
|
1307 |
-
msgstr "Merci, votre inscription a réussi! Veuillez regarder votre boite email, et cliquez sur le lien de confirmation."
|
1308 |
|
1309 |
-
#:
|
1310 |
-
|
1311 |
-
|
|
|
|
|
|
|
1312 |
|
1313 |
-
#:
|
1314 |
-
msgid ""
|
1315 |
-
"
|
1316 |
-
"able to get %s updates. Please add %s to %s."
|
1317 |
-
msgstr "<b>Attention</b> Vous avez bloquez les requêtes externes, ce qui implique que vous ne serez pas en mesure d'optenir les mises à jours de %s, Veuillez ajouter %s de %s."
|
1318 |
|
1319 |
-
#:
|
1320 |
-
msgid "
|
1321 |
-
msgstr "
|
1322 |
|
1323 |
-
#:
|
1324 |
-
msgid "
|
1325 |
-
msgstr "
|
1326 |
|
1327 |
-
#:
|
1328 |
-
msgid "
|
1329 |
-
msgstr "
|
1330 |
|
1331 |
-
#:
|
1332 |
-
msgid ""
|
1333 |
-
|
1334 |
-
" it?</a>"
|
1335 |
-
msgstr "<a href=\"%s\">Votre licence expire dans %d jours, Voulez-vous vous réengager ?</a>"
|
1336 |
|
1337 |
-
#:
|
1338 |
-
|
1339 |
-
|
1340 |
-
|
1341 |
-
msgstr "Vous avez atteint votre limite d'activation . Vous devez <a href=\"%s\"> réinitialiser </a> ou <a href=\"%s\"> mettre à jour votre </a> licence pour utiliser le plugin sur ce site ."
|
1342 |
|
1343 |
-
#:
|
1344 |
msgid ""
|
1345 |
-
"
|
1346 |
-
"
|
1347 |
-
msgstr "
|
1348 |
|
1349 |
-
#:
|
1350 |
-
msgid "
|
1351 |
-
msgstr "
|
1352 |
|
1353 |
-
#:
|
1354 |
-
msgid "
|
1355 |
-
msgstr "
|
1356 |
|
1357 |
-
#:
|
1358 |
-
|
1359 |
-
|
1360 |
-
msgid ""
|
1361 |
-
"Your plugin license has expired. You will no longer have access to plugin "
|
1362 |
-
"updates unless you <a href=\"%s\">renew your license</a>."
|
1363 |
-
msgstr "Votre licence a expiré. Vous n'aurez plus accés aux mises à jour sauf si vous <a href=\"%s\">renouvelez votre licence</a>"
|
1364 |
-
|
1365 |
-
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:264
|
1366 |
-
msgid "Failed to deactivate your %s license."
|
1367 |
-
msgstr "La désactivation de votre %s licence a echoué"
|
1368 |
|
1369 |
-
#:
|
1370 |
-
msgid "
|
1371 |
-
msgstr "
|
1372 |
|
1373 |
-
#:
|
1374 |
-
msgid "
|
1375 |
-
msgstr "
|
1376 |
|
1377 |
-
#:
|
1378 |
msgid ""
|
1379 |
-
"
|
1380 |
-
"
|
1381 |
-
msgstr "
|
1382 |
|
1383 |
-
#:
|
1384 |
-
|
1385 |
-
"
|
1386 |
-
msgstr "
|
|
|
|
|
|
|
|
|
1387 |
|
1388 |
-
#:
|
1389 |
msgid ""
|
1390 |
-
"
|
1391 |
-
"
|
1392 |
-
msgstr "
|
1393 |
|
1394 |
-
#:
|
1395 |
-
msgid "
|
1396 |
-
msgstr "
|
1397 |
|
1398 |
-
#:
|
1399 |
-
msgid "
|
1400 |
-
msgstr "
|
1401 |
|
1402 |
-
#:
|
1403 |
-
msgid "
|
1404 |
-
msgstr "
|
1405 |
|
1406 |
-
#:
|
1407 |
-
msgid "
|
1408 |
-
msgstr "
|
1409 |
|
1410 |
-
#:
|
1411 |
-
|
1412 |
-
|
1413 |
-
msgstr "vous ne recevez <strong>pas</strong> de mise à jour"
|
1414 |
|
1415 |
-
#:
|
1416 |
-
msgid "
|
1417 |
-
msgstr "
|
1418 |
|
1419 |
-
#:
|
1420 |
-
msgid "
|
1421 |
-
msgstr "
|
1422 |
|
1423 |
-
#:
|
1424 |
-
msgid "
|
1425 |
-
msgstr "
|
1426 |
|
1427 |
-
#:
|
1428 |
-
msgid ""
|
1429 |
-
"
|
1430 |
-
msgstr "(En désactivant votre License, vous pourrez réutiliser votre licence sur un autre site wordpress)"
|
1431 |
|
1432 |
-
#:
|
1433 |
-
msgid "
|
1434 |
-
msgstr "
|
1435 |
|
1436 |
-
#:
|
1437 |
-
msgid "
|
1438 |
-
msgstr "
|
1439 |
|
1440 |
-
#:
|
1441 |
-
msgid "
|
1442 |
-
|
|
|
|
|
1443 |
|
1444 |
-
#:
|
1445 |
-
msgid "
|
1446 |
-
msgstr "
|
1447 |
|
1448 |
-
#:
|
1449 |
-
msgid "
|
1450 |
-
msgstr "
|
1451 |
|
1452 |
-
#:
|
1453 |
-
msgid "
|
1454 |
-
msgstr "
|
1455 |
|
1456 |
-
#:
|
1457 |
-
msgid "
|
1458 |
-
msgstr "
|
1459 |
|
1460 |
-
#:
|
1461 |
-
|
1462 |
-
|
1463 |
-
|
1464 |
-
msgstr "
|
1465 |
|
1466 |
-
#:
|
1467 |
-
msgid "
|
1468 |
-
msgstr "
|
1469 |
|
1470 |
-
#:
|
1471 |
-
msgid "
|
1472 |
-
msgstr "
|
1473 |
|
1474 |
-
#:
|
1475 |
-
msgid "
|
1476 |
-
|
|
|
|
|
1477 |
|
1478 |
-
#:
|
1479 |
-
|
1480 |
-
|
1481 |
-
msgstr "Modifier le formulaire"
|
1482 |
|
1483 |
-
#:
|
1484 |
-
|
1485 |
-
|
1486 |
-
msgstr "Supprimer"
|
1487 |
-
|
1488 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:137
|
1489 |
-
msgid "No MailChimp list(s) selected yet."
|
1490 |
-
msgstr "Aucun liste(s) MailChimp est sélectionnée(s)."
|
1491 |
-
|
1492 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:147
|
1493 |
-
msgid "You have not created any sign-up forms yet. Time to do so!"
|
1494 |
-
msgstr "Vous n'avez pas encore créé de formulaire d'inscription, c'est le moment de le faire !"
|
1495 |
-
|
1496 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:46
|
1497 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:15
|
1498 |
-
msgid "Log"
|
1499 |
-
msgstr "Journal"
|
1500 |
-
|
1501 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:47
|
1502 |
-
msgid "Log Items"
|
1503 |
-
msgstr "Eléments de log"
|
1504 |
-
|
1505 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:76
|
1506 |
-
msgid "Email"
|
1507 |
-
msgstr "Email"
|
1508 |
-
|
1509 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:78
|
1510 |
-
msgid "Data"
|
1511 |
-
msgstr "Donnée"
|
1512 |
-
|
1513 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:79
|
1514 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:153
|
1515 |
-
msgid "Success"
|
1516 |
-
msgstr "Reussite"
|
1517 |
-
|
1518 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:80
|
1519 |
-
msgid "Type"
|
1520 |
-
msgstr "Type"
|
1521 |
-
|
1522 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:81
|
1523 |
-
msgid "Source"
|
1524 |
-
msgstr "Source"
|
1525 |
-
|
1526 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:82
|
1527 |
-
msgid "Subscribed"
|
1528 |
-
msgstr "Inscrit"
|
1529 |
-
|
1530 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:150
|
1531 |
-
msgid "Log items deleted."
|
1532 |
-
msgstr "Entrées de journal supprimées"
|
1533 |
-
|
1534 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:324
|
1535 |
-
msgid "Registration"
|
1536 |
-
msgstr "inscription"
|
1537 |
-
|
1538 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:333
|
1539 |
-
msgid "Top Bar"
|
1540 |
-
msgstr "Barre du haut"
|
1541 |
-
|
1542 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
|
1543 |
-
msgid "MultiSite registration"
|
1544 |
-
msgstr "Inscription MultiSite"
|
1545 |
-
|
1546 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:354
|
1547 |
-
msgid "Contact Form 7"
|
1548 |
-
msgstr "Contact Form 7"
|
1549 |
-
|
1550 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:358
|
1551 |
-
msgid "bbPress: New Topic"
|
1552 |
-
msgstr "bbPress: Nouveau sujet"
|
1553 |
-
|
1554 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:362
|
1555 |
-
msgid "bbPress: New Reply"
|
1556 |
-
msgstr "bbPress: Nouvelle réponse"
|
1557 |
-
|
1558 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:368
|
1559 |
-
msgid "Other Form"
|
1560 |
-
msgstr "Autre formulaire"
|
1561 |
-
|
1562 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:434
|
1563 |
-
msgid "No subscribe requests found."
|
1564 |
-
msgstr "Aucune requête d'inscription trouvée."
|
1565 |
-
|
1566 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:456
|
1567 |
-
msgid "All"
|
1568 |
-
msgstr "Tous"
|
1569 |
-
|
1570 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:468
|
1571 |
-
msgid "Checkbox"
|
1572 |
-
msgstr "Case à cocher"
|
1573 |
-
|
1574 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:529
|
1575 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:543
|
1576 |
-
msgid "Order"
|
1577 |
-
msgstr "Ordre"
|
1578 |
-
|
1579 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:532
|
1580 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:546
|
1581 |
-
msgid "Checkout"
|
1582 |
-
msgstr "Vérification"
|
1583 |
-
|
1584 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:558
|
1585 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:565
|
1586 |
-
msgid "Comment"
|
1587 |
-
msgstr "Commentaire"
|
1588 |
-
|
1589 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:558
|
1590 |
-
msgid "deleted"
|
1591 |
-
msgstr "Supprimé"
|
1592 |
-
|
1593 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:8
|
1594 |
-
msgid ""
|
1595 |
-
"Any settings you specify here will override the <a href=\"%s\">general form "
|
1596 |
-
"settings</a>. If no setting is specified, the corresponding general setting "
|
1597 |
-
"value will be used."
|
1598 |
-
msgstr "Tous les paramètres que vous spécifiez ici, écraseront les <a href=\"%s\">paramètres du formulaire général</a>. Si aucun paramètre n'est spécifié, la valeur par défaut correspondante sera utilisée."
|
1599 |
-
|
1600 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:25
|
1601 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:45
|
1602 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:64
|
1603 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:83
|
1604 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:106
|
1605 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:124
|
1606 |
-
msgid "Inherit"
|
1607 |
-
msgstr "hérite"
|
1608 |
-
|
1609 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:137
|
1610 |
-
msgid "Send an email copy of the form data?"
|
1611 |
-
msgstr "Voulez-vous envoyez une copie des données du formulaire par email ?"
|
1612 |
-
|
1613 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:141
|
1614 |
-
msgid ""
|
1615 |
-
"Tick \"yes\" if you want to receive an email with the form data for every "
|
1616 |
-
"sign-up request."
|
1617 |
-
msgstr "Cocher \"oui\" si vous souhaitez recevoir pour chaque enregistrement réussi, un email contenant les donnée de l'enregistrement"
|
1618 |
|
1619 |
-
#:
|
1620 |
-
msgid "
|
1621 |
-
msgstr "
|
1622 |
|
1623 |
-
#:
|
1624 |
-
msgid "
|
1625 |
-
|
|
|
|
|
1626 |
|
1627 |
-
#:
|
1628 |
-
msgid "
|
1629 |
-
msgstr "
|
1630 |
|
1631 |
-
#:
|
1632 |
-
msgid "
|
1633 |
-
|
|
|
|
|
1634 |
|
1635 |
-
#:
|
1636 |
-
msgid "
|
1637 |
-
msgstr ""
|
1638 |
|
1639 |
-
#:
|
1640 |
-
msgid "
|
1641 |
-
msgstr "
|
1642 |
|
1643 |
-
#:
|
1644 |
-
msgid ""
|
1645 |
-
|
1646 |
-
" is sent."
|
1647 |
-
msgstr "Sélectionner \"oui\" si vous souhaitez mettre à jour la liste des abonnés avec les données envoyées"
|
1648 |
|
1649 |
-
#:
|
1650 |
msgid ""
|
1651 |
-
"
|
1652 |
-
"
|
1653 |
-
msgstr "
|
1654 |
|
1655 |
-
#:
|
1656 |
-
msgid "
|
1657 |
-
msgstr "
|
1658 |
|
1659 |
-
#:
|
1660 |
msgid ""
|
1661 |
-
"
|
1662 |
-
"
|
1663 |
-
msgstr "
|
|
|
|
|
|
|
|
|
1664 |
|
1665 |
-
#:
|
1666 |
-
msgid "
|
1667 |
-
msgstr "
|
1668 |
|
1669 |
-
#:
|
1670 |
-
msgid "
|
1671 |
-
msgstr "
|
1672 |
|
1673 |
-
#:
|
1674 |
-
msgid "
|
1675 |
-
msgstr "
|
1676 |
|
1677 |
-
#:
|
1678 |
-
|
1679 |
-
|
|
|
1680 |
|
1681 |
-
#:
|
1682 |
msgid ""
|
1683 |
-
"
|
1684 |
-
"
|
1685 |
-
msgstr ""
|
1686 |
|
1687 |
-
#:
|
1688 |
-
msgid ""
|
1689 |
-
"
|
1690 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1691 |
|
1692 |
-
#:
|
1693 |
-
|
1694 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1695 |
|
1696 |
-
#:
|
|
|
1697 |
msgid ""
|
1698 |
-
"
|
1699 |
-
"
|
1700 |
-
"
|
1701 |
-
|
|
|
|
|
|
|
1702 |
|
1703 |
-
#:
|
|
|
1704 |
msgid ""
|
1705 |
-
"
|
1706 |
-
"
|
1707 |
-
"
|
1708 |
-
msgstr ""
|
1709 |
|
1710 |
-
#:
|
1711 |
-
|
1712 |
-
|
|
|
1713 |
|
1714 |
-
#:
|
1715 |
-
#:
|
1716 |
-
msgid "
|
1717 |
-
|
|
|
|
|
1718 |
|
1719 |
-
#:
|
1720 |
-
|
1721 |
-
|
|
|
1722 |
|
1723 |
-
#:
|
1724 |
-
|
|
|
|
|
|
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#:
|
1728 |
-
|
1729 |
-
|
|
|
1730 |
|
1731 |
-
#:
|
1732 |
-
|
1733 |
-
|
1734 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:202
|
1735 |
-
msgid "px or %"
|
1736 |
-
msgstr ""
|
1737 |
|
1738 |
-
#:
|
1739 |
-
msgid "
|
1740 |
-
msgstr ""
|
1741 |
|
1742 |
-
#:
|
1743 |
-
msgid "
|
1744 |
-
msgstr ""
|
1745 |
|
1746 |
-
#:
|
1747 |
-
msgid "
|
1748 |
-
msgstr ""
|
1749 |
|
1750 |
-
#:
|
1751 |
-
msgid "
|
1752 |
-
msgstr ""
|
1753 |
|
1754 |
-
#:
|
1755 |
-
msgid "
|
|
|
|
|
1756 |
msgstr ""
|
1757 |
|
1758 |
-
#:
|
1759 |
-
#:
|
1760 |
-
|
1761 |
-
|
|
|
|
|
|
|
1762 |
|
1763 |
-
#:
|
1764 |
-
msgid "
|
1765 |
-
msgstr ""
|
1766 |
|
1767 |
-
#:
|
1768 |
-
|
1769 |
-
|
1770 |
-
msgid "Border color"
|
1771 |
-
msgstr ""
|
1772 |
|
1773 |
-
#:
|
1774 |
-
|
1775 |
-
|
1776 |
-
|
1777 |
-
msgstr ""
|
1778 |
|
1779 |
-
#:
|
1780 |
-
|
1781 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:228
|
1782 |
-
msgid "Text color"
|
1783 |
msgstr ""
|
1784 |
|
1785 |
-
#:
|
1786 |
-
|
1787 |
-
|
1788 |
-
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#:
|
1792 |
-
msgid "
|
1793 |
-
msgstr ""
|
1794 |
|
1795 |
-
#:
|
1796 |
-
msgid "
|
1797 |
-
|
|
|
|
|
1798 |
|
1799 |
-
#:
|
1800 |
-
msgid "
|
1801 |
-
msgstr ""
|
1802 |
|
1803 |
-
#:
|
1804 |
-
msgid "
|
1805 |
-
msgstr ""
|
1806 |
|
1807 |
-
#:
|
1808 |
-
msgid "
|
1809 |
-
msgstr ""
|
1810 |
|
1811 |
-
#:
|
1812 |
-
msgid "
|
1813 |
msgstr ""
|
1814 |
|
1815 |
-
#:
|
1816 |
-
msgid "
|
1817 |
-
msgstr ""
|
1818 |
|
1819 |
-
#:
|
1820 |
-
msgid "
|
1821 |
-
msgstr ""
|
1822 |
|
1823 |
-
#:
|
1824 |
-
msgid "
|
1825 |
-
msgstr ""
|
1826 |
|
1827 |
-
#:
|
1828 |
-
|
1829 |
-
|
1830 |
-
msgstr ""
|
1831 |
|
1832 |
-
#:
|
1833 |
-
|
1834 |
-
|
|
|
1835 |
msgstr ""
|
1836 |
|
1837 |
-
#:
|
1838 |
-
|
1839 |
-
|
|
|
|
|
|
|
1840 |
msgstr ""
|
1841 |
|
1842 |
-
#:
|
1843 |
-
msgid "
|
1844 |
-
msgstr ""
|
1845 |
|
1846 |
-
#:
|
1847 |
-
msgid "
|
1848 |
-
msgstr ""
|
1849 |
|
1850 |
-
#:
|
1851 |
-
msgid "
|
1852 |
-
msgstr ""
|
1853 |
|
1854 |
-
#:
|
1855 |
-
|
1856 |
-
|
|
|
1857 |
msgstr ""
|
1858 |
|
1859 |
-
#:
|
1860 |
-
msgid "
|
1861 |
msgstr ""
|
1862 |
|
1863 |
-
#:
|
1864 |
-
msgid "
|
1865 |
msgstr ""
|
1866 |
|
1867 |
-
#:
|
1868 |
-
msgid "
|
1869 |
-
msgstr ""
|
1870 |
|
1871 |
-
#:
|
1872 |
-
msgid "
|
1873 |
-
msgstr ""
|
1874 |
|
1875 |
-
#:
|
1876 |
-
msgid "
|
1877 |
-
msgstr ""
|
1878 |
|
1879 |
-
#:
|
1880 |
-
msgid "
|
1881 |
-
msgstr ""
|
1882 |
|
1883 |
-
#:
|
1884 |
-
msgid "
|
1885 |
-
msgstr ""
|
1886 |
|
1887 |
-
#:
|
1888 |
-
msgid "
|
1889 |
-
msgstr ""
|
1890 |
|
1891 |
-
#:
|
1892 |
-
msgid "
|
|
|
|
|
|
|
|
|
1893 |
msgstr ""
|
1894 |
|
1895 |
-
#:
|
1896 |
msgid ""
|
1897 |
-
"
|
1898 |
-
"
|
1899 |
msgstr ""
|
1900 |
|
1901 |
-
#:
|
1902 |
-
msgid "
|
1903 |
msgstr ""
|
1904 |
|
1905 |
-
#:
|
1906 |
msgid ""
|
1907 |
-
"
|
1908 |
-
|
|
|
|
|
|
|
1909 |
|
1910 |
-
#:
|
1911 |
-
msgid "
|
1912 |
-
|
|
|
1913 |
|
1914 |
-
#:
|
1915 |
-
msgid "
|
1916 |
-
msgstr ""
|
1917 |
|
1918 |
-
#:
|
1919 |
msgid ""
|
1920 |
-
"
|
1921 |
-
"
|
|
|
1922 |
msgstr ""
|
1923 |
|
1924 |
-
#:
|
1925 |
-
msgid "
|
1926 |
-
msgstr "
|
1927 |
-
|
1928 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:298
|
1929 |
-
msgid "Delete Form Styles"
|
1930 |
-
msgstr "Supprimer les styles du formulaire"
|
1931 |
|
1932 |
-
#:
|
1933 |
-
msgid "
|
1934 |
msgstr ""
|
1935 |
|
1936 |
-
#:
|
1937 |
-
msgid "
|
1938 |
-
msgstr "
|
1939 |
|
1940 |
-
#:
|
1941 |
-
msgid "
|
1942 |
-
msgstr "
|
1943 |
|
1944 |
-
#:
|
1945 |
-
msgid "
|
1946 |
-
msgstr "
|
1947 |
|
1948 |
-
#:
|
1949 |
-
msgid ""
|
1950 |
-
"
|
1951 |
-
"\"custom form styles\". Otherwise, choose the basic formatting styles or one"
|
1952 |
-
" of the default themes."
|
1953 |
-
msgstr "Si vou %scréez une feuille de styles CSS personnalisée%s et voulez la charger, sélectionnez \\\"Styles de formulaire personnalisées\\\". Autrement, choisissez les styles basic de formatage ou l'un des thèmes par défaut."
|
1954 |
|
1955 |
-
#:
|
1956 |
-
msgid "
|
1957 |
-
msgstr "
|
1958 |
|
1959 |
-
#:
|
1960 |
-
msgid "
|
1961 |
-
msgstr "
|
1962 |
|
1963 |
-
#:
|
1964 |
-
msgid "
|
1965 |
-
|
|
|
|
|
1966 |
|
1967 |
-
#:
|
1968 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:109
|
1969 |
msgid ""
|
1970 |
-
"
|
1971 |
-
"
|
1972 |
-
msgstr "
|
1973 |
|
1974 |
-
#:
|
1975 |
-
msgid "
|
1976 |
-
msgstr "
|
1977 |
|
1978 |
-
|
1979 |
-
msgid ""
|
1980 |
-
"
|
1981 |
-
"including <code>http://</code>."
|
1982 |
-
msgstr "Laissez ce paramètre vide pour ne pas rediriger. Sinon, utilisez des URLs complètes (absolues), en incluant <code>http://</code>."
|
1983 |
-
|
1984 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:137
|
1985 |
-
msgid "Default Messages"
|
1986 |
-
msgstr "Messages par défaut"
|
1987 |
-
|
1988 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:15
|
1989 |
-
msgid "Today"
|
1990 |
-
msgstr "Aujourd'hui"
|
1991 |
-
|
1992 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:16
|
1993 |
-
msgid "Yesterday"
|
1994 |
-
msgstr "Hier"
|
1995 |
-
|
1996 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:17
|
1997 |
-
msgid "Last Week"
|
1998 |
-
msgstr "La semaine dernière"
|
1999 |
-
|
2000 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:18
|
2001 |
-
msgid "Last Month"
|
2002 |
-
msgstr "Le mois dernier"
|
2003 |
-
|
2004 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:19
|
2005 |
-
msgid "Last Quarter"
|
2006 |
-
msgstr "Le trimestre dernier"
|
2007 |
-
|
2008 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:20
|
2009 |
-
msgid "Last Year"
|
2010 |
-
msgstr "L'année dernière"
|
2011 |
-
|
2012 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:21
|
2013 |
-
msgid "Custom"
|
2014 |
-
msgstr "Personnalisé"
|
2015 |
-
|
2016 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:25
|
2017 |
-
msgid "From"
|
2018 |
-
msgstr "De la part de"
|
2019 |
-
|
2020 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:32
|
2021 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:57
|
2022 |
-
msgid "Jan"
|
2023 |
-
msgstr "Jan"
|
2024 |
-
|
2025 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:33
|
2026 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:58
|
2027 |
-
msgid "Feb"
|
2028 |
-
msgstr "Fév"
|
2029 |
-
|
2030 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:34
|
2031 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:59
|
2032 |
-
msgid "Mar"
|
2033 |
-
msgstr "Mar"
|
2034 |
-
|
2035 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:35
|
2036 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:60
|
2037 |
-
msgid "Apr"
|
2038 |
-
msgstr "Avr"
|
2039 |
-
|
2040 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:36
|
2041 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:61
|
2042 |
-
msgid "May"
|
2043 |
-
msgstr "Mai"
|
2044 |
-
|
2045 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:37
|
2046 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:62
|
2047 |
-
msgid "Jun"
|
2048 |
-
msgstr "Juin"
|
2049 |
-
|
2050 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:38
|
2051 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:63
|
2052 |
-
msgid "Jul"
|
2053 |
-
msgstr "Juillet"
|
2054 |
-
|
2055 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:39
|
2056 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:64
|
2057 |
-
msgid "Aug"
|
2058 |
-
msgstr "Août"
|
2059 |
-
|
2060 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:40
|
2061 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:65
|
2062 |
-
msgid "Sep"
|
2063 |
-
msgstr "Sept"
|
2064 |
-
|
2065 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:41
|
2066 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:66
|
2067 |
-
msgid "Oct"
|
2068 |
-
msgstr "Oct"
|
2069 |
-
|
2070 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:42
|
2071 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:67
|
2072 |
-
msgid "Nov"
|
2073 |
-
msgstr "Nov"
|
2074 |
-
|
2075 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:43
|
2076 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:68
|
2077 |
-
msgid "Dec"
|
2078 |
-
msgstr "Déc"
|
2079 |
-
|
2080 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:50
|
2081 |
-
msgid "To"
|
2082 |
-
msgstr "A"
|
2083 |
-
|
2084 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:76
|
2085 |
-
msgid "Filter"
|
2086 |
-
msgstr "Filtre"
|
2087 |
-
|
2088 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:83
|
2089 |
-
msgid "Show these lines:"
|
2090 |
-
msgstr "Montrer ces lignes :"
|
2091 |
|
2092 |
#. Plugin URI of the plugin/theme
|
2093 |
-
msgid "
|
2094 |
-
|
|
|
|
|
2095 |
|
2096 |
#. Description of the plugin/theme
|
2097 |
-
msgid "
|
2098 |
-
|
|
|
|
|
2099 |
|
2100 |
#. Author of the plugin/theme
|
2101 |
-
msgid "
|
2102 |
-
msgstr "
|
2103 |
|
2104 |
#. Author URI of the plugin/theme
|
2105 |
-
msgid "
|
2106 |
-
msgstr "
|
1 |
+
# Copyright (C) 2015 MailChimp for WordPress
|
2 |
+
# This file is distributed under the same license as the MailChimp for WordPress package.
|
3 |
# Translators:
|
4 |
# ChrisFromLafare <carnaud@free.fr>, 2014
|
5 |
# Cedric R <thorin31@gmail.com>, 2014
|
8 |
# fgerber <gerber.francois@gmail.com>, 2014
|
9 |
# François KUSZTOS <kukus___@hotmail.com>, 2014
|
10 |
# fgerber <gerber.francois@gmail.com>, 2014-2015
|
11 |
+
# Juliette Mouquod <juliette@lapinblanc.co.uk>, 2015
|
12 |
+
# Lydie Lardoux <lafelilycouturiere@gmail.com>, 2015
|
13 |
# sleininger <stef.leininger@gmail.com>, 2014
|
14 |
msgid ""
|
15 |
msgstr ""
|
16 |
"Project-Id-Version: MailChimp for WordPress\n"
|
17 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mailchimp-for-wp\n"
|
18 |
+
"POT-Creation-Date: 2015-11-30 10:15:18+00:00\n"
|
19 |
+
"PO-Revision-Date: 2015-12-09 10:12+0000\n"
|
20 |
+
"Last-Translator: Juliette Mouquod <juliette@lapinblanc.co.uk>\n"
|
21 |
"Language-Team: French (France) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/fr_FR/)\n"
|
22 |
"MIME-Version: 1.0\n"
|
23 |
"Content-Type: text/plain; charset=UTF-8\n"
|
24 |
"Content-Transfer-Encoding: 8bit\n"
|
25 |
"Language: fr_FR\n"
|
26 |
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
|
28 |
+
#: config/default-form-content.php:3
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
msgid "Email address"
|
30 |
+
msgstr "Adresse email : "
|
31 |
|
32 |
+
#: config/default-form-content.php:4
|
|
|
|
|
33 |
msgid "Your email address"
|
34 |
msgstr "Votre adresse de courrier électronique"
|
35 |
|
36 |
+
#: config/default-form-content.php:5
|
|
|
|
|
37 |
msgid "Sign up"
|
38 |
msgstr "Abonnez-vous"
|
39 |
|
40 |
+
#: config/default-form-messages.php:5
|
|
|
|
|
|
|
|
|
|
|
41 |
msgid ""
|
42 |
+
"Thank you, your sign-up request was successful! Please check your email "
|
43 |
+
"inbox to confirm."
|
44 |
+
msgstr "Merci, votre inscription a réussi! Veuillez regarder votre boite email, et cliquez sur le lien de confirmation."
|
45 |
|
46 |
+
#: config/default-form-messages.php:9
|
|
|
47 |
msgid "Oops. Something went wrong. Please try again later."
|
48 |
msgstr "Oups, une erreur s'est produite. Veuillez réessayer plus-tard "
|
49 |
|
50 |
+
#: config/default-form-messages.php:13
|
|
|
51 |
msgid "Please provide a valid email address."
|
52 |
msgstr "Veuillez fournir une adresse email valide."
|
53 |
|
54 |
+
#: config/default-form-messages.php:17
|
|
|
55 |
msgid "Given email address is already subscribed, thank you!"
|
56 |
msgstr "Cette adresse de courrier électronique est déjà inscrite, merci !"
|
57 |
|
58 |
+
#: config/default-form-messages.php:21
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
msgid "Please fill in the required fields."
|
60 |
msgstr "Veuillez remplir les champs obligatoires."
|
61 |
|
62 |
+
#: config/default-form-messages.php:25
|
|
|
63 |
msgid "You were successfully unsubscribed."
|
64 |
+
msgstr "Vous avez bien été désinscrit."
|
65 |
|
66 |
+
#: config/default-form-messages.php:29
|
|
|
67 |
msgid "Given email address is not subscribed."
|
68 |
+
msgstr "L'adresse email donnée n'est pas inscrite."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
69 |
|
70 |
+
#: config/default-form-messages.php:33
|
71 |
+
msgid "Please select at least one list."
|
72 |
+
msgstr "Veuillez sélectionner au moins une liste d'abonnement."
|
|
|
73 |
|
74 |
+
#: config/default-integration-options.php:5
|
75 |
+
msgid "Sign me up for the newsletter!"
|
76 |
+
msgstr "Inscrivez-vous pour recevoir notre lettre d'information !"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
77 |
|
78 |
+
#: includes/admin/class-admin-texts.php:62
|
79 |
+
#: includes/forms/views/edit-form.php:6
|
80 |
+
msgid "Settings"
|
81 |
+
msgstr "Paramètres"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
|
83 |
+
#: includes/admin/class-admin-texts.php:80
|
84 |
+
msgid "Documentation"
|
85 |
+
msgstr "Documentation"
|
|
|
|
|
86 |
|
87 |
+
#: includes/admin/class-admin.php:167
|
|
|
88 |
msgid ""
|
89 |
+
"Success! The cached configuration for your MailChimp lists has been renewed."
|
90 |
+
msgstr "Succès ! La configuration en cache de vos listes MailChimp a été renouvelée."
|
|
|
|
|
|
|
|
|
91 |
|
92 |
+
#: includes/admin/class-admin.php:257
|
93 |
msgid ""
|
94 |
+
"This is a pro-only feature. Please upgrade to the premium version to be able"
|
95 |
+
" to use it."
|
96 |
+
msgstr "Option réservée aux pros. Passez en version Premium pour pouvoir l'utiliser."
|
|
|
|
|
|
|
|
|
|
|
97 |
|
98 |
+
#: includes/admin/class-admin.php:323 includes/views/general-settings.php:28
|
99 |
+
msgid "MailChimp API Settings"
|
100 |
+
msgstr "Paramètres de l'API MailChimp"
|
101 |
|
102 |
+
#: includes/admin/class-admin.php:324
|
103 |
+
#: integrations/ninja-forms/class-ninja-forms.php:34
|
104 |
+
msgid "MailChimp"
|
105 |
+
msgstr "MailChimp"
|
106 |
|
107 |
+
#: includes/admin/class-ads.php:33
|
108 |
+
msgid "Upgrade to MailChimp for WordPress Pro"
|
109 |
+
msgstr "Passer à MailChimp pour WordPress Pro"
|
110 |
|
111 |
+
#: includes/admin/class-ads.php:41
|
112 |
msgid ""
|
113 |
+
"Enjoying this plugin? <a href=\"%s\">Purchase our bundle of premium "
|
114 |
+
"features</a> for an even better plugin."
|
115 |
+
msgstr "Vous aimez cette extension ? <a href=\"%s\">Achetez notre bundle d'options Premium</a> pour avoir une extension encore plus performante. "
|
|
|
|
|
|
|
|
|
116 |
|
117 |
+
#: includes/admin/class-ads.php:62
|
118 |
+
msgid "More subscribers, better newsletters."
|
119 |
+
msgstr "Plus d'abonnés, de meilleures newsletters."
|
120 |
|
121 |
+
#: includes/admin/class-ads.php:63
|
122 |
msgid ""
|
123 |
+
"Learn how to best grow your lists & write better emails by subscribing to "
|
124 |
+
"our monthly tips."
|
125 |
+
msgstr "Apprenez à développer vos listes et à écrire de meilleurs emails en vous inscrivant à nos astuces mensuelles."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
126 |
|
127 |
+
#: includes/admin/class-ads.php:66
|
128 |
+
msgid "Email Address"
|
129 |
+
msgstr "Adresse de courrier électronique"
|
|
|
|
|
|
|
|
|
130 |
|
131 |
+
#: includes/admin/class-ads.php:70
|
132 |
+
msgid "First Name"
|
133 |
+
msgstr "Prénom"
|
134 |
|
135 |
+
#: includes/admin/class-ads.php:77
|
136 |
+
msgid "Subscribe"
|
137 |
+
msgstr "Abonnez-vous"
|
138 |
|
139 |
+
#: includes/admin/class-usage-tracking.php:57
|
140 |
+
msgid "Once a month"
|
141 |
+
msgstr "1 fois par mois."
|
142 |
|
143 |
+
#: includes/admin/migrations/3.0-form-1-post-type.php:35
|
144 |
+
msgid "Default sign-up form"
|
145 |
+
msgstr "Formulaire d'inscription par défaut"
|
146 |
|
147 |
+
#: includes/class-api.php:83
|
148 |
+
msgid "Read more about common connectivity issues."
|
149 |
+
msgstr "En lire plus sur les problèmes de connectivité courants."
|
150 |
|
151 |
+
#: includes/forms/class-admin.php:71 includes/forms/class-admin.php:72
|
152 |
+
#: includes/forms/views/edit-form.php:17
|
153 |
+
msgid "Forms"
|
154 |
+
msgstr "Formulaires"
|
155 |
|
156 |
+
#: includes/forms/class-admin.php:101 includes/forms/class-admin.php:176
|
157 |
+
msgid "<strong>Success!</strong> Form successfully saved."
|
158 |
+
msgstr "<strong>Bravo!</strong> Le formulaire a été enregistré avec succès."
|
159 |
|
160 |
+
#: includes/forms/class-admin.php:176
|
161 |
+
msgid "Preview form"
|
162 |
+
msgstr "Prévisualisation du formulaire"
|
163 |
|
164 |
+
#: includes/forms/class-admin.php:279
|
165 |
+
msgid "Form not found."
|
166 |
+
msgstr "Le formulaire n'a pas été trouvé."
|
167 |
|
168 |
+
#: includes/forms/class-admin.php:281
|
169 |
+
msgid "Go back"
|
170 |
+
msgstr "Retour"
|
171 |
|
172 |
+
#: includes/forms/class-form-previewer.php:162
|
173 |
+
msgid "Form preview"
|
174 |
+
msgstr "Prévisualisation du formulaire"
|
175 |
|
176 |
+
#: includes/forms/class-form-tags.php:51
|
177 |
+
msgid "Replaced with the form response (error or success messages)."
|
178 |
+
msgstr "Remplacer avec un message de réponse (message d'erreur ou de réussite)."
|
|
|
|
|
179 |
|
180 |
+
#: includes/forms/class-form-tags.php:56
|
181 |
+
msgid "Data from the URL or a submitted form."
|
182 |
+
msgstr "Données de l\"URL ou d'un formulaire envoyé."
|
|
|
|
|
183 |
|
184 |
+
#: includes/forms/class-form-tags.php:62
|
185 |
+
#: includes/integrations/class-integration-tags.php:45
|
186 |
+
msgid "Replaced with the number of subscribers on the selected list(s)"
|
187 |
+
msgstr "Remplacé par le nombre d'abonnés de la liste sélectionnée"
|
|
|
188 |
|
189 |
+
#: includes/forms/class-form-tags.php:67
|
190 |
+
msgid "The email address of the current visitor (if known)."
|
191 |
+
msgstr "L'adresse email du visiteur actuel (si connue)."
|
|
|
|
|
|
|
192 |
|
193 |
+
#: includes/forms/class-form-tags.php:72
|
194 |
+
msgid "The URL of the page."
|
195 |
+
msgstr "L'adresse de la page"
|
196 |
|
197 |
+
#: includes/forms/class-form-tags.php:77
|
198 |
+
msgid "The path of the page."
|
199 |
+
msgstr "Le chemin de la page."
|
|
|
|
|
200 |
|
201 |
+
#: includes/forms/class-form-tags.php:82
|
202 |
+
msgid "The current date. Example: %s."
|
203 |
+
msgstr "La date actuelle. Exemple : %s."
|
204 |
|
205 |
+
#: includes/forms/class-form-tags.php:87
|
206 |
+
msgid "The current time. Example: %s."
|
207 |
+
msgstr "L'heure actuelle. Exemple : %s."
|
208 |
|
209 |
+
#: includes/forms/class-form-tags.php:92
|
210 |
+
msgid "The site's language. Example: %s."
|
211 |
+
msgstr "La langue du site. Exemple : %s."
|
212 |
|
213 |
+
#: includes/forms/class-form-tags.php:97
|
214 |
+
msgid "The visitor's IP address. Example: %s."
|
215 |
+
msgstr "L'adresse IP du visiteur. Exemple : %s"
|
|
|
|
|
216 |
|
217 |
+
#: includes/forms/class-form-tags.php:102
|
218 |
+
msgid "The property of the currently logged-in user."
|
219 |
+
msgstr "La propriété de l'utilisateur connecté."
|
220 |
|
221 |
+
#: includes/forms/class-form.php:128
|
222 |
+
msgid "There is no form with ID %d, perhaps it was deleted?"
|
223 |
+
msgstr "Aucun formulaire avec l'ID %D trouvé, peut-être qu'il a été supprimé ?"
|
224 |
|
225 |
+
#: includes/forms/class-widget.php:26
|
226 |
+
msgid "Newsletter"
|
227 |
+
msgstr "Lettre d'information"
|
228 |
|
229 |
+
#: includes/forms/class-widget.php:30
|
230 |
+
msgid "MailChimp Sign-Up Form"
|
231 |
+
msgstr "Formulaire d’enregistrement à MailChimp"
|
232 |
|
233 |
+
#: includes/forms/class-widget.php:32
|
234 |
+
msgid "Displays your MailChimp for WordPress sign-up form"
|
235 |
+
msgstr "Affiche votre formulaire d'inscription de \"MailChimp pour WordPress\""
|
|
|
236 |
|
237 |
+
#: includes/forms/class-widget.php:75
|
238 |
+
msgid "Title:"
|
239 |
+
msgstr "Titre :"
|
240 |
|
241 |
+
#: includes/forms/class-widget.php:92
|
242 |
msgid ""
|
243 |
+
"You can edit your sign-up form in the <a href=\"%s\">MailChimp for WordPress"
|
244 |
+
" form settings</a>."
|
245 |
+
msgstr "Vous pouvez éditer votre propre formulaire d'abonnement dans les paramètres des formulaires de <a href=\"%s\">MailChimp pour WordPress</a>."
|
|
|
246 |
|
247 |
+
#: includes/forms/views/add-form.php:10 includes/forms/views/add-form.php:60
|
248 |
+
msgid "Add new form"
|
249 |
+
msgstr "Ajouter un nouveau formulaire"
|
250 |
|
251 |
+
#: includes/forms/views/add-form.php:27
|
252 |
+
msgid "What is the name of this form?"
|
253 |
+
msgstr "Quel est le nom de ce formulaire?"
|
254 |
|
255 |
+
#: includes/forms/views/add-form.php:30
|
256 |
+
msgid "Enter your form title.."
|
257 |
+
msgstr "Entrez le titre de ce formulaire..."
|
258 |
|
259 |
+
#: includes/forms/views/add-form.php:37
|
260 |
+
msgid "To which MailChimp lists should this form subscribe?"
|
261 |
+
msgstr "À quelles listes MailChimp ce formulaire doit-il s'abonner ?"
|
|
|
|
|
262 |
|
263 |
+
#: includes/forms/views/add-form.php:54
|
264 |
+
msgid "No lists found. Did you <a href=\"%s\">connect with MailChimp</a>?"
|
265 |
+
msgstr "Aucune liste trouvée. Vous êtes-vous <a href=\"%s\"> connecté avec MailChimp</a> ?"
|
266 |
|
267 |
+
#: includes/forms/views/edit-form.php:4
|
268 |
+
msgid "Fields"
|
269 |
+
msgstr "Champs"
|
270 |
|
271 |
+
#: includes/forms/views/edit-form.php:5
|
272 |
+
msgid "Messages"
|
273 |
+
msgstr "Messages"
|
274 |
|
275 |
+
#: includes/forms/views/edit-form.php:7
|
276 |
+
msgid "Appearance"
|
277 |
+
msgstr "Apparence"
|
|
|
|
|
278 |
|
279 |
+
#: includes/forms/views/edit-form.php:15
|
280 |
+
#: includes/integrations/views/integration-settings.php:8
|
281 |
+
#: includes/integrations/views/integrations.php:7
|
282 |
+
#: includes/views/general-settings.php:7
|
283 |
+
msgid "You are here: "
|
284 |
+
msgstr "Vous êtes ici :"
|
285 |
|
286 |
+
#: includes/forms/views/edit-form.php:27
|
287 |
+
msgid "Edit Form"
|
288 |
+
msgstr "Modifier le formulaire"
|
|
|
|
|
289 |
|
290 |
+
#: includes/forms/views/edit-form.php:45
|
291 |
+
msgid "Enter form title here"
|
292 |
+
msgstr "Entrez le titre du formulaire ici"
|
293 |
|
294 |
+
#: includes/forms/views/edit-form.php:46
|
295 |
+
msgid "Enter the title of your sign-up form"
|
296 |
+
msgstr "Entrez le titre de votre formulaire d'inscription"
|
297 |
|
298 |
+
#: includes/forms/views/edit-form.php:54
|
299 |
+
msgid "Get shortcode"
|
300 |
+
msgstr "Obtenir shortcode"
|
301 |
|
302 |
+
#: includes/forms/views/edit-form.php:59
|
303 |
+
msgid "Preview this form"
|
304 |
+
msgstr "Prévisualisez ce formulaire"
|
|
|
|
|
305 |
|
306 |
+
#: includes/forms/views/parts/add-fields-help.php:4
|
307 |
+
#: includes/forms/views/tabs/form-fields.php:10
|
308 |
+
msgid "Add more fields"
|
309 |
+
msgstr "Ajouter de nouveaux champs "
|
|
|
310 |
|
311 |
+
#: includes/forms/views/parts/add-fields-help.php:9
|
312 |
msgid ""
|
313 |
+
"To add more fields to your form, you will need to create those fields in "
|
314 |
+
"MailChimp first."
|
315 |
+
msgstr "Pour ajouter plus de champs à votre formulaire, vous devez d'abord créer ces champs dans MailChimp."
|
316 |
|
317 |
+
#: includes/forms/views/parts/add-fields-help.php:12
|
318 |
+
msgid "Here's how:"
|
319 |
+
msgstr "Voici comment :"
|
320 |
|
321 |
+
#: includes/forms/views/parts/add-fields-help.php:17
|
322 |
+
msgid "Log in to your MailChimp account."
|
323 |
+
msgstr "Connectez-vous à votre compte Mail Chimp"
|
324 |
|
325 |
+
#: includes/forms/views/parts/add-fields-help.php:22
|
326 |
+
msgid "Add list fields to any of your selected lists."
|
327 |
+
msgstr "Ajoutez les champs dans les listes sélectionnées."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
328 |
|
329 |
+
#: includes/forms/views/parts/add-fields-help.php:23
|
330 |
+
msgid "Clicking the following links will take you to the right screen."
|
331 |
+
msgstr "Cliquez sur les liens suivants pour passer à droite de l'écran."
|
332 |
|
333 |
+
#: includes/forms/views/parts/add-fields-help.php:29
|
334 |
+
msgid "Edit list fields for"
|
335 |
+
msgstr "Éditez les champs de la liste pour"
|
336 |
|
337 |
+
#: includes/forms/views/parts/add-fields-help.php:38
|
338 |
msgid ""
|
339 |
+
"Click the following button to have MailChimp for WordPress pick up on your "
|
340 |
+
"changes."
|
341 |
+
msgstr "Cliquez sur le bouton suivant pour que MailChimp for WordPress accepte vos modifications."
|
342 |
|
343 |
+
#: includes/forms/views/parts/add-fields-help.php:43
|
344 |
+
#: includes/views/parts/lists-overview.php:8
|
345 |
+
msgid "Renew MailChimp lists"
|
346 |
+
msgstr "Rafraîchir les listes MailChimp"
|
347 |
+
|
348 |
+
#: includes/forms/views/parts/dynamic-content-tags.php:6
|
349 |
+
msgid "Add dynamic form variable"
|
350 |
+
msgstr "Ajoutez la variable de formulaire dynamique"
|
351 |
|
352 |
+
#: includes/forms/views/parts/dynamic-content-tags.php:8
|
353 |
msgid ""
|
354 |
+
"The following list of variables can be used to <a href=\"%s\">add some "
|
355 |
+
"dynamic content to your form or success and error messages</a>."
|
356 |
+
msgstr "La liste suivante de variables peut servir à <a href=\"%s\">ajouter des contenus dynamiques dans votre formulaire ainsi que des messages de validation/d'erreur.</a>"
|
357 |
|
358 |
+
#: includes/forms/views/parts/dynamic-content-tags.php:8
|
359 |
+
msgid "This allows you to personalise your form or response messages."
|
360 |
+
msgstr "Cela vous permet de personnaliser votre formulaire ou les messages de réponse."
|
361 |
|
362 |
+
#: includes/forms/views/tabs/form-appearance.php:5
|
363 |
+
msgid "Inherit from %s theme"
|
364 |
+
msgstr "Hériter du thème %s"
|
365 |
|
366 |
+
#: includes/forms/views/tabs/form-appearance.php:6
|
367 |
+
msgid "Basic"
|
368 |
+
msgstr "Basique"
|
369 |
|
370 |
+
#: includes/forms/views/tabs/form-appearance.php:7
|
371 |
+
msgid "Form Themes"
|
372 |
+
msgstr "Thèmes du formulaire"
|
373 |
|
374 |
+
#: includes/forms/views/tabs/form-appearance.php:8
|
375 |
+
msgid "Light Theme"
|
376 |
+
msgstr "Thème léger"
|
|
|
377 |
|
378 |
+
#: includes/forms/views/tabs/form-appearance.php:9
|
379 |
+
msgid "Dark Theme"
|
380 |
+
msgstr "Thème sombre"
|
381 |
|
382 |
+
#: includes/forms/views/tabs/form-appearance.php:10
|
383 |
+
msgid "Red Theme"
|
384 |
+
msgstr "Thème rouge"
|
385 |
|
386 |
+
#: includes/forms/views/tabs/form-appearance.php:11
|
387 |
+
msgid "Green Theme"
|
388 |
+
msgstr "Thème vert"
|
389 |
|
390 |
+
#: includes/forms/views/tabs/form-appearance.php:12
|
391 |
+
msgid "Blue Theme"
|
392 |
+
msgstr "Thème bleu"
|
|
|
393 |
|
394 |
+
#: includes/forms/views/tabs/form-appearance.php:25
|
395 |
+
msgid "Form Appearance"
|
396 |
+
msgstr "Apparence du Formulaire"
|
397 |
|
398 |
+
#: includes/forms/views/tabs/form-appearance.php:29
|
399 |
+
msgid "Form Style"
|
400 |
+
msgstr "Style du Formulaire"
|
401 |
|
402 |
+
#: includes/forms/views/tabs/form-appearance.php:48
|
403 |
+
msgid ""
|
404 |
+
"If you want to load some default CSS styles, select \"basic formatting "
|
405 |
+
"styles\" or choose one of the color themes"
|
406 |
+
msgstr "Si vous voulez charger un style CSS par défaut, selectionnez \"styles de formatage basiques\" ou choisissez un des thèmes couleurs."
|
407 |
|
408 |
+
#: includes/forms/views/tabs/form-fields.php:6
|
409 |
+
msgid "Form variables"
|
410 |
+
msgstr "Variables de formulaire"
|
411 |
|
412 |
+
#: includes/forms/views/tabs/form-fields.php:13
|
413 |
+
msgid "Form Fields"
|
414 |
+
msgstr "Champs du formulaire"
|
415 |
|
416 |
+
#: includes/forms/views/tabs/form-fields.php:19
|
417 |
+
msgid "Enter the HTML code for your form fields.."
|
418 |
+
msgstr "Entrez le code HTML pour vos champs de formulaire..."
|
419 |
|
420 |
+
#: includes/forms/views/tabs/form-fields.php:27
|
421 |
+
msgid "Your form is missing the following (required) form fields:"
|
422 |
+
msgstr "Il manque à votre formulaire les champs obligatoires suivants :"
|
423 |
|
424 |
+
#: includes/forms/views/tabs/form-fields.php:34
|
425 |
+
msgid ""
|
426 |
+
"Use the shortcode %s to display this form inside a post, page or text "
|
427 |
+
"widget."
|
428 |
+
msgstr "Utilisez le shortcode %s pour afficher ce formulaire dans vos billet, page ou widget avec texte"
|
429 |
|
430 |
+
#: includes/forms/views/tabs/form-messages.php:3
|
431 |
+
msgid "Form Messages"
|
432 |
+
msgstr "Messages du formulaire"
|
433 |
|
434 |
+
#: includes/forms/views/tabs/form-messages.php:10
|
435 |
+
msgid "Successfully subscribed"
|
436 |
+
msgstr "Inscrit avec succès"
|
437 |
|
438 |
+
#: includes/forms/views/tabs/form-messages.php:13
|
439 |
+
msgid ""
|
440 |
+
"The text that shows when an email address is successfully subscribed to the "
|
441 |
+
"selected list(s)."
|
442 |
+
msgstr "Le texte qui apparaît quand l'adresse email est bien inscrite dans la liste ou les listes choisie(s)."
|
443 |
|
444 |
+
#: includes/forms/views/tabs/form-messages.php:17
|
445 |
+
msgid "Invalid email address"
|
446 |
+
msgstr "Adresse email invalide"
|
|
|
447 |
|
448 |
+
#: includes/forms/views/tabs/form-messages.php:20
|
449 |
+
msgid "The text that shows when an invalid email address is given."
|
450 |
+
msgstr "Le texte qui apparaît quand une adresse email invalide est donnée."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
451 |
|
452 |
+
#: includes/forms/views/tabs/form-messages.php:24
|
453 |
+
msgid "Required field missing"
|
454 |
+
msgstr "Vous avez oublié de remplir un champs obligatoire. "
|
455 |
|
456 |
+
#: includes/forms/views/tabs/form-messages.php:27
|
457 |
+
msgid ""
|
458 |
+
"The text that shows when a required field for the selected list(s) is "
|
459 |
+
"missing."
|
460 |
+
msgstr "Le texte qui apparaît quand un champ demandé dans la liste ou les listes choisie(s) est manquant."
|
461 |
|
462 |
+
#: includes/forms/views/tabs/form-messages.php:31
|
463 |
+
msgid "Already subscribed"
|
464 |
+
msgstr "Déjà inscrit"
|
465 |
|
466 |
+
#: includes/forms/views/tabs/form-messages.php:34
|
467 |
+
msgid ""
|
468 |
+
"The text that shows when the given email is already subscribed to the "
|
469 |
+
"selected list(s)."
|
470 |
+
msgstr "Le texte qui apparaît quand l'adresse email donnée est déjà inscrite dans la liste ou les listes choisie(s)."
|
471 |
|
472 |
+
#: includes/forms/views/tabs/form-messages.php:38
|
473 |
+
msgid "General error"
|
474 |
+
msgstr "Erreur générale"
|
475 |
|
476 |
+
#: includes/forms/views/tabs/form-messages.php:41
|
477 |
+
msgid "The text that shows when a general error occured."
|
478 |
+
msgstr "Le texte qui apparaît quand une erreur général apparait."
|
479 |
|
480 |
+
#: includes/forms/views/tabs/form-messages.php:45
|
481 |
+
msgid "Unsubscribed"
|
482 |
+
msgstr "désabonné"
|
|
|
|
|
483 |
|
484 |
+
#: includes/forms/views/tabs/form-messages.php:48
|
485 |
msgid ""
|
486 |
+
"When using the unsubscribe method, this is the text that shows when the "
|
487 |
+
"given email address is successfully unsubscribed from the selected list(s)."
|
488 |
+
msgstr "Quand vous utilisez la méthode Désabonnement, c'est ce texte qui s'affiche quand l'adresse email est désabonnée de la ou les liste(s) sélectionnée(s)."
|
489 |
|
490 |
+
#: includes/forms/views/tabs/form-messages.php:52
|
491 |
+
msgid "Not subscribed"
|
492 |
+
msgstr "Non inscrit"
|
493 |
|
494 |
+
#: includes/forms/views/tabs/form-messages.php:55
|
495 |
msgid ""
|
496 |
+
"When using the unsubscribe method, this is the text that shows when the "
|
497 |
+
"given email address is not on the selected list(s)."
|
498 |
+
msgstr "Quand vous utilisez la méthode Désabonnement, c'est ce texte qui s'affiche quand l'adresse email n'est pas dans la ou les liste(s) sélectionnée(s)."
|
499 |
+
|
500 |
+
#: includes/forms/views/tabs/form-messages.php:64
|
501 |
+
msgid "HTML tags like %s are allowed in the message fields."
|
502 |
+
msgstr "Les balises HTML tel que %s sont acceptées dans les champs."
|
503 |
|
504 |
+
#: includes/forms/views/tabs/form-settings.php:1
|
505 |
+
msgid "Form Settings"
|
506 |
+
msgstr "Paramètres du formulaire"
|
507 |
|
508 |
+
#: includes/forms/views/tabs/form-settings.php:5
|
509 |
+
msgid "MailChimp specific settings"
|
510 |
+
msgstr "Paramètres spécifiques de MailChimp"
|
511 |
|
512 |
+
#: includes/forms/views/tabs/form-settings.php:12
|
513 |
+
msgid "Lists this form subscribes to"
|
514 |
+
msgstr "Listes auxquelles ce formulaire permet de s'inscrire"
|
515 |
|
516 |
+
#: includes/forms/views/tabs/form-settings.php:15
|
517 |
+
#: includes/integrations/views/integration-settings.php:93
|
518 |
+
msgid "No lists found, <a href=\"%s\">are you connected to MailChimp</a>?"
|
519 |
+
msgstr "Aucune liste trouvée, <a href=\"%s\">êtes-vous connecté à MaiChimp</a> ?"
|
520 |
|
521 |
+
#: includes/forms/views/tabs/form-settings.php:29
|
522 |
msgid ""
|
523 |
+
"Select the list(s) to which people who submit this form should be "
|
524 |
+
"subscribed."
|
525 |
+
msgstr "Sélectionnez la liste(s) à laquelle, les utilisateurs seront inscrits une fois le formulaire validé."
|
526 |
|
527 |
+
#: includes/forms/views/tabs/form-settings.php:35
|
528 |
+
msgid "Use double opt-in?"
|
529 |
+
msgstr "Utiliser le double opt-in ?"
|
530 |
+
|
531 |
+
#: includes/forms/views/tabs/form-settings.php:39
|
532 |
+
#: includes/forms/views/tabs/form-settings.php:54
|
533 |
+
#: includes/forms/views/tabs/form-settings.php:69
|
534 |
+
#: includes/forms/views/tabs/form-settings.php:85
|
535 |
+
#: includes/forms/views/tabs/form-settings.php:115
|
536 |
+
#: includes/integrations/views/integration-settings.php:53
|
537 |
+
#: includes/integrations/views/integration-settings.php:66
|
538 |
+
#: includes/integrations/views/integration-settings.php:117
|
539 |
+
#: includes/integrations/views/integration-settings.php:129
|
540 |
+
#: includes/integrations/views/integration-settings.php:142
|
541 |
+
#: includes/integrations/views/integration-settings.php:163
|
542 |
+
#: includes/integrations/views/integration-settings.php:180
|
543 |
+
#: includes/integrations/views/integration-settings.php:199
|
544 |
+
#: integrations/contact-form-7/class-contact-form-7.php:69
|
545 |
+
msgid "Yes"
|
546 |
+
msgstr "Oui"
|
547 |
|
548 |
+
#: includes/forms/views/tabs/form-settings.php:43
|
549 |
+
#: includes/forms/views/tabs/form-settings.php:58
|
550 |
+
#: includes/forms/views/tabs/form-settings.php:73
|
551 |
+
#: includes/forms/views/tabs/form-settings.php:89
|
552 |
+
#: includes/forms/views/tabs/form-settings.php:119
|
553 |
+
#: includes/integrations/views/integration-settings.php:54
|
554 |
+
#: includes/integrations/views/integration-settings.php:67
|
555 |
+
#: includes/integrations/views/integration-settings.php:118
|
556 |
+
#: includes/integrations/views/integration-settings.php:130
|
557 |
+
#: includes/integrations/views/integration-settings.php:146
|
558 |
+
#: includes/integrations/views/integration-settings.php:167
|
559 |
+
#: includes/integrations/views/integration-settings.php:184
|
560 |
+
#: includes/integrations/views/integration-settings.php:203
|
561 |
+
#: integrations/contact-form-7/class-contact-form-7.php:69
|
562 |
+
msgid "No"
|
563 |
+
msgstr "Non"
|
564 |
|
565 |
+
#: includes/forms/views/tabs/form-settings.php:45
|
566 |
+
#: includes/integrations/views/integration-settings.php:149
|
567 |
msgid ""
|
568 |
+
"Select \"yes\" if you want people to confirm their email address before "
|
569 |
+
"being subscribed (recommended)"
|
570 |
+
msgstr "Sélectionnez \"oui\" si vous souhaitez que vos membres soient obligés de confirmer leur email après s’être inscrit (recommandé)"
|
571 |
+
|
572 |
+
#: includes/forms/views/tabs/form-settings.php:50
|
573 |
+
msgid "Send final welcome email?"
|
574 |
+
msgstr "Voulez-vous envoyer un dernier email de bienvenue?"
|
575 |
|
576 |
+
#: includes/forms/views/tabs/form-settings.php:60
|
577 |
+
#: includes/integrations/views/integration-settings.php:169
|
578 |
msgid ""
|
579 |
+
"Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
|
580 |
+
"succeeds (only when double opt-in is disabled)."
|
581 |
+
msgstr "Choisissez \"oui\" si vous voulez envoyer à vos listes un email de bienvenue suite à une inscription réussie (uniquement si la double validation est désactivée)."
|
|
|
582 |
|
583 |
+
#: includes/forms/views/tabs/form-settings.php:65
|
584 |
+
#: includes/integrations/views/integration-settings.php:176
|
585 |
+
msgid "Update existing subscribers?"
|
586 |
+
msgstr "Voulez-vous que les données des internautes déjà inscrit soit mise à jour ?"
|
587 |
|
588 |
+
#: includes/forms/views/tabs/form-settings.php:75
|
589 |
+
#: includes/integrations/views/integration-settings.php:186
|
590 |
+
msgid ""
|
591 |
+
"Select \"yes\" if you want to update existing subscribers with the data that"
|
592 |
+
" is sent."
|
593 |
+
msgstr "Sélectionner \"oui\" si vous souhaitez mettre à jour la liste des abonnés avec les données envoyées"
|
594 |
|
595 |
+
#: includes/forms/views/tabs/form-settings.php:81
|
596 |
+
#: includes/integrations/views/integration-settings.php:195
|
597 |
+
msgid "Replace interest groups?"
|
598 |
+
msgstr "Remplacer les groupes d'intérêt"
|
599 |
|
600 |
+
#: includes/forms/views/tabs/form-settings.php:92
|
601 |
+
#: includes/integrations/views/integration-settings.php:206
|
602 |
+
msgid ""
|
603 |
+
"Select \"no\" if you want to add the selected groupings to any previously "
|
604 |
+
"selected groupings when updating a subscriber."
|
605 |
msgstr ""
|
606 |
|
607 |
+
#: includes/forms/views/tabs/form-settings.php:93
|
608 |
+
#: includes/integrations/views/integration-settings.php:207
|
609 |
+
msgid "What does this do?"
|
610 |
+
msgstr "Qu'est ce que cela fait?"
|
611 |
|
612 |
+
#: includes/forms/views/tabs/form-settings.php:104
|
613 |
+
msgid "Form behaviour"
|
614 |
+
msgstr "Comportement du formulaire"
|
|
|
|
|
|
|
615 |
|
616 |
+
#: includes/forms/views/tabs/form-settings.php:111
|
617 |
+
msgid "Hide form after a successful sign-up?"
|
618 |
+
msgstr "Voulez vous cacher le formulaire après un enregistrement réussi ?"
|
619 |
|
620 |
+
#: includes/forms/views/tabs/form-settings.php:122
|
621 |
+
msgid "Select \"yes\" to hide the form fields after a successful sign-up."
|
622 |
+
msgstr "Sélectionnez \"oui\" afin de cacher les champs du formulaire après un enregistrement réussi."
|
623 |
|
624 |
+
#: includes/forms/views/tabs/form-settings.php:127
|
625 |
+
msgid "Redirect to URL after successful sign-ups"
|
626 |
+
msgstr "redirection vers une URL après une inscription réussite."
|
627 |
|
628 |
+
#: includes/forms/views/tabs/form-settings.php:129
|
629 |
+
msgid "Example: %s"
|
630 |
+
msgstr "Exemple : %s"
|
631 |
|
632 |
+
#: includes/forms/views/tabs/form-settings.php:130
|
633 |
+
msgid ""
|
634 |
+
"Leave empty or enter <code>0</code> for no redirect. Otherwise, use complete"
|
635 |
+
" (absolute) URLs, including <code>http://</code>."
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: includes/integrations/class-admin.php:79
|
639 |
+
#: includes/integrations/class-admin.php:80
|
640 |
+
#: includes/integrations/views/integration-settings.php:10
|
641 |
+
#: includes/integrations/views/integrations.php:9
|
642 |
+
#: includes/integrations/views/integrations.php:17
|
643 |
+
msgid "Integrations"
|
644 |
+
msgstr "Intégrations"
|
645 |
|
646 |
+
#: includes/integrations/views/integration-settings.php:20
|
647 |
+
msgid "%s integration"
|
648 |
+
msgstr "Intégration %s "
|
649 |
|
650 |
+
#: includes/integrations/views/integration-settings.php:51
|
651 |
+
msgid "Enabled?"
|
652 |
+
msgstr "Incapable?"
|
|
|
|
|
653 |
|
654 |
+
#: includes/integrations/views/integration-settings.php:55
|
655 |
+
msgid ""
|
656 |
+
"Enable the %s integration? This will add a sign-up checkbox to the form."
|
657 |
+
msgstr "Activer l'intégration %s ? Cela ajoutera une case Inscription au formulaire"
|
|
|
658 |
|
659 |
+
#: includes/integrations/views/integration-settings.php:64
|
660 |
+
msgid "Implicit?"
|
|
|
|
|
661 |
msgstr ""
|
662 |
|
663 |
+
#: includes/integrations/views/integration-settings.php:68
|
664 |
+
msgid ""
|
665 |
+
"Select \"no\" if you want to ask your visitors before they are subscribed "
|
666 |
+
"(recommended)."
|
667 |
msgstr ""
|
668 |
|
669 |
+
#: includes/integrations/views/integration-settings.php:78
|
670 |
+
msgid "MailChimp Lists"
|
671 |
+
msgstr "Listes MailChimp"
|
672 |
|
673 |
+
#: includes/integrations/views/integration-settings.php:89
|
674 |
+
msgid ""
|
675 |
+
"Select the list(s) to which people who check the checkbox should be "
|
676 |
+
"subscribed."
|
677 |
+
msgstr "Sélectionnez la liste(s) à laquelle les utilisateurs qui cochent la case seront inscrits."
|
678 |
|
679 |
+
#: includes/integrations/views/integration-settings.php:102
|
680 |
+
msgid "Checkbox label text"
|
681 |
+
msgstr "Texte de l'etiquette de la case à cocher"
|
682 |
|
683 |
+
#: includes/integrations/views/integration-settings.php:105
|
684 |
+
msgid "HTML tags like %s are allowed in the label text."
|
685 |
+
msgstr "Les balises HTML telles que %s sont autorisées dans le texte de l'étiquette."
|
686 |
|
687 |
+
#: includes/integrations/views/integration-settings.php:115
|
688 |
+
msgid "Pre-check the checkbox?"
|
689 |
+
msgstr "Pré-sélectionner les cases à cocher ?"
|
690 |
|
691 |
+
#: includes/integrations/views/integration-settings.php:119
|
692 |
+
msgid "Select \"yes\" if the checkbox should be pre-checked."
|
693 |
msgstr ""
|
694 |
|
695 |
+
#: includes/integrations/views/integration-settings.php:127
|
696 |
+
msgid "Load some default CSS?"
|
697 |
+
msgstr "Voulez-vous charger du code CSS par défaut ?"
|
698 |
|
699 |
+
#: includes/integrations/views/integration-settings.php:131
|
700 |
+
msgid "Select \"yes\" if the checkbox appears in a weird place."
|
701 |
+
msgstr "Sélectionner \"oui\" si la case à cocher apparaît à un endroit bizarre."
|
702 |
|
703 |
+
#: includes/integrations/views/integration-settings.php:138
|
704 |
+
msgid "Double opt-in?"
|
705 |
+
msgstr "Double opt-in (validation de l'adresse du destinataire par e-mail) ?"
|
706 |
|
707 |
+
#: includes/integrations/views/integration-settings.php:159
|
708 |
+
msgid "Send Welcome Email?"
|
709 |
+
msgstr "Voulez-vous envoyer un email de bienvenue ?"
|
|
|
710 |
|
711 |
+
#: includes/integrations/views/integration-settings.php:244
|
712 |
+
msgid ""
|
713 |
+
"The selected MailChimp lists require non-default fields, which may prevent "
|
714 |
+
"this integration from working."
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: includes/integrations/views/integration-settings.php:245
|
718 |
+
msgid ""
|
719 |
+
"Please ensure you <a href=\"%s\">configure the plugin to send all required "
|
720 |
+
"fields</a> or <a href=\"%s\">log into your MailChimp account</a> and make "
|
721 |
+
"sure only the email & name fields are marked as required fields for the "
|
722 |
+
"selected list(s)."
|
723 |
msgstr ""
|
724 |
|
725 |
+
#: includes/integrations/views/integrations.php:30
|
726 |
+
msgid "Enabled"
|
727 |
+
msgstr "Incapable"
|
728 |
|
729 |
+
#: includes/integrations/views/integrations.php:31
|
730 |
+
msgid "Name"
|
731 |
+
msgstr "Nom"
|
732 |
|
733 |
+
#: includes/integrations/views/integrations.php:32
|
734 |
+
msgid "Description"
|
735 |
+
msgstr "Description"
|
736 |
|
737 |
+
#: includes/integrations/views/integrations.php:50
|
738 |
+
msgid ""
|
739 |
+
"This integration is enabled by default as it requires manual actions to "
|
740 |
+
"work."
|
741 |
msgstr ""
|
742 |
|
743 |
+
#: includes/integrations/views/integrations.php:57
|
744 |
+
msgid "Configure this integration"
|
745 |
msgstr ""
|
746 |
|
747 |
+
#: includes/views/general-settings.php:18
|
748 |
+
msgid "General Settings"
|
749 |
msgstr ""
|
750 |
|
751 |
+
#: includes/views/general-settings.php:35
|
752 |
+
msgid "Status"
|
753 |
+
msgstr "Statut"
|
754 |
|
755 |
+
#: includes/views/general-settings.php:39
|
756 |
+
msgid "CONNECTED"
|
757 |
+
msgstr "CONNECTÉ"
|
758 |
|
759 |
+
#: includes/views/general-settings.php:41
|
760 |
+
msgid "NOT CONNECTED"
|
761 |
+
msgstr "NON CONNECTE"
|
762 |
|
763 |
+
#: includes/views/general-settings.php:48
|
764 |
+
msgid "API Key"
|
765 |
+
msgstr "Clé API"
|
766 |
|
767 |
+
#: includes/views/general-settings.php:50
|
768 |
+
msgid "Your MailChimp API key"
|
769 |
+
msgstr "Votre clé API MailChimp"
|
770 |
|
771 |
+
#: includes/views/general-settings.php:52
|
772 |
+
msgid "The API key for connecting with your MailChimp account."
|
773 |
+
msgstr "La Clef API pour vous connecter à votre compte MailChimp."
|
774 |
|
775 |
+
#: includes/views/general-settings.php:53
|
776 |
+
msgid "Get your API key here."
|
777 |
+
msgstr "Récupérez votre clé API ici."
|
778 |
+
|
779 |
+
#: includes/views/general-settings.php:65
|
780 |
+
msgid "Usage Tracking"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#: includes/views/general-settings.php:71
|
784 |
msgid ""
|
785 |
+
"Allow us to anonymously track how this plugin is used to help us make it "
|
786 |
+
"better fit your needs."
|
787 |
msgstr ""
|
788 |
|
789 |
+
#: includes/views/general-settings.php:73
|
790 |
+
msgid "This is what we track."
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: includes/views/parts/admin-footer.php:11
|
794 |
msgid ""
|
795 |
+
"MailChimp for WordPress is in need of translations. Is the plugin not "
|
796 |
+
"translated in your language or do you spot errors with the current "
|
797 |
+
"translations? Helping out is easy! Head over to <a href=\"%s\">the "
|
798 |
+
"translation project and click \"help translate\"</a>."
|
799 |
+
msgstr "MailChimp for WordPress a besoin de traductions. Le plugin n'est pas traduit dans votre langue ou vous avez localisé des erreurs dans la traduction? Nous aider est facile! Rendez vous sur <a href=\"%s\">le site de traduction du projet et cliquez sur \"help translate\"</a>"
|
800 |
|
801 |
+
#: includes/views/parts/admin-footer.php:31
|
802 |
+
msgid ""
|
803 |
+
"This plugin is not developed by or affiliated with MailChimp in any way."
|
804 |
+
msgstr "Ce plugin n'est aucunement développé ou affilié à la marque MailChimp déposée par le groupe \"The Rocket Science\"."
|
805 |
|
806 |
+
#: includes/views/parts/lists-overview.php:1
|
807 |
+
msgid "Your MailChimp Account"
|
808 |
+
msgstr "Votre compte MailChimp"
|
809 |
|
810 |
+
#: includes/views/parts/lists-overview.php:2
|
811 |
msgid ""
|
812 |
+
"The table below shows your MailChimp lists and their details. If you just "
|
813 |
+
"applied changes to your MailChimp lists, please use the following button to "
|
814 |
+
"renew the cached lists configuration."
|
815 |
msgstr ""
|
816 |
|
817 |
+
#: includes/views/parts/lists-overview.php:14
|
818 |
+
msgid "No lists were found in your MailChimp account"
|
819 |
+
msgstr "Nous n'avons pas trouvé de liste dans votre compte MailChimp"
|
|
|
|
|
|
|
|
|
820 |
|
821 |
+
#: includes/views/parts/lists-overview.php:16
|
822 |
+
msgid "A total of %d lists were found in your MailChimp account."
|
823 |
msgstr ""
|
824 |
|
825 |
+
#: includes/views/parts/lists-overview.php:21
|
826 |
+
msgid "List Name"
|
827 |
+
msgstr "Liste de noms"
|
828 |
|
829 |
+
#: includes/views/parts/lists-overview.php:22
|
830 |
+
msgid "ID"
|
831 |
+
msgstr "ID"
|
832 |
|
833 |
+
#: includes/views/parts/lists-overview.php:23
|
834 |
+
msgid "Subscribers"
|
835 |
+
msgstr "Abonnés"
|
836 |
|
837 |
+
#: includes/views/parts/lists-overview.php:45
|
838 |
+
msgid "Edit this list in MailChimp"
|
839 |
+
msgstr "Éditez cette liste dans MailChimp"
|
|
|
|
|
|
|
840 |
|
841 |
+
#: includes/views/parts/lists-overview.php:59
|
842 |
+
msgid "%s (%s) with field type %s."
|
843 |
+
msgstr ""
|
844 |
|
845 |
+
#: includes/views/parts/lists-overview.php:83
|
846 |
+
msgid "%s (ID: %s) with type %s."
|
847 |
+
msgstr ""
|
848 |
|
849 |
+
#: integrations/contact-form-7/admin-before.php:2
|
850 |
+
msgid ""
|
851 |
+
"To integrate with Contact Form 7, configure the settings below and then add "
|
852 |
+
"%s to your CF7 form mark-up."
|
853 |
+
msgstr ""
|
854 |
|
855 |
+
#: integrations/custom/admin-before.php:2
|
|
|
856 |
msgid ""
|
857 |
+
"To get a custom integration to work, include the following HTML in the form "
|
858 |
+
"you are trying to integrate with."
|
859 |
+
msgstr ""
|
860 |
|
861 |
+
#: integrations/woocommerce/class-woocommerce.php:102
|
862 |
+
msgid "Order #%d"
|
863 |
+
msgstr ""
|
864 |
|
865 |
+
#. Plugin Name of the plugin/theme
|
866 |
+
msgid "MailChimp for WordPress"
|
867 |
+
msgstr "MailChimp pour WordPress"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
868 |
|
869 |
#. Plugin URI of the plugin/theme
|
870 |
+
msgid ""
|
871 |
+
"https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-"
|
872 |
+
"wp&utm_campaign=plugins-page"
|
873 |
+
msgstr ""
|
874 |
|
875 |
#. Description of the plugin/theme
|
876 |
+
msgid ""
|
877 |
+
"MailChimp for WordPress by ibericode. Adds various highly effective sign-up "
|
878 |
+
"methods to your site."
|
879 |
+
msgstr ""
|
880 |
|
881 |
#. Author of the plugin/theme
|
882 |
+
msgid "ibericode"
|
883 |
+
msgstr ""
|
884 |
|
885 |
#. Author URI of the plugin/theme
|
886 |
+
msgid "https://ibericode.com/"
|
887 |
+
msgstr "https://ibericode.com/"
|
languages/mailchimp-for-wp-ru_RU.mo
CHANGED
Binary file
|
languages/mailchimp-for-wp-ru_RU.po
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
-
# Copyright (C) 2015
|
2 |
-
# This file is distributed under the
|
3 |
# Translators:
|
4 |
# Alex Starshyn <nudnyj@gmail.com>, 2015
|
5 |
# Al Po <digows@gmail.com>, 2015
|
@@ -9,2098 +9,878 @@
|
|
9 |
# Eugen Morozov <burateen@gmail.com>, 2015
|
10 |
# Serge Yurovsky <serge@theleftlane.com>, 2014
|
11 |
# Vadim <sfai.88@gmail.com>, 2015
|
|
|
12 |
msgid ""
|
13 |
msgstr ""
|
14 |
"Project-Id-Version: MailChimp for WordPress\n"
|
15 |
-
"Report-Msgid-Bugs-To:
|
16 |
-
"POT-Creation-Date: 2015-
|
17 |
-
"PO-Revision-Date: 2015-
|
18 |
-
"Last-Translator:
|
19 |
"Language-Team: Russian (Russia) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/ru_RU/)\n"
|
20 |
"MIME-Version: 1.0\n"
|
21 |
"Content-Type: text/plain; charset=UTF-8\n"
|
22 |
"Content-Transfer-Encoding: 8bit\n"
|
23 |
"Language: ru_RU\n"
|
24 |
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
25 |
-
|
26 |
-
|
27 |
-
"
|
28 |
-
"
|
29 |
-
|
30 |
-
|
31 |
-
"
|
32 |
-
"
|
33 |
-
|
34 |
-
|
35 |
-
|
36 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
37 |
msgid "Settings"
|
38 |
msgstr "Настройки"
|
39 |
|
40 |
-
#:
|
41 |
-
|
42 |
-
|
43 |
-
|
|
|
|
|
|
|
|
|
44 |
|
45 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
msgid "MailChimp API Settings"
|
47 |
msgstr "Настройки MailChimp API"
|
48 |
|
49 |
-
#:
|
|
|
50 |
msgid "MailChimp"
|
51 |
msgstr "MailChimp"
|
52 |
|
53 |
-
#:
|
54 |
-
|
55 |
-
|
56 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:11
|
57 |
-
msgid "Checkbox Settings"
|
58 |
-
msgstr "Настройки флажков"
|
59 |
-
|
60 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:186
|
61 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:507
|
62 |
-
msgid "Checkboxes"
|
63 |
-
msgstr "Флажки"
|
64 |
-
|
65 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:191
|
66 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:9
|
67 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:364
|
68 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:512
|
69 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:91
|
70 |
-
msgid "Form Settings"
|
71 |
-
msgstr "Настройки формы"
|
72 |
|
73 |
-
#:
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
msgstr "
|
|
|
|
|
|
|
|
|
78 |
|
79 |
-
#:
|
80 |
-
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
#:
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:286
|
96 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:610
|
97 |
-
msgid "Button text"
|
98 |
-
msgstr "Текст кнопки"
|
99 |
-
|
100 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:287
|
101 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:39
|
102 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:611
|
103 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:59
|
104 |
-
msgid "Initial value"
|
105 |
-
msgstr "Начальное значение"
|
106 |
-
|
107 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:288
|
108 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:29
|
109 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:34
|
110 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:39
|
111 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:612
|
112 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:49
|
113 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:54
|
114 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:59
|
115 |
-
msgid "(optional)"
|
116 |
-
msgstr "(не обязательно)"
|
117 |
-
|
118 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:289
|
119 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:613
|
120 |
-
msgid "Label for"
|
121 |
-
msgstr "Заголовок для"
|
122 |
-
|
123 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:290
|
124 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:614
|
125 |
-
msgid "(or leave empty)"
|
126 |
-
msgstr "(или оставьте пустым)"
|
127 |
-
|
128 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:291
|
129 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:615
|
130 |
msgid "Subscribe"
|
131 |
msgstr "Подписаться"
|
132 |
|
133 |
-
#:
|
134 |
-
|
135 |
-
|
136 |
-
msgstr "Отписаться"
|
137 |
-
|
138 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:316
|
139 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:654
|
140 |
-
msgid "Comment form"
|
141 |
-
msgstr "Форму для комментариев"
|
142 |
-
|
143 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:317
|
144 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:655
|
145 |
-
msgid "Registration form"
|
146 |
-
msgstr "Регистрационную форму"
|
147 |
-
|
148 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:321
|
149 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:659
|
150 |
-
msgid "MultiSite forms"
|
151 |
-
msgstr "мультисайтовые формы"
|
152 |
-
|
153 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:325
|
154 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:663
|
155 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:337
|
156 |
-
msgid "BuddyPress registration"
|
157 |
-
msgstr "регистрация BuddyPress"
|
158 |
-
|
159 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:333
|
160 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:337
|
161 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:671
|
162 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:675
|
163 |
-
msgid "%s checkout"
|
164 |
-
msgstr "%s оплата"
|
165 |
-
|
166 |
-
#: mailchimp-for-wordpress/includes/admin/class-admin.php:365
|
167 |
-
msgid ""
|
168 |
-
"The plugin can only fetch a maximum of 100 lists from MailChimp, only your "
|
169 |
-
"first 100 lists are shown."
|
170 |
-
msgstr "Этот плагин может загрузить с сервера MailChimp максимум 100 списков. Показаны только первые 100 ваших списков."
|
171 |
|
172 |
-
#:
|
173 |
-
|
174 |
-
|
175 |
-
msgstr "Данные загружены с сервера MailChimp"
|
176 |
|
177 |
-
#:
|
178 |
-
|
179 |
-
|
180 |
-
msgstr "Не удалось загрузить данные с сервера MailChimp, попробуйте ещё раз позднее."
|
181 |
|
182 |
-
#:
|
183 |
-
|
184 |
-
|
|
|
185 |
|
186 |
-
#:
|
187 |
-
msgid "
|
188 |
-
msgstr "
|
189 |
|
190 |
-
#:
|
191 |
-
|
192 |
-
|
193 |
-
msgstr "Рассылка"
|
194 |
|
195 |
-
#:
|
196 |
-
|
197 |
-
|
198 |
-
msgstr "Название:"
|
199 |
|
200 |
-
#:
|
201 |
-
msgid ""
|
202 |
-
|
203 |
-
" form settings</a>."
|
204 |
-
msgstr "Вы можете отредактировать вашу форму подписки в <a href=\"%s\">настройках MailChimp для WordPress</a>."
|
205 |
|
206 |
-
#:
|
207 |
-
|
208 |
-
|
209 |
-
msgid "Email address"
|
210 |
-
msgstr "Адрес Email"
|
211 |
|
212 |
-
#:
|
213 |
-
|
214 |
-
|
215 |
-
msgid "Your email address"
|
216 |
-
msgstr "Ваш адрес email"
|
217 |
|
218 |
-
#:
|
219 |
-
|
220 |
-
|
221 |
-
msgid "Sign up"
|
222 |
-
msgstr "Регистрация"
|
223 |
|
224 |
-
#:
|
225 |
-
#:
|
226 |
-
msgid "
|
227 |
-
msgstr "
|
228 |
|
229 |
-
#:
|
230 |
-
msgid ""
|
231 |
-
"
|
232 |
-
"inbox."
|
233 |
-
msgstr "Спасибо, ваш запрос на подписку принят. Пожалуйста, проверьте ваш почтовый ящик."
|
234 |
|
235 |
-
#:
|
236 |
-
|
237 |
-
|
238 |
-
msgstr "Оп-па. Что-то пошло не так. Пожалуйста, попробуйте ещё раз позже."
|
239 |
|
240 |
-
#:
|
241 |
-
|
242 |
-
|
243 |
-
msgstr "Пожалуйста, введите правильный адрес email."
|
244 |
|
245 |
-
#:
|
246 |
-
|
247 |
-
|
248 |
-
msgstr "Указанный адрес email уже включен в рассылку, спасибо!"
|
249 |
|
250 |
-
#:
|
251 |
-
|
252 |
-
|
253 |
-
msgstr "Пожалуйста, введите код CAPTCHA."
|
254 |
|
255 |
-
#:
|
256 |
-
|
257 |
-
|
258 |
-
msgstr "Пожалуйста, заполните требуемые поля."
|
259 |
|
260 |
-
#:
|
261 |
-
|
262 |
-
|
263 |
-
msgstr "Вы были отписаны от рассылки."
|
264 |
|
265 |
-
#:
|
266 |
-
|
267 |
-
|
268 |
-
msgstr "Указанный адрес email не был включен в подписку."
|
269 |
|
270 |
-
#:
|
271 |
-
|
272 |
-
|
273 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:96
|
274 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:106
|
275 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:121
|
276 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:134
|
277 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:145
|
278 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:164
|
279 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:178
|
280 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-cf7.php:57
|
281 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:17
|
282 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:37
|
283 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:56
|
284 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:75
|
285 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:98
|
286 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:116
|
287 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:139
|
288 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:52
|
289 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:60
|
290 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:71
|
291 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:113
|
292 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:118
|
293 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:59
|
294 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:72
|
295 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:82
|
296 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:97
|
297 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:115
|
298 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:123
|
299 |
-
msgid "Yes"
|
300 |
-
msgstr "Да"
|
301 |
|
302 |
-
#:
|
303 |
-
|
304 |
-
|
305 |
-
#: mailchimp-for-wordpress/includes/views/checkbox-settings.php:96
|
306 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:27
|
307 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:110
|
308 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:125
|
309 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:136
|
310 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:149
|
311 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:168
|
312 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:182
|
313 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-cf7.php:57
|
314 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:21
|
315 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:41
|
316 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:60
|
317 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:79
|
318 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:102
|
319 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:120
|
320 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:140
|
321 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:52
|
322 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:62
|
323 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:75
|
324 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:113
|
325 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:118
|
326 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:22
|
327 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:63
|
328 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:73
|
329 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:86
|
330 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:101
|
331 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:116
|
332 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:124
|
333 |
-
msgid "No"
|
334 |
-
msgstr "Нет"
|
335 |
|
336 |
-
#:
|
337 |
-
|
338 |
-
|
339 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:309
|
340 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:235
|
341 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:238
|
342 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:300
|
343 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:309
|
344 |
-
msgid "MailChimp for WordPress - Error"
|
345 |
-
msgstr "MailChimp for WordPress - Ошибка"
|
346 |
-
|
347 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:236
|
348 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:236
|
349 |
-
msgid ""
|
350 |
-
"Please select a list to subscribe to in the <a href=\"%s\">checkbox "
|
351 |
-
"settings</a>."
|
352 |
-
msgstr "Пожалуйста, укажите список для подписки в <a href=\"%s\">настройках</a>."
|
353 |
-
|
354 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:237
|
355 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:308
|
356 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:237
|
357 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:308
|
358 |
-
msgid "This message is only visible to administrators for debugging purposes."
|
359 |
-
msgstr "Это сообщение отображается только администраторам с целью отладки."
|
360 |
-
|
361 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:301
|
362 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:301
|
363 |
-
msgid ""
|
364 |
-
"The MailChimp server returned the following error message as a response to "
|
365 |
-
"our sign-up request:"
|
366 |
-
msgstr "Сервер MailChimp вернул следующее сообщение об ошибке в ответ на нашу попытку подписаться:"
|
367 |
-
|
368 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:303
|
369 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:303
|
370 |
-
msgid "This is the data that was sent to MailChimp:"
|
371 |
-
msgstr "Эти данные были отправлены в MailChimp:"
|
372 |
-
|
373 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:304
|
374 |
-
#: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:216
|
375 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:304
|
376 |
-
msgid "Email address:"
|
377 |
-
msgstr "Адрес email:"
|
378 |
-
|
379 |
-
#: mailchimp-for-wordpress/includes/integrations/class-integration.php:306
|
380 |
-
#: mailchimp-for-wordpress-pro/includes/integrations/class-integration.php:306
|
381 |
-
msgid "Merge variables:"
|
382 |
-
msgstr "Объединить переменные:"
|
383 |
|
384 |
-
|
385 |
-
msgid "MailChimp for WordPress"
|
386 |
-
msgstr "MailChimp для WordPress"
|
387 |
|
388 |
-
#:
|
389 |
-
|
390 |
-
|
391 |
-
msgid "MailChimp Settings"
|
392 |
-
msgstr "Основные настройки"
|
393 |
|
394 |
-
#:
|
395 |
-
|
396 |
-
|
397 |
-
|
|
|
398 |
|
399 |
-
#:
|
400 |
-
|
401 |
-
|
402 |
-
msgstr "ПОДКЛЮЧЕНО"
|
403 |
|
404 |
-
#:
|
405 |
-
|
406 |
-
|
407 |
-
msgstr "НЕ ПОДКЛЮЧЕНО"
|
408 |
|
409 |
-
#:
|
410 |
-
|
411 |
-
|
412 |
-
msgstr "- ключ API"
|
413 |
|
414 |
-
#:
|
415 |
-
|
416 |
-
|
417 |
-
msgstr "Ваш ключ MailChimp API"
|
418 |
|
419 |
-
#:
|
420 |
-
|
421 |
-
|
422 |
-
msgstr "Получите ваш ключ API здесь"
|
423 |
|
424 |
-
#:
|
425 |
-
|
426 |
-
|
427 |
-
msgstr "Данные MailChimp"
|
428 |
|
429 |
-
#:
|
430 |
-
|
431 |
-
|
432 |
-
"The table below shows your MailChimp lists data. If you applied changes to "
|
433 |
-
"your MailChimp lists, please use the following button to renew your cached "
|
434 |
-
"data."
|
435 |
-
msgstr "Следующая таблица показывает ваши данные по спискам MailChimp. Если вы измените списки на сервере MailChimp, используйте следующую кнопку чтобы перечитать данные."
|
436 |
-
|
437 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:54
|
438 |
-
#: mailchimp-for-wordpress/includes/views/api-settings.php:125
|
439 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:55
|
440 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:126
|
441 |
-
msgid "Renew MailChimp lists"
|
442 |
-
msgstr "Обновить списки MailChimp"
|
443 |
|
444 |
-
#:
|
445 |
-
msgid "
|
446 |
-
msgstr "
|
447 |
|
448 |
-
#:
|
449 |
-
#:
|
450 |
-
|
451 |
-
|
452 |
-
"
|
453 |
-
msgstr "
|
454 |
|
455 |
-
#:
|
456 |
-
|
457 |
-
|
458 |
-
msgstr "Настройки MailChimp для флажков"
|
459 |
|
460 |
-
#:
|
461 |
-
|
462 |
-
|
463 |
-
"If you want to use sign-up checkboxes, select at least one MailChimp list to"
|
464 |
-
" subscribe people to."
|
465 |
-
msgstr "Если хотите использовать флажки регистрации, выберите хотя бы один список рассылок MailChimp."
|
466 |
|
467 |
-
#:
|
468 |
-
|
469 |
-
|
470 |
-
msgstr "Списки рассылок MailChimp"
|
471 |
|
472 |
-
#:
|
473 |
-
|
474 |
-
|
475 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:38
|
476 |
-
msgid "No lists found, <a href=\"%s\">are you connected to MailChimp</a>?"
|
477 |
-
msgstr "Списки не найдены, <a href=\"%s\">вы точно подключены к MailChimp</a>?"
|
478 |
|
479 |
-
#:
|
480 |
-
|
481 |
-
|
482 |
-
"Select the list(s) to which people who check the checkbox should be "
|
483 |
-
"subscribed."
|
484 |
-
msgstr "Выберите список(и), на которые посетители могут подписаться."
|
485 |
|
486 |
-
#:
|
487 |
-
#:
|
488 |
-
|
489 |
-
|
490 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:55
|
491 |
-
msgid "Double opt-in?"
|
492 |
-
msgstr "Двойное подтверждение?"
|
493 |
|
494 |
-
#:
|
495 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:113
|
496 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:28
|
497 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:53
|
498 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:66
|
499 |
msgid ""
|
500 |
-
"
|
501 |
-
"
|
502 |
-
msgstr "
|
503 |
|
504 |
-
#:
|
505 |
-
|
506 |
-
|
507 |
-
msgstr "Настройки флажков"
|
508 |
|
509 |
-
#:
|
510 |
-
|
511 |
-
|
512 |
-
msgstr "Добавить флажок подписки в следующие формы"
|
513 |
|
514 |
-
#:
|
515 |
-
|
516 |
-
|
517 |
-
msgstr "В выбранную форму(ы) будет автоматически добавлен флажок подписки."
|
518 |
|
519 |
-
#:
|
520 |
-
|
521 |
-
|
522 |
-
msgstr "Текст флажка"
|
523 |
|
524 |
-
#:
|
525 |
-
|
526 |
-
|
527 |
-
msgid "HTML tags like %s are allowed in the label text."
|
528 |
-
msgstr "В тексте допустимы HTML теги, подобные %s."
|
529 |
|
530 |
-
#:
|
531 |
-
|
532 |
-
|
533 |
-
|
|
|
534 |
|
535 |
-
#:
|
536 |
-
#:
|
537 |
-
msgid "
|
538 |
-
msgstr "
|
539 |
|
540 |
-
#:
|
541 |
-
|
542 |
-
|
543 |
-
|
|
|
|
|
|
|
|
|
|
|
544 |
|
545 |
-
#:
|
546 |
-
|
547 |
-
|
548 |
-
msgstr "Позиция флажка WooCommerce "
|
549 |
|
550 |
-
#:
|
551 |
-
|
552 |
-
|
553 |
-
msgstr "После платежной информации"
|
554 |
|
555 |
-
#:
|
556 |
-
|
557 |
-
|
558 |
-
msgstr "После добавочной информации"
|
559 |
|
560 |
-
#:
|
561 |
-
|
562 |
-
|
563 |
-
"Choose the position for the checkbox in your WooCommerce checkout form."
|
564 |
-
msgstr "Выберите положение флажка в вашей форме Покупки WooCommerce."
|
565 |
|
566 |
-
#:
|
567 |
-
msgid ""
|
568 |
-
"To use the MailChimp sign-up form, configure the form below and then either "
|
569 |
-
"paste %s in the content of a post or page or use the widget."
|
570 |
-
msgstr "Чтобы использовать форму подписки MailChimp, соберите форму ниже и затем вставьте код \"%s\" в запись или страницу, или используйте в виджете."
|
571 |
-
|
572 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:20
|
573 |
-
msgid "Required form settings"
|
574 |
-
msgstr "Обязательные настройки формы"
|
575 |
-
|
576 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:24
|
577 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:19
|
578 |
-
msgid "Load form styles (CSS)?"
|
579 |
-
msgstr "Загрузить стили для формы (CSS)?"
|
580 |
-
|
581 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:28
|
582 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:23
|
583 |
-
msgid "Yes, load basic form styles"
|
584 |
-
msgstr "Загрузить простые стили для форм"
|
585 |
-
|
586 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:29
|
587 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:24
|
588 |
-
msgid "Yes, load my custom form styles"
|
589 |
-
msgstr "Загрузить мой собственный стиль формы"
|
590 |
-
|
591 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:30
|
592 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:25
|
593 |
-
msgid "Yes, load default form theme"
|
594 |
-
msgstr "Загрузить исходный стиль формы"
|
595 |
-
|
596 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:31
|
597 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:26
|
598 |
msgid "Light Theme"
|
599 |
msgstr "Светлая тема"
|
600 |
|
601 |
-
#:
|
602 |
-
|
|
|
|
|
|
|
603 |
msgid "Red Theme"
|
604 |
msgstr "Красная тема"
|
605 |
|
606 |
-
#:
|
607 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:28
|
608 |
msgid "Green Theme"
|
609 |
msgstr "Зеленая тема"
|
610 |
|
611 |
-
#:
|
612 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:29
|
613 |
msgid "Blue Theme"
|
614 |
msgstr "Синяя тема"
|
615 |
|
616 |
-
#:
|
617 |
-
|
618 |
-
|
619 |
-
msgstr "Темная тема"
|
620 |
|
621 |
-
#:
|
622 |
-
|
623 |
-
|
624 |
-
msgstr "Тема с моим собственным цветом"
|
625 |
|
626 |
-
#:
|
627 |
msgid ""
|
628 |
"If you want to load some default CSS styles, select \"basic formatting "
|
629 |
"styles\" or choose one of the color themes"
|
630 |
msgstr "Если вы хотите загрузить некоторые изначальные стили CSS, выберите \"простые стили для форм\", или выберите одну из цветовых тем"
|
631 |
|
632 |
-
#:
|
633 |
-
|
634 |
-
|
635 |
-
msgstr "Списки, на которые подписывает эта форма"
|
636 |
-
|
637 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:63
|
638 |
-
msgid ""
|
639 |
-
"Select the list(s) to which people who submit this form should be "
|
640 |
-
"subscribed."
|
641 |
-
msgstr "Укажите списки, в которые должны быть добавлены подписчики."
|
642 |
|
643 |
-
#:
|
644 |
-
msgid "Form
|
645 |
-
msgstr "
|
646 |
|
647 |
-
#:
|
648 |
-
|
649 |
-
|
650 |
-
"Use the shortcode %s to display this form inside a post, page or text "
|
651 |
-
"widget."
|
652 |
-
msgstr "Используйте сокращение \"%s\" чтобы отобразить эту форму внутри поста, страницы или текстового виджета."
|
653 |
|
654 |
-
#:
|
655 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/missing-fields-notice.php:4
|
656 |
msgid "Your form is missing the following (required) form fields:"
|
657 |
msgstr "Ваша форма недосчиталась следующих обязательных полей:"
|
658 |
|
659 |
-
#:
|
660 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:71
|
661 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:57
|
662 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:70
|
663 |
-
msgid "Send Welcome Email?"
|
664 |
-
msgstr "Отправить вступительное письмо?"
|
665 |
-
|
666 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:128
|
667 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:86
|
668 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:64
|
669 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:75
|
670 |
-
msgid ""
|
671 |
-
"Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
|
672 |
-
"succeeds (only when double opt-in is disabled)."
|
673 |
-
msgstr "Выберите \"Да\", если хотите отправить вашим подписчикам вступительное письмо при удачном включении в подписку (работает только если выключен \"двойной отказ\")."
|
674 |
-
|
675 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:131
|
676 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:33
|
677 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:67
|
678 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:78
|
679 |
-
msgid "Update existing subscribers?"
|
680 |
-
msgstr "Обновлять данные существующих подписчиков?"
|
681 |
-
|
682 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:138
|
683 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:47
|
684 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:89
|
685 |
-
msgid ""
|
686 |
-
"Select \"yes\" if you want to update existing subscribers (instead of "
|
687 |
-
"showing the \"already subscribed\" message)."
|
688 |
-
msgstr "Выберите \"Да\", если хотите обновить данные существующих подписчиков (вместо того, чтобы показывать сообщение \"Вы уже подписаны\")"
|
689 |
-
|
690 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:141
|
691 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:52
|
692 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:93
|
693 |
-
msgid "Replace interest groups?"
|
694 |
-
msgstr "Заменять группы по интересам?"
|
695 |
-
|
696 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:152
|
697 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:66
|
698 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:104
|
699 |
msgid ""
|
700 |
-
"
|
701 |
-
"
|
702 |
-
"
|
703 |
-
msgstr "Выберите \"Да\", если хотите <u>заменить</u> группы по интересам подписчика теми группами, которые он укажет. Или выберите \"Нет\" чтобы <u>добавить</u> указанные группы к уже имеющимся группам по интересам (только при включённом режиме обновления данных подписчиков)."
|
704 |
-
|
705 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:156
|
706 |
-
msgid "Form Settings & Messages"
|
707 |
-
msgstr "Настройки и сообщения форм "
|
708 |
-
|
709 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:160
|
710 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:94
|
711 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:113
|
712 |
-
msgid "Enable AJAX form submission?"
|
713 |
-
msgstr "Включить отправку формы через AJAX?"
|
714 |
-
|
715 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:171
|
716 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:108
|
717 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:118
|
718 |
-
msgid "Select \"yes\" if you want to use AJAX (JavaScript) to submit forms."
|
719 |
-
msgstr "Выберите \"Да\", если вы хотите использовать AJAX (JavaSctipt) для отправки форм."
|
720 |
-
|
721 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:174
|
722 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:112
|
723 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:121
|
724 |
-
msgid "Hide form after a successful sign-up?"
|
725 |
-
msgstr "Скрыть форму после успешной подписки?"
|
726 |
-
|
727 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:185
|
728 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:126
|
729 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:126
|
730 |
-
msgid "Select \"yes\" to hide the form fields after a successful sign-up."
|
731 |
-
msgstr "Выберите \"Да\" чтобы скрывать поля формы после успешной подписки."
|
732 |
-
|
733 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:188
|
734 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:130
|
735 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:129
|
736 |
-
msgid "Redirect to URL after successful sign-ups"
|
737 |
-
msgstr "Перенаправить по указанному адресу URL после успешной подписки"
|
738 |
-
|
739 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:190
|
740 |
-
msgid "Example: %s"
|
741 |
-
msgstr "Пример: %s"
|
742 |
|
743 |
-
#:
|
744 |
-
|
745 |
-
|
746 |
-
"Leave empty or enter <code>0</code> for no redirect. Otherwise, use complete"
|
747 |
-
" (absolute) URLs, including <code>http://</code>."
|
748 |
-
msgstr "Оставьте поле пустым или введите <code>0</code> чтобы избежать перенаправления. Но если вы хотите использовать перенаправление, то используйте полный (абсолютный) адрес URL, включая префикс <code>http://</code>."
|
749 |
|
750 |
-
#:
|
751 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:140
|
752 |
msgid "Successfully subscribed"
|
753 |
msgstr "Подписка завершилась удачно"
|
754 |
|
755 |
-
#:
|
756 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:156
|
757 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:143
|
758 |
msgid ""
|
759 |
"The text that shows when an email address is successfully subscribed to the "
|
760 |
"selected list(s)."
|
761 |
msgstr "Текст, показываемый пользователю после удачного завершения подписки на выбранный список (или списки)."
|
762 |
|
763 |
-
#:
|
764 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:160
|
765 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:147
|
766 |
msgid "Invalid email address"
|
767 |
msgstr "Неправильный email-адрес"
|
768 |
|
769 |
-
#:
|
770 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:163
|
771 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:150
|
772 |
msgid "The text that shows when an invalid email address is given."
|
773 |
msgstr "Тест, показываемый пользователю когда он вводит неправильный email-адрес"
|
774 |
|
775 |
-
#:
|
776 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:167
|
777 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:154
|
778 |
msgid "Required field missing"
|
779 |
msgstr "Обязательное поле не заполнено"
|
780 |
|
781 |
-
#:
|
782 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:170
|
783 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:157
|
784 |
msgid ""
|
785 |
"The text that shows when a required field for the selected list(s) is "
|
786 |
"missing."
|
787 |
msgstr "Тест, показываемый пользователю когда обязательно поле (или поля) остаётся не заполненным."
|
788 |
|
789 |
-
#:
|
790 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:174
|
791 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:161
|
792 |
msgid "Already subscribed"
|
793 |
msgstr "Уже подписан"
|
794 |
|
795 |
-
#:
|
796 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:177
|
797 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:164
|
798 |
msgid ""
|
799 |
"The text that shows when the given email is already subscribed to the "
|
800 |
"selected list(s)."
|
801 |
msgstr "Тест, показываемый пользователю когда его email-адрес уже входит в выбранный список (или списки) подписчиков."
|
802 |
|
803 |
-
#:
|
804 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:182
|
805 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:169
|
806 |
-
msgid "Invalid CAPTCHA"
|
807 |
-
msgstr "Неправильно указан код CAPTCHA"
|
808 |
-
|
809 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:229
|
810 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:174
|
811 |
msgid "General error"
|
812 |
msgstr "Общая ошибка"
|
813 |
|
814 |
-
#:
|
815 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:193
|
816 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:177
|
817 |
msgid "The text that shows when a general error occured."
|
818 |
msgstr "Тест, показываемый при возникновении общей ошибки."
|
819 |
|
820 |
-
#:
|
821 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:197
|
822 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:181
|
823 |
msgid "Unsubscribed"
|
824 |
msgstr "Отписан"
|
825 |
|
826 |
-
#:
|
827 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:200
|
828 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:184
|
829 |
msgid ""
|
830 |
"When using the unsubscribe method, this is the text that shows when the "
|
831 |
"given email address is successfully unsubscribed from the selected list(s)."
|
832 |
msgstr "При выборе команды \"Отписаться\" пользователю будет отображено это сообщение после удачной отписки от выбранного списка (или списков)."
|
833 |
|
834 |
-
#:
|
835 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:204
|
836 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:188
|
837 |
msgid "Not subscribed"
|
838 |
msgstr "Не подписан"
|
839 |
|
840 |
-
#:
|
841 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:207
|
842 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:191
|
843 |
msgid ""
|
844 |
"When using the unsubscribe method, this is the text that shows when the "
|
845 |
"given email address is not on the selected list(s)."
|
846 |
msgstr "При выборе команды \"Отписаться\" пользователю будет отображено это сообщение если его email-адрес не состоял в выбранном списке (или списках)."
|
847 |
|
848 |
-
#:
|
849 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:213
|
850 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:197
|
851 |
msgid "HTML tags like %s are allowed in the message fields."
|
852 |
msgstr "В полях сообщения разрешены такие HTML-теги, как \"%s\"."
|
853 |
|
854 |
-
#:
|
855 |
-
msgid "Form
|
856 |
-
msgstr "
|
857 |
|
858 |
-
#:
|
859 |
-
msgid "
|
860 |
-
msgstr "
|
861 |
|
862 |
-
#:
|
863 |
-
msgid ""
|
864 |
-
"
|
865 |
-
"href=\"%s\">Theme Editor</a> or by using a plugin like %s"
|
866 |
-
msgstr "Вы можете добавить правила CSS в файл стилей своей темы с помощью <a href=\"%s\">Редактора Темы</a>, либо используя плагины, например \"%s\". Либо обратитесь к разработчику темы."
|
867 |
|
868 |
-
#:
|
869 |
-
|
870 |
-
"
|
871 |
-
"
|
872 |
-
msgstr "<a href=\"%s\" target=\"_blank\">ЧаВО этого плагина</a> содержит перечень допустимых CSS-селекторов, которые можно использовать для указания элементов формы."
|
873 |
|
874 |
-
#:
|
875 |
msgid ""
|
876 |
-
"
|
877 |
-
"
|
878 |
-
"
|
879 |
-
msgstr "Если вы хотите использовать более простой способ настройки внешнего вида ваших форм, то подумайте об <a href=\"%s\">обновлении до версии <b>MailChimp for WordPress Pro</b></a>, в которую включён Строитель Стилей."
|
880 |
-
|
881 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:272
|
882 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-admin.php:366
|
883 |
-
msgid "Variables"
|
884 |
-
msgstr "Переменные"
|
885 |
-
|
886 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:274
|
887 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:11
|
888 |
-
msgid ""
|
889 |
-
"The following list of variables can be used to <a href=\"%s\">add some "
|
890 |
-
"dynamic content to your form or success and error messages</a>."
|
891 |
-
msgstr "Переменные из этого перечня можно использовать для <a href=\"%s\">добавления динамического содержимого</a> в ваши формы или сообщения."
|
892 |
-
|
893 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:274
|
894 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:11
|
895 |
-
msgid "This allows you to personalise your form or response messages."
|
896 |
-
msgstr "Эти настройки позволяют Вам персонализировать формы или сообщения, показываемые посетителям."
|
897 |
-
|
898 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:282
|
899 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:16
|
900 |
-
msgid "Replaced with the visitor's email (if set in URL or cookie)."
|
901 |
-
msgstr "Email-адрес посетителя (если используется в URL или в cookie)."
|
902 |
-
|
903 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:286
|
904 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:20
|
905 |
-
msgid "Replaced with the form response (error or success messages)."
|
906 |
-
msgstr "Результат работы формы (сообщение об ошибке или успехе)."
|
907 |
-
|
908 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:291
|
909 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:25
|
910 |
-
msgid "Replaced with a captcha field."
|
911 |
-
msgstr "Поле CAPTCHA"
|
912 |
-
|
913 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:296
|
914 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:30
|
915 |
-
msgid "Replaced with the number of subscribers on the selected list(s)"
|
916 |
-
msgstr "Количество подписчиков в выбранном списке (или списках)"
|
917 |
-
|
918 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:300
|
919 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:34
|
920 |
-
msgid "Replaced with the current site language, eg: %s"
|
921 |
-
msgstr "Текущий язык сайта, например \"%s\""
|
922 |
-
|
923 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:304
|
924 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:38
|
925 |
-
msgid "Replaced with the visitor's IP address"
|
926 |
-
msgstr "IP-адрес посетителя"
|
927 |
-
|
928 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:308
|
929 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:42
|
930 |
-
msgid "Replaced with the current date (yyyy/mm/dd eg: %s)"
|
931 |
-
msgstr "Текущая дата (гггг/мм/дд), например \"%s\""
|
932 |
|
933 |
-
#:
|
934 |
-
|
935 |
-
|
936 |
-
msgstr "Текущее время (чч:мм:сс), например \"%s\""
|
937 |
|
938 |
-
#:
|
939 |
-
#:
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
#:
|
946 |
-
#:
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
#:
|
951 |
-
#:
|
952 |
-
msgid "
|
953 |
-
msgstr "
|
954 |
-
|
955 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:328
|
956 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:62
|
957 |
-
msgid "Current user ID"
|
958 |
-
msgstr "ID текущего пользователя"
|
959 |
-
|
960 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:332
|
961 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:66
|
962 |
-
msgid "Current URL"
|
963 |
-
msgstr "Текущий URL"
|
964 |
-
|
965 |
-
#: mailchimp-for-wordpress/includes/views/form-settings.php:336
|
966 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-text-variables.php:70
|
967 |
-
msgid "The value of the <strong>FNAME</strong> field, if set."
|
968 |
-
msgstr "Значение поля <strong>FNAME</strong>, если оно установлено."
|
969 |
-
|
970 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:10
|
971 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:31
|
972 |
-
msgid "Add a new field"
|
973 |
-
msgstr "Добавить поле"
|
974 |
-
|
975 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:12
|
976 |
-
msgid "Use the tool below to generate the HTML for your form fields."
|
977 |
-
msgstr "Используйте следующий инструмент для генерации HTML-кода для полей Вышей формы."
|
978 |
-
|
979 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:15
|
980 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:35
|
981 |
-
msgid "Select MailChimp field.."
|
982 |
-
msgstr "Выбрать одно из полей MailChimp..."
|
983 |
-
|
984 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:19
|
985 |
-
msgid "Submit Button"
|
986 |
-
msgstr "Кнопка отправки"
|
987 |
-
|
988 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:20
|
989 |
-
msgid "Subscribe / unsubscribe choice"
|
990 |
-
msgstr "Выбор \"Подписаться\" или \"Отписаться\""
|
991 |
-
|
992 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:21
|
993 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:40
|
994 |
-
msgid "List choice"
|
995 |
-
msgstr "Выбор списка"
|
996 |
-
|
997 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:29
|
998 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:49
|
999 |
-
msgid "Label"
|
1000 |
-
msgstr "Заголовок"
|
1001 |
-
|
1002 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:34
|
1003 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:54
|
1004 |
-
msgid "Placeholder"
|
1005 |
-
msgstr "\"Заполнитель\""
|
1006 |
-
|
1007 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:44
|
1008 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:64
|
1009 |
-
msgid "Labels"
|
1010 |
-
msgstr "Заголовки"
|
1011 |
-
|
1012 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:44
|
1013 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:64
|
1014 |
-
msgid "(leave empty to hide)"
|
1015 |
-
msgstr "(оставьте пустым для сокрытия)"
|
1016 |
-
|
1017 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:49
|
1018 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:69
|
1019 |
-
msgid "Wrap in paragraph %s tags?"
|
1020 |
-
msgstr "Обернуть в метки параграфа \"%s\"?"
|
1021 |
-
|
1022 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:54
|
1023 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:73
|
1024 |
-
msgid "Required field?"
|
1025 |
-
msgstr "Необходимое поле?"
|
1026 |
-
|
1027 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:58
|
1028 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:77
|
1029 |
-
msgid "Add to form"
|
1030 |
-
msgstr "Добавить на форму"
|
1031 |
-
|
1032 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:62
|
1033 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:81
|
1034 |
-
msgid "Generated HTML"
|
1035 |
-
msgstr "Сгенерированный HTML-код"
|
1036 |
-
|
1037 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-field-wizard.php:69
|
1038 |
-
msgid "Select at least one list first."
|
1039 |
-
msgstr "Сначала выберите как минимум один лист."
|
1040 |
-
|
1041 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-footer.php:11
|
1042 |
-
msgid ""
|
1043 |
-
"MailChimp for WordPress is in need of translations. Is the plugin not "
|
1044 |
-
"translated in your language or do you spot errors with the current "
|
1045 |
-
"translations? Helping out is easy! Head over to <a href=\"%s\">the "
|
1046 |
-
"translation project and click \"help translate\"</a>."
|
1047 |
-
msgstr "MailChimp for WordPress нуждается в переводах на разные языки. Если вы считате, что этот плагин ещё не переведен на ваш язык, или если вы заметили проблемы с текущим переводом, то исправить ситуацию легко! Держите курс на <a href=\"%s\">проект по переводу и нажмите \"Help Translate\"</a>."
|
1048 |
|
1049 |
-
#:
|
1050 |
-
|
1051 |
-
|
1052 |
-
|
1053 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1054 |
|
1055 |
-
#:
|
1056 |
-
#:
|
1057 |
msgid ""
|
1058 |
-
"
|
1059 |
-
|
|
|
1060 |
|
1061 |
-
#:
|
1062 |
-
msgid "
|
1063 |
-
msgstr "
|
1064 |
|
1065 |
-
#:
|
|
|
1066 |
msgid ""
|
1067 |
-
"
|
1068 |
-
"
|
1069 |
-
"
|
1070 |
-
msgstr "Не пропустите <a href=\"%s\">документацию к плагину <b>MailChimp for WordPress</b></a>, а также <a href=\"%s\">ЧАВО</a> или <a href=\"%s\">форумы поддержки</a> на сайте WordPress.org."
|
1071 |
-
|
1072 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:14
|
1073 |
-
msgid "Do you enjoy this plugin?"
|
1074 |
-
msgstr "Понравился ли Вам этот плагин?"
|
1075 |
-
|
1076 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:17
|
1077 |
-
msgid "Leave a %s plugin review on WordPress.org"
|
1078 |
-
msgstr "Напишите <b>обзор к этому плагину</b> %s на сайте WordPress.org"
|
1079 |
-
|
1080 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:18
|
1081 |
-
msgid "I am using MailChimp for WordPress by @DannyvanKooten - it is great!"
|
1082 |
-
msgstr "Я пользуюсь MailChimp for WordPress от @DannyvanKooten - это классно!"
|
1083 |
|
1084 |
-
#:
|
1085 |
-
|
1086 |
-
|
|
|
1087 |
|
1088 |
-
#:
|
|
|
1089 |
msgid ""
|
1090 |
-
"
|
1091 |
-
"
|
1092 |
-
msgstr "
|
1093 |
-
|
1094 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-need-support.php:19
|
1095 |
-
msgid "There is an <a href=\"%s\">affiliate program</a> as well."
|
1096 |
-
msgstr "А у нас ещё есть программа <a href=\"%s\">сотрудничества</a>."
|
1097 |
|
1098 |
-
#:
|
1099 |
-
|
1100 |
-
|
|
|
1101 |
|
1102 |
-
#:
|
|
|
1103 |
msgid ""
|
1104 |
-
"
|
1105 |
-
|
1106 |
-
|
1107 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:11
|
1108 |
-
msgid "Some differences with this free version of the plugin:"
|
1109 |
-
msgstr "Некоторые преимущества над текущей бесплатной версией:"
|
1110 |
-
|
1111 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:14
|
1112 |
-
msgid "Multiple forms"
|
1113 |
-
msgstr "Больше чем 1 форма"
|
1114 |
-
|
1115 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:15
|
1116 |
-
msgid "Each subscribing to one or multiple MailChimp lists."
|
1117 |
-
msgstr "<i>Можно подписаться на более чем 1 список.</i>"
|
1118 |
-
|
1119 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:18
|
1120 |
-
msgid "AJAX forms"
|
1121 |
-
msgstr "Формы работают через AJAX"
|
1122 |
-
|
1123 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:19
|
1124 |
-
msgid "Forms do not require a full page reload."
|
1125 |
-
msgstr "<i>Формы не требуют полного обновления страницы.</i>"
|
1126 |
-
|
1127 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:22
|
1128 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:14
|
1129 |
-
msgid "Statistics"
|
1130 |
-
msgstr "Показ статистики"
|
1131 |
-
|
1132 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:23
|
1133 |
-
msgid "Every form interaction is logged and visualised in insightful charts."
|
1134 |
-
msgstr "<i>Все взаимодействия с формами протоколируются и затем могут быть отображены на понятных графиках.</i>"
|
1135 |
-
|
1136 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:26
|
1137 |
-
msgid "Styles Builder"
|
1138 |
-
msgstr "Строитель Стилей"
|
1139 |
-
|
1140 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:27
|
1141 |
-
msgid "Create beautiful form themes with ease."
|
1142 |
-
msgstr "<i>Можно очень легко создавать прекрасно выглядящие формы.</i>"
|
1143 |
-
|
1144 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:31
|
1145 |
-
msgid "Upgrade Now"
|
1146 |
-
msgstr "Купить сейчас"
|
1147 |
-
|
1148 |
-
#: mailchimp-for-wordpress/includes/views/parts/admin-upgrade-to-pro.php:32
|
1149 |
-
msgid "View Demo"
|
1150 |
-
msgstr "Посмотреть демонстрацию"
|
1151 |
|
1152 |
-
#:
|
1153 |
-
|
1154 |
-
|
|
|
1155 |
|
1156 |
-
#:
|
1157 |
-
msgid "
|
1158 |
-
msgstr "
|
1159 |
|
1160 |
-
#:
|
1161 |
-
msgid "
|
1162 |
-
msgstr "
|
1163 |
|
1164 |
-
#:
|
1165 |
-
msgid "
|
1166 |
-
msgstr "
|
1167 |
|
1168 |
-
#:
|
1169 |
-
msgid "
|
1170 |
-
msgstr "
|
1171 |
|
1172 |
-
#:
|
1173 |
-
msgid "
|
1174 |
-
msgstr "
|
1175 |
|
1176 |
-
#:
|
1177 |
-
msgid "
|
1178 |
-
|
|
|
|
|
1179 |
|
1180 |
-
#:
|
1181 |
-
|
1182 |
-
|
|
|
|
|
|
|
|
|
1183 |
|
1184 |
-
#:
|
1185 |
-
msgid "
|
1186 |
-
msgstr "
|
1187 |
|
1188 |
-
#:
|
1189 |
-
|
1190 |
-
|
1191 |
-
msgid "Reports"
|
1192 |
-
msgstr "Отчёты"
|
1193 |
|
1194 |
-
#:
|
1195 |
msgid ""
|
1196 |
-
"
|
1197 |
-
"
|
1198 |
-
msgstr "Пожалуйста, убедитесь, что дополнение подключилось к серверу MailChimp. <a href=\"%s\">Введите корректный ключ API</a>."
|
1199 |
|
1200 |
-
#:
|
1201 |
-
msgid ""
|
1202 |
-
|
1203 |
-
"page."
|
1204 |
-
msgstr "Вы отключили протоколирование используя фильтр \"%s\". Включите его заново для использования на странице с отчётами."
|
1205 |
|
1206 |
-
#:
|
1207 |
msgid ""
|
1208 |
-
"
|
1209 |
-
"
|
1210 |
-
"
|
1211 |
-
msgstr "<strong>Добро пожаловать в дополнение MailChimp for WordPress Pro!</strong> Мы скопировали Ваши настройки из бесплатной версии, и Вы можете спокойно <a href=\"%s\">деактивировать её</a>."
|
1212 |
|
1213 |
-
#:
|
1214 |
-
msgid "
|
1215 |
-
msgstr "
|
1216 |
|
1217 |
-
#:
|
1218 |
msgid ""
|
1219 |
-
"
|
1220 |
-
"
|
1221 |
-
msgstr "
|
1222 |
-
|
1223 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:437
|
1224 |
-
msgid "%sShow generated CSS%s"
|
1225 |
-
msgstr "%sПоказать сгенерированные правила CSS%s"
|
1226 |
-
|
1227 |
-
#: mailchimp-for-wordpress-pro/includes/admin/class-styles-builder.php:447
|
1228 |
-
msgid "The %sCSS Stylesheet%s has been created."
|
1229 |
-
msgstr "%sТаблица стилей CSS%s была создана."
|
1230 |
|
1231 |
-
#:
|
1232 |
-
msgid "
|
1233 |
-
msgstr "
|
1234 |
|
1235 |
-
#:
|
1236 |
-
msgid ""
|
1237 |
-
"
|
1238 |
-
" correct form ID."
|
1239 |
-
msgstr "<strong>Ошибка:</strong> форма подписки не найдена. Пожалуйста, убедитесь, что вы ввели правильный ID формы."
|
1240 |
|
1241 |
-
#:
|
1242 |
-
msgid "
|
1243 |
-
msgstr "
|
1244 |
|
1245 |
-
#:
|
1246 |
-
msgid "
|
1247 |
-
msgstr "
|
1248 |
|
1249 |
-
#:
|
1250 |
-
msgid "
|
1251 |
-
msgstr "
|
1252 |
|
1253 |
-
#:
|
1254 |
-
msgid "
|
1255 |
-
msgstr "
|
1256 |
|
1257 |
-
#:
|
1258 |
-
|
1259 |
-
|
1260 |
-
msgstr "Список"
|
1261 |
|
1262 |
-
#:
|
1263 |
-
msgid "
|
1264 |
-
msgstr "
|
1265 |
|
1266 |
-
#:
|
1267 |
msgid ""
|
1268 |
-
"
|
1269 |
-
"
|
1270 |
-
"
|
1271 |
-
msgstr "Заметьте, что Вы включили двойное подтверждение для формы \"%s\". Пользователь не будет добавлен в выбранные списки MailChimp, пока не подтвердит свой email-адрес."
|
1272 |
-
|
1273 |
-
#: mailchimp-for-wordpress-pro/includes/class-subscribe-request.php:277
|
1274 |
-
msgid "This email was auto-sent by the MailChimp for WordPress plugin."
|
1275 |
-
msgstr "Это электронное письмо было автоматически отправлено через дополнение MailChimp for WordPress."
|
1276 |
-
|
1277 |
-
#: mailchimp-for-wordpress-pro/includes/class-widget.php:20
|
1278 |
-
msgid "MailChimp for WP Form"
|
1279 |
-
msgstr "Форма MailChimp for WP"
|
1280 |
-
|
1281 |
-
#: mailchimp-for-wordpress-pro/includes/class-widget.php:21
|
1282 |
-
msgid "Displays one of your MailChimp for WordPress sign-up forms"
|
1283 |
-
msgstr "Отображает одну из ваших форм подписки в MailChimp for WordPress"
|
1284 |
|
1285 |
-
#:
|
1286 |
msgid ""
|
1287 |
-
"Please
|
1288 |
-
"href=\"%s\">
|
1289 |
-
|
|
|
|
|
1290 |
|
1291 |
-
#:
|
1292 |
-
msgid "
|
1293 |
-
msgstr "
|
1294 |
|
1295 |
-
#:
|
1296 |
-
msgid "
|
1297 |
-
msgstr "
|
1298 |
|
1299 |
-
#:
|
1300 |
-
msgid "
|
1301 |
-
msgstr "
|
1302 |
|
1303 |
-
#:
|
1304 |
msgid ""
|
1305 |
-
"
|
1306 |
-
"
|
1307 |
-
msgstr "
|
1308 |
|
1309 |
-
#:
|
1310 |
-
msgid "
|
1311 |
-
msgstr "
|
1312 |
|
1313 |
-
#:
|
1314 |
-
msgid ""
|
1315 |
-
"
|
1316 |
-
"able to get %s updates. Please add %s to %s."
|
1317 |
-
msgstr "<b>Предупреждение!</b> Ваш сервер блокируете внешние запросы, это значит что Вы не сможете получать обновления для %s. Пожалуйста, добавьте %s в %s."
|
1318 |
|
1319 |
-
#:
|
1320 |
-
msgid "
|
1321 |
-
msgstr "
|
1322 |
|
1323 |
-
#:
|
1324 |
-
msgid "
|
1325 |
-
msgstr "
|
1326 |
|
1327 |
-
#:
|
1328 |
-
msgid "
|
1329 |
-
msgstr "
|
1330 |
|
1331 |
-
#:
|
1332 |
-
msgid ""
|
1333 |
-
|
1334 |
-
" it?</a>"
|
1335 |
-
msgstr "<a href=\"%s\">Ваша лицензия закончится через %d дней. Хотите её продлить?</a>"
|
1336 |
|
1337 |
-
#:
|
1338 |
-
msgid ""
|
1339 |
-
"
|
1340 |
-
"<a href=\"%s\">upgrade your license</a> to use it on this site."
|
1341 |
-
msgstr "Вы достигли лимита активаций. Вы должны <a href=\"%s\">сбросить</a> или <a href=\"%s\">улучшить лицензию</a>, прежде чем использовать её на этом сайте."
|
1342 |
|
1343 |
-
#:
|
1344 |
-
msgid ""
|
1345 |
-
"
|
1346 |
-
"you want to use it again."
|
1347 |
-
msgstr "Ваша лицензия закончилась. Вы должны <a href=\"%s\">возобновить лицензию</a>, чтобы пользоваться этим дополнением и дальше."
|
1348 |
|
1349 |
-
#:
|
1350 |
-
msgid "
|
1351 |
-
msgstr "
|
1352 |
|
1353 |
-
#:
|
1354 |
-
msgid "
|
1355 |
-
msgstr "
|
1356 |
|
1357 |
-
#:
|
1358 |
-
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:66
|
1359 |
-
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:74
|
1360 |
msgid ""
|
1361 |
-
"
|
1362 |
-
"
|
1363 |
-
msgstr "
|
1364 |
-
|
1365 |
-
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:264
|
1366 |
-
msgid "Failed to deactivate your %s license."
|
1367 |
-
msgstr "Не удалось деактивировать Вашу лицензию %s."
|
1368 |
-
|
1369 |
-
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:302
|
1370 |
-
msgid "Request error: \"%s\""
|
1371 |
-
msgstr "Ошибка запроса: \"%s\""
|
1372 |
-
|
1373 |
-
#: mailchimp-for-wordpress-pro/includes/license/class-license-manager.php:461
|
1374 |
-
msgid "%s: License Settings"
|
1375 |
-
msgstr "%s: Настройки лицензирования"
|
1376 |
|
1377 |
-
#:
|
1378 |
-
msgid ""
|
1379 |
-
|
1380 |
-
"the license."
|
1381 |
-
msgstr "%s активирована для многосайта. Свяжитесь с администратором сети сайтов для управления лицензией."
|
1382 |
|
1383 |
-
#:
|
1384 |
msgid ""
|
1385 |
-
"
|
1386 |
-
|
|
|
|
|
|
|
1387 |
|
1388 |
-
#:
|
1389 |
msgid ""
|
1390 |
-
"This
|
1391 |
-
"
|
1392 |
-
msgstr "Этот сайт не активирован правильно на сервере mc4wp.com, и не будет получать будущие обновления. Активируйте ваш сайт с правильным лицензионным ключом."
|
1393 |
-
|
1394 |
-
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:23
|
1395 |
-
msgid "License status"
|
1396 |
-
msgstr "Состояние лицензии"
|
1397 |
-
|
1398 |
-
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:26
|
1399 |
-
msgid "ACTIVE"
|
1400 |
-
msgstr "АКТИВНАЯ"
|
1401 |
-
|
1402 |
-
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:26
|
1403 |
-
msgid "you are receiving updates"
|
1404 |
-
msgstr "Вы получаете обновления"
|
1405 |
-
|
1406 |
-
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:28
|
1407 |
-
msgid "EXPIRED"
|
1408 |
-
msgstr "ПРОСРОЧЕНА"
|
1409 |
-
|
1410 |
-
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:28
|
1411 |
-
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:30
|
1412 |
-
msgid "you are <strong>not</strong> receiving updates."
|
1413 |
-
msgstr "Вы <strong>не</strong> получаете обновления."
|
1414 |
-
|
1415 |
-
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:30
|
1416 |
-
msgid "INACTIVE"
|
1417 |
-
msgstr "НЕАКТИВНАЯ"
|
1418 |
-
|
1419 |
-
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:35
|
1420 |
-
msgid "Toggle license status"
|
1421 |
-
msgstr "Переключить статус лицензии"
|
1422 |
|
1423 |
-
#:
|
1424 |
-
msgid "
|
1425 |
-
msgstr "
|
1426 |
|
1427 |
-
#:
|
1428 |
msgid ""
|
1429 |
-
"
|
1430 |
-
|
1431 |
-
|
1432 |
-
|
1433 |
-
msgid "Activate License"
|
1434 |
-
msgstr "Активировать лицензию"
|
1435 |
-
|
1436 |
-
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:46
|
1437 |
-
msgid "Please enter a license key in the field below first."
|
1438 |
-
msgstr "Пожалуйста, сначала введите лицензионный ключ в следующее поле."
|
1439 |
-
|
1440 |
-
#: mailchimp-for-wordpress-pro/includes/license/views/form.php:54
|
1441 |
-
msgid "License Key"
|
1442 |
-
msgstr "Лицензионный ключ"
|
1443 |
|
1444 |
-
#:
|
1445 |
-
msgid "
|
1446 |
-
msgstr "
|
1447 |
|
1448 |
-
#:
|
1449 |
-
msgid "
|
1450 |
-
msgstr "
|
1451 |
|
1452 |
-
#:
|
1453 |
-
msgid "
|
1454 |
-
msgstr "
|
1455 |
|
1456 |
-
#:
|
1457 |
msgid "ID"
|
1458 |
msgstr "ID"
|
1459 |
|
1460 |
-
#:
|
1461 |
-
|
1462 |
-
|
1463 |
-
msgid "Form"
|
1464 |
-
msgstr "Форма"
|
1465 |
-
|
1466 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:51
|
1467 |
-
msgid "Shortcode"
|
1468 |
-
msgstr "Короткий код"
|
1469 |
-
|
1470 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:52
|
1471 |
-
msgid "List(s)"
|
1472 |
-
msgstr "Список(и)"
|
1473 |
|
1474 |
-
#:
|
1475 |
-
msgid "
|
1476 |
-
msgstr "
|
1477 |
-
|
1478 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:104
|
1479 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:108
|
1480 |
-
msgid "Edit Form"
|
1481 |
-
msgstr "Изменить форму"
|
1482 |
-
|
1483 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:105
|
1484 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:290
|
1485 |
-
msgid "Delete"
|
1486 |
-
msgstr "Удалить"
|
1487 |
-
|
1488 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:137
|
1489 |
-
msgid "No MailChimp list(s) selected yet."
|
1490 |
-
msgstr "Пока не выбрано ни одного списка MailChimp"
|
1491 |
-
|
1492 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-forms-table.php:147
|
1493 |
-
msgid "You have not created any sign-up forms yet. Time to do so!"
|
1494 |
-
msgstr "Вы не пока создали ни одной формы подписки. Пора это сделать!"
|
1495 |
-
|
1496 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:46
|
1497 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-reports.php:15
|
1498 |
-
msgid "Log"
|
1499 |
-
msgstr "Журнал"
|
1500 |
-
|
1501 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:47
|
1502 |
-
msgid "Log Items"
|
1503 |
-
msgstr "Записи протокола"
|
1504 |
-
|
1505 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:76
|
1506 |
-
msgid "Email"
|
1507 |
-
msgstr "Email-адрес"
|
1508 |
-
|
1509 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:78
|
1510 |
-
msgid "Data"
|
1511 |
-
msgstr "Данные"
|
1512 |
-
|
1513 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:79
|
1514 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:153
|
1515 |
-
msgid "Success"
|
1516 |
-
msgstr "Успешно"
|
1517 |
-
|
1518 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:80
|
1519 |
-
msgid "Type"
|
1520 |
-
msgstr "Тип"
|
1521 |
-
|
1522 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:81
|
1523 |
-
msgid "Source"
|
1524 |
-
msgstr "Исходный код"
|
1525 |
-
|
1526 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:82
|
1527 |
-
msgid "Subscribed"
|
1528 |
-
msgstr "Подписано"
|
1529 |
-
|
1530 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:150
|
1531 |
-
msgid "Log items deleted."
|
1532 |
-
msgstr "Удалены записи из журнала."
|
1533 |
-
|
1534 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:324
|
1535 |
-
msgid "Registration"
|
1536 |
-
msgstr "Регистрация"
|
1537 |
-
|
1538 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:333
|
1539 |
-
msgid "Top Bar"
|
1540 |
-
msgstr "Верхняя панель"
|
1541 |
-
|
1542 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:341
|
1543 |
-
msgid "MultiSite registration"
|
1544 |
-
msgstr "Многосайтовая регистрация"
|
1545 |
-
|
1546 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:354
|
1547 |
-
msgid "Contact Form 7"
|
1548 |
-
msgstr "Contact Form 7"
|
1549 |
-
|
1550 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:358
|
1551 |
-
msgid "bbPress: New Topic"
|
1552 |
-
msgstr "bbPress: Новая дискуссия"
|
1553 |
-
|
1554 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:362
|
1555 |
-
msgid "bbPress: New Reply"
|
1556 |
-
msgstr "bbPress: Новый ответ"
|
1557 |
-
|
1558 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:368
|
1559 |
-
msgid "Other Form"
|
1560 |
-
msgstr "Другая форма"
|
1561 |
-
|
1562 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:434
|
1563 |
-
msgid "No subscribe requests found."
|
1564 |
-
msgstr "Не найдено запросов на подписку."
|
1565 |
-
|
1566 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:456
|
1567 |
-
msgid "All"
|
1568 |
-
msgstr "Всё"
|
1569 |
-
|
1570 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:468
|
1571 |
-
msgid "Checkbox"
|
1572 |
-
msgstr "Флажок "
|
1573 |
-
|
1574 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:529
|
1575 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:543
|
1576 |
-
msgid "Order"
|
1577 |
-
msgstr "Заказ"
|
1578 |
-
|
1579 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:532
|
1580 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:546
|
1581 |
-
msgid "Checkout"
|
1582 |
-
msgstr "Оформить"
|
1583 |
-
|
1584 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:558
|
1585 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:565
|
1586 |
-
msgid "Comment"
|
1587 |
-
msgstr "Комментарий"
|
1588 |
-
|
1589 |
-
#: mailchimp-for-wordpress-pro/includes/tables/class-log-table.php:558
|
1590 |
-
msgid "deleted"
|
1591 |
-
msgstr "удалено"
|
1592 |
-
|
1593 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:8
|
1594 |
-
msgid ""
|
1595 |
-
"Any settings you specify here will override the <a href=\"%s\">general form "
|
1596 |
-
"settings</a>. If no setting is specified, the corresponding general setting "
|
1597 |
-
"value will be used."
|
1598 |
-
msgstr "Все настройки, которые Вы здесь укажете, переопределят <a href=\"%s\">основные настройки форм</a>. Если никаких настроек здесь не указано, то будут использованы соответствующие основные параметры."
|
1599 |
-
|
1600 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:25
|
1601 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:45
|
1602 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:64
|
1603 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:83
|
1604 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:106
|
1605 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:124
|
1606 |
-
msgid "Inherit"
|
1607 |
-
msgstr "Наследовать"
|
1608 |
-
|
1609 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:137
|
1610 |
-
msgid "Send an email copy of the form data?"
|
1611 |
-
msgstr "Отправить копию данных формы по электронной почте?"
|
1612 |
-
|
1613 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:141
|
1614 |
-
msgid ""
|
1615 |
-
"Tick \"yes\" if you want to receive an email with the form data for every "
|
1616 |
-
"sign-up request."
|
1617 |
-
msgstr "Укажите \"Да\" если Вы хотите получать электронное каждый при каждом запросе на подписку."
|
1618 |
|
1619 |
-
#:
|
1620 |
-
msgid "
|
1621 |
-
msgstr "
|
1622 |
-
|
1623 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:150
|
1624 |
-
msgid "Messages"
|
1625 |
-
msgstr "Сообщения"
|
1626 |
-
|
1627 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/optional-form-settings.php:190
|
1628 |
-
msgid "Other errors"
|
1629 |
-
msgstr "Другие ошибки"
|
1630 |
-
|
1631 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:39
|
1632 |
-
msgid "Submit button"
|
1633 |
-
msgstr "Кнопка отправки"
|
1634 |
-
|
1635 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:41
|
1636 |
-
msgid "Subscribe / unsubscribe action"
|
1637 |
-
msgstr "Действие: Подписка или Отписка"
|
1638 |
-
|
1639 |
-
#: mailchimp-for-wordpress-pro/includes/views/metaboxes/required-form-settings.php:90
|
1640 |
-
msgid "Form usage"
|
1641 |
-
msgstr "Статистика использования формы"
|
1642 |
-
|
1643 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:78
|
1644 |
-
msgid ""
|
1645 |
-
"Select \"yes\" if you want to update existing subscribers with the data that"
|
1646 |
-
" is sent."
|
1647 |
-
msgstr "Выберите \"Да\" если вы хотите обновить данные существующих подписчиков используя новые отправляемые данные."
|
1648 |
-
|
1649 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:100
|
1650 |
-
msgid ""
|
1651 |
-
"Use %s in your Contact Form 7 mark-up to add a sign-up checkbox to your CF7 "
|
1652 |
-
"forms."
|
1653 |
-
msgstr "Используйте код \"%s\" в формах дополнения Contact Form 7 чтобы добавить в них поле подписки."
|
1654 |
-
|
1655 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:136
|
1656 |
-
msgid "Custom label texts"
|
1657 |
-
msgstr "Тексты заголовков полей"
|
1658 |
-
|
1659 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-checkbox-settings.php:137
|
1660 |
-
msgid ""
|
1661 |
-
"Override the default checkbox label text for any given checkbox using the "
|
1662 |
-
"fields below."
|
1663 |
-
msgstr "Вместо заголовка по умолчанию будет использоваться текст заголовка, введённый в следующее поле."
|
1664 |
-
|
1665 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:13
|
1666 |
-
msgid "Forms & Settings"
|
1667 |
-
msgstr "Формы и настройки"
|
1668 |
-
|
1669 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-form-settings.php:14
|
1670 |
-
msgid "CSS Styles Builder"
|
1671 |
-
msgstr "Строитель Стилей CSS"
|
1672 |
-
|
1673 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:10
|
1674 |
-
msgid "License & API Settings"
|
1675 |
-
msgstr "Настройки лицензии и API"
|
1676 |
-
|
1677 |
-
#: mailchimp-for-wordpress-pro/includes/views/pages/admin-general-settings.php:113
|
1678 |
-
msgid "No lists were found in your MailChimp account."
|
1679 |
-
msgstr "Не найдено ни одного списка в вашем аккаунте MailChimp."
|
1680 |
-
|
1681 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:10
|
1682 |
-
msgid ""
|
1683 |
-
"Need help? Have a look at the <a href=\"%s\">plugin documentation</a> or "
|
1684 |
-
"email us directly at <a href=\"%s\">support@mc4wp.com</a>."
|
1685 |
-
msgstr "Нужна помощь? Посмотрите <a href=\"%s\">документацию к этому дополнению</a>, или отправьте нам электронное письмо на адрес <a href=\"%s\">support@mc4wp.com</a>."
|
1686 |
-
|
1687 |
-
#: mailchimp-for-wordpress-pro/includes/views/parts/admin-footer.php:11
|
1688 |
-
msgid ""
|
1689 |
-
"Please use the same email address as you used when purchasing the plugin."
|
1690 |
-
msgstr "Пожалуйста укажите email-адрес, на который была произведена покупка лицензии."
|
1691 |
-
|
1692 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:11
|
1693 |
-
msgid "Use the fields below to create custom styling rules for your forms."
|
1694 |
-
msgstr "Используйте следующие поля чтобы указать Ваши собственные правила стилей в Ваших формах."
|
1695 |
-
|
1696 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:16
|
1697 |
-
msgid ""
|
1698 |
-
"Tip: have a look at our <a href=\"%s\">knowledge base</a> articles on <a "
|
1699 |
-
"href=\"%s\">creating an inline form</a> or <a href=\"%s\">styling your "
|
1700 |
-
"form</a> in general."
|
1701 |
-
msgstr "Подсказка: смотрите статьи в нашей <a href=\"%s\">базе знаний</a> по темам <a href=\"%s\">Creating an Inline Form</a> или <a href=\"%s\">Styling Your Form</a> ."
|
1702 |
-
|
1703 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:22
|
1704 |
-
msgid ""
|
1705 |
-
"You are not loading your custom stylesheet at this moment. To apply these "
|
1706 |
-
"styles on your site, select \"load custom form styles\" in the <a "
|
1707 |
-
"href=\"%s\">MailChimp for WordPress form settings</a>."
|
1708 |
-
msgstr "Ваши собственные таблицы стилей сейчас не грузятся. Чтобы включить их использование на Вашем сайте, включите параметр \"Загрузить собственные стили форм\" на странице <a href=\"%s\">Настройки форм MailChimp for WordPress</a>."
|
1709 |
-
|
1710 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:30
|
1711 |
-
msgid "Select form to build styles for:"
|
1712 |
-
msgstr "Выберите форму для создания её стилей:"
|
1713 |
-
|
1714 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:41
|
1715 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:285
|
1716 |
-
msgid "Create at least one form first."
|
1717 |
-
msgstr "Сначала создайте хотя бы одну форму."
|
1718 |
-
|
1719 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:57
|
1720 |
-
msgid "You need to have JavaScript enabled to see a preview of your form."
|
1721 |
-
msgstr "Для предварительного просмотра формы необходимо включить поддержку JavaScript."
|
1722 |
-
|
1723 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:62
|
1724 |
-
msgid "Form container style"
|
1725 |
-
msgstr "Стиль контейнера формы"
|
1726 |
-
|
1727 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:66
|
1728 |
-
msgid "Form width"
|
1729 |
-
msgstr "Ширина формы"
|
1730 |
-
|
1731 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:66
|
1732 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:118
|
1733 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:160
|
1734 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:202
|
1735 |
-
msgid "px or %"
|
1736 |
-
msgstr "px либо %"
|
1737 |
-
|
1738 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:70
|
1739 |
-
msgid "Text alignment"
|
1740 |
-
msgstr "Выравнивание текста"
|
1741 |
-
|
1742 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:73
|
1743 |
-
msgid "Choose alignment"
|
1744 |
-
msgstr "Выберите выравнивание"
|
1745 |
-
|
1746 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:74
|
1747 |
-
msgid "Left"
|
1748 |
-
msgstr "Влево"
|
1749 |
-
|
1750 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:75
|
1751 |
-
msgid "Center"
|
1752 |
-
msgstr "По центру"
|
1753 |
-
|
1754 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:76
|
1755 |
-
msgid "Right"
|
1756 |
-
msgstr "Вправо"
|
1757 |
-
|
1758 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:81
|
1759 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:210
|
1760 |
-
msgid "Background color"
|
1761 |
-
msgstr "Цвет фона"
|
1762 |
-
|
1763 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:83
|
1764 |
-
msgid "Padding"
|
1765 |
-
msgstr "Внутренние отступы"
|
1766 |
-
|
1767 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:89
|
1768 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:168
|
1769 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:219
|
1770 |
-
msgid "Border color"
|
1771 |
-
msgstr "Цвет границы"
|
1772 |
-
|
1773 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:91
|
1774 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:170
|
1775 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:215
|
1776 |
-
msgid "Border width"
|
1777 |
-
msgstr "Толщина границы"
|
1778 |
-
|
1779 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:95
|
1780 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:126
|
1781 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:228
|
1782 |
-
msgid "Text color"
|
1783 |
-
msgstr "Цвет текста"
|
1784 |
-
|
1785 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:97
|
1786 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:128
|
1787 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:230
|
1788 |
-
msgid "Text size"
|
1789 |
-
msgstr "Размер текста"
|
1790 |
-
|
1791 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:101
|
1792 |
-
msgid "Background image"
|
1793 |
-
msgstr "Фоновое изображение"
|
1794 |
-
|
1795 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:114
|
1796 |
-
msgid "Label styles"
|
1797 |
-
msgstr "Стиль заголовков"
|
1798 |
-
|
1799 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:118
|
1800 |
-
msgid "Label width"
|
1801 |
-
msgstr "Ширина заголовков"
|
1802 |
-
|
1803 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:132
|
1804 |
-
msgid "Text style"
|
1805 |
-
msgstr "Стиль текста"
|
1806 |
-
|
1807 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:135
|
1808 |
-
msgid "Choose text style.."
|
1809 |
-
msgstr "Выберите стиль текста..."
|
1810 |
-
|
1811 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:136
|
1812 |
-
msgid "Normal"
|
1813 |
-
msgstr "Нормальный"
|
1814 |
-
|
1815 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:137
|
1816 |
-
msgid "Bold"
|
1817 |
-
msgstr "Полужирный"
|
1818 |
-
|
1819 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:138
|
1820 |
-
msgid "Italic"
|
1821 |
-
msgstr "Наклонный"
|
1822 |
-
|
1823 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:139
|
1824 |
-
msgid "Bold & Italic"
|
1825 |
-
msgstr "Полужирный и наклонный"
|
1826 |
-
|
1827 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:142
|
1828 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:174
|
1829 |
-
msgid "Display"
|
1830 |
-
msgstr "Отображение"
|
1831 |
-
|
1832 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:146
|
1833 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:178
|
1834 |
-
msgid "Inline"
|
1835 |
-
msgstr "Встрочное"
|
1836 |
-
|
1837 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:147
|
1838 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:179
|
1839 |
-
msgid "New line"
|
1840 |
-
msgstr "На новой строке"
|
1841 |
-
|
1842 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:156
|
1843 |
-
msgid "Field styles"
|
1844 |
-
msgstr "Стили полей"
|
1845 |
-
|
1846 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:160
|
1847 |
-
msgid "Field width"
|
1848 |
-
msgstr "Ширина поля"
|
1849 |
-
|
1850 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:164
|
1851 |
-
msgid "Field height"
|
1852 |
-
msgstr "Высота поля"
|
1853 |
-
|
1854 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:182
|
1855 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:224
|
1856 |
-
msgid "Border radius"
|
1857 |
-
msgstr "Радиус изгиба границы"
|
1858 |
-
|
1859 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:186
|
1860 |
-
msgid "Focus outline"
|
1861 |
-
msgstr "Выделение текущего поля"
|
1862 |
-
|
1863 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:198
|
1864 |
-
msgid "Button styles"
|
1865 |
-
msgstr "Стиль кнопок"
|
1866 |
-
|
1867 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:202
|
1868 |
-
msgid "Button width"
|
1869 |
-
msgstr "Ширина кнопок"
|
1870 |
-
|
1871 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:206
|
1872 |
-
msgid "Button height"
|
1873 |
-
msgstr "Высота кнопок"
|
1874 |
-
|
1875 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:238
|
1876 |
-
msgid "Error and success messages"
|
1877 |
-
msgstr "Сообщения об удачах и ошибках"
|
1878 |
-
|
1879 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:242
|
1880 |
-
msgid "Success text color"
|
1881 |
-
msgstr "Цвет сообщения об удаче"
|
1882 |
-
|
1883 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:244
|
1884 |
-
msgid "Error text color"
|
1885 |
-
msgstr "Цвет сообщения об ошибке"
|
1886 |
-
|
1887 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:252
|
1888 |
-
msgid "Advanced"
|
1889 |
-
msgstr "Дополнительно"
|
1890 |
-
|
1891 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:256
|
1892 |
-
msgid "CSS Selector Prefix"
|
1893 |
-
msgstr "Префикс селектора CSS"
|
1894 |
-
|
1895 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:258
|
1896 |
-
msgid ""
|
1897 |
-
"Use this to create a more specific (and thus more \"important\") CSS "
|
1898 |
-
"selector."
|
1899 |
-
msgstr "Можно использовать этот параметр для создания более специфического (и тем самым \"более важного\") селектора CSS."
|
1900 |
-
|
1901 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:261
|
1902 |
-
msgid "Manual CSS"
|
1903 |
-
msgstr "Введённые вручную правила CSS"
|
1904 |
-
|
1905 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:261
|
1906 |
-
msgid ""
|
1907 |
-
"The CSS rules you enter here will be appended to the custom stylesheet."
|
1908 |
-
msgstr "Правила CSS, которые Вы введёте в это поле, будут добавлены к основной таблице стилей."
|
1909 |
-
|
1910 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:269
|
1911 |
-
msgid "Copy styles from other form"
|
1912 |
-
msgstr "Скопировать стили из другой формы"
|
1913 |
-
|
1914 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:283
|
1915 |
-
msgid "Copy Styles"
|
1916 |
-
msgstr "Скопировать стили"
|
1917 |
-
|
1918 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:283
|
1919 |
-
msgid ""
|
1920 |
-
"Are you sure you want to copy form styles from another form? This will "
|
1921 |
-
"overwrite current styles for this form."
|
1922 |
-
msgstr "Вы уверены что хотите скопировать стили из другой формы? Это удалит из текущей формы все стили, которые Вы задали раньше."
|
1923 |
-
|
1924 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:298
|
1925 |
-
msgid "Are you sure you want to delete all custom styles for this form?"
|
1926 |
-
msgstr "Вы действительно хотите удалить все специальные стили для этой формы?"
|
1927 |
-
|
1928 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:298
|
1929 |
-
msgid "Delete Form Styles"
|
1930 |
-
msgstr "Удалить стили для формы"
|
1931 |
-
|
1932 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-css-builder.php:305
|
1933 |
-
msgid "Form preview"
|
1934 |
-
msgstr "Предварительный просмотр формы"
|
1935 |
-
|
1936 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:8
|
1937 |
-
msgid "Sign-Up Forms"
|
1938 |
-
msgstr "Форма подписки"
|
1939 |
-
|
1940 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:8
|
1941 |
-
msgid "Create New Form"
|
1942 |
-
msgstr "Создать новую форму"
|
1943 |
|
1944 |
-
#:
|
1945 |
-
msgid "
|
1946 |
-
msgstr "
|
1947 |
|
1948 |
-
#:
|
1949 |
msgid ""
|
1950 |
-
"
|
1951 |
-
"
|
1952 |
-
|
1953 |
-
msgstr "Если вы %sсоздали дополнительные css-стили%s и хотите, чтобы они были загружены, выберите \"Дополнительные стили формы\". В противном случае, выберите основные стили или одну из тем по умолчанию."
|
1954 |
-
|
1955 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:40
|
1956 |
-
msgid "Select Color"
|
1957 |
-
msgstr "Выберите цвет"
|
1958 |
-
|
1959 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:48
|
1960 |
-
msgid "Save all changes"
|
1961 |
-
msgstr "Сохранить все изменения"
|
1962 |
-
|
1963 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:50
|
1964 |
-
msgid "Default MailChimp settings"
|
1965 |
-
msgstr "Настройки MailChimp по умолчанию"
|
1966 |
|
1967 |
-
#:
|
1968 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:109
|
1969 |
msgid ""
|
1970 |
-
"
|
1971 |
-
"
|
1972 |
-
msgstr "
|
1973 |
|
1974 |
-
#:
|
1975 |
-
msgid "
|
1976 |
-
msgstr "
|
1977 |
|
1978 |
-
|
1979 |
-
msgid ""
|
1980 |
-
"
|
1981 |
-
"including <code>http://</code>."
|
1982 |
-
msgstr "Оставьте пустым, чтобы не делать перенаправление. В остальных случаях используйте полные (абсолютные) адреса, начинающиеся с <code>http://</code>."
|
1983 |
-
|
1984 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-forms-general-settings.php:137
|
1985 |
-
msgid "Default Messages"
|
1986 |
-
msgstr "Сообщения по умолчанию"
|
1987 |
-
|
1988 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:15
|
1989 |
-
msgid "Today"
|
1990 |
-
msgstr "Сегодня"
|
1991 |
-
|
1992 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:16
|
1993 |
-
msgid "Yesterday"
|
1994 |
-
msgstr "Вчера"
|
1995 |
-
|
1996 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:17
|
1997 |
-
msgid "Last Week"
|
1998 |
-
msgstr "На прошлой неделе"
|
1999 |
-
|
2000 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:18
|
2001 |
-
msgid "Last Month"
|
2002 |
-
msgstr "В прошлом месяце"
|
2003 |
-
|
2004 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:19
|
2005 |
-
msgid "Last Quarter"
|
2006 |
-
msgstr "В прошлом квартале"
|
2007 |
-
|
2008 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:20
|
2009 |
-
msgid "Last Year"
|
2010 |
-
msgstr "За последний год"
|
2011 |
-
|
2012 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:21
|
2013 |
-
msgid "Custom"
|
2014 |
-
msgstr "Другие"
|
2015 |
-
|
2016 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:25
|
2017 |
-
msgid "From"
|
2018 |
-
msgstr "От"
|
2019 |
-
|
2020 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:32
|
2021 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:57
|
2022 |
-
msgid "Jan"
|
2023 |
-
msgstr "Янв"
|
2024 |
-
|
2025 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:33
|
2026 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:58
|
2027 |
-
msgid "Feb"
|
2028 |
-
msgstr "Фев"
|
2029 |
-
|
2030 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:34
|
2031 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:59
|
2032 |
-
msgid "Mar"
|
2033 |
-
msgstr "Мар"
|
2034 |
-
|
2035 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:35
|
2036 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:60
|
2037 |
-
msgid "Apr"
|
2038 |
-
msgstr "Апр"
|
2039 |
-
|
2040 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:36
|
2041 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:61
|
2042 |
-
msgid "May"
|
2043 |
-
msgstr "Май"
|
2044 |
-
|
2045 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:37
|
2046 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:62
|
2047 |
-
msgid "Jun"
|
2048 |
-
msgstr "Июнь"
|
2049 |
-
|
2050 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:38
|
2051 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:63
|
2052 |
-
msgid "Jul"
|
2053 |
-
msgstr "Июль"
|
2054 |
-
|
2055 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:39
|
2056 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:64
|
2057 |
-
msgid "Aug"
|
2058 |
-
msgstr "Авг"
|
2059 |
-
|
2060 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:40
|
2061 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:65
|
2062 |
-
msgid "Sep"
|
2063 |
-
msgstr "Сен"
|
2064 |
-
|
2065 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:41
|
2066 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:66
|
2067 |
-
msgid "Oct"
|
2068 |
-
msgstr "Окт"
|
2069 |
-
|
2070 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:42
|
2071 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:67
|
2072 |
-
msgid "Nov"
|
2073 |
-
msgstr "Ноя"
|
2074 |
-
|
2075 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:43
|
2076 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:68
|
2077 |
-
msgid "Dec"
|
2078 |
-
msgstr "Дек"
|
2079 |
-
|
2080 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:50
|
2081 |
-
msgid "To"
|
2082 |
-
msgstr "К"
|
2083 |
-
|
2084 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:76
|
2085 |
-
msgid "Filter"
|
2086 |
-
msgstr "Фильтр"
|
2087 |
-
|
2088 |
-
#: mailchimp-for-wordpress-pro/includes/views/tabs/admin-reports-statistics.php:83
|
2089 |
-
msgid "Show these lines:"
|
2090 |
-
msgstr "Показать эти строки:"
|
2091 |
|
2092 |
#. Plugin URI of the plugin/theme
|
2093 |
-
msgid "
|
2094 |
-
|
|
|
|
|
2095 |
|
2096 |
#. Description of the plugin/theme
|
2097 |
-
msgid "
|
2098 |
-
|
|
|
|
|
2099 |
|
2100 |
#. Author of the plugin/theme
|
2101 |
-
msgid "
|
2102 |
-
msgstr "
|
2103 |
|
2104 |
#. Author URI of the plugin/theme
|
2105 |
-
msgid "
|
2106 |
-
msgstr "
|
1 |
+
# Copyright (C) 2015 MailChimp for WordPress
|
2 |
+
# This file is distributed under the same license as the MailChimp for WordPress package.
|
3 |
# Translators:
|
4 |
# Alex Starshyn <nudnyj@gmail.com>, 2015
|
5 |
# Al Po <digows@gmail.com>, 2015
|
9 |
# Eugen Morozov <burateen@gmail.com>, 2015
|
10 |
# Serge Yurovsky <serge@theleftlane.com>, 2014
|
11 |
# Vadim <sfai.88@gmail.com>, 2015
|
12 |
+
# Инна <vorobinn@yandex.ru>, 2015
|
13 |
msgid ""
|
14 |
msgstr ""
|
15 |
"Project-Id-Version: MailChimp for WordPress\n"
|
16 |
+
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/mailchimp-for-wp\n"
|
17 |
+
"POT-Creation-Date: 2015-11-30 10:15:18+00:00\n"
|
18 |
+
"PO-Revision-Date: 2015-12-07 06:47+0000\n"
|
19 |
+
"Last-Translator: Инна <vorobinn@yandex.ru>\n"
|
20 |
"Language-Team: Russian (Russia) (http://www.transifex.com/ibericode/mailchimp-for-wordpress/language/ru_RU/)\n"
|
21 |
"MIME-Version: 1.0\n"
|
22 |
"Content-Type: text/plain; charset=UTF-8\n"
|
23 |
"Content-Transfer-Encoding: 8bit\n"
|
24 |
"Language: ru_RU\n"
|
25 |
"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n"
|
26 |
+
|
27 |
+
#: config/default-form-content.php:3
|
28 |
+
msgid "Email address"
|
29 |
+
msgstr "Адрес Email"
|
30 |
+
|
31 |
+
#: config/default-form-content.php:4
|
32 |
+
msgid "Your email address"
|
33 |
+
msgstr "Ваш адрес email"
|
34 |
+
|
35 |
+
#: config/default-form-content.php:5
|
36 |
+
msgid "Sign up"
|
37 |
+
msgstr "Регистрация"
|
38 |
+
|
39 |
+
#: config/default-form-messages.php:5
|
40 |
+
msgid ""
|
41 |
+
"Thank you, your sign-up request was successful! Please check your email "
|
42 |
+
"inbox to confirm."
|
43 |
+
msgstr "Спасибо, Ваш запрос на подписку был принят. Пожалуйста, проверьте свою электронную почту чтобы подтвердить подписку."
|
44 |
+
|
45 |
+
#: config/default-form-messages.php:9
|
46 |
+
msgid "Oops. Something went wrong. Please try again later."
|
47 |
+
msgstr "Оп-па. Что-то пошло не так. Пожалуйста, попробуйте ещё раз позже."
|
48 |
+
|
49 |
+
#: config/default-form-messages.php:13
|
50 |
+
msgid "Please provide a valid email address."
|
51 |
+
msgstr "Пожалуйста, введите правильный адрес email."
|
52 |
+
|
53 |
+
#: config/default-form-messages.php:17
|
54 |
+
msgid "Given email address is already subscribed, thank you!"
|
55 |
+
msgstr "Указанный адрес email уже включен в рассылку, спасибо!"
|
56 |
+
|
57 |
+
#: config/default-form-messages.php:21
|
58 |
+
msgid "Please fill in the required fields."
|
59 |
+
msgstr "Пожалуйста, заполните требуемые поля."
|
60 |
+
|
61 |
+
#: config/default-form-messages.php:25
|
62 |
+
msgid "You were successfully unsubscribed."
|
63 |
+
msgstr "Вы были отписаны от рассылки."
|
64 |
+
|
65 |
+
#: config/default-form-messages.php:29
|
66 |
+
msgid "Given email address is not subscribed."
|
67 |
+
msgstr "Указанный адрес email не был включен в подписку."
|
68 |
+
|
69 |
+
#: config/default-form-messages.php:33
|
70 |
+
msgid "Please select at least one list."
|
71 |
+
msgstr "Пожалуйста, выберите хотя бы один список"
|
72 |
+
|
73 |
+
#: config/default-integration-options.php:5
|
74 |
+
msgid "Sign me up for the newsletter!"
|
75 |
+
msgstr "Хочу подписаться на новости!"
|
76 |
+
|
77 |
+
#: includes/admin/class-admin-texts.php:62
|
78 |
+
#: includes/forms/views/edit-form.php:6
|
79 |
msgid "Settings"
|
80 |
msgstr "Настройки"
|
81 |
|
82 |
+
#: includes/admin/class-admin-texts.php:80
|
83 |
+
msgid "Documentation"
|
84 |
+
msgstr "Документация"
|
85 |
+
|
86 |
+
#: includes/admin/class-admin.php:167
|
87 |
+
msgid ""
|
88 |
+
"Success! The cached configuration for your MailChimp lists has been renewed."
|
89 |
+
msgstr ""
|
90 |
|
91 |
+
#: includes/admin/class-admin.php:257
|
92 |
+
msgid ""
|
93 |
+
"This is a pro-only feature. Please upgrade to the premium version to be able"
|
94 |
+
" to use it."
|
95 |
+
msgstr ""
|
96 |
+
|
97 |
+
#: includes/admin/class-admin.php:323 includes/views/general-settings.php:28
|
98 |
msgid "MailChimp API Settings"
|
99 |
msgstr "Настройки MailChimp API"
|
100 |
|
101 |
+
#: includes/admin/class-admin.php:324
|
102 |
+
#: integrations/ninja-forms/class-ninja-forms.php:34
|
103 |
msgid "MailChimp"
|
104 |
msgstr "MailChimp"
|
105 |
|
106 |
+
#: includes/admin/class-ads.php:33
|
107 |
+
msgid "Upgrade to MailChimp for WordPress Pro"
|
108 |
+
msgstr "Обновите до версии <b>MailChimp for WordPress Pro</b>"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
109 |
|
110 |
+
#: includes/admin/class-ads.php:41
|
111 |
+
msgid ""
|
112 |
+
"Enjoying this plugin? <a href=\"%s\">Purchase our bundle of premium "
|
113 |
+
"features</a> for an even better plugin."
|
114 |
+
msgstr ""
|
115 |
+
|
116 |
+
#: includes/admin/class-ads.php:62
|
117 |
+
msgid "More subscribers, better newsletters."
|
118 |
+
msgstr "Чем больше подписчиков, тем эффективнее рассылка"
|
119 |
|
120 |
+
#: includes/admin/class-ads.php:63
|
121 |
+
msgid ""
|
122 |
+
"Learn how to best grow your lists & write better emails by subscribing to "
|
123 |
+
"our monthly tips."
|
124 |
+
msgstr "Узнайте, как лучше пополнять Ваши списки и лучше писать электронные письма, подписавшись на получение наших подсказок раз в месяц"
|
125 |
+
|
126 |
+
#: includes/admin/class-ads.php:66
|
127 |
+
msgid "Email Address"
|
128 |
+
msgstr "Адрес е-мэйл"
|
129 |
+
|
130 |
+
#: includes/admin/class-ads.php:70
|
131 |
+
msgid "First Name"
|
132 |
+
msgstr "Имя"
|
133 |
+
|
134 |
+
#: includes/admin/class-ads.php:77
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
135 |
msgid "Subscribe"
|
136 |
msgstr "Подписаться"
|
137 |
|
138 |
+
#: includes/admin/class-usage-tracking.php:57
|
139 |
+
msgid "Once a month"
|
140 |
+
msgstr "Один раз в месяц"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
|
142 |
+
#: includes/admin/migrations/3.0-form-1-post-type.php:35
|
143 |
+
msgid "Default sign-up form"
|
144 |
+
msgstr "Форма подписки по умолчанию"
|
|
|
145 |
|
146 |
+
#: includes/class-api.php:83
|
147 |
+
msgid "Read more about common connectivity issues."
|
148 |
+
msgstr ""
|
|
|
149 |
|
150 |
+
#: includes/forms/class-admin.php:71 includes/forms/class-admin.php:72
|
151 |
+
#: includes/forms/views/edit-form.php:17
|
152 |
+
msgid "Forms"
|
153 |
+
msgstr "Формы"
|
154 |
|
155 |
+
#: includes/forms/class-admin.php:101 includes/forms/class-admin.php:176
|
156 |
+
msgid "<strong>Success!</strong> Form successfully saved."
|
157 |
+
msgstr "Успех! Форма успешно сохранена"
|
158 |
|
159 |
+
#: includes/forms/class-admin.php:176
|
160 |
+
msgid "Preview form"
|
161 |
+
msgstr "Предпросмотр формы"
|
|
|
162 |
|
163 |
+
#: includes/forms/class-admin.php:279
|
164 |
+
msgid "Form not found."
|
165 |
+
msgstr "Форма не найдена"
|
|
|
166 |
|
167 |
+
#: includes/forms/class-admin.php:281
|
168 |
+
msgid "Go back"
|
169 |
+
msgstr "Вернуться назад"
|
|
|
|
|
170 |
|
171 |
+
#: includes/forms/class-form-previewer.php:162
|
172 |
+
msgid "Form preview"
|
173 |
+
msgstr "Предварительный просмотр формы"
|
|
|
|
|
174 |
|
175 |
+
#: includes/forms/class-form-tags.php:51
|
176 |
+
msgid "Replaced with the form response (error or success messages)."
|
177 |
+
msgstr "Результат работы формы (сообщение об ошибке или успехе)."
|
|
|
|
|
178 |
|
179 |
+
#: includes/forms/class-form-tags.php:56
|
180 |
+
msgid "Data from the URL or a submitted form."
|
181 |
+
msgstr ""
|
|
|
|
|
182 |
|
183 |
+
#: includes/forms/class-form-tags.php:62
|
184 |
+
#: includes/integrations/class-integration-tags.php:45
|
185 |
+
msgid "Replaced with the number of subscribers on the selected list(s)"
|
186 |
+
msgstr "Количество подписчиков в выбранном списке (или списках)"
|
187 |
|
188 |
+
#: includes/forms/class-form-tags.php:67
|
189 |
+
msgid "The email address of the current visitor (if known)."
|
190 |
+
msgstr "Адрес е-мэйл от текущего посетителя (если нужно)"
|
|
|
|
|
191 |
|
192 |
+
#: includes/forms/class-form-tags.php:72
|
193 |
+
msgid "The URL of the page."
|
194 |
+
msgstr "URL данной страницы"
|
|
|
195 |
|
196 |
+
#: includes/forms/class-form-tags.php:77
|
197 |
+
msgid "The path of the page."
|
198 |
+
msgstr ""
|
|
|
199 |
|
200 |
+
#: includes/forms/class-form-tags.php:82
|
201 |
+
msgid "The current date. Example: %s."
|
202 |
+
msgstr "Текущие данные. Пример:"
|
|
|
203 |
|
204 |
+
#: includes/forms/class-form-tags.php:87
|
205 |
+
msgid "The current time. Example: %s."
|
206 |
+
msgstr "Текущее время. Пример:"
|
|
|
207 |
|
208 |
+
#: includes/forms/class-form-tags.php:92
|
209 |
+
msgid "The site's language. Example: %s."
|
210 |
+
msgstr "Язык сайта. Пример:"
|
|
|
211 |
|
212 |
+
#: includes/forms/class-form-tags.php:97
|
213 |
+
msgid "The visitor's IP address. Example: %s."
|
214 |
+
msgstr "IP-адрес посетителя. Пример:"
|
|
|
215 |
|
216 |
+
#: includes/forms/class-form-tags.php:102
|
217 |
+
msgid "The property of the currently logged-in user."
|
218 |
+
msgstr ""
|
|
|
219 |
|
220 |
+
#: includes/forms/class-form.php:128
|
221 |
+
msgid "There is no form with ID %d, perhaps it was deleted?"
|
222 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
223 |
|
224 |
+
#: includes/forms/class-widget.php:26
|
225 |
+
msgid "Newsletter"
|
226 |
+
msgstr "Рассылка"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
|
228 |
+
#: includes/forms/class-widget.php:30
|
229 |
+
msgid "MailChimp Sign-Up Form"
|
230 |
+
msgstr "Форма регистрации MailChimp"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
231 |
|
232 |
+
#: includes/forms/class-widget.php:32
|
233 |
+
msgid "Displays your MailChimp for WordPress sign-up form"
|
234 |
+
msgstr "Отображает форму регистрации MailChimp для WordPress"
|
235 |
|
236 |
+
#: includes/forms/class-widget.php:75
|
237 |
+
msgid "Title:"
|
238 |
+
msgstr "Название:"
|
|
|
|
|
239 |
|
240 |
+
#: includes/forms/class-widget.php:92
|
241 |
+
msgid ""
|
242 |
+
"You can edit your sign-up form in the <a href=\"%s\">MailChimp for WordPress"
|
243 |
+
" form settings</a>."
|
244 |
+
msgstr "Вы можете отредактировать вашу форму подписки в <a href=\"%s\">настройках MailChimp для WordPress</a>."
|
245 |
|
246 |
+
#: includes/forms/views/add-form.php:10 includes/forms/views/add-form.php:60
|
247 |
+
msgid "Add new form"
|
248 |
+
msgstr "Добавить новую форму"
|
|
|
249 |
|
250 |
+
#: includes/forms/views/add-form.php:27
|
251 |
+
msgid "What is the name of this form?"
|
252 |
+
msgstr "Какое название у этой формы?"
|
|
|
253 |
|
254 |
+
#: includes/forms/views/add-form.php:30
|
255 |
+
msgid "Enter your form title.."
|
256 |
+
msgstr "Введите наименование формы"
|
|
|
257 |
|
258 |
+
#: includes/forms/views/add-form.php:37
|
259 |
+
msgid "To which MailChimp lists should this form subscribe?"
|
260 |
+
msgstr "К какому списку MailChimp данная форма подписывает?"
|
|
|
261 |
|
262 |
+
#: includes/forms/views/add-form.php:54
|
263 |
+
msgid "No lists found. Did you <a href=\"%s\">connect with MailChimp</a>?"
|
264 |
+
msgstr "Ни одного списка не найдено. Вы соединены с MailChimp?"
|
|
|
265 |
|
266 |
+
#: includes/forms/views/edit-form.php:4
|
267 |
+
msgid "Fields"
|
268 |
+
msgstr "Поля"
|
|
|
269 |
|
270 |
+
#: includes/forms/views/edit-form.php:5
|
271 |
+
msgid "Messages"
|
272 |
+
msgstr "Сообщения"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
273 |
|
274 |
+
#: includes/forms/views/edit-form.php:7
|
275 |
+
msgid "Appearance"
|
276 |
+
msgstr ""
|
277 |
|
278 |
+
#: includes/forms/views/edit-form.php:15
|
279 |
+
#: includes/integrations/views/integration-settings.php:8
|
280 |
+
#: includes/integrations/views/integrations.php:7
|
281 |
+
#: includes/views/general-settings.php:7
|
282 |
+
msgid "You are here: "
|
283 |
+
msgstr "Вы здесь"
|
284 |
|
285 |
+
#: includes/forms/views/edit-form.php:27
|
286 |
+
msgid "Edit Form"
|
287 |
+
msgstr "Изменить форму"
|
|
|
288 |
|
289 |
+
#: includes/forms/views/edit-form.php:45
|
290 |
+
msgid "Enter form title here"
|
291 |
+
msgstr "Введите наименование формы здесь"
|
|
|
|
|
|
|
292 |
|
293 |
+
#: includes/forms/views/edit-form.php:46
|
294 |
+
msgid "Enter the title of your sign-up form"
|
295 |
+
msgstr "Введите название вашей формы подписки"
|
|
|
296 |
|
297 |
+
#: includes/forms/views/edit-form.php:54
|
298 |
+
msgid "Get shortcode"
|
299 |
+
msgstr ""
|
|
|
|
|
|
|
300 |
|
301 |
+
#: includes/forms/views/edit-form.php:59
|
302 |
+
msgid "Preview this form"
|
303 |
+
msgstr "Предпросмотр этой формы"
|
|
|
|
|
|
|
304 |
|
305 |
+
#: includes/forms/views/parts/add-fields-help.php:4
|
306 |
+
#: includes/forms/views/tabs/form-fields.php:10
|
307 |
+
msgid "Add more fields"
|
308 |
+
msgstr "Добавить больше полей"
|
|
|
|
|
|
|
309 |
|
310 |
+
#: includes/forms/views/parts/add-fields-help.php:9
|
|
|
|
|
|
|
|
|
311 |
msgid ""
|
312 |
+
"To add more fields to your form, you will need to create those fields in "
|
313 |
+
"MailChimp first."
|
314 |
+
msgstr "Чтобы добавить больше полей в Вашу форму, Вам нужно сначала создать эти поля в MailChimp"
|
315 |
|
316 |
+
#: includes/forms/views/parts/add-fields-help.php:12
|
317 |
+
msgid "Here's how:"
|
318 |
+
msgstr ""
|
|
|
319 |
|
320 |
+
#: includes/forms/views/parts/add-fields-help.php:17
|
321 |
+
msgid "Log in to your MailChimp account."
|
322 |
+
msgstr "Войдите в ваш аккаунт MailChimp"
|
|
|
323 |
|
324 |
+
#: includes/forms/views/parts/add-fields-help.php:22
|
325 |
+
msgid "Add list fields to any of your selected lists."
|
326 |
+
msgstr "Добавьте поля списка в любой из Ваших выбранных списков"
|
|
|
327 |
|
328 |
+
#: includes/forms/views/parts/add-fields-help.php:23
|
329 |
+
msgid "Clicking the following links will take you to the right screen."
|
330 |
+
msgstr "Щелкнув по следующим линиям, перейдете к правому экрану"
|
|
|
331 |
|
332 |
+
#: includes/forms/views/parts/add-fields-help.php:29
|
333 |
+
msgid "Edit list fields for"
|
334 |
+
msgstr "Редактировать поля списка для"
|
|
|
|
|
335 |
|
336 |
+
#: includes/forms/views/parts/add-fields-help.php:38
|
337 |
+
msgid ""
|
338 |
+
"Click the following button to have MailChimp for WordPress pick up on your "
|
339 |
+
"changes."
|
340 |
+
msgstr ""
|
341 |
|
342 |
+
#: includes/forms/views/parts/add-fields-help.php:43
|
343 |
+
#: includes/views/parts/lists-overview.php:8
|
344 |
+
msgid "Renew MailChimp lists"
|
345 |
+
msgstr "Обновить списки MailChimp"
|
346 |
|
347 |
+
#: includes/forms/views/parts/dynamic-content-tags.php:6
|
348 |
+
msgid "Add dynamic form variable"
|
349 |
+
msgstr ""
|
350 |
+
|
351 |
+
#: includes/forms/views/parts/dynamic-content-tags.php:8
|
352 |
+
msgid ""
|
353 |
+
"The following list of variables can be used to <a href=\"%s\">add some "
|
354 |
+
"dynamic content to your form or success and error messages</a>."
|
355 |
+
msgstr "Переменные из этого перечня можно использовать для <a href=\"%s\">добавления динамического содержимого</a> в ваши формы или сообщения."
|
356 |
|
357 |
+
#: includes/forms/views/parts/dynamic-content-tags.php:8
|
358 |
+
msgid "This allows you to personalise your form or response messages."
|
359 |
+
msgstr "Эти настройки позволяют Вам персонализировать формы или сообщения, показываемые посетителям."
|
|
|
360 |
|
361 |
+
#: includes/forms/views/tabs/form-appearance.php:5
|
362 |
+
msgid "Inherit from %s theme"
|
363 |
+
msgstr ""
|
|
|
364 |
|
365 |
+
#: includes/forms/views/tabs/form-appearance.php:6
|
366 |
+
msgid "Basic"
|
367 |
+
msgstr ""
|
|
|
368 |
|
369 |
+
#: includes/forms/views/tabs/form-appearance.php:7
|
370 |
+
msgid "Form Themes"
|
371 |
+
msgstr "Темы формы"
|
|
|
|
|
372 |
|
373 |
+
#: includes/forms/views/tabs/form-appearance.php:8
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
374 |
msgid "Light Theme"
|
375 |
msgstr "Светлая тема"
|
376 |
|
377 |
+
#: includes/forms/views/tabs/form-appearance.php:9
|
378 |
+
msgid "Dark Theme"
|
379 |
+
msgstr "Темная тема"
|
380 |
+
|
381 |
+
#: includes/forms/views/tabs/form-appearance.php:10
|
382 |
msgid "Red Theme"
|
383 |
msgstr "Красная тема"
|
384 |
|
385 |
+
#: includes/forms/views/tabs/form-appearance.php:11
|
|
|
386 |
msgid "Green Theme"
|
387 |
msgstr "Зеленая тема"
|
388 |
|
389 |
+
#: includes/forms/views/tabs/form-appearance.php:12
|
|
|
390 |
msgid "Blue Theme"
|
391 |
msgstr "Синяя тема"
|
392 |
|
393 |
+
#: includes/forms/views/tabs/form-appearance.php:25
|
394 |
+
msgid "Form Appearance"
|
395 |
+
msgstr ""
|
|
|
396 |
|
397 |
+
#: includes/forms/views/tabs/form-appearance.php:29
|
398 |
+
msgid "Form Style"
|
399 |
+
msgstr "Стиль формы"
|
|
|
400 |
|
401 |
+
#: includes/forms/views/tabs/form-appearance.php:48
|
402 |
msgid ""
|
403 |
"If you want to load some default CSS styles, select \"basic formatting "
|
404 |
"styles\" or choose one of the color themes"
|
405 |
msgstr "Если вы хотите загрузить некоторые изначальные стили CSS, выберите \"простые стили для форм\", или выберите одну из цветовых тем"
|
406 |
|
407 |
+
#: includes/forms/views/tabs/form-fields.php:6
|
408 |
+
msgid "Form variables"
|
409 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
410 |
|
411 |
+
#: includes/forms/views/tabs/form-fields.php:13
|
412 |
+
msgid "Form Fields"
|
413 |
+
msgstr "Поля формы"
|
414 |
|
415 |
+
#: includes/forms/views/tabs/form-fields.php:19
|
416 |
+
msgid "Enter the HTML code for your form fields.."
|
417 |
+
msgstr "Введите HTML-код для полей Вашей формы"
|
|
|
|
|
|
|
418 |
|
419 |
+
#: includes/forms/views/tabs/form-fields.php:27
|
|
|
420 |
msgid "Your form is missing the following (required) form fields:"
|
421 |
msgstr "Ваша форма недосчиталась следующих обязательных полей:"
|
422 |
|
423 |
+
#: includes/forms/views/tabs/form-fields.php:34
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
424 |
msgid ""
|
425 |
+
"Use the shortcode %s to display this form inside a post, page or text "
|
426 |
+
"widget."
|
427 |
+
msgstr "Используйте сокращение \"%s\" чтобы отобразить эту форму внутри поста, страницы или текстового виджета."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
428 |
|
429 |
+
#: includes/forms/views/tabs/form-messages.php:3
|
430 |
+
msgid "Form Messages"
|
431 |
+
msgstr "Сообщения формы"
|
|
|
|
|
|
|
432 |
|
433 |
+
#: includes/forms/views/tabs/form-messages.php:10
|
|
|
434 |
msgid "Successfully subscribed"
|
435 |
msgstr "Подписка завершилась удачно"
|
436 |
|
437 |
+
#: includes/forms/views/tabs/form-messages.php:13
|
|
|
|
|
438 |
msgid ""
|
439 |
"The text that shows when an email address is successfully subscribed to the "
|
440 |
"selected list(s)."
|
441 |
msgstr "Текст, показываемый пользователю после удачного завершения подписки на выбранный список (или списки)."
|
442 |
|
443 |
+
#: includes/forms/views/tabs/form-messages.php:17
|
|
|
|
|
444 |
msgid "Invalid email address"
|
445 |
msgstr "Неправильный email-адрес"
|
446 |
|
447 |
+
#: includes/forms/views/tabs/form-messages.php:20
|
|
|
|
|
448 |
msgid "The text that shows when an invalid email address is given."
|
449 |
msgstr "Тест, показываемый пользователю когда он вводит неправильный email-адрес"
|
450 |
|
451 |
+
#: includes/forms/views/tabs/form-messages.php:24
|
|
|
|
|
452 |
msgid "Required field missing"
|
453 |
msgstr "Обязательное поле не заполнено"
|
454 |
|
455 |
+
#: includes/forms/views/tabs/form-messages.php:27
|
|
|
|
|
456 |
msgid ""
|
457 |
"The text that shows when a required field for the selected list(s) is "
|
458 |
"missing."
|
459 |
msgstr "Тест, показываемый пользователю когда обязательно поле (или поля) остаётся не заполненным."
|
460 |
|
461 |
+
#: includes/forms/views/tabs/form-messages.php:31
|
|
|
|
|
462 |
msgid "Already subscribed"
|
463 |
msgstr "Уже подписан"
|
464 |
|
465 |
+
#: includes/forms/views/tabs/form-messages.php:34
|
|
|
|
|
466 |
msgid ""
|
467 |
"The text that shows when the given email is already subscribed to the "
|
468 |
"selected list(s)."
|
469 |
msgstr "Тест, показываемый пользователю когда его email-адрес уже входит в выбранный список (или списки) подписчиков."
|
470 |
|
471 |
+
#: includes/forms/views/tabs/form-messages.php:38
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
472 |
msgid "General error"
|
473 |
msgstr "Общая ошибка"
|
474 |
|
475 |
+
#: includes/forms/views/tabs/form-messages.php:41
|
|
|
|
|
476 |
msgid "The text that shows when a general error occured."
|
477 |
msgstr "Тест, показываемый при возникновении общей ошибки."
|
478 |
|
479 |
+
#: includes/forms/views/tabs/form-messages.php:45
|
|
|
|
|
480 |
msgid "Unsubscribed"
|
481 |
msgstr "Отписан"
|
482 |
|
483 |
+
#: includes/forms/views/tabs/form-messages.php:48
|
|
|
|
|
484 |
msgid ""
|
485 |
"When using the unsubscribe method, this is the text that shows when the "
|
486 |
"given email address is successfully unsubscribed from the selected list(s)."
|
487 |
msgstr "При выборе команды \"Отписаться\" пользователю будет отображено это сообщение после удачной отписки от выбранного списка (или списков)."
|
488 |
|
489 |
+
#: includes/forms/views/tabs/form-messages.php:52
|
|
|
|
|
490 |
msgid "Not subscribed"
|
491 |
msgstr "Не подписан"
|
492 |
|
493 |
+
#: includes/forms/views/tabs/form-messages.php:55
|
|
|
|
|
494 |
msgid ""
|
495 |
"When using the unsubscribe method, this is the text that shows when the "
|
496 |
"given email address is not on the selected list(s)."
|
497 |
msgstr "При выборе команды \"Отписаться\" пользователю будет отображено это сообщение если его email-адрес не состоял в выбранном списке (или списках)."
|
498 |
|
499 |
+
#: includes/forms/views/tabs/form-messages.php:64
|
|
|
|
|
500 |
msgid "HTML tags like %s are allowed in the message fields."
|
501 |
msgstr "В полях сообщения разрешены такие HTML-теги, как \"%s\"."
|
502 |
|
503 |
+
#: includes/forms/views/tabs/form-settings.php:1
|
504 |
+
msgid "Form Settings"
|
505 |
+
msgstr "Настройки формы"
|
506 |
|
507 |
+
#: includes/forms/views/tabs/form-settings.php:5
|
508 |
+
msgid "MailChimp specific settings"
|
509 |
+
msgstr "Особые настройки MailChimp"
|
510 |
|
511 |
+
#: includes/forms/views/tabs/form-settings.php:12
|
512 |
+
msgid "Lists this form subscribes to"
|
513 |
+
msgstr "Списки, на которые подписывает эта форма"
|
|
|
|
|
514 |
|
515 |
+
#: includes/forms/views/tabs/form-settings.php:15
|
516 |
+
#: includes/integrations/views/integration-settings.php:93
|
517 |
+
msgid "No lists found, <a href=\"%s\">are you connected to MailChimp</a>?"
|
518 |
+
msgstr "Списки не найдены, <a href=\"%s\">вы точно подключены к MailChimp</a>?"
|
|
|
519 |
|
520 |
+
#: includes/forms/views/tabs/form-settings.php:29
|
521 |
msgid ""
|
522 |
+
"Select the list(s) to which people who submit this form should be "
|
523 |
+
"subscribed."
|
524 |
+
msgstr "Укажите списки, в которые должны быть добавлены подписчики."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
525 |
|
526 |
+
#: includes/forms/views/tabs/form-settings.php:35
|
527 |
+
msgid "Use double opt-in?"
|
528 |
+
msgstr ""
|
|
|
529 |
|
530 |
+
#: includes/forms/views/tabs/form-settings.php:39
|
531 |
+
#: includes/forms/views/tabs/form-settings.php:54
|
532 |
+
#: includes/forms/views/tabs/form-settings.php:69
|
533 |
+
#: includes/forms/views/tabs/form-settings.php:85
|
534 |
+
#: includes/forms/views/tabs/form-settings.php:115
|
535 |
+
#: includes/integrations/views/integration-settings.php:53
|
536 |
+
#: includes/integrations/views/integration-settings.php:66
|
537 |
+
#: includes/integrations/views/integration-settings.php:117
|
538 |
+
#: includes/integrations/views/integration-settings.php:129
|
539 |
+
#: includes/integrations/views/integration-settings.php:142
|
540 |
+
#: includes/integrations/views/integration-settings.php:163
|
541 |
+
#: includes/integrations/views/integration-settings.php:180
|
542 |
+
#: includes/integrations/views/integration-settings.php:199
|
543 |
+
#: integrations/contact-form-7/class-contact-form-7.php:69
|
544 |
+
msgid "Yes"
|
545 |
+
msgstr "Да"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
546 |
|
547 |
+
#: includes/forms/views/tabs/form-settings.php:43
|
548 |
+
#: includes/forms/views/tabs/form-settings.php:58
|
549 |
+
#: includes/forms/views/tabs/form-settings.php:73
|
550 |
+
#: includes/forms/views/tabs/form-settings.php:89
|
551 |
+
#: includes/forms/views/tabs/form-settings.php:119
|
552 |
+
#: includes/integrations/views/integration-settings.php:54
|
553 |
+
#: includes/integrations/views/integration-settings.php:67
|
554 |
+
#: includes/integrations/views/integration-settings.php:118
|
555 |
+
#: includes/integrations/views/integration-settings.php:130
|
556 |
+
#: includes/integrations/views/integration-settings.php:146
|
557 |
+
#: includes/integrations/views/integration-settings.php:167
|
558 |
+
#: includes/integrations/views/integration-settings.php:184
|
559 |
+
#: includes/integrations/views/integration-settings.php:203
|
560 |
+
#: integrations/contact-form-7/class-contact-form-7.php:69
|
561 |
+
msgid "No"
|
562 |
+
msgstr "Нет"
|
563 |
|
564 |
+
#: includes/forms/views/tabs/form-settings.php:45
|
565 |
+
#: includes/integrations/views/integration-settings.php:149
|
566 |
msgid ""
|
567 |
+
"Select \"yes\" if you want people to confirm their email address before "
|
568 |
+
"being subscribed (recommended)"
|
569 |
+
msgstr "Выберите \"Да\" если хотите, чтобы подписчики подтверждали свой адрес электронной почты (рекомендуется)"
|
570 |
|
571 |
+
#: includes/forms/views/tabs/form-settings.php:50
|
572 |
+
msgid "Send final welcome email?"
|
573 |
+
msgstr ""
|
574 |
|
575 |
+
#: includes/forms/views/tabs/form-settings.php:60
|
576 |
+
#: includes/integrations/views/integration-settings.php:169
|
577 |
msgid ""
|
578 |
+
"Select \"yes\" if you want to send your lists Welcome Email if a subscribe "
|
579 |
+
"succeeds (only when double opt-in is disabled)."
|
580 |
+
msgstr "Выберите \"Да\", если хотите отправить вашим подписчикам вступительное письмо при удачном включении в подписку (работает только если выключен \"двойной отказ\")."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
581 |
|
582 |
+
#: includes/forms/views/tabs/form-settings.php:65
|
583 |
+
#: includes/integrations/views/integration-settings.php:176
|
584 |
+
msgid "Update existing subscribers?"
|
585 |
+
msgstr "Обновлять данные существующих подписчиков?"
|
586 |
|
587 |
+
#: includes/forms/views/tabs/form-settings.php:75
|
588 |
+
#: includes/integrations/views/integration-settings.php:186
|
589 |
msgid ""
|
590 |
+
"Select \"yes\" if you want to update existing subscribers with the data that"
|
591 |
+
" is sent."
|
592 |
+
msgstr "Выберите \"Да\" если вы хотите обновить данные существующих подписчиков используя новые отправляемые данные."
|
|
|
|
|
|
|
|
|
593 |
|
594 |
+
#: includes/forms/views/tabs/form-settings.php:81
|
595 |
+
#: includes/integrations/views/integration-settings.php:195
|
596 |
+
msgid "Replace interest groups?"
|
597 |
+
msgstr "Заменять группы по интересам?"
|
598 |
|
599 |
+
#: includes/forms/views/tabs/form-settings.php:92
|
600 |
+
#: includes/integrations/views/integration-settings.php:206
|
601 |
msgid ""
|
602 |
+
"Select \"no\" if you want to add the selected groupings to any previously "
|
603 |
+
"selected groupings when updating a subscriber."
|
604 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
605 |
|
606 |
+
#: includes/forms/views/tabs/form-settings.php:93
|
607 |
+
#: includes/integrations/views/integration-settings.php:207
|
608 |
+
msgid "What does this do?"
|
609 |
+
msgstr ""
|
610 |
|
611 |
+
#: includes/forms/views/tabs/form-settings.php:104
|
612 |
+
msgid "Form behaviour"
|
613 |
+
msgstr ""
|
614 |
|
615 |
+
#: includes/forms/views/tabs/form-settings.php:111
|
616 |
+
msgid "Hide form after a successful sign-up?"
|
617 |
+
msgstr "Скрыть форму после успешной подписки?"
|
618 |
|
619 |
+
#: includes/forms/views/tabs/form-settings.php:122
|
620 |
+
msgid "Select \"yes\" to hide the form fields after a successful sign-up."
|
621 |
+
msgstr "Выберите \"Да\" чтобы скрывать поля формы после успешной подписки."
|
622 |
|
623 |
+
#: includes/forms/views/tabs/form-settings.php:127
|
624 |
+
msgid "Redirect to URL after successful sign-ups"
|
625 |
+
msgstr "Перенаправить по указанному адресу URL после успешной подписки"
|
626 |
|
627 |
+
#: includes/forms/views/tabs/form-settings.php:129
|
628 |
+
msgid "Example: %s"
|
629 |
+
msgstr "Пример: %s"
|
630 |
|
631 |
+
#: includes/forms/views/tabs/form-settings.php:130
|
632 |
+
msgid ""
|
633 |
+
"Leave empty or enter <code>0</code> for no redirect. Otherwise, use complete"
|
634 |
+
" (absolute) URLs, including <code>http://</code>."
|
635 |
+
msgstr "Оставьте поле пустым или введите <code>0</code> чтобы избежать перенаправления. Но если вы хотите использовать перенаправление, то используйте полный (абсолютный) адрес URL, включая префикс <code>http://</code>."
|
636 |
|
637 |
+
#: includes/integrations/class-admin.php:79
|
638 |
+
#: includes/integrations/class-admin.php:80
|
639 |
+
#: includes/integrations/views/integration-settings.php:10
|
640 |
+
#: includes/integrations/views/integrations.php:9
|
641 |
+
#: includes/integrations/views/integrations.php:17
|
642 |
+
msgid "Integrations"
|
643 |
+
msgstr ""
|
644 |
|
645 |
+
#: includes/integrations/views/integration-settings.php:20
|
646 |
+
msgid "%s integration"
|
647 |
+
msgstr ""
|
648 |
|
649 |
+
#: includes/integrations/views/integration-settings.php:51
|
650 |
+
msgid "Enabled?"
|
651 |
+
msgstr ""
|
|
|
|
|
652 |
|
653 |
+
#: includes/integrations/views/integration-settings.php:55
|
654 |
msgid ""
|
655 |
+
"Enable the %s integration? This will add a sign-up checkbox to the form."
|
656 |
+
msgstr ""
|
|
|
657 |
|
658 |
+
#: includes/integrations/views/integration-settings.php:64
|
659 |
+
msgid "Implicit?"
|
660 |
+
msgstr ""
|
|
|
|
|
661 |
|
662 |
+
#: includes/integrations/views/integration-settings.php:68
|
663 |
msgid ""
|
664 |
+
"Select \"no\" if you want to ask your visitors before they are subscribed "
|
665 |
+
"(recommended)."
|
666 |
+
msgstr ""
|
|
|
667 |
|
668 |
+
#: includes/integrations/views/integration-settings.php:78
|
669 |
+
msgid "MailChimp Lists"
|
670 |
+
msgstr "Списки рассылок MailChimp"
|
671 |
|
672 |
+
#: includes/integrations/views/integration-settings.php:89
|
673 |
msgid ""
|
674 |
+
"Select the list(s) to which people who check the checkbox should be "
|
675 |
+
"subscribed."
|
676 |
+
msgstr "Выберите список(и), на которые посетители могут подписаться."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
677 |
|
678 |
+
#: includes/integrations/views/integration-settings.php:102
|
679 |
+
msgid "Checkbox label text"
|
680 |
+
msgstr "Текст флажка"
|
681 |
|
682 |
+
#: includes/integrations/views/integration-settings.php:105
|
683 |
+
msgid "HTML tags like %s are allowed in the label text."
|
684 |
+
msgstr "В тексте допустимы HTML теги, подобные %s."
|
|
|
|
|
685 |
|
686 |
+
#: includes/integrations/views/integration-settings.php:115
|
687 |
+
msgid "Pre-check the checkbox?"
|
688 |
+
msgstr "Установить флажок заранее?"
|
689 |
|
690 |
+
#: includes/integrations/views/integration-settings.php:119
|
691 |
+
msgid "Select \"yes\" if the checkbox should be pre-checked."
|
692 |
+
msgstr ""
|
693 |
|
694 |
+
#: includes/integrations/views/integration-settings.php:127
|
695 |
+
msgid "Load some default CSS?"
|
696 |
+
msgstr "Загрузить CSS по умолчанию?"
|
697 |
|
698 |
+
#: includes/integrations/views/integration-settings.php:131
|
699 |
+
msgid "Select \"yes\" if the checkbox appears in a weird place."
|
700 |
+
msgstr "Выберите \"Да\", если флажок появляется в странном месте."
|
701 |
|
702 |
+
#: includes/integrations/views/integration-settings.php:138
|
703 |
+
msgid "Double opt-in?"
|
704 |
+
msgstr "Двойное подтверждение?"
|
|
|
705 |
|
706 |
+
#: includes/integrations/views/integration-settings.php:159
|
707 |
+
msgid "Send Welcome Email?"
|
708 |
+
msgstr "Отправить вступительное письмо?"
|
709 |
|
710 |
+
#: includes/integrations/views/integration-settings.php:244
|
711 |
msgid ""
|
712 |
+
"The selected MailChimp lists require non-default fields, which may prevent "
|
713 |
+
"this integration from working."
|
714 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
715 |
|
716 |
+
#: includes/integrations/views/integration-settings.php:245
|
717 |
msgid ""
|
718 |
+
"Please ensure you <a href=\"%s\">configure the plugin to send all required "
|
719 |
+
"fields</a> or <a href=\"%s\">log into your MailChimp account</a> and make "
|
720 |
+
"sure only the email & name fields are marked as required fields for the "
|
721 |
+
"selected list(s)."
|
722 |
+
msgstr ""
|
723 |
|
724 |
+
#: includes/integrations/views/integrations.php:30
|
725 |
+
msgid "Enabled"
|
726 |
+
msgstr ""
|
727 |
|
728 |
+
#: includes/integrations/views/integrations.php:31
|
729 |
+
msgid "Name"
|
730 |
+
msgstr "Имя"
|
731 |
|
732 |
+
#: includes/integrations/views/integrations.php:32
|
733 |
+
msgid "Description"
|
734 |
+
msgstr "Описание"
|
735 |
|
736 |
+
#: includes/integrations/views/integrations.php:50
|
737 |
msgid ""
|
738 |
+
"This integration is enabled by default as it requires manual actions to "
|
739 |
+
"work."
|
740 |
+
msgstr ""
|
741 |
|
742 |
+
#: includes/integrations/views/integrations.php:57
|
743 |
+
msgid "Configure this integration"
|
744 |
+
msgstr ""
|
745 |
|
746 |
+
#: includes/views/general-settings.php:18
|
747 |
+
msgid "General Settings"
|
748 |
+
msgstr "Общие настройки"
|
|
|
|
|
749 |
|
750 |
+
#: includes/views/general-settings.php:35
|
751 |
+
msgid "Status"
|
752 |
+
msgstr "Статус"
|
753 |
|
754 |
+
#: includes/views/general-settings.php:39
|
755 |
+
msgid "CONNECTED"
|
756 |
+
msgstr "ПОДКЛЮЧЕНО"
|
757 |
|
758 |
+
#: includes/views/general-settings.php:41
|
759 |
+
msgid "NOT CONNECTED"
|
760 |
+
msgstr "НЕ ПОДКЛЮЧЕНО"
|
761 |
|
762 |
+
#: includes/views/general-settings.php:48
|
763 |
+
msgid "API Key"
|
764 |
+
msgstr "- ключ API"
|
|
|
|
|
765 |
|
766 |
+
#: includes/views/general-settings.php:50
|
767 |
+
msgid "Your MailChimp API key"
|
768 |
+
msgstr "Ваш ключ MailChimp API"
|
|
|
|
|
769 |
|
770 |
+
#: includes/views/general-settings.php:52
|
771 |
+
msgid "The API key for connecting with your MailChimp account."
|
772 |
+
msgstr "Ключ API для соединения с Вашим аккаунтом MailChimp"
|
|
|
|
|
773 |
|
774 |
+
#: includes/views/general-settings.php:53
|
775 |
+
msgid "Get your API key here."
|
776 |
+
msgstr "Получите ваш ключ API здесь"
|
777 |
|
778 |
+
#: includes/views/general-settings.php:65
|
779 |
+
msgid "Usage Tracking"
|
780 |
+
msgstr ""
|
781 |
|
782 |
+
#: includes/views/general-settings.php:71
|
|
|
|
|
783 |
msgid ""
|
784 |
+
"Allow us to anonymously track how this plugin is used to help us make it "
|
785 |
+
"better fit your needs."
|
786 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
787 |
|
788 |
+
#: includes/views/general-settings.php:73
|
789 |
+
msgid "This is what we track."
|
790 |
+
msgstr ""
|
|
|
|
|
791 |
|
792 |
+
#: includes/views/parts/admin-footer.php:11
|
793 |
msgid ""
|
794 |
+
"MailChimp for WordPress is in need of translations. Is the plugin not "
|
795 |
+
"translated in your language or do you spot errors with the current "
|
796 |
+
"translations? Helping out is easy! Head over to <a href=\"%s\">the "
|
797 |
+
"translation project and click \"help translate\"</a>."
|
798 |
+
msgstr "MailChimp for WordPress нуждается в переводах на разные языки. Если вы считате, что этот плагин ещё не переведен на ваш язык, или если вы заметили проблемы с текущим переводом, то исправить ситуацию легко! Держите курс на <a href=\"%s\">проект по переводу и нажмите \"Help Translate\"</a>."
|
799 |
|
800 |
+
#: includes/views/parts/admin-footer.php:31
|
801 |
msgid ""
|
802 |
+
"This plugin is not developed by or affiliated with MailChimp in any way."
|
803 |
+
msgstr "Этот плагин никоим образом не связан с компанией MailChimp."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
804 |
|
805 |
+
#: includes/views/parts/lists-overview.php:1
|
806 |
+
msgid "Your MailChimp Account"
|
807 |
+
msgstr "Ваш аккаунт MailChimp"
|
808 |
|
809 |
+
#: includes/views/parts/lists-overview.php:2
|
810 |
msgid ""
|
811 |
+
"The table below shows your MailChimp lists and their details. If you just "
|
812 |
+
"applied changes to your MailChimp lists, please use the following button to "
|
813 |
+
"renew the cached lists configuration."
|
814 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
815 |
|
816 |
+
#: includes/views/parts/lists-overview.php:14
|
817 |
+
msgid "No lists were found in your MailChimp account"
|
818 |
+
msgstr "В вашем аккаунте MailChimp списков не обнаружено"
|
819 |
|
820 |
+
#: includes/views/parts/lists-overview.php:16
|
821 |
+
msgid "A total of %d lists were found in your MailChimp account."
|
822 |
+
msgstr ""
|
823 |
|
824 |
+
#: includes/views/parts/lists-overview.php:21
|
825 |
+
msgid "List Name"
|
826 |
+
msgstr "Название списка"
|
827 |
|
828 |
+
#: includes/views/parts/lists-overview.php:22
|
829 |
msgid "ID"
|
830 |
msgstr "ID"
|
831 |
|
832 |
+
#: includes/views/parts/lists-overview.php:23
|
833 |
+
msgid "Subscribers"
|
834 |
+
msgstr "Подписчики"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
835 |
|
836 |
+
#: includes/views/parts/lists-overview.php:45
|
837 |
+
msgid "Edit this list in MailChimp"
|
838 |
+
msgstr "Редактировать этот список в MailChimp"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
839 |
|
840 |
+
#: includes/views/parts/lists-overview.php:59
|
841 |
+
msgid "%s (%s) with field type %s."
|
842 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
843 |
|
844 |
+
#: includes/views/parts/lists-overview.php:83
|
845 |
+
msgid "%s (ID: %s) with type %s."
|
846 |
+
msgstr ""
|
847 |
|
848 |
+
#: integrations/contact-form-7/admin-before.php:2
|
849 |
msgid ""
|
850 |
+
"To integrate with Contact Form 7, configure the settings below and then add "
|
851 |
+
"%s to your CF7 form mark-up."
|
852 |
+
msgstr ""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
853 |
|
854 |
+
#: integrations/custom/admin-before.php:2
|
|
|
855 |
msgid ""
|
856 |
+
"To get a custom integration to work, include the following HTML in the form "
|
857 |
+
"you are trying to integrate with."
|
858 |
+
msgstr ""
|
859 |
|
860 |
+
#: integrations/woocommerce/class-woocommerce.php:102
|
861 |
+
msgid "Order #%d"
|
862 |
+
msgstr ""
|
863 |
|
864 |
+
#. Plugin Name of the plugin/theme
|
865 |
+
msgid "MailChimp for WordPress"
|
866 |
+
msgstr "MailChimp для WordPress"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
867 |
|
868 |
#. Plugin URI of the plugin/theme
|
869 |
+
msgid ""
|
870 |
+
"https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-"
|
871 |
+
"wp&utm_campaign=plugins-page"
|
872 |
+
msgstr ""
|
873 |
|
874 |
#. Description of the plugin/theme
|
875 |
+
msgid ""
|
876 |
+
"MailChimp for WordPress by ibericode. Adds various highly effective sign-up "
|
877 |
+
"methods to your site."
|
878 |
+
msgstr ""
|
879 |
|
880 |
#. Author of the plugin/theme
|
881 |
+
msgid "ibericode"
|
882 |
+
msgstr ""
|
883 |
|
884 |
#. Author URI of the plugin/theme
|
885 |
+
msgid "https://ibericode.com/"
|
886 |
+
msgstr ""
|
mailchimp-for-wp.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: MailChimp for WordPress
|
4 |
Plugin URI: https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=plugins-page
|
5 |
Description: MailChimp for WordPress by ibericode. Adds various highly effective sign-up methods to your site.
|
6 |
-
Version: 3.0.
|
7 |
Author: ibericode
|
8 |
Author URI: https://ibericode.com/
|
9 |
Text Domain: mailchimp-for-wp
|
@@ -47,7 +47,7 @@ function __mc4wp_load_plugin() {
|
|
47 |
}
|
48 |
|
49 |
// bootstrap the core plugin
|
50 |
-
define( 'MC4WP_VERSION', '3.0.
|
51 |
define( 'MC4WP_PLUGIN_DIR', dirname( __FILE__ ) . '/' );
|
52 |
define( 'MC4WP_PLUGIN_URL', plugins_url( '/' , __FILE__ ) );
|
53 |
define( 'MC4WP_PLUGIN_FILE', __FILE__ );
|
3 |
Plugin Name: MailChimp for WordPress
|
4 |
Plugin URI: https://mc4wp.com/#utm_source=wp-plugin&utm_medium=mailchimp-for-wp&utm_campaign=plugins-page
|
5 |
Description: MailChimp for WordPress by ibericode. Adds various highly effective sign-up methods to your site.
|
6 |
+
Version: 3.0.5
|
7 |
Author: ibericode
|
8 |
Author URI: https://ibericode.com/
|
9 |
Text Domain: mailchimp-for-wp
|
47 |
}
|
48 |
|
49 |
// bootstrap the core plugin
|
50 |
+
define( 'MC4WP_VERSION', '3.0.5' );
|
51 |
define( 'MC4WP_PLUGIN_DIR', dirname( __FILE__ ) . '/' );
|
52 |
define( 'MC4WP_PLUGIN_URL', plugins_url( '/' , __FILE__ ) );
|
53 |
define( 'MC4WP_PLUGIN_FILE', __FILE__ );
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: https://mc4wp.com/#utm_source=wp-plugin-repo&utm_medium=mailchimp-f
|
|
4 |
Tags: mailchimp, mc4wp, email, marketing, newsletter, subscribe, widget, mc4wp, contact form 7, woocommerce, buddypress, ibericode, mail chimp
|
5 |
Requires at least: 3.7
|
6 |
Tested up to: 4.4
|
7 |
-
Stable tag: 3.0.
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -174,6 +174,13 @@ MailChimp for WordPress is being developed on GitHub. If you want to collaborate
|
|
174 |
== Changelog ==
|
175 |
|
176 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
177 |
#### 3.0.4 - December 7, 2015
|
178 |
|
179 |
**Fixes**
|
4 |
Tags: mailchimp, mc4wp, email, marketing, newsletter, subscribe, widget, mc4wp, contact form 7, woocommerce, buddypress, ibericode, mail chimp
|
5 |
Requires at least: 3.7
|
6 |
Tested up to: 4.4
|
7 |
+
Stable tag: 3.0.5
|
8 |
License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
174 |
== Changelog ==
|
175 |
|
176 |
|
177 |
+
#### 3.0.5 - December 9, 2015
|
178 |
+
|
179 |
+
**Fixes**
|
180 |
+
|
181 |
+
Workaround for SSL certification error introduced by WordPress 4.4, only affecting very old versions of PHP CURL.
|
182 |
+
|
183 |
+
|
184 |
#### 3.0.4 - December 7, 2015
|
185 |
|
186 |
**Fixes**
|
vendor/autoload_52.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once dirname(__FILE__) . '/composer'.'/autoload_real_52.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInitc2e6fbeabfb1c1a1c3fe932cd96d870b::getLoader();
|
vendor/composer/ClassLoader.php
CHANGED
@@ -13,9 +13,7 @@
|
|
13 |
namespace Composer\Autoload;
|
14 |
|
15 |
/**
|
16 |
-
* ClassLoader implements a PSR-0 class loader
|
17 |
-
*
|
18 |
-
* See https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-0.md
|
19 |
*
|
20 |
* $loader = new \Composer\Autoload\ClassLoader();
|
21 |
*
|
@@ -39,6 +37,8 @@ namespace Composer\Autoload;
|
|
39 |
*
|
40 |
* @author Fabien Potencier <fabien@symfony.com>
|
41 |
* @author Jordi Boggiano <j.boggiano@seld.be>
|
|
|
|
|
42 |
*/
|
43 |
class ClassLoader
|
44 |
{
|
@@ -344,7 +344,7 @@ class ClassLoader
|
|
344 |
private function findFileWithExtension($class, $ext)
|
345 |
{
|
346 |
// PSR-4 lookup
|
347 |
-
$logicalPathPsr4 =
|
348 |
|
349 |
$first = $class[0];
|
350 |
if (isset($this->prefixLengthsPsr4[$first])) {
|
@@ -370,10 +370,10 @@ class ClassLoader
|
|
370 |
if (false !== $pos = strrpos($class, '\\')) {
|
371 |
// namespaced class name
|
372 |
$logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1)
|
373 |
-
.
|
374 |
} else {
|
375 |
// PEAR-like class name
|
376 |
-
$logicalPathPsr0 =
|
377 |
}
|
378 |
|
379 |
if (isset($this->prefixesPsr0[$first])) {
|
13 |
namespace Composer\Autoload;
|
14 |
|
15 |
/**
|
16 |
+
* ClassLoader implements a PSR-0, PSR-4 and classmap class loader.
|
|
|
|
|
17 |
*
|
18 |
* $loader = new \Composer\Autoload\ClassLoader();
|
19 |
*
|
37 |
*
|
38 |
* @author Fabien Potencier <fabien@symfony.com>
|
39 |
* @author Jordi Boggiano <j.boggiano@seld.be>
|
40 |
+
* @see http://www.php-fig.org/psr/psr-0/
|
41 |
+
* @see http://www.php-fig.org/psr/psr-4/
|
42 |
*/
|
43 |
class ClassLoader
|
44 |
{
|
344 |
private function findFileWithExtension($class, $ext)
|
345 |
{
|
346 |
// PSR-4 lookup
|
347 |
+
$logicalPathPsr4 = ('\\' !== DIRECTORY_SEPARATOR ? str_replace('\\', DIRECTORY_SEPARATOR, $class) : $class) . $ext;
|
348 |
|
349 |
$first = $class[0];
|
350 |
if (isset($this->prefixLengthsPsr4[$first])) {
|
370 |
if (false !== $pos = strrpos($class, '\\')) {
|
371 |
// namespaced class name
|
372 |
$logicalPathPsr0 = substr($logicalPathPsr4, 0, $pos + 1)
|
373 |
+
. str_replace('_', DIRECTORY_SEPARATOR, substr($logicalPathPsr4, $pos + 1));
|
374 |
} else {
|
375 |
// PEAR-like class name
|
376 |
+
$logicalPathPsr0 = str_replace('_', DIRECTORY_SEPARATOR, $class) . $ext;
|
377 |
}
|
378 |
|
379 |
if (isset($this->prefixesPsr0[$first])) {
|
vendor/composer/autoload_files.php
CHANGED
@@ -6,10 +6,10 @@ $vendorDir = dirname(dirname(__FILE__));
|
|
6 |
$baseDir = dirname($vendorDir);
|
7 |
|
8 |
return array(
|
9 |
-
'
|
10 |
-
'
|
11 |
-
'
|
12 |
-
'
|
13 |
-
'
|
14 |
-
'
|
15 |
);
|
6 |
$baseDir = dirname($vendorDir);
|
7 |
|
8 |
return array(
|
9 |
+
'fca581ae5268210490253d58378748c5' => $baseDir . '/includes/functions.php',
|
10 |
+
'59b5ebb4886cd7eeaf4afcc7f7bdfcdd' => $baseDir . '/includes/deprecated-functions.php',
|
11 |
+
'd26f3384f491dc697dcc189393343bc3' => $baseDir . '/includes/forms/functions.php',
|
12 |
+
'90c3516593b5de6b5d4528b70e2399dd' => $baseDir . '/includes/integrations/functions.php',
|
13 |
+
'1961896a7f482d8affe08226795bf674' => $baseDir . '/includes/default-actions.php',
|
14 |
+
'cb296d991e3145f10320ab99c1b9ed05' => $baseDir . '/includes/default-filters.php',
|
15 |
);
|
vendor/composer/autoload_real_52.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real_52.php generated by xrstf/composer-php52
|
4 |
|
5 |
-
class
|
6 |
private static $loader;
|
7 |
|
8 |
public static function loadClassLoader($class) {
|
@@ -19,9 +19,9 @@ class ComposerAutoloaderInit8ae6f7c4b1ec0ec78abe9aa3ba194b5c {
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new xrstf_Composer52_ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
25 |
|
26 |
$vendorDir = dirname(dirname(__FILE__));
|
27 |
$baseDir = dirname($vendorDir);
|
2 |
|
3 |
// autoload_real_52.php generated by xrstf/composer-php52
|
4 |
|
5 |
+
class ComposerAutoloaderInitc2e6fbeabfb1c1a1c3fe932cd96d870b {
|
6 |
private static $loader;
|
7 |
|
8 |
public static function loadClassLoader($class) {
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInitc2e6fbeabfb1c1a1c3fe932cd96d870b', 'loadClassLoader'), true /*, true */);
|
23 |
self::$loader = $loader = new xrstf_Composer52_ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInitc2e6fbeabfb1c1a1c3fe932cd96d870b', 'loadClassLoader'));
|
25 |
|
26 |
$vendorDir = dirname(dirname(__FILE__));
|
27 |
$baseDir = dirname($vendorDir);
|