Version Description
- Fixed: wrongly applying 'autop' filter to message body of HTML-formatted mail.
- Fixed: possible cause of some Ajax-related troubles.
- Fixed: wrong HTML format of the result of [response] tag.
- Fixed: rewrote a few codes for avoiding warnings.
- Fixed: wrongly applying 'autop' filter to <textarea> contents.
- You can customize ajax loader image with new wpcf7_ajax_loader filter.
- Translations for Ukrainian (Ukrainian WordPress localization team), Brazilian Portuguese (Gervsio Antnio) and Serbian (Aleksandar Uroevi) have been updated.
Download this release
Release Info
Developer | takayukister |
Plugin | Contact Form 7 |
Version | 2.3.1 |
Comparing to | |
See all releases |
Code changes from version 2.3 to 2.3.1
- includes/classes.php +28 -33
- includes/functions.php +1 -1
- languages/wpcf7-pt_BR.mo +0 -0
- languages/wpcf7-pt_BR.po +643 -308
- languages/wpcf7-sr_RS.mo +0 -0
- languages/wpcf7-sr_RS.po +739 -308
- languages/wpcf7-uk.mo +0 -0
- languages/wpcf7-uk.po +850 -0
- languages/wpcf7-uk_UA.mo +0 -0
- languages/wpcf7-uk_UA.po +0 -327
- modules/response.php +17 -0
- modules/submit.php +4 -2
- readme.txt +15 -5
- styles.css +2 -1
- wp-contact-form-7.php +2 -2
includes/classes.php
CHANGED
@@ -101,10 +101,16 @@ class WPCF7_ContactForm {
|
|
101 |
}
|
102 |
|
103 |
function validation_error( $name ) {
|
104 |
-
if ( $this->is_posted()
|
105 |
-
return
|
106 |
-
|
107 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
108 |
|
109 |
return '';
|
110 |
}
|
@@ -116,12 +122,12 @@ class WPCF7_ContactForm {
|
|
116 |
|
117 |
$form = $this->form;
|
118 |
|
119 |
-
$form = $wpcf7_shortcode_manager->do_shortcode( $form );
|
120 |
-
$this->scanned_form_tags = $wpcf7_shortcode_manager->scanned_tags;
|
121 |
-
|
122 |
if ( WPCF7_AUTOP )
|
123 |
$form = wpcf7_autop( $form );
|
124 |
|
|
|
|
|
|
|
125 |
return $form;
|
126 |
}
|
127 |
|
@@ -172,19 +178,7 @@ class WPCF7_ContactForm {
|
|
172 |
}
|
173 |
|
174 |
function form_elements() {
|
175 |
-
|
176 |
-
|
177 |
-
// Response output
|
178 |
-
$response_regex = '%\[\s*response\s*\]%';
|
179 |
-
$form = preg_replace_callback( $response_regex,
|
180 |
-
array( &$this, 'response_replace_callback' ), $form );
|
181 |
-
|
182 |
-
return $form;
|
183 |
-
}
|
184 |
-
|
185 |
-
function response_replace_callback( $matches ) {
|
186 |
-
$this->responses_count += 1;
|
187 |
-
return $this->form_response_output();
|
188 |
}
|
189 |
|
190 |
/* Validate */
|
@@ -289,12 +283,11 @@ class WPCF7_ContactForm {
|
|
289 |
$fes = $this->form_scan_shortcode();
|
290 |
|
291 |
foreach ( $fes as $fe ) {
|
292 |
-
|
293 |
-
$pipes = $fe['pipes'];
|
294 |
-
|
295 |
-
if ( empty( $name ) )
|
296 |
continue;
|
297 |
|
|
|
|
|
298 |
$value = $_POST[$name];
|
299 |
|
300 |
if ( WPCF7_USE_PIPE && is_a( $pipes, 'WPCF7_Pipes' ) && ! $pipes->zero() ) {
|
@@ -332,27 +325,30 @@ class WPCF7_ContactForm {
|
|
332 |
|
333 |
function compose_and_send_mail( $mail_template ) {
|
334 |
$regex = '/\[\s*([a-zA-Z_][0-9a-zA-Z:._-]*)\s*\]/';
|
335 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
336 |
|
337 |
$subject = preg_replace_callback( $regex, $callback, $mail_template['subject'] );
|
338 |
$sender = preg_replace_callback( $regex, $callback, $mail_template['sender'] );
|
339 |
$recipient = preg_replace_callback( $regex, $callback, $mail_template['recipient'] );
|
340 |
$additional_headers =
|
341 |
preg_replace_callback( $regex, $callback, $mail_template['additional_headers'] );
|
|
|
342 |
|
343 |
-
if ( $
|
344 |
-
$
|
345 |
-
$body = preg_replace_callback( $regex, $callback_html, $mail_template['body'] );
|
346 |
-
} else {
|
347 |
-
$body = preg_replace_callback( $regex, $callback, $mail_template['body'] );
|
348 |
-
}
|
349 |
|
350 |
extract( apply_filters( 'wpcf7_mail_components',
|
351 |
compact( 'subject', 'sender', 'body', 'recipient', 'additional_headers' ) ) );
|
352 |
|
353 |
$headers = "From: $sender\n";
|
354 |
|
355 |
-
if ( $
|
356 |
$headers .= "Content-Type: text/html\n";
|
357 |
|
358 |
$headers .= trim( $additional_headers ) . "\n";
|
@@ -387,7 +383,6 @@ class WPCF7_ContactForm {
|
|
387 |
if ( $html ) {
|
388 |
$replaced = strip_tags( $replaced );
|
389 |
$replaced = wptexturize( $replaced );
|
390 |
-
$replaced = wpautop( $replaced );
|
391 |
}
|
392 |
|
393 |
$replaced = apply_filters( 'wpcf7_mail_tag_replaced', $replaced, $submitted );
|
101 |
}
|
102 |
|
103 |
function validation_error( $name ) {
|
104 |
+
if ( ! $this->is_posted() )
|
105 |
+
return '';
|
106 |
+
|
107 |
+
if ( ! isset( $_POST['_wpcf7_validation_errors'] ) )
|
108 |
+
return '';
|
109 |
+
|
110 |
+
if ( $ve = trim( $_POST['_wpcf7_validation_errors']['messages'][$name] ) ) {
|
111 |
+
$ve = '<span class="wpcf7-not-valid-tip-no-ajax">' . esc_html( $ve ) . '</span>';
|
112 |
+
return apply_filters( 'wpcf7_validation_error', $ve, $name, $this );
|
113 |
+
}
|
114 |
|
115 |
return '';
|
116 |
}
|
122 |
|
123 |
$form = $this->form;
|
124 |
|
|
|
|
|
|
|
125 |
if ( WPCF7_AUTOP )
|
126 |
$form = wpcf7_autop( $form );
|
127 |
|
128 |
+
$form = $wpcf7_shortcode_manager->do_shortcode( $form );
|
129 |
+
$this->scanned_form_tags = $wpcf7_shortcode_manager->scanned_tags;
|
130 |
+
|
131 |
return $form;
|
132 |
}
|
133 |
|
178 |
}
|
179 |
|
180 |
function form_elements() {
|
181 |
+
return apply_filters( 'wpcf7_form_elements', $this->form_do_shortcode() );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
182 |
}
|
183 |
|
184 |
/* Validate */
|
283 |
$fes = $this->form_scan_shortcode();
|
284 |
|
285 |
foreach ( $fes as $fe ) {
|
286 |
+
if ( empty( $fe['name'] ) )
|
|
|
|
|
|
|
287 |
continue;
|
288 |
|
289 |
+
$name = $fe['name'];
|
290 |
+
$pipes = $fe['pipes'];
|
291 |
$value = $_POST[$name];
|
292 |
|
293 |
if ( WPCF7_USE_PIPE && is_a( $pipes, 'WPCF7_Pipes' ) && ! $pipes->zero() ) {
|
325 |
|
326 |
function compose_and_send_mail( $mail_template ) {
|
327 |
$regex = '/\[\s*([a-zA-Z_][0-9a-zA-Z:._-]*)\s*\]/';
|
328 |
+
|
329 |
+
$use_html = (bool) $mail_template['use_html'];
|
330 |
+
|
331 |
+
if ( $use_html )
|
332 |
+
$callback = array( &$this, 'mail_callback_html' );
|
333 |
+
else
|
334 |
+
$callback = array( &$this, 'mail_callback' );
|
335 |
|
336 |
$subject = preg_replace_callback( $regex, $callback, $mail_template['subject'] );
|
337 |
$sender = preg_replace_callback( $regex, $callback, $mail_template['sender'] );
|
338 |
$recipient = preg_replace_callback( $regex, $callback, $mail_template['recipient'] );
|
339 |
$additional_headers =
|
340 |
preg_replace_callback( $regex, $callback, $mail_template['additional_headers'] );
|
341 |
+
$body = preg_replace_callback( $regex, $callback, $mail_template['body'] );
|
342 |
|
343 |
+
if ( $use_html )
|
344 |
+
$body = wpautop( $body );
|
|
|
|
|
|
|
|
|
345 |
|
346 |
extract( apply_filters( 'wpcf7_mail_components',
|
347 |
compact( 'subject', 'sender', 'body', 'recipient', 'additional_headers' ) ) );
|
348 |
|
349 |
$headers = "From: $sender\n";
|
350 |
|
351 |
+
if ( $use_html )
|
352 |
$headers .= "Content-Type: text/html\n";
|
353 |
|
354 |
$headers .= trim( $additional_headers ) . "\n";
|
383 |
if ( $html ) {
|
384 |
$replaced = strip_tags( $replaced );
|
385 |
$replaced = wptexturize( $replaced );
|
|
|
386 |
}
|
387 |
|
388 |
$replaced = apply_filters( 'wpcf7_mail_tag_replaced', $replaced, $submitted );
|
includes/functions.php
CHANGED
@@ -171,7 +171,7 @@ function wpcf7_l10n() {
|
|
171 |
'sv_SE' => __( 'Swedish', 'wpcf7' ),
|
172 |
'th' => __( 'Thai', 'wpcf7' ),
|
173 |
'tr_TR' => __( 'Turkish', 'wpcf7' ),
|
174 |
-
'
|
175 |
'vi' => __( 'Vietnamese', 'wpcf7' )
|
176 |
);
|
177 |
|
171 |
'sv_SE' => __( 'Swedish', 'wpcf7' ),
|
172 |
'th' => __( 'Thai', 'wpcf7' ),
|
173 |
'tr_TR' => __( 'Turkish', 'wpcf7' ),
|
174 |
+
'uk' => __( 'Ukrainian', 'wpcf7' ),
|
175 |
'vi' => __( 'Vietnamese', 'wpcf7' )
|
176 |
);
|
177 |
|
languages/wpcf7-pt_BR.mo
CHANGED
Binary file
|
languages/wpcf7-pt_BR.po
CHANGED
@@ -1,502 +1,837 @@
|
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
-
"Project-Id-Version: \n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
-
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator:
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
|
13 |
-
#: contact-form-7/admin/admin
|
|
|
|
|
|
|
|
|
14 |
#, php-format
|
15 |
msgid "<strong>The database table for Contact Form 7 does not exist.</strong> You must <a href=\"%s\">create the table</a> for it to work."
|
16 |
-
msgstr "<strong>A tabela
|
17 |
|
18 |
-
#: contact-form-7/admin/
|
19 |
msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
|
20 |
-
msgstr "<strong>A tabela
|
21 |
-
|
22 |
-
#: contact-form-7/admin/admin-panel.php:17
|
23 |
-
#: contact-form-7/admin/admin-panel.php:30
|
24 |
-
#: contact-form-7/admin/admin.php:119
|
25 |
-
msgid "Contact Form 7"
|
26 |
-
msgstr "Contact Form 7"
|
27 |
|
28 |
-
#: contact-form-7/admin/
|
29 |
msgid "Add new"
|
30 |
msgstr "Adicionar novo"
|
31 |
|
32 |
-
#: contact-form-7/admin/
|
33 |
msgid "Copy this code and paste it into your post, page or text widget content."
|
34 |
msgstr "Copie este código e cole-o no conteúdo do seu post, página ou widget de texto."
|
35 |
|
36 |
-
#: contact-form-7/admin/
|
37 |
-
#: contact-form-7/admin/
|
38 |
msgid "Save"
|
39 |
msgstr "Salvar"
|
40 |
|
41 |
-
#: contact-form-7/admin/
|
42 |
msgid "Copy"
|
43 |
msgstr "Copiar"
|
44 |
|
45 |
-
#: contact-form-7/admin/
|
46 |
msgid "Delete"
|
47 |
-
msgstr "
|
48 |
|
49 |
-
#: contact-form-7/admin/
|
50 |
msgid ""
|
51 |
"You are about to delete this contact form.\n"
|
52 |
" 'Cancel' to stop, 'OK' to delete."
|
53 |
msgstr ""
|
54 |
"Você está prestes a excluir este formulário.\n"
|
55 |
-
" 'Cancelar' para interromper
|
56 |
|
57 |
-
#: contact-form-7/admin/
|
58 |
msgid "Form"
|
59 |
msgstr "Formulário"
|
60 |
|
61 |
-
#: contact-form-7/admin/
|
62 |
msgid "Mail"
|
63 |
-
msgstr "
|
64 |
|
65 |
-
#: contact-form-7/admin/
|
66 |
-
#: contact-form-7/admin/
|
67 |
msgid "To:"
|
68 |
msgstr "Para:"
|
69 |
|
70 |
-
#: contact-form-7/admin/
|
71 |
-
#: contact-form-7/admin/
|
72 |
msgid "From:"
|
73 |
msgstr "De:"
|
74 |
|
75 |
-
#: contact-form-7/admin/
|
76 |
-
#: contact-form-7/admin/
|
77 |
msgid "Subject:"
|
78 |
msgstr "Assunto:"
|
79 |
|
80 |
-
#: contact-form-7/admin/
|
81 |
-
#: contact-form-7/admin/
|
82 |
msgid "Additional headers:"
|
83 |
-
msgstr "Cabeçalhos adicionais"
|
84 |
|
85 |
-
#: contact-form-7/admin/
|
86 |
-
#: contact-form-7/admin/
|
87 |
msgid "File attachments:"
|
88 |
msgstr "Arquivos anexos:"
|
89 |
|
90 |
-
#: contact-form-7/admin/
|
91 |
-
#: contact-form-7/admin/
|
92 |
msgid "Use HTML content type"
|
93 |
-
msgstr "Usar
|
94 |
|
95 |
-
#: contact-form-7/admin/
|
96 |
-
#: contact-form-7/admin/
|
|
|
97 |
msgid "Message body:"
|
98 |
msgstr "Corpo da mensagem:"
|
99 |
|
100 |
-
#: contact-form-7/admin/
|
101 |
msgid "Mail (2)"
|
102 |
-
msgstr "
|
103 |
|
104 |
-
#: contact-form-7/admin/
|
105 |
msgid "Use mail (2)"
|
106 |
-
msgstr "Usar mail (2)"
|
107 |
|
108 |
-
#: contact-form-7/admin/
|
109 |
msgid "Messages"
|
110 |
msgstr "Mensagens"
|
111 |
|
112 |
-
#: contact-form-7/admin/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
113 |
msgid "Sender's message was sent successfully"
|
114 |
msgstr "A mensagem foi enviada com sucesso"
|
115 |
|
116 |
-
#: contact-form-7/
|
|
|
|
|
|
|
|
|
117 |
msgid "Sender's message was failed to send"
|
118 |
msgstr "O envio da mensagem falhou"
|
119 |
|
120 |
-
#: contact-form-7/
|
|
|
|
|
|
|
|
|
|
|
121 |
msgid "Akismet judged the sending activity as spamming"
|
122 |
-
msgstr "Akismet julgou a atividade de envio como spam"
|
123 |
|
124 |
-
#: contact-form-7/
|
125 |
msgid "Validation errors occurred"
|
126 |
msgstr "Ocorreram erros de validação"
|
127 |
|
128 |
-
#: contact-form-7/
|
129 |
-
msgid "
|
130 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
131 |
|
132 |
-
#: contact-form-7/
|
133 |
msgid "Email address that sender entered is invalid"
|
134 |
msgstr "O endereço de e-mail digitado é inválido"
|
135 |
|
136 |
-
#: contact-form-7/
|
137 |
-
msgid "
|
138 |
-
msgstr "
|
139 |
|
140 |
-
#: contact-form-7/
|
141 |
-
msgid "
|
142 |
-
msgstr "
|
143 |
|
144 |
-
#: contact-form-7/
|
145 |
-
msgid "
|
146 |
-
msgstr "
|
147 |
|
148 |
-
#: contact-form-7/
|
149 |
-
msgid "
|
150 |
-
msgstr "
|
151 |
|
152 |
-
#: contact-form-7/
|
153 |
-
|
154 |
-
|
|
|
155 |
|
156 |
-
#: contact-form-7/
|
157 |
-
msgid "
|
158 |
-
msgstr "
|
159 |
|
160 |
-
#: contact-form-7/
|
161 |
-
msgid "
|
162 |
-
msgstr "
|
163 |
|
164 |
-
#: contact-form-7/
|
165 |
-
msgid "
|
166 |
-
msgstr "
|
167 |
|
168 |
-
#: contact-form-7/
|
169 |
-
msgid "
|
170 |
-
msgstr "
|
171 |
|
172 |
-
#: contact-form-7/
|
173 |
-
|
174 |
-
|
|
|
175 |
|
176 |
-
#: contact-form-7/
|
177 |
-
|
178 |
-
|
|
|
179 |
|
180 |
-
#: contact-form-7/
|
181 |
-
msgid "
|
182 |
-
msgstr "
|
183 |
|
184 |
-
#: contact-form-7/
|
185 |
-
|
186 |
-
|
|
|
|
|
187 |
|
188 |
-
#: contact-form-7/
|
189 |
-
msgid "
|
190 |
-
msgstr "
|
191 |
|
192 |
-
#: contact-form-7/
|
193 |
-
msgid "
|
194 |
-
msgstr "
|
195 |
|
196 |
-
#: contact-form-7/
|
197 |
-
msgid "
|
198 |
-
msgstr "
|
199 |
|
200 |
-
#: contact-form-7/
|
201 |
-
msgid "
|
202 |
-
msgstr "
|
203 |
|
204 |
-
#: contact-form-7/
|
205 |
-
msgid "
|
206 |
-
msgstr "
|
207 |
|
208 |
-
#: contact-form-7/
|
209 |
-
msgid "
|
210 |
-
msgstr "
|
211 |
|
212 |
-
#: contact-form-7/
|
213 |
-
msgid "
|
214 |
-
msgstr "
|
215 |
|
216 |
-
#: contact-form-7/
|
217 |
-
msgid "
|
218 |
-
msgstr "
|
219 |
|
220 |
-
#: contact-form-7/
|
221 |
-
msgid "
|
222 |
-
msgstr "
|
223 |
|
224 |
-
#: contact-form-7/
|
225 |
-
msgid "
|
226 |
-
msgstr "
|
227 |
|
228 |
-
#: contact-form-7/
|
229 |
-
msgid "
|
230 |
-
msgstr "
|
231 |
|
232 |
-
#: contact-form-7/
|
233 |
-
msgid "
|
234 |
-
msgstr "
|
235 |
|
236 |
-
#: contact-form-7/
|
237 |
-
msgid "
|
238 |
-
msgstr "
|
239 |
|
240 |
-
#: contact-form-7/
|
241 |
-
msgid "
|
242 |
-
msgstr "
|
243 |
|
244 |
-
#: contact-form-7/
|
245 |
-
msgid "
|
246 |
-
msgstr "
|
247 |
|
248 |
-
#: contact-form-7/
|
249 |
-
msgid "
|
250 |
-
msgstr "
|
251 |
|
252 |
-
#: contact-form-7/
|
253 |
-
msgid "
|
254 |
-
msgstr "
|
255 |
|
256 |
-
#: contact-form-7/
|
257 |
-
msgid "
|
258 |
-
msgstr "
|
259 |
|
260 |
-
#: contact-form-7/
|
261 |
-
msgid "
|
262 |
-
msgstr "
|
263 |
|
264 |
-
#: contact-form-7/
|
265 |
-
msgid "
|
266 |
-
msgstr "
|
267 |
|
268 |
-
#: contact-form-7/
|
269 |
-
msgid "
|
270 |
-
msgstr "
|
271 |
|
272 |
-
#: contact-form-7/
|
273 |
-
msgid "
|
274 |
-
msgstr "
|
275 |
|
276 |
-
#: contact-form-7/
|
277 |
-
msgid "
|
278 |
-
msgstr "
|
279 |
|
280 |
-
#: contact-form-7/
|
281 |
-
msgid "
|
282 |
-
msgstr "
|
283 |
|
284 |
-
#: contact-form-7/
|
285 |
-
msgid "
|
286 |
-
msgstr "
|
287 |
|
288 |
-
#: contact-form-7/
|
289 |
-
msgid "
|
290 |
-
msgstr "
|
291 |
|
292 |
-
#: contact-form-7/
|
293 |
-
msgid "
|
294 |
-
msgstr "
|
295 |
|
296 |
-
#: contact-form-7/
|
297 |
-
msgid "
|
298 |
-
msgstr "
|
299 |
|
300 |
-
#: contact-form-7/
|
301 |
-
msgid "
|
302 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
303 |
|
304 |
-
#: contact-form-7/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
305 |
msgid "Copy this code and paste it into the form left."
|
306 |
msgstr "Copie este código e cole-o no formulário à esquerda."
|
307 |
|
308 |
-
#: contact-form-7/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
309 |
msgid "Foreground color"
|
310 |
msgstr "Cor do texto"
|
311 |
|
312 |
-
#: contact-form-7/
|
313 |
msgid "Background color"
|
314 |
msgstr "Cor de fundo"
|
315 |
|
316 |
-
#: contact-form-7/
|
317 |
msgid "Image size"
|
318 |
msgstr "Tamanho da imagem"
|
319 |
|
320 |
-
#: contact-form-7/
|
321 |
msgid "Small"
|
322 |
msgstr "Pequena"
|
323 |
|
324 |
-
#: contact-form-7/
|
325 |
msgid "Medium"
|
326 |
msgstr "Média"
|
327 |
|
328 |
-
#: contact-form-7/
|
329 |
msgid "Large"
|
330 |
msgstr "Grande"
|
331 |
|
332 |
-
#: contact-form-7/
|
333 |
-
msgid "Image settings"
|
334 |
-
msgstr "Configurações da imagem"
|
335 |
-
|
336 |
-
#: contact-form-7/admin/admin.php:217
|
337 |
msgid "Input field settings"
|
338 |
msgstr "Configurações do campo de digitação"
|
339 |
|
340 |
-
#: contact-form-7/
|
341 |
msgid "For image"
|
342 |
msgstr "Para a imagem"
|
343 |
|
344 |
-
#: contact-form-7/
|
345 |
msgid "For input field"
|
346 |
msgstr "Para o campo de digitação"
|
347 |
|
348 |
-
#: contact-form-7/
|
349 |
-
|
350 |
-
|
|
|
351 |
|
352 |
-
#: contact-form-7/
|
353 |
-
msgid "
|
354 |
-
msgstr "
|
355 |
|
356 |
-
#: contact-form-7/
|
357 |
-
msgid "
|
358 |
-
msgstr "
|
359 |
|
360 |
-
#: contact-form-7/
|
361 |
-
msgid "
|
362 |
-
msgstr "
|
363 |
|
364 |
-
#: contact-form-7/
|
365 |
-
|
366 |
-
|
|
|
367 |
|
368 |
-
#: contact-form-7/
|
369 |
-
msgid "
|
370 |
-
msgstr "
|
371 |
|
372 |
-
#: contact-form-7/
|
373 |
-
msgid "
|
374 |
-
msgstr "
|
375 |
|
376 |
-
#: contact-form-7/
|
377 |
-
msgid "
|
378 |
-
msgstr "
|
379 |
|
380 |
-
#: contact-form-7/
|
381 |
-
msgid "
|
382 |
-
msgstr "
|
383 |
|
384 |
-
#: contact-form-7/
|
385 |
-
msgid "
|
386 |
-
msgstr "
|
387 |
|
388 |
-
#: contact-form-7/
|
389 |
-
msgid "
|
390 |
-
msgstr "
|
391 |
|
392 |
-
#: contact-form-7/
|
393 |
-
msgid "
|
394 |
-
msgstr "
|
395 |
|
396 |
-
#: contact-form-7/
|
397 |
-
msgid "
|
398 |
-
msgstr "
|
399 |
|
400 |
-
#: contact-form-7/
|
401 |
-
msgid "
|
402 |
-
msgstr "
|
403 |
|
404 |
-
#: contact-form-7/
|
405 |
-
msgid "
|
406 |
-
msgstr "Este
|
407 |
|
408 |
-
#: contact-form-7/
|
409 |
-
msgid "
|
410 |
-
msgstr "
|
411 |
|
412 |
-
#: contact-form-7/
|
413 |
-
msgid "
|
414 |
-
msgstr "
|
415 |
|
416 |
-
#: contact-form-7/
|
417 |
-
msgid "
|
418 |
-
msgstr "
|
419 |
|
420 |
-
#: contact-form-7/
|
421 |
-
msgid "
|
422 |
-
msgstr "
|
423 |
|
424 |
-
#: contact-form-7/
|
425 |
-
|
426 |
-
|
427 |
-
msgstr "Falha ao enviar sua mensagem. Por favor tente mais tarde ou contacte o administrador de outra forma."
|
428 |
|
429 |
-
#: contact-form-7/
|
430 |
-
msgid "
|
431 |
-
msgstr "
|
432 |
|
433 |
-
#: contact-form-7/
|
434 |
-
msgid "
|
435 |
-
msgstr "
|
436 |
|
437 |
-
#: contact-form-7/
|
438 |
-
msgid "
|
439 |
-
msgstr "
|
440 |
|
441 |
-
#: contact-form-7/
|
442 |
-
msgid "
|
443 |
-
msgstr "
|
444 |
|
445 |
-
#: contact-form-7/
|
446 |
-
|
447 |
-
|
|
|
448 |
|
449 |
-
#: contact-form-7/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
450 |
msgid "Your answer is not correct."
|
451 |
msgstr "Sua resposta está incorreta."
|
452 |
|
453 |
-
#: contact-form-7/
|
454 |
-
msgid "
|
455 |
-
msgstr "
|
456 |
|
457 |
-
#: contact-form-7/
|
458 |
-
msgid "
|
459 |
-
msgstr "
|
460 |
|
461 |
-
#: contact-form-7/
|
462 |
-
msgid "
|
463 |
-
msgstr "
|
464 |
|
465 |
-
#: contact-form-7/
|
466 |
-
msgid "
|
467 |
-
msgstr "
|
468 |
|
469 |
-
#: contact-form-7/
|
470 |
-
msgid "
|
471 |
-
msgstr "
|
472 |
|
473 |
-
#: contact-form-7/
|
474 |
-
|
475 |
-
|
476 |
-
msgstr "(obrigatório)"
|
477 |
|
478 |
-
#: contact-form-7/
|
479 |
-
msgid "
|
480 |
-
msgstr "
|
481 |
|
482 |
-
#: contact-form-7/
|
483 |
-
msgid "
|
484 |
-
msgstr "
|
485 |
|
486 |
-
#: contact-form-7/
|
487 |
-
msgid "
|
488 |
-
msgstr "
|
489 |
|
490 |
-
#: contact-form-7/
|
491 |
-
msgid "
|
492 |
-
msgstr "
|
493 |
|
494 |
-
#: contact-form-7/modules/
|
495 |
-
msgid "
|
496 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
497 |
|
498 |
#~ msgid "Delete this contact form"
|
499 |
#~ msgstr "Excluir este formulário de contato"
|
|
|
500 |
#~ msgid "(You need WordPress 2.7 or greater to use this feature)"
|
501 |
#~ msgstr "(Você precisa do WordPress 2.7 ou superior para usar este recurso)"
|
502 |
-
|
1 |
msgid ""
|
2 |
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Form 7\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-05-18 23:31+0900\n"
|
6 |
+
"PO-Revision-Date: 2010-07-16 09:35-0300\n"
|
7 |
+
"Last-Translator: Gervásio Antônio <gdsa32-translation@yahoo.com.br>\n"
|
8 |
"Language-Team: \n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_c\n"
|
14 |
+
"X-Poedit-Basepath: ../..\n"
|
15 |
+
"Plural-Forms: nplurals=1; plural=0;\n"
|
16 |
+
"X-Poedit-SearchPath-0: contact-form-7\n"
|
17 |
+
|
18 |
+
#: contact-form-7/admin/admin.php:120
|
19 |
+
#: contact-form-7/admin/edit.php:17
|
20 |
+
#: contact-form-7/admin/edit.php:30
|
21 |
+
msgid "Contact Form 7"
|
22 |
+
msgstr "Contact Form 7"
|
23 |
+
|
24 |
+
#: contact-form-7/admin/admin.php:120
|
25 |
+
msgid "Contact"
|
26 |
+
msgstr "Contato"
|
27 |
+
|
28 |
+
#: contact-form-7/admin/admin.php:123
|
29 |
+
msgid "Edit Contact Forms"
|
30 |
+
msgstr "Editar Formulários de Contato"
|
31 |
+
|
32 |
+
#: contact-form-7/admin/admin.php:123
|
33 |
+
msgid "Edit"
|
34 |
+
msgstr "Editar"
|
35 |
+
|
36 |
+
#: contact-form-7/admin/admin.php:162
|
37 |
+
msgid "Generate Tag"
|
38 |
+
msgstr "Gerar tag"
|
39 |
+
|
40 |
+
#: contact-form-7/admin/admin.php:163
|
41 |
+
msgid "Show"
|
42 |
+
msgstr "Exibir"
|
43 |
+
|
44 |
+
#: contact-form-7/admin/admin.php:164
|
45 |
+
msgid "Hide"
|
46 |
+
msgstr "Ocultar"
|
47 |
+
|
48 |
+
#: contact-form-7/admin/admin.php:261
|
49 |
+
msgid "Contact form"
|
50 |
+
msgstr "Formulário de contato"
|
51 |
+
|
52 |
+
#: contact-form-7/admin/admin.php:280
|
53 |
+
msgid "Settings"
|
54 |
+
msgstr "Configurações"
|
55 |
+
|
56 |
+
#: contact-form-7/admin/admin.php:291
|
57 |
+
msgid "http://contactform7.com/"
|
58 |
+
msgstr "http://contactform7.com/"
|
59 |
+
|
60 |
+
#: contact-form-7/admin/admin.php:292
|
61 |
+
msgid "Contactform7.com"
|
62 |
+
msgstr "Contactform7.com"
|
63 |
+
|
64 |
+
#: contact-form-7/admin/admin.php:293
|
65 |
+
msgid "http://contactform7.com/docs/"
|
66 |
+
msgstr "http://contactform7.com/docs/"
|
67 |
+
|
68 |
+
#: contact-form-7/admin/admin.php:294
|
69 |
+
msgid "Docs"
|
70 |
+
msgstr "Docs"
|
71 |
+
|
72 |
+
#: contact-form-7/admin/admin.php:295
|
73 |
+
msgid "http://contactform7.com/faq/"
|
74 |
+
msgstr "http://contactform7.com/faq/"
|
75 |
+
|
76 |
+
#: contact-form-7/admin/admin.php:296
|
77 |
+
msgid "FAQ"
|
78 |
+
msgstr "FAQ"
|
79 |
+
|
80 |
+
#: contact-form-7/admin/admin.php:297
|
81 |
+
msgid "http://contactform7.com/support/"
|
82 |
+
msgstr "http://contactform7.com/support/"
|
83 |
+
|
84 |
+
#: contact-form-7/admin/admin.php:298
|
85 |
+
msgid "Support"
|
86 |
+
msgstr "Suporte"
|
87 |
+
|
88 |
+
#: contact-form-7/admin/admin.php:312
|
89 |
+
msgid "Contact form created."
|
90 |
+
msgstr "Formulário de contato criado."
|
91 |
+
|
92 |
+
#: contact-form-7/admin/admin.php:315
|
93 |
+
msgid "Contact form saved."
|
94 |
+
msgstr "Formulário de contato salvo."
|
95 |
+
|
96 |
+
#: contact-form-7/admin/admin.php:318
|
97 |
+
msgid "Contact form deleted."
|
98 |
+
msgstr "Formulário de contato excluído."
|
99 |
+
|
100 |
+
#: contact-form-7/admin/admin.php:321
|
101 |
+
msgid "Database table created."
|
102 |
+
msgstr "Tabela criada na base de dados."
|
103 |
+
|
104 |
+
#: contact-form-7/admin/admin.php:324
|
105 |
+
msgid "Failed to create database table."
|
106 |
+
msgstr "Falha ao criar tabela na base de dados."
|
107 |
+
|
108 |
+
#: contact-form-7/admin/admin.php:358
|
109 |
+
msgid "Contact Form 7 needs your support. Please donate today."
|
110 |
+
msgstr "Contact Form 7 precisa da sua ajuda. Por favor, faça uma doação."
|
111 |
+
|
112 |
+
#: contact-form-7/admin/admin.php:359
|
113 |
+
msgid "Your contribution is needed for making this plugin better."
|
114 |
+
msgstr "Sua contribuição é necessária para tornar este plugin melhor."
|
115 |
+
|
116 |
+
#: contact-form-7/admin/admin.php:365
|
117 |
+
msgid "http://contactform7.com/donate/"
|
118 |
+
msgstr "http://contactform7.com/donate/"
|
119 |
|
120 |
+
#: contact-form-7/admin/admin.php:365
|
121 |
+
msgid "Donate"
|
122 |
+
msgstr "Doe"
|
123 |
+
|
124 |
+
#: contact-form-7/admin/edit.php:9
|
125 |
#, php-format
|
126 |
msgid "<strong>The database table for Contact Form 7 does not exist.</strong> You must <a href=\"%s\">create the table</a> for it to work."
|
127 |
+
msgstr "<strong>A tabela para o Contact Form 7 não existe na base de dados.</strong> Você precisa <a href=\"%s\">criar a tabela</a> para que o plugin funcione."
|
128 |
|
129 |
+
#: contact-form-7/admin/edit.php:12
|
130 |
msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
|
131 |
+
msgstr "<strong>A tabela para o Contact Form 7 não existe na base de dados.</strong>"
|
|
|
|
|
|
|
|
|
|
|
|
|
132 |
|
133 |
+
#: contact-form-7/admin/edit.php:45
|
134 |
msgid "Add new"
|
135 |
msgstr "Adicionar novo"
|
136 |
|
137 |
+
#: contact-form-7/admin/edit.php:67
|
138 |
msgid "Copy this code and paste it into your post, page or text widget content."
|
139 |
msgstr "Copie este código e cole-o no conteúdo do seu post, página ou widget de texto."
|
140 |
|
141 |
+
#: contact-form-7/admin/edit.php:75
|
142 |
+
#: contact-form-7/admin/edit.php:309
|
143 |
msgid "Save"
|
144 |
msgstr "Salvar"
|
145 |
|
146 |
+
#: contact-form-7/admin/edit.php:82
|
147 |
msgid "Copy"
|
148 |
msgstr "Copiar"
|
149 |
|
150 |
+
#: contact-form-7/admin/edit.php:87
|
151 |
msgid "Delete"
|
152 |
+
msgstr "Excluir"
|
153 |
|
154 |
+
#: contact-form-7/admin/edit.php:89
|
155 |
msgid ""
|
156 |
"You are about to delete this contact form.\n"
|
157 |
" 'Cancel' to stop, 'OK' to delete."
|
158 |
msgstr ""
|
159 |
"Você está prestes a excluir este formulário.\n"
|
160 |
+
"Clique em 'Cancelar' para interromper ou 'OK' para excluir."
|
161 |
|
162 |
+
#: contact-form-7/admin/edit.php:104
|
163 |
msgid "Form"
|
164 |
msgstr "Formulário"
|
165 |
|
166 |
+
#: contact-form-7/admin/edit.php:128
|
167 |
msgid "Mail"
|
168 |
+
msgstr "E-mail"
|
169 |
|
170 |
+
#: contact-form-7/admin/edit.php:135
|
171 |
+
#: contact-form-7/admin/edit.php:202
|
172 |
msgid "To:"
|
173 |
msgstr "Para:"
|
174 |
|
175 |
+
#: contact-form-7/admin/edit.php:140
|
176 |
+
#: contact-form-7/admin/edit.php:207
|
177 |
msgid "From:"
|
178 |
msgstr "De:"
|
179 |
|
180 |
+
#: contact-form-7/admin/edit.php:145
|
181 |
+
#: contact-form-7/admin/edit.php:212
|
182 |
msgid "Subject:"
|
183 |
msgstr "Assunto:"
|
184 |
|
185 |
+
#: contact-form-7/admin/edit.php:152
|
186 |
+
#: contact-form-7/admin/edit.php:219
|
187 |
msgid "Additional headers:"
|
188 |
+
msgstr "Cabeçalhos adicionais:"
|
189 |
|
190 |
+
#: contact-form-7/admin/edit.php:157
|
191 |
+
#: contact-form-7/admin/edit.php:224
|
192 |
msgid "File attachments:"
|
193 |
msgstr "Arquivos anexos:"
|
194 |
|
195 |
+
#: contact-form-7/admin/edit.php:165
|
196 |
+
#: contact-form-7/admin/edit.php:232
|
197 |
msgid "Use HTML content type"
|
198 |
+
msgstr "Usar conteúdo HTML"
|
199 |
|
200 |
+
#: contact-form-7/admin/edit.php:172
|
201 |
+
#: contact-form-7/admin/edit.php:239
|
202 |
+
#: contact-form-7/includes/functions.php:78
|
203 |
msgid "Message body:"
|
204 |
msgstr "Corpo da mensagem:"
|
205 |
|
206 |
+
#: contact-form-7/admin/edit.php:188
|
207 |
msgid "Mail (2)"
|
208 |
+
msgstr "E-mail (2)"
|
209 |
|
210 |
+
#: contact-form-7/admin/edit.php:194
|
211 |
msgid "Use mail (2)"
|
212 |
+
msgstr "Usar e-mail (2)"
|
213 |
|
214 |
+
#: contact-form-7/admin/edit.php:255
|
215 |
msgid "Messages"
|
216 |
msgstr "Mensagens"
|
217 |
|
218 |
+
#: contact-form-7/admin/edit.php:285
|
219 |
+
msgid "Additional Settings"
|
220 |
+
msgstr "Configurações Adicionais"
|
221 |
+
|
222 |
+
#: contact-form-7/admin/edit.php:333
|
223 |
+
#, php-format
|
224 |
+
msgid "Use the default language (%s)"
|
225 |
+
msgstr "Use o idioma padrão (%s)"
|
226 |
+
|
227 |
+
#: contact-form-7/admin/edit.php:334
|
228 |
+
#: contact-form-7/admin/edit.php:347
|
229 |
+
msgid "Add New"
|
230 |
+
msgstr "Adicionar novo"
|
231 |
+
|
232 |
+
#: contact-form-7/admin/edit.php:337
|
233 |
+
msgid "Or"
|
234 |
+
msgstr "Ou"
|
235 |
+
|
236 |
+
#: contact-form-7/admin/edit.php:342
|
237 |
+
msgid "(select language)"
|
238 |
+
msgstr "(Selecione o idioma)"
|
239 |
+
|
240 |
+
#: contact-form-7/includes/classes.php:577
|
241 |
+
msgid "Untitled"
|
242 |
+
msgstr "Sem nome"
|
243 |
+
|
244 |
+
#: contact-form-7/includes/functions.php:6
|
245 |
msgid "Sender's message was sent successfully"
|
246 |
msgstr "A mensagem foi enviada com sucesso"
|
247 |
|
248 |
+
#: contact-form-7/includes/functions.php:7
|
249 |
+
msgid "Your message was sent successfully. Thanks."
|
250 |
+
msgstr "Sua mensagem foi enviada com sucesso. Obrigado."
|
251 |
+
|
252 |
+
#: contact-form-7/includes/functions.php:11
|
253 |
msgid "Sender's message was failed to send"
|
254 |
msgstr "O envio da mensagem falhou"
|
255 |
|
256 |
+
#: contact-form-7/includes/functions.php:12
|
257 |
+
#: contact-form-7/includes/functions.php:17
|
258 |
+
msgid "Failed to send your message. Please try later or contact administrator by other way."
|
259 |
+
msgstr "Falha ao enviar sua mensagem. Por favor, tente mais tarde ou contacte o administrador de outra forma."
|
260 |
+
|
261 |
+
#: contact-form-7/includes/functions.php:16
|
262 |
msgid "Akismet judged the sending activity as spamming"
|
263 |
+
msgstr "O Akismet julgou a atividade de envio como spam"
|
264 |
|
265 |
+
#: contact-form-7/includes/functions.php:21
|
266 |
msgid "Validation errors occurred"
|
267 |
msgstr "Ocorreram erros de validação"
|
268 |
|
269 |
+
#: contact-form-7/includes/functions.php:22
|
270 |
+
msgid "Validation errors occurred. Please confirm the fields and submit it again."
|
271 |
+
msgstr "Ocorreram erros de validação. Por favor confira os dados e envie novamente."
|
272 |
+
|
273 |
+
#: contact-form-7/includes/functions.php:26
|
274 |
+
msgid "There is a field of term that sender is needed to accept"
|
275 |
+
msgstr "Há um campo de termos de uso que o remetente deve aceitar"
|
276 |
+
|
277 |
+
#: contact-form-7/includes/functions.php:27
|
278 |
+
msgid "Please accept the terms to proceed."
|
279 |
+
msgstr "Por favor, aceite os termos de uso para prosseguir."
|
280 |
|
281 |
+
#: contact-form-7/includes/functions.php:31
|
282 |
msgid "Email address that sender entered is invalid"
|
283 |
msgstr "O endereço de e-mail digitado é inválido"
|
284 |
|
285 |
+
#: contact-form-7/includes/functions.php:32
|
286 |
+
msgid "Email address seems invalid."
|
287 |
+
msgstr "O endereço de e-mail parece inválido."
|
288 |
|
289 |
+
#: contact-form-7/includes/functions.php:36
|
290 |
+
msgid "There is a field that sender is needed to fill in"
|
291 |
+
msgstr "Há um campo que o remetente deve preencher"
|
292 |
|
293 |
+
#: contact-form-7/includes/functions.php:37
|
294 |
+
msgid "Please fill the required field."
|
295 |
+
msgstr "Por favor preencha este campo obrigatório."
|
296 |
|
297 |
+
#: contact-form-7/includes/functions.php:46
|
298 |
+
msgid "Your Name"
|
299 |
+
msgstr "Seu nome"
|
300 |
|
301 |
+
#: contact-form-7/includes/functions.php:46
|
302 |
+
#: contact-form-7/includes/functions.php:48
|
303 |
+
msgid "(required)"
|
304 |
+
msgstr "(obrigatório)"
|
305 |
|
306 |
+
#: contact-form-7/includes/functions.php:48
|
307 |
+
msgid "Your Email"
|
308 |
+
msgstr "Seu e-mail"
|
309 |
|
310 |
+
#: contact-form-7/includes/functions.php:50
|
311 |
+
msgid "Subject"
|
312 |
+
msgstr "Assunto"
|
313 |
|
314 |
+
#: contact-form-7/includes/functions.php:52
|
315 |
+
msgid "Your Message"
|
316 |
+
msgstr "Sua mensagem"
|
317 |
|
318 |
+
#: contact-form-7/includes/functions.php:54
|
319 |
+
msgid "Send"
|
320 |
+
msgstr "Enviar"
|
321 |
|
322 |
+
#: contact-form-7/includes/functions.php:62
|
323 |
+
#, php-format
|
324 |
+
msgid "From: %s"
|
325 |
+
msgstr "De: %s"
|
326 |
|
327 |
+
#: contact-form-7/includes/functions.php:63
|
328 |
+
#, php-format
|
329 |
+
msgid "Subject: %s"
|
330 |
+
msgstr "Assunto: %s"
|
331 |
|
332 |
+
#: contact-form-7/includes/functions.php:64
|
333 |
+
msgid "Message Body:"
|
334 |
+
msgstr "Corpo da mensagem:"
|
335 |
|
336 |
+
#: contact-form-7/includes/functions.php:65
|
337 |
+
#: contact-form-7/includes/functions.php:79
|
338 |
+
#, php-format
|
339 |
+
msgid "This mail is sent via contact form on %1$s %2$s"
|
340 |
+
msgstr "Esta mensagem foi enviada através do formulário de contato do site %1$s %2$s"
|
341 |
|
342 |
+
#: contact-form-7/includes/functions.php:168
|
343 |
+
msgid "Afrikaans"
|
344 |
+
msgstr "Africâner"
|
345 |
|
346 |
+
#: contact-form-7/includes/functions.php:169
|
347 |
+
msgid "Albanian"
|
348 |
+
msgstr "Albanês"
|
349 |
|
350 |
+
#: contact-form-7/includes/functions.php:170
|
351 |
+
msgid "Arabic"
|
352 |
+
msgstr "Árabe"
|
353 |
|
354 |
+
#: contact-form-7/includes/functions.php:171
|
355 |
+
msgid "Bangla"
|
356 |
+
msgstr "Bengalês"
|
357 |
|
358 |
+
#: contact-form-7/includes/functions.php:172
|
359 |
+
msgid "Bosnian"
|
360 |
+
msgstr "Bósnio"
|
361 |
|
362 |
+
#: contact-form-7/includes/functions.php:173
|
363 |
+
msgid "Brazilian Portuguese"
|
364 |
+
msgstr "Português do Brasil"
|
365 |
|
366 |
+
#: contact-form-7/includes/functions.php:174
|
367 |
+
msgid "Bulgarian"
|
368 |
+
msgstr "Búlgaro"
|
369 |
|
370 |
+
#: contact-form-7/includes/functions.php:175
|
371 |
+
msgid "Catalan"
|
372 |
+
msgstr "Catalão"
|
373 |
|
374 |
+
#: contact-form-7/includes/functions.php:176
|
375 |
+
msgid "Chinese (Simplified)"
|
376 |
+
msgstr "Chinês (Simplificado)"
|
377 |
|
378 |
+
#: contact-form-7/includes/functions.php:177
|
379 |
+
msgid "Chinese (Traditional)"
|
380 |
+
msgstr "Chinês (Tradicional)"
|
381 |
|
382 |
+
#: contact-form-7/includes/functions.php:178
|
383 |
+
msgid "Croatian"
|
384 |
+
msgstr "Croata"
|
385 |
|
386 |
+
#: contact-form-7/includes/functions.php:179
|
387 |
+
msgid "Czech"
|
388 |
+
msgstr "Tcheco"
|
389 |
|
390 |
+
#: contact-form-7/includes/functions.php:180
|
391 |
+
msgid "Danish"
|
392 |
+
msgstr "Dinamarquês"
|
393 |
|
394 |
+
#: contact-form-7/includes/functions.php:181
|
395 |
+
msgid "Dutch"
|
396 |
+
msgstr "Holandês"
|
397 |
|
398 |
+
#: contact-form-7/includes/functions.php:182
|
399 |
+
msgid "English"
|
400 |
+
msgstr "Inglês"
|
401 |
|
402 |
+
#: contact-form-7/includes/functions.php:183
|
403 |
+
msgid "Estonian"
|
404 |
+
msgstr "Estoniano"
|
405 |
|
406 |
+
#: contact-form-7/includes/functions.php:184
|
407 |
+
msgid "Finnish"
|
408 |
+
msgstr "Finlandês"
|
409 |
|
410 |
+
#: contact-form-7/includes/functions.php:185
|
411 |
+
msgid "French"
|
412 |
+
msgstr "Francês"
|
413 |
|
414 |
+
#: contact-form-7/includes/functions.php:186
|
415 |
+
msgid "Galician"
|
416 |
+
msgstr "Galego"
|
417 |
|
418 |
+
#: contact-form-7/includes/functions.php:187
|
419 |
+
msgid "Georgian"
|
420 |
+
msgstr "Georgiano"
|
421 |
|
422 |
+
#: contact-form-7/includes/functions.php:188
|
423 |
+
msgid "German"
|
424 |
+
msgstr "Alemão"
|
425 |
|
426 |
+
#: contact-form-7/includes/functions.php:189
|
427 |
+
msgid "Greek"
|
428 |
+
msgstr "Grego"
|
429 |
|
430 |
+
#: contact-form-7/includes/functions.php:190
|
431 |
+
msgid "Hebrew"
|
432 |
+
msgstr "Hebraico"
|
433 |
|
434 |
+
#: contact-form-7/includes/functions.php:191
|
435 |
+
msgid "Hindi"
|
436 |
+
msgstr "Hindi"
|
437 |
|
438 |
+
#: contact-form-7/includes/functions.php:192
|
439 |
+
msgid "Hungarian"
|
440 |
+
msgstr "Húngaro"
|
441 |
|
442 |
+
#: contact-form-7/includes/functions.php:193
|
443 |
+
msgid "Indonesian"
|
444 |
+
msgstr "Indonésio"
|
445 |
|
446 |
+
#: contact-form-7/includes/functions.php:194
|
447 |
+
msgid "Italian"
|
448 |
+
msgstr "Italiano"
|
449 |
|
450 |
+
#: contact-form-7/includes/functions.php:195
|
451 |
+
msgid "Japanese"
|
452 |
+
msgstr "Japonês"
|
453 |
|
454 |
+
#: contact-form-7/includes/functions.php:196
|
455 |
+
msgid "Korean"
|
456 |
+
msgstr "Coreano"
|
457 |
+
|
458 |
+
#: contact-form-7/includes/functions.php:197
|
459 |
+
msgid "Latvian"
|
460 |
+
msgstr "Letão"
|
461 |
+
|
462 |
+
#: contact-form-7/includes/functions.php:198
|
463 |
+
msgid "Lithuanian"
|
464 |
+
msgstr "Lituano"
|
465 |
+
|
466 |
+
#: contact-form-7/includes/functions.php:199
|
467 |
+
msgid "Malayalam"
|
468 |
+
msgstr "Malaio"
|
469 |
+
|
470 |
+
#: contact-form-7/includes/functions.php:200
|
471 |
+
msgid "Norwegian"
|
472 |
+
msgstr "Norueguês"
|
473 |
|
474 |
+
#: contact-form-7/includes/functions.php:201
|
475 |
+
msgid "Persian"
|
476 |
+
msgstr "Persa"
|
477 |
+
|
478 |
+
#: contact-form-7/includes/functions.php:202
|
479 |
+
msgid "Polish"
|
480 |
+
msgstr "Polonês"
|
481 |
+
|
482 |
+
#: contact-form-7/includes/functions.php:203
|
483 |
+
msgid "Portuguese"
|
484 |
+
msgstr "Português"
|
485 |
+
|
486 |
+
#: contact-form-7/includes/functions.php:204
|
487 |
+
msgid "Russian"
|
488 |
+
msgstr "Russo"
|
489 |
+
|
490 |
+
#: contact-form-7/includes/functions.php:205
|
491 |
+
msgid "Romanian"
|
492 |
+
msgstr "Romeno"
|
493 |
+
|
494 |
+
#: contact-form-7/includes/functions.php:206
|
495 |
+
msgid "Serbian"
|
496 |
+
msgstr "Sérvio"
|
497 |
+
|
498 |
+
#: contact-form-7/includes/functions.php:207
|
499 |
+
msgid "Slovak"
|
500 |
+
msgstr "Eslovaco"
|
501 |
+
|
502 |
+
#: contact-form-7/includes/functions.php:208
|
503 |
+
msgid "Slovene"
|
504 |
+
msgstr "Esloveno"
|
505 |
+
|
506 |
+
#: contact-form-7/includes/functions.php:209
|
507 |
+
msgid "Spanish"
|
508 |
+
msgstr "Espanhol"
|
509 |
+
|
510 |
+
#: contact-form-7/includes/functions.php:210
|
511 |
+
msgid "Swedish"
|
512 |
+
msgstr "Sueco"
|
513 |
+
|
514 |
+
#: contact-form-7/includes/functions.php:211
|
515 |
+
msgid "Thai"
|
516 |
+
msgstr "Tailandês"
|
517 |
+
|
518 |
+
#: contact-form-7/includes/functions.php:212
|
519 |
+
msgid "Turkish"
|
520 |
+
msgstr "Turco"
|
521 |
+
|
522 |
+
#: contact-form-7/includes/functions.php:213
|
523 |
+
msgid "Ukrainian"
|
524 |
+
msgstr "Ucraniano"
|
525 |
+
|
526 |
+
#: contact-form-7/includes/functions.php:214
|
527 |
+
msgid "Vietnamese"
|
528 |
+
msgstr "Vietnamita"
|
529 |
+
|
530 |
+
#: contact-form-7/modules/acceptance.php:104
|
531 |
+
msgid "Acceptance"
|
532 |
+
msgstr "Aceitação"
|
533 |
+
|
534 |
+
#: contact-form-7/modules/acceptance.php:113
|
535 |
+
#: contact-form-7/modules/captcha.php:214
|
536 |
+
#: contact-form-7/modules/checkbox.php:209
|
537 |
+
#: contact-form-7/modules/file.php:241
|
538 |
+
msgid "Name"
|
539 |
+
msgstr "Nome"
|
540 |
+
|
541 |
+
#: contact-form-7/modules/acceptance.php:118
|
542 |
+
#: contact-form-7/modules/acceptance.php:121
|
543 |
+
#: contact-form-7/modules/captcha.php:221
|
544 |
+
#: contact-form-7/modules/captcha.php:224
|
545 |
+
#: contact-form-7/modules/captcha.php:229
|
546 |
+
#: contact-form-7/modules/captcha.php:232
|
547 |
+
#: contact-form-7/modules/captcha.php:236
|
548 |
+
#: contact-form-7/modules/captcha.php:247
|
549 |
+
#: contact-form-7/modules/captcha.php:250
|
550 |
+
#: contact-form-7/modules/captcha.php:255
|
551 |
+
#: contact-form-7/modules/captcha.php:258
|
552 |
+
#: contact-form-7/modules/checkbox.php:214
|
553 |
+
#: contact-form-7/modules/checkbox.php:217
|
554 |
+
#: contact-form-7/modules/file.php:246
|
555 |
+
#: contact-form-7/modules/file.php:249
|
556 |
+
#: contact-form-7/modules/file.php:254
|
557 |
+
#: contact-form-7/modules/file.php:257
|
558 |
+
msgid "optional"
|
559 |
+
msgstr "opcional"
|
560 |
+
|
561 |
+
#: contact-form-7/modules/acceptance.php:127
|
562 |
+
msgid "Make this checkbox checked by default?"
|
563 |
+
msgstr "Deixar esta opção marcada por padrão?"
|
564 |
+
|
565 |
+
#: contact-form-7/modules/acceptance.php:128
|
566 |
+
msgid "Make this checkbox work inversely?"
|
567 |
+
msgstr "Fazer esta opção funcionar inversamente?"
|
568 |
+
|
569 |
+
#: contact-form-7/modules/acceptance.php:129
|
570 |
+
msgid "* That means visitor who accepts the term unchecks it."
|
571 |
+
msgstr "* Isso significa que o visitante que aceitar os termos deverá desmarcá-la."
|
572 |
+
|
573 |
+
#: contact-form-7/modules/acceptance.php:134
|
574 |
+
#: contact-form-7/modules/captcha.php:263
|
575 |
+
#: contact-form-7/modules/checkbox.php:237
|
576 |
+
#: contact-form-7/modules/file.php:262
|
577 |
msgid "Copy this code and paste it into the form left."
|
578 |
msgstr "Copie este código e cole-o no formulário à esquerda."
|
579 |
|
580 |
+
#: contact-form-7/modules/captcha.php:70
|
581 |
+
msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
|
582 |
+
msgstr "Para utilizar CAPTCHA, você previsa ter o plugin <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> instalado."
|
583 |
+
|
584 |
+
#: contact-form-7/modules/captcha.php:189
|
585 |
+
msgid "The code that sender entered does not match the CAPTCHA"
|
586 |
+
msgstr "O código digitado pelo remetente não confere com o CAPTCHA"
|
587 |
+
|
588 |
+
#: contact-form-7/modules/captcha.php:190
|
589 |
+
msgid "Your entered code is incorrect."
|
590 |
+
msgstr "O código digitado está incorreto."
|
591 |
+
|
592 |
+
#: contact-form-7/modules/captcha.php:200
|
593 |
+
msgid "CAPTCHA"
|
594 |
+
msgstr "CAPTCHA"
|
595 |
+
|
596 |
+
#: contact-form-7/modules/captcha.php:211
|
597 |
+
msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
|
598 |
+
msgstr "Nota: Para utilizar CAPTCHA, você previsa do plugin Really Simple CAPTCHA instalado."
|
599 |
+
|
600 |
+
#: contact-form-7/modules/captcha.php:218
|
601 |
+
msgid "Image settings"
|
602 |
+
msgstr "Configurações da imagem"
|
603 |
+
|
604 |
+
#: contact-form-7/modules/captcha.php:229
|
605 |
msgid "Foreground color"
|
606 |
msgstr "Cor do texto"
|
607 |
|
608 |
+
#: contact-form-7/modules/captcha.php:232
|
609 |
msgid "Background color"
|
610 |
msgstr "Cor de fundo"
|
611 |
|
612 |
+
#: contact-form-7/modules/captcha.php:236
|
613 |
msgid "Image size"
|
614 |
msgstr "Tamanho da imagem"
|
615 |
|
616 |
+
#: contact-form-7/modules/captcha.php:237
|
617 |
msgid "Small"
|
618 |
msgstr "Pequena"
|
619 |
|
620 |
+
#: contact-form-7/modules/captcha.php:238
|
621 |
msgid "Medium"
|
622 |
msgstr "Média"
|
623 |
|
624 |
+
#: contact-form-7/modules/captcha.php:239
|
625 |
msgid "Large"
|
626 |
msgstr "Grande"
|
627 |
|
628 |
+
#: contact-form-7/modules/captcha.php:244
|
|
|
|
|
|
|
|
|
629 |
msgid "Input field settings"
|
630 |
msgstr "Configurações do campo de digitação"
|
631 |
|
632 |
+
#: contact-form-7/modules/captcha.php:264
|
633 |
msgid "For image"
|
634 |
msgstr "Para a imagem"
|
635 |
|
636 |
+
#: contact-form-7/modules/captcha.php:266
|
637 |
msgid "For input field"
|
638 |
msgstr "Para o campo de digitação"
|
639 |
|
640 |
+
#: contact-form-7/modules/captcha.php:296
|
641 |
+
#, php-format
|
642 |
+
msgid "This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
|
643 |
+
msgstr "Este formulário de contato contém campos de CAPTCHA, mas a pasta temporária para os arquivos (%s) não existe ou não é gravável. Você pode criar a pasta ou alterar a sua permissão manualmente."
|
644 |
|
645 |
+
#: contact-form-7/modules/captcha.php:302
|
646 |
+
msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
|
647 |
+
msgstr "Este formulário de contato contém campos de CAPTCHA, mas as bibliotecas necessárias (GD e FreeType) não estão disponíveis no seu servidor."
|
648 |
|
649 |
+
#: contact-form-7/modules/checkbox.php:182
|
650 |
+
msgid "Checkboxes"
|
651 |
+
msgstr "Caixas de seleção"
|
652 |
|
653 |
+
#: contact-form-7/modules/checkbox.php:185
|
654 |
+
msgid "Radio buttons"
|
655 |
+
msgstr "Botões de rádio"
|
656 |
|
657 |
+
#: contact-form-7/modules/checkbox.php:206
|
658 |
+
#: contact-form-7/modules/file.php:240
|
659 |
+
msgid "Required field?"
|
660 |
+
msgstr "Campo obrigatório?"
|
661 |
|
662 |
+
#: contact-form-7/modules/checkbox.php:222
|
663 |
+
msgid "Choices"
|
664 |
+
msgstr "Opções"
|
665 |
|
666 |
+
#: contact-form-7/modules/checkbox.php:224
|
667 |
+
msgid "* One choice per line."
|
668 |
+
msgstr "* Uma opção por linha."
|
669 |
|
670 |
+
#: contact-form-7/modules/checkbox.php:228
|
671 |
+
msgid "Put a label first, a checkbox last?"
|
672 |
+
msgstr "Colocar o rótulo antes e a caixa de seleção depois?"
|
673 |
|
674 |
+
#: contact-form-7/modules/checkbox.php:229
|
675 |
+
msgid "Wrap each item with <label> tag?"
|
676 |
+
msgstr "Envolver cada item com a tag <label>?"
|
677 |
|
678 |
+
#: contact-form-7/modules/checkbox.php:231
|
679 |
+
msgid "Make checkboxes exclusive?"
|
680 |
+
msgstr "Tornar as caixas de seleção exclusivas?"
|
681 |
|
682 |
+
#: contact-form-7/modules/checkbox.php:239
|
683 |
+
msgid "And, put this code into the Mail fields below."
|
684 |
+
msgstr "E coloque este código nos campos de E-mail abaixo."
|
685 |
|
686 |
+
#: contact-form-7/modules/file.php:204
|
687 |
+
msgid "Uploading a file fails for any reason"
|
688 |
+
msgstr "O upload de um arquivo falhou por alguma razão"
|
689 |
|
690 |
+
#: contact-form-7/modules/file.php:205
|
691 |
+
msgid "Failed to upload file."
|
692 |
+
msgstr "Falha no upload do arquivo."
|
693 |
|
694 |
+
#: contact-form-7/modules/file.php:209
|
695 |
+
msgid "Uploaded file is not allowed file type"
|
696 |
+
msgstr "O tipo do arquivo enviado não é permitido"
|
697 |
|
698 |
+
#: contact-form-7/modules/file.php:210
|
699 |
+
msgid "This file type is not allowed."
|
700 |
+
msgstr "Este tipo de arquivo não é permitido."
|
701 |
|
702 |
+
#: contact-form-7/modules/file.php:214
|
703 |
+
msgid "Uploaded file is too large"
|
704 |
+
msgstr "O arquivo enviado é muito grande"
|
705 |
|
706 |
+
#: contact-form-7/modules/file.php:215
|
707 |
+
msgid "This file is too large."
|
708 |
+
msgstr "Este arquivo é grande demais."
|
709 |
|
710 |
+
#: contact-form-7/modules/file.php:219
|
711 |
+
msgid "Uploading a file fails for PHP error"
|
712 |
+
msgstr "O upload de um arquivo falhou por causa de um erro no PHP"
|
713 |
|
714 |
+
#: contact-form-7/modules/file.php:220
|
715 |
+
msgid "Failed to upload file. Error occurred."
|
716 |
+
msgstr "Falha no upload do arquivo."
|
717 |
|
718 |
+
#: contact-form-7/modules/file.php:231
|
719 |
+
msgid "File upload"
|
720 |
+
msgstr "Upload de arquivo"
|
|
|
721 |
|
722 |
+
#: contact-form-7/modules/file.php:254
|
723 |
+
msgid "File size limit"
|
724 |
+
msgstr "Limite do tamanho de arquivo"
|
725 |
|
726 |
+
#: contact-form-7/modules/file.php:254
|
727 |
+
msgid "bytes"
|
728 |
+
msgstr "bytes"
|
729 |
|
730 |
+
#: contact-form-7/modules/file.php:257
|
731 |
+
msgid "Acceptable file types"
|
732 |
+
msgstr "Tipos de arquivo aceitos"
|
733 |
|
734 |
+
#: contact-form-7/modules/file.php:264
|
735 |
+
msgid "And, put this code into the File Attachments field below."
|
736 |
+
msgstr "E coloque este código no campo Arquivos Anexos abaixo."
|
737 |
|
738 |
+
#: contact-form-7/modules/file.php:289
|
739 |
+
#, php-format
|
740 |
+
msgid "This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
|
741 |
+
msgstr "Este formulário de contato contém campos de upload de arquivos, mas a pasta temporária para os arquivos (%s) não existe ou não é gravável. Você pode criar a pasta ou alterar a sua permissão manualmente."
|
742 |
|
743 |
+
#: contact-form-7/modules/icl.php:74
|
744 |
+
msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
|
745 |
+
msgstr "Este formulário de contato contém tags [icl], mas elas são obsoletas e não funcionam nesta versão do Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">Existe um modo mais simples para a criação de formulários de contato de outros idiomas</a> e é recomendável usá-lo."
|
746 |
+
|
747 |
+
#: contact-form-7/modules/quiz.php:170
|
748 |
+
msgid "Sender doesn't enter the correct answer to the quiz"
|
749 |
+
msgstr "Você não inseriu a resposta correta para a pergunta"
|
750 |
+
|
751 |
+
#: contact-form-7/modules/quiz.php:171
|
752 |
msgid "Your answer is not correct."
|
753 |
msgstr "Sua resposta está incorreta."
|
754 |
|
755 |
+
#: contact-form-7/modules/quiz.php:181
|
756 |
+
msgid "Quiz"
|
757 |
+
msgstr "Pergunta"
|
758 |
|
759 |
+
#: contact-form-7/modules/quiz.php:211
|
760 |
+
msgid "Quizzes"
|
761 |
+
msgstr "Perguntas"
|
762 |
|
763 |
+
#: contact-form-7/modules/quiz.php:213
|
764 |
+
msgid "* quiz|answer (e.g. 1+1=?|2)"
|
765 |
+
msgstr "* pergunta|resposta (e.g. 1+1=?|2)"
|
766 |
|
767 |
+
#: contact-form-7/modules/select.php:154
|
768 |
+
msgid "Drop-down menu"
|
769 |
+
msgstr "Menu drop-down"
|
770 |
|
771 |
+
#: contact-form-7/modules/select.php:183
|
772 |
+
msgid "Allow multiple selections?"
|
773 |
+
msgstr "Permitir múltiplas seleções?"
|
774 |
|
775 |
+
#: contact-form-7/modules/select.php:184
|
776 |
+
msgid "Insert a blank item as the first option?"
|
777 |
+
msgstr "Inserir um item em branco como primeira opção?"
|
|
|
778 |
|
779 |
+
#: contact-form-7/modules/submit.php:62
|
780 |
+
msgid "Submit button"
|
781 |
+
msgstr "Botão de envio"
|
782 |
|
783 |
+
#: contact-form-7/modules/submit.php:80
|
784 |
+
msgid "Label"
|
785 |
+
msgstr "Rótulo"
|
786 |
|
787 |
+
#: contact-form-7/modules/text.php:137
|
788 |
+
msgid "Text field"
|
789 |
+
msgstr "Campo de texto"
|
790 |
|
791 |
+
#: contact-form-7/modules/text.php:140
|
792 |
+
msgid "Email field"
|
793 |
+
msgstr "Campo de e-mail"
|
794 |
|
795 |
+
#: contact-form-7/modules/text.php:182
|
796 |
+
msgid "Akismet"
|
797 |
+
msgstr "Akismet"
|
798 |
+
|
799 |
+
#: contact-form-7/modules/text.php:184
|
800 |
+
msgid "This field requires author's name"
|
801 |
+
msgstr "Este campo requer o nome do autor"
|
802 |
+
|
803 |
+
#: contact-form-7/modules/text.php:185
|
804 |
+
msgid "This field requires author's URL"
|
805 |
+
msgstr "Este campo requer a URL do autor"
|
806 |
+
|
807 |
+
#: contact-form-7/modules/text.php:187
|
808 |
+
msgid "This field requires author's email address"
|
809 |
+
msgstr "Este campo requer o endereço de e-mail do autor"
|
810 |
+
|
811 |
+
#: contact-form-7/modules/text.php:191
|
812 |
+
#: contact-form-7/modules/textarea.php:157
|
813 |
+
msgid "Default value"
|
814 |
+
msgstr "Valor padrão"
|
815 |
+
|
816 |
+
#: contact-form-7/modules/textarea.php:126
|
817 |
+
msgid "Text area"
|
818 |
+
msgstr "Área de texto"
|
819 |
+
|
820 |
+
#~ msgid ""
|
821 |
+
#~ "Is this plugin useful for you? If you like it, please help the developer."
|
822 |
+
#~ msgstr ""
|
823 |
+
#~ "Este plugin é útil para você? Se você gostou, por favor ajude o "
|
824 |
+
#~ "desenvolvedor."
|
825 |
+
|
826 |
+
#~ msgid ""
|
827 |
+
#~ "Developing a plugin and providing user support is really hard work. "
|
828 |
+
#~ "Please help."
|
829 |
+
#~ msgstr ""
|
830 |
+
#~ "Desenvolver um plugin e prover suporte aos usuários é um trabalho duro. "
|
831 |
+
#~ "Por favor ajude."
|
832 |
|
833 |
#~ msgid "Delete this contact form"
|
834 |
#~ msgstr "Excluir este formulário de contato"
|
835 |
+
|
836 |
#~ msgid "(You need WordPress 2.7 or greater to use this feature)"
|
837 |
#~ msgstr "(Você precisa do WordPress 2.7 ou superior para usar este recurso)"
|
|
languages/wpcf7-sr_RS.mo
CHANGED
Binary file
|
languages/wpcf7-sr_RS.po
CHANGED
@@ -2,426 +2,857 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date:
|
6 |
"PO-Revision-Date: \n"
|
7 |
-
"Last-Translator:
|
8 |
-
"Language-Team:
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Poedit-Language:
|
13 |
-
"X-Poedit-Country: UNITED STATES\n"
|
14 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
15 |
|
16 |
-
#:
|
17 |
-
|
18 |
-
|
|
|
19 |
|
20 |
-
#:
|
21 |
-
|
22 |
-
|
23 |
-
msgstr "Kontaktna Forma 7"
|
24 |
|
25 |
-
#:
|
26 |
-
|
27 |
-
|
|
|
28 |
|
29 |
-
#:
|
30 |
-
msgid "
|
31 |
-
msgstr "
|
32 |
|
33 |
-
#:
|
34 |
-
msgid "
|
35 |
-
msgstr "
|
36 |
|
37 |
-
#:
|
38 |
-
msgid "
|
39 |
-
msgstr "
|
40 |
|
41 |
-
#:
|
42 |
-
|
43 |
-
|
|
|
44 |
|
45 |
-
#:
|
46 |
-
msgid "
|
47 |
-
msgstr "
|
48 |
|
49 |
-
#:
|
50 |
-
msgid "
|
51 |
-
msgstr "
|
52 |
|
53 |
-
#:
|
54 |
-
|
55 |
-
|
|
|
56 |
|
57 |
-
#:
|
58 |
-
msgid "
|
59 |
-
msgstr "
|
60 |
|
61 |
-
#:
|
62 |
-
msgid "
|
63 |
-
msgstr "
|
64 |
|
65 |
-
#:
|
66 |
-
|
67 |
-
|
|
|
68 |
|
69 |
-
#:
|
70 |
-
msgid "
|
71 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
72 |
|
73 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
74 |
msgid "CAPTCHA"
|
75 |
msgstr "CAPTCHA"
|
76 |
|
77 |
-
#:
|
78 |
-
msgid "
|
79 |
-
msgstr "
|
80 |
|
81 |
-
#:
|
82 |
-
msgid "
|
83 |
-
msgstr "
|
84 |
|
85 |
-
#:
|
86 |
-
msgid "
|
87 |
-
msgstr "
|
88 |
|
89 |
-
#:
|
90 |
-
msgid "
|
91 |
-
msgstr "
|
92 |
|
93 |
-
#:
|
94 |
-
|
95 |
-
|
|
|
96 |
|
97 |
-
#:
|
98 |
-
msgid "
|
99 |
-
msgstr "
|
100 |
|
101 |
-
#:
|
102 |
-
|
103 |
-
|
|
|
|
|
104 |
|
105 |
-
#:
|
106 |
-
msgid "
|
107 |
-
msgstr "
|
108 |
|
109 |
-
#:
|
110 |
-
msgid "
|
111 |
-
msgstr "
|
112 |
|
113 |
-
#:
|
114 |
-
msgid "
|
115 |
-
msgstr "
|
116 |
|
117 |
-
#:
|
118 |
-
msgid "
|
119 |
-
msgstr "
|
120 |
|
121 |
-
#:
|
122 |
-
msgid "
|
123 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
124 |
|
125 |
-
#:
|
126 |
-
msgid "
|
127 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
128 |
|
129 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
msgid "Default value"
|
131 |
-
msgstr "
|
132 |
|
133 |
-
#:
|
134 |
-
msgid "
|
135 |
-
msgstr "
|
136 |
|
137 |
-
#:
|
138 |
-
msgid "
|
139 |
-
msgstr "
|
140 |
|
141 |
-
#:
|
142 |
-
msgid "
|
143 |
-
msgstr "
|
144 |
|
145 |
-
#:
|
146 |
-
msgid "
|
147 |
-
msgstr "
|
148 |
|
149 |
-
#:
|
150 |
-
msgid "
|
151 |
-
msgstr "
|
152 |
|
153 |
-
#:
|
154 |
-
msgid "
|
155 |
-
msgstr "
|
156 |
|
157 |
-
#:
|
158 |
-
msgid "
|
159 |
-
msgstr "
|
160 |
|
161 |
-
#:
|
162 |
-
msgid "
|
163 |
-
msgstr "
|
164 |
|
165 |
-
#:
|
166 |
-
msgid "
|
167 |
-
msgstr "
|
168 |
|
169 |
-
#:
|
170 |
-
msgid "
|
171 |
-
msgstr "
|
172 |
|
173 |
-
#:
|
174 |
-
msgid "
|
175 |
-
msgstr "
|
176 |
|
177 |
-
#:
|
178 |
-
msgid "
|
179 |
-
msgstr "
|
180 |
|
181 |
-
#:
|
182 |
-
msgid "
|
183 |
-
msgstr "
|
184 |
|
185 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
186 |
msgid "For image"
|
187 |
-
msgstr "
|
188 |
|
189 |
-
#:
|
190 |
msgid "For input field"
|
191 |
-
msgstr "
|
192 |
|
193 |
-
#:
|
194 |
-
msgid "
|
195 |
-
msgstr "
|
196 |
|
197 |
-
#:
|
198 |
-
msgid "
|
199 |
-
msgstr "
|
|
|
|
|
|
|
|
|
200 |
|
201 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
202 |
msgid "Hide"
|
203 |
-
msgstr "
|
204 |
|
205 |
-
#:
|
206 |
-
msgid "
|
207 |
-
msgstr "
|
208 |
|
209 |
-
#:
|
210 |
-
msgid "
|
211 |
-
msgstr "
|
212 |
|
213 |
-
#:
|
214 |
-
msgid "
|
215 |
-
msgstr "
|
216 |
|
217 |
-
#:
|
218 |
-
msgid "
|
219 |
-
msgstr "
|
220 |
|
221 |
-
#:
|
222 |
-
msgid "
|
223 |
-
msgstr "
|
224 |
|
225 |
-
#:
|
226 |
-
msgid "
|
227 |
-
msgstr "
|
228 |
|
229 |
-
#:
|
230 |
-
msgid "
|
231 |
-
msgstr "
|
232 |
|
233 |
-
#:
|
234 |
-
|
235 |
-
|
236 |
-
msgstr "(mandatorno)"
|
237 |
|
238 |
-
#:
|
239 |
-
msgid "
|
240 |
-
msgstr "
|
241 |
|
242 |
-
#:
|
243 |
-
msgid "
|
244 |
-
msgstr "
|
245 |
|
246 |
-
#:
|
247 |
-
msgid "
|
248 |
-
msgstr "
|
249 |
|
250 |
-
#:
|
251 |
-
|
252 |
-
|
253 |
-
msgstr "Pošalji"
|
254 |
|
255 |
-
#:
|
256 |
-
msgid "
|
257 |
-
msgstr "
|
258 |
|
259 |
-
#:
|
260 |
-
|
261 |
-
|
262 |
-
msgstr "Slanje vaše poruke neuspješno. Molimo vas pokušajte kasnije ili kontaktirajte administratora stranice na drugi način."
|
263 |
|
264 |
-
#:
|
265 |
-
msgid "
|
266 |
-
msgstr "
|
267 |
|
268 |
-
#:
|
269 |
-
msgid "
|
270 |
-
msgstr "
|
271 |
|
272 |
-
#:
|
273 |
-
msgid "
|
274 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
275 |
|
276 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
277 |
msgid "Please fill the required field."
|
278 |
-
msgstr "
|
279 |
|
280 |
-
#:
|
281 |
-
msgid "
|
282 |
-
msgstr "
|
283 |
|
284 |
-
#:
|
285 |
-
msgid "
|
286 |
-
msgstr "
|
287 |
|
288 |
-
#:
|
289 |
-
msgid "
|
290 |
-
msgstr "
|
291 |
|
292 |
-
#:
|
293 |
-
msgid "
|
294 |
-
msgstr "
|
295 |
|
296 |
-
#:
|
297 |
-
msgid "
|
298 |
-
msgstr "
|
299 |
|
300 |
-
#:
|
301 |
-
msgid "
|
302 |
-
msgstr "
|
303 |
|
304 |
-
#:
|
305 |
-
|
306 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
307 |
|
308 |
-
#:
|
309 |
-
|
|
|
|
|
|
|
|
|
310 |
msgid "Save"
|
311 |
-
msgstr "
|
312 |
|
313 |
-
#:
|
314 |
-
|
315 |
-
|
|
|
316 |
|
317 |
-
#:
|
318 |
-
msgid ""
|
319 |
-
"
|
320 |
-
" 'Cancel' to stop, 'OK' to delete."
|
321 |
-
msgstr ""
|
322 |
-
"Ovime se briše kontaktna forma. \n"
|
323 |
-
"'odustani' za prekid, 'OK' za brisanje."
|
324 |
|
325 |
-
#:
|
326 |
-
msgid "
|
327 |
-
msgstr "
|
328 |
|
329 |
-
#:
|
330 |
-
msgid "
|
331 |
-
msgstr "
|
332 |
|
333 |
-
#:
|
334 |
-
|
335 |
-
|
336 |
-
msgstr "Za:"
|
337 |
|
338 |
-
#:
|
339 |
-
|
340 |
-
|
341 |
-
msgstr "Od:"
|
342 |
|
343 |
-
#:
|
344 |
-
|
345 |
-
|
346 |
-
msgstr "Predmet:"
|
347 |
|
348 |
-
#:
|
349 |
-
|
350 |
-
|
351 |
-
msgstr "Dodani fajl"
|
352 |
|
353 |
-
#:
|
354 |
-
|
355 |
-
|
356 |
-
msgstr "(Potreban WordPress 2.7 ili noviji za korištenje ove mogućnosti)"
|
357 |
|
358 |
-
#:
|
359 |
-
|
360 |
-
|
361 |
-
msgstr "Koristi HTML"
|
362 |
|
363 |
-
#:
|
364 |
-
|
365 |
-
|
366 |
-
msgstr "Telo Poruke"
|
367 |
|
368 |
-
#:
|
369 |
-
msgid "
|
370 |
-
msgstr "
|
371 |
|
372 |
-
#:
|
373 |
-
|
374 |
-
|
|
|
375 |
|
376 |
-
#:
|
377 |
-
|
378 |
-
|
|
|
379 |
|
380 |
-
#:
|
381 |
-
msgid "
|
382 |
-
msgstr "
|
383 |
|
384 |
-
#:
|
385 |
-
msgid "
|
386 |
-
msgstr "
|
387 |
|
388 |
-
#:
|
389 |
-
msgid "
|
390 |
-
msgstr "
|
391 |
|
392 |
-
#:
|
393 |
-
msgid "
|
394 |
-
msgstr "
|
395 |
|
396 |
-
#:
|
397 |
-
msgid "
|
398 |
-
msgstr "
|
399 |
|
400 |
-
#:
|
401 |
-
msgid "
|
402 |
-
msgstr "
|
|
|
|
|
|
|
|
|
403 |
|
404 |
-
#:
|
405 |
msgid "There is a field of term that sender is needed to accept"
|
406 |
-
msgstr "
|
407 |
|
408 |
-
#:
|
409 |
-
msgid "
|
410 |
-
msgstr "
|
411 |
|
412 |
-
#:
|
413 |
-
msgid "
|
414 |
-
msgstr "
|
415 |
|
416 |
-
#:
|
417 |
-
|
418 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
419 |
|
420 |
-
#:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
421 |
msgid "Uploaded file is not allowed file type"
|
422 |
-
msgstr "
|
423 |
|
424 |
-
#:
|
425 |
msgid "Uploaded file is too large"
|
426 |
-
msgstr "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
427 |
|
|
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: \n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-07-30 19:02+0200\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
+
"Last-Translator: Takayuki Miyoshi <takayukister@gmail.com>\n"
|
8 |
+
"Language-Team: Serbian <gnom@prevod.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-Language: Serbian\n"
|
|
|
|
|
13 |
|
14 |
+
#: ../includes/functions.php:46
|
15 |
+
#: ../includes/functions.php:48
|
16 |
+
msgid "(required)"
|
17 |
+
msgstr "(обавезно)"
|
18 |
|
19 |
+
#: ../admin/edit.php:342
|
20 |
+
msgid "(select language)"
|
21 |
+
msgstr "(изаберите језик)"
|
|
|
22 |
|
23 |
+
#: ../modules/select.php:181
|
24 |
+
#: ../modules/checkbox.php:224
|
25 |
+
msgid "* One choice per line."
|
26 |
+
msgstr "* Један избор у реду."
|
27 |
|
28 |
+
#: ../modules/acceptance.php:129
|
29 |
+
msgid "* That means visitor who accepts the term unchecks it."
|
30 |
+
msgstr "* Ово значи да посетилац који прхвата услове треба да га онемогући."
|
31 |
|
32 |
+
#: ../modules/quiz.php:215
|
33 |
+
msgid "* quiz|answer (e.g. 1+1=?|2)"
|
34 |
+
msgstr "* квиз/питање (нпр. 1+1=?/2)"
|
35 |
|
36 |
+
#: ../admin/edit.php:12
|
37 |
+
msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
|
38 |
+
msgstr "<strong>У бази не постоји таблица за Contact Form 7.</strong>"
|
39 |
|
40 |
+
#: ../admin/edit.php:9
|
41 |
+
#, php-format
|
42 |
+
msgid "<strong>The database table for Contact Form 7 does not exist.</strong> You must <a href=\"%s\">create the table</a> for it to work."
|
43 |
+
msgstr "<strong>У бази не постоји таблица за Contact Form 7.</strong> Морате <a href=\"%s\">направити таблицу</a> да би проширење могло да функционише."
|
44 |
|
45 |
+
#: ../modules/file.php:259
|
46 |
+
msgid "Acceptable file types"
|
47 |
+
msgstr "Дозвољене врсте датотека"
|
48 |
|
49 |
+
#: ../modules/acceptance.php:104
|
50 |
+
msgid "Acceptance"
|
51 |
+
msgstr "Прихватање"
|
52 |
|
53 |
+
#: ../admin/edit.php:334
|
54 |
+
#: ../admin/edit.php:347
|
55 |
+
msgid "Add New"
|
56 |
+
msgstr "Додај нови"
|
57 |
|
58 |
+
#: ../admin/edit.php:45
|
59 |
+
msgid "Add new"
|
60 |
+
msgstr "Додај нови"
|
61 |
|
62 |
+
#: ../admin/edit.php:285
|
63 |
+
msgid "Additional Settings"
|
64 |
+
msgstr "Допунске поставке"
|
65 |
|
66 |
+
#: ../admin/edit.php:152
|
67 |
+
#: ../admin/edit.php:219
|
68 |
+
msgid "Additional headers:"
|
69 |
+
msgstr "Допунска заглавља:"
|
70 |
|
71 |
+
#: ../includes/functions.php:129
|
72 |
+
msgid "Afrikaans"
|
73 |
+
msgstr "афрички"
|
74 |
+
|
75 |
+
#: ../modules/text.php:184
|
76 |
+
msgid "Akismet"
|
77 |
+
msgstr "Акисмет"
|
78 |
+
|
79 |
+
#: ../includes/functions.php:16
|
80 |
+
msgid "Akismet judged the sending activity as spamming"
|
81 |
+
msgstr "Акисмет је акцију слања поруке оценио као слање нежељене поште"
|
82 |
+
|
83 |
+
#: ../includes/functions.php:130
|
84 |
+
msgid "Albanian"
|
85 |
+
msgstr "албански"
|
86 |
+
|
87 |
+
#: ../modules/select.php:185
|
88 |
+
msgid "Allow multiple selections?"
|
89 |
+
msgstr "Омогући вишеструке изборе?"
|
90 |
+
|
91 |
+
#: ../modules/file.php:266
|
92 |
+
msgid "And, put this code into the File Attachments field below."
|
93 |
+
msgstr "И уметните следећи кôд у поље „Датотека прилога“ испод."
|
94 |
+
|
95 |
+
#: ../modules/select.php:193
|
96 |
+
#: ../modules/text.php:199
|
97 |
+
#: ../modules/textarea.php:163
|
98 |
+
#: ../modules/checkbox.php:239
|
99 |
+
msgid "And, put this code into the Mail fields below."
|
100 |
+
msgstr "И уметните кôд у поље „Пошта“ испод."
|
101 |
+
|
102 |
+
#: ../includes/functions.php:131
|
103 |
+
msgid "Arabic"
|
104 |
+
msgstr "арапски"
|
105 |
+
|
106 |
+
#: ../modules/captcha.php:232
|
107 |
+
msgid "Background color"
|
108 |
+
msgstr "Боја позадине"
|
109 |
|
110 |
+
#: ../includes/functions.php:132
|
111 |
+
msgid "Bangla"
|
112 |
+
msgstr "бенгалски"
|
113 |
+
|
114 |
+
#: ../includes/functions.php:133
|
115 |
+
msgid "Bosnian"
|
116 |
+
msgstr "бошњачки"
|
117 |
+
|
118 |
+
#: ../includes/functions.php:134
|
119 |
+
msgid "Brazilian Portuguese"
|
120 |
+
msgstr "бразилски португалски"
|
121 |
+
|
122 |
+
#: ../includes/functions.php:135
|
123 |
+
msgid "Bulgarian"
|
124 |
+
msgstr "бугарски"
|
125 |
+
|
126 |
+
#: ../modules/captcha.php:200
|
127 |
msgid "CAPTCHA"
|
128 |
msgstr "CAPTCHA"
|
129 |
|
130 |
+
#: ../includes/functions.php:136
|
131 |
+
msgid "Catalan"
|
132 |
+
msgstr "каталонски"
|
133 |
|
134 |
+
#: ../modules/checkbox.php:182
|
135 |
+
msgid "Checkboxes"
|
136 |
+
msgstr "Кућице за потврду"
|
137 |
|
138 |
+
#: ../includes/functions.php:137
|
139 |
+
msgid "Chinese (Simplified)"
|
140 |
+
msgstr "кинески (поједностављени)"
|
141 |
|
142 |
+
#: ../includes/functions.php:138
|
143 |
+
msgid "Chinese (Traditional)"
|
144 |
+
msgstr "кинески (традиционални)"
|
145 |
|
146 |
+
#: ../modules/select.php:179
|
147 |
+
#: ../modules/checkbox.php:222
|
148 |
+
msgid "Choices"
|
149 |
+
msgstr "Избори"
|
150 |
|
151 |
+
#: ../admin/admin.php:120
|
152 |
+
msgid "Contact"
|
153 |
+
msgstr "Контакт"
|
154 |
|
155 |
+
#: ../admin/edit.php:17
|
156 |
+
#: ../admin/edit.php:30
|
157 |
+
#: ../admin/admin.php:120
|
158 |
+
msgid "Contact Form 7"
|
159 |
+
msgstr "Contact Form 7"
|
160 |
|
161 |
+
#: ../admin/admin.php:358
|
162 |
+
msgid "Contact Form 7 needs your support. Please donate today."
|
163 |
+
msgstr "Потребна је Ваша подршка за Contact Form 7. Молим Вас да приложите донацију."
|
164 |
|
165 |
+
#: ../admin/admin.php:261
|
166 |
+
msgid "Contact form"
|
167 |
+
msgstr "Формулар за контакт"
|
168 |
|
169 |
+
#: ../admin/admin.php:312
|
170 |
+
msgid "Contact form created."
|
171 |
+
msgstr "Формулар за контакт је направљен."
|
172 |
|
173 |
+
#: ../admin/admin.php:318
|
174 |
+
msgid "Contact form deleted."
|
175 |
+
msgstr "Формулар за контакт је уклоњен."
|
176 |
|
177 |
+
#: ../admin/admin.php:315
|
178 |
+
msgid "Contact form saved."
|
179 |
+
msgstr "Формулар за контакт је сачуван."
|
180 |
+
|
181 |
+
#: ../admin/admin.php:292
|
182 |
+
msgid "Contactform7.com"
|
183 |
+
msgstr "Contactform7.com"
|
184 |
+
|
185 |
+
#: ../admin/edit.php:82
|
186 |
+
msgid "Copy"
|
187 |
+
msgstr "Копирај"
|
188 |
+
|
189 |
+
#: ../modules/select.php:191
|
190 |
+
#: ../modules/text.php:197
|
191 |
+
#: ../modules/file.php:264
|
192 |
+
#: ../modules/quiz.php:220
|
193 |
+
#: ../modules/textarea.php:161
|
194 |
+
#: ../modules/submit.php:89
|
195 |
+
#: ../modules/acceptance.php:134
|
196 |
+
#: ../modules/checkbox.php:237
|
197 |
+
#: ../modules/captcha.php:263
|
198 |
+
msgid "Copy this code and paste it into the form left."
|
199 |
+
msgstr "Копирајте овај кôд и уметните га у леви формулар."
|
200 |
|
201 |
+
#: ../admin/edit.php:67
|
202 |
+
msgid "Copy this code and paste it into your post, page or text widget content."
|
203 |
+
msgstr "Копирајте овај кôд и уметните га у Ваш чланак, страницу или садржај текстуалног виџета."
|
204 |
+
|
205 |
+
#: ../includes/functions.php:139
|
206 |
+
msgid "Croatian"
|
207 |
+
msgstr "хрватски"
|
208 |
+
|
209 |
+
#: ../includes/functions.php:140
|
210 |
+
msgid "Czech"
|
211 |
+
msgstr "чешки"
|
212 |
|
213 |
+
#: ../includes/functions.php:141
|
214 |
+
msgid "Danish"
|
215 |
+
msgstr "дански"
|
216 |
+
|
217 |
+
#: ../admin/admin.php:321
|
218 |
+
msgid "Database table created."
|
219 |
+
msgstr "У бази је направљена таблица."
|
220 |
+
|
221 |
+
#: ../modules/text.php:193
|
222 |
+
#: ../modules/textarea.php:157
|
223 |
msgid "Default value"
|
224 |
+
msgstr "Подразумевана вредност"
|
225 |
|
226 |
+
#: ../admin/edit.php:87
|
227 |
+
msgid "Delete"
|
228 |
+
msgstr "Уклони"
|
229 |
|
230 |
+
#: ../admin/admin.php:294
|
231 |
+
msgid "Docs"
|
232 |
+
msgstr "Документација"
|
233 |
|
234 |
+
#: ../admin/admin.php:365
|
235 |
+
msgid "Donate"
|
236 |
+
msgstr "Донација"
|
237 |
|
238 |
+
#: ../modules/select.php:156
|
239 |
+
msgid "Drop-down menu"
|
240 |
+
msgstr "Падајући мени"
|
241 |
|
242 |
+
#: ../includes/functions.php:142
|
243 |
+
msgid "Dutch"
|
244 |
+
msgstr "холаднски"
|
245 |
|
246 |
+
#: ../admin/admin.php:123
|
247 |
+
msgid "Edit"
|
248 |
+
msgstr "Уреди"
|
249 |
|
250 |
+
#: ../admin/admin.php:123
|
251 |
+
msgid "Edit Contact Forms"
|
252 |
+
msgstr "Уреди формуларе за контакт"
|
253 |
|
254 |
+
#: ../includes/functions.php:32
|
255 |
+
msgid "Email address seems invalid."
|
256 |
+
msgstr "Изгледа да је адреса е-поште неисправна."
|
257 |
|
258 |
+
#: ../includes/functions.php:31
|
259 |
+
msgid "Email address that sender entered is invalid"
|
260 |
+
msgstr "Адреса е-поште коју је пошиљалац унео није исправна"
|
261 |
|
262 |
+
#: ../modules/text.php:142
|
263 |
+
msgid "Email field"
|
264 |
+
msgstr "Поље е-поште"
|
265 |
|
266 |
+
#: ../includes/functions.php:143
|
267 |
+
msgid "English"
|
268 |
+
msgstr "енглески"
|
269 |
|
270 |
+
#: ../includes/functions.php:144
|
271 |
+
msgid "Estonian"
|
272 |
+
msgstr "естонски"
|
273 |
|
274 |
+
#: ../admin/admin.php:296
|
275 |
+
msgid "FAQ"
|
276 |
+
msgstr "ЧПП"
|
277 |
|
278 |
+
#: ../admin/admin.php:324
|
279 |
+
msgid "Failed to create database table."
|
280 |
+
msgstr "Неуспешно прављење таблице у бази."
|
281 |
+
|
282 |
+
#: ../includes/functions.php:12
|
283 |
+
#: ../includes/functions.php:17
|
284 |
+
msgid "Failed to send your message. Please try later or contact administrator by other way."
|
285 |
+
msgstr "Слање Ваше поруке није успело. Молим Вас да покушате касније или да контактирате администратора на неки други начин."
|
286 |
+
|
287 |
+
#: ../modules/file.php:207
|
288 |
+
msgid "Failed to upload file."
|
289 |
+
msgstr "Слање датотеке није успело."
|
290 |
+
|
291 |
+
#: ../modules/file.php:222
|
292 |
+
msgid "Failed to upload file. Error occurred."
|
293 |
+
msgstr "Неуспешно слање датотеке. Дошло је до грешке."
|
294 |
+
|
295 |
+
#: ../admin/edit.php:157
|
296 |
+
#: ../admin/edit.php:224
|
297 |
+
msgid "File attachments:"
|
298 |
+
msgstr "Приложене датотеке:"
|
299 |
+
|
300 |
+
#: ../modules/file.php:256
|
301 |
+
msgid "File size limit"
|
302 |
+
msgstr "Максимална величина датотеке"
|
303 |
+
|
304 |
+
#: ../modules/file.php:233
|
305 |
+
msgid "File upload"
|
306 |
+
msgstr "Слање датотеке"
|
307 |
+
|
308 |
+
#: ../includes/functions.php:145
|
309 |
+
msgid "Finnish"
|
310 |
+
msgstr "фински"
|
311 |
+
|
312 |
+
#: ../modules/captcha.php:264
|
313 |
msgid "For image"
|
314 |
+
msgstr "За слику"
|
315 |
|
316 |
+
#: ../modules/captcha.php:266
|
317 |
msgid "For input field"
|
318 |
+
msgstr "За поље за унос"
|
319 |
|
320 |
+
#: ../modules/captcha.php:229
|
321 |
+
msgid "Foreground color"
|
322 |
+
msgstr "Боја исписа"
|
323 |
|
324 |
+
#: ../admin/edit.php:104
|
325 |
+
msgid "Form"
|
326 |
+
msgstr "Формулар"
|
327 |
+
|
328 |
+
#: ../includes/functions.php:146
|
329 |
+
msgid "French"
|
330 |
+
msgstr "француски"
|
331 |
|
332 |
+
#: ../admin/edit.php:140
|
333 |
+
#: ../admin/edit.php:207
|
334 |
+
msgid "From:"
|
335 |
+
msgstr "Од:"
|
336 |
+
|
337 |
+
#: ../includes/functions.php:62
|
338 |
+
#, php-format
|
339 |
+
msgid "From: %s"
|
340 |
+
msgstr "Од: %s"
|
341 |
+
|
342 |
+
#: ../includes/functions.php:147
|
343 |
+
msgid "Galician"
|
344 |
+
msgstr "галичански"
|
345 |
+
|
346 |
+
#: ../admin/admin.php:162
|
347 |
+
msgid "Generate Tag"
|
348 |
+
msgstr "Генериши таг"
|
349 |
+
|
350 |
+
#: ../includes/functions.php:148
|
351 |
+
msgid "Georgian"
|
352 |
+
msgstr "џорџијски"
|
353 |
+
|
354 |
+
#: ../includes/functions.php:149
|
355 |
+
msgid "German"
|
356 |
+
msgstr "немачки"
|
357 |
+
|
358 |
+
#: ../includes/functions.php:150
|
359 |
+
msgid "Greek"
|
360 |
+
msgstr "грчки"
|
361 |
+
|
362 |
+
#: ../includes/functions.php:151
|
363 |
+
msgid "Hebrew"
|
364 |
+
msgstr "хебрејски"
|
365 |
+
|
366 |
+
#: ../admin/admin.php:164
|
367 |
msgid "Hide"
|
368 |
+
msgstr "Сакриј"
|
369 |
|
370 |
+
#: ../includes/functions.php:152
|
371 |
+
msgid "Hindi"
|
372 |
+
msgstr "хинди"
|
373 |
|
374 |
+
#: ../includes/functions.php:153
|
375 |
+
msgid "Hungarian"
|
376 |
+
msgstr "мађарски"
|
377 |
|
378 |
+
#: ../modules/captcha.php:218
|
379 |
+
msgid "Image settings"
|
380 |
+
msgstr "Поставке слике"
|
381 |
|
382 |
+
#: ../modules/captcha.php:236
|
383 |
+
msgid "Image size"
|
384 |
+
msgstr "Величина слике"
|
385 |
|
386 |
+
#: ../includes/functions.php:154
|
387 |
+
msgid "Indonesian"
|
388 |
+
msgstr "индонежански"
|
389 |
|
390 |
+
#: ../modules/captcha.php:244
|
391 |
+
msgid "Input field settings"
|
392 |
+
msgstr "Поставке поља за унос"
|
393 |
|
394 |
+
#: ../modules/select.php:186
|
395 |
+
msgid "Insert a blank item as the first option?"
|
396 |
+
msgstr "Уметни празну ставку као прву опцију?"
|
397 |
|
398 |
+
#: ../includes/functions.php:155
|
399 |
+
msgid "Italian"
|
400 |
+
msgstr "италијански"
|
|
|
401 |
|
402 |
+
#: ../includes/functions.php:156
|
403 |
+
msgid "Japanese"
|
404 |
+
msgstr "јапански"
|
405 |
|
406 |
+
#: ../includes/functions.php:157
|
407 |
+
msgid "Korean"
|
408 |
+
msgstr "корејски"
|
409 |
|
410 |
+
#: ../modules/submit.php:82
|
411 |
+
msgid "Label"
|
412 |
+
msgstr "Ознака"
|
413 |
|
414 |
+
#: ../modules/captcha.php:239
|
415 |
+
msgid "Large"
|
416 |
+
msgstr "Велико"
|
|
|
417 |
|
418 |
+
#: ../includes/functions.php:158
|
419 |
+
msgid "Latvian"
|
420 |
+
msgstr "летонски"
|
421 |
|
422 |
+
#: ../includes/functions.php:159
|
423 |
+
msgid "Lithuanian"
|
424 |
+
msgstr "литвански"
|
|
|
425 |
|
426 |
+
#: ../admin/edit.php:128
|
427 |
+
msgid "Mail"
|
428 |
+
msgstr "Пошта"
|
429 |
|
430 |
+
#: ../admin/edit.php:188
|
431 |
+
msgid "Mail (2)"
|
432 |
+
msgstr "Пошта (2)"
|
433 |
|
434 |
+
#: ../modules/checkbox.php:231
|
435 |
+
msgid "Make checkboxes exclusive?"
|
436 |
+
msgstr "Учини кућице за потврду искључивим?"
|
437 |
+
|
438 |
+
#: ../modules/acceptance.php:127
|
439 |
+
msgid "Make this checkbox checked by default?"
|
440 |
+
msgstr "Учини ову кућицу за потврду подразумеваним?"
|
441 |
+
|
442 |
+
#: ../modules/acceptance.php:128
|
443 |
+
msgid "Make this checkbox work inversely?"
|
444 |
+
msgstr "Учини да ова кућица за избор инверзно функционише?"
|
445 |
+
|
446 |
+
#: ../includes/functions.php:160
|
447 |
+
msgid "Malayalam"
|
448 |
+
msgstr "малезијски"
|
449 |
+
|
450 |
+
#: ../modules/captcha.php:238
|
451 |
+
msgid "Medium"
|
452 |
+
msgstr "Средње"
|
453 |
+
|
454 |
+
#: ../includes/functions.php:64
|
455 |
+
msgid "Message Body:"
|
456 |
+
msgstr "Садржај поруке:"
|
457 |
+
|
458 |
+
#: ../admin/edit.php:172
|
459 |
+
#: ../admin/edit.php:239
|
460 |
+
#: ../includes/functions.php:78
|
461 |
+
msgid "Message body:"
|
462 |
+
msgstr "Садржај поруке:"
|
463 |
+
|
464 |
+
#: ../admin/edit.php:255
|
465 |
+
msgid "Messages"
|
466 |
+
msgstr "Поруке"
|
467 |
+
|
468 |
+
#: ../modules/select.php:166
|
469 |
+
#: ../modules/text.php:163
|
470 |
+
#: ../modules/file.php:243
|
471 |
+
#: ../modules/quiz.php:192
|
472 |
+
#: ../modules/textarea.php:136
|
473 |
+
#: ../modules/acceptance.php:113
|
474 |
+
#: ../modules/checkbox.php:209
|
475 |
+
#: ../modules/captcha.php:214
|
476 |
+
msgid "Name"
|
477 |
+
msgstr "Име"
|
478 |
|
479 |
+
#: ../includes/functions.php:161
|
480 |
+
msgid "Norwegian"
|
481 |
+
msgstr "норвешки"
|
482 |
+
|
483 |
+
#: ../modules/captcha.php:211
|
484 |
+
msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
|
485 |
+
msgstr "Напомена: морате имати инсталирао проширење Really Simple CAPTCHA да би користили CAPCHA."
|
486 |
+
|
487 |
+
#: ../admin/edit.php:337
|
488 |
+
msgid "Or"
|
489 |
+
msgstr "Или"
|
490 |
+
|
491 |
+
#: ../includes/functions.php:162
|
492 |
+
msgid "Persian"
|
493 |
+
msgstr "персијски"
|
494 |
+
|
495 |
+
#: ../includes/functions.php:27
|
496 |
+
msgid "Please accept the terms to proceed."
|
497 |
+
msgstr "Молим Вас да прихватите услове како би наставили даље."
|
498 |
+
|
499 |
+
#: ../includes/functions.php:37
|
500 |
msgid "Please fill the required field."
|
501 |
+
msgstr "Молим Вас да попуните обавезна поља."
|
502 |
|
503 |
+
#: ../includes/functions.php:163
|
504 |
+
msgid "Polish"
|
505 |
+
msgstr "пољски"
|
506 |
|
507 |
+
#: ../includes/functions.php:164
|
508 |
+
msgid "Portuguese"
|
509 |
+
msgstr "португалски"
|
510 |
|
511 |
+
#: ../modules/checkbox.php:228
|
512 |
+
msgid "Put a label first, a checkbox last?"
|
513 |
+
msgstr "Стави ознаку испред кућице за потврду?"
|
514 |
|
515 |
+
#: ../modules/quiz.php:183
|
516 |
+
msgid "Quiz"
|
517 |
+
msgstr "Квиз"
|
518 |
|
519 |
+
#: ../modules/quiz.php:213
|
520 |
+
msgid "Quizzes"
|
521 |
+
msgstr "Квизови"
|
522 |
|
523 |
+
#: ../modules/checkbox.php:185
|
524 |
+
msgid "Radio buttons"
|
525 |
+
msgstr "Радио дугмад"
|
526 |
|
527 |
+
#: ../modules/select.php:165
|
528 |
+
#: ../modules/text.php:162
|
529 |
+
#: ../modules/file.php:242
|
530 |
+
#: ../modules/textarea.php:135
|
531 |
+
#: ../modules/checkbox.php:206
|
532 |
+
msgid "Required field?"
|
533 |
+
msgstr "Обавезно поље?"
|
534 |
+
|
535 |
+
#: ../includes/functions.php:166
|
536 |
+
msgid "Romanian"
|
537 |
+
msgstr "румунски"
|
538 |
|
539 |
+
#: ../includes/functions.php:165
|
540 |
+
msgid "Russian"
|
541 |
+
msgstr "руски"
|
542 |
+
|
543 |
+
#: ../admin/edit.php:75
|
544 |
+
#: ../admin/edit.php:309
|
545 |
msgid "Save"
|
546 |
+
msgstr "Сачувај"
|
547 |
|
548 |
+
#: ../includes/functions.php:54
|
549 |
+
#: ../modules/submit.php:48
|
550 |
+
msgid "Send"
|
551 |
+
msgstr "Пошаљи"
|
552 |
|
553 |
+
#: ../modules/quiz.php:172
|
554 |
+
msgid "Sender doesn't enter the correct answer to the quiz"
|
555 |
+
msgstr "Пошиљалац није унео тачан одговор на квиз питање"
|
|
|
|
|
|
|
|
|
556 |
|
557 |
+
#: ../includes/functions.php:11
|
558 |
+
msgid "Sender's message was failed to send"
|
559 |
+
msgstr "Није успело слање поруке пошиљаоца"
|
560 |
|
561 |
+
#: ../includes/functions.php:6
|
562 |
+
msgid "Sender's message was sent successfully"
|
563 |
+
msgstr "Порука пошиљаоца је успешно послата"
|
564 |
|
565 |
+
#: ../includes/functions.php:167
|
566 |
+
msgid "Serbian"
|
567 |
+
msgstr "српски"
|
|
|
568 |
|
569 |
+
#: ../admin/admin.php:280
|
570 |
+
msgid "Settings"
|
571 |
+
msgstr "Поставке"
|
|
|
572 |
|
573 |
+
#: ../admin/admin.php:163
|
574 |
+
msgid "Show"
|
575 |
+
msgstr "Прикажи"
|
|
|
576 |
|
577 |
+
#: ../includes/functions.php:168
|
578 |
+
msgid "Slovak"
|
579 |
+
msgstr "словачки"
|
|
|
580 |
|
581 |
+
#: ../includes/functions.php:169
|
582 |
+
msgid "Slovene"
|
583 |
+
msgstr "словеначки"
|
|
|
584 |
|
585 |
+
#: ../modules/captcha.php:237
|
586 |
+
msgid "Small"
|
587 |
+
msgstr "Мало"
|
|
|
588 |
|
589 |
+
#: ../includes/functions.php:170
|
590 |
+
msgid "Spanish"
|
591 |
+
msgstr "шпански"
|
|
|
592 |
|
593 |
+
#: ../includes/functions.php:50
|
594 |
+
msgid "Subject"
|
595 |
+
msgstr "Предмет"
|
596 |
|
597 |
+
#: ../admin/edit.php:145
|
598 |
+
#: ../admin/edit.php:212
|
599 |
+
msgid "Subject:"
|
600 |
+
msgstr "Предмет:"
|
601 |
|
602 |
+
#: ../includes/functions.php:63
|
603 |
+
#, php-format
|
604 |
+
msgid "Subject: %s"
|
605 |
+
msgstr "Предмет: %s"
|
606 |
|
607 |
+
#: ../modules/submit.php:64
|
608 |
+
msgid "Submit button"
|
609 |
+
msgstr "Дугме за слање"
|
610 |
|
611 |
+
#: ../admin/admin.php:298
|
612 |
+
msgid "Support"
|
613 |
+
msgstr "Подршка"
|
614 |
|
615 |
+
#: ../includes/functions.php:171
|
616 |
+
msgid "Swedish"
|
617 |
+
msgstr "шведски"
|
618 |
|
619 |
+
#: ../modules/textarea.php:126
|
620 |
+
msgid "Text area"
|
621 |
+
msgstr "Област за текст"
|
622 |
|
623 |
+
#: ../modules/text.php:139
|
624 |
+
msgid "Text field"
|
625 |
+
msgstr "Текстуално поље"
|
626 |
|
627 |
+
#: ../includes/functions.php:172
|
628 |
+
msgid "Thai"
|
629 |
+
msgstr "тајландски"
|
630 |
+
|
631 |
+
#: ../modules/captcha.php:189
|
632 |
+
msgid "The code that sender entered does not match the CAPTCHA"
|
633 |
+
msgstr "Кôд који је унео пошиљалац не одговара CAPTCHA кôду"
|
634 |
|
635 |
+
#: ../includes/functions.php:26
|
636 |
msgid "There is a field of term that sender is needed to accept"
|
637 |
+
msgstr "Постоји поље услова које пошиљалац мора да прихвати"
|
638 |
|
639 |
+
#: ../includes/functions.php:36
|
640 |
+
msgid "There is a field that sender is needed to fill in"
|
641 |
+
msgstr "Постоји поље које пошиљалац мора да попуни"
|
642 |
|
643 |
+
#: ../modules/captcha.php:302
|
644 |
+
msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
|
645 |
+
msgstr "Овај формулар за контакт садржи поља CAPCHA, али на серверу немате инсталиране потребне библиотеке (GD или FreeType)"
|
646 |
|
647 |
+
#: ../modules/captcha.php:296
|
648 |
+
#, php-format
|
649 |
+
msgid "This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
|
650 |
+
msgstr "Овај формулар за контакт садржи CAPTCHA поља, али привремени директоријум за датотеке (%s) не постоји или није уписив. Можете направити директоријум или ручно променити права приступа."
|
651 |
+
|
652 |
+
#: ../modules/icl.php:74
|
653 |
+
msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
|
654 |
+
msgstr "Овај формулар за контакт садржи [icl] ознаке, али су оне превазиђене и више не функционишу у овом издању Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">Погледајте једноставнији начин за прављење формулара за контакт на другим језицима</a>, што вам топло препоручујем."
|
655 |
+
|
656 |
+
#: ../modules/file.php:291
|
657 |
+
#, php-format
|
658 |
+
msgid "This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
|
659 |
+
msgstr "Овај формулар за контакт садржи поље за слање датотеке, али привремени директоријум за датотеке (%s) не постоји или није уписив. Можете направити овај директоријум или му ручно променити права приступа."
|
660 |
+
|
661 |
+
#: ../modules/text.php:187
|
662 |
+
msgid "This field requires author's URL"
|
663 |
+
msgstr "Ово поље захтева УРЛ аутора"
|
664 |
+
|
665 |
+
#: ../modules/text.php:189
|
666 |
+
msgid "This field requires author's email address"
|
667 |
+
msgstr "Ово поље захтева адресу е-поште аутора"
|
668 |
+
|
669 |
+
#: ../modules/text.php:186
|
670 |
+
msgid "This field requires author's name"
|
671 |
+
msgstr "Ово поље захтева име аутора"
|
672 |
|
673 |
+
#: ../modules/file.php:217
|
674 |
+
msgid "This file is too large."
|
675 |
+
msgstr "Ова датотека је превелика."
|
676 |
+
|
677 |
+
#: ../modules/file.php:212
|
678 |
+
msgid "This file type is not allowed."
|
679 |
+
msgstr "Ова врста датотеке није дозвољена."
|
680 |
+
|
681 |
+
#: ../includes/functions.php:65
|
682 |
+
#: ../includes/functions.php:79
|
683 |
+
#, php-format
|
684 |
+
msgid "This mail is sent via contact form on %1$s %2$s"
|
685 |
+
msgstr "Ова порука је послата помоћу формулара за контакт на %1$s %2$s"
|
686 |
+
|
687 |
+
#: ../modules/captcha.php:70
|
688 |
+
msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
|
689 |
+
msgstr "Да би користила CAPTCHA, морате имати инсталирано проширење <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a>."
|
690 |
+
|
691 |
+
#: ../admin/edit.php:135
|
692 |
+
#: ../admin/edit.php:202
|
693 |
+
msgid "To:"
|
694 |
+
msgstr "За:"
|
695 |
+
|
696 |
+
#: ../includes/functions.php:173
|
697 |
+
msgid "Turkish"
|
698 |
+
msgstr "турски"
|
699 |
+
|
700 |
+
#: ../includes/functions.php:174
|
701 |
+
msgid "Ukrainian"
|
702 |
+
msgstr "украјински"
|
703 |
+
|
704 |
+
#: ../includes/classes.php:580
|
705 |
+
msgid "Untitled"
|
706 |
+
msgstr "Без наслова"
|
707 |
+
|
708 |
+
#: ../modules/file.php:211
|
709 |
msgid "Uploaded file is not allowed file type"
|
710 |
+
msgstr "Послата датотека је недозвољене врсте"
|
711 |
|
712 |
+
#: ../modules/file.php:216
|
713 |
msgid "Uploaded file is too large"
|
714 |
+
msgstr "Послада датотека је превелика"
|
715 |
+
|
716 |
+
#: ../modules/file.php:221
|
717 |
+
msgid "Uploading a file fails for PHP error"
|
718 |
+
msgstr "Слање датотеке није успело због PHP грешке"
|
719 |
+
|
720 |
+
#: ../modules/file.php:206
|
721 |
+
msgid "Uploading a file fails for any reason"
|
722 |
+
msgstr "Слање датотеке није успело из непознатог разлога"
|
723 |
+
|
724 |
+
#: ../admin/edit.php:165
|
725 |
+
#: ../admin/edit.php:232
|
726 |
+
msgid "Use HTML content type"
|
727 |
+
msgstr "Користи HTML врсту садржаја"
|
728 |
+
|
729 |
+
#: ../admin/edit.php:194
|
730 |
+
msgid "Use mail (2)"
|
731 |
+
msgstr "Користи пошту (2)"
|
732 |
+
|
733 |
+
#: ../admin/edit.php:333
|
734 |
+
#, php-format
|
735 |
+
msgid "Use the default language (%s)"
|
736 |
+
msgstr "Користи подразумевани језик (%s)"
|
737 |
+
|
738 |
+
#: ../includes/functions.php:21
|
739 |
+
msgid "Validation errors occurred"
|
740 |
+
msgstr "Дошло је до грешке при провери"
|
741 |
+
|
742 |
+
#: ../includes/functions.php:22
|
743 |
+
msgid "Validation errors occurred. Please confirm the fields and submit it again."
|
744 |
+
msgstr "Дошло је до грешке при провери. Молим Вас да проверите поља и поново пошаљете поруку."
|
745 |
+
|
746 |
+
#: ../includes/functions.php:175
|
747 |
+
msgid "Vietnamese"
|
748 |
+
msgstr "вијетнамски"
|
749 |
+
|
750 |
+
#: ../modules/checkbox.php:229
|
751 |
+
msgid "Wrap each item with <label> tag?"
|
752 |
+
msgstr "Уоквири сваку ставку тагом <label>?"
|
753 |
+
|
754 |
+
#: ../admin/edit.php:89
|
755 |
+
msgid ""
|
756 |
+
"You are about to delete this contact form.\n"
|
757 |
+
" 'Cancel' to stop, 'OK' to delete."
|
758 |
+
msgstr ""
|
759 |
+
"Желите да уклоните овај формулар за контакт.\n"
|
760 |
+
"Кликните на „Одустани“ за прекид, одн. „У реду“ за уклањање."
|
761 |
+
|
762 |
+
#: ../includes/functions.php:48
|
763 |
+
msgid "Your Email"
|
764 |
+
msgstr "Ваша е-пошта"
|
765 |
+
|
766 |
+
#: ../includes/functions.php:52
|
767 |
+
msgid "Your Message"
|
768 |
+
msgstr "Ваша порука"
|
769 |
+
|
770 |
+
#: ../includes/functions.php:46
|
771 |
+
msgid "Your Name"
|
772 |
+
msgstr "Ваше име"
|
773 |
+
|
774 |
+
#: ../modules/quiz.php:173
|
775 |
+
msgid "Your answer is not correct."
|
776 |
+
msgstr "Одговор није тачан."
|
777 |
+
|
778 |
+
#: ../admin/admin.php:359
|
779 |
+
msgid "Your contribution is needed for making this plugin better."
|
780 |
+
msgstr "Да би ово проширење било још боље неопходна је Ваша помоћ."
|
781 |
+
|
782 |
+
#: ../modules/captcha.php:190
|
783 |
+
msgid "Your entered code is incorrect."
|
784 |
+
msgstr "Унели сте погрешан кôд."
|
785 |
+
|
786 |
+
#: ../includes/functions.php:7
|
787 |
+
msgid "Your message was sent successfully. Thanks."
|
788 |
+
msgstr "Ваша порука је успешно послата. Хвала."
|
789 |
+
|
790 |
+
#: ../modules/file.php:256
|
791 |
+
msgid "bytes"
|
792 |
+
msgstr "бајтова"
|
793 |
+
|
794 |
+
#: ../admin/admin.php:291
|
795 |
+
msgid "http://contactform7.com/"
|
796 |
+
msgstr "http://contactform7.com/"
|
797 |
+
|
798 |
+
#: ../admin/admin.php:293
|
799 |
+
msgid "http://contactform7.com/docs/"
|
800 |
+
msgstr "http://contactform7.com/docs/"
|
801 |
+
|
802 |
+
#: ../admin/admin.php:365
|
803 |
+
msgid "http://contactform7.com/donate/"
|
804 |
+
msgstr "http://contactform7.com/donate/"
|
805 |
+
|
806 |
+
#: ../admin/admin.php:295
|
807 |
+
msgid "http://contactform7.com/faq/"
|
808 |
+
msgstr "http://contactform7.com/faq/"
|
809 |
+
|
810 |
+
#: ../admin/admin.php:297
|
811 |
+
msgid "http://contactform7.com/support/"
|
812 |
+
msgstr "http://contactform7.com/support/"
|
813 |
+
|
814 |
+
#: ../modules/select.php:171
|
815 |
+
#: ../modules/select.php:174
|
816 |
+
#: ../modules/text.php:168
|
817 |
+
#: ../modules/text.php:171
|
818 |
+
#: ../modules/text.php:176
|
819 |
+
#: ../modules/text.php:179
|
820 |
+
#: ../modules/text.php:184
|
821 |
+
#: ../modules/text.php:193
|
822 |
+
#: ../modules/file.php:248
|
823 |
+
#: ../modules/file.php:251
|
824 |
+
#: ../modules/file.php:256
|
825 |
+
#: ../modules/file.php:259
|
826 |
+
#: ../modules/quiz.php:197
|
827 |
+
#: ../modules/quiz.php:200
|
828 |
+
#: ../modules/quiz.php:205
|
829 |
+
#: ../modules/quiz.php:208
|
830 |
+
#: ../modules/textarea.php:141
|
831 |
+
#: ../modules/textarea.php:144
|
832 |
+
#: ../modules/textarea.php:149
|
833 |
+
#: ../modules/textarea.php:152
|
834 |
+
#: ../modules/textarea.php:157
|
835 |
+
#: ../modules/submit.php:74
|
836 |
+
#: ../modules/submit.php:77
|
837 |
+
#: ../modules/submit.php:82
|
838 |
+
#: ../modules/acceptance.php:118
|
839 |
+
#: ../modules/acceptance.php:121
|
840 |
+
#: ../modules/checkbox.php:214
|
841 |
+
#: ../modules/checkbox.php:217
|
842 |
+
#: ../modules/captcha.php:221
|
843 |
+
#: ../modules/captcha.php:224
|
844 |
+
#: ../modules/captcha.php:229
|
845 |
+
#: ../modules/captcha.php:232
|
846 |
+
#: ../modules/captcha.php:236
|
847 |
+
#: ../modules/captcha.php:247
|
848 |
+
#: ../modules/captcha.php:250
|
849 |
+
#: ../modules/captcha.php:255
|
850 |
+
#: ../modules/captcha.php:258
|
851 |
+
msgid "optional"
|
852 |
+
msgstr "опционо"
|
853 |
+
|
854 |
+
#~ msgid "Delete this contact form"
|
855 |
+
#~ msgstr "Iybriši ovu kontaktnu formu"
|
856 |
|
857 |
+
#~ msgid "(You need WordPress 2.7 or greater to use this feature)"
|
858 |
+
#~ msgstr "(Potreban WordPress 2.7 ili noviji za korištenje ove mogućnosti)"
|
languages/wpcf7-uk.mo
ADDED
Binary file
|
languages/wpcf7-uk.po
ADDED
@@ -0,0 +1,850 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Form 7 Uk\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2010-03-23 06:47+0900\n"
|
6 |
+
"PO-Revision-Date: 2010-03-27 00:08+0300\n"
|
7 |
+
"Last-Translator: Jurko Chervony <info@skinik.name>\n"
|
8 |
+
"Language-Team: skinik <wordpress@skinik.name>\n"
|
9 |
+
"MIME-Version: 1.0\n"
|
10 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
+
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"X-Poedit-Language: Ukrainian\n"
|
13 |
+
"X-Poedit-Country: UKRAINE\n"
|
14 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
15 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
+
"X-Poedit-Basepath: .\n"
|
17 |
+
"X-Poedit-SearchPath-0: .\n"
|
18 |
+
|
19 |
+
#: contact-form-7/admin/admin.php:120
|
20 |
+
#: contact-form-7/admin/edit.php:17
|
21 |
+
#: contact-form-7/admin/edit.php:30
|
22 |
+
msgid "Contact Form 7"
|
23 |
+
msgstr "Contact Form 7"
|
24 |
+
|
25 |
+
#: contact-form-7/admin/admin.php:120
|
26 |
+
msgid "Contact"
|
27 |
+
msgstr "Форма зв'язку"
|
28 |
+
|
29 |
+
#: contact-form-7/admin/admin.php:123
|
30 |
+
msgid "Edit Contact Forms"
|
31 |
+
msgstr "Редагувати контактні форми"
|
32 |
+
|
33 |
+
#: contact-form-7/admin/admin.php:123
|
34 |
+
msgid "Edit"
|
35 |
+
msgstr "Редагувати"
|
36 |
+
|
37 |
+
#: contact-form-7/admin/admin.php:162
|
38 |
+
msgid "Generate Tag"
|
39 |
+
msgstr "Створити теґ"
|
40 |
+
|
41 |
+
#: contact-form-7/admin/admin.php:163
|
42 |
+
msgid "Show"
|
43 |
+
msgstr "Показати"
|
44 |
+
|
45 |
+
#: contact-form-7/admin/admin.php:164
|
46 |
+
msgid "Hide"
|
47 |
+
msgstr "Сховати"
|
48 |
+
|
49 |
+
#: contact-form-7/admin/admin.php:261
|
50 |
+
msgid "Contact form"
|
51 |
+
msgstr "Форма для зв'язку"
|
52 |
+
|
53 |
+
#: contact-form-7/admin/admin.php:280
|
54 |
+
msgid "Settings"
|
55 |
+
msgstr "Налаштування"
|
56 |
+
|
57 |
+
#: contact-form-7/admin/admin.php:291
|
58 |
+
msgid "http://contactform7.com/"
|
59 |
+
msgstr "http://contactform7.com/"
|
60 |
+
|
61 |
+
#: contact-form-7/admin/admin.php:292
|
62 |
+
msgid "Contactform7.com"
|
63 |
+
msgstr "Contactform7.com"
|
64 |
+
|
65 |
+
#: contact-form-7/admin/admin.php:293
|
66 |
+
msgid "http://contactform7.com/docs/"
|
67 |
+
msgstr "http://contactform7.com/docs/"
|
68 |
+
|
69 |
+
#: contact-form-7/admin/admin.php:294
|
70 |
+
msgid "Docs"
|
71 |
+
msgstr "Статті"
|
72 |
+
|
73 |
+
#: contact-form-7/admin/admin.php:295
|
74 |
+
msgid "http://contactform7.com/faq/"
|
75 |
+
msgstr "http://contactform7.com/faq/"
|
76 |
+
|
77 |
+
#: contact-form-7/admin/admin.php:296
|
78 |
+
msgid "FAQ"
|
79 |
+
msgstr "ЧаПи"
|
80 |
+
|
81 |
+
#: contact-form-7/admin/admin.php:297
|
82 |
+
msgid "http://contactform7.com/support/"
|
83 |
+
msgstr "http://contactform7.com/support/"
|
84 |
+
|
85 |
+
#: contact-form-7/admin/admin.php:298
|
86 |
+
msgid "Support"
|
87 |
+
msgstr "Підтримка"
|
88 |
+
|
89 |
+
#: contact-form-7/admin/admin.php:312
|
90 |
+
msgid "Contact form created."
|
91 |
+
msgstr "Контактну форму створено."
|
92 |
+
|
93 |
+
#: contact-form-7/admin/admin.php:315
|
94 |
+
msgid "Contact form saved."
|
95 |
+
msgstr "Контактну форму збережено."
|
96 |
+
|
97 |
+
#: contact-form-7/admin/admin.php:318
|
98 |
+
msgid "Contact form deleted."
|
99 |
+
msgstr "Контактну форму видалено."
|
100 |
+
|
101 |
+
#: contact-form-7/admin/admin.php:321
|
102 |
+
msgid "Database table created."
|
103 |
+
msgstr "Таблицю у БД створено."
|
104 |
+
|
105 |
+
#: contact-form-7/admin/admin.php:324
|
106 |
+
msgid "Failed to create database table."
|
107 |
+
msgstr "Невдала спроба створити таблицю у БД."
|
108 |
+
|
109 |
+
#: contact-form-7/admin/admin.php:357
|
110 |
+
msgid "Contact Form 7 needs your support. Please donate today."
|
111 |
+
msgstr "Contact Form 7 потребує Вашої підтримки. Зробіть пожертвування на розвиток плаґіну сьогодні."
|
112 |
+
|
113 |
+
#: contact-form-7/admin/admin.php:358
|
114 |
+
msgid "Your contribution is needed for making this plugin better."
|
115 |
+
msgstr "Завдяки Вашому внеску плаґін стане кращим."
|
116 |
+
|
117 |
+
#: contact-form-7/admin/admin.php:364
|
118 |
+
msgid "http://contactform7.com/donate/"
|
119 |
+
msgstr "http://contactform7.com/donate/"
|
120 |
+
|
121 |
+
#: contact-form-7/admin/admin.php:364
|
122 |
+
msgid "Donate"
|
123 |
+
msgstr "Пожертвування"
|
124 |
+
|
125 |
+
#: contact-form-7/admin/edit.php:9
|
126 |
+
#, php-format
|
127 |
+
msgid "<strong>The database table for Contact Form 7 does not exist.</strong> You must <a href=\"%s\">create the table</a> for it to work."
|
128 |
+
msgstr "<strong>Таблиця у БД для Contact Form 7 не існує.</strong> Вам необхідно <a href=\"%s\">створити її</a> для того, щоб плаґін запрацював."
|
129 |
+
|
130 |
+
#: contact-form-7/admin/edit.php:12
|
131 |
+
msgid "<strong>The database table for Contact Form 7 does not exist.</strong>"
|
132 |
+
msgstr "<strong>Таблиця у БД для Contact Form 7 не існує.</strong>"
|
133 |
+
|
134 |
+
#: contact-form-7/admin/edit.php:45
|
135 |
+
msgid "Add new"
|
136 |
+
msgstr "Додати нову"
|
137 |
+
|
138 |
+
#: contact-form-7/admin/edit.php:67
|
139 |
+
msgid "Copy this code and paste it into your post, page or text widget content."
|
140 |
+
msgstr "Скопіюйте і вставте цей код в Вашу сторінку або публікацію чи текстовий віджет."
|
141 |
+
|
142 |
+
#: contact-form-7/admin/edit.php:75
|
143 |
+
#: contact-form-7/admin/edit.php:309
|
144 |
+
msgid "Save"
|
145 |
+
msgstr "Зберегти"
|
146 |
+
|
147 |
+
#: contact-form-7/admin/edit.php:82
|
148 |
+
msgid "Copy"
|
149 |
+
msgstr "Копіювати"
|
150 |
+
|
151 |
+
#: contact-form-7/admin/edit.php:87
|
152 |
+
msgid "Delete"
|
153 |
+
msgstr "Видалити"
|
154 |
+
|
155 |
+
#: contact-form-7/admin/edit.php:89
|
156 |
+
msgid ""
|
157 |
+
"You are about to delete this contact form.\n"
|
158 |
+
" 'Cancel' to stop, 'OK' to delete."
|
159 |
+
msgstr ""
|
160 |
+
"Видалити цю форму?.\n"
|
161 |
+
" 'Cancel' - залишити, 'OK' - видалити."
|
162 |
+
|
163 |
+
#: contact-form-7/admin/edit.php:104
|
164 |
+
msgid "Form"
|
165 |
+
msgstr "Форма"
|
166 |
+
|
167 |
+
#: contact-form-7/admin/edit.php:128
|
168 |
+
msgid "Mail"
|
169 |
+
msgstr "Пошта"
|
170 |
+
|
171 |
+
#: contact-form-7/admin/edit.php:135
|
172 |
+
#: contact-form-7/admin/edit.php:202
|
173 |
+
msgid "To:"
|
174 |
+
msgstr "Кому:"
|
175 |
+
|
176 |
+
#: contact-form-7/admin/edit.php:140
|
177 |
+
#: contact-form-7/admin/edit.php:207
|
178 |
+
msgid "From:"
|
179 |
+
msgstr "Від:"
|
180 |
+
|
181 |
+
#: contact-form-7/admin/edit.php:145
|
182 |
+
#: contact-form-7/admin/edit.php:212
|
183 |
+
msgid "Subject:"
|
184 |
+
msgstr "Тема:"
|
185 |
+
|
186 |
+
#: contact-form-7/admin/edit.php:152
|
187 |
+
#: contact-form-7/admin/edit.php:219
|
188 |
+
msgid "Additional headers:"
|
189 |
+
msgstr "Додаткові заголовки"
|
190 |
+
|
191 |
+
#: contact-form-7/admin/edit.php:157
|
192 |
+
#: contact-form-7/admin/edit.php:224
|
193 |
+
msgid "File attachments:"
|
194 |
+
msgstr "Приєднані файли: "
|
195 |
+
|
196 |
+
#: contact-form-7/admin/edit.php:165
|
197 |
+
#: contact-form-7/admin/edit.php:232
|
198 |
+
msgid "Use HTML content type"
|
199 |
+
msgstr "Використовувати HTML у повідомленні"
|
200 |
+
|
201 |
+
#: contact-form-7/admin/edit.php:172
|
202 |
+
#: contact-form-7/admin/edit.php:239
|
203 |
+
#: contact-form-7/includes/functions.php:78
|
204 |
+
msgid "Message body:"
|
205 |
+
msgstr "Текст повідомлення:"
|
206 |
+
|
207 |
+
#: contact-form-7/admin/edit.php:188
|
208 |
+
msgid "Mail (2)"
|
209 |
+
msgstr "Пошта (2)"
|
210 |
+
|
211 |
+
#: contact-form-7/admin/edit.php:194
|
212 |
+
msgid "Use mail (2)"
|
213 |
+
msgstr "Відправляти на пошту (2)"
|
214 |
+
|
215 |
+
#: contact-form-7/admin/edit.php:255
|
216 |
+
msgid "Messages"
|
217 |
+
msgstr "Повідомлення"
|
218 |
+
|
219 |
+
#: contact-form-7/admin/edit.php:285
|
220 |
+
msgid "Additional Settings"
|
221 |
+
msgstr "Додаткові налаштування"
|
222 |
+
|
223 |
+
#: contact-form-7/admin/edit.php:333
|
224 |
+
#, php-format
|
225 |
+
msgid "Use the default language (%s)"
|
226 |
+
msgstr "Використати мову за замовчуванням (%s)"
|
227 |
+
|
228 |
+
#: contact-form-7/admin/edit.php:334
|
229 |
+
#: contact-form-7/admin/edit.php:347
|
230 |
+
msgid "Add New"
|
231 |
+
msgstr "Додати нову"
|
232 |
+
|
233 |
+
#: contact-form-7/admin/edit.php:337
|
234 |
+
msgid "Or"
|
235 |
+
msgstr "Або"
|
236 |
+
|
237 |
+
#: contact-form-7/admin/edit.php:342
|
238 |
+
msgid "(select language)"
|
239 |
+
msgstr "(оберіть мову)"
|
240 |
+
|
241 |
+
#: contact-form-7/includes/classes.php:564
|
242 |
+
msgid "Untitled"
|
243 |
+
msgstr "Без назви"
|
244 |
+
|
245 |
+
#: contact-form-7/includes/functions.php:6
|
246 |
+
msgid "Sender's message was sent successfully"
|
247 |
+
msgstr "Дякуємо! Ваше повідомлення відправлено."
|
248 |
+
|
249 |
+
#: contact-form-7/includes/functions.php:7
|
250 |
+
msgid "Your message was sent successfully. Thanks."
|
251 |
+
msgstr "Дякуємо! Ваше повідомлення відправлено."
|
252 |
+
|
253 |
+
#: contact-form-7/includes/functions.php:11
|
254 |
+
msgid "Sender's message was failed to send"
|
255 |
+
msgstr "Не вдалося надіслати"
|
256 |
+
|
257 |
+
#: contact-form-7/includes/functions.php:12
|
258 |
+
#: contact-form-7/includes/functions.php:17
|
259 |
+
msgid "Failed to send your message. Please try later or contact administrator by other way."
|
260 |
+
msgstr "Помилка! Будь ласка спробуйте ще раз. Якщо помилка залишається, будь ласка, зв'яжіться з нами іншим шляхом. "
|
261 |
+
|
262 |
+
#: contact-form-7/includes/functions.php:16
|
263 |
+
msgid "Akismet judged the sending activity as spamming"
|
264 |
+
msgstr "Akismet вважає Ваше повідомлення спамом. Спробуйте зв’язатися іншим шляхом."
|
265 |
+
|
266 |
+
#: contact-form-7/includes/functions.php:21
|
267 |
+
msgid "Validation errors occurred"
|
268 |
+
msgstr "Помилки при заповненні"
|
269 |
+
|
270 |
+
#: contact-form-7/includes/functions.php:22
|
271 |
+
msgid "Validation errors occurred. Please confirm the fields and submit it again."
|
272 |
+
msgstr "Помилка при заповненні. Зверніть увагу на необхідні поля і відправте ще раз."
|
273 |
+
|
274 |
+
#: contact-form-7/includes/functions.php:26
|
275 |
+
msgid "There is a field of term that sender is needed to accept"
|
276 |
+
msgstr "Необхідно відмітити"
|
277 |
+
|
278 |
+
#: contact-form-7/includes/functions.php:27
|
279 |
+
msgid "Please accept the terms to proceed."
|
280 |
+
msgstr "Відмітьте, якщо необхідно."
|
281 |
+
|
282 |
+
#: contact-form-7/includes/functions.php:31
|
283 |
+
msgid "Email address that sender entered is invalid"
|
284 |
+
msgstr "Е-mail адресу вказано невірно."
|
285 |
+
|
286 |
+
#: contact-form-7/includes/functions.php:32
|
287 |
+
msgid "Email address seems invalid."
|
288 |
+
msgstr "Еmail адресу вказано невірно."
|
289 |
+
|
290 |
+
#: contact-form-7/includes/functions.php:36
|
291 |
+
msgid "There is a field that sender is needed to fill in"
|
292 |
+
msgstr "Необхідні поля для заповнення"
|
293 |
+
|
294 |
+
#: contact-form-7/includes/functions.php:37
|
295 |
+
msgid "Please fill the required field."
|
296 |
+
msgstr "Будь ласка, заповніть всі необхідні поля."
|
297 |
+
|
298 |
+
#: contact-form-7/includes/functions.php:46
|
299 |
+
msgid "Your Name"
|
300 |
+
msgstr "Ваше ім'я"
|
301 |
+
|
302 |
+
#: contact-form-7/includes/functions.php:46
|
303 |
+
#: contact-form-7/includes/functions.php:48
|
304 |
+
msgid "(required)"
|
305 |
+
msgstr "(обов'язково)"
|
306 |
+
|
307 |
+
#: contact-form-7/includes/functions.php:48
|
308 |
+
msgid "Your Email"
|
309 |
+
msgstr "Ваш email"
|
310 |
+
|
311 |
+
#: contact-form-7/includes/functions.php:50
|
312 |
+
msgid "Subject"
|
313 |
+
msgstr "Тема"
|
314 |
+
|
315 |
+
#: contact-form-7/includes/functions.php:52
|
316 |
+
msgid "Your Message"
|
317 |
+
msgstr "Повідомлення"
|
318 |
+
|
319 |
+
#: contact-form-7/includes/functions.php:54
|
320 |
+
msgid "Send"
|
321 |
+
msgstr "Відправити"
|
322 |
+
|
323 |
+
#: contact-form-7/includes/functions.php:62
|
324 |
+
#, php-format
|
325 |
+
msgid "From: %s"
|
326 |
+
msgstr "Від: %s"
|
327 |
+
|
328 |
+
#: contact-form-7/includes/functions.php:63
|
329 |
+
#, php-format
|
330 |
+
msgid "Subject: %s"
|
331 |
+
msgstr "Тема: %s"
|
332 |
+
|
333 |
+
#: contact-form-7/includes/functions.php:64
|
334 |
+
msgid "Message Body:"
|
335 |
+
msgstr "Текст повідомлення:"
|
336 |
+
|
337 |
+
#: contact-form-7/includes/functions.php:65
|
338 |
+
#: contact-form-7/includes/functions.php:79
|
339 |
+
#, php-format
|
340 |
+
msgid "This mail is sent via contact form on %1$s %2$s"
|
341 |
+
msgstr "Цього листа надіслано за допомогою контактної форми %1$s %2$s"
|
342 |
+
|
343 |
+
#: contact-form-7/includes/functions.php:168
|
344 |
+
msgid "Afrikaans"
|
345 |
+
msgstr ""
|
346 |
+
|
347 |
+
#: contact-form-7/includes/functions.php:169
|
348 |
+
msgid "Albanian"
|
349 |
+
msgstr ""
|
350 |
+
|
351 |
+
#: contact-form-7/includes/functions.php:170
|
352 |
+
msgid "Arabic"
|
353 |
+
msgstr ""
|
354 |
+
|
355 |
+
#: contact-form-7/includes/functions.php:171
|
356 |
+
msgid "Bangla"
|
357 |
+
msgstr ""
|
358 |
+
|
359 |
+
#: contact-form-7/includes/functions.php:172
|
360 |
+
msgid "Bosnian"
|
361 |
+
msgstr ""
|
362 |
+
|
363 |
+
#: contact-form-7/includes/functions.php:173
|
364 |
+
msgid "Brazilian Portuguese"
|
365 |
+
msgstr ""
|
366 |
+
|
367 |
+
#: contact-form-7/includes/functions.php:174
|
368 |
+
msgid "Bulgarian"
|
369 |
+
msgstr ""
|
370 |
+
|
371 |
+
#: contact-form-7/includes/functions.php:175
|
372 |
+
msgid "Catalan"
|
373 |
+
msgstr ""
|
374 |
+
|
375 |
+
#: contact-form-7/includes/functions.php:176
|
376 |
+
msgid "Chinese (Simplified)"
|
377 |
+
msgstr ""
|
378 |
+
|
379 |
+
#: contact-form-7/includes/functions.php:177
|
380 |
+
msgid "Chinese (Traditional)"
|
381 |
+
msgstr ""
|
382 |
+
|
383 |
+
#: contact-form-7/includes/functions.php:178
|
384 |
+
msgid "Croatian"
|
385 |
+
msgstr ""
|
386 |
+
|
387 |
+
#: contact-form-7/includes/functions.php:179
|
388 |
+
msgid "Czech"
|
389 |
+
msgstr ""
|
390 |
+
|
391 |
+
#: contact-form-7/includes/functions.php:180
|
392 |
+
msgid "Danish"
|
393 |
+
msgstr ""
|
394 |
+
|
395 |
+
#: contact-form-7/includes/functions.php:181
|
396 |
+
msgid "Dutch"
|
397 |
+
msgstr ""
|
398 |
+
|
399 |
+
#: contact-form-7/includes/functions.php:182
|
400 |
+
msgid "English"
|
401 |
+
msgstr ""
|
402 |
+
|
403 |
+
#: contact-form-7/includes/functions.php:183
|
404 |
+
msgid "Estonian"
|
405 |
+
msgstr ""
|
406 |
+
|
407 |
+
#: contact-form-7/includes/functions.php:184
|
408 |
+
msgid "Finnish"
|
409 |
+
msgstr ""
|
410 |
+
|
411 |
+
#: contact-form-7/includes/functions.php:185
|
412 |
+
msgid "French"
|
413 |
+
msgstr ""
|
414 |
+
|
415 |
+
#: contact-form-7/includes/functions.php:186
|
416 |
+
msgid "Galician"
|
417 |
+
msgstr ""
|
418 |
+
|
419 |
+
#: contact-form-7/includes/functions.php:187
|
420 |
+
msgid "Georgian"
|
421 |
+
msgstr ""
|
422 |
+
|
423 |
+
#: contact-form-7/includes/functions.php:188
|
424 |
+
msgid "German"
|
425 |
+
msgstr ""
|
426 |
+
|
427 |
+
#: contact-form-7/includes/functions.php:189
|
428 |
+
msgid "Greek"
|
429 |
+
msgstr ""
|
430 |
+
|
431 |
+
#: contact-form-7/includes/functions.php:190
|
432 |
+
msgid "Hebrew"
|
433 |
+
msgstr ""
|
434 |
+
|
435 |
+
#: contact-form-7/includes/functions.php:191
|
436 |
+
msgid "Hindi"
|
437 |
+
msgstr ""
|
438 |
+
|
439 |
+
#: contact-form-7/includes/functions.php:192
|
440 |
+
msgid "Hungarian"
|
441 |
+
msgstr ""
|
442 |
+
|
443 |
+
#: contact-form-7/includes/functions.php:193
|
444 |
+
msgid "Indonesian"
|
445 |
+
msgstr ""
|
446 |
+
|
447 |
+
#: contact-form-7/includes/functions.php:194
|
448 |
+
msgid "Italian"
|
449 |
+
msgstr ""
|
450 |
+
|
451 |
+
#: contact-form-7/includes/functions.php:195
|
452 |
+
msgid "Japanese"
|
453 |
+
msgstr ""
|
454 |
+
|
455 |
+
#: contact-form-7/includes/functions.php:196
|
456 |
+
msgid "Korean"
|
457 |
+
msgstr ""
|
458 |
+
|
459 |
+
#: contact-form-7/includes/functions.php:197
|
460 |
+
msgid "Latvian"
|
461 |
+
msgstr ""
|
462 |
+
|
463 |
+
#: contact-form-7/includes/functions.php:198
|
464 |
+
msgid "Lithuanian"
|
465 |
+
msgstr ""
|
466 |
+
|
467 |
+
#: contact-form-7/includes/functions.php:199
|
468 |
+
msgid "Malayalam"
|
469 |
+
msgstr ""
|
470 |
+
|
471 |
+
#: contact-form-7/includes/functions.php:200
|
472 |
+
msgid "Norwegian"
|
473 |
+
msgstr ""
|
474 |
+
|
475 |
+
#: contact-form-7/includes/functions.php:201
|
476 |
+
msgid "Persian"
|
477 |
+
msgstr ""
|
478 |
+
|
479 |
+
#: contact-form-7/includes/functions.php:202
|
480 |
+
msgid "Polish"
|
481 |
+
msgstr ""
|
482 |
+
|
483 |
+
#: contact-form-7/includes/functions.php:203
|
484 |
+
msgid "Portuguese"
|
485 |
+
msgstr ""
|
486 |
+
|
487 |
+
#: contact-form-7/includes/functions.php:204
|
488 |
+
msgid "Russian"
|
489 |
+
msgstr ""
|
490 |
+
|
491 |
+
#: contact-form-7/includes/functions.php:205
|
492 |
+
msgid "Romanian"
|
493 |
+
msgstr ""
|
494 |
+
|
495 |
+
#: contact-form-7/includes/functions.php:206
|
496 |
+
msgid "Serbian"
|
497 |
+
msgstr ""
|
498 |
+
|
499 |
+
#: contact-form-7/includes/functions.php:207
|
500 |
+
msgid "Slovak"
|
501 |
+
msgstr ""
|
502 |
+
|
503 |
+
#: contact-form-7/includes/functions.php:208
|
504 |
+
msgid "Slovene"
|
505 |
+
msgstr ""
|
506 |
+
|
507 |
+
#: contact-form-7/includes/functions.php:209
|
508 |
+
msgid "Spanish"
|
509 |
+
msgstr ""
|
510 |
+
|
511 |
+
#: contact-form-7/includes/functions.php:210
|
512 |
+
msgid "Swedish"
|
513 |
+
msgstr ""
|
514 |
+
|
515 |
+
#: contact-form-7/includes/functions.php:211
|
516 |
+
msgid "Thai"
|
517 |
+
msgstr ""
|
518 |
+
|
519 |
+
#: contact-form-7/includes/functions.php:212
|
520 |
+
msgid "Turkish"
|
521 |
+
msgstr ""
|
522 |
+
|
523 |
+
#: contact-form-7/includes/functions.php:213
|
524 |
+
msgid "Ukrainian"
|
525 |
+
msgstr "Ukrainian — Українська"
|
526 |
+
|
527 |
+
#: contact-form-7/includes/functions.php:214
|
528 |
+
msgid "Vietnamese"
|
529 |
+
msgstr ""
|
530 |
+
|
531 |
+
#: contact-form-7/modules/acceptance.php:104
|
532 |
+
msgid "Acceptance"
|
533 |
+
msgstr "Погодження"
|
534 |
+
|
535 |
+
#: contact-form-7/modules/acceptance.php:113
|
536 |
+
#: contact-form-7/modules/captcha.php:214
|
537 |
+
#: contact-form-7/modules/checkbox.php:209
|
538 |
+
#: contact-form-7/modules/file.php:241
|
539 |
+
msgid "Name"
|
540 |
+
msgstr "Ім'я"
|
541 |
+
|
542 |
+
#: contact-form-7/modules/acceptance.php:118
|
543 |
+
#: contact-form-7/modules/acceptance.php:121
|
544 |
+
#: contact-form-7/modules/captcha.php:221
|
545 |
+
#: contact-form-7/modules/captcha.php:224
|
546 |
+
#: contact-form-7/modules/captcha.php:229
|
547 |
+
#: contact-form-7/modules/captcha.php:232
|
548 |
+
#: contact-form-7/modules/captcha.php:236
|
549 |
+
#: contact-form-7/modules/captcha.php:247
|
550 |
+
#: contact-form-7/modules/captcha.php:250
|
551 |
+
#: contact-form-7/modules/captcha.php:255
|
552 |
+
#: contact-form-7/modules/captcha.php:258
|
553 |
+
#: contact-form-7/modules/checkbox.php:214
|
554 |
+
#: contact-form-7/modules/checkbox.php:217
|
555 |
+
#: contact-form-7/modules/file.php:246
|
556 |
+
#: contact-form-7/modules/file.php:249
|
557 |
+
#: contact-form-7/modules/file.php:254
|
558 |
+
#: contact-form-7/modules/file.php:257
|
559 |
+
msgid "optional"
|
560 |
+
msgstr "додатково"
|
561 |
+
|
562 |
+
#: contact-form-7/modules/acceptance.php:127
|
563 |
+
msgid "Make this checkbox checked by default?"
|
564 |
+
msgstr "Зробити цей чекбокс обраним за замовчуванням?"
|
565 |
+
|
566 |
+
#: contact-form-7/modules/acceptance.php:128
|
567 |
+
msgid "Make this checkbox work inversely?"
|
568 |
+
msgstr "Зробити цей чекбокс працюючим навпаки?"
|
569 |
+
|
570 |
+
#: contact-form-7/modules/acceptance.php:129
|
571 |
+
msgid "* That means visitor who accepts the term unchecks it."
|
572 |
+
msgstr "* Це означає, що відвідувач який відмітив пункт, відмінив вибір."
|
573 |
+
|
574 |
+
#: contact-form-7/modules/acceptance.php:134
|
575 |
+
#: contact-form-7/modules/captcha.php:263
|
576 |
+
#: contact-form-7/modules/checkbox.php:237
|
577 |
+
#: contact-form-7/modules/file.php:262
|
578 |
+
msgid "Copy this code and paste it into the form left."
|
579 |
+
msgstr "Скопіюйте і вставте цей код в Вашу сторінку"
|
580 |
+
|
581 |
+
#: contact-form-7/modules/captcha.php:70
|
582 |
+
msgid "To use CAPTCHA, you need <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a> plugin installed."
|
583 |
+
msgstr "Для використання каптчі, Вам необхідно встановити плаґін <a href=\"http://wordpress.org/extend/plugins/really-simple-captcha/\">Really Simple CAPTCHA</a>."
|
584 |
+
|
585 |
+
#: contact-form-7/modules/captcha.php:189
|
586 |
+
msgid "The code that sender entered does not match the CAPTCHA"
|
587 |
+
msgstr "Невірний код каптчі."
|
588 |
+
|
589 |
+
#: contact-form-7/modules/captcha.php:190
|
590 |
+
msgid "Your entered code is incorrect."
|
591 |
+
msgstr "Введено невірний контрольний код."
|
592 |
+
|
593 |
+
#: contact-form-7/modules/captcha.php:200
|
594 |
+
msgid "CAPTCHA"
|
595 |
+
msgstr "Капча"
|
596 |
+
|
597 |
+
#: contact-form-7/modules/captcha.php:211
|
598 |
+
msgid "Note: To use CAPTCHA, you need Really Simple CAPTCHA plugin installed."
|
599 |
+
msgstr "Примітка: Для використання каптчі, Вам необхідно встановити плаґін Really Simple CAPTCHA."
|
600 |
+
|
601 |
+
#: contact-form-7/modules/captcha.php:218
|
602 |
+
msgid "Image settings"
|
603 |
+
msgstr "Налаштування зображення"
|
604 |
+
|
605 |
+
#: contact-form-7/modules/captcha.php:229
|
606 |
+
msgid "Foreground color"
|
607 |
+
msgstr "Колір переднього плану"
|
608 |
+
|
609 |
+
#: contact-form-7/modules/captcha.php:232
|
610 |
+
msgid "Background color"
|
611 |
+
msgstr "Колір фону"
|
612 |
+
|
613 |
+
#: contact-form-7/modules/captcha.php:236
|
614 |
+
msgid "Image size"
|
615 |
+
msgstr "Розмір зображення"
|
616 |
+
|
617 |
+
#: contact-form-7/modules/captcha.php:237
|
618 |
+
msgid "Small"
|
619 |
+
msgstr "Маленький"
|
620 |
+
|
621 |
+
#: contact-form-7/modules/captcha.php:238
|
622 |
+
msgid "Medium"
|
623 |
+
msgstr "Середній"
|
624 |
+
|
625 |
+
#: contact-form-7/modules/captcha.php:239
|
626 |
+
msgid "Large"
|
627 |
+
msgstr "Великий"
|
628 |
+
|
629 |
+
#: contact-form-7/modules/captcha.php:244
|
630 |
+
msgid "Input field settings"
|
631 |
+
msgstr "Налаштування полів вводу"
|
632 |
+
|
633 |
+
#: contact-form-7/modules/captcha.php:264
|
634 |
+
msgid "For image"
|
635 |
+
msgstr "Для зображення"
|
636 |
+
|
637 |
+
#: contact-form-7/modules/captcha.php:266
|
638 |
+
msgid "For input field"
|
639 |
+
msgstr "Для поля введення"
|
640 |
+
|
641 |
+
#: contact-form-7/modules/captcha.php:296
|
642 |
+
#, php-format
|
643 |
+
msgid "This contact form contains CAPTCHA fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
|
644 |
+
msgstr "Ця форма містить поля каптчі, але в тимчасова тека для файлів (%s) не існує або не доступна для запису. Ви можете створити її або встановити дозвіл на запис вручну."
|
645 |
+
|
646 |
+
#: contact-form-7/modules/captcha.php:302
|
647 |
+
msgid "This contact form contains CAPTCHA fields, but the necessary libraries (GD and FreeType) are not available on your server."
|
648 |
+
msgstr "Ця форма використовує каптчу і потрібна бібліотека GD, але вона не доступна на Вашому сервері."
|
649 |
+
|
650 |
+
#: contact-form-7/modules/checkbox.php:182
|
651 |
+
msgid "Checkboxes"
|
652 |
+
msgstr "Чекбокси"
|
653 |
+
|
654 |
+
#: contact-form-7/modules/checkbox.php:185
|
655 |
+
msgid "Radio buttons"
|
656 |
+
msgstr "Радіо-кнопки"
|
657 |
+
|
658 |
+
#: contact-form-7/modules/checkbox.php:206
|
659 |
+
#: contact-form-7/modules/file.php:240
|
660 |
+
msgid "Required field?"
|
661 |
+
msgstr "Обов'язкове поле?"
|
662 |
+
|
663 |
+
#: contact-form-7/modules/checkbox.php:222
|
664 |
+
msgid "Choices"
|
665 |
+
msgstr "Вибір"
|
666 |
+
|
667 |
+
#: contact-form-7/modules/checkbox.php:224
|
668 |
+
msgid "* One choice per line."
|
669 |
+
msgstr "* По одній в рядку."
|
670 |
+
|
671 |
+
#: contact-form-7/modules/checkbox.php:228
|
672 |
+
msgid "Put a label first, a checkbox last?"
|
673 |
+
msgstr "Вставити спершу label, а checkbox після?"
|
674 |
+
|
675 |
+
#: contact-form-7/modules/checkbox.php:229
|
676 |
+
msgid "Wrap each item with <label> tag?"
|
677 |
+
msgstr "Загорніть кожен елемент в теґ <label>"
|
678 |
+
|
679 |
+
#: contact-form-7/modules/checkbox.php:231
|
680 |
+
msgid "Make checkboxes exclusive?"
|
681 |
+
msgstr "Зробити ці чекбокси ексклюзивними?"
|
682 |
+
|
683 |
+
#: contact-form-7/modules/checkbox.php:239
|
684 |
+
msgid "And, put this code into the Mail fields below."
|
685 |
+
msgstr "Та вставте цей код у поле листа нижче"
|
686 |
+
|
687 |
+
#: contact-form-7/modules/file.php:204
|
688 |
+
msgid "Uploading a file fails for any reason"
|
689 |
+
msgstr "Помилка завантаження файлу"
|
690 |
+
|
691 |
+
#: contact-form-7/modules/file.php:205
|
692 |
+
msgid "Failed to upload file."
|
693 |
+
msgstr "Помилка при завантаженні файлу."
|
694 |
+
|
695 |
+
#: contact-form-7/modules/file.php:209
|
696 |
+
msgid "Uploaded file is not allowed file type"
|
697 |
+
msgstr "Не дозволений тип файлів для завантаження"
|
698 |
+
|
699 |
+
#: contact-form-7/modules/file.php:210
|
700 |
+
msgid "This file type is not allowed."
|
701 |
+
msgstr "Цей тип файлу не дозволений."
|
702 |
+
|
703 |
+
#: contact-form-7/modules/file.php:214
|
704 |
+
msgid "Uploaded file is too large"
|
705 |
+
msgstr "Завантажений файл занадто великий"
|
706 |
+
|
707 |
+
#: contact-form-7/modules/file.php:215
|
708 |
+
msgid "This file is too large."
|
709 |
+
msgstr "Цей файл завеликий."
|
710 |
+
|
711 |
+
#: contact-form-7/modules/file.php:219
|
712 |
+
msgid "Uploading a file fails for PHP error"
|
713 |
+
msgstr "Збій при завантаженні"
|
714 |
+
|
715 |
+
#: contact-form-7/modules/file.php:220
|
716 |
+
msgid "Failed to upload file. Error occurred."
|
717 |
+
msgstr "Збій при завантаженні файлу. Виникла помилка."
|
718 |
+
|
719 |
+
#: contact-form-7/modules/file.php:231
|
720 |
+
msgid "File upload"
|
721 |
+
msgstr "Завантаження файлу"
|
722 |
+
|
723 |
+
#: contact-form-7/modules/file.php:254
|
724 |
+
msgid "File size limit"
|
725 |
+
msgstr "Максимальний розмір файлу"
|
726 |
+
|
727 |
+
#: contact-form-7/modules/file.php:254
|
728 |
+
msgid "bytes"
|
729 |
+
msgstr "байт"
|
730 |
+
|
731 |
+
#: contact-form-7/modules/file.php:257
|
732 |
+
msgid "Acceptable file types"
|
733 |
+
msgstr "Допустимі типі файлів"
|
734 |
+
|
735 |
+
#: contact-form-7/modules/file.php:264
|
736 |
+
msgid "And, put this code into the File Attachments field below."
|
737 |
+
msgstr "Та вставте цей код у поле прикріплення файлу до листа знизу."
|
738 |
+
|
739 |
+
#: contact-form-7/modules/file.php:289
|
740 |
+
#, php-format
|
741 |
+
msgid "This contact form contains file uploading fields, but the temporary folder for the files (%s) does not exist or is not writable. You can create the folder or change its permission manually."
|
742 |
+
msgstr "Ця форма містить поля для завантаження файлів, але тимчасова тека для файлів (%s) не існує або не має права на запис. Ви можете створити її вручну або встановити дозвіл на запис."
|
743 |
+
|
744 |
+
#: contact-form-7/modules/icl.php:74
|
745 |
+
msgid "This contact form contains [icl] tags, but they are obsolete and no longer functioning on this version of Contact Form 7. <a href=\"http://contactform7.com/2009/12/25/contact-form-in-your-language/#Creating_contact_form_in_different_languages\" target=\"_blank\">There is a simpler way for creating contact forms of other languages</a> and you are recommended to use it."
|
746 |
+
msgstr ""
|
747 |
+
|
748 |
+
#: contact-form-7/modules/quiz.php:170
|
749 |
+
msgid "Sender doesn't enter the correct answer to the quiz"
|
750 |
+
msgstr "Відправник не відповів на запитання"
|
751 |
+
|
752 |
+
#: contact-form-7/modules/quiz.php:171
|
753 |
+
msgid "Your answer is not correct."
|
754 |
+
msgstr "Ваша відповідь невірна."
|
755 |
+
|
756 |
+
#: contact-form-7/modules/quiz.php:181
|
757 |
+
msgid "Quiz"
|
758 |
+
msgstr "Запитання"
|
759 |
+
|
760 |
+
#: contact-form-7/modules/quiz.php:211
|
761 |
+
msgid "Quizzes"
|
762 |
+
msgstr "Запитання"
|
763 |
+
|
764 |
+
#: contact-form-7/modules/quiz.php:213
|
765 |
+
msgid "* quiz|answer (e.g. 1+1=?|2)"
|
766 |
+
msgstr "* запитання|відповідь (приклад: 1+1=?|2)"
|
767 |
+
|
768 |
+
#: contact-form-7/modules/select.php:154
|
769 |
+
msgid "Drop-down menu"
|
770 |
+
msgstr "Випадаюче меню"
|
771 |
+
|
772 |
+
#: contact-form-7/modules/select.php:183
|
773 |
+
msgid "Allow multiple selections?"
|
774 |
+
msgstr "Дозволяти множинний вибір?"
|
775 |
+
|
776 |
+
#: contact-form-7/modules/select.php:184
|
777 |
+
msgid "Insert a blank item as the first option?"
|
778 |
+
msgstr "Вставляти пустий пункт як першу опцію?"
|
779 |
+
|
780 |
+
#: contact-form-7/modules/submit.php:62
|
781 |
+
msgid "Submit button"
|
782 |
+
msgstr "Кнопка відправки"
|
783 |
+
|
784 |
+
#: contact-form-7/modules/submit.php:80
|
785 |
+
msgid "Label"
|
786 |
+
msgstr "Ярлик"
|
787 |
+
|
788 |
+
#: contact-form-7/modules/text.php:137
|
789 |
+
msgid "Text field"
|
790 |
+
msgstr "Текстове поле"
|
791 |
+
|
792 |
+
#: contact-form-7/modules/text.php:140
|
793 |
+
msgid "Email field"
|
794 |
+
msgstr "Поле e-mail"
|
795 |
+
|
796 |
+
#: contact-form-7/modules/text.php:182
|
797 |
+
msgid "Akismet"
|
798 |
+
msgstr "Akismet"
|
799 |
+
|
800 |
+
#: contact-form-7/modules/text.php:184
|
801 |
+
msgid "This field requires author's name"
|
802 |
+
msgstr "Це поле потребує ім'я автора"
|
803 |
+
|
804 |
+
#: contact-form-7/modules/text.php:185
|
805 |
+
msgid "This field requires author's URL"
|
806 |
+
msgstr "Це поле потребує URL автора"
|
807 |
+
|
808 |
+
#: contact-form-7/modules/text.php:187
|
809 |
+
msgid "This field requires author's email address"
|
810 |
+
msgstr "Це поле потребує email автора"
|
811 |
+
|
812 |
+
#: contact-form-7/modules/text.php:191
|
813 |
+
#: contact-form-7/modules/textarea.php:157
|
814 |
+
msgid "Default value"
|
815 |
+
msgstr "Значення за замовчуванням"
|
816 |
+
|
817 |
+
#: contact-form-7/modules/textarea.php:126
|
818 |
+
msgid "Text area"
|
819 |
+
msgstr "Багаторядкове текстове поле"
|
820 |
+
|
821 |
+
#~ msgid ""
|
822 |
+
#~ "Is this plugin useful for you? If you like it, please help the developer."
|
823 |
+
#~ msgstr "Цей плаґін корисний для Вас? Допоможіть мені у його розробці."
|
824 |
+
#~ msgid ""
|
825 |
+
#~ "Developing a plugin and providing user support is really hard work. "
|
826 |
+
#~ "Please help."
|
827 |
+
#~ msgstr "Розробляти плаґіни складно, будь ласка, допоможіть мені у цьому."
|
828 |
+
#~ msgid "This mail is created by Contact Form 7 plugin for WordPress."
|
829 |
+
#~ msgstr " "
|
830 |
+
#~ msgid "Delete this contact form"
|
831 |
+
#~ msgstr "Видалити цю форму"
|
832 |
+
#~ msgid "Form content"
|
833 |
+
#~ msgstr "Зміст форми"
|
834 |
+
#~ msgid "Mail template"
|
835 |
+
#~ msgstr "Шаблон листа"
|
836 |
+
#~ msgid "Sender field:"
|
837 |
+
#~ msgstr "Адреса відправника:"
|
838 |
+
#~ msgid "Recipient address:"
|
839 |
+
#~ msgstr "Адреса отримувача:"
|
840 |
+
#~ msgid "Check this field as sender's name"
|
841 |
+
#~ msgstr "Перевіряти це поле як им'я відправника"
|
842 |
+
#~ msgid "Check this field as sender's email"
|
843 |
+
#~ msgstr "Перевіряти це поле як e-mail"
|
844 |
+
#~ msgid "Check this field as sender's URL"
|
845 |
+
#~ msgstr "Перевіряти це поле як URL"
|
846 |
+
#~ msgid "Don't check this field with Akismet"
|
847 |
+
#~ msgstr "Перевіряти це поле за допомогою Akismet"
|
848 |
+
#~ msgid "Insert"
|
849 |
+
#~ msgstr "Вставити"
|
850 |
+
|
languages/wpcf7-uk_UA.mo
DELETED
Binary file
|
languages/wpcf7-uk_UA.po
DELETED
@@ -1,327 +0,0 @@
|
|
1 |
-
msgid ""
|
2 |
-
msgstr ""
|
3 |
-
"Project-Id-Version: Contact Form 7 Ukrainian translation\n"
|
4 |
-
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2008-11-09 18:08+0200\n"
|
6 |
-
"PO-Revision-Date: 2008-11-09 19:21+0200\n"
|
7 |
-
"Last-Translator: Andrey Kovba <info@myserver.com.ua>\n"
|
8 |
-
"Language-Team: Andrey Kovba <info@myserver.com.ua>\n"
|
9 |
-
"MIME-Version: 1.0\n"
|
10 |
-
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
-
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"X-Poedit-Language: Ukrainian\n"
|
13 |
-
"X-Poedit-Country: UKRAINE\n"
|
14 |
-
"X-Poedit-SourceCharset: utf-8\n"
|
15 |
-
"X-Poedit-KeywordsList: __;_e\n"
|
16 |
-
"X-Poedit-SearchPath-0: ./\n"
|
17 |
-
|
18 |
-
#: /wp-contact-form-7.php:311
|
19 |
-
msgid "Contact form"
|
20 |
-
msgstr "Форма для зв'язку"
|
21 |
-
|
22 |
-
#: /wp-contact-form-7.php:405
|
23 |
-
#: /includes/admin-panel.php:5
|
24 |
-
msgid "Contact Form 7"
|
25 |
-
msgstr "Contact Form 7"
|
26 |
-
|
27 |
-
#: /wp-contact-form-7.php:434
|
28 |
-
msgid "optional"
|
29 |
-
msgstr "додатково"
|
30 |
-
|
31 |
-
#: /wp-contact-form-7.php:435
|
32 |
-
msgid "Generate Tag"
|
33 |
-
msgstr "Створити тег"
|
34 |
-
|
35 |
-
#: /wp-contact-form-7.php:436
|
36 |
-
msgid "Text field"
|
37 |
-
msgstr "текстове поле"
|
38 |
-
|
39 |
-
#: /wp-contact-form-7.php:437
|
40 |
-
msgid "Email field"
|
41 |
-
msgstr "Поле email"
|
42 |
-
|
43 |
-
#: /wp-contact-form-7.php:438
|
44 |
-
msgid "Text area"
|
45 |
-
msgstr "Text area"
|
46 |
-
|
47 |
-
#: /wp-contact-form-7.php:439
|
48 |
-
msgid "Drop-down menu"
|
49 |
-
msgstr "Випадаюче меню"
|
50 |
-
|
51 |
-
#: /wp-contact-form-7.php:440
|
52 |
-
msgid "Checkboxes"
|
53 |
-
msgstr "Чекбокси"
|
54 |
-
|
55 |
-
#: /wp-contact-form-7.php:441
|
56 |
-
msgid "Radio buttons"
|
57 |
-
msgstr "Радіо-кнопки"
|
58 |
-
|
59 |
-
#: /wp-contact-form-7.php:442
|
60 |
-
msgid "Acceptance"
|
61 |
-
msgstr "Погодження"
|
62 |
-
|
63 |
-
#: /wp-contact-form-7.php:443
|
64 |
-
msgid "Make this checkbox checked by default?"
|
65 |
-
msgstr "Зробити цей чекбокс обранним за замовчуванням?"
|
66 |
-
|
67 |
-
#: /wp-contact-form-7.php:444
|
68 |
-
msgid "Make this checkbox work inversely?"
|
69 |
-
msgstr "Зробити цей чекбокс працюючим навпаки?"
|
70 |
-
|
71 |
-
#: /wp-contact-form-7.php:445
|
72 |
-
msgid "* That means visitor who accepts the term unchecks it."
|
73 |
-
msgstr "* Це означае, що відвідувач який відмітив пункт, відмінив вибір."
|
74 |
-
|
75 |
-
#: /wp-contact-form-7.php:446
|
76 |
-
msgid "CAPTCHA"
|
77 |
-
msgstr "Капча"
|
78 |
-
|
79 |
-
#: /wp-contact-form-7.php:447
|
80 |
-
msgid "Submit button"
|
81 |
-
msgstr "Кнопка відправки"
|
82 |
-
|
83 |
-
#: /wp-contact-form-7.php:448
|
84 |
-
msgid "Name"
|
85 |
-
msgstr "Ім'я"
|
86 |
-
|
87 |
-
#: /wp-contact-form-7.php:449
|
88 |
-
msgid "Required field?"
|
89 |
-
msgstr "Обов'язкове поле?"
|
90 |
-
|
91 |
-
#: /wp-contact-form-7.php:450
|
92 |
-
msgid "Allow multiple selections?"
|
93 |
-
msgstr "Дозволяти множинний вибір?"
|
94 |
-
|
95 |
-
#: /wp-contact-form-7.php:451
|
96 |
-
msgid "Insert a blank item as the first option?"
|
97 |
-
msgstr "Вставляти пустий пункт як першу опцію?"
|
98 |
-
|
99 |
-
#: /wp-contact-form-7.php:452
|
100 |
-
msgid "Make checkboxes exclusive?"
|
101 |
-
msgstr "Зробити ці чекбокси екслюзивними?"
|
102 |
-
|
103 |
-
#: /wp-contact-form-7.php:453
|
104 |
-
msgid "Choices"
|
105 |
-
msgstr "Вибір"
|
106 |
-
|
107 |
-
#: /wp-contact-form-7.php:454
|
108 |
-
msgid "Label"
|
109 |
-
msgstr "Ярлик"
|
110 |
-
|
111 |
-
#: /wp-contact-form-7.php:455
|
112 |
-
msgid "Default value"
|
113 |
-
msgstr "Значення за замовчуванням"
|
114 |
-
|
115 |
-
#: /wp-contact-form-7.php:456
|
116 |
-
msgid "Akismet"
|
117 |
-
msgstr "Akismet"
|
118 |
-
|
119 |
-
#: /wp-contact-form-7.php:457
|
120 |
-
msgid "This field requires author's name"
|
121 |
-
msgstr "Це поле потребує им'я автора"
|
122 |
-
|
123 |
-
#: /wp-contact-form-7.php:458
|
124 |
-
msgid "This field requires author's URL"
|
125 |
-
msgstr "Це поле потребує URL автора"
|
126 |
-
|
127 |
-
#: /wp-contact-form-7.php:459
|
128 |
-
msgid "This field requires author's email address"
|
129 |
-
msgstr "Це поле потребує email автора"
|
130 |
-
|
131 |
-
#: /wp-contact-form-7.php:460
|
132 |
-
msgid "Copy and paste this code into the form"
|
133 |
-
msgstr "Зкопіюйте і вставте цей код в Вашу сторінку"
|
134 |
-
|
135 |
-
#: /wp-contact-form-7.php:461
|
136 |
-
msgid "Foreground color"
|
137 |
-
msgstr "Колір переднього плану"
|
138 |
-
|
139 |
-
#: /wp-contact-form-7.php:462
|
140 |
-
msgid "Background color"
|
141 |
-
msgstr "Колір фону"
|
142 |
-
|
143 |
-
#: /wp-contact-form-7.php:463
|
144 |
-
msgid "Image size"
|
145 |
-
msgstr "Размір зображення"
|
146 |
-
|
147 |
-
#: /wp-contact-form-7.php:464
|
148 |
-
msgid "Small"
|
149 |
-
msgstr "Маленький"
|
150 |
-
|
151 |
-
#: /wp-contact-form-7.php:465
|
152 |
-
msgid "Medium"
|
153 |
-
msgstr "Середний"
|
154 |
-
|
155 |
-
#: /wp-contact-form-7.php:466
|
156 |
-
msgid "Large"
|
157 |
-
msgstr "Великий"
|
158 |
-
|
159 |
-
#: /wp-contact-form-7.php:467
|
160 |
-
msgid "Image settings"
|
161 |
-
msgstr "Налаштування зображення"
|
162 |
-
|
163 |
-
#: /wp-contact-form-7.php:468
|
164 |
-
msgid "Input field settings"
|
165 |
-
msgstr "Налаштування полів вводу"
|
166 |
-
|
167 |
-
#: /wp-contact-form-7.php:469
|
168 |
-
msgid "For image"
|
169 |
-
msgstr "Для зображення"
|
170 |
-
|
171 |
-
#: /wp-contact-form-7.php:470
|
172 |
-
msgid "For input field"
|
173 |
-
msgstr "Для поля введення"
|
174 |
-
|
175 |
-
#: /wp-contact-form-7.php:471
|
176 |
-
msgid "* One choice per line."
|
177 |
-
msgstr "* по одній в рядку."
|
178 |
-
|
179 |
-
#: /wp-contact-form-7.php:498
|
180 |
-
msgid "Contact form created."
|
181 |
-
msgstr "Форму \"%s\" створено."
|
182 |
-
|
183 |
-
#: /wp-contact-form-7.php:501
|
184 |
-
msgid "Contact form saved."
|
185 |
-
msgstr "Форму \"%s\" збережено."
|
186 |
-
|
187 |
-
#: /wp-contact-form-7.php:504
|
188 |
-
msgid "Contact form deleted."
|
189 |
-
msgstr "Форму \"%s\" видалено."
|
190 |
-
|
191 |
-
#: /wp-contact-form-7.php:511
|
192 |
-
msgid "Untitled"
|
193 |
-
msgstr "Без назви"
|
194 |
-
|
195 |
-
#: /wp-contact-form-7.php:537
|
196 |
-
msgid "Your Name"
|
197 |
-
msgstr "Ваше им'я"
|
198 |
-
|
199 |
-
#: /wp-contact-form-7.php:537
|
200 |
-
#: /wp-contact-form-7.php:539
|
201 |
-
msgid "(required)"
|
202 |
-
msgstr "(обов'язково)"
|
203 |
-
|
204 |
-
#: /wp-contact-form-7.php:539
|
205 |
-
msgid "Your Email"
|
206 |
-
msgstr "Ваш email"
|
207 |
-
|
208 |
-
#: /wp-contact-form-7.php:541
|
209 |
-
msgid "Subject"
|
210 |
-
msgstr "Тема"
|
211 |
-
|
212 |
-
#: /wp-contact-form-7.php:543
|
213 |
-
msgid "Your Message"
|
214 |
-
msgstr "Повідомлення"
|
215 |
-
|
216 |
-
#: /wp-contact-form-7.php:545
|
217 |
-
#: /wp-contact-form-7.php:1071
|
218 |
-
msgid "Send"
|
219 |
-
msgstr "Відправити"
|
220 |
-
|
221 |
-
#: /wp-contact-form-7.php:574
|
222 |
-
msgid "Your message was sent successfully. Thanks."
|
223 |
-
msgstr "Дякуємо! Ваше повідомлення відправлено."
|
224 |
-
|
225 |
-
#: /wp-contact-form-7.php:576
|
226 |
-
msgid "Failed to send your message. Please try later or contact administrator by other way."
|
227 |
-
msgstr "Помилка! Будь ласка спробуйте ще раз. Якщо помилка залишається, будь ласка, зв'яжіться з нами іншім шляхом. "
|
228 |
-
|
229 |
-
#: /wp-contact-form-7.php:578
|
230 |
-
msgid "Validation errors occurred. Please confirm the fields and submit it again."
|
231 |
-
msgstr "Помилка при заповненні. Зверніть увагу на необхідні поля і відправте ще раз."
|
232 |
-
|
233 |
-
#: /wp-contact-form-7.php:580
|
234 |
-
msgid "Please accept the terms to proceed."
|
235 |
-
msgstr "Відмітьте, якщо необхідно."
|
236 |
-
|
237 |
-
#: /wp-contact-form-7.php:582
|
238 |
-
msgid "Email address seems invalid."
|
239 |
-
msgstr "Еmail адресу вказано невірно."
|
240 |
-
|
241 |
-
#: /wp-contact-form-7.php:584
|
242 |
-
msgid "Please fill the required field."
|
243 |
-
msgstr "Будь ласка, заповніть всі необхідні поля."
|
244 |
-
|
245 |
-
#: /wp-contact-form-7.php:586
|
246 |
-
msgid "Your entered code is incorrect."
|
247 |
-
msgstr "Введено невірний контрольний код."
|
248 |
-
|
249 |
-
#: /includes/admin-panel.php:16
|
250 |
-
msgid "Add new"
|
251 |
-
msgstr "Додати нову"
|
252 |
-
|
253 |
-
#: /includes/admin-panel.php:32
|
254 |
-
msgid "Copy and paste this code into your post content."
|
255 |
-
msgstr "Зкопіюйте і вставте цей код в Вашу сторінку."
|
256 |
-
|
257 |
-
#: /includes/admin-panel.php:38
|
258 |
-
msgid "Form"
|
259 |
-
msgstr "Форма"
|
260 |
-
|
261 |
-
#: /includes/admin-panel.php:42
|
262 |
-
msgid "Mail"
|
263 |
-
msgstr "Пошта"
|
264 |
-
|
265 |
-
#: /includes/admin-panel.php:44
|
266 |
-
#: /includes/admin-panel.php:65
|
267 |
-
msgid "To:"
|
268 |
-
msgstr "Кому:"
|
269 |
-
|
270 |
-
#: /includes/admin-panel.php:48
|
271 |
-
#: /includes/admin-panel.php:69
|
272 |
-
msgid "From:"
|
273 |
-
msgstr "Від:"
|
274 |
-
|
275 |
-
#: /includes/admin-panel.php:52
|
276 |
-
#: /includes/admin-panel.php:73
|
277 |
-
msgid "Subject:"
|
278 |
-
msgstr "Тема:"
|
279 |
-
|
280 |
-
#: /includes/admin-panel.php:56
|
281 |
-
#: /includes/admin-panel.php:77
|
282 |
-
msgid "Message body:"
|
283 |
-
msgstr "Текст повідомлення:"
|
284 |
-
|
285 |
-
#: /includes/admin-panel.php:61
|
286 |
-
msgid "Mail (2)"
|
287 |
-
msgstr "Пошта (2)"
|
288 |
-
|
289 |
-
#: /includes/admin-panel.php:63
|
290 |
-
msgid "Use mail (2)"
|
291 |
-
msgstr "Відправляти на пошту (2)"
|
292 |
-
|
293 |
-
#: /includes/admin-panel.php:85
|
294 |
-
msgid "Save"
|
295 |
-
msgstr "Зберегти"
|
296 |
-
|
297 |
-
#: /includes/admin-panel.php:92
|
298 |
-
msgid "Delete this contact form"
|
299 |
-
msgstr "Видалити цю форму"
|
300 |
-
|
301 |
-
#: /includes/admin-panel.php:93
|
302 |
-
msgid ""
|
303 |
-
"You are about to delete this contact form.\n"
|
304 |
-
" 'Cancel' to stop, 'OK' to delete."
|
305 |
-
msgstr ""
|
306 |
-
"Видалити цю форму?.\n"
|
307 |
-
" 'Cancel' - залишити, 'OK' - видалити."
|
308 |
-
|
309 |
-
#~ msgid "Form content"
|
310 |
-
#~ msgstr "Зміст форми"
|
311 |
-
#~ msgid "Mail template"
|
312 |
-
#~ msgstr "Шаблон листа"
|
313 |
-
#~ msgid "Sender field:"
|
314 |
-
#~ msgstr "Адреса відправника:"
|
315 |
-
#~ msgid "Recipient address:"
|
316 |
-
#~ msgstr "Адреса отримувача:"
|
317 |
-
#~ msgid "Check this field as sender's name"
|
318 |
-
#~ msgstr "Перевіряти це поле як им'я відправника"
|
319 |
-
#~ msgid "Check this field as sender's email"
|
320 |
-
#~ msgstr "Перевіряти це поле як e-mail"
|
321 |
-
#~ msgid "Check this field as sender's URL"
|
322 |
-
#~ msgstr "Перевіряти це поле як URL"
|
323 |
-
#~ msgid "Don't check this field with Akismet"
|
324 |
-
#~ msgstr "Перевіряти це поле за допомогою Akismet"
|
325 |
-
#~ msgid "Insert"
|
326 |
-
#~ msgstr "Вставити"
|
327 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
modules/response.php
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
** A base module for [response]
|
4 |
+
**/
|
5 |
+
|
6 |
+
/* Shortcode handler */
|
7 |
+
|
8 |
+
wpcf7_add_shortcode( 'response', 'wpcf7_response_shortcode_handler' );
|
9 |
+
|
10 |
+
function wpcf7_response_shortcode_handler( $tag ) {
|
11 |
+
global $wpcf7_contact_form;
|
12 |
+
|
13 |
+
$wpcf7_contact_form->responses_count += 1;
|
14 |
+
return $wpcf7_contact_form->form_response_output();
|
15 |
+
}
|
16 |
+
|
17 |
+
?>
|
modules/submit.php
CHANGED
@@ -49,8 +49,10 @@ function wpcf7_submit_shortcode_handler( $tag ) {
|
|
49 |
|
50 |
$html = '<input type="submit" value="' . esc_attr( $value ) . '"' . $atts . ' />';
|
51 |
|
52 |
-
if ( wpcf7_script_is() )
|
53 |
-
$
|
|
|
|
|
54 |
|
55 |
return $html;
|
56 |
}
|
49 |
|
50 |
$html = '<input type="submit" value="' . esc_attr( $value ) . '"' . $atts . ' />';
|
51 |
|
52 |
+
if ( wpcf7_script_is() ) {
|
53 |
+
$src = apply_filters( 'wpcf7_ajax_loader', wpcf7_plugin_url( 'images/ajax-loader.gif' ) );
|
54 |
+
$html .= '<img class="ajax-loader" style="visibility: hidden;" alt="' . esc_attr( __( 'Sending ...', 'wpcf7' ) ) . '" src="' . esc_url_raw( $src ) . '" />';
|
55 |
+
}
|
56 |
|
57 |
return $html;
|
58 |
}
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: takayukister
|
|
3 |
Donate link: http://contactform7.com/donate/
|
4 |
Tags: contact, form, contact form, feedback, email, ajax, captcha, akismet, multilingual
|
5 |
Requires at least: 2.9
|
6 |
-
Tested up to: 3.0
|
7 |
-
Stable tag: 2.3
|
8 |
|
9 |
Just another contact form plugin. Simple but flexible.
|
10 |
|
@@ -29,7 +29,7 @@ It is hard to continue development and support for this plugin without contribut
|
|
29 |
* Arabic (ar) - [Tarek Chaaban](http://www.chaaban.info/), Muhammed Lardi
|
30 |
* Bangla (bn_BD) - [SM Mehdi Akram](http://www.shamokaldarpon.com/)
|
31 |
* Bosnian (bs) - [Vedran](http://www.seorabbit.com/)
|
32 |
-
* Brazilian Portuguese (pt_BR) - [Leonardo Pinheiro](http://www.eletrikabarbarella.com.br/), [Henrique Vianna](http://henriquevianna.com/), [Caciano Gabriel Batista](http://www.gn10.com.br/)
|
33 |
* Bulgarian (bg_BG) - [Iliyan Darganov](http://www.darganov.com/)
|
34 |
* Catalan (ca) - [Jordi Sancho](http://www.qasolutions.net/blog), Robert Buj
|
35 |
* Chinese, Simplified (zh_CN) - [Soz](http://www.webtoolol.com/)
|
@@ -61,14 +61,14 @@ It is hard to continue development and support for this plugin without contribut
|
|
61 |
* Portuguese (pt_PT) - [Hugo Baeta](http://hugobaeta.com)
|
62 |
* Russian (ru_RU) - [Dmitry Volotovich](http://www.volnov.com)
|
63 |
* Romanian (ro_RO) - [Stas Sushkov](http://stas.nerd.ro/)
|
64 |
-
* Serbian (sr_RS) - [Vedran](http://www.seorabbit.com/)
|
65 |
* Slovak (sk) - [Patrik Bóna](http://www.mrhead.sk/)
|
66 |
* Slovene (sl_SI) - [Mihael Simonič](http://smihael.bplaced.net)
|
67 |
* Spanish (es_ES) - [Jordi Sancho](http://www.qasolutions.net/blog), [Vladimir Prieto](http://vladimir.prie.to/), [Federico Mikaelian](http://www.fedemika.com.ar/), [Matias Baldanza](http://matiasbaldanza.com/)
|
68 |
* Swedish (sv_SE) - [Fredrik Jonsson](http://www.fredda-o-ac.se/), [the Swedish community](http://wp-support.se/)
|
69 |
* Thai (th) - [kazama](http://blog.wordthai.com/)
|
70 |
* Turkish (tr_TR) - [Roman Neumuller](http://katpatuka.wordpress.com), [Hasan Yılmaz](http://hedefturkce.com/), [Emin Buğra Saral](http://www.rahmetli.info/)
|
71 |
-
* Ukrainian (
|
72 |
* Vietnamese (vi) - Thanh Hải, Hà
|
73 |
|
74 |
If you have created your own language pack, or have an update of an existing one, you can send [gettext PO and MO files](http://codex.wordpress.org/Translating_WordPress) to [me](http://ideasilo.wordpress.com/about/) so that I can bundle it into Contact Form 7. You can [download the latest POT file from here](http://plugins.svn.wordpress.org/contact-form-7/trunk/languages/wpcf7.pot).
|
@@ -99,6 +99,16 @@ Do you have questions or issues with Contact Form 7? Use these support channels
|
|
99 |
|
100 |
== Changelog ==
|
101 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
102 |
= 2.3 =
|
103 |
|
104 |
* The required WordPress version has been changed and now requires WordPress 2.9 or higher. If you use WordPress 2.8, you will need to upgrade WordPress.
|
3 |
Donate link: http://contactform7.com/donate/
|
4 |
Tags: contact, form, contact form, feedback, email, ajax, captcha, akismet, multilingual
|
5 |
Requires at least: 2.9
|
6 |
+
Tested up to: 3.0.1
|
7 |
+
Stable tag: 2.3.1
|
8 |
|
9 |
Just another contact form plugin. Simple but flexible.
|
10 |
|
29 |
* Arabic (ar) - [Tarek Chaaban](http://www.chaaban.info/), Muhammed Lardi
|
30 |
* Bangla (bn_BD) - [SM Mehdi Akram](http://www.shamokaldarpon.com/)
|
31 |
* Bosnian (bs) - [Vedran](http://www.seorabbit.com/)
|
32 |
+
* Brazilian Portuguese (pt_BR) - [Leonardo Pinheiro](http://www.eletrikabarbarella.com.br/), [Henrique Vianna](http://henriquevianna.com/), [Caciano Gabriel Batista](http://www.gn10.com.br/), [Gervásio Antônio](http://twitter.com/gervasioantonio)
|
33 |
* Bulgarian (bg_BG) - [Iliyan Darganov](http://www.darganov.com/)
|
34 |
* Catalan (ca) - [Jordi Sancho](http://www.qasolutions.net/blog), Robert Buj
|
35 |
* Chinese, Simplified (zh_CN) - [Soz](http://www.webtoolol.com/)
|
61 |
* Portuguese (pt_PT) - [Hugo Baeta](http://hugobaeta.com)
|
62 |
* Russian (ru_RU) - [Dmitry Volotovich](http://www.volnov.com)
|
63 |
* Romanian (ro_RO) - [Stas Sushkov](http://stas.nerd.ro/)
|
64 |
+
* Serbian (sr_RS) - [Vedran](http://www.seorabbit.com/), [Aleksandar Urošević](http://blog.urosevic.net/)
|
65 |
* Slovak (sk) - [Patrik Bóna](http://www.mrhead.sk/)
|
66 |
* Slovene (sl_SI) - [Mihael Simonič](http://smihael.bplaced.net)
|
67 |
* Spanish (es_ES) - [Jordi Sancho](http://www.qasolutions.net/blog), [Vladimir Prieto](http://vladimir.prie.to/), [Federico Mikaelian](http://www.fedemika.com.ar/), [Matias Baldanza](http://matiasbaldanza.com/)
|
68 |
* Swedish (sv_SE) - [Fredrik Jonsson](http://www.fredda-o-ac.se/), [the Swedish community](http://wp-support.se/)
|
69 |
* Thai (th) - [kazama](http://blog.wordthai.com/)
|
70 |
* Turkish (tr_TR) - [Roman Neumuller](http://katpatuka.wordpress.com), [Hasan Yılmaz](http://hedefturkce.com/), [Emin Buğra Saral](http://www.rahmetli.info/)
|
71 |
+
* Ukrainian (uk) - [Andrey Kovba](http://myserver.com.ua/), [Ukrainian WordPress localization team](http://wordpress.co.ua/plugins/contact-form-7.html)
|
72 |
* Vietnamese (vi) - Thanh Hải, Hà
|
73 |
|
74 |
If you have created your own language pack, or have an update of an existing one, you can send [gettext PO and MO files](http://codex.wordpress.org/Translating_WordPress) to [me](http://ideasilo.wordpress.com/about/) so that I can bundle it into Contact Form 7. You can [download the latest POT file from here](http://plugins.svn.wordpress.org/contact-form-7/trunk/languages/wpcf7.pot).
|
99 |
|
100 |
== Changelog ==
|
101 |
|
102 |
+
= 2.3.1 =
|
103 |
+
|
104 |
+
* Fixed: wrongly applying 'autop' filter to message body of HTML-formatted mail.
|
105 |
+
* Fixed: possible cause of some Ajax-related troubles.
|
106 |
+
* Fixed: wrong HTML format of the result of [response] tag.
|
107 |
+
* Fixed: rewrote a few codes for avoiding warnings.
|
108 |
+
* Fixed: wrongly applying 'autop' filter to <textarea> contents.
|
109 |
+
* You can customize ajax loader image with new wpcf7_ajax_loader filter.
|
110 |
+
* Translations for Ukrainian (Ukrainian WordPress localization team), Brazilian Portuguese (Gervásio Antônio) and Serbian (Aleksandar Urošević) have been updated.
|
111 |
+
|
112 |
= 2.3 =
|
113 |
|
114 |
* The required WordPress version has been changed and now requires WordPress 2.9 or higher. If you use WordPress 2.8, you will need to upgrade WordPress.
|
styles.css
CHANGED
@@ -54,7 +54,8 @@ span.wpcf7-list-item {
|
|
54 |
display: none;
|
55 |
}
|
56 |
|
57 |
-
img.ajax-loader {
|
58 |
border: none;
|
59 |
vertical-align: middle;
|
|
|
60 |
}
|
54 |
display: none;
|
55 |
}
|
56 |
|
57 |
+
div.wpcf7 img.ajax-loader {
|
58 |
border: none;
|
59 |
vertical-align: middle;
|
60 |
+
margin-left: 4px;
|
61 |
}
|
wp-contact-form-7.php
CHANGED
@@ -5,7 +5,7 @@ Plugin URI: http://contactform7.com/
|
|
5 |
Description: Just another contact form plugin. Simple but flexible.
|
6 |
Author: Takayuki Miyoshi
|
7 |
Author URI: http://ideasilo.wordpress.com/
|
8 |
-
Version: 2.3
|
9 |
*/
|
10 |
|
11 |
/* Copyright 2007-2010 Takayuki Miyoshi (email: takayukister at gmail.com)
|
@@ -25,7 +25,7 @@ Version: 2.3
|
|
25 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
26 |
*/
|
27 |
|
28 |
-
define( 'WPCF7_VERSION', '2.3' );
|
29 |
|
30 |
if ( ! defined( 'WPCF7_PLUGIN_BASENAME' ) )
|
31 |
define( 'WPCF7_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|
5 |
Description: Just another contact form plugin. Simple but flexible.
|
6 |
Author: Takayuki Miyoshi
|
7 |
Author URI: http://ideasilo.wordpress.com/
|
8 |
+
Version: 2.3.1
|
9 |
*/
|
10 |
|
11 |
/* Copyright 2007-2010 Takayuki Miyoshi (email: takayukister at gmail.com)
|
25 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
26 |
*/
|
27 |
|
28 |
+
define( 'WPCF7_VERSION', '2.3.1' );
|
29 |
|
30 |
if ( ! defined( 'WPCF7_PLUGIN_BASENAME' ) )
|
31 |
define( 'WPCF7_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
|