Contact Form by BestWebSoft - Version 3.21

Version Description

  • 10.07.2012 =
  • NEW : Hebrew language file is added to the plugin.
  • Update : We updated French language file.
  • Update : We updated all functionality for wordpress 3.4.1.
  • 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.
Download this release

Release Info

Developer bestwebsoft
Plugin Icon 128x128 Contact Form by BestWebSoft
Version 3.21
Comparing to
See all releases

Code changes from version 3.24 to 3.21

Files changed (57) hide show
  1. contact_form.php +14 -17
  2. images/icon_16.png +0 -0
  3. images/icon_16_b.png +0 -0
  4. images/icon_16_c.png +0 -0
  5. images/icon_36.png +0 -0
  6. images/icon_36_b.png +0 -0
  7. images/px.png +0 -0
  8. js/script.js +0 -0
  9. languages/contact_form-ar.mo +0 -0
  10. languages/contact_form-ar.po +119 -84
  11. languages/contact_form-bg_BG.mo +0 -0
  12. languages/contact_form-bg_BG.po +28 -28
  13. languages/contact_form-cs_CZ.mo +0 -0
  14. languages/contact_form-cs_CZ.po +0 -336
  15. languages/contact_form-da_DK.mo +0 -0
  16. languages/contact_form-da_DK.po +28 -28
  17. languages/contact_form-de_DE.mo +0 -0
  18. languages/contact_form-de_DE.po +28 -28
  19. languages/contact_form-el_GR.mo +0 -0
  20. languages/contact_form-el_GR.po +28 -28
  21. languages/contact_form-es_ES.mo +0 -0
  22. languages/contact_form-es_ES.po +28 -28
  23. languages/contact_form-fr_FR.mo +0 -0
  24. languages/contact_form-fr_FR.po +28 -28
  25. languages/contact_form-he_IL.mo +0 -0
  26. languages/contact_form-he_IL.po +28 -28
  27. languages/contact_form-hi_IN.mo +0 -0
  28. languages/contact_form-hi_IN.po +119 -84
  29. languages/contact_form-it_IT.mo +0 -0
  30. languages/contact_form-it_IT.po +28 -28
  31. languages/contact_form-ja.mo +0 -0
  32. languages/contact_form-ja.po +0 -349
  33. languages/contact_form-lt_LT.mo +0 -0
  34. languages/contact_form-lt_LT.po +28 -28
  35. languages/contact_form-nb_NO.mo +0 -0
  36. languages/contact_form-nb_NO.po +28 -28
  37. languages/contact_form-nl_NL.mo +0 -0
  38. languages/contact_form-nl_NL.po +28 -28
  39. languages/contact_form-pl_PL.mo +0 -0
  40. languages/contact_form-pl_PL.po +28 -28
  41. languages/contact_form-pt_BR.mo +0 -0
  42. languages/contact_form-pt_BR.po +28 -28
  43. languages/contact_form-pt_PT.mo +0 -0
  44. languages/contact_form-pt_PT.po +28 -28
  45. languages/contact_form-ro_RO.mo +0 -0
  46. languages/contact_form-ro_RO.po +0 -337
  47. languages/contact_form-ru_RU.mo +0 -0
  48. languages/contact_form-ru_RU.po +28 -28
  49. languages/contact_form-sv_SE.mo +0 -0
  50. languages/contact_form-sv_SE.po +28 -28
  51. languages/contact_form-tr_TR.mo +0 -0
  52. languages/contact_form-tr_TR.po +28 -28
  53. readme.txt +1 -23
  54. screenshot-1.jpg +0 -0
  55. screenshot-2.jpg +0 -0
  56. screenshot-3.jpg +0 -0
  57. screenshot-5.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.24
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'] ) && 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,7 +383,6 @@ 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
- <?php wp_nonce_field( plugin_basename(__FILE__), 'cntctfrm_nonce_name' ); ?>
387
  </form>
388
  </div>
389
  <?php
@@ -402,8 +401,6 @@ if( ! function_exists( 'cntctfrm_display_form' ) ) {
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,7 +484,7 @@ if( ! function_exists( 'cntctfrm_display_form' ) ) {
487
  </div>';
488
  }
489
 
490
- if( has_filter( 'cntctfrm_display_captcha' ) ) {
491
  $content .= apply_filters( 'cntctfrm_display_captcha' , $error_message );
492
  }
493
 
@@ -632,8 +629,8 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
632
  $to = "";
633
  if( isset( $_SESSION['cntctfrm_send_mail'] ) && $_SESSION['cntctfrm_send_mail'] == true )
634
  return true;
635
- if( $cntctfrm_options['cntctfrm_select_email'] == 'user' ) {
636
- if( function_exists('get_userdatabylogin') && false !== $user = get_userdatabylogin( $cntctfrm_options['cntctfrm_user_email'] ) ){
637
  $to = $user->user_email;
638
  }
639
  else if( false !== $user = get_user_by( 'login', $cntctfrm_options_submit['cntctfrm_user_email'] ) )
@@ -662,7 +659,7 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
662
  }
663
 
664
  if( $cntctfrm_options['cntctfrm_display_add_info'] == 1) {
665
- $userdomain = @gethostbyaddr($_SERVER['REMOTE_ADDR']);
666
  if( $cntctfrm_options['cntctfrm_display_add_info'] == 1 ||
667
  $cntctfrm_options['cntctfrm_display_sent_from'] == 1 ||
668
  $cntctfrm_options['cntctfrm_display_coming_from'] == 1 ||
@@ -707,7 +704,7 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
707
  <td>'. __( "Email", 'contact_form' ) .'</td><td>'.$_REQUEST['cntctfrm_contact_email'].'</td>
708
  </tr>
709
  <tr>
710
- <td>'. __( "Subject", 'contact_form' ) . '</td><td>'. strip_tags( $subject ).'</td>
711
  </tr>
712
  <tr>
713
  <td>'. __( "Message", 'contact_form' ) . '</td><td>'.$_REQUEST['cntctfrm_contact_message'].'</td>
@@ -735,13 +732,13 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
735
  }
736
 
737
  if( isset( $_REQUEST['cntctfrm_contact_send_copy'] ) && $_REQUEST['cntctfrm_contact_send_copy'] == 1 )
738
- wp_mail( $_REQUEST['cntctfrm_contact_email'], stripslashes( strip_tags( $subject ) ), stripslashes( $message ), $headers, $attachments );
739
 
740
  // Mail it
741
- return wp_mail( $to, stripslashes( strip_tags( $subject ) ), stripslashes( $message ), $headers, $attachments );
742
  }
743
  else{
744
- if( $cntctfrm_options['cntctfrm_attachment'] == 1 && isset( $_FILES["cntctfrm_contact_attachment"]["tmp_name"] ) && $_FILES["cntctfrm_contact_attachment"]["tmp_name"] != "") {
745
  global $path_of_uploaded_file;
746
  $headers = "";
747
  $message_block = $message;
@@ -770,9 +767,9 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
770
  $file = file_get_contents($path_of_uploaded_file);
771
  $path_info = pathinfo( $path_of_uploaded_file );
772
 
773
- $message .= "Content-Type: ".$path_info['extension']."; name=\"".basename( $path_of_uploaded_file )."\"\r\n"
774
  ."Content-Transfer-Encoding: base64\r\n"
775
- ."Content-disposition: attachment; file=\"".basename( $path_of_uploaded_file )."\"\r\n"
776
  ."\r\n"
777
  .chunk_split( base64_encode( $file ) )
778
  .$bound_last;
@@ -786,9 +783,9 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
786
  $headers .= 'From: '.$_REQUEST['cntctfrm_contact_email']. "\r\n";
787
  }
788
  if( isset( $_REQUEST['cntctfrm_contact_send_copy'] ) && $_REQUEST['cntctfrm_contact_send_copy'] == 1 )
789
- @mail( $_REQUEST['cntctfrm_contact_email'], stripslashes( strip_tags( $subject ) ), stripslashes( $message ), $headers );
790
 
791
- return @mail( $to, stripslashes( strip_tags( $subject ) ), stripslashes( $message ), $headers );
792
  }
793
 
794
  }
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: Plugin for Contact Form.
6
  Author: BestWebSoft
