Version Description
- 24.07.2012 =
- NEW : Japanese language file is added to the plugin.
- Bugfix : Cross Site Request Forgery bug was fixed.
Download this release
Release Info
Developer | bestwebsoft |
Plugin | Contact Form by BestWebSoft |
Version | 3.22 |
Comparing to | |
See all releases |
Code changes from version 3.20 to 3.22
- contact_form.php +7 -4
- css/style.css +0 -0
- languages/contact_form-ar.mo +0 -0
- languages/contact_form-ar.po +28 -28
- languages/contact_form-bg_BG.mo +0 -0
- languages/contact_form-bg_BG.po +28 -28
- languages/contact_form-da_DK.mo +0 -0
- languages/contact_form-da_DK.po +28 -28
- languages/contact_form-de_DE.mo +0 -0
- languages/contact_form-de_DE.po +28 -28
- languages/contact_form-el_GR.mo +0 -0
- languages/contact_form-el_GR.po +28 -28
- languages/contact_form-es_ES.mo +0 -0
- languages/contact_form-es_ES.po +28 -28
- languages/contact_form-fr_FR.mo +0 -0
- languages/contact_form-fr_FR.po +181 -1130
- languages/contact_form-he_IL.mo +0 -0
- languages/contact_form-he_IL.po +409 -0
- languages/contact_form-hi_IN.mo +0 -0
- languages/contact_form-hi_IN.po +28 -28
- languages/contact_form-it_IT.mo +0 -0
- languages/contact_form-it_IT.po +28 -28
- languages/contact_form-ja.mo +0 -0
- languages/contact_form-ja.po +349 -0
- languages/contact_form-lt_LT.mo +0 -0
- languages/contact_form-lt_LT.po +28 -28
- languages/contact_form-nb_NO.mo +0 -0
- languages/contact_form-nb_NO.po +28 -28
- languages/contact_form-nl_NL.mo +0 -0
- languages/contact_form-nl_NL.po +28 -28
- languages/contact_form-pl_PL.mo +0 -0
- languages/contact_form-pl_PL.po +28 -28
- languages/contact_form-pt_BR.mo +0 -0
- languages/contact_form-pt_BR.po +28 -28
- languages/contact_form-pt_PT.mo +0 -0
- languages/contact_form-pt_PT.po +28 -28
- languages/contact_form-ru_RU.mo +0 -0
- languages/contact_form-ru_RU.po +28 -28
- languages/contact_form-sv_SE.mo +0 -0
- languages/contact_form-sv_SE.po +28 -28
- languages/contact_form-tr_TR.mo +0 -0
- languages/contact_form-tr_TR.po +28 -28
- readme.txt +20 -2
- screenshot-4.jpg +0 -0
contact_form.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Contact Form Plugin
|
|
4 |
Plugin URI: http://bestwebsoft.com/plugin/
|
5 |
Description: Plugin for Contact Form.
|
6 |
Author: BestWebSoft
|
7 |
-
Version: 3.
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
@@ -160,7 +160,7 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
160 |
|
161 |
$error = "";
|
162 |
// Save data for settings page
|
163 |
-
if( isset( $_REQUEST['cntctfrm_form_submit'] ) ) {
|
164 |
$cntctfrm_options_submit['cntctfrm_user_email'] = $_REQUEST['cntctfrm_user_email'];
|
165 |
$cntctfrm_options_submit['cntctfrm_custom_email'] = $_REQUEST['cntctfrm_custom_email'];
|
166 |
$cntctfrm_options_submit['cntctfrm_select_email'] = $_REQUEST['cntctfrm_select_email'];
|
@@ -383,6 +383,7 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
|
|
383 |
<p class="submit">
|
384 |
<input type="submit" class="button-primary" value="<?php _e('Save Changes') ?>" />
|
385 |
</p>
|
|
|
386 |
</form>
|
387 |
</div>
|
388 |
<?php
|
@@ -401,6 +402,8 @@ if( ! function_exists( 'cntctfrm_display_form' ) ) {
|
|
401 |
$name = isset( $_REQUEST['cntctfrm_contact_name'] ) ? $_REQUEST['cntctfrm_contact_name'] : "";
|
402 |
$email = isset( $_REQUEST['cntctfrm_contact_email'] ) ? $_REQUEST['cntctfrm_contact_email'] : "";
|
403 |
$subject = isset( $_REQUEST['cntctfrm_contact_subject'] ) ? $_REQUEST['cntctfrm_contact_subject'] : "";
|
|
|
|
|
404 |
$message = isset( $_REQUEST['cntctfrm_contact_message'] ) ? $_REQUEST['cntctfrm_contact_message'] : "";
|
405 |
$send_copy = isset( $_REQUEST['cntctfrm_contact_send_copy'] ) ? $_REQUEST['cntctfrm_contact_send_copy'] : "";
|
406 |
// If it is good
|
@@ -484,7 +487,7 @@ if( ! function_exists( 'cntctfrm_display_form' ) ) {
|
|
484 |
</div>';
|
485 |
}
|
486 |
|
487 |
-
if(has_filter('cntctfrm_display_captcha')) {
|
488 |
$content .= apply_filters( 'cntctfrm_display_captcha' , $error_message );
|
489 |
}
|
490 |
|
@@ -675,7 +678,7 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
|
|
675 |
}
|
676 |
if( $cntctfrm_options['cntctfrm_display_date_time'] == 1) {
|
677 |
$user_info_string .= '<tr>
|
678 |
-
<td>'.__('Date/Time', 'contact_form').':</td><td>'.date_i18n( get_option( 'date_format' ).' '.get_option( 'time_format' ),
|
679 |
</tr>';
|
680 |
}
|
681 |
if( $cntctfrm_options['cntctfrm_display_coming_from'] == 1) {
|
4 |
Plugin URI: http://bestwebsoft.com/plugin/
|
5 |
Description: Plugin for Contact Form.
|
6 |
Author: BestWebSoft
|
7 |
+
Version: 3.22
|
8 |
Author URI: http://bestwebsoft.com/
|
9 |
License: GPLv2 or later
|
10 |
*/
|
160 |
|
161 |
$error = "";
|
162 |
// Save data for settings page
|
163 |
+
if( isset( $_REQUEST['cntctfrm_form_submit'] ) && check_admin_referer( plugin_basename(__FILE__), 'cntctfrm_nonce_name' ) ) {
|
164 |
$cntctfrm_options_submit['cntctfrm_user_email'] = $_REQUEST['cntctfrm_user_email'];
|
165 |
$cntctfrm_options_submit['cntctfrm_custom_email'] = $_REQUEST['cntctfrm_custom_email'];
|
166 |
$cntctfrm_options_submit['cntctfrm_select_email'] = $_REQUEST['cntctfrm_select_email'];
|
383 |
<p class="submit">
|
384 |
<input type="submit" class="button-primary" value="<?php _e('Save Changes') ?>" />
|
385 |
</p>
|
386 |
+
<?php wp_nonce_field( plugin_basename(__FILE__), 'cntctfrm_nonce_name' ); ?>
|
387 |
</form>
|
388 |
</div>
|
389 |
<?php
|
402 |
$name = isset( $_REQUEST['cntctfrm_contact_name'] ) ? $_REQUEST['cntctfrm_contact_name'] : "";
|
403 |
$email = isset( $_REQUEST['cntctfrm_contact_email'] ) ? $_REQUEST['cntctfrm_contact_email'] : "";
|
404 |
$subject = isset( $_REQUEST['cntctfrm_contact_subject'] ) ? $_REQUEST['cntctfrm_contact_subject'] : "";
|
405 |
+
$name = strip_tags( $name );
|
406 |
+
$subject = strip_tags( $subject );
|
407 |
$message = isset( $_REQUEST['cntctfrm_contact_message'] ) ? $_REQUEST['cntctfrm_contact_message'] : "";
|
408 |
$send_copy = isset( $_REQUEST['cntctfrm_contact_send_copy'] ) ? $_REQUEST['cntctfrm_contact_send_copy'] : "";
|
409 |
// If it is good
|
487 |
</div>';
|
488 |
}
|
489 |
|
490 |
+
if( has_filter( 'cntctfrm_display_captcha' ) ) {
|
491 |
$content .= apply_filters( 'cntctfrm_display_captcha' , $error_message );
|
492 |
}
|
493 |
|
678 |
}
|
679 |
if( $cntctfrm_options['cntctfrm_display_date_time'] == 1) {
|
680 |
$user_info_string .= '<tr>
|
681 |
+
<td>'.__('Date/Time', 'contact_form').':</td><td>'.date_i18n( get_option( 'date_format' ).' '.get_option( 'time_format' ), strtotime( current_time( 'mysql' ) ) ).'</td>
|
682 |
</tr>';
|
683 |
}
|
684 |
if( $cntctfrm_options['cntctfrm_display_coming_from'] == 1) {
|
css/style.css
CHANGED
File without changes
|
languages/contact_form-ar.mo
CHANGED
Binary file
|
languages/contact_form-ar.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Hammad Alshammari (ABU HATIM) www.abuhatim.net <al3zz.com@gmail.com>\n"
|
9 |
"Language: \n"
|
@@ -28,8 +28,8 @@ msgid "Read more"
|
|
28 |
msgstr "اقرأ المزيد"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
-
#: contact_form.php:
|
32 |
-
#: contact_form.php:
|
33 |
msgid "Settings"
|
34 |
msgstr "إعدادات"
|
35 |
|
@@ -206,22 +206,22 @@ msgid "Display additional info in email"
|
|
206 |
msgstr "عرض معلومات اضافية في البريد الالكتروني"
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
-
#: contact_form.php:
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "ارسلت من (عنوان IP)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
-
#: contact_form.php:
|
215 |
msgid "Date/Time"
|
216 |
msgstr "الوقت/التاريخ"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
-
#: contact_form.php:
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "Coming from (referer)"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
-
#: contact_form.php:
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "باستخدام (وكيل المستخدم)"
|
227 |
|
@@ -254,83 +254,83 @@ msgstr ""
|
|
254 |
msgid "Save Changes"
|
255 |
msgstr "حفظ التغييرات"
|
256 |
|
257 |
-
#: contact_form.php:
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "عذراً, لم نستطيع تسليم رسالتك."
|
260 |
|
261 |
-
#: contact_form.php:
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "يمكنك إرفاق الملفات من الأنواع التالية"
|
264 |
|
265 |
-
#: contact_form.php:
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "أرسل لي نسخة"
|
268 |
|
269 |
-
#: contact_form.php:
|
270 |
msgid "Submit"
|
271 |
msgstr "تقدم"
|
272 |
|
273 |
-
#: contact_form.php:
|
274 |
msgid "Your name is required."
|
275 |
msgstr "مطلوب اسمك."
|
276 |
|
277 |
-
#: contact_form.php:
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "مطلوب بريد الكتروني صحيح."
|
280 |
|
281 |
-
#: contact_form.php:
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "مطلوب نص الموضوع."
|
284 |
|
285 |
-
#: contact_form.php:
|
286 |
msgid "Message text is required."
|
287 |
msgstr "مطلوب نص الرسالة."
|
288 |
|
289 |
-
#: contact_form.php:
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "يرجى إجراء التصحيحات أدناه وحاول مرة أخرى."
|
292 |
|
293 |
-
#: contact_form.php:
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "المرفق تعطل."
|
296 |
|
297 |
-
#: contact_form.php:
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "يرجى استكمال رمز التحقق."
|
300 |
|
301 |
-
#: contact_form.php:
|
302 |
msgid "Contact from"
|
303 |
msgstr "اتصل من"
|
304 |
|
305 |
-
#: contact_form.php:
|
306 |
msgid "Name"
|
307 |
msgstr "الأسم"
|
308 |
|
309 |
-
#: contact_form.php:
|
310 |
msgid "Email"
|
311 |
msgstr "البريد الألكتروني"
|
312 |
|
313 |
-
#: contact_form.php:
|
314 |
msgid "Subject"
|
315 |
msgstr "موضوع الرسالة"
|
316 |
|
317 |
-
#: contact_form.php:
|
318 |
msgid "Message"
|
319 |
msgstr "الرسالة"
|
320 |
|
321 |
-
#: contact_form.php:
|
322 |
msgid "Site"
|
323 |
msgstr "الموقع"
|
324 |
|
325 |
-
#: contact_form.php:
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "إذا يمكنك أن ترى هذه MIME من العميل الخاص بك لا يقبل أنواع MIME!"
|
328 |
|
329 |
-
#: contact_form.php:
|
330 |
msgid "FAQ"
|
331 |
msgstr "أسئلة وأجوبة"
|
332 |
|
333 |
-
#: contact_form.php:
|
334 |
msgid "Support"
|
335 |
msgstr "دعم"
|
336 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:10+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:10+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Hammad Alshammari (ABU HATIM) www.abuhatim.net <al3zz.com@gmail.com>\n"
|
9 |
"Language: \n"
|
28 |
msgstr "اقرأ المزيد"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
+
#: contact_form.php:805
|
32 |
+
#: contact_form.php:814
|
33 |
msgid "Settings"
|
34 |
msgstr "إعدادات"
|
35 |
|
206 |
msgstr "عرض معلومات اضافية في البريد الالكتروني"
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
+
#: contact_form.php:676
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "ارسلت من (عنوان IP)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
+
#: contact_form.php:681
|
215 |
msgid "Date/Time"
|
216 |
msgstr "الوقت/التاريخ"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
+
#: contact_form.php:686
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "Coming from (referer)"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
+
#: contact_form.php:691
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "باستخدام (وكيل المستخدم)"
|
227 |
|
254 |
msgid "Save Changes"
|
255 |
msgstr "حفظ التغييرات"
|
256 |
|
257 |
+
#: contact_form.php:420
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "عذراً, لم نستطيع تسليم رسالتك."
|
260 |
|
261 |
+
#: contact_form.php:478
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "يمكنك إرفاق الملفات من الأنواع التالية"
|
264 |
|
265 |
+
#: contact_form.php:486
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "أرسل لي نسخة"
|
268 |
|
269 |
+
#: contact_form.php:496
|
270 |
msgid "Submit"
|
271 |
msgstr "تقدم"
|
272 |
|
273 |
+
#: contact_form.php:535
|
274 |
msgid "Your name is required."
|
275 |
msgstr "مطلوب اسمك."
|
276 |
|
277 |
+
#: contact_form.php:536
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "مطلوب بريد الكتروني صحيح."
|
280 |
|
281 |
+
#: contact_form.php:537
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "مطلوب نص الموضوع."
|
284 |
|
285 |
+
#: contact_form.php:538
|
286 |
msgid "Message text is required."
|
287 |
msgstr "مطلوب نص الرسالة."
|
288 |
|
289 |
+
#: contact_form.php:539
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "يرجى إجراء التصحيحات أدناه وحاول مرة أخرى."
|
292 |
|
293 |
+
#: contact_form.php:570
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "المرفق تعطل."
|
296 |
|
297 |
+
#: contact_form.php:583
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "يرجى استكمال رمز التحقق."
|
300 |
|
301 |
+
#: contact_form.php:699
|
302 |
msgid "Contact from"
|
303 |
msgstr "اتصل من"
|
304 |
|
305 |
+
#: contact_form.php:704
|
306 |
msgid "Name"
|
307 |
msgstr "الأسم"
|
308 |
|
309 |
+
#: contact_form.php:707
|
310 |
msgid "Email"
|
311 |
msgstr "البريد الألكتروني"
|
312 |
|
313 |
+
#: contact_form.php:710
|
314 |
msgid "Subject"
|
315 |
msgstr "موضوع الرسالة"
|
316 |
|
317 |
+
#: contact_form.php:713
|
318 |
msgid "Message"
|
319 |
msgstr "الرسالة"
|
320 |
|
321 |
+
#: contact_form.php:716
|
322 |
msgid "Site"
|
323 |
msgstr "الموقع"
|
324 |
|
325 |
+
#: contact_form.php:761
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "إذا يمكنك أن ترى هذه MIME من العميل الخاص بك لا يقبل أنواع MIME!"
|
328 |
|
329 |
+
#: contact_form.php:815
|
330 |
msgid "FAQ"
|
331 |
msgstr "أسئلة وأجوبة"
|
332 |
|
333 |
+
#: contact_form.php:816
|
334 |
msgid "Support"
|
335 |
msgstr "دعم"
|
336 |
|
languages/contact_form-bg_BG.mo
CHANGED
Binary file
|
languages/contact_form-bg_BG.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"Language: \n"
|
@@ -28,8 +28,8 @@ msgid "Read more"
|
|
28 |
msgstr "Прочетете повече"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
-
#: contact_form.php:
|
32 |
-
#: contact_form.php:
|
33 |
msgid "Settings"
|
34 |
msgstr "Настройки"
|
35 |
|
@@ -206,22 +206,22 @@ msgid "Display additional info in email"
|
|
206 |
msgstr ""
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
-
#: contact_form.php:
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "Изпратено от (ip адрес)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
-
#: contact_form.php:
|
215 |
msgid "Date/Time"
|
216 |
msgstr "Дата/Час"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
-
#: contact_form.php:
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "Идва от (referer)"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
-
#: contact_form.php:
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "Използвайки (user agent)"
|
227 |
|
@@ -254,83 +254,83 @@ msgstr ""
|
|
254 |
msgid "Save Changes"
|
255 |
msgstr "Запис на промените"
|
256 |
|
257 |
-
#: contact_form.php:
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "Съжаляваме, Вашето съобщение не може да бъде изпратено."
|
260 |
|
261 |
-
#: contact_form.php:
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "Можете да прикачвате файлове от следните типове"
|
264 |
|
265 |
-
#: contact_form.php:
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "Изпрати ми копие"
|
268 |
|
269 |
-
#: contact_form.php:
|
270 |
msgid "Submit"
|
271 |
msgstr "Изпрати"
|
272 |
|
273 |
-
#: contact_form.php:
|
274 |
msgid "Your name is required."
|
275 |
msgstr "Вашето име е задължително."
|
276 |
|
277 |
-
#: contact_form.php:
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "Правилният Email адрес е задължителен."
|
280 |
|
281 |
-
#: contact_form.php:
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "Заглавието е задължитено."
|
284 |
|
285 |
-
#: contact_form.php:
|
286 |
msgid "Message text is required."
|
287 |
msgstr "Текстовото съобщение е задължително."
|
288 |
|
289 |
-
#: contact_form.php:
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "Моля направете необходимите корекции по-долу и опитайте отново."
|
292 |
|
293 |
-
#: contact_form.php:
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "Прикаченият файл не се поддържа"
|
296 |
|
297 |
-
#: contact_form.php:
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "Моля попълнете CAPTCHA."
|
300 |
|
301 |
-
#: contact_form.php:
|
302 |
msgid "Contact from"
|
303 |
msgstr "Форма за контакт"
|
304 |
|
305 |
-
#: contact_form.php:
|
306 |
msgid "Name"
|
307 |
msgstr "Име"
|
308 |
|
309 |
-
#: contact_form.php:
|
310 |
msgid "Email"
|
311 |
msgstr "Email"
|
312 |
|
313 |
-
#: contact_form.php:
|
314 |
msgid "Subject"
|
315 |
msgstr "Относно"
|
316 |
|
317 |
-
#: contact_form.php:
|
318 |
msgid "Message"
|
319 |
msgstr "Съобщение"
|
320 |
|
321 |
-
#: contact_form.php:
|
322 |
msgid "Site"
|
323 |
msgstr "Сайт"
|
324 |
|
325 |
-
#: contact_form.php:
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "Ако видиждате това значи, че вашият MIME клиент за електронна поща не поддържа MIME тип!"
|
328 |
|
329 |
-
#: contact_form.php:
|
330 |
msgid "FAQ"
|
331 |
msgstr "FAQ"
|
332 |
|
333 |
-
#: contact_form.php:
|
334 |
msgid "Support"
|
335 |
msgstr "Поддръжка"
|
336 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:10+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:10+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"Language: \n"
|
28 |
msgstr "Прочетете повече"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
+
#: contact_form.php:805
|
32 |
+
#: contact_form.php:814
|
33 |
msgid "Settings"
|
34 |
msgstr "Настройки"
|
35 |
|
206 |
msgstr ""
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
+
#: contact_form.php:676
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "Изпратено от (ip адрес)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
+
#: contact_form.php:681
|
215 |
msgid "Date/Time"
|
216 |
msgstr "Дата/Час"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
+
#: contact_form.php:686
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "Идва от (referer)"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
+
#: contact_form.php:691
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "Използвайки (user agent)"
|
227 |
|
254 |
msgid "Save Changes"
|
255 |
msgstr "Запис на промените"
|
256 |
|
257 |
+
#: contact_form.php:420
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "Съжаляваме, Вашето съобщение не може да бъде изпратено."
|
260 |
|
261 |
+
#: contact_form.php:478
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "Можете да прикачвате файлове от следните типове"
|
264 |
|
265 |
+
#: contact_form.php:486
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "Изпрати ми копие"
|
268 |
|
269 |
+
#: contact_form.php:496
|
270 |
msgid "Submit"
|
271 |
msgstr "Изпрати"
|
272 |
|
273 |
+
#: contact_form.php:535
|
274 |
msgid "Your name is required."
|
275 |
msgstr "Вашето име е задължително."
|
276 |
|
277 |
+
#: contact_form.php:536
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "Правилният Email адрес е задължителен."
|
280 |
|
281 |
+
#: contact_form.php:537
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "Заглавието е задължитено."
|
284 |
|
285 |
+
#: contact_form.php:538
|
286 |
msgid "Message text is required."
|
287 |
msgstr "Текстовото съобщение е задължително."
|
288 |
|
289 |
+
#: contact_form.php:539
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "Моля направете необходимите корекции по-долу и опитайте отново."
|
292 |
|
293 |
+
#: contact_form.php:570
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "Прикаченият файл не се поддържа"
|
296 |
|
297 |
+
#: contact_form.php:583
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "Моля попълнете CAPTCHA."
|
300 |
|
301 |
+
#: contact_form.php:699
|
302 |
msgid "Contact from"
|
303 |
msgstr "Форма за контакт"
|
304 |
|
305 |
+
#: contact_form.php:704
|
306 |
msgid "Name"
|
307 |
msgstr "Име"
|
308 |
|
309 |
+
#: contact_form.php:707
|
310 |
msgid "Email"
|
311 |
msgstr "Email"
|
312 |
|
313 |
+
#: contact_form.php:710
|
314 |
msgid "Subject"
|
315 |
msgstr "Относно"
|
316 |
|
317 |
+
#: contact_form.php:713
|
318 |
msgid "Message"
|
319 |
msgstr "Съобщение"
|
320 |
|
321 |
+
#: contact_form.php:716
|
322 |
msgid "Site"
|
323 |
msgstr "Сайт"
|
324 |
|
325 |
+
#: contact_form.php:761
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "Ако видиждате това значи, че вашият MIME клиент за електронна поща не поддържа MIME тип!"
|
328 |
|
329 |
+
#: contact_form.php:815
|
330 |
msgid "FAQ"
|
331 |
msgstr "FAQ"
|
332 |
|
333 |
+
#: contact_form.php:816
|
334 |
msgid "Support"
|
335 |
msgstr "Поддръжка"
|
336 |
|
languages/contact_form-da_DK.mo
CHANGED
Binary file
|
languages/contact_form-da_DK.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Mads Hannibal <mh@shortcuts.dk>\n"
|
9 |
"Language: \n"
|
@@ -28,8 +28,8 @@ msgid "Read more"
|
|
28 |
msgstr "Læs mere"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
-
#: contact_form.php:
|
32 |
-
#: contact_form.php:
|
33 |
msgid "Settings"
|
34 |
msgstr "Indstillinger"
|
35 |
|
@@ -206,22 +206,22 @@ msgid "Display additional info in email"
|
|
206 |
msgstr "Vis yderligere information i e-mail"
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
-
#: contact_form.php:
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "Sendt fra (IP-adresse)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
-
#: contact_form.php:
|
215 |
msgid "Date/Time"
|
216 |
msgstr "Dato/klokkeslæt"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
-
#: contact_form.php:
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "Sendt fra (referent)"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
-
#: contact_form.php:
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "Med (user agent)"
|
227 |
|
@@ -254,83 +254,83 @@ msgstr ""
|
|
254 |
msgid "Save Changes"
|
255 |
msgstr "Gem ændringer"
|
256 |
|
257 |
-
#: contact_form.php:
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "Beklager, men din e-mail kunne ikke leveres."
|
260 |
|
261 |
-
#: contact_form.php:
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "Du kan vedhæfte filer af følgende typer"
|
264 |
|
265 |
-
#: contact_form.php:
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "Send mig en kopi"
|
268 |
|
269 |
-
#: contact_form.php:
|
270 |
msgid "Submit"
|
271 |
msgstr "Send"
|
272 |
|
273 |
-
#: contact_form.php:
|
274 |
msgid "Your name is required."
|
275 |
msgstr "Dit navn er obligatorisk"
|
276 |
|
277 |
-
#: contact_form.php:
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "En korrekt e-mail-adresse er påkrævet."
|
280 |
|
281 |
-
#: contact_form.php:
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "Emnefeltet er obligatorisk."
|
284 |
|
285 |
-
#: contact_form.php:
|
286 |
msgid "Message text is required."
|
287 |
msgstr "Du skal angive en besked"
|
288 |
|
289 |
-
#: contact_form.php:
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "Ret venligst nedenstående og prøv igen."
|
292 |
|
293 |
-
#: contact_form.php:
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "Bilaget er korrupt."
|
296 |
|
297 |
-
#: contact_form.php:
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "Venligst udfyld CAPTCHA-feltet."
|
300 |
|
301 |
-
#: contact_form.php:
|
302 |
msgid "Contact from"
|
303 |
msgstr "Kontakt fra"
|
304 |
|
305 |
-
#: contact_form.php:
|
306 |
msgid "Name"
|
307 |
msgstr "Navn"
|
308 |
|
309 |
-
#: contact_form.php:
|
310 |
msgid "Email"
|
311 |
msgstr "E-mail"
|
312 |
|
313 |
-
#: contact_form.php:
|
314 |
msgid "Subject"
|
315 |
msgstr "Emne"
|
316 |
|
317 |
-
#: contact_form.php:
|
318 |
msgid "Message"
|
319 |
msgstr "Besked"
|
320 |
|
321 |
-
#: contact_form.php:
|
322 |
msgid "Site"
|
323 |
msgstr "Site"
|
324 |
|
325 |
-
#: contact_form.php:
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "Dersom du kan se denne MIME, så aksepterer ikke klienten din MIME-typer!"
|
328 |
|
329 |
-
#: contact_form.php:
|
330 |
msgid "FAQ"
|
331 |
msgstr "Ofte stillede spørgsmål"
|
332 |
|
333 |
-
#: contact_form.php:
|
334 |
msgid "Support"
|
335 |
msgstr "Support"
|
336 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:11+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:11+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Mads Hannibal <mh@shortcuts.dk>\n"
|
9 |
"Language: \n"
|
28 |
msgstr "Læs mere"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
+
#: contact_form.php:805
|
32 |
+
#: contact_form.php:814
|
33 |
msgid "Settings"
|
34 |
msgstr "Indstillinger"
|
35 |
|
206 |
msgstr "Vis yderligere information i e-mail"
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
+
#: contact_form.php:676
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "Sendt fra (IP-adresse)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
+
#: contact_form.php:681
|
215 |
msgid "Date/Time"
|
216 |
msgstr "Dato/klokkeslæt"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
+
#: contact_form.php:686
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "Sendt fra (referent)"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
+
#: contact_form.php:691
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "Med (user agent)"
|
227 |
|
254 |
msgid "Save Changes"
|
255 |
msgstr "Gem ændringer"
|
256 |
|
257 |
+
#: contact_form.php:420
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "Beklager, men din e-mail kunne ikke leveres."
|
260 |
|
261 |
+
#: contact_form.php:478
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "Du kan vedhæfte filer af følgende typer"
|
264 |
|
265 |
+
#: contact_form.php:486
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "Send mig en kopi"
|
268 |
|
269 |
+
#: contact_form.php:496
|
270 |
msgid "Submit"
|
271 |
msgstr "Send"
|
272 |
|
273 |
+
#: contact_form.php:535
|
274 |
msgid "Your name is required."
|
275 |
msgstr "Dit navn er obligatorisk"
|
276 |
|
277 |
+
#: contact_form.php:536
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "En korrekt e-mail-adresse er påkrævet."
|
280 |
|
281 |
+
#: contact_form.php:537
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "Emnefeltet er obligatorisk."
|
284 |
|
285 |
+
#: contact_form.php:538
|
286 |
msgid "Message text is required."
|
287 |
msgstr "Du skal angive en besked"
|
288 |
|
289 |
+
#: contact_form.php:539
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "Ret venligst nedenstående og prøv igen."
|
292 |
|
293 |
+
#: contact_form.php:570
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "Bilaget er korrupt."
|
296 |
|
297 |
+
#: contact_form.php:583
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "Venligst udfyld CAPTCHA-feltet."
|
300 |
|
301 |
+
#: contact_form.php:699
|
302 |
msgid "Contact from"
|
303 |
msgstr "Kontakt fra"
|
304 |
|
305 |
+
#: contact_form.php:704
|
306 |
msgid "Name"
|
307 |
msgstr "Navn"
|
308 |
|
309 |
+
#: contact_form.php:707
|
310 |
msgid "Email"
|
311 |
msgstr "E-mail"
|
312 |
|
313 |
+
#: contact_form.php:710
|
314 |
msgid "Subject"
|
315 |
msgstr "Emne"
|
316 |
|
317 |
+
#: contact_form.php:713
|
318 |
msgid "Message"
|
319 |
msgstr "Besked"
|
320 |
|
321 |
+
#: contact_form.php:716
|
322 |
msgid "Site"
|
323 |
msgstr "Site"
|
324 |
|
325 |
+
#: contact_form.php:761
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "Dersom du kan se denne MIME, så aksepterer ikke klienten din MIME-typer!"
|
328 |
|
329 |
+
#: contact_form.php:815
|
330 |
msgid "FAQ"
|
331 |
msgstr "Ofte stillede spørgsmål"
|
332 |
|
333 |
+
#: contact_form.php:816
|
334 |
msgid "Support"
|
335 |
msgstr "Support"
|
336 |
|
languages/contact_form-de_DE.mo
CHANGED
Binary file
|
languages/contact_form-de_DE.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
|
9 |
"Language: \n"
|
@@ -28,8 +28,8 @@ msgid "Read more"
|
|
28 |
msgstr "Lesen Sie mehr"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
-
#: contact_form.php:
|
32 |
-
#: contact_form.php:
|
33 |
msgid "Settings"
|
34 |
msgstr "Einstellungen"
|
35 |
|
@@ -206,22 +206,22 @@ msgid "Display additional info in email"
|
|
206 |
msgstr ""
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
-
#: contact_form.php:
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "Gesendet von (IP-Adresse)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
-
#: contact_form.php:
|
215 |
msgid "Date/Time"
|
216 |
msgstr "Datum / Uhrzeit"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
-
#: contact_form.php:
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "gesendet von (referer)"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
-
#: contact_form.php:
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "mit (user agent)"
|
227 |
|
@@ -254,83 +254,83 @@ msgstr ""
|
|
254 |
msgid "Save Changes"
|
255 |
msgstr "Änderungen speichern"
|
256 |
|
257 |
-
#: contact_form.php:
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "Entschuldigung, Ihre E-Mail konnte leider nicht zugestellt werden."
|
260 |
|
261 |
-
#: contact_form.php:
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "Sie können folgende Dateitypen anhängen"
|
264 |
|
265 |
-
#: contact_form.php:
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "Kopie an mich senden"
|
268 |
|
269 |
-
#: contact_form.php:
|
270 |
msgid "Submit"
|
271 |
msgstr "senden"
|
272 |
|
273 |
-
#: contact_form.php:
|
274 |
msgid "Your name is required."
|
275 |
msgstr "Ihr Name wird benötigt"
|
276 |
|
277 |
-
#: contact_form.php:
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "Eine korrekte E-Mail-Adresse ist zwingend."
|
280 |
|
281 |
-
#: contact_form.php:
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "Bitte geben Sie einen Betreff ein."
|
284 |
|
285 |
-
#: contact_form.php:
|
286 |
msgid "Message text is required."
|
287 |
msgstr "Bitte geben Sie eine Nachricht ein."
|
288 |
|
289 |
-
#: contact_form.php:
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "Bitte führen Sie die Korrekturen unten durch und versuchen Sie es erneut."
|
292 |
|
293 |
-
#: contact_form.php:
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "Anhang scheint defekt zu sein."
|
296 |
|
297 |
-
#: contact_form.php:
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "Bitte ergänzen Sie das CAPTCHA."
|
300 |
|
301 |
-
#: contact_form.php:
|
302 |
msgid "Contact from"
|
303 |
msgstr "Kontakt von"
|
304 |
|
305 |
-
#: contact_form.php:
|
306 |
msgid "Name"
|
307 |
msgstr "Nome"
|
308 |
|
309 |
-
#: contact_form.php:
|
310 |
msgid "Email"
|
311 |
msgstr "E-Mail"
|
312 |
|
313 |
-
#: contact_form.php:
|
314 |
msgid "Subject"
|
315 |
msgstr "Betreff"
|
316 |
|
317 |
-
#: contact_form.php:
|
318 |
msgid "Message"
|
319 |
msgstr "Nachricht"
|
320 |
|
321 |
-
#: contact_form.php:
|
322 |
msgid "Site"
|
323 |
msgstr "Site"
|
324 |
|
325 |
-
#: contact_form.php:
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "Wenn Sie dieses MIME sehen, unterstützt Ihr Client keine MIME-Typen!"
|
328 |
|
329 |
-
#: contact_form.php:
|
330 |
msgid "FAQ"
|
331 |
msgstr "Häufig gestellte Fragen (FAQ)"
|
332 |
|
333 |
-
#: contact_form.php:
|
334 |
msgid "Support"
|
335 |
msgstr "Unterstützung"
|
336 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:11+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:11+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
|
9 |
"Language: \n"
|
28 |
msgstr "Lesen Sie mehr"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
+
#: contact_form.php:805
|
32 |
+
#: contact_form.php:814
|
33 |
msgid "Settings"
|
34 |
msgstr "Einstellungen"
|
35 |
|
206 |
msgstr ""
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
+
#: contact_form.php:676
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "Gesendet von (IP-Adresse)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
+
#: contact_form.php:681
|
215 |
msgid "Date/Time"
|
216 |
msgstr "Datum / Uhrzeit"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
+
#: contact_form.php:686
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "gesendet von (referer)"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
+
#: contact_form.php:691
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "mit (user agent)"
|
227 |
|
254 |
msgid "Save Changes"
|
255 |
msgstr "Änderungen speichern"
|
256 |
|
257 |
+
#: contact_form.php:420
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "Entschuldigung, Ihre E-Mail konnte leider nicht zugestellt werden."
|
260 |
|
261 |
+
#: contact_form.php:478
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "Sie können folgende Dateitypen anhängen"
|
264 |
|
265 |
+
#: contact_form.php:486
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "Kopie an mich senden"
|
268 |
|
269 |
+
#: contact_form.php:496
|
270 |
msgid "Submit"
|
271 |
msgstr "senden"
|
272 |
|
273 |
+
#: contact_form.php:535
|
274 |
msgid "Your name is required."
|
275 |
msgstr "Ihr Name wird benötigt"
|
276 |
|
277 |
+
#: contact_form.php:536
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "Eine korrekte E-Mail-Adresse ist zwingend."
|
280 |
|
281 |
+
#: contact_form.php:537
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "Bitte geben Sie einen Betreff ein."
|
284 |
|
285 |
+
#: contact_form.php:538
|
286 |
msgid "Message text is required."
|
287 |
msgstr "Bitte geben Sie eine Nachricht ein."
|
288 |
|
289 |
+
#: contact_form.php:539
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "Bitte führen Sie die Korrekturen unten durch und versuchen Sie es erneut."
|
292 |
|
293 |
+
#: contact_form.php:570
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "Anhang scheint defekt zu sein."
|
296 |
|
297 |
+
#: contact_form.php:583
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "Bitte ergänzen Sie das CAPTCHA."
|
300 |
|
301 |
+
#: contact_form.php:699
|
302 |
msgid "Contact from"
|
303 |
msgstr "Kontakt von"
|
304 |
|
305 |
+
#: contact_form.php:704
|
306 |
msgid "Name"
|
307 |
msgstr "Nome"
|
308 |
|
309 |
+
#: contact_form.php:707
|
310 |
msgid "Email"
|
311 |
msgstr "E-Mail"
|
312 |
|
313 |
+
#: contact_form.php:710
|
314 |
msgid "Subject"
|
315 |
msgstr "Betreff"
|
316 |
|
317 |
+
#: contact_form.php:713
|
318 |
msgid "Message"
|
319 |
msgstr "Nachricht"
|
320 |
|
321 |
+
#: contact_form.php:716
|
322 |
msgid "Site"
|
323 |
msgstr "Site"
|
324 |
|
325 |
+
#: contact_form.php:761
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "Wenn Sie dieses MIME sehen, unterstützt Ihr Client keine MIME-Typen!"
|
328 |
|
329 |
+
#: contact_form.php:815
|
330 |
msgid "FAQ"
|
331 |
msgstr "Häufig gestellte Fragen (FAQ)"
|
332 |
|
333 |
+
#: contact_form.php:816
|
334 |
msgid "Support"
|
335 |
msgstr "Unterstützung"
|
336 |
|
languages/contact_form-el_GR.mo
CHANGED
Binary file
|
languages/contact_form-el_GR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Pantelis Panteloglou <ppanteloglou@gmail.com>\n"
|
9 |
"Language: \n"
|
@@ -28,8 +28,8 @@ msgid "Read more"
|
|
28 |
msgstr "Διαβάστε περισσότερα"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
-
#: contact_form.php:
|
32 |
-
#: contact_form.php:
|
33 |
msgid "Settings"
|
34 |
msgstr "Ρυθμίσεις"
|
35 |
|
@@ -206,22 +206,22 @@ msgid "Display additional info in email"
|
|
206 |
msgstr "Προβολή πρόσθετων πληροφοριών στο email"
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
-
#: contact_form.php:
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "Στάλθηκε από (διεύθυνση ip)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
-
#: contact_form.php:
|
215 |
msgid "Date/Time"
|
216 |
msgstr "Ημερομηνία/Ώρα"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
-
#: contact_form.php:
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "Από (referer)"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
-
#: contact_form.php:
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "με χρήση (user agent)"
|
227 |
|
@@ -254,83 +254,83 @@ msgstr ""
|
|
254 |
msgid "Save Changes"
|
255 |
msgstr "Αποθήκευση αλλαγών"
|
256 |
|
257 |
-
#: contact_form.php:
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "Δυστυχώς δεν μπορέσαμε να στείλουμε το email σας."
|
260 |
|
261 |
-
#: contact_form.php:
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "Μπορείτε να επισυνάψετε αρχεία τύπου"
|
264 |
|
265 |
-
#: contact_form.php:
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "Στείλε μου ένα αντίγραφο"
|
268 |
|
269 |
-
#: contact_form.php:
|
270 |
msgid "Submit"
|
271 |
msgstr "Υποβολή"
|
272 |
|
273 |
-
#: contact_form.php:
|
274 |
msgid "Your name is required."
|
275 |
msgstr "Γράψτε οπωσδήποτε το όνομά σας."
|
276 |
|
277 |
-
#: contact_form.php:
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "Απαιτείται μια έγκυρη διεύθυνση e-mail."
|
280 |
|
281 |
-
#: contact_form.php:
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "Γράψτε οπωσδήποτε ένα θέμα"
|
284 |
|
285 |
-
#: contact_form.php:
|
286 |
msgid "Message text is required."
|
287 |
msgstr "Απαιτείται κείμενο μηνύματος."
|
288 |
|
289 |
-
#: contact_form.php:
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "Κάνετε διορθώσεις παρακάτω και ξαναπροσπαθήστε."
|
292 |
|
293 |
-
#: contact_form.php:
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "Το επισυναπτόμενο δεν λειτουργεί."
|
296 |
|
297 |
-
#: contact_form.php:
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "Συμπληρώστε το CAPTCHA."
|
300 |
|
301 |
-
#: contact_form.php:
|
302 |
msgid "Contact from"
|
303 |
msgstr "Επικοινωνία από"
|
304 |
|
305 |
-
#: contact_form.php:
|
306 |
msgid "Name"
|
307 |
msgstr "Όνομα"
|
308 |
|
309 |
-
#: contact_form.php:
|
310 |
msgid "Email"
|
311 |
msgstr "E-Mail"
|
312 |
|
313 |
-
#: contact_form.php:
|
314 |
msgid "Subject"
|
315 |
msgstr "Θέμα"
|
316 |
|
317 |
-
#: contact_form.php:
|
318 |
msgid "Message"
|
319 |
msgstr "Μήνυμα"
|
320 |
|
321 |
-
#: contact_form.php:
|
322 |
msgid "Site"
|
323 |
msgstr "Ιστοσελίδα"
|
324 |
|
325 |
-
#: contact_form.php:
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "Wenn Sie dieses MIME sehen, unterstützt Ihr Client keine MIME-Typen!"
|
328 |
|
329 |
-
#: contact_form.php:
|
330 |
msgid "FAQ"
|
331 |
msgstr "Συχνές ερωτήσεις"
|
332 |
|
333 |
-
#: contact_form.php:
|
334 |
msgid "Support"
|
335 |
msgstr "Υποστήριξη"
|
336 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:11+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:11+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Pantelis Panteloglou <ppanteloglou@gmail.com>\n"
|
9 |
"Language: \n"
|
28 |
msgstr "Διαβάστε περισσότερα"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
+
#: contact_form.php:805
|
32 |
+
#: contact_form.php:814
|
33 |
msgid "Settings"
|
34 |
msgstr "Ρυθμίσεις"
|
35 |
|
206 |
msgstr "Προβολή πρόσθετων πληροφοριών στο email"
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
+
#: contact_form.php:676
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "Στάλθηκε από (διεύθυνση ip)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
+
#: contact_form.php:681
|
215 |
msgid "Date/Time"
|
216 |
msgstr "Ημερομηνία/Ώρα"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
+
#: contact_form.php:686
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "Από (referer)"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
+
#: contact_form.php:691
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "με χρήση (user agent)"
|
227 |
|
254 |
msgid "Save Changes"
|
255 |
msgstr "Αποθήκευση αλλαγών"
|
256 |
|
257 |
+
#: contact_form.php:420
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "Δυστυχώς δεν μπορέσαμε να στείλουμε το email σας."
|
260 |
|
261 |
+
#: contact_form.php:478
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "Μπορείτε να επισυνάψετε αρχεία τύπου"
|
264 |
|
265 |
+
#: contact_form.php:486
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "Στείλε μου ένα αντίγραφο"
|
268 |
|
269 |
+
#: contact_form.php:496
|
270 |
msgid "Submit"
|
271 |
msgstr "Υποβολή"
|
272 |
|
273 |
+
#: contact_form.php:535
|
274 |
msgid "Your name is required."
|
275 |
msgstr "Γράψτε οπωσδήποτε το όνομά σας."
|
276 |
|
277 |
+
#: contact_form.php:536
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "Απαιτείται μια έγκυρη διεύθυνση e-mail."
|
280 |
|
281 |
+
#: contact_form.php:537
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "Γράψτε οπωσδήποτε ένα θέμα"
|
284 |
|
285 |
+
#: contact_form.php:538
|
286 |
msgid "Message text is required."
|
287 |
msgstr "Απαιτείται κείμενο μηνύματος."
|
288 |
|
289 |
+
#: contact_form.php:539
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "Κάνετε διορθώσεις παρακάτω και ξαναπροσπαθήστε."
|
292 |
|
293 |
+
#: contact_form.php:570
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "Το επισυναπτόμενο δεν λειτουργεί."
|
296 |
|
297 |
+
#: contact_form.php:583
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "Συμπληρώστε το CAPTCHA."
|
300 |
|
301 |
+
#: contact_form.php:699
|
302 |
msgid "Contact from"
|
303 |
msgstr "Επικοινωνία από"
|
304 |
|
305 |
+
#: contact_form.php:704
|
306 |
msgid "Name"
|
307 |
msgstr "Όνομα"
|
308 |
|
309 |
+
#: contact_form.php:707
|
310 |
msgid "Email"
|
311 |
msgstr "E-Mail"
|
312 |
|
313 |
+
#: contact_form.php:710
|
314 |
msgid "Subject"
|
315 |
msgstr "Θέμα"
|
316 |
|
317 |
+
#: contact_form.php:713
|
318 |
msgid "Message"
|
319 |
msgstr "Μήνυμα"
|
320 |
|
321 |
+
#: contact_form.php:716
|
322 |
msgid "Site"
|
323 |
msgstr "Ιστοσελίδα"
|
324 |
|
325 |
+
#: contact_form.php:761
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "Wenn Sie dieses MIME sehen, unterstützt Ihr Client keine MIME-Typen!"
|
328 |
|
329 |
+
#: contact_form.php:815
|
330 |
msgid "FAQ"
|
331 |
msgstr "Συχνές ερωτήσεις"
|
332 |
|
333 |
+
#: contact_form.php:816
|
334 |
msgid "Support"
|
335 |
msgstr "Υποστήριξη"
|
336 |
|
languages/contact_form-es_ES.mo
CHANGED
Binary file
|
languages/contact_form-es_ES.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"Language: \n"
|
@@ -28,8 +28,8 @@ msgid "Read more"
|
|
28 |
msgstr "Lea mas"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
-
#: contact_form.php:
|
32 |
-
#: contact_form.php:
|
33 |
msgid "Settings"
|
34 |
msgstr "Configuración"
|
35 |
|
@@ -206,22 +206,22 @@ msgid "Display additional info in email"
|
|
206 |
msgstr ""
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
-
#: contact_form.php:
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "Enviado desde (dirección IP)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
-
#: contact_form.php:
|
215 |
msgid "Date/Time"
|
216 |
msgstr "Fecha/hora"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
-
#: contact_form.php:
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "De (referente)"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
-
#: contact_form.php:
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "Usando (user agent)"
|
227 |
|
@@ -254,83 +254,83 @@ msgstr ""
|
|
254 |
msgid "Save Changes"
|
255 |
msgstr "Guardar los cambios"
|
256 |
|
257 |
-
#: contact_form.php:
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "Disculpe, su email no se puede entregar."
|
260 |
|
261 |
-
#: contact_form.php:
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "Puede adjuntar archivos de estos tipos"
|
264 |
|
265 |
-
#: contact_form.php:
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "Envíame una copia"
|
268 |
|
269 |
-
#: contact_form.php:
|
270 |
msgid "Submit"
|
271 |
msgstr "Enviar"
|
272 |
|
273 |
-
#: contact_form.php:
|
274 |
msgid "Your name is required."
|
275 |
msgstr "Su nombre es obligatorio."
|
276 |
|
277 |
-
#: contact_form.php:
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "Una dirección válida es obligatoria."
|
280 |
|
281 |
-
#: contact_form.php:
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "El asunto es obligatorio."
|
284 |
|
285 |
-
#: contact_form.php:
|
286 |
msgid "Message text is required."
|
287 |
msgstr "El mensaje es obligatorio."
|
288 |
|
289 |
-
#: contact_form.php:
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "Por favor, corrija los datos y pruebe de nuevo."
|
292 |
|
293 |
-
#: contact_form.php:
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "El adjunto es incorrecto."
|
296 |
|
297 |
-
#: contact_form.php:
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "Por favor completa el CAPTCHA"
|
300 |
|
301 |
-
#: contact_form.php:
|
302 |
msgid "Contact from"
|
303 |
msgstr "Contact from"
|
304 |
|
305 |
-
#: contact_form.php:
|
306 |
msgid "Name"
|
307 |
msgstr "Nombre"
|
308 |
|
309 |
-
#: contact_form.php:
|
310 |
msgid "Email"
|
311 |
msgstr "E-mail"
|
312 |
|
313 |
-
#: contact_form.php:
|
314 |
msgid "Subject"
|
315 |
msgstr "Asunto"
|
316 |
|
317 |
-
#: contact_form.php:
|
318 |
msgid "Message"
|
319 |
msgstr "Mensaje"
|
320 |
|
321 |
-
#: contact_form.php:
|
322 |
msgid "Site"
|
323 |
msgstr "Sitio"
|
324 |
|
325 |
-
#: contact_form.php:
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "Si usted puede ver esta MIME es que su cliente no acepta los tipos MIME!"
|
328 |
|
329 |
-
#: contact_form.php:
|
330 |
msgid "FAQ"
|
331 |
msgstr "FAQ"
|
332 |
|
333 |
-
#: contact_form.php:
|
334 |
msgid "Support"
|
335 |
msgstr "Soporte"
|
336 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:11+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:11+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"Language: \n"
|
28 |
msgstr "Lea mas"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
+
#: contact_form.php:805
|
32 |
+
#: contact_form.php:814
|
33 |
msgid "Settings"
|
34 |
msgstr "Configuración"
|
35 |
|
206 |
msgstr ""
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
+
#: contact_form.php:676
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "Enviado desde (dirección IP)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
+
#: contact_form.php:681
|
215 |
msgid "Date/Time"
|
216 |
msgstr "Fecha/hora"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
+
#: contact_form.php:686
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "De (referente)"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
+
#: contact_form.php:691
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "Usando (user agent)"
|
227 |
|
254 |
msgid "Save Changes"
|
255 |
msgstr "Guardar los cambios"
|
256 |
|
257 |
+
#: contact_form.php:420
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "Disculpe, su email no se puede entregar."
|
260 |
|
261 |
+
#: contact_form.php:478
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "Puede adjuntar archivos de estos tipos"
|
264 |
|
265 |
+
#: contact_form.php:486
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "Envíame una copia"
|
268 |
|
269 |
+
#: contact_form.php:496
|
270 |
msgid "Submit"
|
271 |
msgstr "Enviar"
|
272 |
|
273 |
+
#: contact_form.php:535
|
274 |
msgid "Your name is required."
|
275 |
msgstr "Su nombre es obligatorio."
|
276 |
|
277 |
+
#: contact_form.php:536
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "Una dirección válida es obligatoria."
|
280 |
|
281 |
+
#: contact_form.php:537
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "El asunto es obligatorio."
|
284 |
|
285 |
+
#: contact_form.php:538
|
286 |
msgid "Message text is required."
|
287 |
msgstr "El mensaje es obligatorio."
|
288 |
|
289 |
+
#: contact_form.php:539
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "Por favor, corrija los datos y pruebe de nuevo."
|
292 |
|
293 |
+
#: contact_form.php:570
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "El adjunto es incorrecto."
|
296 |
|
297 |
+
#: contact_form.php:583
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "Por favor completa el CAPTCHA"
|
300 |
|
301 |
+
#: contact_form.php:699
|
302 |
msgid "Contact from"
|
303 |
msgstr "Contact from"
|
304 |
|
305 |
+
#: contact_form.php:704
|
306 |
msgid "Name"
|
307 |
msgstr "Nombre"
|
308 |
|
309 |
+
#: contact_form.php:707
|
310 |
msgid "Email"
|
311 |
msgstr "E-mail"
|
312 |
|
313 |
+
#: contact_form.php:710
|
314 |
msgid "Subject"
|
315 |
msgstr "Asunto"
|
316 |
|
317 |
+
#: contact_form.php:713
|
318 |
msgid "Message"
|
319 |
msgstr "Mensaje"
|
320 |
|
321 |
+
#: contact_form.php:716
|
322 |
msgid "Site"
|
323 |
msgstr "Sitio"
|
324 |
|
325 |
+
#: contact_form.php:761
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "Si usted puede ver esta MIME es que su cliente no acepta los tipos MIME!"
|
328 |
|
329 |
+
#: contact_form.php:815
|
330 |
msgid "FAQ"
|
331 |
msgstr "FAQ"
|
332 |
|
333 |
+
#: contact_form.php:816
|
334 |
msgid "Support"
|
335 |
msgstr "Soporte"
|
336 |
|
languages/contact_form-fr_FR.mo
CHANGED
Binary file
|
languages/contact_form-fr_FR.po
CHANGED
@@ -2,10 +2,10 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
-
"Language-Team:
|
9 |
"Language: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
@@ -18,1292 +18,343 @@ msgstr ""
|
|
18 |
"Plural-Forms: nplurals=2;plural=n>2\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
-
#:
|
22 |
-
#: tags/3.13/contact_form.php:76
|
23 |
-
#: tags/3.07/contact_form.php:78
|
24 |
-
#: tags/3.15/contact_form.php:76
|
25 |
-
#: tags/3.19/contact_form.php:76
|
26 |
-
#: tags/3.14/contact_form.php:76
|
27 |
-
#: tags/3.17/contact_form.php:76
|
28 |
-
#: tags/3.06/contact_form.php:78
|
29 |
-
#: tags/3.04/contact_form.php:78
|
30 |
-
#: tags/3.05/contact_form.php:78
|
31 |
-
#: tags/2011.3.01/contact_form.php:77
|
32 |
-
#: tags/3.16/contact_form.php:76
|
33 |
msgid "Activated plugins"
|
34 |
msgstr "Plugin activé"
|
35 |
|
36 |
-
#:
|
37 |
-
#:
|
38 |
-
#:
|
39 |
-
#: tags/3.13/contact_form.php:78
|
40 |
-
#: tags/3.13/contact_form.php:86
|
41 |
-
#: tags/3.13/contact_form.php:94
|
42 |
-
#: tags/3.07/contact_form.php:80
|
43 |
-
#: tags/3.07/contact_form.php:88
|
44 |
-
#: tags/3.07/contact_form.php:96
|
45 |
-
#: tags/3.15/contact_form.php:78
|
46 |
-
#: tags/3.15/contact_form.php:86
|
47 |
-
#: tags/3.15/contact_form.php:94
|
48 |
-
#: tags/3.19/contact_form.php:78
|
49 |
-
#: tags/3.19/contact_form.php:86
|
50 |
-
#: tags/3.19/contact_form.php:94
|
51 |
-
#: tags/3.14/contact_form.php:78
|
52 |
-
#: tags/3.14/contact_form.php:86
|
53 |
-
#: tags/3.14/contact_form.php:94
|
54 |
-
#: tags/3.17/contact_form.php:78
|
55 |
-
#: tags/3.17/contact_form.php:86
|
56 |
-
#: tags/3.17/contact_form.php:94
|
57 |
-
#: tags/3.06/contact_form.php:80
|
58 |
-
#: tags/3.06/contact_form.php:88
|
59 |
-
#: tags/3.06/contact_form.php:96
|
60 |
-
#: tags/3.04/contact_form.php:80
|
61 |
-
#: tags/3.04/contact_form.php:88
|
62 |
-
#: tags/3.04/contact_form.php:96
|
63 |
-
#: tags/3.05/contact_form.php:80
|
64 |
-
#: tags/3.05/contact_form.php:88
|
65 |
-
#: tags/3.05/contact_form.php:96
|
66 |
-
#: tags/2011.3.01/contact_form.php:79
|
67 |
-
#: tags/2011.3.01/contact_form.php:87
|
68 |
-
#: tags/2011.3.01/contact_form.php:95
|
69 |
-
#: tags/3.16/contact_form.php:78
|
70 |
-
#: tags/3.16/contact_form.php:86
|
71 |
-
#: tags/3.16/contact_form.php:94
|
72 |
msgid "Read more"
|
73 |
msgstr "Lire la suite"
|
74 |
|
75 |
-
#:
|
76 |
-
#:
|
77 |
-
#:
|
78 |
-
#: tags/3.13/contact_form.php:78
|
79 |
-
#: tags/3.13/contact_form.php:603
|
80 |
-
#: tags/3.13/contact_form.php:612
|
81 |
-
#: tags/3.07/contact_form.php:80
|
82 |
-
#: tags/3.07/contact_form.php:620
|
83 |
-
#: tags/3.07/contact_form.php:629
|
84 |
-
#: tags/2011.2.08/contact_form.php:460
|
85 |
-
#: tags/2011.2.08/contact_form.php:469
|
86 |
-
#: tags/3.15/contact_form.php:78
|
87 |
-
#: tags/3.15/contact_form.php:660
|
88 |
-
#: tags/3.15/contact_form.php:669
|
89 |
-
#: tags/3.19/contact_form.php:78
|
90 |
-
#: tags/3.19/contact_form.php:756
|
91 |
-
#: tags/3.19/contact_form.php:765
|
92 |
-
#: tags/3.14/contact_form.php:78
|
93 |
-
#: tags/3.14/contact_form.php:611
|
94 |
-
#: tags/3.14/contact_form.php:620
|
95 |
-
#: tags/3.17/contact_form.php:78
|
96 |
-
#: tags/3.17/contact_form.php:735
|
97 |
-
#: tags/3.17/contact_form.php:744
|
98 |
-
#: tags/3.06/contact_form.php:80
|
99 |
-
#: tags/3.06/contact_form.php:620
|
100 |
-
#: tags/3.06/contact_form.php:629
|
101 |
-
#: tags/2011.2.04/contact_form.php:402
|
102 |
-
#: tags/2011.2.04/contact_form.php:411
|
103 |
-
#: tags/3.04/contact_form.php:80
|
104 |
-
#: tags/3.04/contact_form.php:620
|
105 |
-
#: tags/3.04/contact_form.php:629
|
106 |
-
#: tags/2011.05.26/contact_form.php:317
|
107 |
-
#: tags/2011.2.03/contact_form.php:360
|
108 |
-
#: tags/2011.2.03/contact_form.php:369
|
109 |
-
#: tags/3.05/contact_form.php:80
|
110 |
-
#: tags/3.05/contact_form.php:620
|
111 |
-
#: tags/3.05/contact_form.php:629
|
112 |
-
#: tags/2011.3.01/contact_form.php:563
|
113 |
-
#: tags/2011.3.01/contact_form.php:572
|
114 |
-
#: tags/3.16/contact_form.php:78
|
115 |
-
#: tags/3.16/contact_form.php:660
|
116 |
-
#: tags/3.16/contact_form.php:669
|
117 |
msgid "Settings"
|
118 |
msgstr "Réglages"
|
119 |
|
120 |
-
#:
|
121 |
-
#: tags/3.13/contact_form.php:84
|
122 |
-
#: tags/3.07/contact_form.php:86
|
123 |
-
#: tags/3.15/contact_form.php:84
|
124 |
-
#: tags/3.19/contact_form.php:84
|
125 |
-
#: tags/3.14/contact_form.php:84
|
126 |
-
#: tags/3.17/contact_form.php:84
|
127 |
-
#: tags/3.06/contact_form.php:86
|
128 |
-
#: tags/3.04/contact_form.php:86
|
129 |
-
#: tags/3.05/contact_form.php:86
|
130 |
-
#: tags/2011.3.01/contact_form.php:85
|
131 |
-
#: tags/3.16/contact_form.php:84
|
132 |
msgid "Installed plugins"
|
133 |
msgstr "Plugin installé"
|
134 |
|
135 |
-
#:
|
136 |
-
#: tags/3.13/contact_form.php:92
|
137 |
-
#: tags/3.07/contact_form.php:94
|
138 |
-
#: tags/3.15/contact_form.php:92
|
139 |
-
#: tags/3.19/contact_form.php:92
|
140 |
-
#: tags/3.14/contact_form.php:92
|
141 |
-
#: tags/3.17/contact_form.php:92
|
142 |
-
#: tags/3.06/contact_form.php:94
|
143 |
-
#: tags/3.04/contact_form.php:94
|
144 |
-
#: tags/3.05/contact_form.php:94
|
145 |
-
#: tags/2011.3.01/contact_form.php:93
|
146 |
-
#: tags/3.16/contact_form.php:92
|
147 |
msgid "Recommended plugins"
|
148 |
msgstr "Plugin recommandé"
|
149 |
|
150 |
-
#:
|
151 |
-
#: tags/3.13/contact_form.php:94
|
152 |
-
#: tags/3.07/contact_form.php:96
|
153 |
-
#: tags/3.15/contact_form.php:94
|
154 |
-
#: tags/3.19/contact_form.php:94
|
155 |
-
#: tags/3.14/contact_form.php:94
|
156 |
-
#: tags/3.17/contact_form.php:94
|
157 |
-
#: tags/3.06/contact_form.php:96
|
158 |
-
#: tags/3.04/contact_form.php:96
|
159 |
-
#: tags/3.05/contact_form.php:96
|
160 |
-
#: tags/2011.3.01/contact_form.php:95
|
161 |
-
#: tags/3.16/contact_form.php:94
|
162 |
msgid "Download"
|
163 |
msgstr "Téléchargement"
|
164 |
|
165 |
-
#:
|
166 |
-
#: tags/3.13/contact_form.php:94
|
167 |
-
#: tags/3.07/contact_form.php:96
|
168 |
-
#: tags/2011.2.08/contact_form.php:122
|
169 |
-
#: tags/3.15/contact_form.php:94
|
170 |
-
#: tags/3.19/contact_form.php:94
|
171 |
-
#: tags/3.14/contact_form.php:94
|
172 |
-
#: tags/3.17/contact_form.php:94
|
173 |
-
#: tags/3.06/contact_form.php:96
|
174 |
-
#: tags/3.04/contact_form.php:96
|
175 |
-
#: tags/3.05/contact_form.php:96
|
176 |
-
#: tags/2011.3.01/contact_form.php:95
|
177 |
-
#: tags/3.16/contact_form.php:94
|
178 |
#, php-format
|
179 |
msgid "Install %s"
|
180 |
msgstr "%s installé"
|
181 |
|
182 |
-
#:
|
183 |
-
#: tags/3.13/contact_form.php:94
|
184 |
-
#: tags/3.07/contact_form.php:96
|
185 |
-
#: tags/3.15/contact_form.php:94
|
186 |
-
#: tags/3.19/contact_form.php:94
|
187 |
-
#: tags/3.14/contact_form.php:94
|
188 |
-
#: tags/3.17/contact_form.php:94
|
189 |
-
#: tags/3.06/contact_form.php:96
|
190 |
-
#: tags/3.04/contact_form.php:96
|
191 |
-
#: tags/3.05/contact_form.php:96
|
192 |
-
#: tags/3.16/contact_form.php:94
|
193 |
msgid "Install now from wordpress.org"
|
194 |
msgstr "Installer maintenant depuis wordpress.org"
|
195 |
|
196 |
-
#:
|
197 |
-
#: tags/3.13/contact_form.php:96
|
198 |
-
#: tags/3.07/contact_form.php:98
|
199 |
-
#: tags/3.15/contact_form.php:96
|
200 |
-
#: tags/3.19/contact_form.php:96
|
201 |
-
#: tags/3.14/contact_form.php:96
|
202 |
-
#: tags/3.17/contact_form.php:96
|
203 |
-
#: tags/3.06/contact_form.php:98
|
204 |
-
#: tags/3.04/contact_form.php:98
|
205 |
-
#: tags/3.05/contact_form.php:98
|
206 |
-
#: tags/2011.3.01/contact_form.php:97
|
207 |
-
#: tags/3.16/contact_form.php:96
|
208 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
209 |
msgstr "Si vous avez des questions, merci de contacter plugin@bestwebsoft.com ou d'utilisez le formulaire de contact \"contact form\" sur notre site"
|
210 |
|
211 |
-
#:
|
212 |
-
#:
|
213 |
-
#: tags/3.13/contact_form.php:108
|
214 |
-
#: tags/3.13/contact_form.php:211
|
215 |
-
#: tags/3.07/contact_form.php:110
|
216 |
-
#: tags/3.07/contact_form.php:213
|
217 |
-
#: tags/3.15/contact_form.php:108
|
218 |
-
#: tags/3.15/contact_form.php:236
|
219 |
-
#: tags/3.19/contact_form.php:108
|
220 |
-
#: tags/3.19/contact_form.php:248
|
221 |
-
#: tags/3.14/contact_form.php:108
|
222 |
-
#: tags/3.14/contact_form.php:213
|
223 |
-
#: tags/3.17/contact_form.php:108
|
224 |
-
#: tags/3.17/contact_form.php:239
|
225 |
-
#: tags/3.06/contact_form.php:110
|
226 |
-
#: tags/3.06/contact_form.php:213
|
227 |
-
#: tags/3.04/contact_form.php:110
|
228 |
-
#: tags/3.04/contact_form.php:213
|
229 |
-
#: tags/3.05/contact_form.php:110
|
230 |
-
#: tags/3.05/contact_form.php:213
|
231 |
-
#: tags/2011.3.01/contact_form.php:109
|
232 |
-
#: tags/2011.3.01/contact_form.php:182
|
233 |
-
#: tags/3.16/contact_form.php:108
|
234 |
-
#: tags/3.16/contact_form.php:236
|
235 |
msgid "Contact Form Options"
|
236 |
msgstr "Options du Formulaire de Contact"
|
237 |
|
238 |
-
#:
|
239 |
-
#: tags/3.13/contact_form.php:108
|
240 |
-
#: tags/3.07/contact_form.php:110
|
241 |
-
#: tags/3.15/contact_form.php:108
|
242 |
-
#: tags/3.19/contact_form.php:108
|
243 |
-
#: tags/3.14/contact_form.php:108
|
244 |
-
#: tags/3.17/contact_form.php:108
|
245 |
-
#: tags/3.06/contact_form.php:110
|
246 |
-
#: tags/3.04/contact_form.php:110
|
247 |
-
#: tags/3.05/contact_form.php:110
|
248 |
-
#: tags/2011.3.01/contact_form.php:109
|
249 |
-
#: tags/3.16/contact_form.php:108
|
250 |
msgid "Contact Form"
|
251 |
msgstr "Formulaire de Contact"
|
252 |
|
253 |
-
#:
|
254 |
-
#:
|
255 |
-
#:
|
256 |
-
#:
|
257 |
-
#: tags/3.13/contact_form.php:128
|
258 |
-
#: tags/3.13/contact_form.php:162
|
259 |
-
#: tags/3.13/contact_form.php:179
|
260 |
-
#: tags/3.13/contact_form.php:269
|
261 |
-
#: tags/3.07/contact_form.php:130
|
262 |
-
#: tags/3.07/contact_form.php:164
|
263 |
-
#: tags/3.07/contact_form.php:181
|
264 |
-
#: tags/3.07/contact_form.php:271
|
265 |
-
#: tags/3.15/contact_form.php:134
|
266 |
-
#: tags/3.15/contact_form.php:173
|
267 |
-
#: tags/3.15/contact_form.php:204
|
268 |
-
#: tags/3.15/contact_form.php:312
|
269 |
-
#: tags/3.19/contact_form.php:136
|
270 |
-
#: tags/3.19/contact_form.php:177
|
271 |
-
#: tags/3.19/contact_form.php:210
|
272 |
-
#: tags/3.19/contact_form.php:352
|
273 |
-
#: tags/3.14/contact_form.php:129
|
274 |
-
#: tags/3.14/contact_form.php:163
|
275 |
-
#: tags/3.14/contact_form.php:181
|
276 |
-
#: tags/3.14/contact_form.php:277
|
277 |
-
#: tags/3.17/contact_form.php:135
|
278 |
-
#: tags/3.17/contact_form.php:175
|
279 |
-
#: tags/3.17/contact_form.php:207
|
280 |
-
#: tags/3.17/contact_form.php:334
|
281 |
-
#: tags/3.06/contact_form.php:130
|
282 |
-
#: tags/3.06/contact_form.php:164
|
283 |
-
#: tags/3.06/contact_form.php:181
|
284 |
-
#: tags/3.06/contact_form.php:271
|
285 |
-
#: tags/3.04/contact_form.php:130
|
286 |
-
#: tags/3.04/contact_form.php:164
|
287 |
-
#: tags/3.04/contact_form.php:181
|
288 |
-
#: tags/3.04/contact_form.php:271
|
289 |
-
#: tags/3.05/contact_form.php:130
|
290 |
-
#: tags/3.05/contact_form.php:164
|
291 |
-
#: tags/3.05/contact_form.php:181
|
292 |
-
#: tags/3.05/contact_form.php:271
|
293 |
-
#: tags/2011.3.01/contact_form.php:273
|
294 |
-
#: tags/3.16/contact_form.php:134
|
295 |
-
#: tags/3.16/contact_form.php:173
|
296 |
-
#: tags/3.16/contact_form.php:204
|
297 |
-
#: tags/3.16/contact_form.php:312
|
298 |
msgid "Name:"
|
299 |
msgstr "Nom:"
|
300 |
|
301 |
-
#:
|
302 |
-
#:
|
303 |
-
#:
|
304 |
-
#:
|
305 |
-
#: tags/3.13/contact_form.php:129
|
306 |
-
#: tags/3.13/contact_form.php:163
|
307 |
-
#: tags/3.13/contact_form.php:180
|
308 |
-
#: tags/3.13/contact_form.php:270
|
309 |
-
#: tags/3.07/contact_form.php:131
|
310 |
-
#: tags/3.07/contact_form.php:165
|
311 |
-
#: tags/3.07/contact_form.php:182
|
312 |
-
#: tags/3.07/contact_form.php:272
|
313 |
-
#: tags/3.15/contact_form.php:135
|
314 |
-
#: tags/3.15/contact_form.php:174
|
315 |
-
#: tags/3.15/contact_form.php:205
|
316 |
-
#: tags/3.15/contact_form.php:313
|
317 |
-
#: tags/3.19/contact_form.php:137
|
318 |
-
#: tags/3.19/contact_form.php:178
|
319 |
-
#: tags/3.19/contact_form.php:211
|
320 |
-
#: tags/3.19/contact_form.php:353
|
321 |
-
#: tags/3.14/contact_form.php:130
|
322 |
-
#: tags/3.14/contact_form.php:164
|
323 |
-
#: tags/3.14/contact_form.php:182
|
324 |
-
#: tags/3.14/contact_form.php:278
|
325 |
-
#: tags/3.17/contact_form.php:136
|
326 |
-
#: tags/3.17/contact_form.php:176
|
327 |
-
#: tags/3.17/contact_form.php:208
|
328 |
-
#: tags/3.17/contact_form.php:335
|
329 |
-
#: tags/3.06/contact_form.php:131
|
330 |
-
#: tags/3.06/contact_form.php:165
|
331 |
-
#: tags/3.06/contact_form.php:182
|
332 |
-
#: tags/3.06/contact_form.php:272
|
333 |
-
#: tags/3.04/contact_form.php:131
|
334 |
-
#: tags/3.04/contact_form.php:165
|
335 |
-
#: tags/3.04/contact_form.php:182
|
336 |
-
#: tags/3.04/contact_form.php:272
|
337 |
-
#: tags/3.05/contact_form.php:131
|
338 |
-
#: tags/3.05/contact_form.php:165
|
339 |
-
#: tags/3.05/contact_form.php:182
|
340 |
-
#: tags/3.05/contact_form.php:272
|
341 |
-
#: tags/2011.3.01/contact_form.php:283
|
342 |
-
#: tags/3.16/contact_form.php:135
|
343 |
-
#: tags/3.16/contact_form.php:174
|
344 |
-
#: tags/3.16/contact_form.php:205
|
345 |
-
#: tags/3.16/contact_form.php:313
|
346 |
msgid "E-Mail Address:"
|
347 |
msgstr "Adresse e-mail:"
|
348 |
|
349 |
-
#:
|
350 |
-
#:
|
351 |
-
#:
|
352 |
-
#:
|
353 |
-
#: tags/3.13/contact_form.php:130
|
354 |
-
#: tags/3.13/contact_form.php:164
|
355 |
-
#: tags/3.13/contact_form.php:181
|
356 |
-
#: tags/3.13/contact_form.php:271
|
357 |
-
#: tags/3.07/contact_form.php:132
|
358 |
-
#: tags/3.07/contact_form.php:166
|
359 |
-
#: tags/3.07/contact_form.php:183
|
360 |
-
#: tags/3.07/contact_form.php:273
|
361 |
-
#: tags/3.15/contact_form.php:136
|
362 |
-
#: tags/3.15/contact_form.php:175
|
363 |
-
#: tags/3.15/contact_form.php:206
|
364 |
-
#: tags/3.15/contact_form.php:314
|
365 |
-
#: tags/3.19/contact_form.php:138
|
366 |
-
#: tags/3.19/contact_form.php:179
|
367 |
-
#: tags/3.19/contact_form.php:212
|
368 |
-
#: tags/3.19/contact_form.php:354
|
369 |
-
#: tags/3.14/contact_form.php:131
|
370 |
-
#: tags/3.14/contact_form.php:165
|
371 |
-
#: tags/3.14/contact_form.php:183
|
372 |
-
#: tags/3.14/contact_form.php:279
|
373 |
-
#: tags/3.17/contact_form.php:137
|
374 |
-
#: tags/3.17/contact_form.php:177
|
375 |
-
#: tags/3.17/contact_form.php:209
|
376 |
-
#: tags/3.17/contact_form.php:336
|
377 |
-
#: tags/3.06/contact_form.php:132
|
378 |
-
#: tags/3.06/contact_form.php:166
|
379 |
-
#: tags/3.06/contact_form.php:183
|
380 |
-
#: tags/3.06/contact_form.php:273
|
381 |
-
#: tags/3.04/contact_form.php:132
|
382 |
-
#: tags/3.04/contact_form.php:166
|
383 |
-
#: tags/3.04/contact_form.php:183
|
384 |
-
#: tags/3.04/contact_form.php:273
|
385 |
-
#: tags/3.05/contact_form.php:132
|
386 |
-
#: tags/3.05/contact_form.php:166
|
387 |
-
#: tags/3.05/contact_form.php:183
|
388 |
-
#: tags/3.05/contact_form.php:273
|
389 |
-
#: tags/2011.3.01/contact_form.php:293
|
390 |
-
#: tags/3.16/contact_form.php:136
|
391 |
-
#: tags/3.16/contact_form.php:175
|
392 |
-
#: tags/3.16/contact_form.php:206
|
393 |
-
#: tags/3.16/contact_form.php:314
|
394 |
msgid "Subject:"
|
395 |
msgstr "Sujet:"
|
396 |
|
397 |
-
#:
|
398 |
-
#:
|
399 |
-
#:
|
400 |
-
#:
|
401 |
-
#: tags/3.13/contact_form.php:131
|
402 |
-
#: tags/3.13/contact_form.php:165
|
403 |
-
#: tags/3.13/contact_form.php:182
|
404 |
-
#: tags/3.13/contact_form.php:272
|
405 |
-
#: tags/3.07/contact_form.php:133
|
406 |
-
#: tags/3.07/contact_form.php:167
|
407 |
-
#: tags/3.07/contact_form.php:184
|
408 |
-
#: tags/3.07/contact_form.php:274
|
409 |
-
#: tags/3.15/contact_form.php:137
|
410 |
-
#: tags/3.15/contact_form.php:176
|
411 |
-
#: tags/3.15/contact_form.php:207
|
412 |
-
#: tags/3.15/contact_form.php:315
|
413 |
-
#: tags/3.19/contact_form.php:139
|
414 |
-
#: tags/3.19/contact_form.php:180
|
415 |
-
#: tags/3.19/contact_form.php:213
|
416 |
-
#: tags/3.19/contact_form.php:355
|
417 |
-
#: tags/3.14/contact_form.php:132
|
418 |
-
#: tags/3.14/contact_form.php:166
|
419 |
-
#: tags/3.14/contact_form.php:184
|
420 |
-
#: tags/3.14/contact_form.php:280
|
421 |
-
#: tags/3.17/contact_form.php:138
|
422 |
-
#: tags/3.17/contact_form.php:178
|
423 |
-
#: tags/3.17/contact_form.php:210
|
424 |
-
#: tags/3.17/contact_form.php:337
|
425 |
-
#: tags/3.06/contact_form.php:133
|
426 |
-
#: tags/3.06/contact_form.php:167
|
427 |
-
#: tags/3.06/contact_form.php:184
|
428 |
-
#: tags/3.06/contact_form.php:274
|
429 |
-
#: tags/3.04/contact_form.php:133
|
430 |
-
#: tags/3.04/contact_form.php:167
|
431 |
-
#: tags/3.04/contact_form.php:184
|
432 |
-
#: tags/3.04/contact_form.php:274
|
433 |
-
#: tags/3.05/contact_form.php:133
|
434 |
-
#: tags/3.05/contact_form.php:167
|
435 |
-
#: tags/3.05/contact_form.php:184
|
436 |
-
#: tags/3.05/contact_form.php:274
|
437 |
-
#: tags/2011.3.01/contact_form.php:303
|
438 |
-
#: tags/3.16/contact_form.php:137
|
439 |
-
#: tags/3.16/contact_form.php:176
|
440 |
-
#: tags/3.16/contact_form.php:207
|
441 |
-
#: tags/3.16/contact_form.php:315
|
442 |
msgid "Message:"
|
443 |
msgstr "Message:"
|
444 |
|
445 |
-
#:
|
446 |
-
#:
|
447 |
-
#:
|
448 |
-
#:
|
449 |
-
#: tags/3.13/contact_form.php:132
|
450 |
-
#: tags/3.13/contact_form.php:166
|
451 |
-
#: tags/3.13/contact_form.php:183
|
452 |
-
#: tags/3.13/contact_form.php:273
|
453 |
-
#: tags/3.07/contact_form.php:134
|
454 |
-
#: tags/3.07/contact_form.php:168
|
455 |
-
#: tags/3.07/contact_form.php:185
|
456 |
-
#: tags/3.07/contact_form.php:275
|
457 |
-
#: tags/3.15/contact_form.php:138
|
458 |
-
#: tags/3.15/contact_form.php:177
|
459 |
-
#: tags/3.15/contact_form.php:208
|
460 |
-
#: tags/3.15/contact_form.php:316
|
461 |
-
#: tags/3.19/contact_form.php:140
|
462 |
-
#: tags/3.19/contact_form.php:181
|
463 |
-
#: tags/3.19/contact_form.php:214
|
464 |
-
#: tags/3.19/contact_form.php:356
|
465 |
-
#: tags/3.14/contact_form.php:133
|
466 |
-
#: tags/3.14/contact_form.php:167
|
467 |
-
#: tags/3.14/contact_form.php:185
|
468 |
-
#: tags/3.14/contact_form.php:281
|
469 |
-
#: tags/3.17/contact_form.php:139
|
470 |
-
#: tags/3.17/contact_form.php:179
|
471 |
-
#: tags/3.17/contact_form.php:211
|
472 |
-
#: tags/3.17/contact_form.php:338
|
473 |
-
#: tags/3.06/contact_form.php:134
|
474 |
-
#: tags/3.06/contact_form.php:168
|
475 |
-
#: tags/3.06/contact_form.php:185
|
476 |
-
#: tags/3.06/contact_form.php:275
|
477 |
-
#: tags/3.04/contact_form.php:134
|
478 |
-
#: tags/3.04/contact_form.php:168
|
479 |
-
#: tags/3.04/contact_form.php:185
|
480 |
-
#: tags/3.04/contact_form.php:275
|
481 |
-
#: tags/3.05/contact_form.php:134
|
482 |
-
#: tags/3.05/contact_form.php:168
|
483 |
-
#: tags/3.05/contact_form.php:185
|
484 |
-
#: tags/3.05/contact_form.php:275
|
485 |
-
#: tags/2011.3.01/contact_form.php:313
|
486 |
-
#: tags/3.16/contact_form.php:138
|
487 |
-
#: tags/3.16/contact_form.php:177
|
488 |
-
#: tags/3.16/contact_form.php:208
|
489 |
-
#: tags/3.16/contact_form.php:316
|
490 |
msgid "Attachment:"
|
491 |
msgstr "Pièce-jointe:"
|
492 |
|
493 |
-
#:
|
494 |
-
#:
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
#:
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
#:
|
503 |
-
#:
|
504 |
-
#:
|
505 |
-
#: tags/3.14/contact_form.php:202
|
506 |
-
#: tags/3.17/contact_form.php:219
|
507 |
-
#: tags/3.17/contact_form.php:228
|
508 |
-
#: tags/3.06/contact_form.php:193
|
509 |
-
#: tags/3.06/contact_form.php:202
|
510 |
-
#: tags/3.04/contact_form.php:193
|
511 |
-
#: tags/3.04/contact_form.php:202
|
512 |
-
#: tags/3.05/contact_form.php:193
|
513 |
-
#: tags/3.05/contact_form.php:202
|
514 |
-
#: tags/2011.3.01/contact_form.php:162
|
515 |
-
#: tags/2011.3.01/contact_form.php:171
|
516 |
-
#: tags/3.16/contact_form.php:216
|
517 |
-
#: tags/3.16/contact_form.php:225
|
518 |
msgid "Options saved."
|
519 |
msgstr "Options sauvegardées."
|
520 |
|
521 |
-
#:
|
522 |
-
#: tags/3.13/contact_form.php:194
|
523 |
-
#: tags/3.07/contact_form.php:196
|
524 |
-
#: tags/3.15/contact_form.php:219
|
525 |
-
#: tags/3.19/contact_form.php:230
|
526 |
-
#: tags/3.14/contact_form.php:196
|
527 |
-
#: tags/3.17/contact_form.php:222
|
528 |
-
#: tags/3.06/contact_form.php:196
|
529 |
-
#: tags/3.04/contact_form.php:196
|
530 |
-
#: tags/3.05/contact_form.php:196
|
531 |
-
#: tags/2011.3.01/contact_form.php:165
|
532 |
-
#: tags/3.16/contact_form.php:219
|
533 |
msgid "Such user is not exist. Settings are not saved."
|
534 |
msgstr "Cet utilisateur est inconnu. Les modifications ne sont pas sauvegardées."
|
535 |
|
536 |
-
#:
|
537 |
-
#: tags/3.13/contact_form.php:203
|
538 |
-
#: tags/3.07/contact_form.php:205
|
539 |
-
#: tags/3.15/contact_form.php:228
|
540 |
-
#: tags/3.19/contact_form.php:240
|
541 |
-
#: tags/3.14/contact_form.php:205
|
542 |
-
#: tags/3.17/contact_form.php:231
|
543 |
-
#: tags/3.06/contact_form.php:205
|
544 |
-
#: tags/3.04/contact_form.php:205
|
545 |
-
#: tags/3.05/contact_form.php:205
|
546 |
-
#: tags/2011.3.01/contact_form.php:174
|
547 |
-
#: tags/3.16/contact_form.php:228
|
548 |
msgid "Please input correct email. Settings are not saved."
|
549 |
msgstr "Merci de saisir une adresse e-mail valide. Les modifications ne sont pas sauvegardées."
|
550 |
|
551 |
-
#:
|
552 |
-
#: tags/3.13/contact_form.php:216
|
553 |
-
#: tags/3.15/contact_form.php:241
|
554 |
-
#: tags/3.19/contact_form.php:253
|
555 |
-
#: tags/3.14/contact_form.php:218
|
556 |
-
#: tags/3.17/contact_form.php:244
|
557 |
-
#: tags/3.16/contact_form.php:241
|
558 |
msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
|
559 |
msgstr "Si vous souhaiter ajouter un formulaire de contact à votre site web, copiez juste ce code dans un article ou sur une page ou un widget:"
|
560 |
|
561 |
-
#:
|
562 |
-
#: tags/3.13/contact_form.php:217
|
563 |
-
#: tags/3.07/contact_form.php:219
|
564 |
-
#: tags/3.15/contact_form.php:242
|
565 |
-
#: tags/3.19/contact_form.php:254
|
566 |
-
#: tags/3.14/contact_form.php:219
|
567 |
-
#: tags/3.17/contact_form.php:245
|
568 |
-
#: tags/3.06/contact_form.php:219
|
569 |
-
#: tags/3.04/contact_form.php:219
|
570 |
-
#: tags/3.05/contact_form.php:219
|
571 |
-
#: tags/2011.3.01/contact_form.php:188
|
572 |
-
#: tags/3.16/contact_form.php:242
|
573 |
msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
|
574 |
msgstr "Si les champs ci-dessous ne sont pas renseignés le message sera envoyé à l'adresse spécifiée lors de l'enregistrement."
|
575 |
|
576 |
-
#:
|
577 |
-
#: tags/3.13/contact_form.php:221
|
578 |
-
#: tags/3.07/contact_form.php:223
|
579 |
-
#: tags/3.15/contact_form.php:246
|
580 |
-
#: tags/3.19/contact_form.php:258
|
581 |
-
#: tags/3.14/contact_form.php:223
|
582 |
-
#: tags/3.17/contact_form.php:249
|
583 |
-
#: tags/3.06/contact_form.php:223
|
584 |
-
#: tags/3.04/contact_form.php:223
|
585 |
-
#: tags/3.05/contact_form.php:223
|
586 |
-
#: tags/2011.3.01/contact_form.php:192
|
587 |
-
#: tags/3.16/contact_form.php:246
|
588 |
msgid "Use email of wordpress user:"
|
589 |
msgstr "Utiliser l'e-mail du compte wordpress:"
|
590 |
|
591 |
-
#:
|
592 |
-
#: tags/3.13/contact_form.php:227
|
593 |
-
#: tags/3.07/contact_form.php:229
|
594 |
-
#: tags/3.15/contact_form.php:252
|
595 |
-
#: tags/3.19/contact_form.php:264
|
596 |
-
#: tags/3.14/contact_form.php:229
|
597 |
-
#: tags/3.17/contact_form.php:255
|
598 |
-
#: tags/3.06/contact_form.php:229
|
599 |
-
#: tags/3.04/contact_form.php:229
|
600 |
-
#: tags/3.05/contact_form.php:229
|
601 |
-
#: tags/3.16/contact_form.php:252
|
602 |
msgid "Select user name"
|
603 |
msgstr "Choisir un nom d'utilisateur"
|
604 |
|
605 |
-
#:
|
606 |
-
#: tags/3.13/contact_form.php:232
|
607 |
-
#: tags/3.07/contact_form.php:234
|
608 |
-
#: tags/3.15/contact_form.php:257
|
609 |
-
#: tags/3.19/contact_form.php:269
|
610 |
-
#: tags/3.14/contact_form.php:234
|
611 |
-
#: tags/3.17/contact_form.php:260
|
612 |
-
#: tags/3.06/contact_form.php:234
|
613 |
-
#: tags/3.16/contact_form.php:257
|
614 |
msgid "Set a name of user who will get messages from a contact form."
|
615 |
msgstr "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le formulaire de contact."
|
616 |
|
617 |
-
#:
|
618 |
-
#: tags/3.13/contact_form.php:236
|
619 |
-
#: tags/3.07/contact_form.php:238
|
620 |
-
#: tags/3.15/contact_form.php:261
|
621 |
-
#: tags/3.19/contact_form.php:273
|
622 |
-
#: tags/3.14/contact_form.php:238
|
623 |
-
#: tags/3.17/contact_form.php:264
|
624 |
-
#: tags/3.06/contact_form.php:238
|
625 |
-
#: tags/3.04/contact_form.php:238
|
626 |
-
#: tags/3.05/contact_form.php:238
|
627 |
-
#: tags/2011.3.01/contact_form.php:202
|
628 |
-
#: tags/3.16/contact_form.php:261
|
629 |
msgid "Use this email:"
|
630 |
msgstr "Utiliser cette adresse e-mail:"
|
631 |
|
632 |
-
#:
|
633 |
-
#: tags/3.13/contact_form.php:242
|
634 |
-
#: tags/3.07/contact_form.php:244
|
635 |
-
#: tags/3.15/contact_form.php:267
|
636 |
-
#: tags/3.19/contact_form.php:279
|
637 |
-
#: tags/3.14/contact_form.php:244
|
638 |
-
#: tags/3.17/contact_form.php:270
|
639 |
-
#: tags/3.06/contact_form.php:244
|
640 |
-
#: tags/3.04/contact_form.php:244
|
641 |
-
#: tags/3.05/contact_form.php:244
|
642 |
-
#: tags/2011.3.01/contact_form.php:208
|
643 |
-
#: tags/3.16/contact_form.php:267
|
644 |
msgid "Set an email address which will be used for messages receiving."
|
645 |
msgstr "Choisir l'adresse e-mail qui sera utilisée pour recevoir les messages."
|
646 |
|
647 |
-
#:
|
648 |
-
#: tags/3.13/contact_form.php:246
|
649 |
-
#: tags/3.07/contact_form.php:248
|
650 |
-
#: tags/3.15/contact_form.php:271
|
651 |
-
#: tags/3.19/contact_form.php:283
|
652 |
-
#: tags/3.14/contact_form.php:248
|
653 |
-
#: tags/3.17/contact_form.php:274
|
654 |
-
#: tags/3.06/contact_form.php:248
|
655 |
-
#: tags/3.04/contact_form.php:248
|
656 |
-
#: tags/3.05/contact_form.php:248
|
657 |
-
#: tags/2011.3.01/contact_form.php:212
|
658 |
-
#: tags/3.16/contact_form.php:271
|
659 |
msgid "Additional options"
|
660 |
msgstr "Options supplémentaires"
|
661 |
|
662 |
-
#:
|
663 |
-
#: tags/3.13/contact_form.php:249
|
664 |
-
#: tags/3.07/contact_form.php:251
|
665 |
-
#: tags/3.15/contact_form.php:274
|
666 |
-
#: tags/3.19/contact_form.php:286
|
667 |
-
#: tags/3.14/contact_form.php:251
|
668 |
-
#: tags/3.17/contact_form.php:277
|
669 |
-
#: tags/3.06/contact_form.php:251
|
670 |
-
#: tags/3.04/contact_form.php:251
|
671 |
-
#: tags/3.05/contact_form.php:251
|
672 |
-
#: tags/2011.3.01/contact_form.php:215
|
673 |
-
#: tags/3.16/contact_form.php:274
|
674 |
msgid "Display Attachment block"
|
675 |
msgstr "Afficher le bloc pièce-jointe"
|
676 |
|
677 |
-
#:
|
678 |
-
#: tags/3.13/contact_form.php:254
|
679 |
-
#: tags/3.07/contact_form.php:256
|
680 |
-
#: tags/3.15/contact_form.php:279
|
681 |
-
#: tags/3.19/contact_form.php:291
|
682 |
-
#: tags/3.14/contact_form.php:256
|
683 |
-
#: tags/3.17/contact_form.php:282
|
684 |
-
#: tags/3.06/contact_form.php:256
|
685 |
-
#: tags/3.04/contact_form.php:256
|
686 |
-
#: tags/3.05/contact_form.php:256
|
687 |
-
#: tags/3.16/contact_form.php:279
|
688 |
msgid "Users can attach files of the following types"
|
689 |
msgstr "Les utilisateurs peuvent joindre des documents des types suivants"
|
690 |
|
691 |
-
#:
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
#:
|
696 |
-
|
697 |
-
|
698 |
-
|
699 |
-
#:
|
700 |
-
#: tags/3.05/contact_form.php:260
|
701 |
-
#: tags/2011.3.01/contact_form.php:221
|
702 |
-
#: tags/3.16/contact_form.php:283
|
703 |
msgid "Display Send me a copy block"
|
704 |
msgstr "Afficher \"M'envoyer une copie\" "
|
705 |
|
706 |
-
#:
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
#:
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
#:
|
715 |
-
|
716 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
717 |
msgid "Change label for fields of the contact form"
|
718 |
msgstr "Modifier le nom des champs du formulaire de contact"
|
719 |
|
720 |
-
#:
|
721 |
-
|
722 |
-
|
723 |
-
|
724 |
-
#:
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
#:
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
#:
|
733 |
-
|
734 |
-
|
735 |
-
|
|
|
|
|
|
|
|
|
|
|
736 |
msgid "Save Changes"
|
737 |
msgstr "Sauvegarder les modifications"
|
738 |
|
739 |
-
#:
|
740 |
-
#: tags/3.13/contact_form.php:310
|
741 |
-
#: tags/3.07/contact_form.php:312
|
742 |
-
#: tags/2011.2.08/contact_form.php:260
|
743 |
-
#: tags/3.15/contact_form.php:355
|
744 |
-
#: tags/3.19/contact_form.php:395
|
745 |
-
#: tags/3.14/contact_form.php:318
|
746 |
-
#: tags/3.17/contact_form.php:377
|
747 |
-
#: tags/3.06/contact_form.php:312
|
748 |
-
#: tags/3.04/contact_form.php:312
|
749 |
-
#: tags/3.05/contact_form.php:312
|
750 |
-
#: tags/2011.3.01/contact_form.php:259
|
751 |
-
#: tags/3.16/contact_form.php:355
|
752 |
-
msgid "Thank you for contacting us."
|
753 |
-
msgstr "Merci de nous avoir contacté."
|
754 |
-
|
755 |
-
#: tags/3.12/contact_form.php:315
|
756 |
-
#: tags/3.13/contact_form.php:315
|
757 |
-
#: tags/3.07/contact_form.php:317
|
758 |
-
#: tags/2011.2.08/contact_form.php:265
|
759 |
-
#: tags/3.15/contact_form.php:360
|
760 |
-
#: tags/3.19/contact_form.php:400
|
761 |
-
#: tags/3.14/contact_form.php:323
|
762 |
-
#: tags/3.17/contact_form.php:382
|
763 |
-
#: tags/3.06/contact_form.php:317
|
764 |
-
#: tags/2011.2.04/contact_form.php:246
|
765 |
-
#: tags/3.04/contact_form.php:317
|
766 |
-
#: tags/2011.05.26/contact_form.php:161
|
767 |
-
#: tags/2011.2.03/contact_form.php:204
|
768 |
-
#: tags/3.05/contact_form.php:317
|
769 |
-
#: tags/2011.3.01/contact_form.php:264
|
770 |
-
#: tags/3.16/contact_form.php:360
|
771 |
msgid "Sorry, your e-mail could not be delivered."
|
772 |
msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
|
773 |
|
774 |
-
#:
|
775 |
-
#: tags/3.13/contact_form.php:372
|
776 |
-
#: tags/3.07/contact_form.php:374
|
777 |
-
#: tags/3.15/contact_form.php:417
|
778 |
-
#: tags/3.19/contact_form.php:458
|
779 |
-
#: tags/3.14/contact_form.php:380
|
780 |
-
#: tags/3.17/contact_form.php:439
|
781 |
-
#: tags/3.06/contact_form.php:374
|
782 |
-
#: tags/3.04/contact_form.php:374
|
783 |
-
#: tags/3.05/contact_form.php:374
|
784 |
-
#: tags/3.16/contact_form.php:417
|
785 |
msgid "You can attach files of the following types"
|
786 |
msgstr "Vous pouvez joindre des fichiers aux formats suivants"
|
787 |
|
788 |
-
#:
|
789 |
-
#: tags/3.13/contact_form.php:378
|
790 |
-
#: tags/3.07/contact_form.php:380
|
791 |
-
#: tags/3.15/contact_form.php:423
|
792 |
-
#: tags/3.19/contact_form.php:466
|
793 |
-
#: tags/3.14/contact_form.php:386
|
794 |
-
#: tags/3.17/contact_form.php:445
|
795 |
-
#: tags/3.06/contact_form.php:380
|
796 |
-
#: tags/3.04/contact_form.php:380
|
797 |
-
#: tags/3.05/contact_form.php:380
|
798 |
-
#: tags/2011.3.01/contact_form.php:325
|
799 |
-
#: tags/3.16/contact_form.php:423
|
800 |
msgid "Send me a copy"
|
801 |
msgstr "M'envoyer une copie"
|
802 |
|
803 |
-
#:
|
804 |
-
#: tags/3.13/contact_form.php:388
|
805 |
-
#: tags/3.07/contact_form.php:390
|
806 |
-
#: tags/3.15/contact_form.php:433
|
807 |
-
#: tags/3.19/contact_form.php:476
|
808 |
-
#: tags/3.14/contact_form.php:396
|
809 |
-
#: tags/3.17/contact_form.php:455
|
810 |
-
#: tags/3.06/contact_form.php:390
|
811 |
-
#: tags/3.04/contact_form.php:390
|
812 |
-
#: tags/3.05/contact_form.php:390
|
813 |
-
#: tags/2011.3.01/contact_form.php:335
|
814 |
-
#: tags/3.16/contact_form.php:433
|
815 |
msgid "Submit"
|
816 |
msgstr "Envoyer"
|
817 |
|
818 |
-
#:
|
819 |
-
#: tags/3.13/contact_form.php:404
|
820 |
-
#: tags/3.07/contact_form.php:406
|
821 |
-
#: tags/2011.2.08/contact_form.php:334
|
822 |
-
#: tags/3.15/contact_form.php:449
|
823 |
-
#: tags/3.19/contact_form.php:492
|
824 |
-
#: tags/3.14/contact_form.php:412
|
825 |
-
#: tags/3.17/contact_form.php:471
|
826 |
-
#: tags/3.06/contact_form.php:406
|
827 |
-
#: tags/2011.2.04/contact_form.php:312
|
828 |
-
#: tags/3.04/contact_form.php:406
|
829 |
-
#: tags/2011.05.26/contact_form.php:228
|
830 |
-
#: tags/2011.2.03/contact_form.php:270
|
831 |
-
#: tags/3.05/contact_form.php:406
|
832 |
-
#: tags/2011.3.01/contact_form.php:351
|
833 |
-
#: tags/3.16/contact_form.php:449
|
834 |
msgid "Your name is required."
|
835 |
msgstr "Un nom est obligatoire."
|
836 |
|
837 |
-
#:
|
838 |
-
#: tags/3.13/contact_form.php:405
|
839 |
-
#: tags/3.07/contact_form.php:407
|
840 |
-
#: tags/2011.2.08/contact_form.php:335
|
841 |
-
#: tags/3.15/contact_form.php:450
|
842 |
-
#: tags/3.19/contact_form.php:493
|
843 |
-
#: tags/3.14/contact_form.php:413
|
844 |
-
#: tags/3.17/contact_form.php:472
|
845 |
-
#: tags/3.06/contact_form.php:407
|
846 |
-
#: tags/2011.2.04/contact_form.php:313
|
847 |
-
#: tags/3.04/contact_form.php:407
|
848 |
-
#: tags/2011.05.26/contact_form.php:229
|
849 |
-
#: tags/2011.2.03/contact_form.php:271
|
850 |
-
#: tags/3.05/contact_form.php:407
|
851 |
-
#: tags/2011.3.01/contact_form.php:352
|
852 |
-
#: tags/3.16/contact_form.php:450
|
853 |
msgid "A proper e-mail address is required."
|
854 |
msgstr "Une adresse e-mail valide est obligatoire."
|
855 |
|
856 |
-
#:
|
857 |
-
#: tags/3.13/contact_form.php:406
|
858 |
-
#: tags/3.07/contact_form.php:408
|
859 |
-
#: tags/2011.2.08/contact_form.php:336
|
860 |
-
#: tags/3.15/contact_form.php:451
|
861 |
-
#: tags/3.19/contact_form.php:494
|
862 |
-
#: tags/3.14/contact_form.php:414
|
863 |
-
#: tags/3.17/contact_form.php:473
|
864 |
-
#: tags/3.06/contact_form.php:408
|
865 |
-
#: tags/2011.2.04/contact_form.php:314
|
866 |
-
#: tags/3.04/contact_form.php:408
|
867 |
-
#: tags/2011.05.26/contact_form.php:230
|
868 |
-
#: tags/2011.2.03/contact_form.php:272
|
869 |
-
#: tags/3.05/contact_form.php:408
|
870 |
-
#: tags/2011.3.01/contact_form.php:353
|
871 |
-
#: tags/3.16/contact_form.php:451
|
872 |
msgid "Subject text is required."
|
873 |
msgstr "Sujet obligatoire."
|
874 |
|
875 |
-
#:
|
876 |
-
#: tags/3.13/contact_form.php:407
|
877 |
-
#: tags/3.07/contact_form.php:409
|
878 |
-
#: tags/2011.2.08/contact_form.php:337
|
879 |
-
#: tags/3.15/contact_form.php:452
|
880 |
-
#: tags/3.19/contact_form.php:495
|
881 |
-
#: tags/3.14/contact_form.php:415
|
882 |
-
#: tags/3.17/contact_form.php:474
|
883 |
-
#: tags/3.06/contact_form.php:409
|
884 |
-
#: tags/2011.2.04/contact_form.php:315
|
885 |
-
#: tags/3.04/contact_form.php:409
|
886 |
-
#: tags/2011.05.26/contact_form.php:231
|
887 |
-
#: tags/2011.2.03/contact_form.php:273
|
888 |
-
#: tags/3.05/contact_form.php:409
|
889 |
-
#: tags/2011.3.01/contact_form.php:354
|
890 |
-
#: tags/3.16/contact_form.php:452
|
891 |
msgid "Message text is required."
|
892 |
msgstr "Un message est obligatoire."
|
893 |
|
894 |
-
#:
|
895 |
-
#: tags/3.13/contact_form.php:408
|
896 |
-
#: tags/3.07/contact_form.php:410
|
897 |
-
#: tags/2011.2.08/contact_form.php:338
|
898 |
-
#: tags/3.15/contact_form.php:453
|
899 |
-
#: tags/3.19/contact_form.php:496
|
900 |
-
#: tags/3.14/contact_form.php:416
|
901 |
-
#: tags/3.17/contact_form.php:475
|
902 |
-
#: tags/3.06/contact_form.php:410
|
903 |
-
#: tags/2011.2.04/contact_form.php:316
|
904 |
-
#: tags/3.04/contact_form.php:410
|
905 |
-
#: tags/2011.05.26/contact_form.php:232
|
906 |
-
#: tags/2011.2.03/contact_form.php:274
|
907 |
-
#: tags/3.05/contact_form.php:410
|
908 |
-
#: tags/2011.3.01/contact_form.php:355
|
909 |
-
#: tags/3.16/contact_form.php:453
|
910 |
msgid "Please make corrections below and try again."
|
911 |
msgstr "Merci de faire les corrections suivantes et de réessayer."
|
912 |
|
913 |
-
#:
|
914 |
-
#: tags/3.13/contact_form.php:439
|
915 |
-
#: tags/3.07/contact_form.php:439
|
916 |
-
#: tags/3.15/contact_form.php:484
|
917 |
-
#: tags/3.19/contact_form.php:527
|
918 |
-
#: tags/3.14/contact_form.php:447
|
919 |
-
#: tags/3.17/contact_form.php:506
|
920 |
-
#: tags/3.06/contact_form.php:439
|
921 |
-
#: tags/3.04/contact_form.php:439
|
922 |
-
#: tags/3.05/contact_form.php:439
|
923 |
-
#: tags/2011.3.01/contact_form.php:384
|
924 |
-
#: tags/3.16/contact_form.php:484
|
925 |
msgid "Attachment is broken."
|
926 |
msgstr "La pièce-jointe n'est pas valide."
|
927 |
|
928 |
-
#:
|
929 |
-
#: tags/3.13/contact_form.php:452
|
930 |
-
#: tags/3.07/contact_form.php:452
|
931 |
-
#: tags/2011.2.08/contact_form.php:350
|
932 |
-
#: tags/3.15/contact_form.php:497
|
933 |
-
#: tags/3.19/contact_form.php:540
|
934 |
-
#: tags/3.14/contact_form.php:460
|
935 |
-
#: tags/3.17/contact_form.php:519
|
936 |
-
#: tags/3.06/contact_form.php:452
|
937 |
-
#: tags/2011.2.04/contact_form.php:328
|
938 |
-
#: tags/3.04/contact_form.php:452
|
939 |
-
#: tags/2011.05.26/contact_form.php:244
|
940 |
-
#: tags/2011.2.03/contact_form.php:286
|
941 |
-
#: tags/3.05/contact_form.php:452
|
942 |
-
#: tags/2011.3.01/contact_form.php:397
|
943 |
-
#: tags/3.16/contact_form.php:497
|
944 |
msgid "Please complete the CAPTCHA."
|
945 |
msgstr "Merci de compléter le CAPTCHA."
|
946 |
|
947 |
-
#:
|
948 |
-
#: tags/3.12/contact_form.php:562
|
949 |
-
#: tags/3.13/contact_form.php:528
|
950 |
-
#: tags/3.13/contact_form.php:562
|
951 |
-
#: tags/3.07/contact_form.php:509
|
952 |
-
#: tags/3.07/contact_form.php:543
|
953 |
-
#: tags/2011.2.08/contact_form.php:389
|
954 |
-
#: tags/2011.2.08/contact_form.php:423
|
955 |
-
#: tags/3.15/contact_form.php:300
|
956 |
-
#: tags/3.15/contact_form.php:584
|
957 |
-
#: tags/3.19/contact_form.php:340
|
958 |
-
#: tags/3.19/contact_form.php:627
|
959 |
-
#: tags/3.14/contact_form.php:536
|
960 |
-
#: tags/3.14/contact_form.php:570
|
961 |
-
#: tags/3.17/contact_form.php:322
|
962 |
-
#: tags/3.17/contact_form.php:606
|
963 |
-
#: tags/3.06/contact_form.php:509
|
964 |
-
#: tags/3.06/contact_form.php:543
|
965 |
-
#: tags/3.04/contact_form.php:509
|
966 |
-
#: tags/3.04/contact_form.php:543
|
967 |
-
#: tags/3.05/contact_form.php:509
|
968 |
-
#: tags/3.05/contact_form.php:543
|
969 |
-
#: tags/2011.3.01/contact_form.php:452
|
970 |
-
#: tags/2011.3.01/contact_form.php:486
|
971 |
-
#: tags/3.16/contact_form.php:300
|
972 |
-
#: tags/3.16/contact_form.php:584
|
973 |
-
msgid "Sent from (ip address)"
|
974 |
-
msgstr "Envoyé de (adresse IP)"
|
975 |
-
|
976 |
-
#: tags/3.12/contact_form.php:529
|
977 |
-
#: tags/3.12/contact_form.php:565
|
978 |
-
#: tags/3.13/contact_form.php:529
|
979 |
-
#: tags/3.13/contact_form.php:565
|
980 |
-
#: tags/3.07/contact_form.php:510
|
981 |
-
#: tags/3.07/contact_form.php:546
|
982 |
-
#: tags/2011.2.08/contact_form.php:390
|
983 |
-
#: tags/2011.2.08/contact_form.php:426
|
984 |
-
#: tags/3.15/contact_form.php:301
|
985 |
-
#: tags/3.15/contact_form.php:589
|
986 |
-
#: tags/3.19/contact_form.php:341
|
987 |
-
#: tags/3.19/contact_form.php:632
|
988 |
-
#: tags/3.14/contact_form.php:537
|
989 |
-
#: tags/3.14/contact_form.php:573
|
990 |
-
#: tags/3.17/contact_form.php:323
|
991 |
-
#: tags/3.17/contact_form.php:611
|
992 |
-
#: tags/3.06/contact_form.php:510
|
993 |
-
#: tags/3.06/contact_form.php:546
|
994 |
-
#: tags/3.04/contact_form.php:510
|
995 |
-
#: tags/3.04/contact_form.php:546
|
996 |
-
#: tags/3.05/contact_form.php:510
|
997 |
-
#: tags/3.05/contact_form.php:546
|
998 |
-
#: tags/2011.3.01/contact_form.php:453
|
999 |
-
#: tags/2011.3.01/contact_form.php:489
|
1000 |
-
#: tags/3.16/contact_form.php:301
|
1001 |
-
#: tags/3.16/contact_form.php:589
|
1002 |
-
msgid "Date/Time"
|
1003 |
-
msgstr "Date/Heure"
|
1004 |
-
|
1005 |
-
#: tags/3.12/contact_form.php:530
|
1006 |
-
#: tags/3.12/contact_form.php:568
|
1007 |
-
#: tags/3.13/contact_form.php:530
|
1008 |
-
#: tags/3.13/contact_form.php:568
|
1009 |
-
#: tags/3.07/contact_form.php:511
|
1010 |
-
#: tags/3.07/contact_form.php:549
|
1011 |
-
#: tags/2011.2.08/contact_form.php:391
|
1012 |
-
#: tags/2011.2.08/contact_form.php:429
|
1013 |
-
#: tags/3.15/contact_form.php:302
|
1014 |
-
#: tags/3.15/contact_form.php:594
|
1015 |
-
#: tags/3.19/contact_form.php:342
|
1016 |
-
#: tags/3.19/contact_form.php:637
|
1017 |
-
#: tags/3.14/contact_form.php:538
|
1018 |
-
#: tags/3.14/contact_form.php:576
|
1019 |
-
#: tags/3.17/contact_form.php:324
|
1020 |
-
#: tags/3.17/contact_form.php:616
|
1021 |
-
#: tags/3.06/contact_form.php:511
|
1022 |
-
#: tags/3.06/contact_form.php:549
|
1023 |
-
#: tags/3.04/contact_form.php:511
|
1024 |
-
#: tags/3.04/contact_form.php:549
|
1025 |
-
#: tags/3.05/contact_form.php:511
|
1026 |
-
#: tags/3.05/contact_form.php:549
|
1027 |
-
#: tags/2011.3.01/contact_form.php:454
|
1028 |
-
#: tags/2011.3.01/contact_form.php:492
|
1029 |
-
#: tags/3.16/contact_form.php:302
|
1030 |
-
#: tags/3.16/contact_form.php:594
|
1031 |
-
msgid "Coming from (referer)"
|
1032 |
-
msgstr "Envoyer de (référence)"
|
1033 |
-
|
1034 |
-
#: tags/3.12/contact_form.php:531
|
1035 |
-
#: tags/3.12/contact_form.php:571
|
1036 |
-
#: tags/3.13/contact_form.php:531
|
1037 |
-
#: tags/3.13/contact_form.php:571
|
1038 |
-
#: tags/3.07/contact_form.php:512
|
1039 |
-
#: tags/3.07/contact_form.php:552
|
1040 |
-
#: tags/2011.2.08/contact_form.php:392
|
1041 |
-
#: tags/2011.2.08/contact_form.php:432
|
1042 |
-
#: tags/3.15/contact_form.php:303
|
1043 |
-
#: tags/3.15/contact_form.php:599
|
1044 |
-
#: tags/3.19/contact_form.php:343
|
1045 |
-
#: tags/3.19/contact_form.php:642
|
1046 |
-
#: tags/3.14/contact_form.php:539
|
1047 |
-
#: tags/3.14/contact_form.php:579
|
1048 |
-
#: tags/3.17/contact_form.php:325
|
1049 |
-
#: tags/3.17/contact_form.php:621
|
1050 |
-
#: tags/3.06/contact_form.php:512
|
1051 |
-
#: tags/3.06/contact_form.php:552
|
1052 |
-
#: tags/3.04/contact_form.php:512
|
1053 |
-
#: tags/3.04/contact_form.php:552
|
1054 |
-
#: tags/3.05/contact_form.php:512
|
1055 |
-
#: tags/3.05/contact_form.php:552
|
1056 |
-
#: tags/2011.3.01/contact_form.php:455
|
1057 |
-
#: tags/2011.3.01/contact_form.php:495
|
1058 |
-
#: tags/3.16/contact_form.php:303
|
1059 |
-
#: tags/3.16/contact_form.php:599
|
1060 |
-
msgid "Using (user agent)"
|
1061 |
-
msgstr "Depuis (navigateur)"
|
1062 |
-
|
1063 |
-
#: tags/3.12/contact_form.php:536
|
1064 |
-
#: tags/3.13/contact_form.php:536
|
1065 |
-
#: tags/3.07/contact_form.php:517
|
1066 |
-
#: tags/3.15/contact_form.php:607
|
1067 |
-
#: tags/3.19/contact_form.php:650
|
1068 |
-
#: tags/3.14/contact_form.php:544
|
1069 |
-
#: tags/3.17/contact_form.php:629
|
1070 |
-
#: tags/3.06/contact_form.php:517
|
1071 |
-
#: tags/3.04/contact_form.php:517
|
1072 |
-
#: tags/3.05/contact_form.php:517
|
1073 |
-
#: tags/2011.3.01/contact_form.php:460
|
1074 |
-
#: tags/3.16/contact_form.php:607
|
1075 |
msgid "Contact from"
|
1076 |
msgstr "Contact de"
|
1077 |
|
1078 |
-
#:
|
1079 |
-
#: tags/3.13/contact_form.php:541
|
1080 |
-
#: tags/3.07/contact_form.php:522
|
1081 |
-
#: tags/3.15/contact_form.php:612
|
1082 |
-
#: tags/3.19/contact_form.php:655
|
1083 |
-
#: tags/3.14/contact_form.php:549
|
1084 |
-
#: tags/3.17/contact_form.php:634
|
1085 |
-
#: tags/3.06/contact_form.php:522
|
1086 |
-
#: tags/3.04/contact_form.php:522
|
1087 |
-
#: tags/3.05/contact_form.php:522
|
1088 |
-
#: tags/2011.3.01/contact_form.php:465
|
1089 |
-
#: tags/3.16/contact_form.php:612
|
1090 |
msgid "Name"
|
1091 |
msgstr "Nom"
|
1092 |
|
1093 |
-
#:
|
1094 |
-
#: tags/3.13/contact_form.php:544
|
1095 |
-
#: tags/3.07/contact_form.php:525
|
1096 |
-
#: tags/3.15/contact_form.php:615
|
1097 |
-
#: tags/3.19/contact_form.php:658
|
1098 |
-
#: tags/3.14/contact_form.php:552
|
1099 |
-
#: tags/3.17/contact_form.php:637
|
1100 |
-
#: tags/3.06/contact_form.php:525
|
1101 |
-
#: tags/3.04/contact_form.php:525
|
1102 |
-
#: tags/3.05/contact_form.php:525
|
1103 |
-
#: tags/2011.3.01/contact_form.php:468
|
1104 |
-
#: tags/3.16/contact_form.php:615
|
1105 |
msgid "Email"
|
1106 |
msgstr "E-mail"
|
1107 |
|
1108 |
-
#:
|
1109 |
-
#: tags/3.13/contact_form.php:547
|
1110 |
-
#: tags/3.07/contact_form.php:528
|
1111 |
-
#: tags/3.15/contact_form.php:618
|
1112 |
-
#: tags/3.19/contact_form.php:661
|
1113 |
-
#: tags/3.14/contact_form.php:555
|
1114 |
-
#: tags/3.17/contact_form.php:640
|
1115 |
-
#: tags/3.06/contact_form.php:528
|
1116 |
-
#: tags/3.04/contact_form.php:528
|
1117 |
-
#: tags/3.05/contact_form.php:528
|
1118 |
-
#: tags/2011.3.01/contact_form.php:471
|
1119 |
-
#: tags/3.16/contact_form.php:618
|
1120 |
msgid "Subject"
|
1121 |
msgstr "Sujet"
|
1122 |
|
1123 |
-
#:
|
1124 |
-
#: tags/3.13/contact_form.php:550
|
1125 |
-
#: tags/3.07/contact_form.php:531
|
1126 |
-
#: tags/3.15/contact_form.php:621
|
1127 |
-
#: tags/3.19/contact_form.php:664
|
1128 |
-
#: tags/3.14/contact_form.php:558
|
1129 |
-
#: tags/3.17/contact_form.php:643
|
1130 |
-
#: tags/3.06/contact_form.php:531
|
1131 |
-
#: tags/3.04/contact_form.php:531
|
1132 |
-
#: tags/3.05/contact_form.php:531
|
1133 |
-
#: tags/2011.3.01/contact_form.php:474
|
1134 |
-
#: tags/3.16/contact_form.php:621
|
1135 |
msgid "Message"
|
1136 |
msgstr "Message"
|
1137 |
|
1138 |
-
#:
|
1139 |
-
#: tags/3.13/contact_form.php:553
|
1140 |
-
#: tags/3.07/contact_form.php:534
|
1141 |
-
#: tags/3.15/contact_form.php:624
|
1142 |
-
#: tags/3.19/contact_form.php:667
|
1143 |
-
#: tags/3.14/contact_form.php:561
|
1144 |
-
#: tags/3.17/contact_form.php:646
|
1145 |
-
#: tags/3.06/contact_form.php:534
|
1146 |
-
#: tags/3.04/contact_form.php:534
|
1147 |
-
#: tags/3.05/contact_form.php:534
|
1148 |
-
#: tags/2011.3.01/contact_form.php:477
|
1149 |
-
#: tags/3.16/contact_form.php:624
|
1150 |
msgid "Site"
|
1151 |
msgstr "Site"
|
1152 |
|
1153 |
-
#:
|
1154 |
-
|
1155 |
-
|
1156 |
-
|
1157 |
-
#:
|
1158 |
-
#: tags/3.19/contact_form.php:766
|
1159 |
-
#: tags/3.14/contact_form.php:621
|
1160 |
-
#: tags/3.17/contact_form.php:745
|
1161 |
-
#: tags/3.06/contact_form.php:630
|
1162 |
-
#: tags/2011.2.04/contact_form.php:412
|
1163 |
-
#: tags/3.04/contact_form.php:630
|
1164 |
-
#: tags/2011.2.03/contact_form.php:370
|
1165 |
-
#: tags/3.05/contact_form.php:630
|
1166 |
-
#: tags/2011.3.01/contact_form.php:573
|
1167 |
-
#: tags/3.16/contact_form.php:670
|
1168 |
msgid "FAQ"
|
1169 |
msgstr "FAQ"
|
1170 |
|
1171 |
-
#:
|
1172 |
-
#: tags/3.13/contact_form.php:614
|
1173 |
-
#: tags/3.07/contact_form.php:631
|
1174 |
-
#: tags/2011.2.08/contact_form.php:471
|
1175 |
-
#: tags/3.15/contact_form.php:671
|
1176 |
-
#: tags/3.19/contact_form.php:767
|
1177 |
-
#: tags/3.14/contact_form.php:622
|
1178 |
-
#: tags/3.17/contact_form.php:746
|
1179 |
-
#: tags/3.06/contact_form.php:631
|
1180 |
-
#: tags/2011.2.04/contact_form.php:413
|
1181 |
-
#: tags/3.04/contact_form.php:631
|
1182 |
-
#: tags/2011.2.03/contact_form.php:371
|
1183 |
-
#: tags/3.05/contact_form.php:631
|
1184 |
-
#: tags/2011.3.01/contact_form.php:574
|
1185 |
-
#: tags/3.16/contact_form.php:671
|
1186 |
msgid "Support"
|
1187 |
msgstr "Support"
|
1188 |
|
1189 |
-
#: tags/3.07/contact_form.php:218
|
1190 |
-
#: tags/3.06/contact_form.php:218
|
1191 |
-
#: tags/3.04/contact_form.php:218
|
1192 |
-
#: tags/3.05/contact_form.php:218
|
1193 |
-
#: tags/2011.3.01/contact_form.php:187
|
1194 |
-
#, fuzzy
|
1195 |
-
msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page:"
|
1196 |
-
msgstr "Si vous souhaiter ajouter un formulaire de contact à votre site web, copiez juste ce code dans un article ou sur une page ou un widget:"
|
1197 |
-
|
1198 |
-
#: tags/3.07/contact_form.php:575
|
1199 |
-
#: tags/3.19/contact_form.php:712
|
1200 |
-
#: tags/3.17/contact_form.php:691
|
1201 |
-
#: tags/3.06/contact_form.php:575
|
1202 |
-
#: tags/3.04/contact_form.php:575
|
1203 |
-
#: tags/3.05/contact_form.php:575
|
1204 |
-
#: tags/2011.3.01/contact_form.php:518
|
1205 |
-
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
1206 |
-
msgstr "Si vous voyez ce MIME c'est que votre navigateur n'accepte pas ce type de MIME !"
|
1207 |
-
|
1208 |
-
#: tags/2011.2.08/contact_form.php:122
|
1209 |
-
#: tags/2011.3.01/contact_form.php:95
|
1210 |
-
msgid "Install Now"
|
1211 |
-
msgstr "Installa Ora"
|
1212 |
-
|
1213 |
-
#: tags/2011.2.08/contact_form.php:135
|
1214 |
-
#: tags/2011.2.04/contact_form.php:116
|
1215 |
-
#: tags/2011.2.03/contact_form.php:74
|
1216 |
-
#: tags/2011.3.01/contact_form.php:108
|
1217 |
-
msgid "BWS Plugins"
|
1218 |
-
msgstr "BWS Plugins"
|
1219 |
-
|
1220 |
-
#: tags/3.15/contact_form.php:289
|
1221 |
-
#: tags/3.19/contact_form.php:329
|
1222 |
-
#: tags/3.14/contact_form.php:266
|
1223 |
-
#: tags/3.17/contact_form.php:311
|
1224 |
-
#: tags/3.16/contact_form.php:289
|
1225 |
-
msgid "Change FROM fields of the contact form"
|
1226 |
-
msgstr "Modifier des champs du formulaire de contact"
|
1227 |
-
|
1228 |
-
#: tags/3.15/contact_form.php:295
|
1229 |
-
#: tags/3.19/contact_form.php:335
|
1230 |
-
#: tags/3.17/contact_form.php:317
|
1231 |
-
#: tags/3.16/contact_form.php:295
|
1232 |
-
msgid "Display additional info in email"
|
1233 |
-
msgstr "Afficher les informations complémentaires dans le courriel"
|
1234 |
-
|
1235 |
-
#: tags/3.19/contact_form.php:295
|
1236 |
-
msgid "Display Attachment explanations"
|
1237 |
-
msgstr "Afficher les explications sur les pièces jointes"
|
1238 |
-
|
1239 |
-
#: tags/3.19/contact_form.php:300
|
1240 |
-
msgid "Display explanations after Attachment block"
|
1241 |
-
msgstr "Afficher les explications après le bloc des pièces jointes"
|
1242 |
-
|
1243 |
-
#: tags/3.19/contact_form.php:310
|
1244 |
-
#: tags/3.17/contact_form.php:292
|
1245 |
-
msgid "What use?"
|
1246 |
-
msgstr "Quel utilisation?"
|
1247 |
-
|
1248 |
-
#: tags/3.19/contact_form.php:315
|
1249 |
-
#: tags/3.17/contact_form.php:297
|
1250 |
-
msgid "Wp-mail"
|
1251 |
-
msgstr "Wp-mail"
|
1252 |
-
|
1253 |
-
#: tags/3.19/contact_form.php:316
|
1254 |
-
#: tags/3.17/contact_form.php:298
|
1255 |
-
msgid "To send mail you can use the wordpress wp_mail function"
|
1256 |
-
msgstr "Pour envoyer l'e-mail, vous pouvez utiliser la fonction wp_mail de wordpress"
|
1257 |
-
|
1258 |
-
#: tags/3.19/contact_form.php:324
|
1259 |
-
#: tags/3.17/contact_form.php:306
|
1260 |
-
msgid "Mail"
|
1261 |
-
msgstr "E-mail"
|
1262 |
-
|
1263 |
-
#: tags/3.19/contact_form.php:325
|
1264 |
-
#: tags/3.17/contact_form.php:307
|
1265 |
-
msgid "To send mail you can use the php mail function"
|
1266 |
-
msgstr "Pour envoyer l'e-mail, vous pouvez utiliser la fonction mail de php"
|
1267 |
-
|
1268 |
-
#: tags/2011.2.04/contact_form.php:241
|
1269 |
-
#: tags/2011.05.26/contact_form.php:156
|
1270 |
-
#: tags/2011.2.03/contact_form.php:199
|
1271 |
#, fuzzy
|
1272 |
-
msgid "
|
1273 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1274 |
|
1275 |
-
#: tags/3.04/contact_form.php:234
|
1276 |
-
#: tags/3.05/contact_form.php:234
|
1277 |
-
#: tags/2011.3.01/contact_form.php:198
|
1278 |
#, fuzzy
|
1279 |
-
msgid "
|
1280 |
-
msgstr "
|
1281 |
-
|
1282 |
-
#: trunk/contact_form.php:230
|
1283 |
-
msgid "If the option 'Redirect to page' is selected then url field should be fillied in the following format"
|
1284 |
-
msgstr ""
|
1285 |
|
1286 |
-
#: trunk/contact_form.php:374
|
1287 |
-
msgid "Action after the send mail"
|
1288 |
-
msgstr ""
|
1289 |
-
|
1290 |
-
#: trunk/contact_form.php:376
|
1291 |
#, fuzzy
|
1292 |
-
msgid "
|
1293 |
-
msgstr "
|
1294 |
-
|
1295 |
-
|
1296 |
-
msgid "Text"
|
1297 |
-
msgstr ""
|
1298 |
-
|
1299 |
-
#: trunk/contact_form.php:378
|
1300 |
-
msgid "Redirect to page"
|
1301 |
-
msgstr ""
|
1302 |
-
|
1303 |
-
#: trunk/contact_form.php:379
|
1304 |
-
msgid "Url"
|
1305 |
-
msgstr ""
|
1306 |
-
|
1307 |
#~ msgid "E-Mail Addresse:"
|
1308 |
#~ msgstr "Indirizzo e-mail:"
|
1309 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:11+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:11+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
+
"Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
|
9 |
"Language: \n"
|
10 |
"MIME-Version: 1.0\n"
|
11 |
"Content-Type: text/plain; charset=UTF-8\n"
|
18 |
"Plural-Forms: nplurals=2;plural=n>2\n"
|
19 |
"X-Poedit-SearchPath-0: .\n"
|
20 |
|
21 |
+
#: contact_form.php:76
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
msgid "Activated plugins"
|
23 |
msgstr "Plugin activé"
|
24 |
|
25 |
+
#: contact_form.php:78
|
26 |
+
#: contact_form.php:86
|
27 |
+
#: contact_form.php:94
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
msgid "Read more"
|
29 |
msgstr "Lire la suite"
|
30 |
|
31 |
+
#: contact_form.php:78
|
32 |
+
#: contact_form.php:805
|
33 |
+
#: contact_form.php:814
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
34 |
msgid "Settings"
|
35 |
msgstr "Réglages"
|
36 |
|
37 |
+
#: contact_form.php:84
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
msgid "Installed plugins"
|
39 |
msgstr "Plugin installé"
|
40 |
|
41 |
+
#: contact_form.php:92
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
42 |
msgid "Recommended plugins"
|
43 |
msgstr "Plugin recommandé"
|
44 |
|
45 |
+
#: contact_form.php:94
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
46 |
msgid "Download"
|
47 |
msgstr "Téléchargement"
|
48 |
|
49 |
+
#: contact_form.php:94
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
50 |
#, php-format
|
51 |
msgid "Install %s"
|
52 |
msgstr "%s installé"
|
53 |
|
54 |
+
#: contact_form.php:94
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
55 |
msgid "Install now from wordpress.org"
|
56 |
msgstr "Installer maintenant depuis wordpress.org"
|
57 |
|
58 |
+
#: contact_form.php:96
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
59 |
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
60 |
msgstr "Si vous avez des questions, merci de contacter plugin@bestwebsoft.com ou d'utilisez le formulaire de contact \"contact form\" sur notre site"
|
61 |
|
62 |
+
#: contact_form.php:108
|
63 |
+
#: contact_form.php:262
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
64 |
msgid "Contact Form Options"
|
65 |
msgstr "Options du Formulaire de Contact"
|
66 |
|
67 |
+
#: contact_form.php:108
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
68 |
msgid "Contact Form"
|
69 |
msgstr "Formulaire de Contact"
|
70 |
|
71 |
+
#: contact_form.php:136
|
72 |
+
#: contact_form.php:180
|
73 |
+
#: contact_form.php:216
|
74 |
+
#: contact_form.php:366
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
msgid "Name:"
|
76 |
msgstr "Nom:"
|
77 |
|
78 |
+
#: contact_form.php:137
|
79 |
+
#: contact_form.php:181
|
80 |
+
#: contact_form.php:217
|
81 |
+
#: contact_form.php:367
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
82 |
msgid "E-Mail Address:"
|
83 |
msgstr "Adresse e-mail:"
|
84 |
|
85 |
+
#: contact_form.php:138
|
86 |
+
#: contact_form.php:182
|
87 |
+
#: contact_form.php:218
|
88 |
+
#: contact_form.php:368
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
89 |
msgid "Subject:"
|
90 |
msgstr "Sujet:"
|
91 |
|
92 |
+
#: contact_form.php:139
|
93 |
+
#: contact_form.php:183
|
94 |
+
#: contact_form.php:219
|
95 |
+
#: contact_form.php:369
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
96 |
msgid "Message:"
|
97 |
msgstr "Message:"
|
98 |
|
99 |
+
#: contact_form.php:140
|
100 |
+
#: contact_form.php:184
|
101 |
+
#: contact_form.php:220
|
102 |
+
#: contact_form.php:370
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
103 |
msgid "Attachment:"
|
104 |
msgstr "Pièce-jointe:"
|
105 |
|
106 |
+
#: contact_form.php:142
|
107 |
+
#: contact_form.php:186
|
108 |
+
msgid "Thank you for contacting us."
|
109 |
+
msgstr "Merci de nous avoir contacté."
|
110 |
+
|
111 |
+
#: contact_form.php:230
|
112 |
+
msgid "If the option 'Redirect to page' is selected then url field should be fillied in the following format"
|
113 |
+
msgstr "Si l'ioption 'Rediriger vers la page' est positionnée, alors le champ Url doit être rempli avec le format suivant"
|
114 |
+
|
115 |
+
#: contact_form.php:237
|
116 |
+
#: contact_form.php:242
|
117 |
+
#: contact_form.php:251
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
118 |
msgid "Options saved."
|
119 |
msgstr "Options sauvegardées."
|
120 |
|
121 |
+
#: contact_form.php:245
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
122 |
msgid "Such user is not exist. Settings are not saved."
|
123 |
msgstr "Cet utilisateur est inconnu. Les modifications ne sont pas sauvegardées."
|
124 |
|
125 |
+
#: contact_form.php:254
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
126 |
msgid "Please input correct email. Settings are not saved."
|
127 |
msgstr "Merci de saisir une adresse e-mail valide. Les modifications ne sont pas sauvegardées."
|
128 |
|
129 |
+
#: contact_form.php:267
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
|
131 |
msgstr "Si vous souhaiter ajouter un formulaire de contact à votre site web, copiez juste ce code dans un article ou sur une page ou un widget:"
|
132 |
|
133 |
+
#: contact_form.php:268
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
134 |
msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
|
135 |
msgstr "Si les champs ci-dessous ne sont pas renseignés le message sera envoyé à l'adresse spécifiée lors de l'enregistrement."
|
136 |
|
137 |
+
#: contact_form.php:272
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
138 |
msgid "Use email of wordpress user:"
|
139 |
msgstr "Utiliser l'e-mail du compte wordpress:"
|
140 |
|
141 |
+
#: contact_form.php:278
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
142 |
msgid "Select user name"
|
143 |
msgstr "Choisir un nom d'utilisateur"
|
144 |
|
145 |
+
#: contact_form.php:283
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
146 |
msgid "Set a name of user who will get messages from a contact form."
|
147 |
msgstr "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le formulaire de contact."
|
148 |
|
149 |
+
#: contact_form.php:287
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
150 |
msgid "Use this email:"
|
151 |
msgstr "Utiliser cette adresse e-mail:"
|
152 |
|
153 |
+
#: contact_form.php:293
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
154 |
msgid "Set an email address which will be used for messages receiving."
|
155 |
msgstr "Choisir l'adresse e-mail qui sera utilisée pour recevoir les messages."
|
156 |
|
157 |
+
#: contact_form.php:297
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
158 |
msgid "Additional options"
|
159 |
msgstr "Options supplémentaires"
|
160 |
|
161 |
+
#: contact_form.php:300
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
162 |
msgid "Display Attachment block"
|
163 |
msgstr "Afficher le bloc pièce-jointe"
|
164 |
|
165 |
+
#: contact_form.php:305
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
166 |
msgid "Users can attach files of the following types"
|
167 |
msgstr "Les utilisateurs peuvent joindre des documents des types suivants"
|
168 |
|
169 |
+
#: contact_form.php:309
|
170 |
+
msgid "Display Attachment explanations"
|
171 |
+
msgstr "Afficher les explications sur les pièces jointes"
|
172 |
+
|
173 |
+
#: contact_form.php:314
|
174 |
+
msgid "Display explanations after Attachment block"
|
175 |
+
msgstr "Afficher les explications après le bloc des pièces jointes"
|
176 |
+
|
177 |
+
#: contact_form.php:318
|
|
|
|
|
|
|
178 |
msgid "Display Send me a copy block"
|
179 |
msgstr "Afficher \"M'envoyer une copie\" "
|
180 |
|
181 |
+
#: contact_form.php:324
|
182 |
+
msgid "What use?"
|
183 |
+
msgstr "Quel utilisation?"
|
184 |
+
|
185 |
+
#: contact_form.php:329
|
186 |
+
msgid "Wp-mail"
|
187 |
+
msgstr "Wp-mail"
|
188 |
+
|
189 |
+
#: contact_form.php:330
|
190 |
+
msgid "To send mail you can use the wordpress wp_mail function"
|
191 |
+
msgstr "Pour envoyer l'e-mail, vous pouvez utiliser la fonction wp_mail de wordpress"
|
192 |
+
|
193 |
+
#: contact_form.php:338
|
194 |
+
msgid "Mail"
|
195 |
+
msgstr "E-mail"
|
196 |
+
|
197 |
+
#: contact_form.php:339
|
198 |
+
msgid "To send mail you can use the php mail function"
|
199 |
+
msgstr "Pour envoyer l'e-mail, vous pouvez utiliser la fonction mail de php"
|
200 |
+
|
201 |
+
#: contact_form.php:343
|
202 |
+
msgid "Change FROM fields of the contact form"
|
203 |
+
msgstr "Modifier des champs du formulaire de contact"
|
204 |
+
|
205 |
+
#: contact_form.php:349
|
206 |
+
msgid "Display additional info in email"
|
207 |
+
msgstr "Afficher les informations complémentaires dans le courriel"
|
208 |
+
|
209 |
+
#: contact_form.php:354
|
210 |
+
#: contact_form.php:676
|
211 |
+
msgid "Sent from (ip address)"
|
212 |
+
msgstr "Envoyé de (adresse IP)"
|
213 |
+
|
214 |
+
#: contact_form.php:355
|
215 |
+
#: contact_form.php:681
|
216 |
+
msgid "Date/Time"
|
217 |
+
msgstr "Date/Heure"
|
218 |
+
|
219 |
+
#: contact_form.php:356
|
220 |
+
#: contact_form.php:686
|
221 |
+
msgid "Coming from (referer)"
|
222 |
+
msgstr "Envoyer de (référence)"
|
223 |
+
|
224 |
+
#: contact_form.php:357
|
225 |
+
#: contact_form.php:691
|
226 |
+
msgid "Using (user agent)"
|
227 |
+
msgstr "Depuis (navigateur)"
|
228 |
+
|
229 |
+
#: contact_form.php:361
|
230 |
msgid "Change label for fields of the contact form"
|
231 |
msgstr "Modifier le nom des champs du formulaire de contact"
|
232 |
|
233 |
+
#: contact_form.php:374
|
234 |
+
msgid "Action after the send mail"
|
235 |
+
msgstr "Action après l'envoie de l'e-mail"
|
236 |
+
|
237 |
+
#: contact_form.php:376
|
238 |
+
msgid "Display text"
|
239 |
+
msgstr "Afficher le texte"
|
240 |
+
|
241 |
+
#: contact_form.php:377
|
242 |
+
msgid "Text"
|
243 |
+
msgstr "Texte"
|
244 |
+
|
245 |
+
#: contact_form.php:378
|
246 |
+
msgid "Redirect to page"
|
247 |
+
msgstr "Rediriger vers la page"
|
248 |
+
|
249 |
+
#: contact_form.php:379
|
250 |
+
msgid "Url"
|
251 |
+
msgstr "Url"
|
252 |
+
|
253 |
+
#: contact_form.php:384
|
254 |
msgid "Save Changes"
|
255 |
msgstr "Sauvegarder les modifications"
|
256 |
|
257 |
+
#: contact_form.php:420
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
|
260 |
|
261 |
+
#: contact_form.php:478
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "Vous pouvez joindre des fichiers aux formats suivants"
|
264 |
|
265 |
+
#: contact_form.php:486
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "M'envoyer une copie"
|
268 |
|
269 |
+
#: contact_form.php:496
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
270 |
msgid "Submit"
|
271 |
msgstr "Envoyer"
|
272 |
|
273 |
+
#: contact_form.php:535
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
274 |
msgid "Your name is required."
|
275 |
msgstr "Un nom est obligatoire."
|
276 |
|
277 |
+
#: contact_form.php:536
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "Une adresse e-mail valide est obligatoire."
|
280 |
|
281 |
+
#: contact_form.php:537
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "Sujet obligatoire."
|
284 |
|
285 |
+
#: contact_form.php:538
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
286 |
msgid "Message text is required."
|
287 |
msgstr "Un message est obligatoire."
|
288 |
|
289 |
+
#: contact_form.php:539
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "Merci de faire les corrections suivantes et de réessayer."
|
292 |
|
293 |
+
#: contact_form.php:570
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "La pièce-jointe n'est pas valide."
|
296 |
|
297 |
+
#: contact_form.php:583
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "Merci de compléter le CAPTCHA."
|
300 |
|
301 |
+
#: contact_form.php:699
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
302 |
msgid "Contact from"
|
303 |
msgstr "Contact de"
|
304 |
|
305 |
+
#: contact_form.php:704
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
306 |
msgid "Name"
|
307 |
msgstr "Nom"
|
308 |
|
309 |
+
#: contact_form.php:707
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
310 |
msgid "Email"
|
311 |
msgstr "E-mail"
|
312 |
|
313 |
+
#: contact_form.php:710
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
314 |
msgid "Subject"
|
315 |
msgstr "Sujet"
|
316 |
|
317 |
+
#: contact_form.php:713
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
318 |
msgid "Message"
|
319 |
msgstr "Message"
|
320 |
|
321 |
+
#: contact_form.php:716
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
322 |
msgid "Site"
|
323 |
msgstr "Site"
|
324 |
|
325 |
+
#: contact_form.php:761
|
326 |
+
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
+
msgstr "Si vous voyez ce MIME c'est que votre navigateur n'accepte pas ce type de MIME !"
|
328 |
+
|
329 |
+
#: contact_form.php:815
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
330 |
msgid "FAQ"
|
331 |
msgstr "FAQ"
|
332 |
|
333 |
+
#: contact_form.php:816
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
334 |
msgid "Support"
|
335 |
msgstr "Support"
|
336 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
337 |
#, fuzzy
|
338 |
+
#~ msgid ""
|
339 |
+
#~ "If you would like to add a Contact Form to your website, just copy and "
|
340 |
+
#~ "put this shortcode onto your post or page:"
|
341 |
+
#~ msgstr ""
|
342 |
+
#~ "Si vous souhaiter ajouter un formulaire de contact à votre site web, "
|
343 |
+
#~ "copiez juste ce code dans un article ou sur une page ou un widget:"
|
344 |
+
#~ msgid "Install Now"
|
345 |
+
#~ msgstr "Installa Ora"
|
346 |
+
#~ msgid "BWS Plugins"
|
347 |
+
#~ msgstr "BWS Plugins"
|
348 |
|
|
|
|
|
|
|
349 |
#, fuzzy
|
350 |
+
#~ msgid "Thank you for contact."
|
351 |
+
#~ msgstr "Merci de nous avoir contacté."
|
|
|
|
|
|
|
|
|
352 |
|
|
|
|
|
|
|
|
|
|
|
353 |
#, fuzzy
|
354 |
+
#~ msgid "Set a name of user wo will get messages from a contact form."
|
355 |
+
#~ msgstr ""
|
356 |
+
#~ "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le "
|
357 |
+
#~ "formulaire de contact."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
358 |
#~ msgid "E-Mail Addresse:"
|
359 |
#~ msgstr "Indirizzo e-mail:"
|
360 |
|
languages/contact_form-he_IL.mo
ADDED
Binary file
|
languages/contact_form-he_IL.po
ADDED
@@ -0,0 +1,409 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: Contact Form Plugin v3.20\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:11+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:11+0300\n"
|
7 |
+
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
+
"Language-Team: \n"
|
9 |
+
"Language: \n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
14 |
+
"X-Poedit-Language: Hebrew\n"
|
15 |
+
"X-Poedit-Country: ISRAEL\n"
|
16 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
17 |
+
"X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
|
18 |
+
"X-Poedit-Basepath: ../\n"
|
19 |
+
"X-Textdomain-Support: yes\n"
|
20 |
+
"X-Poedit-SearchPath-0: .\n"
|
21 |
+
|
22 |
+
# @ contact_form
|
23 |
+
#: contact_form.php:76
|
24 |
+
msgid "Activated plugins"
|
25 |
+
msgstr "תוספים פעילים"
|
26 |
+
|
27 |
+
# @ contact_form
|
28 |
+
#: contact_form.php:78
|
29 |
+
#: contact_form.php:86
|
30 |
+
#: contact_form.php:94
|
31 |
+
msgid "Read more"
|
32 |
+
msgstr "קרא עוד"
|
33 |
+
|
34 |
+
# @ contact_form
|
35 |
+
#: contact_form.php:78
|
36 |
+
#: contact_form.php:805
|
37 |
+
#: contact_form.php:814
|
38 |
+
msgid "Settings"
|
39 |
+
msgstr "הגדרות"
|
40 |
+
|
41 |
+
# @ contact_form
|
42 |
+
#: contact_form.php:84
|
43 |
+
msgid "Installed plugins"
|
44 |
+
msgstr "תוספים מותקנים"
|
45 |
+
|
46 |
+
# @ contact_form
|
47 |
+
#: contact_form.php:92
|
48 |
+
msgid "Recommended plugins"
|
49 |
+
msgstr "תוספים מומלצים"
|
50 |
+
|
51 |
+
# @ contact_form
|
52 |
+
#: contact_form.php:94
|
53 |
+
msgid "Download"
|
54 |
+
msgstr "הורד"
|
55 |
+
|
56 |
+
# @ default
|
57 |
+
#: contact_form.php:94
|
58 |
+
#, php-format
|
59 |
+
msgid "Install %s"
|
60 |
+
msgstr ""
|
61 |
+
|
62 |
+
# @ contact_form
|
63 |
+
#: contact_form.php:94
|
64 |
+
msgid "Install now from wordpress.org"
|
65 |
+
msgstr "התקן כעת מ wordpress.org"
|
66 |
+
|
67 |
+
# @ contact_form
|
68 |
+
#: contact_form.php:96
|
69 |
+
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
70 |
+
msgstr "אם יש לך שאלות כלשהן, אנא צור עמנו קשר דרך plugin@bestwebsoft.com או שתמלא את טופס יצירת הקשר באתר שלנו"
|
71 |
+
|
72 |
+
# @ contact_form
|
73 |
+
#: contact_form.php:108
|
74 |
+
#: contact_form.php:262
|
75 |
+
msgid "Contact Form Options"
|
76 |
+
msgstr "אפשרויות טופס צור קשר"
|
77 |
+
|
78 |
+
# @ contact_form
|
79 |
+
#: contact_form.php:108
|
80 |
+
msgid "Contact Form"
|
81 |
+
msgstr "טופס צור קשר"
|
82 |
+
|
83 |
+
# @ contact_form
|
84 |
+
#: contact_form.php:136
|
85 |
+
#: contact_form.php:180
|
86 |
+
#: contact_form.php:216
|
87 |
+
#: contact_form.php:366
|
88 |
+
msgid "Name:"
|
89 |
+
msgstr "שם:"
|
90 |
+
|
91 |
+
# @ contact_form
|
92 |
+
#: contact_form.php:137
|
93 |
+
#: contact_form.php:181
|
94 |
+
#: contact_form.php:217
|
95 |
+
#: contact_form.php:367
|
96 |
+
msgid "E-Mail Address:"
|
97 |
+
msgstr "כתובת דוא\\\"ל:"
|
98 |
+
|
99 |
+
# @ contact_form
|
100 |
+
#: contact_form.php:138
|
101 |
+
#: contact_form.php:182
|
102 |
+
#: contact_form.php:218
|
103 |
+
#: contact_form.php:368
|
104 |
+
msgid "Subject:"
|
105 |
+
msgstr "נושא:"
|
106 |
+
|
107 |
+
# @ contact_form
|
108 |
+
#: contact_form.php:139
|
109 |
+
#: contact_form.php:183
|
110 |
+
#: contact_form.php:219
|
111 |
+
#: contact_form.php:369
|
112 |
+
msgid "Message:"
|
113 |
+
msgstr "הודעה:"
|
114 |
+
|
115 |
+
# @ contact_form
|
116 |
+
#: contact_form.php:140
|
117 |
+
#: contact_form.php:184
|
118 |
+
#: contact_form.php:220
|
119 |
+
#: contact_form.php:370
|
120 |
+
msgid "Attachment:"
|
121 |
+
msgstr "קובץ מצורף:"
|
122 |
+
|
123 |
+
# @ contact_form
|
124 |
+
#: contact_form.php:142
|
125 |
+
#: contact_form.php:186
|
126 |
+
msgid "Thank you for contacting us."
|
127 |
+
msgstr "תודה שיצרת עמנו קשר."
|
128 |
+
|
129 |
+
# @ contact_form
|
130 |
+
#: contact_form.php:230
|
131 |
+
msgid "If the option 'Redirect to page' is selected then url field should be fillied in the following format"
|
132 |
+
msgstr "אם האפשרות 'הפנה מחדש לדף' מסומנת אז חייבים למלא את שדה כתובת ה URL בפורמט הבא"
|
133 |
+
|
134 |
+
# @ contact_form
|
135 |
+
#: contact_form.php:237
|
136 |
+
#: contact_form.php:242
|
137 |
+
#: contact_form.php:251
|
138 |
+
msgid "Options saved."
|
139 |
+
msgstr "האפשרויות נשמרו."
|
140 |
+
|
141 |
+
# @ contact_form
|
142 |
+
#: contact_form.php:245
|
143 |
+
msgid "Such user is not exist. Settings are not saved."
|
144 |
+
msgstr "משתמש כזה אינו קיים. ההגדרות לא נשמרו."
|
145 |
+
|
146 |
+
# @ contact_form
|
147 |
+
#: contact_form.php:254
|
148 |
+
msgid "Please input correct email. Settings are not saved."
|
149 |
+
msgstr "בבקשה הזן כתובת מייל נכונה. ההגדרות לא נשמרו."
|
150 |
+
|
151 |
+
# @ contact_form
|
152 |
+
#: contact_form.php:267
|
153 |
+
msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
|
154 |
+
msgstr "אם אתה מעוניין להוסיף טופס צור קשר לאתר שלך, פשוט העתק את קיצור הקוד שלהלן אל הפוסט או הדף או הוידג'ט שלך:"
|
155 |
+
|
156 |
+
# @ contact_form
|
157 |
+
#: contact_form.php:268
|
158 |
+
msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
|
159 |
+
msgstr "אם השדות שלהלן ריקים, אז המייל יישלח אל לכתובת שצוינה בעת ההרשמה."
|
160 |
+
|
161 |
+
# @ contact_form
|
162 |
+
#: contact_form.php:272
|
163 |
+
msgid "Use email of wordpress user:"
|
164 |
+
msgstr "השתמש במייל של משתמש וורדפרס:"
|
165 |
+
|
166 |
+
# @ contact_form
|
167 |
+
#: contact_form.php:278
|
168 |
+
msgid "Select user name"
|
169 |
+
msgstr "בחר שם משתמש"
|
170 |
+
|
171 |
+
# @ contact_form
|
172 |
+
#: contact_form.php:283
|
173 |
+
msgid "Set a name of user who will get messages from a contact form."
|
174 |
+
msgstr "הגדר שם משתמש, אשר יקבל את ההודעות הנשלחות דרך טופס יצירת הקשר."
|
175 |
+
|
176 |
+
# @ contact_form
|
177 |
+
#: contact_form.php:287
|
178 |
+
msgid "Use this email:"
|
179 |
+
msgstr "השתמש במייל זה:"
|
180 |
+
|
181 |
+
# @ contact_form
|
182 |
+
#: contact_form.php:293
|
183 |
+
msgid "Set an email address which will be used for messages receiving."
|
184 |
+
msgstr "הגדר כתובת מייל שתשמש לקבלת הודעות."
|
185 |
+
|
186 |
+
# @ contact_form
|
187 |
+
#: contact_form.php:297
|
188 |
+
msgid "Additional options"
|
189 |
+
msgstr "אפשרויות נוספות"
|
190 |
+
|
191 |
+
# @ contact_form
|
192 |
+
#: contact_form.php:300
|
193 |
+
msgid "Display Attachment block"
|
194 |
+
msgstr "הצג אפשרות קובץ מצורף"
|
195 |
+
|
196 |
+
# @ contact_form
|
197 |
+
#: contact_form.php:305
|
198 |
+
msgid "Users can attach files of the following types"
|
199 |
+
msgstr "משתמשים יוכלו לצרף קבצים מהסוגים הבאים"
|
200 |
+
|
201 |
+
# @ contact_form
|
202 |
+
#: contact_form.php:309
|
203 |
+
msgid "Display Attachment explanations"
|
204 |
+
msgstr "הצג הסברי קובץ מצורף"
|
205 |
+
|
206 |
+
# @ contact_form
|
207 |
+
#: contact_form.php:314
|
208 |
+
msgid "Display explanations after Attachment block"
|
209 |
+
msgstr "הצג את ההסברים אחרי תיבת הקובץ המצורף"
|
210 |
+
|
211 |
+
# @ contact_form
|
212 |
+
#: contact_form.php:318
|
213 |
+
msgid "Display Send me a copy block"
|
214 |
+
msgstr "הצג תיבת שלח לי עותק"
|
215 |
+
|
216 |
+
# @ contact_form
|
217 |
+
#: contact_form.php:324
|
218 |
+
msgid "What use?"
|
219 |
+
msgstr "איזה שימוש?"
|
220 |
+
|
221 |
+
# @ mail-send
|
222 |
+
#: contact_form.php:329
|
223 |
+
msgid "Wp-mail"
|
224 |
+
msgstr ""
|
225 |
+
|
226 |
+
# @ mail_send
|
227 |
+
#: contact_form.php:330
|
228 |
+
msgid "To send mail you can use the wordpress wp_mail function"
|
229 |
+
msgstr ""
|
230 |
+
|
231 |
+
# @ mail-send
|
232 |
+
#: contact_form.php:338
|
233 |
+
msgid "Mail"
|
234 |
+
msgstr ""
|
235 |
+
|
236 |
+
# @ mail_send
|
237 |
+
#: contact_form.php:339
|
238 |
+
msgid "To send mail you can use the php mail function"
|
239 |
+
msgstr ""
|
240 |
+
|
241 |
+
# @ contact_form
|
242 |
+
#: contact_form.php:343
|
243 |
+
msgid "Change FROM fields of the contact form"
|
244 |
+
msgstr "שנה את השדות של טופס יצירת הקשר"
|
245 |
+
|
246 |
+
# @ contact_form
|
247 |
+
#: contact_form.php:349
|
248 |
+
msgid "Display additional info in email"
|
249 |
+
msgstr "הצג מידע נוסף במייל"
|
250 |
+
|
251 |
+
# @ contact_form
|
252 |
+
#: contact_form.php:354
|
253 |
+
#: contact_form.php:676
|
254 |
+
msgid "Sent from (ip address)"
|
255 |
+
msgstr "נשלח מ (כתובת IP)"
|
256 |
+
|
257 |
+
# @ contact_form
|
258 |
+
#: contact_form.php:355
|
259 |
+
#: contact_form.php:681
|
260 |
+
msgid "Date/Time"
|
261 |
+
msgstr "תאריך\\שעה"
|
262 |
+
|
263 |
+
# @ contact_form
|
264 |
+
#: contact_form.php:356
|
265 |
+
#: contact_form.php:686
|
266 |
+
msgid "Coming from (referer)"
|
267 |
+
msgstr "מגיע מ (השולח)"
|
268 |
+
|
269 |
+
# @ contact_form
|
270 |
+
#: contact_form.php:357
|
271 |
+
#: contact_form.php:691
|
272 |
+
msgid "Using (user agent)"
|
273 |
+
msgstr "משתמש ב (user agent)"
|
274 |
+
|
275 |
+
# @ contact_form
|
276 |
+
#: contact_form.php:361
|
277 |
+
msgid "Change label for fields of the contact form"
|
278 |
+
msgstr "שנה את תוויות הטופס"
|
279 |
+
|
280 |
+
# @ contact_form
|
281 |
+
#: contact_form.php:374
|
282 |
+
msgid "Action after the send mail"
|
283 |
+
msgstr "הפעולה שלאחר שליחת הטופס"
|
284 |
+
|
285 |
+
# @ contact_form
|
286 |
+
#: contact_form.php:376
|
287 |
+
msgid "Display text"
|
288 |
+
msgstr "הטקסט המוצג"
|
289 |
+
|
290 |
+
# @ contact_form
|
291 |
+
#: contact_form.php:377
|
292 |
+
msgid "Text"
|
293 |
+
msgstr "טקסט"
|
294 |
+
|
295 |
+
# @ contact_form
|
296 |
+
#: contact_form.php:378
|
297 |
+
msgid "Redirect to page"
|
298 |
+
msgstr "הפנה אל הדף"
|
299 |
+
|
300 |
+
# @ contact_form
|
301 |
+
#: contact_form.php:379
|
302 |
+
msgid "Url"
|
303 |
+
msgstr "URL"
|
304 |
+
|
305 |
+
# @ default
|
306 |
+
#: contact_form.php:384
|
307 |
+
msgid "Save Changes"
|
308 |
+
msgstr ""
|
309 |
+
|
310 |
+
# @ contact_form
|
311 |
+
#: contact_form.php:420
|
312 |
+
msgid "Sorry, your e-mail could not be delivered."
|
313 |
+
msgstr "מצטערים, אי אפשר היה לשלוח את המייל שלך."
|
314 |
+
|
315 |
+
# @ contact_form
|
316 |
+
#: contact_form.php:478
|
317 |
+
msgid "You can attach files of the following types"
|
318 |
+
msgstr "אתה יכול לצרף קבצים מן הסוגים הבאים"
|
319 |
+
|
320 |
+
# @ contact_form
|
321 |
+
#: contact_form.php:486
|
322 |
+
msgid "Send me a copy"
|
323 |
+
msgstr "שלח לי עותק"
|
324 |
+
|
325 |
+
# @ contact_form
|
326 |
+
#: contact_form.php:496
|
327 |
+
msgid "Submit"
|
328 |
+
msgstr "שלח"
|
329 |
+
|
330 |
+
# @ contact_form
|
331 |
+
#: contact_form.php:535
|
332 |
+
msgid "Your name is required."
|
333 |
+
msgstr "השם שלך הכרחי."
|
334 |
+
|
335 |
+
# @ contact_form
|
336 |
+
#: contact_form.php:536
|
337 |
+
msgid "A proper e-mail address is required."
|
338 |
+
msgstr "כתובת מייל תקנית הכרחית."
|
339 |
+
|
340 |
+
# @ contact_form
|
341 |
+
#: contact_form.php:537
|
342 |
+
msgid "Subject text is required."
|
343 |
+
msgstr "הנושא הכרחי."
|
344 |
+
|
345 |
+
# @ contact_form
|
346 |
+
#: contact_form.php:538
|
347 |
+
msgid "Message text is required."
|
348 |
+
msgstr "מילוי שדה ההודעה הכרחי."
|
349 |
+
|
350 |
+
# @ contact_form
|
351 |
+
#: contact_form.php:539
|
352 |
+
msgid "Please make corrections below and try again."
|
353 |
+
msgstr "אנא עשה תיקונים להלן ונסה שוב."
|
354 |
+
|
355 |
+
# @ contact_form
|
356 |
+
#: contact_form.php:570
|
357 |
+
msgid "Attachment is broken."
|
358 |
+
msgstr "הקובץ המצורף שבור"
|
359 |
+
|
360 |
+
# @ contact_form
|
361 |
+
#: contact_form.php:583
|
362 |
+
msgid "Please complete the CAPTCHA."
|
363 |
+
msgstr "אנא השלם את קוד האימות."
|
364 |
+
|
365 |
+
# @ contact_form
|
366 |
+
#: contact_form.php:699
|
367 |
+
msgid "Contact from"
|
368 |
+
msgstr "טופס צור קשר"
|
369 |
+
|
370 |
+
# @ contact_form
|
371 |
+
#: contact_form.php:704
|
372 |
+
msgid "Name"
|
373 |
+
msgstr "שם"
|
374 |
+
|
375 |
+
# @ contact_form
|
376 |
+
#: contact_form.php:707
|
377 |
+
msgid "Email"
|
378 |
+
msgstr "כתובת מייל"
|
379 |
+
|
380 |
+
# @ contact_form
|
381 |
+
#: contact_form.php:710
|
382 |
+
msgid "Subject"
|
383 |
+
msgstr "נושא"
|
384 |
+
|
385 |
+
# @ contact_form
|
386 |
+
#: contact_form.php:713
|
387 |
+
msgid "Message"
|
388 |
+
msgstr "תוכן ההודעה"
|
389 |
+
|
390 |
+
# @ contact_form
|
391 |
+
#: contact_form.php:716
|
392 |
+
msgid "Site"
|
393 |
+
msgstr "אתר"
|
394 |
+
|
395 |
+
# @ contact_form
|
396 |
+
#: contact_form.php:761
|
397 |
+
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
398 |
+
msgstr "אם אתה יכול לראות את ה MIME הזה, אז הלקוח שלך אינו יכול לקבל סוגי MIME!"
|
399 |
+
|
400 |
+
# @ contact_form
|
401 |
+
#: contact_form.php:815
|
402 |
+
msgid "FAQ"
|
403 |
+
msgstr "שאלות ותשובות"
|
404 |
+
|
405 |
+
# @ contact_form
|
406 |
+
#: contact_form.php:816
|
407 |
+
msgid "Support"
|
408 |
+
msgstr "תמיכה"
|
409 |
+
|
languages/contact_form-hi_IN.mo
CHANGED
Binary file
|
languages/contact_form-hi_IN.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Team Outshine <ash.pr@outshinesolutions.com>\n"
|
9 |
"Language: \n"
|
@@ -28,8 +28,8 @@ msgid "Read more"
|
|
28 |
msgstr "अधिक पढ़ें"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
-
#: contact_form.php:
|
32 |
-
#: contact_form.php:
|
33 |
msgid "Settings"
|
34 |
msgstr "सेटिंग्स"
|
35 |
|
@@ -206,22 +206,22 @@ msgid "Display additional info in email"
|
|
206 |
msgstr "ईमेल में अतिरिक्त जानकारी प्रदर्शित करें"
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
-
#: contact_form.php:
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "(आईपी पते से भेजा गया)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
-
#: contact_form.php:
|
215 |
msgid "Date/Time"
|
216 |
msgstr "दिनांक / समय"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
-
#: contact_form.php:
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "से आ रहा है (referer)"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
-
#: contact_form.php:
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "उपयोग करना (प्रयोक्ता एजेंट)"
|
227 |
|
@@ -254,83 +254,83 @@ msgstr ""
|
|
254 |
msgid "Save Changes"
|
255 |
msgstr "परिवर्तन सहेजें"
|
256 |
|
257 |
-
#: contact_form.php:
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "क्षमा करें, आपका ई - मेल वितरित नहीं किया जा सकता है."
|
260 |
|
261 |
-
#: contact_form.php:
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "आप निम्न प्रकार का फ़ाइलों को संलग्न कर सकते हैं"
|
264 |
|
265 |
-
#: contact_form.php:
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "मुझे एक प्रतिलिपि भेजें"
|
268 |
|
269 |
-
#: contact_form.php:
|
270 |
msgid "Submit"
|
271 |
msgstr "सबमिट"
|
272 |
|
273 |
-
#: contact_form.php:
|
274 |
msgid "Your name is required."
|
275 |
msgstr "आपका नाम की आवश्यकता है."
|
276 |
|
277 |
-
#: contact_form.php:
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "एक उचित ई - मेल पते की आवश्यकता है."
|
280 |
|
281 |
-
#: contact_form.php:
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "विषय पाठ की आवश्यकता होती है"
|
284 |
|
285 |
-
#: contact_form.php:
|
286 |
msgid "Message text is required."
|
287 |
msgstr "संदेश पाठ की आवश्यकता है."
|
288 |
|
289 |
-
#: contact_form.php:
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "सुधार नीचे बनाने के लिए और फिर प्रयास करें"
|
292 |
|
293 |
-
#: contact_form.php:
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "अटैचमेंट टूटा ."
|
296 |
|
297 |
-
#: contact_form.php:
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "कॅप्चा पूरा करें."
|
300 |
|
301 |
-
#: contact_form.php:
|
302 |
msgid "Contact from"
|
303 |
msgstr "संपर्क करें"
|
304 |
|
305 |
-
#: contact_form.php:
|
306 |
msgid "Name"
|
307 |
msgstr "नाम"
|
308 |
|
309 |
-
#: contact_form.php:
|
310 |
msgid "Email"
|
311 |
msgstr "ईमेल"
|
312 |
|
313 |
-
#: contact_form.php:
|
314 |
msgid "Subject"
|
315 |
msgstr "विषय"
|
316 |
|
317 |
-
#: contact_form.php:
|
318 |
msgid "Message"
|
319 |
msgstr "संदेश"
|
320 |
|
321 |
-
#: contact_form.php:
|
322 |
msgid "Site"
|
323 |
msgstr "साइट"
|
324 |
|
325 |
-
#: contact_form.php:
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "यदि आप अपने ग्राहक की तुलना में इस माइम देख सकते हैं MIME प्रकार स्वीकार नहीं करता है!"
|
328 |
|
329 |
-
#: contact_form.php:
|
330 |
msgid "FAQ"
|
331 |
msgstr "अक्सर पूछे जाने वाले प्रश्न"
|
332 |
|
333 |
-
#: contact_form.php:
|
334 |
msgid "Support"
|
335 |
msgstr "समर्थन"
|
336 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:11+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:11+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Team Outshine <ash.pr@outshinesolutions.com>\n"
|
9 |
"Language: \n"
|
28 |
msgstr "अधिक पढ़ें"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
+
#: contact_form.php:805
|
32 |
+
#: contact_form.php:814
|
33 |
msgid "Settings"
|
34 |
msgstr "सेटिंग्स"
|
35 |
|
206 |
msgstr "ईमेल में अतिरिक्त जानकारी प्रदर्शित करें"
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
+
#: contact_form.php:676
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "(आईपी पते से भेजा गया)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
+
#: contact_form.php:681
|
215 |
msgid "Date/Time"
|
216 |
msgstr "दिनांक / समय"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
+
#: contact_form.php:686
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "से आ रहा है (referer)"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
+
#: contact_form.php:691
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "उपयोग करना (प्रयोक्ता एजेंट)"
|
227 |
|
254 |
msgid "Save Changes"
|
255 |
msgstr "परिवर्तन सहेजें"
|
256 |
|
257 |
+
#: contact_form.php:420
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "क्षमा करें, आपका ई - मेल वितरित नहीं किया जा सकता है."
|
260 |
|
261 |
+
#: contact_form.php:478
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "आप निम्न प्रकार का फ़ाइलों को संलग्न कर सकते हैं"
|
264 |
|
265 |
+
#: contact_form.php:486
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "मुझे एक प्रतिलिपि भेजें"
|
268 |
|
269 |
+
#: contact_form.php:496
|
270 |
msgid "Submit"
|
271 |
msgstr "सबमिट"
|
272 |
|
273 |
+
#: contact_form.php:535
|
274 |
msgid "Your name is required."
|
275 |
msgstr "आपका नाम की आवश्यकता है."
|
276 |
|
277 |
+
#: contact_form.php:536
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "एक उचित ई - मेल पते की आवश्यकता है."
|
280 |
|
281 |
+
#: contact_form.php:537
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "विषय पाठ की आवश्यकता होती है"
|
284 |
|
285 |
+
#: contact_form.php:538
|
286 |
msgid "Message text is required."
|
287 |
msgstr "संदेश पाठ की आवश्यकता है."
|
288 |
|
289 |
+
#: contact_form.php:539
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "सुधार नीचे बनाने के लिए और फिर प्रयास करें"
|
292 |
|
293 |
+
#: contact_form.php:570
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "अटैचमेंट टूटा ."
|
296 |
|
297 |
+
#: contact_form.php:583
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "कॅप्चा पूरा करें."
|
300 |
|
301 |
+
#: contact_form.php:699
|
302 |
msgid "Contact from"
|
303 |
msgstr "संपर्क करें"
|
304 |
|
305 |
+
#: contact_form.php:704
|
306 |
msgid "Name"
|
307 |
msgstr "नाम"
|
308 |
|
309 |
+
#: contact_form.php:707
|
310 |
msgid "Email"
|
311 |
msgstr "ईमेल"
|
312 |
|
313 |
+
#: contact_form.php:710
|
314 |
msgid "Subject"
|
315 |
msgstr "विषय"
|
316 |
|
317 |
+
#: contact_form.php:713
|
318 |
msgid "Message"
|
319 |
msgstr "संदेश"
|
320 |
|
321 |
+
#: contact_form.php:716
|
322 |
msgid "Site"
|
323 |
msgstr "साइट"
|
324 |
|
325 |
+
#: contact_form.php:761
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "यदि आप अपने ग्राहक की तुलना में इस माइम देख सकते हैं MIME प्रकार स्वीकार नहीं करता है!"
|
328 |
|
329 |
+
#: contact_form.php:815
|
330 |
msgid "FAQ"
|
331 |
msgstr "अक्सर पूछे जाने वाले प्रश्न"
|
332 |
|
333 |
+
#: contact_form.php:816
|
334 |
msgid "Support"
|
335 |
msgstr "समर्थन"
|
336 |
|
languages/contact_form-it_IT.mo
CHANGED
Binary file
|
languages/contact_form-it_IT.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"Language: \n"
|
@@ -28,8 +28,8 @@ msgid "Read more"
|
|
28 |
msgstr "Leggi"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
-
#: contact_form.php:
|
32 |
-
#: contact_form.php:
|
33 |
msgid "Settings"
|
34 |
msgstr "Settaggi"
|
35 |
|
@@ -206,22 +206,22 @@ msgid "Display additional info in email"
|
|
206 |
msgstr ""
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
-
#: contact_form.php:
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "Inviato da (indirizzi IP)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
-
#: contact_form.php:
|
215 |
msgid "Date/Time"
|
216 |
msgstr "Data/Ora"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
-
#: contact_form.php:
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "Da (referente)"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
-
#: contact_form.php:
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "Utilizza (user agent)"
|
227 |
|
@@ -254,83 +254,83 @@ msgstr ""
|
|
254 |
msgid "Save Changes"
|
255 |
msgstr "Salva le modifiche"
|
256 |
|
257 |
-
#: contact_form.php:
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "Spiacenti, la tua e-mail non può essere consegnata al momento."
|
260 |
|
261 |
-
#: contact_form.php:
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "Gli utenti possono allegare i files nei seguenti tipi"
|
264 |
|
265 |
-
#: contact_form.php:
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "Inviami una copia"
|
268 |
|
269 |
-
#: contact_form.php:
|
270 |
msgid "Submit"
|
271 |
msgstr "Invia"
|
272 |
|
273 |
-
#: contact_form.php:
|
274 |
msgid "Your name is required."
|
275 |
msgstr "Il nome è obbligatorio"
|
276 |
|
277 |
-
#: contact_form.php:
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "È richiesto un indirizzo e-mail corretto"
|
280 |
|
281 |
-
#: contact_form.php:
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "L'oggetto è obbligatorio"
|
284 |
|
285 |
-
#: contact_form.php:
|
286 |
msgid "Message text is required."
|
287 |
msgstr "Il campo messaggio è obbligatorio"
|
288 |
|
289 |
-
#: contact_form.php:
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "Controlla i dati del modulo e riprova!"
|
292 |
|
293 |
-
#: contact_form.php:
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "L'attachment non è corretto"
|
296 |
|
297 |
-
#: contact_form.php:
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "Completa il CAPTCHA"
|
300 |
|
301 |
-
#: contact_form.php:
|
302 |
msgid "Contact from"
|
303 |
msgstr "Contact from"
|
304 |
|
305 |
-
#: contact_form.php:
|
306 |
msgid "Name"
|
307 |
msgstr "Nome"
|
308 |
|
309 |
-
#: contact_form.php:
|
310 |
msgid "Email"
|
311 |
msgstr "e-mail"
|
312 |
|
313 |
-
#: contact_form.php:
|
314 |
msgid "Subject"
|
315 |
msgstr "Oggetto"
|
316 |
|
317 |
-
#: contact_form.php:
|
318 |
msgid "Message"
|
319 |
msgstr "Messaggio"
|
320 |
|
321 |
-
#: contact_form.php:
|
322 |
msgid "Site"
|
323 |
msgstr "Sito"
|
324 |
|
325 |
-
#: contact_form.php:
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "Se puoi visualizzare questo MIME il tuo client non supporta i MIME types!"
|
328 |
|
329 |
-
#: contact_form.php:
|
330 |
msgid "FAQ"
|
331 |
msgstr "FAQ"
|
332 |
|
333 |
-
#: contact_form.php:
|
334 |
msgid "Support"
|
335 |
msgstr "Supporto"
|
336 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:11+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:11+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"Language: \n"
|
28 |
msgstr "Leggi"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
+
#: contact_form.php:805
|
32 |
+
#: contact_form.php:814
|
33 |
msgid "Settings"
|
34 |
msgstr "Settaggi"
|
35 |
|
206 |
msgstr ""
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
+
#: contact_form.php:676
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "Inviato da (indirizzi IP)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
+
#: contact_form.php:681
|
215 |
msgid "Date/Time"
|
216 |
msgstr "Data/Ora"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
+
#: contact_form.php:686
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "Da (referente)"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
+
#: contact_form.php:691
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "Utilizza (user agent)"
|
227 |
|
254 |
msgid "Save Changes"
|
255 |
msgstr "Salva le modifiche"
|
256 |
|
257 |
+
#: contact_form.php:420
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "Spiacenti, la tua e-mail non può essere consegnata al momento."
|
260 |
|
261 |
+
#: contact_form.php:478
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "Gli utenti possono allegare i files nei seguenti tipi"
|
264 |
|
265 |
+
#: contact_form.php:486
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "Inviami una copia"
|
268 |
|
269 |
+
#: contact_form.php:496
|
270 |
msgid "Submit"
|
271 |
msgstr "Invia"
|
272 |
|
273 |
+
#: contact_form.php:535
|
274 |
msgid "Your name is required."
|
275 |
msgstr "Il nome è obbligatorio"
|
276 |
|
277 |
+
#: contact_form.php:536
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "È richiesto un indirizzo e-mail corretto"
|
280 |
|
281 |
+
#: contact_form.php:537
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "L'oggetto è obbligatorio"
|
284 |
|
285 |
+
#: contact_form.php:538
|
286 |
msgid "Message text is required."
|
287 |
msgstr "Il campo messaggio è obbligatorio"
|
288 |
|
289 |
+
#: contact_form.php:539
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "Controlla i dati del modulo e riprova!"
|
292 |
|
293 |
+
#: contact_form.php:570
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "L'attachment non è corretto"
|
296 |
|
297 |
+
#: contact_form.php:583
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "Completa il CAPTCHA"
|
300 |
|
301 |
+
#: contact_form.php:699
|
302 |
msgid "Contact from"
|
303 |
msgstr "Contact from"
|
304 |
|
305 |
+
#: contact_form.php:704
|
306 |
msgid "Name"
|
307 |
msgstr "Nome"
|
308 |
|
309 |
+
#: contact_form.php:707
|
310 |
msgid "Email"
|
311 |
msgstr "e-mail"
|
312 |
|
313 |
+
#: contact_form.php:710
|
314 |
msgid "Subject"
|
315 |
msgstr "Oggetto"
|
316 |
|
317 |
+
#: contact_form.php:713
|
318 |
msgid "Message"
|
319 |
msgstr "Messaggio"
|
320 |
|
321 |
+
#: contact_form.php:716
|
322 |
msgid "Site"
|
323 |
msgstr "Sito"
|
324 |
|
325 |
+
#: contact_form.php:761
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "Se puoi visualizzare questo MIME il tuo client non supporta i MIME types!"
|
328 |
|
329 |
+
#: contact_form.php:815
|
330 |
msgid "FAQ"
|
331 |
msgstr "FAQ"
|
332 |
|
333 |
+
#: contact_form.php:816
|
334 |
msgid "Support"
|
335 |
msgstr "Supporto"
|
336 |
|
languages/contact_form-ja.mo
ADDED
Binary file
|
languages/contact_form-ja.po
ADDED
@@ -0,0 +1,349 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
msgid ""
|
2 |
+
msgstr ""
|
3 |
+
"Project-Id-Version: contact_form\n"
|
4 |
+
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:11+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:11+0300\n"
|
7 |
+
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
+
"Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
|
9 |
+
"Language: \n"
|
10 |
+
"MIME-Version: 1.0\n"
|
11 |
+
"Content-Type: text/plain; charset=UTF-8\n"
|
12 |
+
"Content-Transfer-Encoding: 8bit\n"
|
13 |
+
"X-Poedit-KeywordsList: __;_e\n"
|
14 |
+
"X-Poedit-Basepath: ..\n"
|
15 |
+
"X-Poedit-Language: Japanese\n"
|
16 |
+
"X-Poedit-Country: JAPAN\n"
|
17 |
+
"X-Poedit-SourceCharset: utf-8\n"
|
18 |
+
"X-Poedit-SearchPath-0: .\n"
|
19 |
+
|
20 |
+
#: contact_form.php:76
|
21 |
+
msgid "Activated plugins"
|
22 |
+
msgstr "有効なプラグイン"
|
23 |
+
|
24 |
+
#: contact_form.php:78
|
25 |
+
#: contact_form.php:86
|
26 |
+
#: contact_form.php:94
|
27 |
+
msgid "Read more"
|
28 |
+
msgstr "もっと読む"
|
29 |
+
|
30 |
+
#: contact_form.php:78
|
31 |
+
#: contact_form.php:805
|
32 |
+
#: contact_form.php:814
|
33 |
+
msgid "Settings"
|
34 |
+
msgstr "設定"
|
35 |
+
|
36 |
+
#: contact_form.php:84
|
37 |
+
msgid "Installed plugins"
|
38 |
+
msgstr "導入済みプラグイン"
|
39 |
+
|
40 |
+
#: contact_form.php:92
|
41 |
+
msgid "Recommended plugins"
|
42 |
+
msgstr "推奨プラグイン"
|
43 |
+
|
44 |
+
#: contact_form.php:94
|
45 |
+
msgid "Download"
|
46 |
+
msgstr "ダウンロード"
|
47 |
+
|
48 |
+
#: contact_form.php:94
|
49 |
+
#, php-format
|
50 |
+
msgid "Install %s"
|
51 |
+
msgstr "%s 導入"
|
52 |
+
|
53 |
+
#: contact_form.php:94
|
54 |
+
msgid "Install now from wordpress.org"
|
55 |
+
msgstr "wordpress.org から直ぐに導入"
|
56 |
+
|
57 |
+
#: contact_form.php:96
|
58 |
+
msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
|
59 |
+
msgstr "もそご質問がある場合は、plugin@bestwebsoft.comにご連絡頂くか、我々のサイトのコンタクトフォームからお願いします。"
|
60 |
+
|
61 |
+
#: contact_form.php:108
|
62 |
+
#: contact_form.php:262
|
63 |
+
msgid "Contact Form Options"
|
64 |
+
msgstr "コンタクトフォーム オプション"
|
65 |
+
|
66 |
+
#: contact_form.php:108
|
67 |
+
msgid "Contact Form"
|
68 |
+
msgstr "Contact Form"
|
69 |
+
|
70 |
+
#: contact_form.php:136
|
71 |
+
#: contact_form.php:180
|
72 |
+
#: contact_form.php:216
|
73 |
+
#: contact_form.php:366
|
74 |
+
msgid "Name:"
|
75 |
+
msgstr "名前:"
|
76 |
+
|
77 |
+
#: contact_form.php:137
|
78 |
+
#: contact_form.php:181
|
79 |
+
#: contact_form.php:217
|
80 |
+
#: contact_form.php:367
|
81 |
+
msgid "E-Mail Address:"
|
82 |
+
msgstr "E-Mail:"
|
83 |
+
|
84 |
+
#: contact_form.php:138
|
85 |
+
#: contact_form.php:182
|
86 |
+
#: contact_form.php:218
|
87 |
+
#: contact_form.php:368
|
88 |
+
msgid "Subject:"
|
89 |
+
msgstr "件名:"
|
90 |
+
|
91 |
+
#: contact_form.php:139
|
92 |
+
#: contact_form.php:183
|
93 |
+
#: contact_form.php:219
|
94 |
+
#: contact_form.php:369
|
95 |
+
msgid "Message:"
|
96 |
+
msgstr "メッセージ:"
|
97 |
+
|
98 |
+
#: contact_form.php:140
|
99 |
+
#: contact_form.php:184
|
100 |
+
#: contact_form.php:220
|
101 |
+
#: contact_form.php:370
|
102 |
+
msgid "Attachment:"
|
103 |
+
msgstr "添付:"
|
104 |
+
|
105 |
+
#: contact_form.php:142
|
106 |
+
#: contact_form.php:186
|
107 |
+
msgid "Thank you for contacting us."
|
108 |
+
msgstr "ご連絡ありがとうございます"
|
109 |
+
|
110 |
+
#: contact_form.php:230
|
111 |
+
msgid "If the option 'Redirect to page' is selected then url field should be fillied in the following format"
|
112 |
+
msgstr ""
|
113 |
+
|
114 |
+
#: contact_form.php:237
|
115 |
+
#: contact_form.php:242
|
116 |
+
#: contact_form.php:251
|
117 |
+
msgid "Options saved."
|
118 |
+
msgstr "オプション保存."
|
119 |
+
|
120 |
+
#: contact_form.php:245
|
121 |
+
msgid "Such user is not exist. Settings are not saved."
|
122 |
+
msgstr "このようなユーザは存在しません。設定は保存されません。"
|
123 |
+
|
124 |
+
#: contact_form.php:254
|
125 |
+
msgid "Please input correct email. Settings are not saved."
|
126 |
+
msgstr "正確なemailを入力して下さい。設定は保存されません。"
|
127 |
+
|
128 |
+
#: contact_form.php:267
|
129 |
+
#, fuzzy
|
130 |
+
msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
|
131 |
+
msgstr "コンタクトフォームをあなたのサイトに追加したい場合は、このショートカットを投稿またはページにコピーして貼り付けるだけです。"
|
132 |
+
|
133 |
+
#: contact_form.php:268
|
134 |
+
msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
|
135 |
+
msgstr "以下の項目の情報が空欄の場合、登録の際に記述したアドレスにメッセージが送られます。"
|
136 |
+
|
137 |
+
#: contact_form.php:272
|
138 |
+
msgid "Use email of wordpress user:"
|
139 |
+
msgstr "wordpressユーザのemailを利用r:"
|
140 |
+
|
141 |
+
#: contact_form.php:278
|
142 |
+
msgid "Select user name"
|
143 |
+
msgstr "ユーザ名の選択"
|
144 |
+
|
145 |
+
#: contact_form.php:283
|
146 |
+
#, fuzzy
|
147 |
+
msgid "Set a name of user who will get messages from a contact form."
|
148 |
+
msgstr "コンタクトフォームからメッセージを受け取るユーザ名を設定。"
|
149 |
+
|
150 |
+
#: contact_form.php:287
|
151 |
+
msgid "Use this email:"
|
152 |
+
msgstr "このemailを利用:"
|
153 |
+
|
154 |
+
#: contact_form.php:293
|
155 |
+
msgid "Set an email address which will be used for messages receiving."
|
156 |
+
msgstr "メッセージ受信用のemailを設定。"
|
157 |
+
|
158 |
+
#: contact_form.php:297
|
159 |
+
msgid "Additional options"
|
160 |
+
msgstr "追加オプション"
|
161 |
+
|
162 |
+
#: contact_form.php:300
|
163 |
+
msgid "Display Attachment block"
|
164 |
+
msgstr "添付ブロックを表示"
|
165 |
+
|
166 |
+
#: contact_form.php:305
|
167 |
+
msgid "Users can attach files of the following types"
|
168 |
+
msgstr "ユーザは、以下のタイプのファイルを添付できる"
|
169 |
+
|
170 |
+
#: contact_form.php:309
|
171 |
+
#, fuzzy
|
172 |
+
msgid "Display Attachment explanations"
|
173 |
+
msgstr "添付ブロックを表示"
|
174 |
+
|
175 |
+
#: contact_form.php:314
|
176 |
+
#, fuzzy
|
177 |
+
msgid "Display explanations after Attachment block"
|
178 |
+
msgstr "添付ブロックを表示"
|
179 |
+
|
180 |
+
#: contact_form.php:318
|
181 |
+
msgid "Display Send me a copy block"
|
182 |
+
msgstr "コピーブロックを自分に送るを表示"
|
183 |
+
|
184 |
+
#: contact_form.php:324
|
185 |
+
msgid "What use?"
|
186 |
+
msgstr ""
|
187 |
+
|
188 |
+
#: contact_form.php:329
|
189 |
+
#, fuzzy
|
190 |
+
msgid "Wp-mail"
|
191 |
+
msgstr "E-Mail"
|
192 |
+
|
193 |
+
#: contact_form.php:330
|
194 |
+
msgid "To send mail you can use the wordpress wp_mail function"
|
195 |
+
msgstr ""
|
196 |
+
|
197 |
+
#: contact_form.php:338
|
198 |
+
msgid "Mail"
|
199 |
+
msgstr ""
|
200 |
+
|
201 |
+
#: contact_form.php:339
|
202 |
+
msgid "To send mail you can use the php mail function"
|
203 |
+
msgstr ""
|
204 |
+
|
205 |
+
#: contact_form.php:343
|
206 |
+
#, fuzzy
|
207 |
+
msgid "Change FROM fields of the contact form"
|
208 |
+
msgstr "コンタクトフォームのフィールドのラベルを変更"
|
209 |
+
|
210 |
+
#: contact_form.php:349
|
211 |
+
msgid "Display additional info in email"
|
212 |
+
msgstr ""
|
213 |
+
|
214 |
+
#: contact_form.php:354
|
215 |
+
#: contact_form.php:676
|
216 |
+
msgid "Sent from (ip address)"
|
217 |
+
msgstr "(IP-Adresse)から送られた"
|
218 |
+
|
219 |
+
#: contact_form.php:355
|
220 |
+
#: contact_form.php:681
|
221 |
+
msgid "Date/Time"
|
222 |
+
msgstr "日時"
|
223 |
+
|
224 |
+
#: contact_form.php:356
|
225 |
+
#: contact_form.php:686
|
226 |
+
msgid "Coming from (referer)"
|
227 |
+
msgstr "(referer)から送られている"
|
228 |
+
|
229 |
+
#: contact_form.php:357
|
230 |
+
#: contact_form.php:691
|
231 |
+
msgid "Using (user agent)"
|
232 |
+
msgstr "(user agent)使用"
|
233 |
+
|
234 |
+
#: contact_form.php:361
|
235 |
+
msgid "Change label for fields of the contact form"
|
236 |
+
msgstr "コンタクトフォームのフィールドのラベルを変更"
|
237 |
+
|
238 |
+
#: contact_form.php:374
|
239 |
+
msgid "Action after the send mail"
|
240 |
+
msgstr ""
|
241 |
+
|
242 |
+
#: contact_form.php:376
|
243 |
+
#, fuzzy
|
244 |
+
msgid "Display text"
|
245 |
+
msgstr "添付ブロックを表示"
|
246 |
+
|
247 |
+
#: contact_form.php:377
|
248 |
+
msgid "Text"
|
249 |
+
msgstr ""
|
250 |
+
|
251 |
+
#: contact_form.php:378
|
252 |
+
msgid "Redirect to page"
|
253 |
+
msgstr ""
|
254 |
+
|
255 |
+
#: contact_form.php:379
|
256 |
+
msgid "Url"
|
257 |
+
msgstr ""
|
258 |
+
|
259 |
+
#: contact_form.php:384
|
260 |
+
msgid "Save Changes"
|
261 |
+
msgstr "変更を保存"
|
262 |
+
|
263 |
+
#: contact_form.php:420
|
264 |
+
msgid "Sorry, your e-mail could not be delivered."
|
265 |
+
msgstr "申し訳ございませんが、貴方のemailは配信できませんでした。"
|
266 |
+
|
267 |
+
#: contact_form.php:478
|
268 |
+
msgid "You can attach files of the following types"
|
269 |
+
msgstr "貴方は、以下のタイプのファイルを添付できます"
|
270 |
+
|
271 |
+
#: contact_form.php:486
|
272 |
+
msgid "Send me a copy"
|
273 |
+
msgstr "コピーを自分に送る"
|
274 |
+
|
275 |
+
#: contact_form.php:496
|
276 |
+
msgid "Submit"
|
277 |
+
msgstr "送信"
|
278 |
+
|
279 |
+
#: contact_form.php:535
|
280 |
+
msgid "Your name is required."
|
281 |
+
msgstr "名前は必須です。"
|
282 |
+
|
283 |
+
#: contact_form.php:536
|
284 |
+
msgid "A proper e-mail address is required."
|
285 |
+
msgstr "正確なemailが必須です。"
|
286 |
+
|
287 |
+
#: contact_form.php:537
|
288 |
+
msgid "Subject text is required."
|
289 |
+
msgstr "件名は必須です。"
|
290 |
+
|
291 |
+
#: contact_form.php:538
|
292 |
+
msgid "Message text is required."
|
293 |
+
msgstr "メッセージ本文は必須です。"
|
294 |
+
|
295 |
+
#: contact_form.php:539
|
296 |
+
msgid "Please make corrections below and try again."
|
297 |
+
msgstr "以下を修正し、再度試して下さい。"
|
298 |
+
|
299 |
+
#: contact_form.php:570
|
300 |
+
msgid "Attachment is broken."
|
301 |
+
msgstr "添付が壊れています。"
|
302 |
+
|
303 |
+
#: contact_form.php:583
|
304 |
+
msgid "Please complete the CAPTCHA."
|
305 |
+
msgstr "CAPTCHAを入力して下さい。"
|
306 |
+
|
307 |
+
#: contact_form.php:699
|
308 |
+
msgid "Contact from"
|
309 |
+
msgstr "コンタクトフォーム"
|
310 |
+
|
311 |
+
#: contact_form.php:704
|
312 |
+
msgid "Name"
|
313 |
+
msgstr "名前"
|
314 |
+
|
315 |
+
#: contact_form.php:707
|
316 |
+
msgid "Email"
|
317 |
+
msgstr "E-Mail"
|
318 |
+
|
319 |
+
#: contact_form.php:710
|
320 |
+
msgid "Subject"
|
321 |
+
msgstr "件名"
|
322 |
+
|
323 |
+
#: contact_form.php:713
|
324 |
+
msgid "Message"
|
325 |
+
msgstr "メッセージ"
|
326 |
+
|
327 |
+
#: contact_form.php:716
|
328 |
+
msgid "Site"
|
329 |
+
msgstr "サイト"
|
330 |
+
|
331 |
+
#: contact_form.php:761
|
332 |
+
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
333 |
+
msgstr "このMIMEを見ている場合は、貴方のクライアントはMIMEタイプを読めません。"
|
334 |
+
|
335 |
+
#: contact_form.php:815
|
336 |
+
msgid "FAQ"
|
337 |
+
msgstr "FAQ"
|
338 |
+
|
339 |
+
#: contact_form.php:816
|
340 |
+
msgid "Support"
|
341 |
+
msgstr "サポート"
|
342 |
+
|
343 |
+
#~ msgid "E-Mail Addresse:"
|
344 |
+
#~ msgstr "Indirizzo e-mail:"
|
345 |
+
#~ msgid "Install Now"
|
346 |
+
#~ msgstr "Installa Ora"
|
347 |
+
#~ msgid "BWS Plugins"
|
348 |
+
#~ msgstr "BWS Plugins"
|
349 |
+
|
languages/contact_form-lt_LT.mo
CHANGED
Binary file
|
languages/contact_form-lt_LT.po
CHANGED
@@ -3,8 +3,8 @@ msgid ""
|
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: contact_form\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
-
"POT-Creation-Date: 2012-
|
7 |
-
"PO-Revision-Date: 2012-
|
8 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
9 |
"Language-Team: Lithuanian <kde-i18n-lt@kde.org>\n"
|
10 |
"Language: lt\n"
|
@@ -31,8 +31,8 @@ msgid "Read more"
|
|
31 |
msgstr "Skaityti daugiau"
|
32 |
|
33 |
#: contact_form.php:78
|
34 |
-
#: contact_form.php:
|
35 |
-
#: contact_form.php:
|
36 |
msgid "Settings"
|
37 |
msgstr "Nustatymai"
|
38 |
|
@@ -209,22 +209,22 @@ msgid "Display additional info in email"
|
|
209 |
msgstr ""
|
210 |
|
211 |
#: contact_form.php:354
|
212 |
-
#: contact_form.php:
|
213 |
msgid "Sent from (ip address)"
|
214 |
msgstr "Siųsta iš (ip adresas)"
|
215 |
|
216 |
#: contact_form.php:355
|
217 |
-
#: contact_form.php:
|
218 |
msgid "Date/Time"
|
219 |
msgstr "Data/laikas"
|
220 |
|
221 |
#: contact_form.php:356
|
222 |
-
#: contact_form.php:
|
223 |
msgid "Coming from (referer)"
|
224 |
msgstr "Ateita iš (nukreipiklis)"
|
225 |
|
226 |
#: contact_form.php:357
|
227 |
-
#: contact_form.php:
|
228 |
msgid "Using (user agent)"
|
229 |
msgstr "Naudoja (naršyklės įrašas)"
|
230 |
|
@@ -257,83 +257,83 @@ msgstr ""
|
|
257 |
msgid "Save Changes"
|
258 |
msgstr "Įrašyti pakeitimus"
|
259 |
|
260 |
-
#: contact_form.php:
|
261 |
msgid "Sorry, your e-mail could not be delivered."
|
262 |
msgstr "Deja, jūsų el. laiško nepavyko pristatyti."
|
263 |
|
264 |
-
#: contact_form.php:
|
265 |
msgid "You can attach files of the following types"
|
266 |
msgstr "Galite prikabinti šių tipų failus"
|
267 |
|
268 |
-
#: contact_form.php:
|
269 |
msgid "Send me a copy"
|
270 |
msgstr "Siųsti kopiją man"
|
271 |
|
272 |
-
#: contact_form.php:
|
273 |
msgid "Submit"
|
274 |
msgstr "Siųsti"
|
275 |
|
276 |
-
#: contact_form.php:
|
277 |
msgid "Your name is required."
|
278 |
msgstr "Būtina įrašyti vardą."
|
279 |
|
280 |
-
#: contact_form.php:
|
281 |
msgid "A proper e-mail address is required."
|
282 |
msgstr "Būtina įrašyti teisingą el. pašto adresą."
|
283 |
|
284 |
-
#: contact_form.php:
|
285 |
msgid "Subject text is required."
|
286 |
msgstr "Būtina įrašyti temą."
|
287 |
|
288 |
-
#: contact_form.php:
|
289 |
msgid "Message text is required."
|
290 |
msgstr "Būtina įrašyti laiško turinį."
|
291 |
|
292 |
-
#: contact_form.php:
|
293 |
msgid "Please make corrections below and try again."
|
294 |
msgstr "Prašome pataisyti laišką ir bandyti iš naujo."
|
295 |
|
296 |
-
#: contact_form.php:
|
297 |
msgid "Attachment is broken."
|
298 |
msgstr "Pridedamas failas sugadintas."
|
299 |
|
300 |
-
#: contact_form.php:
|
301 |
msgid "Please complete the CAPTCHA."
|
302 |
msgstr "Prašome užpildyti CAPTCHA."
|
303 |
|
304 |
-
#: contact_form.php:
|
305 |
msgid "Contact from"
|
306 |
msgstr "Kontaktų forma"
|
307 |
|
308 |
-
#: contact_form.php:
|
309 |
msgid "Name"
|
310 |
msgstr "Vardas"
|
311 |
|
312 |
-
#: contact_form.php:
|
313 |
msgid "Email"
|
314 |
msgstr "El. paštas"
|
315 |
|
316 |
-
#: contact_form.php:
|
317 |
msgid "Subject"
|
318 |
msgstr "Tema"
|
319 |
|
320 |
-
#: contact_form.php:
|
321 |
msgid "Message"
|
322 |
msgstr "Tekstas"
|
323 |
|
324 |
-
#: contact_form.php:
|
325 |
msgid "Site"
|
326 |
msgstr "Svetainė"
|
327 |
|
328 |
-
#: contact_form.php:
|
329 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
330 |
msgstr "Jei galite matyti šį MIME tipą, jūsų klientas nepriima MIME tipų!"
|
331 |
|
332 |
-
#: contact_form.php:
|
333 |
msgid "FAQ"
|
334 |
msgstr "DUK"
|
335 |
|
336 |
-
#: contact_form.php:
|
337 |
msgid "Support"
|
338 |
msgstr "Palaikymas"
|
339 |
|
3 |
msgstr ""
|
4 |
"Project-Id-Version: contact_form\n"
|
5 |
"Report-Msgid-Bugs-To: \n"
|
6 |
+
"POT-Creation-Date: 2012-07-24 19:11+0300\n"
|
7 |
+
"PO-Revision-Date: 2012-07-24 19:11+0300\n"
|
8 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
9 |
"Language-Team: Lithuanian <kde-i18n-lt@kde.org>\n"
|
10 |
"Language: lt\n"
|
31 |
msgstr "Skaityti daugiau"
|
32 |
|
33 |
#: contact_form.php:78
|
34 |
+
#: contact_form.php:805
|
35 |
+
#: contact_form.php:814
|
36 |
msgid "Settings"
|
37 |
msgstr "Nustatymai"
|
38 |
|
209 |
msgstr ""
|
210 |
|
211 |
#: contact_form.php:354
|
212 |
+
#: contact_form.php:676
|
213 |
msgid "Sent from (ip address)"
|
214 |
msgstr "Siųsta iš (ip adresas)"
|
215 |
|
216 |
#: contact_form.php:355
|
217 |
+
#: contact_form.php:681
|
218 |
msgid "Date/Time"
|
219 |
msgstr "Data/laikas"
|
220 |
|
221 |
#: contact_form.php:356
|
222 |
+
#: contact_form.php:686
|
223 |
msgid "Coming from (referer)"
|
224 |
msgstr "Ateita iš (nukreipiklis)"
|
225 |
|
226 |
#: contact_form.php:357
|
227 |
+
#: contact_form.php:691
|
228 |
msgid "Using (user agent)"
|
229 |
msgstr "Naudoja (naršyklės įrašas)"
|
230 |
|
257 |
msgid "Save Changes"
|
258 |
msgstr "Įrašyti pakeitimus"
|
259 |
|
260 |
+
#: contact_form.php:420
|
261 |
msgid "Sorry, your e-mail could not be delivered."
|
262 |
msgstr "Deja, jūsų el. laiško nepavyko pristatyti."
|
263 |
|
264 |
+
#: contact_form.php:478
|
265 |
msgid "You can attach files of the following types"
|
266 |
msgstr "Galite prikabinti šių tipų failus"
|
267 |
|
268 |
+
#: contact_form.php:486
|
269 |
msgid "Send me a copy"
|
270 |
msgstr "Siųsti kopiją man"
|
271 |
|
272 |
+
#: contact_form.php:496
|
273 |
msgid "Submit"
|
274 |
msgstr "Siųsti"
|
275 |
|
276 |
+
#: contact_form.php:535
|
277 |
msgid "Your name is required."
|
278 |
msgstr "Būtina įrašyti vardą."
|
279 |
|
280 |
+
#: contact_form.php:536
|
281 |
msgid "A proper e-mail address is required."
|
282 |
msgstr "Būtina įrašyti teisingą el. pašto adresą."
|
283 |
|
284 |
+
#: contact_form.php:537
|
285 |
msgid "Subject text is required."
|
286 |
msgstr "Būtina įrašyti temą."
|
287 |
|
288 |
+
#: contact_form.php:538
|
289 |
msgid "Message text is required."
|
290 |
msgstr "Būtina įrašyti laiško turinį."
|
291 |
|
292 |
+
#: contact_form.php:539
|
293 |
msgid "Please make corrections below and try again."
|
294 |
msgstr "Prašome pataisyti laišką ir bandyti iš naujo."
|
295 |
|
296 |
+
#: contact_form.php:570
|
297 |
msgid "Attachment is broken."
|
298 |
msgstr "Pridedamas failas sugadintas."
|
299 |
|
300 |
+
#: contact_form.php:583
|
301 |
msgid "Please complete the CAPTCHA."
|
302 |
msgstr "Prašome užpildyti CAPTCHA."
|
303 |
|
304 |
+
#: contact_form.php:699
|
305 |
msgid "Contact from"
|
306 |
msgstr "Kontaktų forma"
|
307 |
|
308 |
+
#: contact_form.php:704
|
309 |
msgid "Name"
|
310 |
msgstr "Vardas"
|
311 |
|
312 |
+
#: contact_form.php:707
|
313 |
msgid "Email"
|
314 |
msgstr "El. paštas"
|
315 |
|
316 |
+
#: contact_form.php:710
|
317 |
msgid "Subject"
|
318 |
msgstr "Tema"
|
319 |
|
320 |
+
#: contact_form.php:713
|
321 |
msgid "Message"
|
322 |
msgstr "Tekstas"
|
323 |
|
324 |
+
#: contact_form.php:716
|
325 |
msgid "Site"
|
326 |
msgstr "Svetainė"
|
327 |
|
328 |
+
#: contact_form.php:761
|
329 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
330 |
msgstr "Jei galite matyti šį MIME tipą, jūsų klientas nepriima MIME tipų!"
|
331 |
|
332 |
+
#: contact_form.php:815
|
333 |
msgid "FAQ"
|
334 |
msgstr "DUK"
|
335 |
|
336 |
+
#: contact_form.php:816
|
337 |
msgid "Support"
|
338 |
msgstr "Palaikymas"
|
339 |
|
languages/contact_form-nb_NO.mo
CHANGED
Binary file
|
languages/contact_form-nb_NO.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
|
9 |
"Language: \n"
|
@@ -28,8 +28,8 @@ msgid "Read more"
|
|
28 |
msgstr "Les mer"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
-
#: contact_form.php:
|
32 |
-
#: contact_form.php:
|
33 |
msgid "Settings"
|
34 |
msgstr "Innstilllinger"
|
35 |
|
@@ -206,22 +206,22 @@ msgid "Display additional info in email"
|
|
206 |
msgstr ""
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
-
#: contact_form.php:
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "Sendt fra (IP-adresse)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
-
#: contact_form.php:
|
215 |
msgid "Date/Time"
|
216 |
msgstr "Dato/tid"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
-
#: contact_form.php:
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "Sendt fra (referent)"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
-
#: contact_form.php:
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "med (user agent)"
|
227 |
|
@@ -254,83 +254,83 @@ msgstr ""
|
|
254 |
msgid "Save Changes"
|
255 |
msgstr "Lagre endringer"
|
256 |
|
257 |
-
#: contact_form.php:
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "Beklager, eposten din kunne ikke leveres."
|
260 |
|
261 |
-
#: contact_form.php:
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "Du kan legge til filer av følgende typer"
|
264 |
|
265 |
-
#: contact_form.php:
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "Send meg en kopi"
|
268 |
|
269 |
-
#: contact_form.php:
|
270 |
msgid "Submit"
|
271 |
msgstr "Send"
|
272 |
|
273 |
-
#: contact_form.php:
|
274 |
msgid "Your name is required."
|
275 |
msgstr "Navnet ditt er påkrevet."
|
276 |
|
277 |
-
#: contact_form.php:
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "En korrekt epostadresse er påkrevet."
|
280 |
|
281 |
-
#: contact_form.php:
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "Tekst i temafeltet er påkrevet."
|
284 |
|
285 |
-
#: contact_form.php:
|
286 |
msgid "Message text is required."
|
287 |
msgstr "Tekst i meldingsfeltet er påkrevet"
|
288 |
|
289 |
-
#: contact_form.php:
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "Vennligst gjør endringer nedenfor og forsøk igjen."
|
292 |
|
293 |
-
#: contact_form.php:
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "Vedlegget fungerer ikke."
|
296 |
|
297 |
-
#: contact_form.php:
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "Vennligst fyll ut CAPTCHA"
|
300 |
|
301 |
-
#: contact_form.php:
|
302 |
msgid "Contact from"
|
303 |
msgstr "Kontakt fra"
|
304 |
|
305 |
-
#: contact_form.php:
|
306 |
msgid "Name"
|
307 |
msgstr "Navn"
|
308 |
|
309 |
-
#: contact_form.php:
|
310 |
msgid "Email"
|
311 |
msgstr "Epost"
|
312 |
|
313 |
-
#: contact_form.php:
|
314 |
msgid "Subject"
|
315 |
msgstr "Tema"
|
316 |
|
317 |
-
#: contact_form.php:
|
318 |
msgid "Message"
|
319 |
msgstr "Melding"
|
320 |
|
321 |
-
#: contact_form.php:
|
322 |
msgid "Site"
|
323 |
msgstr "Site"
|
324 |
|
325 |
-
#: contact_form.php:
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "Dersom du kan se denne MIME, så aksepterer ikke klienten din MIME-typer!"
|
328 |
|
329 |
-
#: contact_form.php:
|
330 |
msgid "FAQ"
|
331 |
msgstr "Vanlige spørsmål"
|
332 |
|
333 |
-
#: contact_form.php:
|
334 |
msgid "Support"
|
335 |
msgstr "Support"
|
336 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:11+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:11+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
|
9 |
"Language: \n"
|
28 |
msgstr "Les mer"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
+
#: contact_form.php:805
|
32 |
+
#: contact_form.php:814
|
33 |
msgid "Settings"
|
34 |
msgstr "Innstilllinger"
|
35 |
|
206 |
msgstr ""
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
+
#: contact_form.php:676
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "Sendt fra (IP-adresse)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
+
#: contact_form.php:681
|
215 |
msgid "Date/Time"
|
216 |
msgstr "Dato/tid"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
+
#: contact_form.php:686
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "Sendt fra (referent)"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
+
#: contact_form.php:691
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "med (user agent)"
|
227 |
|
254 |
msgid "Save Changes"
|
255 |
msgstr "Lagre endringer"
|
256 |
|
257 |
+
#: contact_form.php:420
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "Beklager, eposten din kunne ikke leveres."
|
260 |
|
261 |
+
#: contact_form.php:478
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "Du kan legge til filer av følgende typer"
|
264 |
|
265 |
+
#: contact_form.php:486
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "Send meg en kopi"
|
268 |
|
269 |
+
#: contact_form.php:496
|
270 |
msgid "Submit"
|
271 |
msgstr "Send"
|
272 |
|
273 |
+
#: contact_form.php:535
|
274 |
msgid "Your name is required."
|
275 |
msgstr "Navnet ditt er påkrevet."
|
276 |
|
277 |
+
#: contact_form.php:536
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "En korrekt epostadresse er påkrevet."
|
280 |
|
281 |
+
#: contact_form.php:537
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "Tekst i temafeltet er påkrevet."
|
284 |
|
285 |
+
#: contact_form.php:538
|
286 |
msgid "Message text is required."
|
287 |
msgstr "Tekst i meldingsfeltet er påkrevet"
|
288 |
|
289 |
+
#: contact_form.php:539
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "Vennligst gjør endringer nedenfor og forsøk igjen."
|
292 |
|
293 |
+
#: contact_form.php:570
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "Vedlegget fungerer ikke."
|
296 |
|
297 |
+
#: contact_form.php:583
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "Vennligst fyll ut CAPTCHA"
|
300 |
|
301 |
+
#: contact_form.php:699
|
302 |
msgid "Contact from"
|
303 |
msgstr "Kontakt fra"
|
304 |
|
305 |
+
#: contact_form.php:704
|
306 |
msgid "Name"
|
307 |
msgstr "Navn"
|
308 |
|
309 |
+
#: contact_form.php:707
|
310 |
msgid "Email"
|
311 |
msgstr "Epost"
|
312 |
|
313 |
+
#: contact_form.php:710
|
314 |
msgid "Subject"
|
315 |
msgstr "Tema"
|
316 |
|
317 |
+
#: contact_form.php:713
|
318 |
msgid "Message"
|
319 |
msgstr "Melding"
|
320 |
|
321 |
+
#: contact_form.php:716
|
322 |
msgid "Site"
|
323 |
msgstr "Site"
|
324 |
|
325 |
+
#: contact_form.php:761
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "Dersom du kan se denne MIME, så aksepterer ikke klienten din MIME-typer!"
|
328 |
|
329 |
+
#: contact_form.php:815
|
330 |
msgid "FAQ"
|
331 |
msgstr "Vanlige spørsmål"
|
332 |
|
333 |
+
#: contact_form.php:816
|
334 |
msgid "Support"
|
335 |
msgstr "Support"
|
336 |
|
languages/contact_form-nl_NL.mo
CHANGED
Binary file
|
languages/contact_form-nl_NL.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
|
9 |
"Language: \n"
|
@@ -28,8 +28,8 @@ msgid "Read more"
|
|
28 |
msgstr "Lees verder"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
-
#: contact_form.php:
|
32 |
-
#: contact_form.php:
|
33 |
msgid "Settings"
|
34 |
msgstr "Instellingen"
|
35 |
|
@@ -206,22 +206,22 @@ msgid "Display additional info in email"
|
|
206 |
msgstr ""
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
-
#: contact_form.php:
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "Verstuurd van (IP-adres)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
-
#: contact_form.php:
|
215 |
msgid "Date/Time"
|
216 |
msgstr "Datum/Tijd"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
-
#: contact_form.php:
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "Verstuurd vanaf (referer)"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
-
#: contact_form.php:
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "Met (user agent)"
|
227 |
|
@@ -254,83 +254,83 @@ msgstr ""
|
|
254 |
msgid "Save Changes"
|
255 |
msgstr "Bewaar veranderingen"
|
256 |
|
257 |
-
#: contact_form.php:
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "Sorry, uw bericht kon niet worden verstuurd."
|
260 |
|
261 |
-
#: contact_form.php:
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "Bestanden van het volgende formaten kunnen worden bijgesloten"
|
264 |
|
265 |
-
#: contact_form.php:
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "Kopie aan mij sturen"
|
268 |
|
269 |
-
#: contact_form.php:
|
270 |
msgid "Submit"
|
271 |
msgstr "Versturen"
|
272 |
|
273 |
-
#: contact_form.php:
|
274 |
msgid "Your name is required."
|
275 |
msgstr "U bent vergeten uw naam op te geven"
|
276 |
|
277 |
-
#: contact_form.php:
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "U bent vergeten uw emailadres op te geven"
|
280 |
|
281 |
-
#: contact_form.php:
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "U bent vergeten een onderwerp op te geven"
|
284 |
|
285 |
-
#: contact_form.php:
|
286 |
msgid "Message text is required."
|
287 |
msgstr "U bent vergeten een bericht op te geven"
|
288 |
|
289 |
-
#: contact_form.php:
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "Vul alle vereiste informatie in en probeer het opnieuw."
|
292 |
|
293 |
-
#: contact_form.php:
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "Bijlage is beschadigd."
|
296 |
|
297 |
-
#: contact_form.php:
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "Vul de CAPTCHA in."
|
300 |
|
301 |
-
#: contact_form.php:
|
302 |
msgid "Contact from"
|
303 |
msgstr "Contact van"
|
304 |
|
305 |
-
#: contact_form.php:
|
306 |
msgid "Name"
|
307 |
msgstr "Naam"
|
308 |
|
309 |
-
#: contact_form.php:
|
310 |
msgid "Email"
|
311 |
msgstr "Email"
|
312 |
|
313 |
-
#: contact_form.php:
|
314 |
msgid "Subject"
|
315 |
msgstr "Onderwerp"
|
316 |
|
317 |
-
#: contact_form.php:
|
318 |
msgid "Message"
|
319 |
msgstr "Bericht"
|
320 |
|
321 |
-
#: contact_form.php:
|
322 |
msgid "Site"
|
323 |
msgstr "Website"
|
324 |
|
325 |
-
#: contact_form.php:
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "Als u deze MIME ziet, dan ondersteunt uw client geen MIME-Typen!"
|
328 |
|
329 |
-
#: contact_form.php:
|
330 |
msgid "FAQ"
|
331 |
msgstr "Veel gestelde vragen (FAQ)"
|
332 |
|
333 |
-
#: contact_form.php:
|
334 |
msgid "Support"
|
335 |
msgstr "Support"
|
336 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:11+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:11+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
|
9 |
"Language: \n"
|
28 |
msgstr "Lees verder"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
+
#: contact_form.php:805
|
32 |
+
#: contact_form.php:814
|
33 |
msgid "Settings"
|
34 |
msgstr "Instellingen"
|
35 |
|
206 |
msgstr ""
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
+
#: contact_form.php:676
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "Verstuurd van (IP-adres)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
+
#: contact_form.php:681
|
215 |
msgid "Date/Time"
|
216 |
msgstr "Datum/Tijd"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
+
#: contact_form.php:686
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "Verstuurd vanaf (referer)"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
+
#: contact_form.php:691
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "Met (user agent)"
|
227 |
|
254 |
msgid "Save Changes"
|
255 |
msgstr "Bewaar veranderingen"
|
256 |
|
257 |
+
#: contact_form.php:420
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "Sorry, uw bericht kon niet worden verstuurd."
|
260 |
|
261 |
+
#: contact_form.php:478
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "Bestanden van het volgende formaten kunnen worden bijgesloten"
|
264 |
|
265 |
+
#: contact_form.php:486
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "Kopie aan mij sturen"
|
268 |
|
269 |
+
#: contact_form.php:496
|
270 |
msgid "Submit"
|
271 |
msgstr "Versturen"
|
272 |
|
273 |
+
#: contact_form.php:535
|
274 |
msgid "Your name is required."
|
275 |
msgstr "U bent vergeten uw naam op te geven"
|
276 |
|
277 |
+
#: contact_form.php:536
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "U bent vergeten uw emailadres op te geven"
|
280 |
|
281 |
+
#: contact_form.php:537
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "U bent vergeten een onderwerp op te geven"
|
284 |
|
285 |
+
#: contact_form.php:538
|
286 |
msgid "Message text is required."
|
287 |
msgstr "U bent vergeten een bericht op te geven"
|
288 |
|
289 |
+
#: contact_form.php:539
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "Vul alle vereiste informatie in en probeer het opnieuw."
|
292 |
|
293 |
+
#: contact_form.php:570
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "Bijlage is beschadigd."
|
296 |
|
297 |
+
#: contact_form.php:583
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "Vul de CAPTCHA in."
|
300 |
|
301 |
+
#: contact_form.php:699
|
302 |
msgid "Contact from"
|
303 |
msgstr "Contact van"
|
304 |
|
305 |
+
#: contact_form.php:704
|
306 |
msgid "Name"
|
307 |
msgstr "Naam"
|
308 |
|
309 |
+
#: contact_form.php:707
|
310 |
msgid "Email"
|
311 |
msgstr "Email"
|
312 |
|
313 |
+
#: contact_form.php:710
|
314 |
msgid "Subject"
|
315 |
msgstr "Onderwerp"
|
316 |
|
317 |
+
#: contact_form.php:713
|
318 |
msgid "Message"
|
319 |
msgstr "Bericht"
|
320 |
|
321 |
+
#: contact_form.php:716
|
322 |
msgid "Site"
|
323 |
msgstr "Website"
|
324 |
|
325 |
+
#: contact_form.php:761
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "Als u deze MIME ziet, dan ondersteunt uw client geen MIME-Typen!"
|
328 |
|
329 |
+
#: contact_form.php:815
|
330 |
msgid "FAQ"
|
331 |
msgstr "Veel gestelde vragen (FAQ)"
|
332 |
|
333 |
+
#: contact_form.php:816
|
334 |
msgid "Support"
|
335 |
msgstr "Support"
|
336 |
|
languages/contact_form-pl_PL.mo
CHANGED
Binary file
|
languages/contact_form-pl_PL.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contact Form Plugin v3.05\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: \n"
|
@@ -33,8 +33,8 @@ msgstr "Czytaj więcej"
|
|
33 |
|
34 |
# @ contact_form
|
35 |
#: contact_form.php:78
|
36 |
-
#: contact_form.php:
|
37 |
-
#: contact_form.php:
|
38 |
msgid "Settings"
|
39 |
msgstr "Ustawienia"
|
40 |
|
@@ -245,25 +245,25 @@ msgstr ""
|
|
245 |
|
246 |
# @ contact_form
|
247 |
#: contact_form.php:354
|
248 |
-
#: contact_form.php:
|
249 |
msgid "Sent from (ip address)"
|
250 |
msgstr "Przysłane z (adres IP)"
|
251 |
|
252 |
# @ contact_form
|
253 |
#: contact_form.php:355
|
254 |
-
#: contact_form.php:
|
255 |
msgid "Date/Time"
|
256 |
msgstr "Data/czas"
|
257 |
|
258 |
# @ contact_form
|
259 |
#: contact_form.php:356
|
260 |
-
#: contact_form.php:
|
261 |
msgid "Coming from (referer)"
|
262 |
msgstr "Przekierowane z (referrer)"
|
263 |
|
264 |
# @ contact_form
|
265 |
#: contact_form.php:357
|
266 |
-
#: contact_form.php:
|
267 |
msgid "Using (user agent)"
|
268 |
msgstr "Klient (program użytkownika)"
|
269 |
|
@@ -300,101 +300,101 @@ msgid "Save Changes"
|
|
300 |
msgstr "Zapisz zmiany"
|
301 |
|
302 |
# @ contact_form
|
303 |
-
#: contact_form.php:
|
304 |
msgid "Sorry, your e-mail could not be delivered."
|
305 |
msgstr "Niestety, ten e-mail nie mógł zostać dostarczony."
|
306 |
|
307 |
# @ contact_form
|
308 |
-
#: contact_form.php:
|
309 |
msgid "You can attach files of the following types"
|
310 |
msgstr "Możesz załączać pliki następujących typów"
|
311 |
|
312 |
# @ contact_form
|
313 |
-
#: contact_form.php:
|
314 |
msgid "Send me a copy"
|
315 |
msgstr "Wyślij mi kopię"
|
316 |
|
317 |
# @ contact_form
|
318 |
-
#: contact_form.php:
|
319 |
msgid "Submit"
|
320 |
msgstr "Wyślij"
|
321 |
|
322 |
# @ contact_form
|
323 |
-
#: contact_form.php:
|
324 |
msgid "Your name is required."
|
325 |
msgstr "Podanie imienia jest wymagane."
|
326 |
|
327 |
# @ contact_form
|
328 |
-
#: contact_form.php:
|
329 |
msgid "A proper e-mail address is required."
|
330 |
msgstr "Podanie prawidłowego adresu e-mail jest wymagane."
|
331 |
|
332 |
# @ contact_form
|
333 |
-
#: contact_form.php:
|
334 |
msgid "Subject text is required."
|
335 |
msgstr "Podanie tematu jest wymagane."
|
336 |
|
337 |
# @ contact_form
|
338 |
-
#: contact_form.php:
|
339 |
msgid "Message text is required."
|
340 |
msgstr "Wiadomość musi mieć jakąś treść."
|
341 |
|
342 |
# @ contact_form
|
343 |
-
#: contact_form.php:
|
344 |
msgid "Please make corrections below and try again."
|
345 |
msgstr "Proszę nanieść poprawki i spróbować jeszcze raz."
|
346 |
|
347 |
# @ contact_form
|
348 |
-
#: contact_form.php:
|
349 |
msgid "Attachment is broken."
|
350 |
msgstr "Załącznik jest uszkodzony."
|
351 |
|
352 |
# @ contact_form
|
353 |
-
#: contact_form.php:
|
354 |
msgid "Please complete the CAPTCHA."
|
355 |
msgstr "Proszę dokładnie przepisać kod."
|
356 |
|
357 |
# @ contact_form
|
358 |
-
#: contact_form.php:
|
359 |
msgid "Contact from"
|
360 |
msgstr "Kontakt z"
|
361 |
|
362 |
# @ contact_form
|
363 |
-
#: contact_form.php:
|
364 |
msgid "Name"
|
365 |
msgstr "Imię"
|
366 |
|
367 |
# @ contact_form
|
368 |
-
#: contact_form.php:
|
369 |
msgid "Email"
|
370 |
msgstr "E-mail"
|
371 |
|
372 |
# @ contact_form
|
373 |
-
#: contact_form.php:
|
374 |
msgid "Subject"
|
375 |
msgstr "Temat"
|
376 |
|
377 |
# @ contact_form
|
378 |
-
#: contact_form.php:
|
379 |
msgid "Message"
|
380 |
msgstr "Wiadomość"
|
381 |
|
382 |
# @ contact_form
|
383 |
-
#: contact_form.php:
|
384 |
msgid "Site"
|
385 |
msgstr "Strona www"
|
386 |
|
387 |
-
#: contact_form.php:
|
388 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
389 |
msgstr ""
|
390 |
|
391 |
# @ contact_form
|
392 |
-
#: contact_form.php:
|
393 |
msgid "FAQ"
|
394 |
msgstr "FAQ"
|
395 |
|
396 |
# @ contact_form
|
397 |
-
#: contact_form.php:
|
398 |
msgid "Support"
|
399 |
msgstr "Wsparcie"
|
400 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: Contact Form Plugin v3.05\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:11+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:12+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: \n"
|
9 |
"Language: \n"
|
33 |
|
34 |
# @ contact_form
|
35 |
#: contact_form.php:78
|
36 |
+
#: contact_form.php:805
|
37 |
+
#: contact_form.php:814
|
38 |
msgid "Settings"
|
39 |
msgstr "Ustawienia"
|
40 |
|
245 |
|
246 |
# @ contact_form
|
247 |
#: contact_form.php:354
|
248 |
+
#: contact_form.php:676
|
249 |
msgid "Sent from (ip address)"
|
250 |
msgstr "Przysłane z (adres IP)"
|
251 |
|
252 |
# @ contact_form
|
253 |
#: contact_form.php:355
|
254 |
+
#: contact_form.php:681
|
255 |
msgid "Date/Time"
|
256 |
msgstr "Data/czas"
|
257 |
|
258 |
# @ contact_form
|
259 |
#: contact_form.php:356
|
260 |
+
#: contact_form.php:686
|
261 |
msgid "Coming from (referer)"
|
262 |
msgstr "Przekierowane z (referrer)"
|
263 |
|
264 |
# @ contact_form
|
265 |
#: contact_form.php:357
|
266 |
+
#: contact_form.php:691
|
267 |
msgid "Using (user agent)"
|
268 |
msgstr "Klient (program użytkownika)"
|
269 |
|
300 |
msgstr "Zapisz zmiany"
|
301 |
|
302 |
# @ contact_form
|
303 |
+
#: contact_form.php:420
|
304 |
msgid "Sorry, your e-mail could not be delivered."
|
305 |
msgstr "Niestety, ten e-mail nie mógł zostać dostarczony."
|
306 |
|
307 |
# @ contact_form
|
308 |
+
#: contact_form.php:478
|
309 |
msgid "You can attach files of the following types"
|
310 |
msgstr "Możesz załączać pliki następujących typów"
|
311 |
|
312 |
# @ contact_form
|
313 |
+
#: contact_form.php:486
|
314 |
msgid "Send me a copy"
|
315 |
msgstr "Wyślij mi kopię"
|
316 |
|
317 |
# @ contact_form
|
318 |
+
#: contact_form.php:496
|
319 |
msgid "Submit"
|
320 |
msgstr "Wyślij"
|
321 |
|
322 |
# @ contact_form
|
323 |
+
#: contact_form.php:535
|
324 |
msgid "Your name is required."
|
325 |
msgstr "Podanie imienia jest wymagane."
|
326 |
|
327 |
# @ contact_form
|
328 |
+
#: contact_form.php:536
|
329 |
msgid "A proper e-mail address is required."
|
330 |
msgstr "Podanie prawidłowego adresu e-mail jest wymagane."
|
331 |
|
332 |
# @ contact_form
|
333 |
+
#: contact_form.php:537
|
334 |
msgid "Subject text is required."
|
335 |
msgstr "Podanie tematu jest wymagane."
|
336 |
|
337 |
# @ contact_form
|
338 |
+
#: contact_form.php:538
|
339 |
msgid "Message text is required."
|
340 |
msgstr "Wiadomość musi mieć jakąś treść."
|
341 |
|
342 |
# @ contact_form
|
343 |
+
#: contact_form.php:539
|
344 |
msgid "Please make corrections below and try again."
|
345 |
msgstr "Proszę nanieść poprawki i spróbować jeszcze raz."
|
346 |
|
347 |
# @ contact_form
|
348 |
+
#: contact_form.php:570
|
349 |
msgid "Attachment is broken."
|
350 |
msgstr "Załącznik jest uszkodzony."
|
351 |
|
352 |
# @ contact_form
|
353 |
+
#: contact_form.php:583
|
354 |
msgid "Please complete the CAPTCHA."
|
355 |
msgstr "Proszę dokładnie przepisać kod."
|
356 |
|
357 |
# @ contact_form
|
358 |
+
#: contact_form.php:699
|
359 |
msgid "Contact from"
|
360 |
msgstr "Kontakt z"
|
361 |
|
362 |
# @ contact_form
|
363 |
+
#: contact_form.php:704
|
364 |
msgid "Name"
|
365 |
msgstr "Imię"
|
366 |
|
367 |
# @ contact_form
|
368 |
+
#: contact_form.php:707
|
369 |
msgid "Email"
|
370 |
msgstr "E-mail"
|
371 |
|
372 |
# @ contact_form
|
373 |
+
#: contact_form.php:710
|
374 |
msgid "Subject"
|
375 |
msgstr "Temat"
|
376 |
|
377 |
# @ contact_form
|
378 |
+
#: contact_form.php:713
|
379 |
msgid "Message"
|
380 |
msgstr "Wiadomość"
|
381 |
|
382 |
# @ contact_form
|
383 |
+
#: contact_form.php:716
|
384 |
msgid "Site"
|
385 |
msgstr "Strona www"
|
386 |
|
387 |
+
#: contact_form.php:761
|
388 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
389 |
msgstr ""
|
390 |
|
391 |
# @ contact_form
|
392 |
+
#: contact_form.php:815
|
393 |
msgid "FAQ"
|
394 |
msgstr "FAQ"
|
395 |
|
396 |
# @ contact_form
|
397 |
+
#: contact_form.php:816
|
398 |
msgid "Support"
|
399 |
msgstr "Wsparcie"
|
400 |
|
languages/contact_form-pt_BR.mo
CHANGED
Binary file
|
languages/contact_form-pt_BR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
|
9 |
"Language: \n"
|
@@ -28,8 +28,8 @@ msgid "Read more"
|
|
28 |
msgstr "Leia Mais"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
-
#: contact_form.php:
|
32 |
-
#: contact_form.php:
|
33 |
msgid "Settings"
|
34 |
msgstr "Configurações"
|
35 |
|
@@ -206,22 +206,22 @@ msgid "Display additional info in email"
|
|
206 |
msgstr ""
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
-
#: contact_form.php:
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "Enviado de (Endereço IP)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
-
#: contact_form.php:
|
215 |
msgid "Date/Time"
|
216 |
msgstr "DAta / Hora"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
-
#: contact_form.php:
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "Vindo de (origem)"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
-
#: contact_form.php:
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "Usando (cliente de email)"
|
227 |
|
@@ -254,83 +254,83 @@ msgstr ""
|
|
254 |
msgid "Save Changes"
|
255 |
msgstr "Salvar mudanças"
|
256 |
|
257 |
-
#: contact_form.php:
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "Desculpe, seu e-mail não pode ser entregue."
|
260 |
|
261 |
-
#: contact_form.php:
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "Você pode anexar arquivos do seguinte tipo"
|
264 |
|
265 |
-
#: contact_form.php:
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "Envie-me uma cópia"
|
268 |
|
269 |
-
#: contact_form.php:
|
270 |
msgid "Submit"
|
271 |
msgstr "Enviar"
|
272 |
|
273 |
-
#: contact_form.php:
|
274 |
msgid "Your name is required."
|
275 |
msgstr "Seu nome é obrigatório"
|
276 |
|
277 |
-
#: contact_form.php:
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "Um e-mail correto é obrigatório."
|
280 |
|
281 |
-
#: contact_form.php:
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "O Assunto da mensagem é obrigatório."
|
284 |
|
285 |
-
#: contact_form.php:
|
286 |
msgid "Message text is required."
|
287 |
msgstr "O texto da Mensagem é obrigatório."
|
288 |
|
289 |
-
#: contact_form.php:
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
|
292 |
|
293 |
-
#: contact_form.php:
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "Impossível anexar arquivo. "
|
296 |
|
297 |
-
#: contact_form.php:
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "Por favor, complete a resposta da charada ."
|
300 |
|
301 |
-
#: contact_form.php:
|
302 |
msgid "Contact from"
|
303 |
msgstr "Formulário de Contato"
|
304 |
|
305 |
-
#: contact_form.php:
|
306 |
msgid "Name"
|
307 |
msgstr "Nome"
|
308 |
|
309 |
-
#: contact_form.php:
|
310 |
msgid "Email"
|
311 |
msgstr "E-Mail"
|
312 |
|
313 |
-
#: contact_form.php:
|
314 |
msgid "Subject"
|
315 |
msgstr "Assunto"
|
316 |
|
317 |
-
#: contact_form.php:
|
318 |
msgid "Message"
|
319 |
msgstr "Mensagem"
|
320 |
|
321 |
-
#: contact_form.php:
|
322 |
msgid "Site"
|
323 |
msgstr "Site"
|
324 |
|
325 |
-
#: contact_form.php:
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "Se você consegue ver esta MENSAGEM então seu cliente não aceita tipos MIME! Favor usar um cliente mais atualizado."
|
328 |
|
329 |
-
#: contact_form.php:
|
330 |
msgid "FAQ"
|
331 |
msgstr "Perguntas Frequentes"
|
332 |
|
333 |
-
#: contact_form.php:
|
334 |
msgid "Support"
|
335 |
msgstr "Suporte"
|
336 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:12+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:12+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
|
9 |
"Language: \n"
|
28 |
msgstr "Leia Mais"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
+
#: contact_form.php:805
|
32 |
+
#: contact_form.php:814
|
33 |
msgid "Settings"
|
34 |
msgstr "Configurações"
|
35 |
|
206 |
msgstr ""
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
+
#: contact_form.php:676
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "Enviado de (Endereço IP)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
+
#: contact_form.php:681
|
215 |
msgid "Date/Time"
|
216 |
msgstr "DAta / Hora"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
+
#: contact_form.php:686
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "Vindo de (origem)"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
+
#: contact_form.php:691
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "Usando (cliente de email)"
|
227 |
|
254 |
msgid "Save Changes"
|
255 |
msgstr "Salvar mudanças"
|
256 |
|
257 |
+
#: contact_form.php:420
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "Desculpe, seu e-mail não pode ser entregue."
|
260 |
|
261 |
+
#: contact_form.php:478
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "Você pode anexar arquivos do seguinte tipo"
|
264 |
|
265 |
+
#: contact_form.php:486
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "Envie-me uma cópia"
|
268 |
|
269 |
+
#: contact_form.php:496
|
270 |
msgid "Submit"
|
271 |
msgstr "Enviar"
|
272 |
|
273 |
+
#: contact_form.php:535
|
274 |
msgid "Your name is required."
|
275 |
msgstr "Seu nome é obrigatório"
|
276 |
|
277 |
+
#: contact_form.php:536
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "Um e-mail correto é obrigatório."
|
280 |
|
281 |
+
#: contact_form.php:537
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "O Assunto da mensagem é obrigatório."
|
284 |
|
285 |
+
#: contact_form.php:538
|
286 |
msgid "Message text is required."
|
287 |
msgstr "O texto da Mensagem é obrigatório."
|
288 |
|
289 |
+
#: contact_form.php:539
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
|
292 |
|
293 |
+
#: contact_form.php:570
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "Impossível anexar arquivo. "
|
296 |
|
297 |
+
#: contact_form.php:583
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "Por favor, complete a resposta da charada ."
|
300 |
|
301 |
+
#: contact_form.php:699
|
302 |
msgid "Contact from"
|
303 |
msgstr "Formulário de Contato"
|
304 |
|
305 |
+
#: contact_form.php:704
|
306 |
msgid "Name"
|
307 |
msgstr "Nome"
|
308 |
|
309 |
+
#: contact_form.php:707
|
310 |
msgid "Email"
|
311 |
msgstr "E-Mail"
|
312 |
|
313 |
+
#: contact_form.php:710
|
314 |
msgid "Subject"
|
315 |
msgstr "Assunto"
|
316 |
|
317 |
+
#: contact_form.php:713
|
318 |
msgid "Message"
|
319 |
msgstr "Mensagem"
|
320 |
|
321 |
+
#: contact_form.php:716
|
322 |
msgid "Site"
|
323 |
msgstr "Site"
|
324 |
|
325 |
+
#: contact_form.php:761
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "Se você consegue ver esta MENSAGEM então seu cliente não aceita tipos MIME! Favor usar um cliente mais atualizado."
|
328 |
|
329 |
+
#: contact_form.php:815
|
330 |
msgid "FAQ"
|
331 |
msgstr "Perguntas Frequentes"
|
332 |
|
333 |
+
#: contact_form.php:816
|
334 |
msgid "Support"
|
335 |
msgstr "Suporte"
|
336 |
|
languages/contact_form-pt_PT.mo
CHANGED
Binary file
|
languages/contact_form-pt_PT.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
|
9 |
"Language: \n"
|
@@ -28,8 +28,8 @@ msgid "Read more"
|
|
28 |
msgstr "Leia Mais"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
-
#: contact_form.php:
|
32 |
-
#: contact_form.php:
|
33 |
msgid "Settings"
|
34 |
msgstr "Configurações"
|
35 |
|
@@ -206,22 +206,22 @@ msgid "Display additional info in email"
|
|
206 |
msgstr ""
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
-
#: contact_form.php:
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "Enviado de (Endereço IP)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
-
#: contact_form.php:
|
215 |
msgid "Date/Time"
|
216 |
msgstr "DAta / Hora"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
-
#: contact_form.php:
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "Vindo de (origem)"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
-
#: contact_form.php:
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "Usando (cliente de email)"
|
227 |
|
@@ -254,83 +254,83 @@ msgstr ""
|
|
254 |
msgid "Save Changes"
|
255 |
msgstr "Salvar mudanças"
|
256 |
|
257 |
-
#: contact_form.php:
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "Desculpe, seu e-mail não pode ser entregue."
|
260 |
|
261 |
-
#: contact_form.php:
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "Você pode anexar arquivos do seguinte tipo"
|
264 |
|
265 |
-
#: contact_form.php:
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "Envie-me uma cópia"
|
268 |
|
269 |
-
#: contact_form.php:
|
270 |
msgid "Submit"
|
271 |
msgstr "Enviar"
|
272 |
|
273 |
-
#: contact_form.php:
|
274 |
msgid "Your name is required."
|
275 |
msgstr "Seu nome é obrigatório"
|
276 |
|
277 |
-
#: contact_form.php:
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "Um e-mail correto é obrigatório."
|
280 |
|
281 |
-
#: contact_form.php:
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "O Assunto da mensagem é obrigatório."
|
284 |
|
285 |
-
#: contact_form.php:
|
286 |
msgid "Message text is required."
|
287 |
msgstr "O texto da Mensagem é obrigatório."
|
288 |
|
289 |
-
#: contact_form.php:
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
|
292 |
|
293 |
-
#: contact_form.php:
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "Impossível anexar arquivo. "
|
296 |
|
297 |
-
#: contact_form.php:
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "Por favor, complete a resposta da charada ."
|
300 |
|
301 |
-
#: contact_form.php:
|
302 |
msgid "Contact from"
|
303 |
msgstr "Formulário de Contato"
|
304 |
|
305 |
-
#: contact_form.php:
|
306 |
msgid "Name"
|
307 |
msgstr "Nome"
|
308 |
|
309 |
-
#: contact_form.php:
|
310 |
msgid "Email"
|
311 |
msgstr "E-Mail"
|
312 |
|
313 |
-
#: contact_form.php:
|
314 |
msgid "Subject"
|
315 |
msgstr "Assunto"
|
316 |
|
317 |
-
#: contact_form.php:
|
318 |
msgid "Message"
|
319 |
msgstr "Mensagem"
|
320 |
|
321 |
-
#: contact_form.php:
|
322 |
msgid "Site"
|
323 |
msgstr "Site"
|
324 |
|
325 |
-
#: contact_form.php:
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "Se você consegue ver esta MENSAGEM então seu cliente não aceita tipos MIME! Favor usar um cliente mais atualizado."
|
328 |
|
329 |
-
#: contact_form.php:
|
330 |
msgid "FAQ"
|
331 |
msgstr "Perguntas Frequentes"
|
332 |
|
333 |
-
#: contact_form.php:
|
334 |
msgid "Support"
|
335 |
msgstr "Suporte"
|
336 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:12+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:12+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
|
9 |
"Language: \n"
|
28 |
msgstr "Leia Mais"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
+
#: contact_form.php:805
|
32 |
+
#: contact_form.php:814
|
33 |
msgid "Settings"
|
34 |
msgstr "Configurações"
|
35 |
|
206 |
msgstr ""
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
+
#: contact_form.php:676
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "Enviado de (Endereço IP)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
+
#: contact_form.php:681
|
215 |
msgid "Date/Time"
|
216 |
msgstr "DAta / Hora"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
+
#: contact_form.php:686
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "Vindo de (origem)"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
+
#: contact_form.php:691
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "Usando (cliente de email)"
|
227 |
|
254 |
msgid "Save Changes"
|
255 |
msgstr "Salvar mudanças"
|
256 |
|
257 |
+
#: contact_form.php:420
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "Desculpe, seu e-mail não pode ser entregue."
|
260 |
|
261 |
+
#: contact_form.php:478
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "Você pode anexar arquivos do seguinte tipo"
|
264 |
|
265 |
+
#: contact_form.php:486
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "Envie-me uma cópia"
|
268 |
|
269 |
+
#: contact_form.php:496
|
270 |
msgid "Submit"
|
271 |
msgstr "Enviar"
|
272 |
|
273 |
+
#: contact_form.php:535
|
274 |
msgid "Your name is required."
|
275 |
msgstr "Seu nome é obrigatório"
|
276 |
|
277 |
+
#: contact_form.php:536
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "Um e-mail correto é obrigatório."
|
280 |
|
281 |
+
#: contact_form.php:537
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "O Assunto da mensagem é obrigatório."
|
284 |
|
285 |
+
#: contact_form.php:538
|
286 |
msgid "Message text is required."
|
287 |
msgstr "O texto da Mensagem é obrigatório."
|
288 |
|
289 |
+
#: contact_form.php:539
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
|
292 |
|
293 |
+
#: contact_form.php:570
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "Impossível anexar arquivo. "
|
296 |
|
297 |
+
#: contact_form.php:583
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "Por favor, complete a resposta da charada ."
|
300 |
|
301 |
+
#: contact_form.php:699
|
302 |
msgid "Contact from"
|
303 |
msgstr "Formulário de Contato"
|
304 |
|
305 |
+
#: contact_form.php:704
|
306 |
msgid "Name"
|
307 |
msgstr "Nome"
|
308 |
|
309 |
+
#: contact_form.php:707
|
310 |
msgid "Email"
|
311 |
msgstr "E-Mail"
|
312 |
|
313 |
+
#: contact_form.php:710
|
314 |
msgid "Subject"
|
315 |
msgstr "Assunto"
|
316 |
|
317 |
+
#: contact_form.php:713
|
318 |
msgid "Message"
|
319 |
msgstr "Mensagem"
|
320 |
|
321 |
+
#: contact_form.php:716
|
322 |
msgid "Site"
|
323 |
msgstr "Site"
|
324 |
|
325 |
+
#: contact_form.php:761
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "Se você consegue ver esta MENSAGEM então seu cliente não aceita tipos MIME! Favor usar um cliente mais atualizado."
|
328 |
|
329 |
+
#: contact_form.php:815
|
330 |
msgid "FAQ"
|
331 |
msgstr "Perguntas Frequentes"
|
332 |
|
333 |
+
#: contact_form.php:816
|
334 |
msgid "Support"
|
335 |
msgstr "Suporte"
|
336 |
|
languages/contact_form-ru_RU.mo
CHANGED
Binary file
|
languages/contact_form-ru_RU.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"Language: \n"
|
@@ -28,8 +28,8 @@ msgid "Read more"
|
|
28 |
msgstr "Читать далее"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
-
#: contact_form.php:
|
32 |
-
#: contact_form.php:
|
33 |
msgid "Settings"
|
34 |
msgstr "Настройки"
|
35 |
|
@@ -206,22 +206,22 @@ msgid "Display additional info in email"
|
|
206 |
msgstr "Отображение дополнительной информации в письме"
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
-
#: contact_form.php:
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "Отправлено от (ip адрес)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
-
#: contact_form.php:
|
215 |
msgid "Date/Time"
|
216 |
msgstr "Дата/Время"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
-
#: contact_form.php:
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "Пришло из (реферер)"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
-
#: contact_form.php:
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "Используя (user agent)"
|
227 |
|
@@ -253,83 +253,83 @@ msgstr "Урл"
|
|
253 |
msgid "Save Changes"
|
254 |
msgstr "Save Changes"
|
255 |
|
256 |
-
#: contact_form.php:
|
257 |
msgid "Sorry, your e-mail could not be delivered."
|
258 |
msgstr "Извините, ваш email не может быть отправлен."
|
259 |
|
260 |
-
#: contact_form.php:
|
261 |
msgid "You can attach files of the following types"
|
262 |
msgstr "Пользователи могут прикрепить файлы таких типов"
|
263 |
|
264 |
-
#: contact_form.php:
|
265 |
msgid "Send me a copy"
|
266 |
msgstr "Отправить мне копию"
|
267 |
|
268 |
-
#: contact_form.php:
|
269 |
msgid "Submit"
|
270 |
msgstr "Отправить"
|
271 |
|
272 |
-
#: contact_form.php:
|
273 |
msgid "Your name is required."
|
274 |
msgstr "Ваше имя - это обязательное поле."
|
275 |
|
276 |
-
#: contact_form.php:
|
277 |
msgid "A proper e-mail address is required."
|
278 |
msgstr "Поле e-mail адреса - обязательное для заполнения."
|
279 |
|
280 |
-
#: contact_form.php:
|
281 |
msgid "Subject text is required."
|
282 |
msgstr "Поле Тема - обязательное поле."
|
283 |
|
284 |
-
#: contact_form.php:
|
285 |
msgid "Message text is required."
|
286 |
msgstr "Поле Сообщение - обязательное поле."
|
287 |
|
288 |
-
#: contact_form.php:
|
289 |
msgid "Please make corrections below and try again."
|
290 |
msgstr "Пожалуйста, сделайте исправления в отмеченных полях ниже и повторите попытку."
|
291 |
|
292 |
-
#: contact_form.php:
|
293 |
msgid "Attachment is broken."
|
294 |
msgstr "Прикрепленный тип файла не поддерживается"
|
295 |
|
296 |
-
#: contact_form.php:
|
297 |
msgid "Please complete the CAPTCHA."
|
298 |
msgstr "Пожалуйста, заполните КАПЧУ."
|
299 |
|
300 |
-
#: contact_form.php:
|
301 |
msgid "Contact from"
|
302 |
msgstr "Контактная Форма"
|
303 |
|
304 |
-
#: contact_form.php:
|
305 |
msgid "Name"
|
306 |
msgstr "Имя"
|
307 |
|
308 |
-
#: contact_form.php:
|
309 |
msgid "Email"
|
310 |
msgstr "Email"
|
311 |
|
312 |
-
#: contact_form.php:
|
313 |
msgid "Subject"
|
314 |
msgstr "Тема"
|
315 |
|
316 |
-
#: contact_form.php:
|
317 |
msgid "Message"
|
318 |
msgstr "Сообщение"
|
319 |
|
320 |
-
#: contact_form.php:
|
321 |
msgid "Site"
|
322 |
msgstr "Сайт"
|
323 |
|
324 |
-
#: contact_form.php:
|
325 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
326 |
msgstr "Если вы можете видеть этот MIME значит ваш почтовый клиент не поддерживает MIME тип!"
|
327 |
|
328 |
-
#: contact_form.php:
|
329 |
msgid "FAQ"
|
330 |
msgstr "FAQ"
|
331 |
|
332 |
-
#: contact_form.php:
|
333 |
msgid "Support"
|
334 |
msgstr "Поддержка"
|
335 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:12+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:12+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"Language: \n"
|
28 |
msgstr "Читать далее"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
+
#: contact_form.php:805
|
32 |
+
#: contact_form.php:814
|
33 |
msgid "Settings"
|
34 |
msgstr "Настройки"
|
35 |
|
206 |
msgstr "Отображение дополнительной информации в письме"
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
+
#: contact_form.php:676
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "Отправлено от (ip адрес)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
+
#: contact_form.php:681
|
215 |
msgid "Date/Time"
|
216 |
msgstr "Дата/Время"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
+
#: contact_form.php:686
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "Пришло из (реферер)"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
+
#: contact_form.php:691
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "Используя (user agent)"
|
227 |
|
253 |
msgid "Save Changes"
|
254 |
msgstr "Save Changes"
|
255 |
|
256 |
+
#: contact_form.php:420
|
257 |
msgid "Sorry, your e-mail could not be delivered."
|
258 |
msgstr "Извините, ваш email не может быть отправлен."
|
259 |
|
260 |
+
#: contact_form.php:478
|
261 |
msgid "You can attach files of the following types"
|
262 |
msgstr "Пользователи могут прикрепить файлы таких типов"
|
263 |
|
264 |
+
#: contact_form.php:486
|
265 |
msgid "Send me a copy"
|
266 |
msgstr "Отправить мне копию"
|
267 |
|
268 |
+
#: contact_form.php:496
|
269 |
msgid "Submit"
|
270 |
msgstr "Отправить"
|
271 |
|
272 |
+
#: contact_form.php:535
|
273 |
msgid "Your name is required."
|
274 |
msgstr "Ваше имя - это обязательное поле."
|
275 |
|
276 |
+
#: contact_form.php:536
|
277 |
msgid "A proper e-mail address is required."
|
278 |
msgstr "Поле e-mail адреса - обязательное для заполнения."
|
279 |
|
280 |
+
#: contact_form.php:537
|
281 |
msgid "Subject text is required."
|
282 |
msgstr "Поле Тема - обязательное поле."
|
283 |
|
284 |
+
#: contact_form.php:538
|
285 |
msgid "Message text is required."
|
286 |
msgstr "Поле Сообщение - обязательное поле."
|
287 |
|
288 |
+
#: contact_form.php:539
|
289 |
msgid "Please make corrections below and try again."
|
290 |
msgstr "Пожалуйста, сделайте исправления в отмеченных полях ниже и повторите попытку."
|
291 |
|
292 |
+
#: contact_form.php:570
|
293 |
msgid "Attachment is broken."
|
294 |
msgstr "Прикрепленный тип файла не поддерживается"
|
295 |
|
296 |
+
#: contact_form.php:583
|
297 |
msgid "Please complete the CAPTCHA."
|
298 |
msgstr "Пожалуйста, заполните КАПЧУ."
|
299 |
|
300 |
+
#: contact_form.php:699
|
301 |
msgid "Contact from"
|
302 |
msgstr "Контактная Форма"
|
303 |
|
304 |
+
#: contact_form.php:704
|
305 |
msgid "Name"
|
306 |
msgstr "Имя"
|
307 |
|
308 |
+
#: contact_form.php:707
|
309 |
msgid "Email"
|
310 |
msgstr "Email"
|
311 |
|
312 |
+
#: contact_form.php:710
|
313 |
msgid "Subject"
|
314 |
msgstr "Тема"
|
315 |
|
316 |
+
#: contact_form.php:713
|
317 |
msgid "Message"
|
318 |
msgstr "Сообщение"
|
319 |
|
320 |
+
#: contact_form.php:716
|
321 |
msgid "Site"
|
322 |
msgstr "Сайт"
|
323 |
|
324 |
+
#: contact_form.php:761
|
325 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
326 |
msgstr "Если вы можете видеть этот MIME значит ваш почтовый клиент не поддерживает MIME тип!"
|
327 |
|
328 |
+
#: contact_form.php:815
|
329 |
msgid "FAQ"
|
330 |
msgstr "FAQ"
|
331 |
|
332 |
+
#: contact_form.php:816
|
333 |
msgid "Support"
|
334 |
msgstr "Поддержка"
|
335 |
|
languages/contact_form-sv_SE.mo
CHANGED
Binary file
|
languages/contact_form-sv_SE.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"Language: \n"
|
@@ -28,8 +28,8 @@ msgid "Read more"
|
|
28 |
msgstr "Läs mer"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
-
#: contact_form.php:
|
32 |
-
#: contact_form.php:
|
33 |
msgid "Settings"
|
34 |
msgstr "Inställningar"
|
35 |
|
@@ -206,22 +206,22 @@ msgid "Display additional info in email"
|
|
206 |
msgstr ""
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
-
#: contact_form.php:
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "Skickat från (IP-adress)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
-
#: contact_form.php:
|
215 |
msgid "Date/Time"
|
216 |
msgstr "Dag/tid"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
-
#: contact_form.php:
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "Skickat från (referent)"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
-
#: contact_form.php:
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "med (user agent)"
|
227 |
|
@@ -254,83 +254,83 @@ msgstr ""
|
|
254 |
msgid "Save Changes"
|
255 |
msgstr "Spara ändringar"
|
256 |
|
257 |
-
#: contact_form.php:
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "Beklagar, men ditt meddelande kunde inte levereras."
|
260 |
|
261 |
-
#: contact_form.php:
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "Du kan lägga till filer av följande typ."
|
264 |
|
265 |
-
#: contact_form.php:
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "Skicka mig en kopia"
|
268 |
|
269 |
-
#: contact_form.php:
|
270 |
msgid "Submit"
|
271 |
msgstr "Skicka"
|
272 |
|
273 |
-
#: contact_form.php:
|
274 |
msgid "Your name is required."
|
275 |
msgstr "Ditt namn krävs"
|
276 |
|
277 |
-
#: contact_form.php:
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "En korrekt epostadress krävs."
|
280 |
|
281 |
-
#: contact_form.php:
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "Rubrik krävs."
|
284 |
|
285 |
-
#: contact_form.php:
|
286 |
msgid "Message text is required."
|
287 |
msgstr "Meddelandetext krävs."
|
288 |
|
289 |
-
#: contact_form.php:
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "Var vänlig och gör ändringarna nedan och försök igen."
|
292 |
|
293 |
-
#: contact_form.php:
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "Fel vid bilaga"
|
296 |
|
297 |
-
#: contact_form.php:
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "Var vänlig och fyll i CAPTCHA."
|
300 |
|
301 |
-
#: contact_form.php:
|
302 |
msgid "Contact from"
|
303 |
msgstr "Kontakformulär"
|
304 |
|
305 |
-
#: contact_form.php:
|
306 |
msgid "Name"
|
307 |
msgstr "Namn"
|
308 |
|
309 |
-
#: contact_form.php:
|
310 |
msgid "Email"
|
311 |
msgstr "Epost"
|
312 |
|
313 |
-
#: contact_form.php:
|
314 |
msgid "Subject"
|
315 |
msgstr "Rubrik"
|
316 |
|
317 |
-
#: contact_form.php:
|
318 |
msgid "Message"
|
319 |
msgstr "Meddelande"
|
320 |
|
321 |
-
#: contact_form.php:
|
322 |
msgid "Site"
|
323 |
msgstr "www"
|
324 |
|
325 |
-
#: contact_form.php:
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "Om du ser detta MIME så stödjer inte din client MIME!"
|
328 |
|
329 |
-
#: contact_form.php:
|
330 |
msgid "FAQ"
|
331 |
msgstr "Vanliga frågor"
|
332 |
|
333 |
-
#: contact_form.php:
|
334 |
msgid "Support"
|
335 |
msgstr "Support"
|
336 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:12+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:12+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"Language: \n"
|
28 |
msgstr "Läs mer"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
+
#: contact_form.php:805
|
32 |
+
#: contact_form.php:814
|
33 |
msgid "Settings"
|
34 |
msgstr "Inställningar"
|
35 |
|
206 |
msgstr ""
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
+
#: contact_form.php:676
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "Skickat från (IP-adress)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
+
#: contact_form.php:681
|
215 |
msgid "Date/Time"
|
216 |
msgstr "Dag/tid"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
+
#: contact_form.php:686
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "Skickat från (referent)"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
+
#: contact_form.php:691
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "med (user agent)"
|
227 |
|
254 |
msgid "Save Changes"
|
255 |
msgstr "Spara ändringar"
|
256 |
|
257 |
+
#: contact_form.php:420
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "Beklagar, men ditt meddelande kunde inte levereras."
|
260 |
|
261 |
+
#: contact_form.php:478
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "Du kan lägga till filer av följande typ."
|
264 |
|
265 |
+
#: contact_form.php:486
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "Skicka mig en kopia"
|
268 |
|
269 |
+
#: contact_form.php:496
|
270 |
msgid "Submit"
|
271 |
msgstr "Skicka"
|
272 |
|
273 |
+
#: contact_form.php:535
|
274 |
msgid "Your name is required."
|
275 |
msgstr "Ditt namn krävs"
|
276 |
|
277 |
+
#: contact_form.php:536
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "En korrekt epostadress krävs."
|
280 |
|
281 |
+
#: contact_form.php:537
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "Rubrik krävs."
|
284 |
|
285 |
+
#: contact_form.php:538
|
286 |
msgid "Message text is required."
|
287 |
msgstr "Meddelandetext krävs."
|
288 |
|
289 |
+
#: contact_form.php:539
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "Var vänlig och gör ändringarna nedan och försök igen."
|
292 |
|
293 |
+
#: contact_form.php:570
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "Fel vid bilaga"
|
296 |
|
297 |
+
#: contact_form.php:583
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "Var vänlig och fyll i CAPTCHA."
|
300 |
|
301 |
+
#: contact_form.php:699
|
302 |
msgid "Contact from"
|
303 |
msgstr "Kontakformulär"
|
304 |
|
305 |
+
#: contact_form.php:704
|
306 |
msgid "Name"
|
307 |
msgstr "Namn"
|
308 |
|
309 |
+
#: contact_form.php:707
|
310 |
msgid "Email"
|
311 |
msgstr "Epost"
|
312 |
|
313 |
+
#: contact_form.php:710
|
314 |
msgid "Subject"
|
315 |
msgstr "Rubrik"
|
316 |
|
317 |
+
#: contact_form.php:713
|
318 |
msgid "Message"
|
319 |
msgstr "Meddelande"
|
320 |
|
321 |
+
#: contact_form.php:716
|
322 |
msgid "Site"
|
323 |
msgstr "www"
|
324 |
|
325 |
+
#: contact_form.php:761
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "Om du ser detta MIME så stödjer inte din client MIME!"
|
328 |
|
329 |
+
#: contact_form.php:815
|
330 |
msgid "FAQ"
|
331 |
msgstr "Vanliga frågor"
|
332 |
|
333 |
+
#: contact_form.php:816
|
334 |
msgid "Support"
|
335 |
msgstr "Support"
|
336 |
|
languages/contact_form-tr_TR.mo
CHANGED
Binary file
|
languages/contact_form-tr_TR.po
CHANGED
@@ -2,8 +2,8 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2012-
|
6 |
-
"PO-Revision-Date: 2012-
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"Language: \n"
|
@@ -28,8 +28,8 @@ msgid "Read more"
|
|
28 |
msgstr "Devamı"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
-
#: contact_form.php:
|
32 |
-
#: contact_form.php:
|
33 |
msgid "Settings"
|
34 |
msgstr "Ayarlar"
|
35 |
|
@@ -206,22 +206,22 @@ msgid "Display additional info in email"
|
|
206 |
msgstr ""
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
-
#: contact_form.php:
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "Geldiği (ip adresi)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
-
#: contact_form.php:
|
215 |
msgid "Date/Time"
|
216 |
msgstr "Tarih/Zaman"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
-
#: contact_form.php:
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "Gelen"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
-
#: contact_form.php:
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "Using (user agent)"
|
227 |
|
@@ -254,83 +254,83 @@ msgstr ""
|
|
254 |
msgid "Save Changes"
|
255 |
msgstr "Değişiklikler Kayıt Edildi"
|
256 |
|
257 |
-
#: contact_form.php:
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "Üzgünüz, e-posta gönderilemedi."
|
260 |
|
261 |
-
#: contact_form.php:
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "Aşağıdaki türlerde dosya ekleyebilirsiniz"
|
264 |
|
265 |
-
#: contact_form.php:
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "Bir kopyasını banada gönder"
|
268 |
|
269 |
-
#: contact_form.php:
|
270 |
msgid "Submit"
|
271 |
msgstr "Gönder"
|
272 |
|
273 |
-
#: contact_form.php:
|
274 |
msgid "Your name is required."
|
275 |
msgstr "Adınız ve soyadınız gereklidir."
|
276 |
|
277 |
-
#: contact_form.php:
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "Düzgün bir e-posta adresi gereklidir."
|
280 |
|
281 |
-
#: contact_form.php:
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "Konu metni gereklidir."
|
284 |
|
285 |
-
#: contact_form.php:
|
286 |
msgid "Message text is required."
|
287 |
msgstr "Mesaj metni gereklidir."
|
288 |
|
289 |
-
#: contact_form.php:
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "Lütfen aşağıdaki düzeltmeleri yapın ve tekrar deneyin."
|
292 |
|
293 |
-
#: contact_form.php:
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "Eklenti Hatalı"
|
296 |
|
297 |
-
#: contact_form.php:
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "CAPTCHA Doldurunuz"
|
300 |
|
301 |
-
#: contact_form.php:
|
302 |
msgid "Contact from"
|
303 |
msgstr "Adlı Kişiden Mail Var"
|
304 |
|
305 |
-
#: contact_form.php:
|
306 |
msgid "Name"
|
307 |
msgstr "Adınız Soyadınız"
|
308 |
|
309 |
-
#: contact_form.php:
|
310 |
msgid "Email"
|
311 |
msgstr "e-mail"
|
312 |
|
313 |
-
#: contact_form.php:
|
314 |
msgid "Subject"
|
315 |
msgstr "Konu"
|
316 |
|
317 |
-
#: contact_form.php:
|
318 |
msgid "Message"
|
319 |
msgstr "Mesaj"
|
320 |
|
321 |
-
#: contact_form.php:
|
322 |
msgid "Site"
|
323 |
msgstr "Site"
|
324 |
|
325 |
-
#: contact_form.php:
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "Istemci daha bu MIME görürseniz MIME türlerini kabul etmez!"
|
328 |
|
329 |
-
#: contact_form.php:
|
330 |
msgid "FAQ"
|
331 |
msgstr "Sık Sorulanlar"
|
332 |
|
333 |
-
#: contact_form.php:
|
334 |
msgid "Support"
|
335 |
msgstr "Destek"
|
336 |
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: contact_form\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2012-07-24 19:12+0300\n"
|
6 |
+
"PO-Revision-Date: 2012-07-24 19:12+0300\n"
|
7 |
"Last-Translator: zos <zos@bestwebsoft.com>\n"
|
8 |
"Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
|
9 |
"Language: \n"
|
28 |
msgstr "Devamı"
|
29 |
|
30 |
#: contact_form.php:78
|
31 |
+
#: contact_form.php:805
|
32 |
+
#: contact_form.php:814
|
33 |
msgid "Settings"
|
34 |
msgstr "Ayarlar"
|
35 |
|
206 |
msgstr ""
|
207 |
|
208 |
#: contact_form.php:354
|
209 |
+
#: contact_form.php:676
|
210 |
msgid "Sent from (ip address)"
|
211 |
msgstr "Geldiği (ip adresi)"
|
212 |
|
213 |
#: contact_form.php:355
|
214 |
+
#: contact_form.php:681
|
215 |
msgid "Date/Time"
|
216 |
msgstr "Tarih/Zaman"
|
217 |
|
218 |
#: contact_form.php:356
|
219 |
+
#: contact_form.php:686
|
220 |
msgid "Coming from (referer)"
|
221 |
msgstr "Gelen"
|
222 |
|
223 |
#: contact_form.php:357
|
224 |
+
#: contact_form.php:691
|
225 |
msgid "Using (user agent)"
|
226 |
msgstr "Using (user agent)"
|
227 |
|
254 |
msgid "Save Changes"
|
255 |
msgstr "Değişiklikler Kayıt Edildi"
|
256 |
|
257 |
+
#: contact_form.php:420
|
258 |
msgid "Sorry, your e-mail could not be delivered."
|
259 |
msgstr "Üzgünüz, e-posta gönderilemedi."
|
260 |
|
261 |
+
#: contact_form.php:478
|
262 |
msgid "You can attach files of the following types"
|
263 |
msgstr "Aşağıdaki türlerde dosya ekleyebilirsiniz"
|
264 |
|
265 |
+
#: contact_form.php:486
|
266 |
msgid "Send me a copy"
|
267 |
msgstr "Bir kopyasını banada gönder"
|
268 |
|
269 |
+
#: contact_form.php:496
|
270 |
msgid "Submit"
|
271 |
msgstr "Gönder"
|
272 |
|
273 |
+
#: contact_form.php:535
|
274 |
msgid "Your name is required."
|
275 |
msgstr "Adınız ve soyadınız gereklidir."
|
276 |
|
277 |
+
#: contact_form.php:536
|
278 |
msgid "A proper e-mail address is required."
|
279 |
msgstr "Düzgün bir e-posta adresi gereklidir."
|
280 |
|
281 |
+
#: contact_form.php:537
|
282 |
msgid "Subject text is required."
|
283 |
msgstr "Konu metni gereklidir."
|
284 |
|
285 |
+
#: contact_form.php:538
|
286 |
msgid "Message text is required."
|
287 |
msgstr "Mesaj metni gereklidir."
|
288 |
|
289 |
+
#: contact_form.php:539
|
290 |
msgid "Please make corrections below and try again."
|
291 |
msgstr "Lütfen aşağıdaki düzeltmeleri yapın ve tekrar deneyin."
|
292 |
|
293 |
+
#: contact_form.php:570
|
294 |
msgid "Attachment is broken."
|
295 |
msgstr "Eklenti Hatalı"
|
296 |
|
297 |
+
#: contact_form.php:583
|
298 |
msgid "Please complete the CAPTCHA."
|
299 |
msgstr "CAPTCHA Doldurunuz"
|
300 |
|
301 |
+
#: contact_form.php:699
|
302 |
msgid "Contact from"
|
303 |
msgstr "Adlı Kişiden Mail Var"
|
304 |
|
305 |
+
#: contact_form.php:704
|
306 |
msgid "Name"
|
307 |
msgstr "Adınız Soyadınız"
|
308 |
|
309 |
+
#: contact_form.php:707
|
310 |
msgid "Email"
|
311 |
msgstr "e-mail"
|
312 |
|
313 |
+
#: contact_form.php:710
|
314 |
msgid "Subject"
|
315 |
msgstr "Konu"
|
316 |
|
317 |
+
#: contact_form.php:713
|
318 |
msgid "Message"
|
319 |
msgstr "Mesaj"
|
320 |
|
321 |
+
#: contact_form.php:716
|
322 |
msgid "Site"
|
323 |
msgstr "Site"
|
324 |
|
325 |
+
#: contact_form.php:761
|
326 |
msgid "If you can see this MIME than your client doesn't accept MIME types!"
|
327 |
msgstr "Istemci daha bu MIME görürseniz MIME türlerini kabul etmez!"
|
328 |
|
329 |
+
#: contact_form.php:815
|
330 |
msgid "FAQ"
|
331 |
msgstr "Sık Sorulanlar"
|
332 |
|
333 |
+
#: contact_form.php:816
|
334 |
msgid "Support"
|
335 |
msgstr "Destek"
|
336 |
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
|
|
3 |
Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10&product_id=13
|
4 |
Tags: Contact Form, text, contact, form, contacts, contakt form, request, contact me, feedback form, feedback, contact button, contact form plugin, contacts form plugin, attachment, send, copy, atachment, send copy
|
5 |
Requires at least: 2.9
|
6 |
-
Tested up to: 3.4
|
7 |
-
Stable tag: 3.
|
8 |
|
9 |
Add Contact Form to your WordPress website.
|
10 |
|
@@ -32,8 +32,10 @@ Contact Form allows you to add a feedback form easilly and simply to a post or a
|
|
32 |
* French (fr_FR) (thanks to Alain Thomas and Vincent Cibelli)
|
33 |
* German (de_DE) (thanks to Hartung Thomas)
|
34 |
* Greek (el_GR) (thanks to Pantelis Panteloglou)
|
|
|
35 |
* Hindi (hi_IN) (thanks to <a href="mailto:ash.pr@outshinesolutions.com">Team Outshine</a>)
|
36 |
* Italian (it_IT) (thanks to <a href="mailto:ilian@ultra-violet.it">Ilian Gagliardi</a>)
|
|
|
37 |
* Norwegian (nb_NO) (thanks to Tore Hjartland)
|
38 |
* Polish (pl_PL) (thanks to Jarek Spirydowicz)
|
39 |
* Russian (ru_RU)
|
@@ -98,6 +100,16 @@ Here is an example for German language files.
|
|
98 |
|
99 |
== Changelog ==
|
100 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
101 |
= V3.20 - 27.06.2012 =
|
102 |
* NEW : Added ability to select action after the send mail - Display text or Redirect to page.
|
103 |
* Update : We updated all functionality for wordpress 3.4.
|
@@ -211,6 +223,12 @@ Here is an example for German language files.
|
|
211 |
|
212 |
== Upgrade Notice ==
|
213 |
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
= V3.20 =
|
215 |
Added ability to select action after the send mail - Display text or Redirect to page. We updated all functionality for wordpress 3.4.
|
216 |
|
3 |
Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10&product_id=13
|
4 |
Tags: Contact Form, text, contact, form, contacts, contakt form, request, contact me, feedback form, feedback, contact button, contact form plugin, contacts form plugin, attachment, send, copy, atachment, send copy
|
5 |
Requires at least: 2.9
|
6 |
+
Tested up to: 3.4.1
|
7 |
+
Stable tag: 3.22
|
8 |
|
9 |
Add Contact Form to your WordPress website.
|
10 |
|
32 |
* French (fr_FR) (thanks to Alain Thomas and Vincent Cibelli)
|
33 |
* German (de_DE) (thanks to Hartung Thomas)
|
34 |
* Greek (el_GR) (thanks to Pantelis Panteloglou)
|
35 |
+
* Hebrew (he_IL) (thanks to Sagive SEO)
|
36 |
* Hindi (hi_IN) (thanks to <a href="mailto:ash.pr@outshinesolutions.com">Team Outshine</a>)
|
37 |
* Italian (it_IT) (thanks to <a href="mailto:ilian@ultra-violet.it">Ilian Gagliardi</a>)
|
38 |
+
* Japanese (ja) (thanks to Foken)
|
39 |
* Norwegian (nb_NO) (thanks to Tore Hjartland)
|
40 |
* Polish (pl_PL) (thanks to Jarek Spirydowicz)
|
41 |
* Russian (ru_RU)
|
100 |
|
101 |
== Changelog ==
|
102 |
|
103 |
+
= V3.22 - 24.07.2012 =
|
104 |
+
* NEW : Japanese language file is added to the plugin.
|
105 |
+
* Bugfix : Cross Site Request Forgery bug was fixed.
|
106 |
+
|
107 |
+
= V3.21 - 10.07.2012 =
|
108 |
+
* NEW : Hebrew language file is added to the plugin.
|
109 |
+
* Update : We updated French language file.
|
110 |
+
* Update : We updated all functionality for wordpress 3.4.1.
|
111 |
+
* Update : In the email in the field Date/Time used correct time zone - instead of UTC we use local settings which are setup on the page Settings -> General.
|
112 |
+
|
113 |
= V3.20 - 27.06.2012 =
|
114 |
* NEW : Added ability to select action after the send mail - Display text or Redirect to page.
|
115 |
* Update : We updated all functionality for wordpress 3.4.
|
223 |
|
224 |
== Upgrade Notice ==
|
225 |
|
226 |
+
= V3.22 =
|
227 |
+
Japanese language file is added to the plugin. Cross Site Request Forgery bug was fixed.
|
228 |
+
|
229 |
+
= V3.21 =
|
230 |
+
Hebrew language file is added to the plugin. We updated French language file. We updated all functionality for wordpress 3.4.1. In the email in the field Date/Time used correct time zone - instead of UTC we use local settings which are setup on the page Settings -> General.
|
231 |
+
|
232 |
= V3.20 =
|
233 |
Added ability to select action after the send mail - Display text or Redirect to page. We updated all functionality for wordpress 3.4.
|
234 |
|
screenshot-4.jpg
CHANGED
File without changes
|