7
+ Version: 3.21
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'] ) ) {
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
  </form>
387
  </div>
388
  <?php
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
  </div>';
485
  }
486
 
487
+ if(has_filter('cntctfrm_display_captcha')) {
488
  $content .= apply_filters( 'cntctfrm_display_captcha' , $error_message );
489
  }
490
 
629
  $to = "";
630
  if( isset( $_SESSION['cntctfrm_send_mail'] ) && $_SESSION['cntctfrm_send_mail'] == true )
631
  return true;
632
+ if($cntctfrm_options['cntctfrm_select_email'] == 'user') {
633
+ if( function_exists('get_userdatabylogin') && false !== $user = get_userdatabylogin($cntctfrm_options['cntctfrm_user_email'] ) ){
634
  $to = $user->user_email;
635
  }
636
  else if( false !== $user = get_user_by( 'login', $cntctfrm_options_submit['cntctfrm_user_email'] ) )
659
  }
660
 
661
  if( $cntctfrm_options['cntctfrm_display_add_info'] == 1) {
662
+ $userdomain = gethostbyaddr($_SERVER['REMOTE_ADDR']);
663
  if( $cntctfrm_options['cntctfrm_display_add_info'] == 1 ||
664
  $cntctfrm_options['cntctfrm_display_sent_from'] == 1 ||
665
  $cntctfrm_options['cntctfrm_display_coming_from'] == 1 ||
704
  <td>'. __( "Email", 'contact_form' ) .'</td><td>'.$_REQUEST['cntctfrm_contact_email'].'</td>
705
  </tr>
706
  <tr>
707
+ <td>'. __( "Subject", 'contact_form' ) . '</td><td>'.strip_tags( $_REQUEST['cntctfrm_contact_subject'] ).'</td>
708
  </tr>
709
  <tr>
710
  <td>'. __( "Message", 'contact_form' ) . '</td><td>'.$_REQUEST['cntctfrm_contact_message'].'</td>
732
  }
733
 
734
  if( isset( $_REQUEST['cntctfrm_contact_send_copy'] ) && $_REQUEST['cntctfrm_contact_send_copy'] == 1 )
735
+ wp_mail($_REQUEST['cntctfrm_contact_email'], stripslashes( strip_tags( $subject ) ), stripslashes($message), $headers, $attachments);
736
 
737
  // Mail it
738
+ return wp_mail($to, stripslashes( strip_tags( $subject ) ), stripslashes( $message ), $headers, $attachments);
739
  }
740
  else{
741
+ if( $cntctfrm_options['cntctfrm_attachment'] == 1 && isset($_FILES["cntctfrm_contact_attachment"]["tmp_name"]) && $_FILES["cntctfrm_contact_attachment"]["tmp_name"] != "") {
742
  global $path_of_uploaded_file;
743
  $headers = "";
744
  $message_block = $message;
767
  $file = file_get_contents($path_of_uploaded_file);
768
  $path_info = pathinfo( $path_of_uploaded_file );
769
 
770
+ $message .= "Content-Type: ".$path_info['extension']."; name=\"".basename($path_of_uploaded_file)."\"\r\n"
771
  ."Content-Transfer-Encoding: base64\r\n"
772
+ ."Content-disposition: attachment; file=\"".basename($path_of_uploaded_file)."\"\r\n"
773
  ."\r\n"
774
  .chunk_split( base64_encode( $file ) )
775
  .$bound_last;
783
  $headers .= 'From: '.$_REQUEST['cntctfrm_contact_email']. "\r\n";
784
  }
785
  if( isset( $_REQUEST['cntctfrm_contact_send_copy'] ) && $_REQUEST['cntctfrm_contact_send_copy'] == 1 )
786
+ @mail($_REQUEST['cntctfrm_contact_email'], stripslashes( strip_tags( $subject ) ), stripslashes( $message ), $headers);
787
 
788
+ return @mail($to, stripslashes( strip_tags( $subject ) ), stripslashes( $message ), $headers);
789
  }
790
 
791
  }
images/icon_16.png CHANGED
File without changes
images/icon_16_b.png CHANGED
File without changes
images/icon_16_c.png CHANGED
File without changes
images/icon_36.png CHANGED
File without changes
images/icon_36_b.png CHANGED
File without changes
images/px.png CHANGED
File without changes
js/script.js CHANGED
File without changes
languages/contact_form-ar.mo CHANGED
Binary file
languages/contact_form-ar.po CHANGED
@@ -2,10 +2,11 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-04-12 19:38+0200\n"
6
- "PO-Revision-Date: 2012-05-07 10:05+0200\n"
7
- "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Hammad Alshammari (ABU HATIM) www.abuhatim.net <al3zz.com@gmail.com>\n"
 
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
@@ -27,8 +28,8 @@ msgid "Read more"
27
  msgstr "اقرأ المزيد"
28
 
29
  #: contact_form.php:78
30
- #: contact_form.php:735
31
- #: contact_form.php:744
32
  msgid "Settings"
33
  msgstr "إعدادات"
34
 
@@ -58,7 +59,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
58
  msgstr "إذا كان لديك أي أسئلة، يرجى الاتصال بنا عبر plugin@bestwebsoft.com أو ملء استمارة الاتصال على موقعنا"
59
 
60
  #: contact_form.php:108
61
- #: contact_form.php:239
62
  msgid "Contact Form Options"
63
  msgstr "خيارات نموذج اتصل بنا"
64
 
@@ -66,243 +67,277 @@ msgstr "خيارات نموذج اتصل بنا"
66
  msgid "Contact Form"
67
  msgstr "نموذج الاتصال"
68
 
69
- #: contact_form.php:135
70
- #: contact_form.php:175
71
- #: contact_form.php:207
72
- #: contact_form.php:334
73
  msgid "Name:"
74
  msgstr "الأسم:"
75
 
76
- #: contact_form.php:136
77
- #: contact_form.php:176
78
- #: contact_form.php:208
79
- #: contact_form.php:335
80
  msgid "E-Mail Address:"
81
  msgstr "البريد الالكتروني:"
82
 
83
- #: contact_form.php:137
84
- #: contact_form.php:177
85
- #: contact_form.php:209
86
- #: contact_form.php:336
87
  msgid "Subject:"
88
  msgstr "موضوع الرسالة:"
89
 
90
- #: contact_form.php:138
91
- #: contact_form.php:178
92
- #: contact_form.php:210
93
- #: contact_form.php:337
94
  msgid "Message:"
95
  msgstr "الرسالة:"
96
 
97
- #: contact_form.php:139
98
- #: contact_form.php:179
99
- #: contact_form.php:211
100
- #: contact_form.php:338
101
  msgid "Attachment:"
102
  msgstr "المرفقات:"
103
 
104
- #: contact_form.php:219
105
- #: contact_form.php:228
 
 
 
 
 
 
 
 
 
 
106
  msgid "Options saved."
107
  msgstr "الخيارات حُفظت."
108
 
109
- #: contact_form.php:222
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "هذا المستخدم لا وجود له. لم يتم حفظ الإعدادات."
112
 
113
- #: contact_form.php:231
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "الرجاء إدخال بريد الكتروني صحيح. الاعدادات لم تُحفظ."
116
 
117
- #: contact_form.php:244
118
  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:"
119
  msgstr "إذا كنت ترغب في إضافة نموذج الاتصال إلى موقع الويب الخاص بك، قم بنسخ ولصق هذا الرمز القصير:"
120
 
121
- #: contact_form.php:245
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "إذا كانت المعلومات في الحقول أدناه فارغة سيتم إرسال الرسالة إلى عنوان الذي تم تحديده أثناء التسجيل."
124
 
125
- #: contact_form.php:249
126
  msgid "Use email of wordpress user:"
127
  msgstr "أستخدم بريد العضو في وورد بريس:"
128
 
129
- #: contact_form.php:255
130
  msgid "Select user name"
131
  msgstr "اختر اسم المستخدم"
132
 
133
- #: contact_form.php:260
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "تعيين اسم المستخدم من الذين سيحصلون على رسائل من شكل من أشكال الاتصال."
136
 
137
- #: contact_form.php:264
138
  msgid "Use this email:"
139
  msgstr "استخدام هذا البريد الالكتروني:"
140
 
141
- #: contact_form.php:270
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "تعيين عنوان البريد الإلكتروني التي سيتم استخدامها لاستقبال الرسائل."
144
 
145
- #: contact_form.php:274
146
  msgid "Additional options"
147
  msgstr "خيارات إضافية"
148
 
149
- #: contact_form.php:277
150
  msgid "Display Attachment block"
151
  msgstr "عرض حقل المرفقات"
152
 
153
- #: contact_form.php:282
154
  msgid "Users can attach files of the following types"
155
  msgstr "يمكن للمستخدمين إرفاق الملفات من الأنواع التالية"
156
 
157
- #: contact_form.php:286
 
 
 
 
 
 
 
 
158
  msgid "Display Send me a copy block"
159
  msgstr "عرض خيار (أرسل لي نسخة)"
160
 
161
- #: contact_form.php:292
162
  msgid "What use?"
163
  msgstr "ماذا تستخدم؟"
164
 
165
- #: contact_form.php:297
166
  msgid "Wp-mail"
167
  msgstr "Wp-mail"
168
 
169
- #: contact_form.php:298
170
  msgid "To send mail you can use the wordpress wp_mail function"
171
  msgstr "لإرسال البريد يمكنك استخدام وظيفة wp_mail"
172
 
173
- #: contact_form.php:306
174
  msgid "Mail"
175
  msgstr "Mail"
176
 
177
- #: contact_form.php:307
178
  msgid "To send mail you can use the php mail function"
179
  msgstr "لإرسال البريد يمكنك استخدام وظيفة البريد PHP"
180
 
181
- #: contact_form.php:311
182
  msgid "Change FROM fields of the contact form"
183
  msgstr "تغيير من الحقول من نموذج الاتصال"
184
 
185
- #: contact_form.php:317
186
  msgid "Display additional info in email"
187
  msgstr "عرض معلومات اضافية في البريد الالكتروني"
188
 
189
- #: contact_form.php:322
190
- #: contact_form.php:606
191
  msgid "Sent from (ip address)"
192
  msgstr "ارسلت من (عنوان IP)"
193
 
194
- #: contact_form.php:323
195
- #: contact_form.php:611
196
  msgid "Date/Time"
197
  msgstr "الوقت/التاريخ"
198
 
199
- #: contact_form.php:324
200
- #: contact_form.php:616
201
  msgid "Coming from (referer)"
202
  msgstr "Coming from (referer)"
203
 
204
- #: contact_form.php:325
205
- #: contact_form.php:621
206
  msgid "Using (user agent)"
207
  msgstr "باستخدام (وكيل المستخدم)"
208
 
209
- #: contact_form.php:329
210
  msgid "Change label for fields of the contact form"
211
  msgstr "تغيير تسمية حقول نموذج الاتصال"
212
 
213
- #: contact_form.php:344
214
- msgid "Save Changes"
215
- msgstr "حفظ التغييرات"
 
 
 
 
 
216
 
217
  #: contact_form.php:377
218
- msgid "Thank you for contacting us."
219
- msgstr "أشكركم على الاتصال بنا. سيتم الرد عليكم في أقرب فرصة."
220
 
221
- #: contact_form.php:382
 
 
 
 
 
 
 
 
 
 
 
 
222
  msgid "Sorry, your e-mail could not be delivered."
223
  msgstr "عذراً, لم نستطيع تسليم رسالتك."
224
 
225
- #: contact_form.php:439
226
  msgid "You can attach files of the following types"
227
  msgstr "يمكنك إرفاق الملفات من الأنواع التالية"
228
 
229
- #: contact_form.php:445
230
  msgid "Send me a copy"
231
  msgstr "أرسل لي نسخة"
232
 
233
- #: contact_form.php:455
234
  msgid "Submit"
235
  msgstr "تقدم"
236
 
237
- #: contact_form.php:471
238
  msgid "Your name is required."
239
  msgstr "مطلوب اسمك."
240
 
241
- #: contact_form.php:472
242
  msgid "A proper e-mail address is required."
243
  msgstr "مطلوب بريد الكتروني صحيح."
244
 
245
- #: contact_form.php:473
246
  msgid "Subject text is required."
247
  msgstr "مطلوب نص الموضوع."
248
 
249
- #: contact_form.php:474
250
  msgid "Message text is required."
251
  msgstr "مطلوب نص الرسالة."
252
 
253
- #: contact_form.php:475
254
  msgid "Please make corrections below and try again."
255
  msgstr "يرجى إجراء التصحيحات أدناه وحاول مرة أخرى."
256
 
257
- #: contact_form.php:506
258
  msgid "Attachment is broken."
259
  msgstr "المرفق تعطل."
260
 
261
- #: contact_form.php:519
262
  msgid "Please complete the CAPTCHA."
263
  msgstr "يرجى استكمال رمز التحقق."
264
 
265
- #: contact_form.php:629
266
  msgid "Contact from"
267
  msgstr "اتصل من"
268
 
269
- #: contact_form.php:634
270
  msgid "Name"
271
  msgstr "الأسم"
272
 
273
- #: contact_form.php:637
274
  msgid "Email"
275
  msgstr "البريد الألكتروني"
276
 
277
- #: contact_form.php:640
278
  msgid "Subject"
279
  msgstr "موضوع الرسالة"
280
 
281
- #: contact_form.php:643
282
  msgid "Message"
283
  msgstr "الرسالة"
284
 
285
- #: contact_form.php:646
286
  msgid "Site"
287
  msgstr "الموقع"
288
 
289
- #: contact_form.php:691
290
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
291
  msgstr "إذا يمكنك أن ترى هذه MIME من العميل الخاص بك لا يقبل أنواع MIME!"
292
 
293
- #: contact_form.php:745
294
  msgid "FAQ"
295
  msgstr "أسئلة وأجوبة"
296
 
297
- #: contact_form.php:746
298
  msgid "Support"
299
  msgstr "دعم"
300
 
301
  #~ msgid "E-Mail Addresse:"
302
  #~ msgstr "Indirizzo e-mail:"
303
-
304
  #~ msgid "Install Now"
305
  #~ msgstr "Installa Ora"
306
-
307
  #~ msgid "BWS Plugins"
308
  #~ msgstr "BWS Plugins"
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-07-10 10:48+0300\n"
6
+ "PO-Revision-Date: 2012-07-10 10:49+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"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
28
  msgstr "اقرأ المزيد"
29
 
30
  #: contact_form.php:78
31
+ #: contact_form.php:802
32
+ #: contact_form.php:811
33
  msgid "Settings"
34
  msgstr "إعدادات"
35
 
59
  msgstr "إذا كان لديك أي أسئلة، يرجى الاتصال بنا عبر plugin@bestwebsoft.com أو ملء استمارة الاتصال على موقعنا"
60
 
61
  #: contact_form.php:108
62
+ #: contact_form.php:262
63
  msgid "Contact Form Options"
64
  msgstr "خيارات نموذج اتصل بنا"
65
 
67
  msgid "Contact Form"
68
  msgstr "نموذج الاتصال"
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 "البريد الالكتروني:"
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 "الرجاء إدخال بريد الكتروني صحيح. الاعدادات لم تُحفظ."
127
 
128
+ #: contact_form.php:267
129
  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:"
130
  msgstr "إذا كنت ترغب في إضافة نموذج الاتصال إلى موقع الويب الخاص بك، قم بنسخ ولصق هذا الرمز القصير:"
131
 
132
+ #: contact_form.php:268
133
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
134
  msgstr "إذا كانت المعلومات في الحقول أدناه فارغة سيتم إرسال الرسالة إلى عنوان الذي تم تحديده أثناء التسجيل."
135
 
136
+ #: contact_form.php:272
137
  msgid "Use email of wordpress user:"
138
  msgstr "أستخدم بريد العضو في وورد بريس:"
139
 
140
+ #: contact_form.php:278
141
  msgid "Select user name"
142
  msgstr "اختر اسم المستخدم"
143
 
144
+ #: contact_form.php:283
145
  msgid "Set a name of user who will get messages from a contact form."
146
  msgstr "تعيين اسم المستخدم من الذين سيحصلون على رسائل من شكل من أشكال الاتصال."
147
 
148
+ #: contact_form.php:287
149
  msgid "Use this email:"
150
  msgstr "استخدام هذا البريد الالكتروني:"
151
 
152
+ #: contact_form.php:293
153
  msgid "Set an email address which will be used for messages receiving."
154
  msgstr "تعيين عنوان البريد الإلكتروني التي سيتم استخدامها لاستقبال الرسائل."
155
 
156
+ #: contact_form.php:297
157
  msgid "Additional options"
158
  msgstr "خيارات إضافية"
159
 
160
+ #: contact_form.php:300
161
  msgid "Display Attachment block"
162
  msgstr "عرض حقل المرفقات"
163
 
164
+ #: contact_form.php:305
165
  msgid "Users can attach files of the following types"
166
  msgstr "يمكن للمستخدمين إرفاق الملفات من الأنواع التالية"
167
 
168
+ #: contact_form.php:309
169
+ msgid "Display Attachment explanations"
170
+ msgstr ""
171
+
172
+ #: contact_form.php:314
173
+ msgid "Display explanations after Attachment block"
174
+ msgstr ""
175
+
176
+ #: contact_form.php:318
177
  msgid "Display Send me a copy block"
178
  msgstr "عرض خيار (أرسل لي نسخة)"
179
 
180
+ #: contact_form.php:324
181
  msgid "What use?"
182
  msgstr "ماذا تستخدم؟"
183
 
184
+ #: contact_form.php:329
185
  msgid "Wp-mail"
186
  msgstr "Wp-mail"
187
 
188
+ #: contact_form.php:330
189
  msgid "To send mail you can use the wordpress wp_mail function"
190
  msgstr "لإرسال البريد يمكنك استخدام وظيفة wp_mail"
191
 
192
+ #: contact_form.php:338
193
  msgid "Mail"
194
  msgstr "Mail"
195
 
196
+ #: contact_form.php:339
197
  msgid "To send mail you can use the php mail function"
198
  msgstr "لإرسال البريد يمكنك استخدام وظيفة البريد PHP"
199
 
200
+ #: contact_form.php:343
201
  msgid "Change FROM fields of the contact form"
202
  msgstr "تغيير من الحقول من نموذج الاتصال"
203
 
204
+ #: contact_form.php:349
205
  msgid "Display additional info in email"
206
  msgstr "عرض معلومات اضافية في البريد الالكتروني"
207
 
208
+ #: contact_form.php:354
209
+ #: contact_form.php:673
210
  msgid "Sent from (ip address)"
211
  msgstr "ارسلت من (عنوان IP)"
212
 
213
+ #: contact_form.php:355
214
+ #: contact_form.php:678
215
  msgid "Date/Time"
216
  msgstr "الوقت/التاريخ"
217
 
218
+ #: contact_form.php:356
219
+ #: contact_form.php:683
220
  msgid "Coming from (referer)"
221
  msgstr "Coming from (referer)"
222
 
223
+ #: contact_form.php:357
224
+ #: contact_form.php:688
225
  msgid "Using (user agent)"
226
  msgstr "باستخدام (وكيل المستخدم)"
227
 
228
+ #: contact_form.php:361
229
  msgid "Change label for fields of the contact form"
230
  msgstr "تغيير تسمية حقول نموذج الاتصال"
231
 
232
+ #: contact_form.php:374
233
+ msgid "Action after the send mail"
234
+ msgstr ""
235
+
236
+ #: contact_form.php:376
237
+ #, fuzzy
238
+ msgid "Display text"
239
+ msgstr "عرض حقل المرفقات"
240
 
241
  #: contact_form.php:377
242
+ msgid "Text"
243
+ msgstr ""
244
 
245
+ #: contact_form.php:378
246
+ msgid "Redirect to page"
247
+ msgstr ""
248
+
249
+ #: contact_form.php:379
250
+ msgid "Url"
251
+ msgstr ""
252
+
253
+ #: contact_form.php:384
254
+ msgid "Save Changes"
255
+ msgstr "حفظ التغييرات"
256
+
257
+ #: contact_form.php:417
258
  msgid "Sorry, your e-mail could not be delivered."
259
  msgstr "عذراً, لم نستطيع تسليم رسالتك."
260
 
261
+ #: contact_form.php:475
262
  msgid "You can attach files of the following types"
263
  msgstr "يمكنك إرفاق الملفات من الأنواع التالية"
264
 
265
+ #: contact_form.php:483
266
  msgid "Send me a copy"
267
  msgstr "أرسل لي نسخة"
268
 
269
+ #: contact_form.php:493
270
  msgid "Submit"
271
  msgstr "تقدم"
272
 
273
+ #: contact_form.php:532
274
  msgid "Your name is required."
275
  msgstr "مطلوب اسمك."
276
 
277
+ #: contact_form.php:533
278
  msgid "A proper e-mail address is required."
279
  msgstr "مطلوب بريد الكتروني صحيح."
280
 
281
+ #: contact_form.php:534
282
  msgid "Subject text is required."
283
  msgstr "مطلوب نص الموضوع."
284
 
285
+ #: contact_form.php:535
286
  msgid "Message text is required."
287
  msgstr "مطلوب نص الرسالة."
288
 
289
+ #: contact_form.php:536
290
  msgid "Please make corrections below and try again."
291
  msgstr "يرجى إجراء التصحيحات أدناه وحاول مرة أخرى."
292
 
293
+ #: contact_form.php:567
294
  msgid "Attachment is broken."
295
  msgstr "المرفق تعطل."
296
 
297
+ #: contact_form.php:580
298
  msgid "Please complete the CAPTCHA."
299
  msgstr "يرجى استكمال رمز التحقق."
300
 
301
+ #: contact_form.php:696
302
  msgid "Contact from"
303
  msgstr "اتصل من"
304
 
305
+ #: contact_form.php:701
306
  msgid "Name"
307
  msgstr "الأسم"
308
 
309
+ #: contact_form.php:704
310
  msgid "Email"
311
  msgstr "البريد الألكتروني"
312
 
313
+ #: contact_form.php:707
314
  msgid "Subject"
315
  msgstr "موضوع الرسالة"
316
 
317
+ #: contact_form.php:710
318
  msgid "Message"
319
  msgstr "الرسالة"
320
 
321
+ #: contact_form.php:713
322
  msgid "Site"
323
  msgstr "الموقع"
324
 
325
+ #: contact_form.php:758
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:812
330
  msgid "FAQ"
331
  msgstr "أسئلة وأجوبة"
332
 
333
+ #: contact_form.php:813
334
  msgid "Support"
335
  msgstr "دعم"
336
 
337
  #~ msgid "E-Mail Addresse:"
338
  #~ msgstr "Indirizzo e-mail:"
 
339
  #~ msgid "Install Now"
340
  #~ msgstr "Installa Ora"
 
341
  #~ msgid "BWS Plugins"
342
  #~ msgstr "BWS Plugins"
343
+
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-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,8 +28,8 @@ 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
 
@@ -206,22 +206,22 @@ msgid "Display additional info in email"
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,83 +254,83 @@ msgstr ""
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
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-07-10 10:49+0300\n"
6
+ "PO-Revision-Date: 2012-07-10 10:49+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:802
32
+ #: contact_form.php:811
33
  msgid "Settings"
34
  msgstr "Настройки"
35
 
206
  msgstr ""
207
 
208
  #: contact_form.php:354
209
+ #: contact_form.php:673
210
  msgid "Sent from (ip address)"
211
  msgstr "Изпратено от (ip адрес)"
212
 
213
  #: contact_form.php:355
214
+ #: contact_form.php:678
215
  msgid "Date/Time"
216
  msgstr "Дата/Час"
217
 
218
  #: contact_form.php:356
219
+ #: contact_form.php:683
220
  msgid "Coming from (referer)"
221
  msgstr "Идва от (referer)"
222
 
223
  #: contact_form.php:357
224
+ #: contact_form.php:688
225
  msgid "Using (user agent)"
226
  msgstr "Използвайки (user agent)"
227
 
254
  msgid "Save Changes"
255
  msgstr "Запис на промените"
256
 
257
+ #: contact_form.php:417
258
  msgid "Sorry, your e-mail could not be delivered."
259
  msgstr "Съжаляваме, Вашето съобщение не може да бъде изпратено."
260
 
261
+ #: contact_form.php:475
262
  msgid "You can attach files of the following types"
263
  msgstr "Можете да прикачвате файлове от следните типове"
264
 
265
+ #: contact_form.php:483
266
  msgid "Send me a copy"
267
  msgstr "Изпрати ми копие"
268
 
269
+ #: contact_form.php:493
270
  msgid "Submit"
271
  msgstr "Изпрати"
272
 
273
+ #: contact_form.php:532
274
  msgid "Your name is required."
275
  msgstr "Вашето име е задължително."
276
 
277
+ #: contact_form.php:533
278
  msgid "A proper e-mail address is required."
279
  msgstr "Правилният Email адрес е задължителен."
280
 
281
+ #: contact_form.php:534
282
  msgid "Subject text is required."
283
  msgstr "Заглавието е задължитено."
284
 
285
+ #: contact_form.php:535
286
  msgid "Message text is required."
287
  msgstr "Текстовото съобщение е задължително."
288
 
289
+ #: contact_form.php:536
290
  msgid "Please make corrections below and try again."
291
  msgstr "Моля направете необходимите корекции по-долу и опитайте отново."
292
 
293
+ #: contact_form.php:567
294
  msgid "Attachment is broken."
295
  msgstr "Прикаченият файл не се поддържа"
296
 
297
+ #: contact_form.php:580
298
  msgid "Please complete the CAPTCHA."
299
  msgstr "Моля попълнете CAPTCHA."
300
 
301
+ #: contact_form.php:696
302
  msgid "Contact from"
303
  msgstr "Форма за контакт"
304
 
305
+ #: contact_form.php:701
306
  msgid "Name"
307
  msgstr "Име"
308
 
309
+ #: contact_form.php:704
310
  msgid "Email"
311
  msgstr "Email"
312
 
313
+ #: contact_form.php:707
314
  msgid "Subject"
315
  msgstr "Относно"
316
 
317
+ #: contact_form.php:710
318
  msgid "Message"
319
  msgstr "Съобщение"
320
 
321
+ #: contact_form.php:713
322
  msgid "Site"
323
  msgstr "Сайт"
324
 
325
+ #: contact_form.php:758
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:812
330
  msgid "FAQ"
331
  msgstr "FAQ"
332
 
333
+ #: contact_form.php:813
334
  msgid "Support"
335
  msgstr "Поддръжка"
336
 
languages/contact_form-cs_CZ.mo DELETED
Binary file
languages/contact_form-cs_CZ.po DELETED
@@ -1,336 +0,0 @@
1
- msgid ""
2
- msgstr ""
3
- "Project-Id-Version: contact_form\n"
4
- "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-08-13 12:03+0200\n"
6
- "PO-Revision-Date: 2012-08-13 12:03+0200\n"
7
- "Last-Translator: Petr Zápotocký <petr.zapotocky@centrum.cz>\n"
8
- "Language-Team: Petr Zápotocký <\\tpetr.zapotocky@centrum.cz>\n"
9
- "Language: cs_CZ\n"
10
- "MIME-Version: 1.0\n"
11
- "Content-Type: text/plain; charset=UTF-8\n"
12
- "Content-Transfer-Encoding: 8bit\n"
13
- "X-Poedit-KeywordsList: __;_e\n"
14
- "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-SourceCharset: UTF-8\n"
16
- "X-Poedit-SearchPath-0: .\n"
17
-
18
- #: contact_form.php:76
19
- msgid "Activated plugins"
20
- msgstr "Aktivované pluginy"
21
-
22
- #: contact_form.php:78 contact_form.php:86 contact_form.php:94
23
- msgid "Read more"
24
- msgstr "Čti více"
25
-
26
- #: contact_form.php:78 contact_form.php:805 contact_form.php:814
27
- msgid "Settings"
28
- msgstr "Nastavení"
29
-
30
- #: contact_form.php:84
31
- msgid "Installed plugins"
32
- msgstr "Instalované pluginy"
33
-
34
- #: contact_form.php:92
35
- msgid "Recommended plugins"
36
- msgstr "Doporučené pluginy"
37
-
38
- #: contact_form.php:94
39
- msgid "Download"
40
- msgstr "Download"
41
-
42
- #: contact_form.php:94
43
- #, php-format
44
- msgid "Install %s"
45
- msgstr "Instalace %s"
46
-
47
- #: contact_form.php:94
48
- msgid "Install now from wordpress.org"
49
- msgstr "instalace z wordpress.org"
50
-
51
- #: contact_form.php:96
52
- msgid ""
53
- "If you have any questions, please contact us via plugin@bestwebsoft.com or "
54
- "fill in our contact form on our site"
55
- msgstr ""
56
- "Pokud máte dotazy, kontaktujte nás na mail: plugin@bestwebsoft.com nebo přes "
57
- "náš kontaktní formulář"
58
-
59
- #: contact_form.php:108 contact_form.php:262
60
- msgid "Contact Form Options"
61
- msgstr "Nastavení kontaktního formuláře"
62
-
63
- #: contact_form.php:108
64
- msgid "Contact Form"
65
- msgstr "Kontaktní formulář"
66
-
67
- #: contact_form.php:136 contact_form.php:180 contact_form.php:216
68
- #: contact_form.php:366
69
- msgid "Name:"
70
- msgstr "Jméno:"
71
-
72
- #: contact_form.php:137 contact_form.php:181 contact_form.php:217
73
- #: contact_form.php:367
74
- msgid "E-Mail Address:"
75
- msgstr "E-Mail:"
76
-
77
- #: contact_form.php:138 contact_form.php:182 contact_form.php:218
78
- #: contact_form.php:368
79
- msgid "Subject:"
80
- msgstr "Předmět:"
81
-
82
- #: contact_form.php:139 contact_form.php:183 contact_form.php:219
83
- #: contact_form.php:369
84
- msgid "Message:"
85
- msgstr "Zpráva:"
86
-
87
- #: contact_form.php:140 contact_form.php:184 contact_form.php:220
88
- #: contact_form.php:370
89
- msgid "Attachment:"
90
- msgstr "Příloha:"
91
-
92
- #: contact_form.php:142 contact_form.php:186
93
- msgid "Thank you for contacting us."
94
- msgstr "Děkujeme za zprávu."
95
-
96
- #: contact_form.php:230
97
- msgid ""
98
- "If the option 'Redirect to page' is selected then url field should be "
99
- "fillied in the following format"
100
- msgstr ""
101
- "Pokud vyberete \"Přesměrování na stránku\" do políčka url byste měli vložit "
102
- "adresu v tomto formátu"
103
-
104
- #: contact_form.php:237 contact_form.php:242 contact_form.php:251
105
- msgid "Options saved."
106
- msgstr "Nastavení uloženo."
107
-
108
- #: contact_form.php:245
109
- msgid "Such user is not exist. Settings are not saved."
110
- msgstr "Uživatel neexistuje. Nastavení neuloženo."
111
-
112
- #: contact_form.php:254
113
- msgid "Please input correct email. Settings are not saved."
114
- msgstr "Vložte správný mail. Nastavení neuloženo."
115
-
116
- #: contact_form.php:267
117
- msgid ""
118
- "If you would like to add a Contact Form to your website, just copy and put "
119
- "this shortcode onto your post or page or widget:"
120
- msgstr ""
121
- "Pokud chcete vložit kontaktní formulář na stránku, zkopírujte a vložte tento "
122
- "kód do přípsěvku, stránky nebo widgetu:"
123
-
124
- #: contact_form.php:268
125
- msgid ""
126
- "If information in the below fields are empty then the message will be send "
127
- "to an address which was specified during registration."
128
- msgstr ""
129
- "Pokud nebudou informace vyplněny, zprávy budou zasílány na mail, který byl "
130
- "uveden při registraci."
131
-
132
- #: contact_form.php:272
133
- msgid "Use email of wordpress user:"
134
- msgstr "Použít email uživatele wordpressu:"
135
-
136
- #: contact_form.php:278
137
- msgid "Select user name"
138
- msgstr "Vyberte uživatelské jméno"
139
-
140
- #: contact_form.php:283
141
- msgid "Set a name of user who will get messages from a contact form."
142
- msgstr ""
143
- "Nastavte uživatele, který bude dostávat zprávy z kontaktního formuláře."
144
-
145
- #: contact_form.php:287
146
- msgid "Use this email:"
147
- msgstr "Použít tento email:"
148
-
149
- #: contact_form.php:293
150
- msgid "Set an email address which will be used for messages receiving."
151
- msgstr "Nastavit email, který bude použit pro příjem zpráv."
152
-
153
- #: contact_form.php:297
154
- msgid "Additional options"
155
- msgstr "Další nastavení"
156
-
157
- #: contact_form.php:300
158
- msgid "Display Attachment block"
159
- msgstr "Zobrazit možnost přílohy"
160
-
161
- #: contact_form.php:305
162
- msgid "Users can attach files of the following types"
163
- msgstr "Uživatelé mohou vkládat soubory těchto typů"
164
-
165
- #: contact_form.php:309
166
- msgid "Display Attachment explanations"
167
- msgstr "Zobrazit vysvětlivky k příloze."
168
-
169
- #: contact_form.php:314
170
- msgid "Display explanations after Attachment block"
171
- msgstr "Zobrazit vysvětlivky po bloku s přílohou."
172
-
173
- #: contact_form.php:318
174
- msgid "Display Send me a copy block"
175
- msgstr "Zobrazit Zaslat kopii"
176
-
177
- #: contact_form.php:324
178
- msgid "What use?"
179
- msgstr "K čemu?"
180
-
181
- #: contact_form.php:329
182
- msgid "Wp-mail"
183
- msgstr "Wp-mail"
184
-
185
- #: contact_form.php:330
186
- msgid "To send mail you can use the wordpress wp_mail function"
187
- msgstr "Pro zaslání mailu můžete použít wordpress wp_mail funkce"
188
-
189
- #: contact_form.php:338
190
- msgid "Mail"
191
- msgstr "Mail"
192
-
193
- #: contact_form.php:339
194
- msgid "To send mail you can use the php mail function"
195
- msgstr "Pro zaslání mailu můžete použít php mail funkce"
196
-
197
- #: contact_form.php:343
198
- msgid "Change FROM fields of the contact form"
199
- msgstr "Změnit políčko OD"
200
-
201
- #: contact_form.php:349
202
- msgid "Display additional info in email"
203
- msgstr "Zobrazit přidané info v mailu."
204
-
205
- #: contact_form.php:354 contact_form.php:676
206
- msgid "Sent from (ip address)"
207
- msgstr "Zasláno z (ip adresa)"
208
-
209
- #: contact_form.php:355 contact_form.php:681
210
- msgid "Date/Time"
211
- msgstr "Datum / Čas"
212
-
213
- #: contact_form.php:356 contact_form.php:686
214
- msgid "Coming from (referer)"
215
- msgstr "Příchozí od"
216
-
217
- #: contact_form.php:357 contact_form.php:691
218
- msgid "Using (user agent)"
219
- msgstr "Používání"
220
-
221
- #: contact_form.php:361
222
- msgid "Change label for fields of the contact form"
223
- msgstr "Změnit popisek políček"
224
-
225
- #: contact_form.php:374
226
- msgid "Action after the send mail"
227
- msgstr "Akce po zaslání mailu."
228
-
229
- #: contact_form.php:376
230
- msgid "Display text"
231
- msgstr "Zobraz text"
232
-
233
- #: contact_form.php:377
234
- msgid "Text"
235
- msgstr "Text"
236
-
237
- #: contact_form.php:378
238
- msgid "Redirect to page"
239
- msgstr "Přesměrovat na stránku"
240
-
241
- #: contact_form.php:379
242
- msgid "Url"
243
- msgstr "Url"
244
-
245
- #: contact_form.php:384
246
- msgid "Save Changes"
247
- msgstr "Uložit změny"
248
-
249
- #: contact_form.php:420
250
- msgid "Sorry, your e-mail could not be delivered."
251
- msgstr "Omlouváme se, váš email nemohl být odeslán."
252
-
253
- #: contact_form.php:478
254
- msgid "You can attach files of the following types"
255
- msgstr "Můžete přiložit soubory těchto typů"
256
-
257
- #: contact_form.php:486
258
- msgid "Send me a copy"
259
- msgstr "Zaslat mi kopii"
260
-
261
- #: contact_form.php:496
262
- msgid "Submit"
263
- msgstr "Zaslat"
264
-
265
- #: contact_form.php:535
266
- msgid "Your name is required."
267
- msgstr "Jméno je požadováno."
268
-
269
- #: contact_form.php:536
270
- msgid "A proper e-mail address is required."
271
- msgstr "E-mail je požadován."
272
-
273
- #: contact_form.php:537
274
- msgid "Subject text is required."
275
- msgstr "Předmět je požadován."
276
-
277
- #: contact_form.php:538
278
- msgid "Message text is required."
279
- msgstr "Zpráva je požadována."
280
-
281
- #: contact_form.php:539
282
- msgid "Please make corrections below and try again."
283
- msgstr "Prosím opravte následující chyby a zkuste to znovu."
284
-
285
- #: contact_form.php:570
286
- msgid "Attachment is broken."
287
- msgstr "Příloha nelze odeslat."
288
-
289
- #: contact_form.php:583
290
- msgid "Please complete the CAPTCHA."
291
- msgstr "Prosím opište následující text."
292
-
293
- #: contact_form.php:699
294
- msgid "Contact from"
295
- msgstr "Kontaktní formulář"
296
-
297
- #: contact_form.php:704
298
- msgid "Name"
299
- msgstr "Jméno"
300
-
301
- #: contact_form.php:707
302
- msgid "Email"
303
- msgstr "E-Mail"
304
-
305
- #: contact_form.php:710
306
- msgid "Subject"
307
- msgstr "Předmět"
308
-
309
- #: contact_form.php:713
310
- msgid "Message"
311
- msgstr "Zpráva"
312
-
313
- #: contact_form.php:716
314
- msgid "Site"
315
- msgstr "Stránka"
316
-
317
- #: contact_form.php:761
318
- msgid "If you can see this MIME than your client doesn't accept MIME types!"
319
- msgstr "Když uvidíte MIME, váš klient neakceptoval MIME typy."
320
-
321
- #: contact_form.php:815
322
- msgid "FAQ"
323
- msgstr "FAQ"
324
-
325
- #: contact_form.php:816
326
- msgid "Support"
327
- msgstr "Podpora"
328
-
329
- #~ msgid "E-Mail Addresse:"
330
- #~ msgstr "Indirizzo e-mail:"
331
-
332
- #~ msgid "Install Now"
333
- #~ msgstr "Installa Ora"
334
-
335
- #~ msgid "BWS Plugins"
336
- #~ msgstr "BWS Plugins"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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-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,8 +28,8 @@ msgid "Read more"
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,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: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,83 +254,83 @@ msgstr ""
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
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-07-10 10:49+0300\n"
6
+ "PO-Revision-Date: 2012-07-10 10:49+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:802
32
+ #: contact_form.php:811
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:673
210
  msgid "Sent from (ip address)"
211
  msgstr "Sendt fra (IP-adresse)"
212
 
213
  #: contact_form.php:355
214
+ #: contact_form.php:678
215
  msgid "Date/Time"
216
  msgstr "Dato/klokkeslæt"
217
 
218
  #: contact_form.php:356
219
+ #: contact_form.php:683
220
  msgid "Coming from (referer)"
221
  msgstr "Sendt fra (referent)"
222
 
223
  #: contact_form.php:357
224
+ #: contact_form.php:688
225
  msgid "Using (user agent)"
226
  msgstr "Med (user agent)"
227
 
254
  msgid "Save Changes"
255
  msgstr "Gem ændringer"
256
 
257
+ #: contact_form.php:417
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:475
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:483
266
  msgid "Send me a copy"
267
  msgstr "Send mig en kopi"
268
 
269
+ #: contact_form.php:493
270
  msgid "Submit"
271
  msgstr "Send"
272
 
273
+ #: contact_form.php:532
274
  msgid "Your name is required."
275
  msgstr "Dit navn er obligatorisk"
276
 
277
+ #: contact_form.php:533
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:534
282
  msgid "Subject text is required."
283
  msgstr "Emnefeltet er obligatorisk."
284
 
285
+ #: contact_form.php:535
286
  msgid "Message text is required."
287
  msgstr "Du skal angive en besked"
288
 
289
+ #: contact_form.php:536
290
  msgid "Please make corrections below and try again."
291
  msgstr "Ret venligst nedenstående og prøv igen."
292
 
293
+ #: contact_form.php:567
294
  msgid "Attachment is broken."
295
  msgstr "Bilaget er korrupt."
296
 
297
+ #: contact_form.php:580
298
  msgid "Please complete the CAPTCHA."
299
  msgstr "Venligst udfyld CAPTCHA-feltet."
300
 
301
+ #: contact_form.php:696
302
  msgid "Contact from"
303
  msgstr "Kontakt fra"
304
 
305
+ #: contact_form.php:701
306
  msgid "Name"
307
  msgstr "Navn"
308
 
309
+ #: contact_form.php:704
310
  msgid "Email"
311
  msgstr "E-mail"
312
 
313
+ #: contact_form.php:707
314
  msgid "Subject"
315
  msgstr "Emne"
316
 
317
+ #: contact_form.php:710
318
  msgid "Message"
319
  msgstr "Besked"
320
 
321
+ #: contact_form.php:713
322
  msgid "Site"
323
  msgstr "Site"
324
 
325
+ #: contact_form.php:758
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:812
330
  msgid "FAQ"
331
  msgstr "Ofte stillede spørgsmål"
332
 
333
+ #: contact_form.php:813
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-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,8 +28,8 @@ msgid "Read more"
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,22 +206,22 @@ msgid "Display additional info in email"
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,83 +254,83 @@ msgstr ""
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
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-07-10 10:49+0300\n"
6
+ "PO-Revision-Date: 2012-07-10 10:49+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:802
32
+ #: contact_form.php:811
33
  msgid "Settings"
34
  msgstr "Einstellungen"
35
 
206
  msgstr ""
207
 
208
  #: contact_form.php:354
209
+ #: contact_form.php:673
210
  msgid "Sent from (ip address)"
211
  msgstr "Gesendet von (IP-Adresse)"
212
 
213
  #: contact_form.php:355
214
+ #: contact_form.php:678
215
  msgid "Date/Time"
216
  msgstr "Datum / Uhrzeit"
217
 
218
  #: contact_form.php:356
219
+ #: contact_form.php:683
220
  msgid "Coming from (referer)"
221
  msgstr "gesendet von (referer)"
222
 
223
  #: contact_form.php:357
224
+ #: contact_form.php:688
225
  msgid "Using (user agent)"
226
  msgstr "mit (user agent)"
227
 
254
  msgid "Save Changes"
255
  msgstr "Änderungen speichern"
256
 
257
+ #: contact_form.php:417
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:475
262
  msgid "You can attach files of the following types"
263
  msgstr "Sie können folgende Dateitypen anhängen"
264
 
265
+ #: contact_form.php:483
266
  msgid "Send me a copy"
267
  msgstr "Kopie an mich senden"
268
 
269
+ #: contact_form.php:493
270
  msgid "Submit"
271
  msgstr "senden"
272
 
273
+ #: contact_form.php:532
274
  msgid "Your name is required."
275
  msgstr "Ihr Name wird benötigt"
276
 
277
+ #: contact_form.php:533
278
  msgid "A proper e-mail address is required."
279
  msgstr "Eine korrekte E-Mail-Adresse ist zwingend."
280
 
281
+ #: contact_form.php:534
282
  msgid "Subject text is required."
283
  msgstr "Bitte geben Sie einen Betreff ein."
284
 
285
+ #: contact_form.php:535
286
  msgid "Message text is required."
287
  msgstr "Bitte geben Sie eine Nachricht ein."
288
 
289
+ #: contact_form.php:536
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:567
294
  msgid "Attachment is broken."
295
  msgstr "Anhang scheint defekt zu sein."
296
 
297
+ #: contact_form.php:580
298
  msgid "Please complete the CAPTCHA."
299
  msgstr "Bitte ergänzen Sie das CAPTCHA."
300
 
301
+ #: contact_form.php:696
302
  msgid "Contact from"
303
  msgstr "Kontakt von"
304
 
305
+ #: contact_form.php:701
306
  msgid "Name"
307
  msgstr "Nome"
308
 
309
+ #: contact_form.php:704
310
  msgid "Email"
311
  msgstr "E-Mail"
312
 
313
+ #: contact_form.php:707
314
  msgid "Subject"
315
  msgstr "Betreff"
316
 
317
+ #: contact_form.php:710
318
  msgid "Message"
319
  msgstr "Nachricht"
320
 
321
+ #: contact_form.php:713
322
  msgid "Site"
323
  msgstr "Site"
324
 
325
+ #: contact_form.php:758
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:812
330
  msgid "FAQ"
331
  msgstr "Häufig gestellte Fragen (FAQ)"
332
 
333
+ #: contact_form.php:813
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-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,8 +28,8 @@ 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
 
@@ -206,22 +206,22 @@ msgid "Display additional info in email"
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,83 +254,83 @@ msgstr ""
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
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-07-10 10:49+0300\n"
6
+ "PO-Revision-Date: 2012-07-10 10:49+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:802
32
+ #: contact_form.php:811
33
  msgid "Settings"
34
  msgstr "Ρυθμίσεις"
35
 
206
  msgstr "Προβολή πρόσθετων πληροφοριών στο email"
207
 
208
  #: contact_form.php:354
209
+ #: contact_form.php:673
210
  msgid "Sent from (ip address)"
211
  msgstr "Στάλθηκε από (διεύθυνση ip)"
212
 
213
  #: contact_form.php:355
214
+ #: contact_form.php:678
215
  msgid "Date/Time"
216
  msgstr "Ημερομηνία/Ώρα"
217
 
218
  #: contact_form.php:356
219
+ #: contact_form.php:683
220
  msgid "Coming from (referer)"
221
  msgstr "Από (referer)"
222
 
223
  #: contact_form.php:357
224
+ #: contact_form.php:688
225
  msgid "Using (user agent)"
226
  msgstr "με χρήση (user agent)"
227
 
254
  msgid "Save Changes"
255
  msgstr "Αποθήκευση αλλαγών"
256
 
257
+ #: contact_form.php:417
258
  msgid "Sorry, your e-mail could not be delivered."
259
  msgstr "Δυστυχώς δεν μπορέσαμε να στείλουμε το email σας."
260
 
261
+ #: contact_form.php:475
262
  msgid "You can attach files of the following types"
263
  msgstr "Μπορείτε να επισυνάψετε αρχεία τύπου"
264
 
265
+ #: contact_form.php:483
266
  msgid "Send me a copy"
267
  msgstr "Στείλε μου ένα αντίγραφο"
268
 
269
+ #: contact_form.php:493
270
  msgid "Submit"
271
  msgstr "Υποβολή"
272
 
273
+ #: contact_form.php:532
274
  msgid "Your name is required."
275
  msgstr "Γράψτε οπωσδήποτε το όνομά σας."
276
 
277
+ #: contact_form.php:533
278
  msgid "A proper e-mail address is required."
279
  msgstr "Απαιτείται μια έγκυρη διεύθυνση e-mail."
280
 
281
+ #: contact_form.php:534
282
  msgid "Subject text is required."
283
  msgstr "Γράψτε οπωσδήποτε ένα θέμα"
284
 
285
+ #: contact_form.php:535
286
  msgid "Message text is required."
287
  msgstr "Απαιτείται κείμενο μηνύματος."
288
 
289
+ #: contact_form.php:536
290
  msgid "Please make corrections below and try again."
291
  msgstr "Κάνετε διορθώσεις παρακάτω και ξαναπροσπαθήστε."
292
 
293
+ #: contact_form.php:567
294
  msgid "Attachment is broken."
295
  msgstr "Το επισυναπτόμενο δεν λειτουργεί."
296
 
297
+ #: contact_form.php:580
298
  msgid "Please complete the CAPTCHA."
299
  msgstr "Συμπληρώστε το CAPTCHA."
300
 
301
+ #: contact_form.php:696
302
  msgid "Contact from"
303
  msgstr "Επικοινωνία από"
304
 
305
+ #: contact_form.php:701
306
  msgid "Name"
307
  msgstr "Όνομα"
308
 
309
+ #: contact_form.php:704
310
  msgid "Email"
311
  msgstr "E-Mail"
312
 
313
+ #: contact_form.php:707
314
  msgid "Subject"
315
  msgstr "Θέμα"
316
 
317
+ #: contact_form.php:710
318
  msgid "Message"
319
  msgstr "Μήνυμα"
320
 
321
+ #: contact_form.php:713
322
  msgid "Site"
323
  msgstr "Ιστοσελίδα"
324
 
325
+ #: contact_form.php:758
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:812
330
  msgid "FAQ"
331
  msgstr "Συχνές ερωτήσεις"
332
 
333
+ #: contact_form.php:813
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-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,8 +28,8 @@ msgid "Read more"
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,22 +206,22 @@ msgid "Display additional info in email"
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,83 +254,83 @@ msgstr ""
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
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-07-10 10:49+0300\n"
6
+ "PO-Revision-Date: 2012-07-10 10:49+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:802
32
+ #: contact_form.php:811
33
  msgid "Settings"
34
  msgstr "Configuración"
35
 
206
  msgstr ""
207
 
208
  #: contact_form.php:354
209
+ #: contact_form.php:673
210
  msgid "Sent from (ip address)"
211
  msgstr "Enviado desde (dirección IP)"
212
 
213
  #: contact_form.php:355
214
+ #: contact_form.php:678
215
  msgid "Date/Time"
216
  msgstr "Fecha/hora"
217
 
218
  #: contact_form.php:356
219
+ #: contact_form.php:683
220
  msgid "Coming from (referer)"
221
  msgstr "De (referente)"
222
 
223
  #: contact_form.php:357
224
+ #: contact_form.php:688
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:417
258
  msgid "Sorry, your e-mail could not be delivered."
259
  msgstr "Disculpe, su email no se puede entregar."
260
 
261
+ #: contact_form.php:475
262
  msgid "You can attach files of the following types"
263
  msgstr "Puede adjuntar archivos de estos tipos"
264
 
265
+ #: contact_form.php:483
266
  msgid "Send me a copy"
267
  msgstr "Envíame una copia"
268
 
269
+ #: contact_form.php:493
270
  msgid "Submit"
271
  msgstr "Enviar"
272
 
273
+ #: contact_form.php:532
274
  msgid "Your name is required."
275
  msgstr "Su nombre es obligatorio."
276
 
277
+ #: contact_form.php:533
278
  msgid "A proper e-mail address is required."
279
  msgstr "Una dirección válida es obligatoria."
280
 
281
+ #: contact_form.php:534
282
  msgid "Subject text is required."
283
  msgstr "El asunto es obligatorio."
284
 
285
+ #: contact_form.php:535
286
  msgid "Message text is required."
287
  msgstr "El mensaje es obligatorio."
288
 
289
+ #: contact_form.php:536
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:567
294
  msgid "Attachment is broken."
295
  msgstr "El adjunto es incorrecto."
296
 
297
+ #: contact_form.php:580
298
  msgid "Please complete the CAPTCHA."
299
  msgstr "Por favor completa el CAPTCHA"
300
 
301
+ #: contact_form.php:696
302
  msgid "Contact from"
303
  msgstr "Contact from"
304
 
305
+ #: contact_form.php:701
306
  msgid "Name"
307
  msgstr "Nombre"
308
 
309
+ #: contact_form.php:704
310
  msgid "Email"
311
  msgstr "E-mail"
312
 
313
+ #: contact_form.php:707
314
  msgid "Subject"
315
  msgstr "Asunto"
316
 
317
+ #: contact_form.php:710
318
  msgid "Message"
319
  msgstr "Mensaje"
320
 
321
+ #: contact_form.php:713
322
  msgid "Site"
323
  msgstr "Sitio"
324
 
325
+ #: contact_form.php:758
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:812
330
  msgid "FAQ"
331
  msgstr "FAQ"
332
 
333
+ #: contact_form.php:813
334
  msgid "Support"
335
  msgstr "Soporte"
336
 
languages/contact_form-fr_FR.mo CHANGED
Binary file
languages/contact_form-fr_FR.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-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"
@@ -29,8 +29,8 @@ 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
 
@@ -207,22 +207,22 @@ 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
 
@@ -254,83 +254,83 @@ msgstr "Url"
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