Contact Form by BestWebSoft - Version 3.20

Version Description

  • 27.06.2012 =
  • NEW : Added ability to select action after the send mail - Display text or Redirect to page.
  • Update : We updated all functionality for wordpress 3.4.
Download this release

Release Info

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

Code changes from version 3.19 to 3.20

Files changed (40) hide show
  1. contact_form.php +68 -20
  2. css/style.css +5 -1
  3. languages/contact_form-ar.mo +0 -0
  4. languages/contact_form-ar.po +105 -78
  5. languages/contact_form-bg_BG.mo +0 -0
  6. languages/contact_form-bg_BG.po +105 -78
  7. languages/contact_form-da_DK.mo +0 -0
  8. languages/contact_form-da_DK.po +105 -78
  9. languages/contact_form-de_DE.mo +0 -0
  10. languages/contact_form-de_DE.po +105 -78
  11. languages/contact_form-el_GR.mo +0 -0
  12. languages/contact_form-el_GR.po +105 -78
  13. languages/contact_form-es_ES.mo +0 -0
  14. languages/contact_form-es_ES.po +105 -78
  15. languages/contact_form-fr_FR.mo +0 -0
  16. languages/contact_form-fr_FR.po +1137 -144
  17. languages/contact_form-hi_IN.mo +0 -0
  18. languages/contact_form-hi_IN.po +105 -78
  19. languages/contact_form-it_IT.mo +0 -0
  20. languages/contact_form-it_IT.po +105 -78
  21. languages/contact_form-lt_LT.mo +0 -0
  22. languages/contact_form-lt_LT.po +105 -78
  23. languages/contact_form-nb_NO.mo +0 -0
  24. languages/contact_form-nb_NO.po +105 -78
  25. languages/contact_form-nl_NL.mo +0 -0
  26. languages/contact_form-nl_NL.po +105 -78
  27. languages/contact_form-pl_PL.mo +0 -0
  28. languages/contact_form-pl_PL.po +107 -79
  29. languages/contact_form-pt_BR.mo +0 -0
  30. languages/contact_form-pt_BR.po +105 -78
  31. languages/contact_form-pt_PT.mo +0 -0
  32. languages/contact_form-pt_PT.po +105 -78
  33. languages/contact_form-ru_RU.mo +0 -0
  34. languages/contact_form-ru_RU.po +104 -78
  35. languages/contact_form-sv_SE.mo +0 -0
  36. languages/contact_form-sv_SE.po +105 -78
  37. languages/contact_form-tr_TR.mo +0 -0
  38. languages/contact_form-tr_TR.po +105 -78
  39. readme.txt +8 -1
  40. 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.19
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
@@ -137,7 +137,10 @@ if( ! function_exists( 'cntctfrm_settings' ) ) {
137
  'cntctfrm_email_label' => __( "E-Mail Address:", 'contact_form' ),
138
  'cntctfrm_subject_label' => __( "Subject:", 'contact_form' ),
139
  'cntctfrm_message_label' => __( "Message:", 'contact_form' ),
140
- 'cntctfrm_attachment_label' => __( "Attachment:", 'contact_form' )
 
 
 
141
  );
142
  if( ! get_option( 'cntctfrm_options' ) )
143
  add_option( 'cntctfrm_options', $cntctfrm_option_defaults, '', 'yes' );
@@ -179,6 +182,9 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
179
  $cntctfrm_options_submit['cntctfrm_subject_label'] = __( "Subject:", 'contact_form' );
180
  $cntctfrm_options_submit['cntctfrm_message_label'] = __( "Message:", 'contact_form' );
181
  $cntctfrm_options_submit['cntctfrm_attachment_label'] = __( "Attachment:", 'contact_form' );
 
 
 
182
  } else {
183
  $cntctfrm_options_submit['cntctfrm_attachment'] = isset( $_REQUEST['cntctfrm_attachment']) ? $_REQUEST['cntctfrm_attachment'] : 0;
184
  $cntctfrm_options_submit['cntctfrm_attachment_explanations'] = isset( $_REQUEST['cntctfrm_attachment_explanations']) ? $_REQUEST['cntctfrm_attachment_explanations'] : 0;
@@ -213,8 +219,17 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
213
  $cntctfrm_options_submit['cntctfrm_message_label'] = __( "Message:", 'contact_form' );
214
  $cntctfrm_options_submit['cntctfrm_attachment_label'] = __( "Attachment:", 'contact_form' );
215
  }
 
 
 
216
  }
217
  $cntctfrm_options = array_merge( $cntctfrm_options, $cntctfrm_options_submit );
 
 
 
 
 
 
218
  if( 'user' == $cntctfrm_options_submit['cntctfrm_select_email'] ) {
219
  if( function_exists('get_userdatabylogin') && false !== get_userdatabylogin( $cntctfrm_options_submit['cntctfrm_user_email'] ) )
220
  {
@@ -227,9 +242,8 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
227
  $message = __( "Options saved.", 'contact_form' );
228
  }
229
  else {
230
- $error =__( "Such user is not exist. Settings are not saved.", 'contact_form' );
231
  }
232
- var_dump(function_exists('get_userdatabylogin'));
233
  }
234
  else {
235
  if( $cntctfrm_options_submit['cntctfrm_custom_email'] != "" && preg_match( "/^((?:[a-z0-9]+(?:[a-z0-9\-_\.]+)?@[a-z0-9]+(?:[a-z0-9\-\.]+)?\.[a-z]{2,5})[, ]*)+$/i", trim( $cntctfrm_options_submit['cntctfrm_custom_email'] ) ) ) {
@@ -237,7 +251,7 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
237
  $message = __( "Options saved.", 'contact_form' );
238
  }
239
  else {
240
- $error = __( "Please input correct email. Settings are not saved.", 'contact_form' );
241
  }
242
  }
243
  }
@@ -328,7 +342,7 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
328
  <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
329
  <th scope="row" style="width:195px;"><?php _e( "Change FROM fields of the contact form", 'contact_form' ); ?></th>
330
  <td colspan="2">
331
- <input type="text" style="width:200px;" name="cntctfrm_from_field" value="<?php echo $cntctfrm_options['cntctfrm_from_field']; ?>" /><br />
332
  </td>
333
  </tr>
334
  <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
@@ -356,6 +370,14 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
356
  <input type="text" name="cntctfrm_attachment_label" value="<?php echo $cntctfrm_options['cntctfrm_attachment_label']; ?>" /> <span class="cntctfrm_info"><?php _e( "Attachment:", 'contact_form' ); ?></span><br />
357
  </td>
358
  </tr>
 
 
 
 
 
 
 
 
359
  </table>
360
  <input type="hidden" name="cntctfrm_form_submit" value="submit" />
361
  <p class="submit">
@@ -370,13 +392,10 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
370
  // Display contact form in front end - page or post
371
  if( ! function_exists( 'cntctfrm_display_form' ) ) {
372
  function cntctfrm_display_form() {
373
- global $error_message;
374
- global $cntctfrm_options;
375
  $cntctfrm_options = get_option( 'cntctfrm_options' );
376
  $content = "";
377
 
378
- $result = "";
379
-
380
  $page_url = ( isset( $_SERVER["HTTPS"] ) && $_SERVER["HTTPS"] == "on" ? "https://" : "http://" ).$_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
381
  // If contact form submited
382
  $name = isset( $_REQUEST['cntctfrm_contact_name'] ) ? $_REQUEST['cntctfrm_contact_name'] : "";
@@ -384,15 +403,13 @@ if( ! function_exists( 'cntctfrm_display_form' ) ) {
384
  $subject = isset( $_REQUEST['cntctfrm_contact_subject'] ) ? $_REQUEST['cntctfrm_contact_subject'] : "";
385
  $message = isset( $_REQUEST['cntctfrm_contact_message'] ) ? $_REQUEST['cntctfrm_contact_message'] : "";
386
  $send_copy = isset( $_REQUEST['cntctfrm_contact_send_copy'] ) ? $_REQUEST['cntctfrm_contact_send_copy'] : "";
387
- if( isset( $_REQUEST['cntctfrm_contact_action'] ) )
388
- {
389
- // Check all input data
390
- $result = cntctfrm_check_form();
391
- }
392
  // If it is good
393
  if( true === $result ) {
394
  $_SESSION['cntctfrm_send_mail'] = true;
395
- $content .= __( "Thank you for contacting us.", 'contact_form' );
 
 
 
396
  }
397
  else if( false === $result )
398
  {
@@ -481,11 +498,34 @@ if( ! function_exists( 'cntctfrm_display_form' ) ) {
481
  }
482
  }
483
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
484
  // Check all input data
485
  if( ! function_exists( 'cntctfrm_check_form' ) ) {
486
  function cntctfrm_check_form() {
487
  global $error_message;
488
  global $cntctfrm_options;
 
 
 
489
  $result = "";
490
  // Error messages array
491
  $error_message = array();
@@ -555,7 +595,10 @@ if( ! function_exists( 'cntctfrm_check_form' ) ) {
555
  }
556
  else {
557
  $uploads = wp_upload_dir();
558
- $path_of_uploaded_file = $uploads['path'] ."/". $_FILES["cntctfrm_contact_attachment"]["name"];
 
 
 
559
  }
560
  $tmp_path = $_FILES["cntctfrm_contact_attachment"]["tmp_name"];
561
  $path_info = pathinfo( $path_of_uploaded_file );
@@ -587,8 +630,11 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
587
  if( isset( $_SESSION['cntctfrm_send_mail'] ) && $_SESSION['cntctfrm_send_mail'] == true )
588
  return true;
589
  if($cntctfrm_options['cntctfrm_select_email'] == 'user') {
590
- if( false !== $user = get_userdatabylogin($cntctfrm_options['cntctfrm_user_email'] ) )
591
- $to = $user->user_email;
 
 
 
592
  }
593
  else {
594
  $to = $cntctfrm_options['cntctfrm_custom_email'];
@@ -822,13 +868,15 @@ if ( ! function_exists ( 'cntctfrm_wp_head' ) ) {
822
  function cntctfrm_email_name_filter( $data ){
823
  global $cntctfrm_options;
824
  if( isset( $cntctfrm_options['cntctfrm_from_field'] ) && trim( $cntctfrm_options['cntctfrm_from_field'] ) != "" )
825
- return $cntctfrm_options['cntctfrm_from_field'];
826
  else
827
  return $data;
828
  }
829
 
830
  add_action( 'init', 'cntctfrm_plugin_init' );
831
 
 
 
832
  add_action( 'admin_enqueue_scripts', 'cntctfrm_admin_head' );
833
 
834
  add_action( 'wp_enqueue_scripts', 'cntctfrm_wp_head' );
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: Plugin for Contact Form.
6
  Author: BestWebSoft
7
+ Version: 3.20
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
137
  'cntctfrm_email_label' => __( "E-Mail Address:", 'contact_form' ),
138
  'cntctfrm_subject_label' => __( "Subject:", 'contact_form' ),
139
  'cntctfrm_message_label' => __( "Message:", 'contact_form' ),
140
+ 'cntctfrm_attachment_label' => __( "Attachment:", 'contact_form' ),
141
+ 'cntctfrm_action_after_send' => 1,
142
+ 'cntctfrm_thank_text' => __( "Thank you for contacting us.", 'contact_form' ),
143
+ 'cntctfrm_redirect_url' => ''
144
  );
145
  if( ! get_option( 'cntctfrm_options' ) )
146
  add_option( 'cntctfrm_options', $cntctfrm_option_defaults, '', 'yes' );
182
  $cntctfrm_options_submit['cntctfrm_subject_label'] = __( "Subject:", 'contact_form' );
183
  $cntctfrm_options_submit['cntctfrm_message_label'] = __( "Message:", 'contact_form' );
184
  $cntctfrm_options_submit['cntctfrm_attachment_label'] = __( "Attachment:", 'contact_form' );
185
+ $cntctfrm_options_submit['cntctfrm_action_after_send'] = 1;
186
+ $cntctfrm_options_submit['cntctfrm_thank_text'] = __( "Thank you for contacting us.", 'contact_form' );
187
+ $cntctfrm_options_submit['cntctfrm_redirect_url'] = '';
188
  } else {
189
  $cntctfrm_options_submit['cntctfrm_attachment'] = isset( $_REQUEST['cntctfrm_attachment']) ? $_REQUEST['cntctfrm_attachment'] : 0;
190
  $cntctfrm_options_submit['cntctfrm_attachment_explanations'] = isset( $_REQUEST['cntctfrm_attachment_explanations']) ? $_REQUEST['cntctfrm_attachment_explanations'] : 0;
219
  $cntctfrm_options_submit['cntctfrm_message_label'] = __( "Message:", 'contact_form' );
220
  $cntctfrm_options_submit['cntctfrm_attachment_label'] = __( "Attachment:", 'contact_form' );
221
  }
222
+ $cntctfrm_options_submit['cntctfrm_action_after_send'] = $_REQUEST['cntctfrm_action_after_send'];
223
+ $cntctfrm_options_submit['cntctfrm_thank_text'] = $_REQUEST['cntctfrm_thank_text'];
224
+ $cntctfrm_options_submit['cntctfrm_redirect_url'] = $_REQUEST['cntctfrm_redirect_url'];
225
  }
226
  $cntctfrm_options = array_merge( $cntctfrm_options, $cntctfrm_options_submit );
227
+ if( $cntctfrm_options_submit['cntctfrm_action_after_send'] == 0
228
+ && ( trim( $cntctfrm_options_submit['cntctfrm_redirect_url'] ) == ""
229
+ || !preg_match( '@^(?:http://)?([^/]+)@i', trim( $cntctfrm_options_submit['cntctfrm_redirect_url'] ) ) ) ) {
230
+ $error .=__( "If the option 'Redirect to page' is selected then url field should be fillied in the following format", 'contact_form' )." <code>http://your_site/your_page</code>";
231
+ $cntctfrm_options['cntctfrm_action_after_send'] = 1;
232
+ }
233
  if( 'user' == $cntctfrm_options_submit['cntctfrm_select_email'] ) {
234
  if( function_exists('get_userdatabylogin') && false !== get_userdatabylogin( $cntctfrm_options_submit['cntctfrm_user_email'] ) )
235
  {
242
  $message = __( "Options saved.", 'contact_form' );
243
  }
244
  else {
245
+ $error .=__( "Such user is not exist. Settings are not saved.", 'contact_form' );
246
  }
 
247
  }
248
  else {
249
  if( $cntctfrm_options_submit['cntctfrm_custom_email'] != "" && preg_match( "/^((?:[a-z0-9]+(?:[a-z0-9\-_\.]+)?@[a-z0-9]+(?:[a-z0-9\-\.]+)?\.[a-z]{2,5})[, ]*)+$/i", trim( $cntctfrm_options_submit['cntctfrm_custom_email'] ) ) ) {
251
  $message = __( "Options saved.", 'contact_form' );
252
  }
253
  else {
254
+ $error .= __( "Please input correct email. Settings are not saved.", 'contact_form' );
255
  }
256
  }
257
  }
342
  <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
343
  <th scope="row" style="width:195px;"><?php _e( "Change FROM fields of the contact form", 'contact_form' ); ?></th>
344
  <td colspan="2">
345
+ <input type="text" style="width:200px;" name="cntctfrm_from_field" value="<?php echo stripslashes( $cntctfrm_options['cntctfrm_from_field'] ); ?>" /><br />
346
  </td>
347
  </tr>
348
  <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
370
  <input type="text" name="cntctfrm_attachment_label" value="<?php echo $cntctfrm_options['cntctfrm_attachment_label']; ?>" /> <span class="cntctfrm_info"><?php _e( "Attachment:", 'contact_form' ); ?></span><br />
371
  </td>
372
  </tr>
373
+ <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
374
+ <th scope="row" style="width:195px;"><?php _e( "Action after the send mail", 'contact_form' ); ?></th>
375
+ <td colspan="2" class="cntctfrm_action_after_send_block">
376
+ <input type="radio" id="cntctfrm_action_after_send" name="cntctfrm_action_after_send" value="1" <?php if($cntctfrm_options['cntctfrm_action_after_send'] == '1') echo "checked=\"checked\" "; ?>/> <span class="cntctfrm_info"><?php _e( "Display text", 'contact_form' ); ?></span><br />
377
+ <input type="text" name="cntctfrm_thank_text" value="<?php echo $cntctfrm_options['cntctfrm_thank_text']; ?>" /> <span class="cntctfrm_info"><?php _e( "Text", 'contact_form' ); ?></span><br />
378
+ <input type="radio" id="cntctfrm_action_after_send" name="cntctfrm_action_after_send" value="0" <?php if($cntctfrm_options['cntctfrm_action_after_send'] == '0') echo "checked=\"checked\" "; ?>/> <span class="cntctfrm_info"><?php _e( "Redirect to page", 'contact_form' ); ?></span><br />
379
+ <input type="text" name="cntctfrm_redirect_url" value="<?php echo $cntctfrm_options['cntctfrm_redirect_url']; ?>" /> <span class="cntctfrm_info"><?php _e( "Url", 'contact_form' ); ?></span><br />
380
+ </td>
381
  </table>
382
  <input type="hidden" name="cntctfrm_form_submit" value="submit" />
383
  <p class="submit">
392
  // Display contact form in front end - page or post
393
  if( ! function_exists( 'cntctfrm_display_form' ) ) {
394
  function cntctfrm_display_form() {
395
+ global $error_message, $cntctfrm_options, $result;
 
396
  $cntctfrm_options = get_option( 'cntctfrm_options' );
397
  $content = "";
398
 
 
 
399
  $page_url = ( isset( $_SERVER["HTTPS"] ) && $_SERVER["HTTPS"] == "on" ? "https://" : "http://" ).$_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
400
  // If contact form submited
401
  $name = isset( $_REQUEST['cntctfrm_contact_name'] ) ? $_REQUEST['cntctfrm_contact_name'] : "";
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
407
  if( true === $result ) {
408
  $_SESSION['cntctfrm_send_mail'] = true;
409
+ if( $cntctfrm_options['cntctfrm_action_after_send'] == 1 )
410
+ $content .= $cntctfrm_options['cntctfrm_thank_text'];
411
+ else
412
+ $content .= "<script type='text/javascript'>window.location.href = '".$cntctfrm_options['cntctfrm_redirect_url']."';</script>";
413
  }
414
  else if( false === $result )
415
  {
498
  }
499
  }
500
 
501
+ if( ! function_exists( 'cntctfrm_check_and_send' ) ) {
502
+ function cntctfrm_check_and_send() {
503
+ global $result;
504
+ $cntctfrm_options = get_option( 'cntctfrm_options' );
505
+ if( isset( $_REQUEST['cntctfrm_contact_action'] ) )
506
+ {
507
+ // Check all input data
508
+ $result = cntctfrm_check_form();
509
+ }
510
+ // If it is good
511
+ if( true === $result ) {
512
+ $_SESSION['cntctfrm_send_mail'] = true;
513
+ if( $cntctfrm_options['cntctfrm_action_after_send'] == 0 ){
514
+ wp_redirect( $cntctfrm_options['cntctfrm_redirect_url'] );
515
+ exit;
516
+ }
517
+ }
518
+ }
519
+ }
520
+
521
  // Check all input data
522
  if( ! function_exists( 'cntctfrm_check_form' ) ) {
523
  function cntctfrm_check_form() {
524
  global $error_message;
525
  global $cntctfrm_options;
526
+ $path_of_uploaded_file = '';
527
+ if( empty( $cntctfrm_options ) )
528
+ $cntctfrm_options = get_option( 'cntctfrm_options' );
529
  $result = "";
530
  // Error messages array
531
  $error_message = array();
595
  }
596
  else {
597
  $uploads = wp_upload_dir();
598
+ if( ! isset( $uploads['path'] ) && isset ( $uploads['error'] ) )
599
+ $error_message['error_attachment'] = $uploads['error'];
600
+ else
601
+ $path_of_uploaded_file = $uploads['path'] ."/". $_FILES["cntctfrm_contact_attachment"]["name"];
602
  }
603
  $tmp_path = $_FILES["cntctfrm_contact_attachment"]["tmp_name"];
604
  $path_info = pathinfo( $path_of_uploaded_file );
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'] ) )
637
+ $to = $user->user_email;
638
  }
639
  else {
640
  $to = $cntctfrm_options['cntctfrm_custom_email'];
868
  function cntctfrm_email_name_filter( $data ){
869
  global $cntctfrm_options;
870
  if( isset( $cntctfrm_options['cntctfrm_from_field'] ) && trim( $cntctfrm_options['cntctfrm_from_field'] ) != "" )
871
+ return stripslashes( $cntctfrm_options['cntctfrm_from_field'] );
872
  else
873
  return $data;
874
  }
875
 
876
  add_action( 'init', 'cntctfrm_plugin_init' );
877
 
878
+ add_action( 'init', 'cntctfrm_check_and_send' );
879
+
880
  add_action( 'admin_enqueue_scripts', 'cntctfrm_admin_head' );
881
 
882
  add_action( 'wp_enqueue_scripts', 'cntctfrm_wp_head' );
css/style.css CHANGED
@@ -50,10 +50,14 @@
50
  position:relative;
51
  top:5px;
52
  }
53
- .cntctfrm_change_label_block input {
54
  margin: 1px 0;
55
  }
56
 
 
 
 
 
57
  .widget-container #cntctfrm_contact_form input.text,
58
  .widget-container #cntctfrm_contact_form textarea,
59
  .widget-container #cntctfrm_contact_message,
50
  position:relative;
51
  top:5px;
52
  }
53
+ .cntctfrm_change_label_block input, .cntctfrm_action_after_send_block input {
54
  margin: 1px 0;
55
  }
56
 
57
+ .cntctfrm_action_after_send_block input[type="text"] {
58
+ width:250px;
59
+ }
60
+
61
  .widget-container #cntctfrm_contact_form input.text,
62
  .widget-container #cntctfrm_contact_form textarea,
63
  .widget-container #cntctfrm_contact_message,
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-06-18 13:13+0300\n"
6
- "PO-Revision-Date: 2012-06-18 13:13+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,8 +28,8 @@ msgid "Read more"
28
  msgstr "اقرأ المزيد"
29
 
30
  #: contact_form.php:78
31
- #: contact_form.php:750
32
- #: contact_form.php:759
33
  msgid "Settings"
34
  msgstr "إعدادات"
35
 
@@ -59,7 +59,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
59
  msgstr "إذا كان لديك أي أسئلة، يرجى الاتصال بنا عبر plugin@bestwebsoft.com أو ملء استمارة الاتصال على موقعنا"
60
 
61
  #: contact_form.php:108
62
- #: contact_form.php:242
63
  msgid "Contact Form Options"
64
  msgstr "خيارات نموذج اتصل بنا"
65
 
@@ -68,242 +68,269 @@ msgid "Contact Form"
68
  msgstr "نموذج الاتصال"
69
 
70
  #: contact_form.php:136
71
- #: contact_form.php:177
72
- #: contact_form.php:210
73
- #: contact_form.php:346
74
  msgid "Name:"
75
  msgstr "الأسم:"
76
 
77
  #: contact_form.php:137
78
- #: contact_form.php:178
79
- #: contact_form.php:211
80
- #: contact_form.php:347
81
  msgid "E-Mail Address:"
82
  msgstr "البريد الالكتروني:"
83
 
84
  #: contact_form.php:138
85
- #: contact_form.php:179
86
- #: contact_form.php:212
87
- #: contact_form.php:348
88
  msgid "Subject:"
89
  msgstr "موضوع الرسالة:"
90
 
91
  #: contact_form.php:139
92
- #: contact_form.php:180
93
- #: contact_form.php:213
94
- #: contact_form.php:349
95
  msgid "Message:"
96
  msgstr "الرسالة:"
97
 
98
  #: contact_form.php:140
99
- #: contact_form.php:181
100
- #: contact_form.php:214
101
- #: contact_form.php:350
102
  msgid "Attachment:"
103
  msgstr "المرفقات:"
104
 
105
- #: contact_form.php:222
106
- #: contact_form.php:231
 
 
 
 
 
 
 
 
 
 
107
  msgid "Options saved."
108
  msgstr "الخيارات حُفظت."
109
 
110
- #: contact_form.php:225
111
  msgid "Such user is not exist. Settings are not saved."
112
  msgstr "هذا المستخدم لا وجود له. لم يتم حفظ الإعدادات."
113
 
114
- #: contact_form.php:234
115
  msgid "Please input correct email. Settings are not saved."
116
  msgstr "الرجاء إدخال بريد الكتروني صحيح. الاعدادات لم تُحفظ."
117
 
118
- #: contact_form.php:247
119
  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:"
120
  msgstr "إذا كنت ترغب في إضافة نموذج الاتصال إلى موقع الويب الخاص بك، قم بنسخ ولصق هذا الرمز القصير:"
121
 
122
- #: contact_form.php:248
123
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
124
  msgstr "إذا كانت المعلومات في الحقول أدناه فارغة سيتم إرسال الرسالة إلى عنوان الذي تم تحديده أثناء التسجيل."
125
 
126
- #: contact_form.php:252
127
  msgid "Use email of wordpress user:"
128
  msgstr "أستخدم بريد العضو في وورد بريس:"
129
 
130
- #: contact_form.php:258
131
  msgid "Select user name"
132
  msgstr "اختر اسم المستخدم"
133
 
134
- #: contact_form.php:263
135
  msgid "Set a name of user who will get messages from a contact form."
136
  msgstr "تعيين اسم المستخدم من الذين سيحصلون على رسائل من شكل من أشكال الاتصال."
137
 
138
- #: contact_form.php:267
139
  msgid "Use this email:"
140
  msgstr "استخدام هذا البريد الالكتروني:"
141
 
142
- #: contact_form.php:273
143
  msgid "Set an email address which will be used for messages receiving."
144
  msgstr "تعيين عنوان البريد الإلكتروني التي سيتم استخدامها لاستقبال الرسائل."
145
 
146
- #: contact_form.php:277
147
  msgid "Additional options"
148
  msgstr "خيارات إضافية"
149
 
150
- #: contact_form.php:280
151
  msgid "Display Attachment block"
152
  msgstr "عرض حقل المرفقات"
153
 
154
- #: contact_form.php:285
155
  msgid "Users can attach files of the following types"
156
  msgstr "يمكن للمستخدمين إرفاق الملفات من الأنواع التالية"
157
 
158
- #: contact_form.php:289
159
  msgid "Display Attachment explanations"
160
  msgstr ""
161
 
162
- #: contact_form.php:294
163
  msgid "Display explanations after Attachment block"
164
  msgstr ""
165
 
166
- #: contact_form.php:298
167
  msgid "Display Send me a copy block"
168
  msgstr "عرض خيار (أرسل لي نسخة)"
169
 
170
- #: contact_form.php:304
171
  msgid "What use?"
172
  msgstr "ماذا تستخدم؟"
173
 
174
- #: contact_form.php:309
175
  msgid "Wp-mail"
176
  msgstr "Wp-mail"
177
 
178
- #: contact_form.php:310
179
  msgid "To send mail you can use the wordpress wp_mail function"
180
  msgstr "لإرسال البريد يمكنك استخدام وظيفة wp_mail"
181
 
182
- #: contact_form.php:318
183
  msgid "Mail"
184
  msgstr "Mail"
185
 
186
- #: contact_form.php:319
187
  msgid "To send mail you can use the php mail function"
188
  msgstr "لإرسال البريد يمكنك استخدام وظيفة البريد PHP"
189
 
190
- #: contact_form.php:323
191
  msgid "Change FROM fields of the contact form"
192
  msgstr "تغيير من الحقول من نموذج الاتصال"
193
 
194
- #: contact_form.php:329
195
  msgid "Display additional info in email"
196
  msgstr "عرض معلومات اضافية في البريد الالكتروني"
197
 
198
- #: contact_form.php:334
199
- #: contact_form.php:621
200
  msgid "Sent from (ip address)"
201
  msgstr "ارسلت من (عنوان IP)"
202
 
203
- #: contact_form.php:335
204
- #: contact_form.php:626
205
  msgid "Date/Time"
206
  msgstr "الوقت/التاريخ"
207
 
208
- #: contact_form.php:336
209
- #: contact_form.php:631
210
  msgid "Coming from (referer)"
211
  msgstr "Coming from (referer)"
212
 
213
- #: contact_form.php:337
214
- #: contact_form.php:636
215
  msgid "Using (user agent)"
216
  msgstr "باستخدام (وكيل المستخدم)"
217
 
218
- #: contact_form.php:341
219
  msgid "Change label for fields of the contact form"
220
  msgstr "تغيير تسمية حقول نموذج الاتصال"
221
 
222
- #: contact_form.php:356
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
223
  msgid "Save Changes"
224
  msgstr "حفظ التغييرات"
225
 
226
- #: contact_form.php:389
227
- msgid "Thank you for contacting us."
228
- msgstr "أشكركم على الاتصال بنا. سيتم الرد عليكم في أقرب فرصة."
229
-
230
- #: contact_form.php:394
231
  msgid "Sorry, your e-mail could not be delivered."
232
  msgstr "عذراً, لم نستطيع تسليم رسالتك."
233
 
234
- #: contact_form.php:452
235
  msgid "You can attach files of the following types"
236
  msgstr "يمكنك إرفاق الملفات من الأنواع التالية"
237
 
238
- #: contact_form.php:460
239
  msgid "Send me a copy"
240
  msgstr "أرسل لي نسخة"
241
 
242
- #: contact_form.php:470
243
  msgid "Submit"
244
  msgstr "تقدم"
245
 
246
- #: contact_form.php:486
247
  msgid "Your name is required."
248
  msgstr "مطلوب اسمك."
249
 
250
- #: contact_form.php:487
251
  msgid "A proper e-mail address is required."
252
  msgstr "مطلوب بريد الكتروني صحيح."
253
 
254
- #: contact_form.php:488
255
  msgid "Subject text is required."
256
  msgstr "مطلوب نص الموضوع."
257
 
258
- #: contact_form.php:489
259
  msgid "Message text is required."
260
  msgstr "مطلوب نص الرسالة."
261
 
262
- #: contact_form.php:490
263
  msgid "Please make corrections below and try again."
264
  msgstr "يرجى إجراء التصحيحات أدناه وحاول مرة أخرى."
265
 
266
- #: contact_form.php:521
267
  msgid "Attachment is broken."
268
  msgstr "المرفق تعطل."
269
 
270
- #: contact_form.php:534
271
  msgid "Please complete the CAPTCHA."
272
  msgstr "يرجى استكمال رمز التحقق."
273
 
274
- #: contact_form.php:644
275
  msgid "Contact from"
276
  msgstr "اتصل من"
277
 
278
- #: contact_form.php:649
279
  msgid "Name"
280
  msgstr "الأسم"
281
 
282
- #: contact_form.php:652
283
  msgid "Email"
284
  msgstr "البريد الألكتروني"
285
 
286
- #: contact_form.php:655
287
  msgid "Subject"
288
  msgstr "موضوع الرسالة"
289
 
290
- #: contact_form.php:658
291
  msgid "Message"
292
  msgstr "الرسالة"
293
 
294
- #: contact_form.php:661
295
  msgid "Site"
296
  msgstr "الموقع"
297
 
298
- #: contact_form.php:706
299
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
300
  msgstr "إذا يمكنك أن ترى هذه MIME من العميل الخاص بك لا يقبل أنواع MIME!"
301
 
302
- #: contact_form.php:760
303
  msgid "FAQ"
304
  msgstr "أسئلة وأجوبة"
305
 
306
- #: contact_form.php:761
307
  msgid "Support"
308
  msgstr "دعم"
309
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-27 17:40+0300\n"
6
+ "PO-Revision-Date: 2012-06-27 17:41+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: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
 
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
 
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-06-18 13:15+0300\n"
6
- "PO-Revision-Date: 2012-06-18 13:15+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:750
32
- #: contact_form.php:759
33
  msgid "Settings"
34
  msgstr "Настройки"
35
 
@@ -59,7 +59,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
59
  msgstr "Ако имате някакви въпроси, моля свържете с нас чрез plugin@bestwebsoft.com или попълнете нашата форма за контакти на нашия сайт"
60
 
61
  #: contact_form.php:108
62
- #: contact_form.php:242
63
  msgid "Contact Form Options"
64
  msgstr "Настройки на Формата за контакт"
65
 
@@ -68,242 +68,269 @@ msgid "Contact Form"
68
  msgstr "Форма за контакт"
69
 
70
  #: contact_form.php:136
71
- #: contact_form.php:177
72
- #: contact_form.php:210
73
- #: contact_form.php:346
74
  msgid "Name:"
75
  msgstr "Име:"
76
 
77
  #: contact_form.php:137
78
- #: contact_form.php:178
79
- #: contact_form.php:211
80
- #: contact_form.php:347
81
  msgid "E-Mail Address:"
82
  msgstr "E-mail адрес:"
83
 
84
  #: contact_form.php:138
85
- #: contact_form.php:179
86
- #: contact_form.php:212
87
- #: contact_form.php:348
88
  msgid "Subject:"
89
  msgstr "Тема:"
90
 
91
  #: contact_form.php:139
92
- #: contact_form.php:180
93
- #: contact_form.php:213
94
- #: contact_form.php:349
95
  msgid "Message:"
96
  msgstr "Съобщение:"
97
 
98
  #: contact_form.php:140
99
- #: contact_form.php:181
100
- #: contact_form.php:214
101
- #: contact_form.php:350
102
  msgid "Attachment:"
103
  msgstr "Прикачване на файл:"
104
 
105
- #: contact_form.php:222
106
- #: contact_form.php:231
 
 
 
 
 
 
 
 
 
 
107
  msgid "Options saved."
108
  msgstr "Опциите са запазени"
109
 
110
- #: contact_form.php:225
111
  msgid "Such user is not exist. Settings are not saved."
112
  msgstr "Не са намерени данни за потребителя. Настройките не са запазени"
113
 
114
- #: contact_form.php:234
115
  msgid "Please input correct email. Settings are not saved."
116
  msgstr "Моля, въведете коректен Email. Настройките не са запазени."
117
 
118
- #: contact_form.php:247
119
  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:"
120
  msgstr "Ако искате да добавите формата за контакт на своят сайт копирайте и поставете този код в страницата или публикацията или джаджа:"
121
 
122
- #: contact_form.php:248
123
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
124
  msgstr "Ако посочените по-долу полета не са попълнени, съобщението ще бъде изпратено на Email адрес, който е определен по време на регистрацията"
125
 
126
- #: contact_form.php:252
127
  msgid "Use email of wordpress user:"
128
  msgstr "Използвайте Email на Wordpress потребител:"
129
 
130
- #: contact_form.php:258
131
  msgid "Select user name"
132
  msgstr "Избиране на потребител"
133
 
134
- #: contact_form.php:263
135
  msgid "Set a name of user who will get messages from a contact form."
136
  msgstr "Задайте името на потребителя, който ще получава съобщенията от формата за контакт."
137
 
138
- #: contact_form.php:267
139
  msgid "Use this email:"
140
  msgstr "Използвайте този Email:"
141
 
142
- #: contact_form.php:273
143
  msgid "Set an email address which will be used for messages receiving."
144
  msgstr "Задаване на Email адрес, който ще се използва за получаване на съобщения."
145
 
146
- #: contact_form.php:277
147
  msgid "Additional options"
148
  msgstr "Допълнителни настройки"
149
 
150
- #: contact_form.php:280
151
  msgid "Display Attachment block"
152
  msgstr "Покажи опция за прикачване на файл"
153
 
154
- #: contact_form.php:285
155
  msgid "Users can attach files of the following types"
156
  msgstr "Потребителите могат да прикачват файлове от следните видове"
157
 
158
- #: contact_form.php:289
159
  msgid "Display Attachment explanations"
160
  msgstr ""
161
 
162
- #: contact_form.php:294
163
  msgid "Display explanations after Attachment block"
164
  msgstr ""
165
 
166
- #: contact_form.php:298
167
  msgid "Display Send me a copy block"
168
  msgstr "Показване на опция за изпращане на копие"
169
 
170
- #: contact_form.php:304
171
  msgid "What use?"
172
  msgstr ""
173
 
174
- #: contact_form.php:309
175
  msgid "Wp-mail"
176
  msgstr "Wp-mail"
177
 
178
- #: contact_form.php:310
179
  msgid "To send mail you can use the wordpress wp_mail function"
180
  msgstr ""
181
 
182
- #: contact_form.php:318
183
  msgid "Mail"
184
  msgstr "Mail"
185
 
186
- #: contact_form.php:319
187
  msgid "To send mail you can use the php mail function"
188
  msgstr ""
189
 
190
- #: contact_form.php:323
191
  msgid "Change FROM fields of the contact form"
192
  msgstr "Промяна от полета на формата за контакт"
193
 
194
- #: contact_form.php:329
195
  msgid "Display additional info in email"
196
  msgstr ""
197
 
198
- #: contact_form.php:334
199
- #: contact_form.php:621
200
  msgid "Sent from (ip address)"
201
  msgstr "Изпратено от (ip адрес)"
202
 
203
- #: contact_form.php:335
204
- #: contact_form.php:626
205
  msgid "Date/Time"
206
  msgstr "Дата/Час"
207
 
208
- #: contact_form.php:336
209
- #: contact_form.php:631
210
  msgid "Coming from (referer)"
211
  msgstr "Идва от (referer)"
212
 
213
- #: contact_form.php:337
214
- #: contact_form.php:636
215
  msgid "Using (user agent)"
216
  msgstr "Използвайки (user agent)"
217
 
218
- #: contact_form.php:341
219
  msgid "Change label for fields of the contact form"
220
  msgstr "Промяна на етикетите за полета във формата за контакт"
221
 
222
- #: contact_form.php:356
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
223
  msgid "Save Changes"
224
  msgstr "Запис на промените"
225
 
226
- #: contact_form.php:389
227
- msgid "Thank you for contacting us."
228
- msgstr "Благодарим Ви, че се свързахте с нас."
229
-
230
- #: contact_form.php:394
231
  msgid "Sorry, your e-mail could not be delivered."
232
  msgstr "Съжаляваме, Вашето съобщение не може да бъде изпратено."
233
 
234
- #: contact_form.php:452
235
  msgid "You can attach files of the following types"
236
  msgstr "Можете да прикачвате файлове от следните типове"
237
 
238
- #: contact_form.php:460
239
  msgid "Send me a copy"
240
  msgstr "Изпрати ми копие"
241
 
242
- #: contact_form.php:470
243
  msgid "Submit"
244
  msgstr "Изпрати"
245
 
246
- #: contact_form.php:486
247
  msgid "Your name is required."
248
  msgstr "Вашето име е задължително."
249
 
250
- #: contact_form.php:487
251
  msgid "A proper e-mail address is required."
252
  msgstr "Правилният Email адрес е задължителен."
253
 
254
- #: contact_form.php:488
255
  msgid "Subject text is required."
256
  msgstr "Заглавието е задължитено."
257
 
258
- #: contact_form.php:489
259
  msgid "Message text is required."
260
  msgstr "Текстовото съобщение е задължително."
261
 
262
- #: contact_form.php:490
263
  msgid "Please make corrections below and try again."
264
  msgstr "Моля направете необходимите корекции по-долу и опитайте отново."
265
 
266
- #: contact_form.php:521
267
  msgid "Attachment is broken."
268
  msgstr "Прикаченият файл не се поддържа"
269
 
270
- #: contact_form.php:534
271
  msgid "Please complete the CAPTCHA."
272
  msgstr "Моля попълнете CAPTCHA."
273
 
274
- #: contact_form.php:644
275
  msgid "Contact from"
276
  msgstr "Форма за контакт"
277
 
278
- #: contact_form.php:649
279
  msgid "Name"
280
  msgstr "Име"
281
 
282
- #: contact_form.php:652
283
  msgid "Email"
284
  msgstr "Email"
285
 
286
- #: contact_form.php:655
287
  msgid "Subject"
288
  msgstr "Относно"
289
 
290
- #: contact_form.php:658
291
  msgid "Message"
292
  msgstr "Съобщение"
293
 
294
- #: contact_form.php:661
295
  msgid "Site"
296
  msgstr "Сайт"
297
 
298
- #: contact_form.php:706
299
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
300
  msgstr "Ако видиждате това значи, че вашият MIME клиент за електронна поща не поддържа MIME тип!"
301
 
302
- #: contact_form.php:760
303
  msgid "FAQ"
304
  msgstr "FAQ"
305
 
306
- #: contact_form.php:761
307
  msgid "Support"
308
  msgstr "Поддръжка"
309
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-27 17:41+0300\n"
6
+ "PO-Revision-Date: 2012-06-27 17:41+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
 
59
  msgstr "Ако имате някакви въпроси, моля свържете с нас чрез plugin@bestwebsoft.com или попълнете нашата форма за контакти на нашия сайт"
60
 
61
  #: contact_form.php:108
62
+ #: contact_form.php:262
63
  msgid "Contact Form Options"
64
  msgstr "Настройки на Формата за контакт"
65
 
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 "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
  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 "Ако посочените по-долу полета не са попълнени, съобщението ще бъде изпратено на Email адрес, който е определен по време на регистрацията"
135
 
136
+ #: contact_form.php:272
137
  msgid "Use email of wordpress user:"
138
  msgstr "Използвайте Email на Wordpress потребител:"
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 "Използвайте този Email:"
151
 
152
+ #: contact_form.php:293
153
  msgid "Set an email address which will be used for messages receiving."
154
  msgstr "Задаване на Email адрес, който ще се използва за получаване на съобщения."
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 ""
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 ""
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 "Идва от (referer)"
222
 
223
+ #: contact_form.php:357
224
+ #: contact_form.php:688
225
  msgid "Using (user agent)"
226
  msgstr "Използвайки (user agent)"
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 "Правилният 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-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-06-18 13:16+0300\n"
6
- "PO-Revision-Date: 2012-06-18 13:16+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:750
32
- #: contact_form.php:759
33
  msgid "Settings"
34
  msgstr "Indstillinger"
35
 
@@ -59,7 +59,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
59
  msgstr "Hvis du har spørgsmål kan du kontakte os på plugin@bestwebsoft.com eller bruge kontaktformularen på vores hjemmeside"
60
 
61
  #: contact_form.php:108
62
- #: contact_form.php:242
63
  msgid "Contact Form Options"
64
  msgstr "Indstillinger for kontaktformular"
65
 
@@ -68,242 +68,269 @@ msgid "Contact Form"
68
  msgstr "Kontaktformular"
69
 
70
  #: contact_form.php:136
71
- #: contact_form.php:177
72
- #: contact_form.php:210
73
- #: contact_form.php:346
74
  msgid "Name:"
75
  msgstr "Navn:"
76
 
77
  #: contact_form.php:137
78
- #: contact_form.php:178
79
- #: contact_form.php:211
80
- #: contact_form.php:347
81
  msgid "E-Mail Address:"
82
  msgstr "E-mail-adresse:"
83
 
84
  #: contact_form.php:138
85
- #: contact_form.php:179
86
- #: contact_form.php:212
87
- #: contact_form.php:348
88
  msgid "Subject:"
89
  msgstr "Emne:"
90
 
91
  #: contact_form.php:139
92
- #: contact_form.php:180
93
- #: contact_form.php:213
94
- #: contact_form.php:349
95
  msgid "Message:"
96
  msgstr "Besked:"
97
 
98
  #: contact_form.php:140
99
- #: contact_form.php:181
100
- #: contact_form.php:214
101
- #: contact_form.php:350
102
  msgid "Attachment:"
103
  msgstr "Bilag:"
104
 
105
- #: contact_form.php:222
106
- #: contact_form.php:231
 
 
 
 
 
 
 
 
 
 
107
  msgid "Options saved."
108
  msgstr "Indstillinger gemt."
109
 
110
- #: contact_form.php:225
111
  msgid "Such user is not exist. Settings are not saved."
112
  msgstr "Brugeren eksisterer ikke. Indstillingerne er ikke gemt."
113
 
114
- #: contact_form.php:234
115
  msgid "Please input correct email. Settings are not saved."
116
  msgstr "Benyt venligst en korrekt e-mail-adresse. Indstillingerne er ikke gemt."
117
 
118
- #: contact_form.php:247
119
  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:"
120
  msgstr "Hvis du ønsker at tilføje en kontaktformular til din side, kopier og put denne kode i din kommentar eller på din side: "
121
 
122
- #: contact_form.php:248
123
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
124
  msgstr "Hvis felterne nedenunder er tomme, vil meddelesen blive sendt til den adresse, som var angivet ved registreringen."
125
 
126
- #: contact_form.php:252
127
  msgid "Use email of wordpress user:"
128
  msgstr "Benyt e-mail-adressen til wordpressbrugeren:"
129
 
130
- #: contact_form.php:258
131
  msgid "Select user name"
132
  msgstr "Vælg brugernavn"
133
 
134
- #: contact_form.php:263
135
  msgid "Set a name of user who will get messages from a contact form."
136
  msgstr "Angiv det brugernavn, som vil modtage beskeder fra en kontaktformular."
137
 
138
- #: contact_form.php:267
139
  msgid "Use this email:"
140
  msgstr "Benyt denne e-mail-adresse:"
141
 
142
- #: contact_form.php:273
143
  msgid "Set an email address which will be used for messages receiving."
144
  msgstr "Angiv den e-mail-adresse, som vil blive benyttet ved modtagelse af beskeder."
145
 
146
- #: contact_form.php:277
147
  msgid "Additional options"
148
  msgstr "Flere valgmuligheder"
149
 
150
- #: contact_form.php:280
151
  msgid "Display Attachment block"
152
  msgstr "Vis bilag"
153
 
154
- #: contact_form.php:285
155
  msgid "Users can attach files of the following types"
156
  msgstr "Brugere kan vedlægge filer af følgende typer"
157
 
158
- #: contact_form.php:289
159
  msgid "Display Attachment explanations"
160
  msgstr ""
161
 
162
- #: contact_form.php:294
163
  msgid "Display explanations after Attachment block"
164
  msgstr ""
165
 
166
- #: contact_form.php:298
167
  msgid "Display Send me a copy block"
168
  msgstr "Vis \"Send mig en kopi\"-afsnit"
169
 
170
- #: contact_form.php:304
171
  msgid "What use?"
172
  msgstr ""
173
 
174
- #: contact_form.php:309
175
  msgid "Wp-mail"
176
  msgstr "Wp-mail"
177
 
178
- #: contact_form.php:310
179
  msgid "To send mail you can use the wordpress wp_mail function"
180
  msgstr ""
181
 
182
- #: contact_form.php:318
183
  msgid "Mail"
184
  msgstr "Mail"
185
 
186
- #: contact_form.php:319
187
  msgid "To send mail you can use the php mail function"
188
  msgstr ""
189
 
190
- #: contact_form.php:323
191
  msgid "Change FROM fields of the contact form"
192
  msgstr "Skift FRA-felterne i kontaktformularen"
193
 
194
- #: contact_form.php:329
195
  msgid "Display additional info in email"
196
  msgstr "Vis yderligere information i e-mail"
197
 
198
- #: contact_form.php:334
199
- #: contact_form.php:621
200
  msgid "Sent from (ip address)"
201
  msgstr "Sendt fra (IP-adresse)"
202
 
203
- #: contact_form.php:335
204
- #: contact_form.php:626
205
  msgid "Date/Time"
206
  msgstr "Dato/klokkeslæt"
207
 
208
- #: contact_form.php:336
209
- #: contact_form.php:631
210
  msgid "Coming from (referer)"
211
  msgstr "Sendt fra (referent)"
212
 
213
- #: contact_form.php:337
214
- #: contact_form.php:636
215
  msgid "Using (user agent)"
216
  msgstr "Med (user agent)"
217
 
218
- #: contact_form.php:341
219
  msgid "Change label for fields of the contact form"
220
  msgstr "Skifte etiketter til felterne i kontaktformularen"
221
 
222
- #: contact_form.php:356
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
223
  msgid "Save Changes"
224
  msgstr "Gem ændringer"
225
 
226
- #: contact_form.php:389
227
- msgid "Thank you for contacting us."
228
- msgstr "Tak fordi du kontaktede os"
229
-
230
- #: contact_form.php:394
231
  msgid "Sorry, your e-mail could not be delivered."
232
  msgstr "Beklager, men din e-mail kunne ikke leveres."
233
 
234
- #: contact_form.php:452
235
  msgid "You can attach files of the following types"
236
  msgstr "Du kan vedhæfte filer af følgende typer"
237
 
238
- #: contact_form.php:460
239
  msgid "Send me a copy"
240
  msgstr "Send mig en kopi"
241
 
242
- #: contact_form.php:470
243
  msgid "Submit"
244
  msgstr "Send"
245
 
246
- #: contact_form.php:486
247
  msgid "Your name is required."
248
  msgstr "Dit navn er obligatorisk"
249
 
250
- #: contact_form.php:487
251
  msgid "A proper e-mail address is required."
252
  msgstr "En korrekt e-mail-adresse er påkrævet."
253
 
254
- #: contact_form.php:488
255
  msgid "Subject text is required."
256
  msgstr "Emnefeltet er obligatorisk."
257
 
258
- #: contact_form.php:489
259
  msgid "Message text is required."
260
  msgstr "Du skal angive en besked"
261
 
262
- #: contact_form.php:490
263
  msgid "Please make corrections below and try again."
264
  msgstr "Ret venligst nedenstående og prøv igen."
265
 
266
- #: contact_form.php:521
267
  msgid "Attachment is broken."
268
  msgstr "Bilaget er korrupt."
269
 
270
- #: contact_form.php:534
271
  msgid "Please complete the CAPTCHA."
272
  msgstr "Venligst udfyld CAPTCHA-feltet."
273
 
274
- #: contact_form.php:644
275
  msgid "Contact from"
276
  msgstr "Kontakt fra"
277
 
278
- #: contact_form.php:649
279
  msgid "Name"
280
  msgstr "Navn"
281
 
282
- #: contact_form.php:652
283
  msgid "Email"
284
  msgstr "E-mail"
285
 
286
- #: contact_form.php:655
287
  msgid "Subject"
288
  msgstr "Emne"
289
 
290
- #: contact_form.php:658
291
  msgid "Message"
292
  msgstr "Besked"
293
 
294
- #: contact_form.php:661
295
  msgid "Site"
296
  msgstr "Site"
297
 
298
- #: contact_form.php:706
299
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
300
  msgstr "Dersom du kan se denne MIME, så aksepterer ikke klienten din MIME-typer!"
301
 
302
- #: contact_form.php:760
303
  msgid "FAQ"
304
  msgstr "Ofte stillede spørgsmål"
305
 
306
- #: contact_form.php:761
307
  msgid "Support"
308
  msgstr "Support"
309
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-27 17:41+0300\n"
6
+ "PO-Revision-Date: 2012-06-27 17:41+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
 
59
  msgstr "Hvis du har spørgsmål kan du kontakte os på plugin@bestwebsoft.com eller bruge kontaktformularen på vores hjemmeside"
60
 
61
  #: contact_form.php:108
62
+ #: contact_form.php:262
63
  msgid "Contact Form Options"
64
  msgstr "Indstillinger for kontaktformular"
65
 
68
  msgstr "Kontaktformular"
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 "Navn:"
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-adresse:"
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 "Emne:"
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 "Besked:"
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 "Bilag:"
104
 
105
+ #: contact_form.php:142
106
+ #: contact_form.php:186
107
+ msgid "Thank you for contacting us."
108
+ msgstr "Tak fordi du kontaktede os"
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 "Indstillinger gemt."
119
 
120
+ #: contact_form.php:245
121
  msgid "Such user is not exist. Settings are not saved."
122
  msgstr "Brugeren eksisterer ikke. Indstillingerne er ikke gemt."
123
 
124
+ #: contact_form.php:254
125
  msgid "Please input correct email. Settings are not saved."
126
  msgstr "Benyt venligst en korrekt e-mail-adresse. Indstillingerne er ikke gemt."
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 "Hvis du ønsker at tilføje en kontaktformular til din side, kopier og put denne kode i din kommentar eller på din side: "
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 "Hvis felterne nedenunder er tomme, vil meddelesen blive sendt til den adresse, som var angivet ved registreringen."
135
 
136
+ #: contact_form.php:272
137
  msgid "Use email of wordpress user:"
138
  msgstr "Benyt e-mail-adressen til wordpressbrugeren:"
139
 
140
+ #: contact_form.php:278
141
  msgid "Select user name"
142
  msgstr "Vælg brugernavn"
143
 
144
+ #: contact_form.php:283
145
  msgid "Set a name of user who will get messages from a contact form."
146
  msgstr "Angiv det brugernavn, som vil modtage beskeder fra en kontaktformular."
147
 
148
+ #: contact_form.php:287
149
  msgid "Use this email:"
150
  msgstr "Benyt denne e-mail-adresse:"
151
 
152
+ #: contact_form.php:293
153
  msgid "Set an email address which will be used for messages receiving."
154
  msgstr "Angiv den e-mail-adresse, som vil blive benyttet ved modtagelse af beskeder."
155
 
156
+ #: contact_form.php:297
157
  msgid "Additional options"
158
  msgstr "Flere valgmuligheder"
159
 
160
+ #: contact_form.php:300
161
  msgid "Display Attachment block"
162
  msgstr "Vis bilag"
163
 
164
+ #: contact_form.php:305
165
  msgid "Users can attach files of the following types"
166
  msgstr "Brugere kan vedlægge filer af følgende typer"
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 "Vis \"Send mig en kopi\"-afsnit"
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 ""
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 ""
199
 
200
+ #: contact_form.php:343
201
  msgid "Change FROM fields of the contact form"
202
  msgstr "Skift FRA-felterne i kontaktformularen"
203
 
204
+ #: contact_form.php:349
205
  msgid "Display additional info in email"
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
 
228
+ #: contact_form.php:361
229
  msgid "Change label for fields of the contact form"
230
  msgstr "Skifte etiketter til felterne i kontaktformularen"
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 "Vis bilag"
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 "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-06-18 13:16+0300\n"
6
- "PO-Revision-Date: 2012-06-18 13:16+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:750
32
- #: contact_form.php:759
33
  msgid "Settings"
34
  msgstr "Einstellungen"
35
 
@@ -59,7 +59,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
59
  msgstr "Bei Fragen wenden Sie sich an plugin@bestwebsoft.com oder füllen Sie das Kontakformular auf unserer Webseite aus"
60
 
61
  #: contact_form.php:108
62
- #: contact_form.php:242
63
  msgid "Contact Form Options"
64
  msgstr "Contact Form Einstellungen"
65
 
@@ -68,242 +68,269 @@ msgid "Contact Form"
68
  msgstr "Contact Form"
69
 
70
  #: contact_form.php:136
71
- #: contact_form.php:177
72
- #: contact_form.php:210
73
- #: contact_form.php:346
74
  msgid "Name:"
75
  msgstr "Name:"
76
 
77
  #: contact_form.php:137
78
- #: contact_form.php:178
79
- #: contact_form.php:211
80
- #: contact_form.php:347
81
  msgid "E-Mail Address:"
82
  msgstr "E-Mail-Adresse:"
83
 
84
  #: contact_form.php:138
85
- #: contact_form.php:179
86
- #: contact_form.php:212
87
- #: contact_form.php:348
88
  msgid "Subject:"
89
  msgstr "Betreff:"
90
 
91
  #: contact_form.php:139
92
- #: contact_form.php:180
93
- #: contact_form.php:213
94
- #: contact_form.php:349
95
  msgid "Message:"
96
  msgstr "Nachricht:"
97
 
98
  #: contact_form.php:140
99
- #: contact_form.php:181
100
- #: contact_form.php:214
101
- #: contact_form.php:350
102
  msgid "Attachment:"
103
  msgstr "Anhang:"
104
 
105
- #: contact_form.php:222
106
- #: contact_form.php:231
 
 
 
 
 
 
 
 
 
 
107
  msgid "Options saved."
108
  msgstr "Einstellungen gespeichert."
109
 
110
- #: contact_form.php:225
111
  msgid "Such user is not exist. Settings are not saved."
112
  msgstr "Dieser Benutzer existiert nicht. Einstellungen nicht gespeichert."
113
 
114
- #: contact_form.php:234
115
  msgid "Please input correct email. Settings are not saved."
116
  msgstr "Bitte geben Sie eine korrekte E-Mail-Adresse ein. Einstellungen nicht gespeichert."
117
 
118
- #: contact_form.php:247
119
  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:"
120
  msgstr "Wenn Sie Contact Form in Ihrer Webpräsenz verwenden wollen, kopieren Sie einfach folgenden shortcode auf Ihre Seite oder Ihren Artikel oder widget:"
121
 
122
- #: contact_form.php:248
123
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
124
  msgstr "Wenn das folgende Feld leer bleibt wird die Nachricht an die Adresse gesandt, die bei der Registrierung angegeben wurde."
125
 
126
- #: contact_form.php:252
127
  msgid "Use email of wordpress user:"
128
  msgstr "Benutze die E-Mail-Adresse von WordPress-Benutzer:"
129
 
130
- #: contact_form.php:258
131
  msgid "Select user name"
132
  msgstr "Wähle Benutzer"
133
 
134
- #: contact_form.php:263
135
  msgid "Set a name of user who will get messages from a contact form."
136
  msgstr "Definieren Sie die Benutzer, die Nachrichten von Contact Form bekommen sollen."
137
 
138
- #: contact_form.php:267
139
  msgid "Use this email:"
140
  msgstr "Verwende diese E-Mail-Adresse:"
141
 
142
- #: contact_form.php:273
143
  msgid "Set an email address which will be used for messages receiving."
144
  msgstr "Definieren Sie die E-Mail-Adresse, die Contact Form verwenden soll."
145
 
146
- #: contact_form.php:277
147
  msgid "Additional options"
148
  msgstr "Erweiterte Optionen"
149
 
150
- #: contact_form.php:280
151
  msgid "Display Attachment block"
152
  msgstr "Anhänge erlauben"
153
 
154
- #: contact_form.php:285
155
  msgid "Users can attach files of the following types"
156
  msgstr "Benutzer können folgende Dateitypen anhängen"
157
 
158
- #: contact_form.php:289
159
  msgid "Display Attachment explanations"
160
  msgstr ""
161
 
162
- #: contact_form.php:294
163
  msgid "Display explanations after Attachment block"
164
  msgstr ""
165
 
166
- #: contact_form.php:298
167
  msgid "Display Send me a copy block"
168
  msgstr "Kopie-an-mich anzeigen"
169
 
170
- #: contact_form.php:304
171
  msgid "What use?"
172
  msgstr ""
173
 
174
- #: contact_form.php:309
175
  msgid "Wp-mail"
176
  msgstr "Wp-mail"
177
 
178
- #: contact_form.php:310
179
  msgid "To send mail you can use the wordpress wp_mail function"
180
  msgstr ""
181
 
182
- #: contact_form.php:318
183
  msgid "Mail"
184
  msgstr "Mail"
185
 
186
- #: contact_form.php:319
187
  msgid "To send mail you can use the php mail function"
188
  msgstr ""
189
 
190
- #: contact_form.php:323
191
  msgid "Change FROM fields of the contact form"
192
  msgstr "Veränderung gegenüber Felder des Kontaktformulars"
193
 
194
- #: contact_form.php:329
195
  msgid "Display additional info in email"
196
  msgstr ""
197
 
198
- #: contact_form.php:334
199
- #: contact_form.php:621
200
  msgid "Sent from (ip address)"
201
  msgstr "Gesendet von (IP-Adresse)"
202
 
203
- #: contact_form.php:335
204
- #: contact_form.php:626
205
  msgid "Date/Time"
206
  msgstr "Datum / Uhrzeit"
207
 
208
- #: contact_form.php:336
209
- #: contact_form.php:631
210
  msgid "Coming from (referer)"
211
  msgstr "gesendet von (referer)"
212
 
213
- #: contact_form.php:337
214
- #: contact_form.php:636
215
  msgid "Using (user agent)"
216
  msgstr "mit (user agent)"
217
 
218
- #: contact_form.php:341
219
  msgid "Change label for fields of the contact form"
220
  msgstr "Ändern Sie die Bezeichnung der Felder des Kontaktformulars"
221
 
222
- #: contact_form.php:356
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
223
  msgid "Save Changes"
224
  msgstr "Änderungen speichern"
225
 
226
- #: contact_form.php:389
227
- msgid "Thank you for contacting us."
228
- msgstr "Danke für Ihre Nachricht."
229
-
230
- #: contact_form.php:394
231
  msgid "Sorry, your e-mail could not be delivered."
232
  msgstr "Entschuldigung, Ihre E-Mail konnte leider nicht zugestellt werden."
233
 
234
- #: contact_form.php:452
235
  msgid "You can attach files of the following types"
236
  msgstr "Sie können folgende Dateitypen anhängen"
237
 
238
- #: contact_form.php:460
239
  msgid "Send me a copy"
240
  msgstr "Kopie an mich senden"
241
 
242
- #: contact_form.php:470
243
  msgid "Submit"
244
  msgstr "senden"
245
 
246
- #: contact_form.php:486
247
  msgid "Your name is required."
248
  msgstr "Ihr Name wird benötigt"
249
 
250
- #: contact_form.php:487
251
  msgid "A proper e-mail address is required."
252
  msgstr "Eine korrekte E-Mail-Adresse ist zwingend."
253
 
254
- #: contact_form.php:488
255
  msgid "Subject text is required."
256
  msgstr "Bitte geben Sie einen Betreff ein."
257
 
258
- #: contact_form.php:489
259
  msgid "Message text is required."
260
  msgstr "Bitte geben Sie eine Nachricht ein."
261
 
262
- #: contact_form.php:490
263
  msgid "Please make corrections below and try again."
264
  msgstr "Bitte führen Sie die Korrekturen unten durch und versuchen Sie es erneut."
265
 
266
- #: contact_form.php:521
267
  msgid "Attachment is broken."
268
  msgstr "Anhang scheint defekt zu sein."
269
 
270
- #: contact_form.php:534
271
  msgid "Please complete the CAPTCHA."
272
  msgstr "Bitte ergänzen Sie das CAPTCHA."
273
 
274
- #: contact_form.php:644
275
  msgid "Contact from"
276
  msgstr "Kontakt von"
277
 
278
- #: contact_form.php:649
279
  msgid "Name"
280
  msgstr "Nome"
281
 
282
- #: contact_form.php:652
283
  msgid "Email"
284
  msgstr "E-Mail"
285
 
286
- #: contact_form.php:655
287
  msgid "Subject"
288
  msgstr "Betreff"
289
 
290
- #: contact_form.php:658
291
  msgid "Message"
292
  msgstr "Nachricht"
293
 
294
- #: contact_form.php:661
295
  msgid "Site"
296
  msgstr "Site"
297
 
298
- #: contact_form.php:706
299
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
300
  msgstr "Wenn Sie dieses MIME sehen, unterstützt Ihr Client keine MIME-Typen!"
301
 
302
- #: contact_form.php:760
303
  msgid "FAQ"
304
  msgstr "Häufig gestellte Fragen (FAQ)"
305
 
306
- #: contact_form.php:761
307
  msgid "Support"
308
  msgstr "Unterstützung"
309
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-27 17:41+0300\n"
6
+ "PO-Revision-Date: 2012-06-27 17:41+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
 
59
  msgstr "Bei Fragen wenden Sie sich an plugin@bestwebsoft.com oder füllen Sie das Kontakformular auf unserer Webseite aus"
60
 
61
  #: contact_form.php:108
62
+ #: contact_form.php:262
63
  msgid "Contact Form Options"
64
  msgstr "Contact Form Einstellungen"
65
 
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 "Name:"
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-Adresse:"
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 "Betreff:"
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 "Nachricht:"
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 "Anhang:"
104
 
105
+ #: contact_form.php:142
106
+ #: contact_form.php:186
107
+ msgid "Thank you for contacting us."
108
+ msgstr "Danke für Ihre Nachricht."
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 "Einstellungen gespeichert."
119
 
120
+ #: contact_form.php:245
121
  msgid "Such user is not exist. Settings are not saved."
122
  msgstr "Dieser Benutzer existiert nicht. Einstellungen nicht gespeichert."
123
 
124
+ #: contact_form.php:254
125
  msgid "Please input correct email. Settings are not saved."
126
  msgstr "Bitte geben Sie eine korrekte E-Mail-Adresse ein. Einstellungen nicht gespeichert."
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 "Wenn Sie Contact Form in Ihrer Webpräsenz verwenden wollen, kopieren Sie einfach folgenden shortcode auf Ihre Seite oder Ihren Artikel oder widget:"
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 "Wenn das folgende Feld leer bleibt wird die Nachricht an die Adresse gesandt, die bei der Registrierung angegeben wurde."
135
 
136
+ #: contact_form.php:272
137
  msgid "Use email of wordpress user:"
138
  msgstr "Benutze die E-Mail-Adresse von WordPress-Benutzer:"
139
 
140
+ #: contact_form.php:278
141
  msgid "Select user name"
142
  msgstr "Wähle Benutzer"
143
 
144
+ #: contact_form.php:283
145
  msgid "Set a name of user who will get messages from a contact form."
146
  msgstr "Definieren Sie die Benutzer, die Nachrichten von Contact Form bekommen sollen."
147
 
148
+ #: contact_form.php:287
149
  msgid "Use this email:"
150
  msgstr "Verwende diese E-Mail-Adresse:"
151
 
152
+ #: contact_form.php:293
153
  msgid "Set an email address which will be used for messages receiving."
154
  msgstr "Definieren Sie die E-Mail-Adresse, die Contact Form verwenden soll."
155
 
156
+ #: contact_form.php:297
157
  msgid "Additional options"
158
  msgstr "Erweiterte Optionen"
159
 
160
+ #: contact_form.php:300
161
  msgid "Display Attachment block"
162
  msgstr "Anhänge erlauben"
163
 
164
+ #: contact_form.php:305
165
  msgid "Users can attach files of the following types"
166
  msgstr "Benutzer können folgende Dateitypen anhängen"
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 "Kopie-an-mich anzeigen"
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 ""
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 ""
199
 
200
+ #: contact_form.php:343
201
  msgid "Change FROM fields of the contact form"
202
  msgstr "Veränderung gegenüber Felder des Kontaktformulars"
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 "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
 
228
+ #: contact_form.php:361
229
  msgid "Change label for fields of the contact form"
230
  msgstr "Ändern Sie die Bezeichnung der Felder des Kontaktformulars"
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 "Anhänge erlauben"
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 "Ä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-06-18 13:16+0300\n"
6
- "PO-Revision-Date: 2012-06-18 13:16+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:750
32
- #: contact_form.php:759
33
  msgid "Settings"
34
  msgstr "Ρυθμίσεις"
35
 
@@ -59,7 +59,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
59
  msgstr "Αν έχετε απορίες, επικοινωνήστε στο plugin@bestwebsoft.com ή μέσω της φόρμας επικοινωνίας της ιστοσελίδας μας"
60
 
61
  #: contact_form.php:108
62
- #: contact_form.php:242
63
  msgid "Contact Form Options"
64
  msgstr "Επιλογές φόρμας επικοινωνίας"
65
 
@@ -68,242 +68,269 @@ msgid "Contact Form"
68
  msgstr "Φόρμα επικοινωνίας"
69
 
70
  #: contact_form.php:136
71
- #: contact_form.php:177
72
- #: contact_form.php:210
73
- #: contact_form.php:346
74
  msgid "Name:"
75
  msgstr "Όνομα:"
76
 
77
  #: contact_form.php:137
78
- #: contact_form.php:178
79
- #: contact_form.php:211
80
- #: contact_form.php:347
81
  msgid "E-Mail Address:"
82
  msgstr "Διεύθυνση e-mail:"
83
 
84
  #: contact_form.php:138
85
- #: contact_form.php:179
86
- #: contact_form.php:212
87
- #: contact_form.php:348
88
  msgid "Subject:"
89
  msgstr "Θέμα:"
90
 
91
  #: contact_form.php:139
92
- #: contact_form.php:180
93
- #: contact_form.php:213
94
- #: contact_form.php:349
95
  msgid "Message:"
96
  msgstr "Μήνυμα:"
97
 
98
  #: contact_form.php:140
99
- #: contact_form.php:181
100
- #: contact_form.php:214
101
- #: contact_form.php:350
102
  msgid "Attachment:"
103
  msgstr "Επισύναψη:"
104
 
105
- #: contact_form.php:222
106
- #: contact_form.php:231
 
 
 
 
 
 
 
 
 
 
107
  msgid "Options saved."
108
  msgstr "Οι επιλογές αποθηκεύτηκαν."
109
 
110
- #: contact_form.php:225
111
  msgid "Such user is not exist. Settings are not saved."
112
  msgstr "Δεν υπάρχει τέτοιος χρήστης. Οι επιλογές δεν αποθηκεύτηκαν."
113
 
114
- #: contact_form.php:234
115
  msgid "Please input correct email. Settings are not saved."
116
  msgstr "Παρακαλούμε εισάγετε μια σωστή διεύθυνση email. Οι επιλογές δεν αποθηκεύτηκαν."
117
 
118
- #: contact_form.php:247
119
  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:"
120
  msgstr "Αν θέλετε να προσθέσετε μια φόρμα επικοινωνίας στην ιστοσελίδα σας, αντιγράψτε αυτό τον σύντομο κώδικα στην ανάρτηση, τη σελίδα ή το πρόσθετό σας:"
121
 
122
- #: contact_form.php:248
123
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
124
  msgstr "Αν τα παρακάτω πεδία είναι κενά, το μήνυμα θα σταλεί στη διεύθυνση που ορίστηκε κατά την εγγραφή"
125
 
126
- #: contact_form.php:252
127
  msgid "Use email of wordpress user:"
128
  msgstr "Τα μηνύματα θα στέλνονται στο email του χρήστη:"
129
 
130
- #: contact_form.php:258
131
  msgid "Select user name"
132
  msgstr "επιλογή χρήστη"
133
 
134
- #: contact_form.php:263
135
  msgid "Set a name of user who will get messages from a contact form."
136
  msgstr "Τα μηνύματα θα λαμβάνει ο χρήστης"
137
 
138
- #: contact_form.php:267
139
  msgid "Use this email:"
140
  msgstr "Τα μηνύματα θα στέλνονται στο email "
141
 
142
- #: contact_form.php:273
143
  msgid "Set an email address which will be used for messages receiving."
144
  msgstr "Ορίστε την διεύθυνση email στην οποία θα αποστέλλονται τα μηνύματα."
145
 
146
- #: contact_form.php:277
147
  msgid "Additional options"
148
  msgstr "Πρόσθετες επιλογές"
149
 
150
- #: contact_form.php:280
151
  msgid "Display Attachment block"
152
  msgstr "Προβολή κουτιού επισύναψης αρχείου"
153
 
154
- #: contact_form.php:285
155
  msgid "Users can attach files of the following types"
156
  msgstr "Οι χρήστες μπορούν να επισυνάψουν αρχεία τύπου"
157
 
158
- #: contact_form.php:289
159
  msgid "Display Attachment explanations"
160
  msgstr ""
161
 
162
- #: contact_form.php:294
163
  msgid "Display explanations after Attachment block"
164
  msgstr ""
165
 
166
- #: contact_form.php:298
167
  msgid "Display Send me a copy block"
168
  msgstr "Προβολή κουτιού \"Στείλτο και σ' εμένα\""
169
 
170
- #: contact_form.php:304
171
  msgid "What use?"
172
  msgstr ""
173
 
174
- #: contact_form.php:309
175
  msgid "Wp-mail"
176
  msgstr "Wp-mail"
177
 
178
- #: contact_form.php:310
179
  msgid "To send mail you can use the wordpress wp_mail function"
180
  msgstr ""
181
 
182
- #: contact_form.php:318
183
  msgid "Mail"
184
  msgstr "Mail"
185
 
186
- #: contact_form.php:319
187
  msgid "To send mail you can use the php mail function"
188
  msgstr ""
189
 
190
- #: contact_form.php:323
191
  msgid "Change FROM fields of the contact form"
192
  msgstr "Αλλάξτε το πεδίο \"ΑΠΟ\" της φόρμας επικοινωνίας"
193
 
194
- #: contact_form.php:329
195
  msgid "Display additional info in email"
196
  msgstr "Προβολή πρόσθετων πληροφοριών στο email"
197
 
198
- #: contact_form.php:334
199
- #: contact_form.php:621
200
  msgid "Sent from (ip address)"
201
  msgstr "Στάλθηκε από (διεύθυνση ip)"
202
 
203
- #: contact_form.php:335
204
- #: contact_form.php:626
205
  msgid "Date/Time"
206
  msgstr "Ημερομηνία/Ώρα"
207
 
208
- #: contact_form.php:336
209
- #: contact_form.php:631
210
  msgid "Coming from (referer)"
211
  msgstr "Από (referer)"
212
 
213
- #: contact_form.php:337
214
- #: contact_form.php:636
215
  msgid "Using (user agent)"
216
  msgstr "με χρήση (user agent)"
217
 
218
- #: contact_form.php:341
219
  msgid "Change label for fields of the contact form"
220
  msgstr "Αλλαγή ετικετών πεδίων της φόρμας επικοινωνίας"
221
 
222
- #: contact_form.php:356
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
223
  msgid "Save Changes"
224
  msgstr "Αποθήκευση αλλαγών"
225
 
226
- #: contact_form.php:389
227
- msgid "Thank you for contacting us."
228
- msgstr "Ευχαριστούμε για την επικοινωνία."
229
-
230
- #: contact_form.php:394
231
  msgid "Sorry, your e-mail could not be delivered."
232
  msgstr "Δυστυχώς δεν μπορέσαμε να στείλουμε το email σας."
233
 
234
- #: contact_form.php:452
235
  msgid "You can attach files of the following types"
236
  msgstr "Μπορείτε να επισυνάψετε αρχεία τύπου"
237
 
238
- #: contact_form.php:460
239
  msgid "Send me a copy"
240
  msgstr "Στείλε μου ένα αντίγραφο"
241
 
242
- #: contact_form.php:470
243
  msgid "Submit"
244
  msgstr "Υποβολή"
245
 
246
- #: contact_form.php:486
247
  msgid "Your name is required."
248
  msgstr "Γράψτε οπωσδήποτε το όνομά σας."
249
 
250
- #: contact_form.php:487
251
  msgid "A proper e-mail address is required."
252
  msgstr "Απαιτείται μια έγκυρη διεύθυνση e-mail."
253
 
254
- #: contact_form.php:488
255
  msgid "Subject text is required."
256
  msgstr "Γράψτε οπωσδήποτε ένα θέμα"
257
 
258
- #: contact_form.php:489
259
  msgid "Message text is required."
260
  msgstr "Απαιτείται κείμενο μηνύματος."
261
 
262
- #: contact_form.php:490
263
  msgid "Please make corrections below and try again."
264
  msgstr "Κάνετε διορθώσεις παρακάτω και ξαναπροσπαθήστε."
265
 
266
- #: contact_form.php:521
267
  msgid "Attachment is broken."
268
  msgstr "Το επισυναπτόμενο δεν λειτουργεί."
269
 
270
- #: contact_form.php:534
271
  msgid "Please complete the CAPTCHA."
272
  msgstr "Συμπληρώστε το CAPTCHA."
273
 
274
- #: contact_form.php:644
275
  msgid "Contact from"
276
  msgstr "Επικοινωνία από"
277
 
278
- #: contact_form.php:649
279
  msgid "Name"
280
  msgstr "Όνομα"
281
 
282
- #: contact_form.php:652
283
  msgid "Email"
284
  msgstr "E-Mail"
285
 
286
- #: contact_form.php:655
287
  msgid "Subject"
288
  msgstr "Θέμα"
289
 
290
- #: contact_form.php:658
291
  msgid "Message"
292
  msgstr "Μήνυμα"
293
 
294
- #: contact_form.php:661
295
  msgid "Site"
296
  msgstr "Ιστοσελίδα"
297
 
298
- #: contact_form.php:706
299
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
300
  msgstr "Wenn Sie dieses MIME sehen, unterstützt Ihr Client keine MIME-Typen!"
301
 
302
- #: contact_form.php:760
303
  msgid "FAQ"
304
  msgstr "Συχνές ερωτήσεις"
305
 
306
- #: contact_form.php:761
307
  msgid "Support"
308
  msgstr "Υποστήριξη"
309
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-27 17:41+0300\n"
6
+ "PO-Revision-Date: 2012-06-27 17:41+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
 
59
  msgstr "Αν έχετε απορίες, επικοινωνήστε στο plugin@bestwebsoft.com ή μέσω της φόρμας επικοινωνίας της ιστοσελίδας μας"
60
 
61
  #: contact_form.php:108
62
+ #: contact_form.php:262
63
  msgid "Contact Form Options"
64
  msgstr "Επιλογές φόρμας επικοινωνίας"
65
 
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 "Διεύθυνση 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
  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 "Τα μηνύματα θα στέλνονται στο email του χρήστη:"
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 "Τα μηνύματα θα στέλνονται στο email "
151
 
152
+ #: contact_form.php:293
153
  msgid "Set an email address which will be used for messages receiving."
154
  msgstr "Ορίστε την διεύθυνση email στην οποία θα αποστέλλονται τα μηνύματα."
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 ""
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 ""
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 "Προβολή πρόσθετων πληροφοριών στο 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
 
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 "Δυστυχώς δεν μπορέσαμε να στείλουμε το 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-06-18 13:16+0300\n"
6
- "PO-Revision-Date: 2012-06-18 13:16+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:750
32
- #: contact_form.php:759
33
  msgid "Settings"
34
  msgstr "Configuración"
35
 
@@ -59,7 +59,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
59
  msgstr "Si tiene alguna pregunta, por favor contactenos via plugin@bestwebsoft.com o use el formulario de contacto de nuestra web"
60
 
61
  #: contact_form.php:108
62
- #: contact_form.php:242
63
  msgid "Contact Form Options"
64
  msgstr "Opciones Contact Form"
65
 
@@ -68,242 +68,269 @@ msgid "Contact Form"
68
  msgstr "Contact Form"
69
 
70
  #: contact_form.php:136
71
- #: contact_form.php:177
72
- #: contact_form.php:210
73
- #: contact_form.php:346
74
  msgid "Name:"
75
  msgstr "Nombre:"
76
 
77
  #: contact_form.php:137
78
- #: contact_form.php:178
79
- #: contact_form.php:211
80
- #: contact_form.php:347
81
  msgid "E-Mail Address:"
82
  msgstr "Dirección e-mail:"
83
 
84
  #: contact_form.php:138
85
- #: contact_form.php:179
86
- #: contact_form.php:212
87
- #: contact_form.php:348
88
  msgid "Subject:"
89
  msgstr "Asunto:"
90
 
91
  #: contact_form.php:139
92
- #: contact_form.php:180
93
- #: contact_form.php:213
94
- #: contact_form.php:349
95
  msgid "Message:"
96
  msgstr "Mensaje:"
97
 
98
  #: contact_form.php:140
99
- #: contact_form.php:181
100
- #: contact_form.php:214
101
- #: contact_form.php:350
102
  msgid "Attachment:"
103
  msgstr "Adjunto:"
104
 
105
- #: contact_form.php:222
106
- #: contact_form.php:231
 
 
 
 
 
 
 
 
 
 
107
  msgid "Options saved."
108
  msgstr "Configuración guardada."
109
 
110
- #: contact_form.php:225
111
  msgid "Such user is not exist. Settings are not saved."
112
  msgstr "Usuario inexistente. Los cambios no se han guardado."
113
 
114
- #: contact_form.php:234
115
  msgid "Please input correct email. Settings are not saved."
116
  msgstr "Por favor introduzca un e-mail correcto. Los cambios no se han guardado."
117
 
118
- #: contact_form.php:247
119
  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:"
120
  msgstr "Si quiere añadir Contact Form en su web, copie y pegue este código en su mensaje o página o widget:"
121
 
122
- #: contact_form.php:248
123
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
124
  msgstr "Si la información en este campo está vacia, se usará la dirección especificada en el registro."
125
 
126
- #: contact_form.php:252
127
  msgid "Use email of wordpress user:"
128
  msgstr "Use el email del usuario de Wordpress:"
129
 
130
- #: contact_form.php:258
131
  msgid "Select user name"
132
  msgstr "Seleccione nombre de usuario"
133
 
134
- #: contact_form.php:263
135
  msgid "Set a name of user who will get messages from a contact form."
136
  msgstr "Introduzca el nombre del usuario que va a recibir mensajes desde contact form"
137
 
138
- #: contact_form.php:267
139
  msgid "Use this email:"
140
  msgstr "Use este emaill:"
141
 
142
- #: contact_form.php:273
143
  msgid "Set an email address which will be used for messages receiving."
144
  msgstr "Establecer una dirección de correo electrónico que se utiliza para los mensajes que reciben."
145
 
146
- #: contact_form.php:277
147
  msgid "Additional options"
148
  msgstr "Opciones adicionales"
149
 
150
- #: contact_form.php:280
151
  msgid "Display Attachment block"
152
  msgstr "Visualiza el adjunto"
153
 
154
- #: contact_form.php:285
155
  msgid "Users can attach files of the following types"
156
  msgstr "Usuarios pueden adjuntar archivos de este tipo"
157
 
158
- #: contact_form.php:289
159
  msgid "Display Attachment explanations"
160
  msgstr ""
161
 
162
- #: contact_form.php:294
163
  msgid "Display explanations after Attachment block"
164
  msgstr ""
165
 
166
- #: contact_form.php:298
167
  msgid "Display Send me a copy block"
168
  msgstr "Ver envíame una copia"
169
 
170
- #: contact_form.php:304
171
  msgid "What use?"
172
  msgstr ""
173
 
174
- #: contact_form.php:309
175
  msgid "Wp-mail"
176
  msgstr "Wp-mail"
177
 
178
- #: contact_form.php:310
179
  msgid "To send mail you can use the wordpress wp_mail function"
180
  msgstr ""
181
 
182
- #: contact_form.php:318
183
  msgid "Mail"
184
  msgstr "Mail"
185
 
186
- #: contact_form.php:319
187
  msgid "To send mail you can use the php mail function"
188
  msgstr ""
189
 
190
- #: contact_form.php:323
191
  msgid "Change FROM fields of the contact form"
192
  msgstr "Modifica DE los campos en contact form"
193
 
194
- #: contact_form.php:329
195
  msgid "Display additional info in email"
196
  msgstr ""
197
 
198
- #: contact_form.php:334
199
- #: contact_form.php:621
200
  msgid "Sent from (ip address)"
201
  msgstr "Enviado desde (dirección IP)"
202
 
203
- #: contact_form.php:335
204
- #: contact_form.php:626
205
  msgid "Date/Time"
206
  msgstr "Fecha/hora"
207
 
208
- #: contact_form.php:336
209
- #: contact_form.php:631
210
  msgid "Coming from (referer)"
211
  msgstr "De (referente)"
212
 
213
- #: contact_form.php:337
214
- #: contact_form.php:636
215
  msgid "Using (user agent)"
216
  msgstr "Usando (user agent)"
217
 
218
- #: contact_form.php:341
219
  msgid "Change label for fields of the contact form"
220
  msgstr "Modifica las etiquetas de los campos en contact form"
221
 
222
- #: contact_form.php:356
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
223
  msgid "Save Changes"
224
  msgstr "Guardar los cambios"
225
 
226
- #: contact_form.php:389
227
- msgid "Thank you for contacting us."
228
- msgstr "Gracias por contactar con nosotros"
229
-
230
- #: contact_form.php:394
231
  msgid "Sorry, your e-mail could not be delivered."
232
  msgstr "Disculpe, su email no se puede entregar."
233
 
234
- #: contact_form.php:452
235
  msgid "You can attach files of the following types"
236
  msgstr "Puede adjuntar archivos de estos tipos"
237
 
238
- #: contact_form.php:460
239
  msgid "Send me a copy"
240
  msgstr "Envíame una copia"
241
 
242
- #: contact_form.php:470
243
  msgid "Submit"
244
  msgstr "Enviar"
245
 
246
- #: contact_form.php:486
247
  msgid "Your name is required."
248
  msgstr "Su nombre es obligatorio."
249
 
250
- #: contact_form.php:487
251
  msgid "A proper e-mail address is required."
252
  msgstr "Una dirección válida es obligatoria."
253
 
254
- #: contact_form.php:488
255
  msgid "Subject text is required."
256
  msgstr "El asunto es obligatorio."
257
 
258
- #: contact_form.php:489
259
  msgid "Message text is required."
260
  msgstr "El mensaje es obligatorio."
261
 
262
- #: contact_form.php:490
263
  msgid "Please make corrections below and try again."
264
  msgstr "Por favor, corrija los datos y pruebe de nuevo."
265
 
266
- #: contact_form.php:521
267
  msgid "Attachment is broken."
268
  msgstr "El adjunto es incorrecto."
269
 
270
- #: contact_form.php:534
271
  msgid "Please complete the CAPTCHA."
272
  msgstr "Por favor completa el CAPTCHA"
273
 
274
- #: contact_form.php:644
275
  msgid "Contact from"
276
  msgstr "Contact from"
277
 
278
- #: contact_form.php:649
279
  msgid "Name"
280
  msgstr "Nombre"
281
 
282
- #: contact_form.php:652
283
  msgid "Email"
284
  msgstr "E-mail"
285
 
286
- #: contact_form.php:655
287
  msgid "Subject"
288
  msgstr "Asunto"
289
 
290
- #: contact_form.php:658
291
  msgid "Message"
292
  msgstr "Mensaje"
293
 
294
- #: contact_form.php:661
295
  msgid "Site"
296
  msgstr "Sitio"
297
 
298
- #: contact_form.php:706
299
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
300
  msgstr "Si usted puede ver esta MIME es que su cliente no acepta los tipos MIME!"
301
 
302
- #: contact_form.php:760
303
  msgid "FAQ"
304
  msgstr "FAQ"
305
 
306
- #: contact_form.php:761
307
  msgid "Support"
308
  msgstr "Soporte"
309
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-27 17:41+0300\n"
6
+ "PO-Revision-Date: 2012-06-27 17:41+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
 
59
  msgstr "Si tiene alguna pregunta, por favor contactenos via plugin@bestwebsoft.com o use el formulario de contacto de nuestra web"
60
 
61
  #: contact_form.php:108
62
+ #: contact_form.php:262
63
  msgid "Contact Form Options"
64
  msgstr "Opciones Contact Form"
65
 
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 "Nombre:"
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 "Dirección 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 "Asunto:"
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 "Mensaje:"
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 "Adjunto:"
104
 
105
+ #: contact_form.php:142
106
+ #: contact_form.php:186
107
+ msgid "Thank you for contacting us."
108
+ msgstr "Gracias por contactar con nosotros"
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 "Configuración guardada."
119
 
120
+ #: contact_form.php:245
121
  msgid "Such user is not exist. Settings are not saved."
122
  msgstr "Usuario inexistente. Los cambios no se han guardado."
123
 
124
+ #: contact_form.php:254
125
  msgid "Please input correct email. Settings are not saved."
126
  msgstr "Por favor introduzca un e-mail correcto. Los cambios no se han guardado."
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 "Si quiere añadir Contact Form en su web, copie y pegue este código en su mensaje o página o widget:"
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 "Si la información en este campo está vacia, se usará la dirección especificada en el registro."
135
 
136
+ #: contact_form.php:272
137
  msgid "Use email of wordpress user:"
138
  msgstr "Use el email del usuario de Wordpress:"
139
 
140
+ #: contact_form.php:278
141
  msgid "Select user name"
142
  msgstr "Seleccione nombre de usuario"
143
 
144
+ #: contact_form.php:283
145
  msgid "Set a name of user who will get messages from a contact form."
146
  msgstr "Introduzca el nombre del usuario que va a recibir mensajes desde contact form"
147
 
148
+ #: contact_form.php:287
149
  msgid "Use this email:"
150
  msgstr "Use este emaill:"
151
 
152
+ #: contact_form.php:293
153
  msgid "Set an email address which will be used for messages receiving."
154
  msgstr "Establecer una dirección de correo electrónico que se utiliza para los mensajes que reciben."
155
 
156
+ #: contact_form.php:297
157
  msgid "Additional options"
158
  msgstr "Opciones adicionales"
159
 
160
+ #: contact_form.php:300
161
  msgid "Display Attachment block"
162
  msgstr "Visualiza el adjunto"
163
 
164
+ #: contact_form.php:305
165
  msgid "Users can attach files of the following types"
166
  msgstr "Usuarios pueden adjuntar archivos de este tipo"
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 "Ver envíame una copia"
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 ""
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 ""
199
 
200
+ #: contact_form.php:343
201
  msgid "Change FROM fields of the contact form"
202
  msgstr "Modifica DE los campos en contact form"
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 "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
 
228
+ #: contact_form.php:361
229
  msgid "Change label for fields of the contact form"
230
  msgstr "Modifica las etiquetas de los campos en contact form"
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 "Visualiza el adjunto"
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 "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-06-18 13:16+0300\n"
6
- "PO-Revision-Date: 2012-06-18 13:16+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: \n"
@@ -13,304 +13,1297 @@ msgstr ""
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-Language: French\n"
16
- "X-Poedit-Country: FINLAND\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 "Plugin activé"
23
 
24
- #: contact_form.php:78
25
- #: contact_form.php:86
26
- #: contact_form.php:94
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  msgid "Read more"
28
  msgstr "Lire la suite"
29
 
30
- #: contact_form.php:78
31
- #: contact_form.php:750
32
- #: contact_form.php:759
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  msgid "Settings"
34
  msgstr "Réglages"
35
 
36
- #: contact_form.php:84
 
 
 
 
 
 
 
 
 
 
 
37
  msgid "Installed plugins"
38
  msgstr "Plugin installé"
39
 
40
- #: contact_form.php:92
 
 
 
 
 
 
 
 
 
 
 
41
  msgid "Recommended plugins"
42
  msgstr "Plugin recommandé"
43
 
44
- #: contact_form.php:94
 
 
 
 
 
 
 
 
 
 
 
45
  msgid "Download"
46
  msgstr "Téléchargement"
47
 
48
- #: contact_form.php:94
 
 
 
 
 
 
 
 
 
 
 
 
49
  #, php-format
50
  msgid "Install %s"
51
  msgstr "%s installé"
52
 
53
- #: contact_form.php:94
 
 
 
 
 
 
 
 
 
 
54
  msgid "Install now from wordpress.org"
55
  msgstr "Installer maintenant depuis 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 "Si vous avez des questions, merci de contacter plugin@bestwebsoft.com ou d'utilisez le formulaire de contact \"contact form\" sur notre site"
60
 
61
- #: contact_form.php:108
62
- #: contact_form.php:242
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
63
  msgid "Contact Form Options"
64
  msgstr "Options du Formulaire de Contact"
65
 
66
- #: contact_form.php:108
 
 
 
 
 
 
 
 
 
 
 
67
  msgid "Contact Form"
68
  msgstr "Formulaire de Contact"
69
 
70
- #: contact_form.php:136
71
- #: contact_form.php:177
72
- #: contact_form.php:210
73
- #: contact_form.php:346
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
74
  msgid "Name:"
75
  msgstr "Nom:"
76
 
77
- #: contact_form.php:137
78
- #: contact_form.php:178
79
- #: contact_form.php:211
80
- #: contact_form.php:347
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
81
  msgid "E-Mail Address:"
82
  msgstr "Adresse e-mail:"
83
 
84
- #: contact_form.php:138
85
- #: contact_form.php:179
86
- #: contact_form.php:212
87
- #: contact_form.php:348
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
  msgid "Subject:"
89
  msgstr "Sujet:"
90
 
91
- #: contact_form.php:139
92
- #: contact_form.php:180
93
- #: contact_form.php:213
94
- #: contact_form.php:349
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
95
  msgid "Message:"
96
  msgstr "Message:"
97
 
98
- #: contact_form.php:140
99
- #: contact_form.php:181
100
- #: contact_form.php:214
101
- #: contact_form.php:350
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
102
  msgid "Attachment:"
103
  msgstr "Pièce-jointe:"
104
 
105
- #: contact_form.php:222
106
- #: contact_form.php:231
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
107
  msgid "Options saved."
108
  msgstr "Options sauvegardées."
109
 
110
- #: contact_form.php:225
 
 
 
 
 
 
 
 
 
 
 
111
  msgid "Such user is not exist. Settings are not saved."
112
  msgstr "Cet utilisateur est inconnu. Les modifications ne sont pas sauvegardées."
113
 
114
- #: contact_form.php:234
 
 
 
 
 
 
 
 
 
 
 
115
  msgid "Please input correct email. Settings are not saved."
116
  msgstr "Merci de saisir une adresse e-mail valide. Les modifications ne sont pas sauvegardées."
117
 
118
- #: contact_form.php:247
 
 
 
 
 
 
119
  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:"
120
  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:"
121
 
122
- #: contact_form.php:248
 
 
 
 
 
 
 
 
 
 
 
123
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
124
  msgstr "Si les champs ci-dessous ne sont pas renseignés le message sera envoyé à l'adresse spécifiée lors de l'enregistrement."
125
 
126
- #: contact_form.php:252
 
 
 
 
 
 
 
 
 
 
 
127
  msgid "Use email of wordpress user:"
128
  msgstr "Utiliser l'e-mail du compte wordpress:"
129
 
130
- #: contact_form.php:258
 
 
 
 
 
 
 
 
 
 
131
  msgid "Select user name"
132
  msgstr "Choisir un nom d'utilisateur"
133
 
134
- #: contact_form.php:263
 
 
 
 
 
 
 
 
135
  msgid "Set a name of user who will get messages from a contact form."
136
  msgstr "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le formulaire de contact."
137
 
138
- #: contact_form.php:267
 
 
 
 
 
 
 
 
 
 
 
139
  msgid "Use this email:"
140
  msgstr "Utiliser cette adresse e-mail:"
141
 
142
- #: contact_form.php:273
 
 
 
 
 
 
 
 
 
 
 
143
  msgid "Set an email address which will be used for messages receiving."
144
  msgstr "Choisir l'adresse e-mail qui sera utilisée pour recevoir les messages."
145
 
146
- #: contact_form.php:277
 
 
 
 
 
 
 
 
 
 
 
147
  msgid "Additional options"
148
  msgstr "Options supplémentaires"
149
 
150
- #: contact_form.php:280
 
 
 
 
 
 
 
 
 
 
 
151
  msgid "Display Attachment block"
152
- msgstr "Afficher le bloc Pièce-Jointe"
153
-
154
- #: contact_form.php:285
 
 
 
 
 
 
 
 
 
 
155
  msgid "Users can attach files of the following types"
156
  msgstr "Les utilisateurs peuvent joindre des documents des types suivants"
157
 
158
- #: contact_form.php:289
159
- msgid "Display Attachment explanations"
160
- msgstr ""
161
-
162
- #: contact_form.php:294
163
- msgid "Display explanations after Attachment block"
164
- msgstr ""
165
-
166
- #: contact_form.php:298
 
 
 
167
  msgid "Display Send me a copy block"
168
  msgstr "Afficher \"M'envoyer une copie\" "
169
 
170
- #: contact_form.php:304
171
- msgid "What use?"
172
- msgstr ""
173
-
174
- #: contact_form.php:309
175
- msgid "Wp-mail"
176
- msgstr "Wp-mail"
177
-
178
- #: contact_form.php:310
179
- msgid "To send mail you can use the wordpress wp_mail function"
180
- msgstr ""
181
-
182
- #: contact_form.php:318
183
- msgid "Mail"
184
- msgstr "Mail"
185
-
186
- #: contact_form.php:319
187
- msgid "To send mail you can use the php mail function"
188
- msgstr ""
189
-
190
- #: contact_form.php:323
191
- msgid "Change FROM fields of the contact form"
192
- msgstr "Modifier DE champs du formulaire de contact"
193
-
194
- #: contact_form.php:329
195
- msgid "Display additional info in email"
196
- msgstr ""
197
-
198
- #: contact_form.php:334
199
- #: contact_form.php:621
200
- msgid "Sent from (ip address)"
201
- msgstr "Envoyé de (adresse IP)"
202
-
203
- #: contact_form.php:335
204
- #: contact_form.php:626
205
- msgid "Date/Time"
206
- msgstr "Date/Heure"
207
-
208
- #: contact_form.php:336
209
- #: contact_form.php:631
210
- msgid "Coming from (referer)"
211
- msgstr "Envoyer de (référence)"
212
-
213
- #: contact_form.php:337
214
- #: contact_form.php:636
215
- msgid "Using (user agent)"
216
- msgstr "Depuis (navigateur)"
217
-
218
- #: contact_form.php:341
219
  msgid "Change label for fields of the contact form"
220
  msgstr "Modifier le nom des champs du formulaire de contact"
221
 
222
- #: contact_form.php:356
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
223
  msgid "Save Changes"
224
  msgstr "Sauvegarder les modifications"
225
 
226
- #: contact_form.php:389
 
 
 
 
 
 
 
 
 
 
 
 
227
  msgid "Thank you for contacting us."
228
  msgstr "Merci de nous avoir contacté."
229
 
230
- #: contact_form.php:394
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
231
  msgid "Sorry, your e-mail could not be delivered."
232
  msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
233
 
234
- #: contact_form.php:452
 
 
 
 
 
 
 
 
 
 
235
  msgid "You can attach files of the following types"
236
  msgstr "Vous pouvez joindre des fichiers aux formats suivants"
237
 
238
- #: contact_form.php:460
 
 
 
 
 
 
 
 
 
 
 
239
  msgid "Send me a copy"
240
  msgstr "M'envoyer une copie"
241
 
242
- #: contact_form.php:470
 
 
 
 
 
 
 
 
 
 
 
243
  msgid "Submit"
244
  msgstr "Envoyer"
245
 
246
- #: contact_form.php:486
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
247
  msgid "Your name is required."
248
  msgstr "Un nom est obligatoire."
249
 
250
- #: contact_form.php:487
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
251
  msgid "A proper e-mail address is required."
252
  msgstr "Une adresse e-mail valide est obligatoire."
253
 
254
- #: contact_form.php:488
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
255
  msgid "Subject text is required."
256
  msgstr "Sujet obligatoire."
257
 
258
- #: contact_form.php:489
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
259
  msgid "Message text is required."
260
  msgstr "Un message est obligatoire."
261
 
262
- #: contact_form.php:490
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
263
  msgid "Please make corrections below and try again."
264
  msgstr "Merci de faire les corrections suivantes et de réessayer."
265
 
266
- #: contact_form.php:521
 
 
 
 
 
 
 
 
 
 
 
267
  msgid "Attachment is broken."
268
  msgstr "La pièce-jointe n'est pas valide."
269
 
270
- #: contact_form.php:534
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
271
  msgid "Please complete the CAPTCHA."
272
  msgstr "Merci de compléter le CAPTCHA."
273
 
274
- #: contact_form.php:644
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
275
  msgid "Contact from"
276
  msgstr "Contact de"
277
 
278
- #: contact_form.php:649
 
 
 
 
 
 
 
 
 
 
 
279
  msgid "Name"
280
  msgstr "Nom"
281
 
282
- #: contact_form.php:652
 
 
 
 
 
 
 
 
 
 
 
283
  msgid "Email"
284
- msgstr "e-mail"
285
-
286
- #: contact_form.php:655
 
 
 
 
 
 
 
 
 
 
 
287
  msgid "Subject"
288
  msgstr "Sujet"
289
 
290
- #: contact_form.php:658
 
 
 
 
 
 
 
 
 
 
 
291
  msgid "Message"
292
  msgstr "Message"
293
 
294
- #: contact_form.php:661
 
 
 
 
 
 
 
 
 
 
 
295
  msgid "Site"
296
  msgstr "Site"
297
 
298
- #: contact_form.php:706
299
- msgid "If you can see this MIME than your client doesn't accept MIME types!"
300
- msgstr "Si vous voyez ce MIME c'est que votre navigateur n'accepte pas ce type de MIME !"
301
-
302
- #: contact_form.php:760
 
 
 
 
 
 
 
 
 
 
303
  msgid "FAQ"
304
  msgstr "FAQ"
305
 
306
- #: contact_form.php:761
 
 
 
 
 
 
 
 
 
 
 
 
 
 
307
  msgid "Support"
308
  msgstr "Support"
309
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
310
  #~ msgid "E-Mail Addresse:"
311
  #~ msgstr "Indirizzo e-mail:"
312
- #~ msgid "Install Now"
313
- #~ msgstr "Installa Ora"
314
- #~ msgid "BWS Plugins"
315
- #~ msgstr "BWS Plugins"
316
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-27 17:40+0300\n"
6
+ "PO-Revision-Date: 2012-06-27 17:40+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: \n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
  "X-Poedit-Language: French\n"
16
+ "X-Poedit-Country: FRANCE\n"
17
  "X-Poedit-SourceCharset: utf-8\n"
18
+ "Plural-Forms: nplurals=2;plural=n>2\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
+ #: tags/3.12/contact_form.php:76
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
+ #: tags/3.12/contact_form.php:78
37
+ #: tags/3.12/contact_form.php:86
38
+ #: tags/3.12/contact_form.php:94
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
+ #: tags/3.12/contact_form.php:78
76
+ #: tags/3.12/contact_form.php:603
77
+ #: tags/3.12/contact_form.php:612
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
+ #: tags/3.12/contact_form.php:84
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
+ #: tags/3.12/contact_form.php:92
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
+ #: tags/3.12/contact_form.php:94
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
+ #: tags/3.12/contact_form.php:94
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
+ #: tags/3.12/contact_form.php:94
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
+ #: tags/3.12/contact_form.php:96
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
+ #: tags/3.12/contact_form.php:108
212
+ #: tags/3.12/contact_form.php:211
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
+ #: tags/3.12/contact_form.php:108
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
+ #: tags/3.12/contact_form.php:128
254
+ #: tags/3.12/contact_form.php:162
255
+ #: tags/3.12/contact_form.php:179
256
+ #: tags/3.12/contact_form.php:269
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
+ #: tags/3.12/contact_form.php:129
302
+ #: tags/3.12/contact_form.php:163
303
+ #: tags/3.12/contact_form.php:180
304
+ #: tags/3.12/contact_form.php:270
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
+ #: tags/3.12/contact_form.php:130
350
+ #: tags/3.12/contact_form.php:164
351
+ #: tags/3.12/contact_form.php:181
352
+ #: tags/3.12/contact_form.php:271
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
+ #: tags/3.12/contact_form.php:131
398
+ #: tags/3.12/contact_form.php:165
399
+ #: tags/3.12/contact_form.php:182
400
+ #: tags/3.12/contact_form.php:272
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
+ #: tags/3.12/contact_form.php:132
446
+ #: tags/3.12/contact_form.php:166
447
+ #: tags/3.12/contact_form.php:183
448
+ #: tags/3.12/contact_form.php:273
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
+ #: tags/3.12/contact_form.php:191
494
+ #: tags/3.12/contact_form.php:200
495
+ #: tags/3.13/contact_form.php:191
496
+ #: tags/3.13/contact_form.php:200
497
+ #: tags/3.07/contact_form.php:193
498
+ #: tags/3.07/contact_form.php:202
499
+ #: tags/3.15/contact_form.php:216
500
+ #: tags/3.15/contact_form.php:225
501
+ #: tags/3.19/contact_form.php:222
502
+ #: tags/3.19/contact_form.php:227
503
+ #: tags/3.19/contact_form.php:237
504
+ #: tags/3.14/contact_form.php:193
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
+ #: tags/3.12/contact_form.php:194
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
+ #: tags/3.12/contact_form.php:203
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
+ #: tags/3.12/contact_form.php:216
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
+ #: tags/3.12/contact_form.php:217
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
+ #: tags/3.12/contact_form.php:221
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
+ #: tags/3.12/contact_form.php:227
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
+ #: tags/3.12/contact_form.php:232
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
+ #: tags/3.12/contact_form.php:236
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
+ #: tags/3.12/contact_form.php:242
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
+ #: tags/3.12/contact_form.php:246
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
+ #: tags/3.12/contact_form.php:249
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
+ #: tags/3.12/contact_form.php:254
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
+ #: tags/3.12/contact_form.php:258
692
+ #: tags/3.13/contact_form.php:258
693
+ #: tags/3.07/contact_form.php:260
694
+ #: tags/3.15/contact_form.php:283
695
+ #: tags/3.19/contact_form.php:304
696
+ #: tags/3.14/contact_form.php:260
697
+ #: tags/3.17/contact_form.php:286
698
+ #: tags/3.06/contact_form.php:260
699
+ #: tags/3.04/contact_form.php:260
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
+ #: tags/3.12/contact_form.php:264
707
+ #: tags/3.13/contact_form.php:264
708
+ #: tags/3.07/contact_form.php:266
709
+ #: tags/3.15/contact_form.php:307
710
+ #: tags/3.19/contact_form.php:347
711
+ #: tags/3.14/contact_form.php:272
712
+ #: tags/3.17/contact_form.php:329
713
+ #: tags/3.06/contact_form.php:266
714
+ #: tags/3.04/contact_form.php:266
715
+ #: tags/3.05/contact_form.php:266
716
+ #: tags/3.16/contact_form.php:307
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
717
  msgid "Change label for fields of the contact form"
718
  msgstr "Modifier le nom des champs du formulaire de contact"
719
 
720
+ #: tags/3.12/contact_form.php:279
721
+ #: tags/3.13/contact_form.php:279
722
+ #: tags/3.07/contact_form.php:281
723
+ #: tags/2011.2.08/contact_form.php:231
724
+ #: tags/3.15/contact_form.php:322
725
+ #: tags/3.19/contact_form.php:362
726
+ #: tags/3.14/contact_form.php:287
727
+ #: tags/3.17/contact_form.php:344
728
+ #: tags/3.06/contact_form.php:281
729
+ #: tags/2011.2.04/contact_form.php:212
730
+ #: tags/3.04/contact_form.php:281
731
+ #: tags/2011.05.26/contact_form.php:130
732
+ #: tags/2011.2.03/contact_form.php:170
733
+ #: tags/3.05/contact_form.php:281
734
+ #: tags/2011.3.01/contact_form.php:229
735
+ #: tags/3.16/contact_form.php:322
736
  msgid "Save Changes"
737
  msgstr "Sauvegarder les modifications"
738
 
739
+ #: tags/3.12/contact_form.php:310
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
+ #: tags/3.12/contact_form.php:372
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
+ #: tags/3.12/contact_form.php:378
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
+ #: tags/3.12/contact_form.php:388
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
+ #: tags/3.12/contact_form.php:404
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
+ #: tags/3.12/contact_form.php:405
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
+ #: tags/3.12/contact_form.php:406
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
+ #: tags/3.12/contact_form.php:407
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
+ #: tags/3.12/contact_form.php:408
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
+ #: tags/3.12/contact_form.php:439
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
+ #: tags/3.12/contact_form.php:452
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
+ #: tags/3.12/contact_form.php:528
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
+ #: tags/3.12/contact_form.php:541
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
+ #: tags/3.12/contact_form.php:544
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
+ #: tags/3.12/contact_form.php:547
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
+ #: tags/3.12/contact_form.php:550
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
+ #: tags/3.12/contact_form.php:553
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
+ #: tags/3.12/contact_form.php:613
1154
+ #: tags/3.13/contact_form.php:613
1155
+ #: tags/3.07/contact_form.php:630
1156
+ #: tags/2011.2.08/contact_form.php:470
1157
+ #: tags/3.15/contact_form.php:670
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
+ #: tags/3.12/contact_form.php:614
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 "Thank you for contact."
1273
+ msgstr "Merci de nous avoir contacté."
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 "Set a name of user wo will get messages from a contact form."
1280
+ msgstr "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le formulaire de contact."
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 "Display text"
1293
+ msgstr "Afficher le bloc pièce-jointe"
1294
+
1295
+ #: trunk/contact_form.php:377
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
 
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-06-18 13:15+0300\n"
6
- "PO-Revision-Date: 2012-06-18 13:15+0300\n"
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:750
32
- #: contact_form.php:759
33
  msgid "Settings"
34
  msgstr "सेटिंग्स"
35
 
@@ -59,7 +59,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
59
  msgstr "यदि आप कोई प्रश्न हैं, हमें plugin@bestwebsoft.com के माध्यम से संपर्क करें या हमारी साइट पर हमारे संपर्क फार्म में भरें"
60
 
61
  #: contact_form.php:108
62
- #: contact_form.php:242
63
  msgid "Contact Form Options"
64
  msgstr "संपर्क प्रपत्र विकल्प"
65
 
@@ -68,242 +68,269 @@ msgid "Contact Form"
68
  msgstr "संपर्क प्रपत्र"
69
 
70
  #: contact_form.php:136
71
- #: contact_form.php:177
72
- #: contact_form.php:210
73
- #: contact_form.php:346
74
  msgid "Name:"
75
  msgstr "नाम:"
76
 
77
  #: contact_form.php:137
78
- #: contact_form.php:178
79
- #: contact_form.php:211
80
- #: contact_form.php:347
81
  msgid "E-Mail Address:"
82
  msgstr "ई - मेल पता:"
83
 
84
  #: contact_form.php:138
85
- #: contact_form.php:179
86
- #: contact_form.php:212
87
- #: contact_form.php:348
88
  msgid "Subject:"
89
  msgstr "विषय:"
90
 
91
  #: contact_form.php:139
92
- #: contact_form.php:180
93
- #: contact_form.php:213
94
- #: contact_form.php:349
95
  msgid "Message:"
96
  msgstr "संदेश:"
97
 
98
  #: contact_form.php:140
99
- #: contact_form.php:181
100
- #: contact_form.php:214
101
- #: contact_form.php:350
102
  msgid "Attachment:"
103
  msgstr "लगाव:"
104
 
105
- #: contact_form.php:222
106
- #: contact_form.php:231
 
 
 
 
 
 
 
 
 
 
107
  msgid "Options saved."
108
  msgstr "विकल्प बचाया."
109
 
110
- #: contact_form.php:225
111
  msgid "Such user is not exist. Settings are not saved."
112
  msgstr "इस तरह के उपयोगकर्ता मौजूद नहीं है. सेटिंग्स सहेजे नहीं जाते हैं."
113
 
114
- #: contact_form.php:234
115
  msgid "Please input correct email. Settings are not saved."
116
  msgstr "कृपया सही ईमेल इनपुट करे . सेटिंग्स सहेजे नहीं जाते हैं."
117
 
118
- #: contact_form.php:247
119
  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:"
120
  msgstr "यदि आप अपनी वेबसाइट पर एक संपर्क फ़ॉर्म को जोड़ना चाहते हैं, बस कॉपी और अपनी पोस्ट या पृष्ठ या विजेट पर यह लघुकोडः को रखा:"
121
 
122
- #: contact_form.php:248
123
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
124
  msgstr "यदि नीचे दी गई फ़ील्ड्स में जानकारी खाली रहे हैं तो जो पंजीकरण के दौरान निर्दिष्ट किया गया था एक पता करने के लिए संदेश भेजने के लिए किया जाएगा."
125
 
126
- #: contact_form.php:252
127
  msgid "Use email of wordpress user:"
128
  msgstr "WordPress के उपयोगकर्ता का ईमेल का उपयोग करें:"
129
 
130
- #: contact_form.php:258
131
  msgid "Select user name"
132
  msgstr "उपयोगकर्ता नाम का चयन करें"
133
 
134
- #: contact_form.php:263
135
  msgid "Set a name of user who will get messages from a contact form."
136
  msgstr "उपयोगकर्ता का नाम है जो एक संपर्क फ़ॉर्म से संदेश मिल जाएगा"
137
 
138
- #: contact_form.php:267
139
  msgid "Use this email:"
140
  msgstr "इस ईमेल का उपयोग करें:"
141
 
142
- #: contact_form.php:273
143
  msgid "Set an email address which will be used for messages receiving."
144
  msgstr "एक ईमेल पता है जो संदेश प्राप्त करने के लिए इस्तेमाल किया जाएगा "
145
 
146
- #: contact_form.php:277
147
  msgid "Additional options"
148
  msgstr "अतिरिक्त विकल्प"
149
 
150
- #: contact_form.php:280
151
  msgid "Display Attachment block"
152
  msgstr "अटैचमेंट ब्लॉक प्रदर्शित करें"
153
 
154
- #: contact_form.php:285
155
  msgid "Users can attach files of the following types"
156
  msgstr "उपयोगकर्ताओं को निम्नलिखित प्रकार की फ़ाइलों को संलग्न कर सकते हैं"
157
 
158
- #: contact_form.php:289
159
  msgid "Display Attachment explanations"
160
  msgstr ""
161
 
162
- #: contact_form.php:294
163
  msgid "Display explanations after Attachment block"
164
  msgstr ""
165
 
166
- #: contact_form.php:298
167
  msgid "Display Send me a copy block"
168
  msgstr "मुझे एक प्रति ब्लॉक भेजें प्रदर्शित करें"
169
 
170
- #: contact_form.php:304
171
  msgid "What use?"
172
  msgstr "किस का उपयोग करें?."
173
 
174
- #: contact_form.php:309
175
  msgid "Wp-mail"
176
  msgstr "Wp-mail"
177
 
178
- #: contact_form.php:310
179
  msgid "To send mail you can use the wordpress wp_mail function"
180
  msgstr "मेल भेजने के लिए आपको WordPress के wp_mail समारोह का उपयोग कर सकते हैं"
181
 
182
- #: contact_form.php:318
183
  msgid "Mail"
184
  msgstr "मेल"
185
 
186
- #: contact_form.php:319
187
  msgid "To send mail you can use the php mail function"
188
  msgstr "मेल भेजने के लिए आपको php मेल समारोह का उपयोग कर सकते हैं"
189
 
190
- #: contact_form.php:323
191
  msgid "Change FROM fields of the contact form"
192
  msgstr "संपर्क प्रपत्र की फ़ील्ड्स से बदलें"
193
 
194
- #: contact_form.php:329
195
  msgid "Display additional info in email"
196
  msgstr "ईमेल में अतिरिक्त जानकारी प्रदर्शित करें"
197
 
198
- #: contact_form.php:334
199
- #: contact_form.php:621
200
  msgid "Sent from (ip address)"
201
  msgstr "(आईपी पते से भेजा गया)"
202
 
203
- #: contact_form.php:335
204
- #: contact_form.php:626
205
  msgid "Date/Time"
206
  msgstr "दिनांक / समय"
207
 
208
- #: contact_form.php:336
209
- #: contact_form.php:631
210
  msgid "Coming from (referer)"
211
  msgstr "से आ रहा है (referer)"
212
 
213
- #: contact_form.php:337
214
- #: contact_form.php:636
215
  msgid "Using (user agent)"
216
  msgstr "उपयोग करना (प्रयोक्ता एजेंट)"
217
 
218
- #: contact_form.php:341
219
  msgid "Change label for fields of the contact form"
220
  msgstr "संपर्क प्रपत्र का फ़ील्ड्स के लिए लेबल बदलें"
221
 
222
- #: contact_form.php:356
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
223
  msgid "Save Changes"
224
  msgstr "परिवर्तन सहेजें"
225
 
226
- #: contact_form.php:389
227
- msgid "Thank you for contacting us."
228
- msgstr "हमसे संपर्क करने के लिए धन्यवाद.हमसे संपर्क करने के लिए धन्यवाद."
229
-
230
- #: contact_form.php:394
231
  msgid "Sorry, your e-mail could not be delivered."
232
  msgstr "क्षमा करें, आपका ई - मेल वितरित नहीं किया जा सकता है."
233
 
234
- #: contact_form.php:452
235
  msgid "You can attach files of the following types"
236
  msgstr "आप निम्न प्रकार का फ़ाइलों को संलग्न कर सकते हैं"
237
 
238
- #: contact_form.php:460
239
  msgid "Send me a copy"
240
  msgstr "मुझे एक प्रतिलिपि भेजें"
241
 
242
- #: contact_form.php:470
243
  msgid "Submit"
244
  msgstr "सबमिट"
245
 
246
- #: contact_form.php:486
247
  msgid "Your name is required."
248
  msgstr "आपका नाम की आवश्यकता है."
249
 
250
- #: contact_form.php:487
251
  msgid "A proper e-mail address is required."
252
  msgstr "एक उचित ई - मेल पते की आवश्यकता है."
253
 
254
- #: contact_form.php:488
255
  msgid "Subject text is required."
256
  msgstr "विषय पाठ की आवश्यकता होती है"
257
 
258
- #: contact_form.php:489
259
  msgid "Message text is required."
260
  msgstr "संदेश पाठ की आवश्यकता है."
261
 
262
- #: contact_form.php:490
263
  msgid "Please make corrections below and try again."
264
  msgstr "सुधार नीचे बनाने के लिए और फिर प्रयास करें"
265
 
266
- #: contact_form.php:521
267
  msgid "Attachment is broken."
268
  msgstr "अटैचमेंट टूटा ."
269
 
270
- #: contact_form.php:534
271
  msgid "Please complete the CAPTCHA."
272
  msgstr "कॅप्चा पूरा करें."
273
 
274
- #: contact_form.php:644
275
  msgid "Contact from"
276
  msgstr "संपर्क करें"
277
 
278
- #: contact_form.php:649
279
  msgid "Name"
280
  msgstr "नाम"
281
 
282
- #: contact_form.php:652
283
  msgid "Email"
284
  msgstr "ईमेल"
285
 
286
- #: contact_form.php:655
287
  msgid "Subject"
288
  msgstr "विषय"
289
 
290
- #: contact_form.php:658
291
  msgid "Message"
292
  msgstr "संदेश"
293
 
294
- #: contact_form.php:661
295
  msgid "Site"
296
  msgstr "साइट"
297
 
298
- #: contact_form.php:706
299
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
300
  msgstr "यदि आप अपने ग्राहक की तुलना में इस माइम देख सकते हैं MIME प्रकार स्वीकार नहीं करता है!"
301
 
302
- #: contact_form.php:760
303
  msgid "FAQ"
304
  msgstr "अक्सर पूछे जाने वाले प्रश्न"
305
 
306
- #: contact_form.php:761
307
  msgid "Support"
308
  msgstr "समर्थन"
309
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-27 17:41+0300\n"
6
+ "PO-Revision-Date: 2012-06-27 17:41+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: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
 
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 "WordPress के उपयोगकर्ता का ईमेल का उपयोग करें:"
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 "मेल भेजने के लिए आपको WordPress के wp_mail समारोह का उपयोग कर सकते हैं"
191
 
192
+ #: contact_form.php:338
193
  msgid "Mail"
194
  msgstr "मेल"
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 "(आईपी पते से भेजा गया)"
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 "उपयोग करना (प्रयोक्ता एजेंट)"
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 प्रकार स्वीकार नहीं करता है!"
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-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-06-18 13:16+0300\n"
6
- "PO-Revision-Date: 2012-06-18 13:16+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 "Leggi"
29
 
30
  #: contact_form.php:78
31
- #: contact_form.php:750
32
- #: contact_form.php:759
33
  msgid "Settings"
34
  msgstr "Settaggi"
35
 
@@ -59,7 +59,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
59
  msgstr "Se hai domande, per favore contattaci a plugin@bestwebsoft.com o compila il modulo \"contact form\" sul nostro sito"
60
 
61
  #: contact_form.php:108
62
- #: contact_form.php:242
63
  msgid "Contact Form Options"
64
  msgstr "Opzioni Contact Form"
65
 
@@ -68,242 +68,269 @@ msgid "Contact Form"
68
  msgstr "Contact Form"
69
 
70
  #: contact_form.php:136
71
- #: contact_form.php:177
72
- #: contact_form.php:210
73
- #: contact_form.php:346
74
  msgid "Name:"
75
  msgstr "Nome:"
76
 
77
  #: contact_form.php:137
78
- #: contact_form.php:178
79
- #: contact_form.php:211
80
- #: contact_form.php:347
81
  msgid "E-Mail Address:"
82
  msgstr "Indirizzo e-mail:"
83
 
84
  #: contact_form.php:138
85
- #: contact_form.php:179
86
- #: contact_form.php:212
87
- #: contact_form.php:348
88
  msgid "Subject:"
89
  msgstr "Oggetto:"
90
 
91
  #: contact_form.php:139
92
- #: contact_form.php:180
93
- #: contact_form.php:213
94
- #: contact_form.php:349
95
  msgid "Message:"
96
  msgstr "Messaggio:"
97
 
98
  #: contact_form.php:140
99
- #: contact_form.php:181
100
- #: contact_form.php:214
101
- #: contact_form.php:350
102
  msgid "Attachment:"
103
  msgstr "Attachment:"
104
 
105
- #: contact_form.php:222
106
- #: contact_form.php:231
 
 
 
 
 
 
 
 
 
 
107
  msgid "Options saved."
108
  msgstr "Opzioni salvate."
109
 
110
- #: contact_form.php:225
111
  msgid "Such user is not exist. Settings are not saved."
112
  msgstr "L'utente indicato non esiste. Le opzioni non sono state salvate."
113
 
114
- #: contact_form.php:234
115
  msgid "Please input correct email. Settings are not saved."
116
  msgstr "Perfavore inserisci una e-mail corretta. Opzioni non salvate."
117
 
118
- #: contact_form.php:247
119
  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:"
120
  msgstr "Se vuoi aggiungere un Contact Form al tuo sito, copia e incolla questo shortcode nei tuoi post o nelle tue pagine o widget:"
121
 
122
- #: contact_form.php:248
123
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
124
  msgstr "Se le informazioni nei campi sottostanti sono vuote allora il messaggio sarà inviato ad un indirizzo che è stato specificato durante la fase di registrazione. "
125
 
126
- #: contact_form.php:252
127
  msgid "Use email of wordpress user:"
128
  msgstr "Utilizza l'e-mail dell'utente wordpress:"
129
 
130
- #: contact_form.php:258
131
  msgid "Select user name"
132
  msgstr "Seleziona nome utente"
133
 
134
- #: contact_form.php:263
135
  msgid "Set a name of user who will get messages from a contact form."
136
  msgstr "Imposta il nome dell'utente che riceverà i messaggi da un contact form."
137
 
138
- #: contact_form.php:267
139
  msgid "Use this email:"
140
  msgstr "Utilizza questa e-mail:"
141
 
142
- #: contact_form.php:273
143
  msgid "Set an email address which will be used for messages receiving."
144
  msgstr "Imposta una e-mail che verrà utilizzata per ricevere i messaggi."
145
 
146
- #: contact_form.php:277
147
  msgid "Additional options"
148
  msgstr "Impostazioni aggiuntive"
149
 
150
- #: contact_form.php:280
151
  msgid "Display Attachment block"
152
  msgstr "Visualizza l'attachment"
153
 
154
- #: contact_form.php:285
155
  msgid "Users can attach files of the following types"
156
  msgstr "Gli utenti possono allegare i files nei seguenti tipi"
157
 
158
- #: contact_form.php:289
159
  msgid "Display Attachment explanations"
160
  msgstr ""
161
 
162
- #: contact_form.php:294
163
  msgid "Display explanations after Attachment block"
164
  msgstr ""
165
 
166
- #: contact_form.php:298
167
  msgid "Display Send me a copy block"
168
  msgstr "Visualizza il blocco \"Inviami una copia\" "
169
 
170
- #: contact_form.php:304
171
  msgid "What use?"
172
  msgstr ""
173
 
174
- #: contact_form.php:309
175
  msgid "Wp-mail"
176
  msgstr "Wp-mail"
177
 
178
- #: contact_form.php:310
179
  msgid "To send mail you can use the wordpress wp_mail function"
180
  msgstr ""
181
 
182
- #: contact_form.php:318
183
  msgid "Mail"
184
  msgstr "Mail"
185
 
186
- #: contact_form.php:319
187
  msgid "To send mail you can use the php mail function"
188
  msgstr ""
189
 
190
- #: contact_form.php:323
191
  msgid "Change FROM fields of the contact form"
192
  msgstr "Modifica da campi del contact form"
193
 
194
- #: contact_form.php:329
195
  msgid "Display additional info in email"
196
  msgstr ""
197
 
198
- #: contact_form.php:334
199
- #: contact_form.php:621
200
  msgid "Sent from (ip address)"
201
  msgstr "Inviato da (indirizzi IP)"
202
 
203
- #: contact_form.php:335
204
- #: contact_form.php:626
205
  msgid "Date/Time"
206
  msgstr "Data/Ora"
207
 
208
- #: contact_form.php:336
209
- #: contact_form.php:631
210
  msgid "Coming from (referer)"
211
  msgstr "Da (referente)"
212
 
213
- #: contact_form.php:337
214
- #: contact_form.php:636
215
  msgid "Using (user agent)"
216
  msgstr "Utilizza (user agent)"
217
 
218
- #: contact_form.php:341
219
  msgid "Change label for fields of the contact form"
220
  msgstr "Modifica le etichette dei campi del contact form"
221
 
222
- #: contact_form.php:356
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
223
  msgid "Save Changes"
224
  msgstr "Salva le modifiche"
225
 
226
- #: contact_form.php:389
227
- msgid "Thank you for contacting us."
228
- msgstr "Grazie per averci contattato."
229
-
230
- #: contact_form.php:394
231
  msgid "Sorry, your e-mail could not be delivered."
232
  msgstr "Spiacenti, la tua e-mail non può essere consegnata al momento."
233
 
234
- #: contact_form.php:452
235
  msgid "You can attach files of the following types"
236
  msgstr "Gli utenti possono allegare i files nei seguenti tipi"
237
 
238
- #: contact_form.php:460
239
  msgid "Send me a copy"
240
  msgstr "Inviami una copia"
241
 
242
- #: contact_form.php:470
243
  msgid "Submit"
244
  msgstr "Invia"
245
 
246
- #: contact_form.php:486
247
  msgid "Your name is required."
248
  msgstr "Il nome è obbligatorio"
249
 
250
- #: contact_form.php:487
251
  msgid "A proper e-mail address is required."
252
  msgstr "È richiesto un indirizzo e-mail corretto"
253
 
254
- #: contact_form.php:488
255
  msgid "Subject text is required."
256
  msgstr "L'oggetto è obbligatorio"
257
 
258
- #: contact_form.php:489
259
  msgid "Message text is required."
260
  msgstr "Il campo messaggio è obbligatorio"
261
 
262
- #: contact_form.php:490
263
  msgid "Please make corrections below and try again."
264
  msgstr "Controlla i dati del modulo e riprova!"
265
 
266
- #: contact_form.php:521
267
  msgid "Attachment is broken."
268
  msgstr "L'attachment non è corretto"
269
 
270
- #: contact_form.php:534
271
  msgid "Please complete the CAPTCHA."
272
  msgstr "Completa il CAPTCHA"
273
 
274
- #: contact_form.php:644
275
  msgid "Contact from"
276
  msgstr "Contact from"
277
 
278
- #: contact_form.php:649
279
  msgid "Name"
280
  msgstr "Nome"
281
 
282
- #: contact_form.php:652
283
  msgid "Email"
284
  msgstr "e-mail"
285
 
286
- #: contact_form.php:655
287
  msgid "Subject"
288
  msgstr "Oggetto"
289
 
290
- #: contact_form.php:658
291
  msgid "Message"
292
  msgstr "Messaggio"
293
 
294
- #: contact_form.php:661
295
  msgid "Site"
296
  msgstr "Sito"
297
 
298
- #: contact_form.php:706
299
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
300
  msgstr "Se puoi visualizzare questo MIME il tuo client non supporta i MIME types!"
301
 
302
- #: contact_form.php:760
303
  msgid "FAQ"
304
  msgstr "FAQ"
305
 
306
- #: contact_form.php:761
307
  msgid "Support"
308
  msgstr "Supporto"
309
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-27 17:41+0300\n"
6
+ "PO-Revision-Date: 2012-06-27 17:41+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:802
32
+ #: contact_form.php:811
33
  msgid "Settings"
34
  msgstr "Settaggi"
35
 
59
  msgstr "Se hai domande, per favore contattaci a plugin@bestwebsoft.com o compila il modulo \"contact form\" sul nostro sito"
60
 
61
  #: contact_form.php:108
62
+ #: contact_form.php:262
63
  msgid "Contact Form Options"
64
  msgstr "Opzioni Contact Form"
65
 
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 "Nome:"
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 "Indirizzo 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 "Oggetto:"
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 "Messaggio:"
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 "Attachment:"
104
 
105
+ #: contact_form.php:142
106
+ #: contact_form.php:186
107
+ msgid "Thank you for contacting us."
108
+ msgstr "Grazie per averci contattato."
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 "Opzioni salvate."
119
 
120
+ #: contact_form.php:245
121
  msgid "Such user is not exist. Settings are not saved."
122
  msgstr "L'utente indicato non esiste. Le opzioni non sono state salvate."
123
 
124
+ #: contact_form.php:254
125
  msgid "Please input correct email. Settings are not saved."
126
  msgstr "Perfavore inserisci una e-mail corretta. Opzioni non salvate."
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 "Se vuoi aggiungere un Contact Form al tuo sito, copia e incolla questo shortcode nei tuoi post o nelle tue pagine o widget:"
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 "Se le informazioni nei campi sottostanti sono vuote allora il messaggio sarà inviato ad un indirizzo che è stato specificato durante la fase di registrazione. "
135
 
136
+ #: contact_form.php:272
137
  msgid "Use email of wordpress user:"
138
  msgstr "Utilizza l'e-mail dell'utente wordpress:"
139
 
140
+ #: contact_form.php:278
141
  msgid "Select user name"
142
  msgstr "Seleziona nome utente"
143
 
144
+ #: contact_form.php:283
145
  msgid "Set a name of user who will get messages from a contact form."
146
  msgstr "Imposta il nome dell'utente che riceverà i messaggi da un contact form."
147
 
148
+ #: contact_form.php:287
149
  msgid "Use this email:"
150
  msgstr "Utilizza questa e-mail:"
151
 
152
+ #: contact_form.php:293
153
  msgid "Set an email address which will be used for messages receiving."
154
  msgstr "Imposta una e-mail che verrà utilizzata per ricevere i messaggi."
155
 
156
+ #: contact_form.php:297
157
  msgid "Additional options"
158
  msgstr "Impostazioni aggiuntive"
159
 
160
+ #: contact_form.php:300
161
  msgid "Display Attachment block"
162
  msgstr "Visualizza l'attachment"
163
 
164
+ #: contact_form.php:305
165
  msgid "Users can attach files of the following types"
166
  msgstr "Gli utenti possono allegare i files nei seguenti tipi"
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 "Visualizza il blocco \"Inviami una copia\" "
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 ""
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 ""
199
 
200
+ #: contact_form.php:343
201
  msgid "Change FROM fields of the contact form"
202
  msgstr "Modifica da campi del contact form"
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 "Inviato da (indirizzi IP)"
212
 
213
+ #: contact_form.php:355
214
+ #: contact_form.php:678
215
  msgid "Date/Time"
216
  msgstr "Data/Ora"
217
 
218
+ #: contact_form.php:356
219
+ #: contact_form.php:683
220
  msgid "Coming from (referer)"
221
  msgstr "Da (referente)"
222
 
223
+ #: contact_form.php:357
224
+ #: contact_form.php:688
225
  msgid "Using (user agent)"
226
  msgstr "Utilizza (user agent)"
227
 
228
+ #: contact_form.php:361
229
  msgid "Change label for fields of the contact form"
230
  msgstr "Modifica le etichette dei campi del contact form"
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 "Visualizza l'attachment"
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 "Salva le modifiche"
256
 
257
+ #: contact_form.php:417
 
 
 
 
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:475
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:483
266
  msgid "Send me a copy"
267
  msgstr "Inviami una copia"
268
 
269
+ #: contact_form.php:493
270
  msgid "Submit"
271
  msgstr "Invia"
272
 
273
+ #: contact_form.php:532
274
  msgid "Your name is required."
275
  msgstr "Il nome è obbligatorio"
276
 
277
+ #: contact_form.php:533
278
  msgid "A proper e-mail address is required."
279
  msgstr "È richiesto un indirizzo e-mail corretto"
280
 
281
+ #: contact_form.php:534
282
  msgid "Subject text is required."
283
  msgstr "L'oggetto è obbligatorio"
284
 
285
+ #: contact_form.php:535
286
  msgid "Message text is required."
287
  msgstr "Il campo messaggio è obbligatorio"
288
 
289
+ #: contact_form.php:536
290
  msgid "Please make corrections below and try again."
291
  msgstr "Controlla i dati del modulo e riprova!"
292
 
293
+ #: contact_form.php:567
294
  msgid "Attachment is broken."
295
  msgstr "L'attachment non è corretto"
296
 
297
+ #: contact_form.php:580
298
  msgid "Please complete the CAPTCHA."
299
  msgstr "Completa il 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 "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 "Oggetto"
316
 
317
+ #: contact_form.php:710
318
  msgid "Message"
319
  msgstr "Messaggio"
320
 
321
+ #: contact_form.php:713
322
  msgid "Site"
323
  msgstr "Sito"
324
 
325
+ #: contact_form.php:758
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:812
330
  msgid "FAQ"
331
  msgstr "FAQ"
332
 
333
+ #: contact_form.php:813
334
  msgid "Support"
335
  msgstr "Supporto"
336
 
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-06-18 13:17+0300\n"
7
- "PO-Revision-Date: 2012-06-18 13:17+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,8 +31,8 @@ msgid "Read more"
31
  msgstr "Skaityti daugiau"
32
 
33
  #: contact_form.php:78
34
- #: contact_form.php:750
35
- #: contact_form.php:759
36
  msgid "Settings"
37
  msgstr "Nustatymai"
38
 
@@ -62,7 +62,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
62
  msgstr "Jei turite klausimų, prašome susisiekti su mumis per plugin@bestwebsoft.com arba užpildykite mūsų kontaktų formą mūsų svetainėje"
63
 
64
  #: contact_form.php:108
65
- #: contact_form.php:242
66
  msgid "Contact Form Options"
67
  msgstr "Kontaktų formos parinktys"
68
 
@@ -71,242 +71,269 @@ msgid "Contact Form"
71
  msgstr "Kontaktų forma"
72
 
73
  #: contact_form.php:136
74
- #: contact_form.php:177
75
- #: contact_form.php:210
76
- #: contact_form.php:346
77
  msgid "Name:"
78
  msgstr "Vardas:"
79
 
80
  #: contact_form.php:137
81
- #: contact_form.php:178
82
- #: contact_form.php:211
83
- #: contact_form.php:347
84
  msgid "E-Mail Address:"
85
  msgstr "El. pašto adresas:"
86
 
87
  #: contact_form.php:138
88
- #: contact_form.php:179
89
- #: contact_form.php:212
90
- #: contact_form.php:348
91
  msgid "Subject:"
92
  msgstr "Tema:"
93
 
94
  #: contact_form.php:139
95
- #: contact_form.php:180
96
- #: contact_form.php:213
97
- #: contact_form.php:349
98
  msgid "Message:"
99
  msgstr "Pranešimas:"
100
 
101
  #: contact_form.php:140
102
- #: contact_form.php:181
103
- #: contact_form.php:214
104
- #: contact_form.php:350
105
  msgid "Attachment:"
106
  msgstr "Priedas:"
107
 
108
- #: contact_form.php:222
109
- #: contact_form.php:231
 
 
 
 
 
 
 
 
 
 
110
  msgid "Options saved."
111
  msgstr "Parinktys išsaugotos."
112
 
113
- #: contact_form.php:225
114
  msgid "Such user is not exist. Settings are not saved."
115
  msgstr "Toks vartotojas neegzistuoja. Nustatymai neišsaugoti."
116
 
117
- #: contact_form.php:234
118
  msgid "Please input correct email. Settings are not saved."
119
  msgstr "Prašome įrašyti teisingą el. pašto adresą. Nustatymai neįrašyti."
120
 
121
- #: contact_form.php:247
122
  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:"
123
  msgstr "Jei norite pridėti kontaktų formą prie savo svetainės, tiesiog nukopijuokite šį trumpą kodą į savo puslapį ar elementą:"
124
 
125
- #: contact_form.php:248
126
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
127
  msgstr "Jei informacijos žemiau esančiuose laukuose nėra, pranešimas bus išsiųstas adresu, kuris buvo nurodytas prisiregistravimo metu."
128
 
129
- #: contact_form.php:252
130
  msgid "Use email of wordpress user:"
131
  msgstr "Naudoti wordpress vartotojo el. pašto adresą:"
132
 
133
- #: contact_form.php:258
134
  msgid "Select user name"
135
  msgstr "Pasirinkite vartotojo vardą"
136
 
137
- #: contact_form.php:263
138
  msgid "Set a name of user who will get messages from a contact form."
139
  msgstr "Nurodykite vardą vartotojo, kuris gaus pranešimus iš Kontaktų formos."
140
 
141
- #: contact_form.php:267
142
  msgid "Use this email:"
143
  msgstr "Naudoti šį el. pašto adresą:"
144
 
145
- #: contact_form.php:273
146
  msgid "Set an email address which will be used for messages receiving."
147
  msgstr "Nustatykite el. pašto adresą, kuris bus naudojamas pranešimams gauti."
148
 
149
- #: contact_form.php:277
150
  msgid "Additional options"
151
  msgstr "Papildomos parinktys"
152
 
153
- #: contact_form.php:280
154
  msgid "Display Attachment block"
155
  msgstr "Rodyti priedų įrašą"
156
 
157
- #: contact_form.php:285
158
  msgid "Users can attach files of the following types"
159
  msgstr "Vartotojai gali prikabinti šių tipų failus"
160
 
161
- #: contact_form.php:289
162
  msgid "Display Attachment explanations"
163
  msgstr ""
164
 
165
- #: contact_form.php:294
166
  msgid "Display explanations after Attachment block"
167
  msgstr ""
168
 
169
- #: contact_form.php:298
170
  msgid "Display Send me a copy block"
171
  msgstr "Rodyti „Siųsti kopiją man“ įrašą"
172
 
173
- #: contact_form.php:304
174
  msgid "What use?"
175
  msgstr ""
176
 
177
- #: contact_form.php:309
178
  msgid "Wp-mail"
179
  msgstr "Wp-mail"
180
 
181
- #: contact_form.php:310
182
  msgid "To send mail you can use the wordpress wp_mail function"
183
  msgstr ""
184
 
185
- #: contact_form.php:318
186
  msgid "Mail"
187
  msgstr "Mail"
188
 
189
- #: contact_form.php:319
190
  msgid "To send mail you can use the php mail function"
191
  msgstr ""
192
 
193
- #: contact_form.php:323
194
  msgid "Change FROM fields of the contact form"
195
  msgstr "Pakeiskite IŠ srityse kontaktų formos"
196
 
197
- #: contact_form.php:329
198
  msgid "Display additional info in email"
199
  msgstr ""
200
 
201
- #: contact_form.php:334
202
- #: contact_form.php:621
203
  msgid "Sent from (ip address)"
204
  msgstr "Siųsta iš (ip adresas)"
205
 
206
- #: contact_form.php:335
207
- #: contact_form.php:626
208
  msgid "Date/Time"
209
  msgstr "Data/laikas"
210
 
211
- #: contact_form.php:336
212
- #: contact_form.php:631
213
  msgid "Coming from (referer)"
214
  msgstr "Ateita iš (nukreipiklis)"
215
 
216
- #: contact_form.php:337
217
- #: contact_form.php:636
218
  msgid "Using (user agent)"
219
  msgstr "Naudoja (naršyklės įrašas)"
220
 
221
- #: contact_form.php:341
222
  msgid "Change label for fields of the contact form"
223
  msgstr "Pakeiskite antraštes kontaktų formos etiketėms"
224
 
225
- #: contact_form.php:356
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
226
  msgid "Save Changes"
227
  msgstr "Įrašyti pakeitimus"
228
 
229
- #: contact_form.php:389
230
- msgid "Thank you for contacting us."
231
- msgstr "Dėkojame, kad su mumis susisiekėte."
232
-
233
- #: contact_form.php:394
234
  msgid "Sorry, your e-mail could not be delivered."
235
  msgstr "Deja, jūsų el. laiško nepavyko pristatyti."
236
 
237
- #: contact_form.php:452
238
  msgid "You can attach files of the following types"
239
  msgstr "Galite prikabinti šių tipų failus"
240
 
241
- #: contact_form.php:460
242
  msgid "Send me a copy"
243
  msgstr "Siųsti kopiją man"
244
 
245
- #: contact_form.php:470
246
  msgid "Submit"
247
  msgstr "Siųsti"
248
 
249
- #: contact_form.php:486
250
  msgid "Your name is required."
251
  msgstr "Būtina įrašyti vardą."
252
 
253
- #: contact_form.php:487
254
  msgid "A proper e-mail address is required."
255
  msgstr "Būtina įrašyti teisingą el. pašto adresą."
256
 
257
- #: contact_form.php:488
258
  msgid "Subject text is required."
259
  msgstr "Būtina įrašyti temą."
260
 
261
- #: contact_form.php:489
262
  msgid "Message text is required."
263
  msgstr "Būtina įrašyti laiško turinį."
264
 
265
- #: contact_form.php:490
266
  msgid "Please make corrections below and try again."
267
  msgstr "Prašome pataisyti laišką ir bandyti iš naujo."
268
 
269
- #: contact_form.php:521
270
  msgid "Attachment is broken."
271
  msgstr "Pridedamas failas sugadintas."
272
 
273
- #: contact_form.php:534
274
  msgid "Please complete the CAPTCHA."
275
  msgstr "Prašome užpildyti CAPTCHA."
276
 
277
- #: contact_form.php:644
278
  msgid "Contact from"
279
  msgstr "Kontaktų forma"
280
 
281
- #: contact_form.php:649
282
  msgid "Name"
283
  msgstr "Vardas"
284
 
285
- #: contact_form.php:652
286
  msgid "Email"
287
  msgstr "El. paštas"
288
 
289
- #: contact_form.php:655
290
  msgid "Subject"
291
  msgstr "Tema"
292
 
293
- #: contact_form.php:658
294
  msgid "Message"
295
  msgstr "Tekstas"
296
 
297
- #: contact_form.php:661
298
  msgid "Site"
299
  msgstr "Svetainė"
300
 
301
- #: contact_form.php:706
302
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
303
  msgstr "Jei galite matyti šį MIME tipą, jūsų klientas nepriima MIME tipų!"
304
 
305
- #: contact_form.php:760
306
  msgid "FAQ"
307
  msgstr "DUK"
308
 
309
- #: contact_form.php:761
310
  msgid "Support"
311
  msgstr "Palaikymas"
312
 
3
  msgstr ""
4
  "Project-Id-Version: contact_form\n"
5
  "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2012-06-27 17:41+0300\n"
7
+ "PO-Revision-Date: 2012-06-27 17:41+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:802
35
+ #: contact_form.php:811
36
  msgid "Settings"
37
  msgstr "Nustatymai"
38
 
62
  msgstr "Jei turite klausimų, prašome susisiekti su mumis per plugin@bestwebsoft.com arba užpildykite mūsų kontaktų formą mūsų svetainėje"
63
 
64
  #: contact_form.php:108
65
+ #: contact_form.php:262
66
  msgid "Contact Form Options"
67
  msgstr "Kontaktų formos parinktys"
68
 
71
  msgstr "Kontaktų forma"
72
 
73
  #: contact_form.php:136
74
+ #: contact_form.php:180
75
+ #: contact_form.php:216
76
+ #: contact_form.php:366
77
  msgid "Name:"
78
  msgstr "Vardas:"
79
 
80
  #: contact_form.php:137
81
+ #: contact_form.php:181
82
+ #: contact_form.php:217
83
+ #: contact_form.php:367
84
  msgid "E-Mail Address:"
85
  msgstr "El. pašto adresas:"
86
 
87
  #: contact_form.php:138
88
+ #: contact_form.php:182
89
+ #: contact_form.php:218
90
+ #: contact_form.php:368
91
  msgid "Subject:"
92
  msgstr "Tema:"
93
 
94
  #: contact_form.php:139
95
+ #: contact_form.php:183
96
+ #: contact_form.php:219
97
+ #: contact_form.php:369
98
  msgid "Message:"
99
  msgstr "Pranešimas:"
100
 
101
  #: contact_form.php:140
102
+ #: contact_form.php:184
103
+ #: contact_form.php:220
104
+ #: contact_form.php:370
105
  msgid "Attachment:"
106
  msgstr "Priedas:"
107
 
108
+ #: contact_form.php:142
109
+ #: contact_form.php:186
110
+ msgid "Thank you for contacting us."
111
+ msgstr "Dėkojame, kad su mumis susisiekėte."
112
+
113
+ #: contact_form.php:230
114
+ msgid "If the option 'Redirect to page' is selected then url field should be fillied in the following format"
115
+ msgstr ""
116
+
117
+ #: contact_form.php:237
118
+ #: contact_form.php:242
119
+ #: contact_form.php:251
120
  msgid "Options saved."
121
  msgstr "Parinktys išsaugotos."
122
 
123
+ #: contact_form.php:245
124
  msgid "Such user is not exist. Settings are not saved."
125
  msgstr "Toks vartotojas neegzistuoja. Nustatymai neišsaugoti."
126
 
127
+ #: contact_form.php:254
128
  msgid "Please input correct email. Settings are not saved."
129
  msgstr "Prašome įrašyti teisingą el. pašto adresą. Nustatymai neįrašyti."
130
 
131
+ #: contact_form.php:267
132
  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:"
133
  msgstr "Jei norite pridėti kontaktų formą prie savo svetainės, tiesiog nukopijuokite šį trumpą kodą į savo puslapį ar elementą:"
134
 
135
+ #: contact_form.php:268
136
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
137
  msgstr "Jei informacijos žemiau esančiuose laukuose nėra, pranešimas bus išsiųstas adresu, kuris buvo nurodytas prisiregistravimo metu."
138
 
139
+ #: contact_form.php:272
140
  msgid "Use email of wordpress user:"
141
  msgstr "Naudoti wordpress vartotojo el. pašto adresą:"
142
 
143
+ #: contact_form.php:278
144
  msgid "Select user name"
145
  msgstr "Pasirinkite vartotojo vardą"
146
 
147
+ #: contact_form.php:283
148
  msgid "Set a name of user who will get messages from a contact form."
149
  msgstr "Nurodykite vardą vartotojo, kuris gaus pranešimus iš Kontaktų formos."
150
 
151
+ #: contact_form.php:287
152
  msgid "Use this email:"
153
  msgstr "Naudoti šį el. pašto adresą:"
154
 
155
+ #: contact_form.php:293
156
  msgid "Set an email address which will be used for messages receiving."
157
  msgstr "Nustatykite el. pašto adresą, kuris bus naudojamas pranešimams gauti."
158
 
159
+ #: contact_form.php:297
160
  msgid "Additional options"
161
  msgstr "Papildomos parinktys"
162
 
163
+ #: contact_form.php:300
164
  msgid "Display Attachment block"
165
  msgstr "Rodyti priedų įrašą"
166
 
167
+ #: contact_form.php:305
168
  msgid "Users can attach files of the following types"
169
  msgstr "Vartotojai gali prikabinti šių tipų failus"
170
 
171
+ #: contact_form.php:309
172
  msgid "Display Attachment explanations"
173
  msgstr ""
174
 
175
+ #: contact_form.php:314
176
  msgid "Display explanations after Attachment block"
177
  msgstr ""
178
 
179
+ #: contact_form.php:318
180
  msgid "Display Send me a copy block"
181
  msgstr "Rodyti „Siųsti kopiją man“ įrašą"
182
 
183
+ #: contact_form.php:324
184
  msgid "What use?"
185
  msgstr ""
186
 
187
+ #: contact_form.php:329
188
  msgid "Wp-mail"
189
  msgstr "Wp-mail"
190
 
191
+ #: contact_form.php:330
192
  msgid "To send mail you can use the wordpress wp_mail function"
193
  msgstr ""
194
 
195
+ #: contact_form.php:338
196
  msgid "Mail"
197
  msgstr "Mail"
198
 
199
+ #: contact_form.php:339
200
  msgid "To send mail you can use the php mail function"
201
  msgstr ""
202
 
203
+ #: contact_form.php:343
204
  msgid "Change FROM fields of the contact form"
205
  msgstr "Pakeiskite IŠ srityse kontaktų formos"
206
 
207
+ #: contact_form.php:349
208
  msgid "Display additional info in email"
209
  msgstr ""
210
 
211
+ #: contact_form.php:354
212
+ #: contact_form.php:673
213
  msgid "Sent from (ip address)"
214
  msgstr "Siųsta iš (ip adresas)"
215
 
216
+ #: contact_form.php:355
217
+ #: contact_form.php:678
218
  msgid "Date/Time"
219
  msgstr "Data/laikas"
220
 
221
+ #: contact_form.php:356
222
+ #: contact_form.php:683
223
  msgid "Coming from (referer)"
224
  msgstr "Ateita iš (nukreipiklis)"
225
 
226
+ #: contact_form.php:357
227
+ #: contact_form.php:688
228
  msgid "Using (user agent)"
229
  msgstr "Naudoja (naršyklės įrašas)"
230
 
231
+ #: contact_form.php:361
232
  msgid "Change label for fields of the contact form"
233
  msgstr "Pakeiskite antraštes kontaktų formos etiketėms"
234
 
235
+ #: contact_form.php:374
236
+ msgid "Action after the send mail"
237
+ msgstr ""
238
+
239
+ #: contact_form.php:376
240
+ #, fuzzy
241
+ msgid "Display text"
242
+ msgstr "Rodyti priedų įrašą"
243
+
244
+ #: contact_form.php:377
245
+ msgid "Text"
246
+ msgstr ""
247
+
248
+ #: contact_form.php:378
249
+ msgid "Redirect to page"
250
+ msgstr ""
251
+
252
+ #: contact_form.php:379
253
+ msgid "Url"
254
+ msgstr ""
255
+
256
+ #: contact_form.php:384
257
  msgid "Save Changes"
258
  msgstr "Įrašyti pakeitimus"
259
 
260
+ #: contact_form.php:417
 
 
 
 
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:475
265
  msgid "You can attach files of the following types"
266
  msgstr "Galite prikabinti šių tipų failus"
267
 
268
+ #: contact_form.php:483
269
  msgid "Send me a copy"
270
  msgstr "Siųsti kopiją man"
271
 
272
+ #: contact_form.php:493
273
  msgid "Submit"
274
  msgstr "Siųsti"
275
 
276
+ #: contact_form.php:532
277
  msgid "Your name is required."
278
  msgstr "Būtina įrašyti vardą."
279
 
280
+ #: contact_form.php:533
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:534
285
  msgid "Subject text is required."
286
  msgstr "Būtina įrašyti temą."
287
 
288
+ #: contact_form.php:535
289
  msgid "Message text is required."
290
  msgstr "Būtina įrašyti laiško turinį."
291
 
292
+ #: contact_form.php:536
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:567
297
  msgid "Attachment is broken."
298
  msgstr "Pridedamas failas sugadintas."
299
 
300
+ #: contact_form.php:580
301
  msgid "Please complete the CAPTCHA."
302
  msgstr "Prašome užpildyti CAPTCHA."
303
 
304
+ #: contact_form.php:696
305
  msgid "Contact from"
306
  msgstr "Kontaktų forma"
307
 
308
+ #: contact_form.php:701
309
  msgid "Name"
310
  msgstr "Vardas"
311
 
312
+ #: contact_form.php:704
313
  msgid "Email"
314
  msgstr "El. paštas"
315
 
316
+ #: contact_form.php:707
317
  msgid "Subject"
318
  msgstr "Tema"
319
 
320
+ #: contact_form.php:710
321
  msgid "Message"
322
  msgstr "Tekstas"
323
 
324
+ #: contact_form.php:713
325
  msgid "Site"
326
  msgstr "Svetainė"
327
 
328
+ #: contact_form.php:758
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:812
333
  msgid "FAQ"
334
  msgstr "DUK"
335
 
336
+ #: contact_form.php:813
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-06-18 13:17+0300\n"
6
- "PO-Revision-Date: 2012-06-18 13:17+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 "Les mer"
29
 
30
  #: contact_form.php:78
31
- #: contact_form.php:750
32
- #: contact_form.php:759
33
  msgid "Settings"
34
  msgstr "Innstilllinger"
35
 
@@ -59,7 +59,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
59
  msgstr "Hvis du har spørsmål kan du kontakte oss på plugin@bestwebsoft.com eller bruke kontaktskjemaet på hjemmesiden vår"
60
 
61
  #: contact_form.php:108
62
- #: contact_form.php:242
63
  msgid "Contact Form Options"
64
  msgstr "Innstillinger for kontaktskjema"
65
 
@@ -68,242 +68,269 @@ msgid "Contact Form"
68
  msgstr "Kontaktskjema"
69
 
70
  #: contact_form.php:136
71
- #: contact_form.php:177
72
- #: contact_form.php:210
73
- #: contact_form.php:346
74
  msgid "Name:"
75
  msgstr "Navn:"
76
 
77
  #: contact_form.php:137
78
- #: contact_form.php:178
79
- #: contact_form.php:211
80
- #: contact_form.php:347
81
  msgid "E-Mail Address:"
82
  msgstr "Epostadresse:"
83
 
84
  #: contact_form.php:138
85
- #: contact_form.php:179
86
- #: contact_form.php:212
87
- #: contact_form.php:348
88
  msgid "Subject:"
89
  msgstr "Tema:"
90
 
91
  #: contact_form.php:139
92
- #: contact_form.php:180
93
- #: contact_form.php:213
94
- #: contact_form.php:349
95
  msgid "Message:"
96
  msgstr "Melding:"
97
 
98
  #: contact_form.php:140
99
- #: contact_form.php:181
100
- #: contact_form.php:214
101
- #: contact_form.php:350
102
  msgid "Attachment:"
103
  msgstr "Vedlegg:"
104
 
105
- #: contact_form.php:222
106
- #: contact_form.php:231
 
 
 
 
 
 
 
 
 
 
107
  msgid "Options saved."
108
  msgstr "Innstillinger lagret."
109
 
110
- #: contact_form.php:225
111
  msgid "Such user is not exist. Settings are not saved."
112
  msgstr "Denne brukeren finnes ikke. Innstillingene er ikke lagret."
113
 
114
- #: contact_form.php:234
115
  msgid "Please input correct email. Settings are not saved."
116
  msgstr "Vennligst benytt en korrekt epostadresse. Innstillingene er ikke lagret."
117
 
118
- #: contact_form.php:247
119
  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:"
120
  msgstr "Dersom du ønsket å legge til et kontaktskjema på wedsiden din, kopier og put denne koden i kommentaren din eller på siden din: "
121
 
122
- #: contact_form.php:248
123
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
124
  msgstr "Dersom feltene under er tomme, vil meldingen bli sendt til en adresse som var spesifisert ved registrering."
125
 
126
- #: contact_form.php:252
127
  msgid "Use email of wordpress user:"
128
  msgstr "Benytt eposten til wordpressbruker:"
129
 
130
- #: contact_form.php:258
131
  msgid "Select user name"
132
  msgstr "Velg brukernavn"
133
 
134
- #: contact_form.php:263
135
  msgid "Set a name of user who will get messages from a contact form."
136
  msgstr "Sett et brukernavn for mottaker av meldinger fra kontaktskjemaet"
137
 
138
- #: contact_form.php:267
139
  msgid "Use this email:"
140
  msgstr "Benytt denne epostadressen:"
141
 
142
- #: contact_form.php:273
143
  msgid "Set an email address which will be used for messages receiving."
144
  msgstr "Sett en epostadresse som skal benyttes for å motta meldinger."
145
 
146
- #: contact_form.php:277
147
  msgid "Additional options"
148
  msgstr "Flere valg"
149
 
150
- #: contact_form.php:280
151
  msgid "Display Attachment block"
152
  msgstr "Vis vedlegg"
153
 
154
- #: contact_form.php:285
155
  msgid "Users can attach files of the following types"
156
  msgstr "Brukere kan legge ved filer av følgende typer"
157
 
158
- #: contact_form.php:289
159
  msgid "Display Attachment explanations"
160
  msgstr ""
161
 
162
- #: contact_form.php:294
163
  msgid "Display explanations after Attachment block"
164
  msgstr ""
165
 
166
- #: contact_form.php:298
167
  msgid "Display Send me a copy block"
168
  msgstr "Vis send meg en kopi"
169
 
170
- #: contact_form.php:304
171
  msgid "What use?"
172
  msgstr ""
173
 
174
- #: contact_form.php:309
175
  msgid "Wp-mail"
176
  msgstr "Wp-mail"
177
 
178
- #: contact_form.php:310
179
  msgid "To send mail you can use the wordpress wp_mail function"
180
  msgstr ""
181
 
182
- #: contact_form.php:318
183
  msgid "Mail"
184
  msgstr "Mail"
185
 
186
- #: contact_form.php:319
187
  msgid "To send mail you can use the php mail function"
188
  msgstr ""
189
 
190
- #: contact_form.php:323
191
  msgid "Change FROM fields of the contact form"
192
  msgstr "Endring fra feltene i kontaktskjemaet"
193
 
194
- #: contact_form.php:329
195
  msgid "Display additional info in email"
196
  msgstr ""
197
 
198
- #: contact_form.php:334
199
- #: contact_form.php:621
200
  msgid "Sent from (ip address)"
201
  msgstr "Sendt fra (IP-adresse)"
202
 
203
- #: contact_form.php:335
204
- #: contact_form.php:626
205
  msgid "Date/Time"
206
  msgstr "Dato/tid"
207
 
208
- #: contact_form.php:336
209
- #: contact_form.php:631
210
  msgid "Coming from (referer)"
211
  msgstr "Sendt fra (referent)"
212
 
213
- #: contact_form.php:337
214
- #: contact_form.php:636
215
  msgid "Using (user agent)"
216
  msgstr "med (user agent)"
217
 
218
- #: contact_form.php:341
219
  msgid "Change label for fields of the contact form"
220
  msgstr "Forandre etikett for felter i kontaktskjemaet"
221
 
222
- #: contact_form.php:356
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
223
  msgid "Save Changes"
224
  msgstr "Lagre endringer"
225
 
226
- #: contact_form.php:389
227
- msgid "Thank you for contacting us."
228
- msgstr "Takk for at du tok kontakt med oss"
229
-
230
- #: contact_form.php:394
231
  msgid "Sorry, your e-mail could not be delivered."
232
  msgstr "Beklager, eposten din kunne ikke leveres."
233
 
234
- #: contact_form.php:452
235
  msgid "You can attach files of the following types"
236
  msgstr "Du kan legge til filer av følgende typer"
237
 
238
- #: contact_form.php:460
239
  msgid "Send me a copy"
240
  msgstr "Send meg en kopi"
241
 
242
- #: contact_form.php:470
243
  msgid "Submit"
244
  msgstr "Send"
245
 
246
- #: contact_form.php:486
247
  msgid "Your name is required."
248
  msgstr "Navnet ditt er påkrevet."
249
 
250
- #: contact_form.php:487
251
  msgid "A proper e-mail address is required."
252
  msgstr "En korrekt epostadresse er påkrevet."
253
 
254
- #: contact_form.php:488
255
  msgid "Subject text is required."
256
  msgstr "Tekst i temafeltet er påkrevet."
257
 
258
- #: contact_form.php:489
259
  msgid "Message text is required."
260
  msgstr "Tekst i meldingsfeltet er påkrevet"
261
 
262
- #: contact_form.php:490
263
  msgid "Please make corrections below and try again."
264
  msgstr "Vennligst gjør endringer nedenfor og forsøk igjen."
265
 
266
- #: contact_form.php:521
267
  msgid "Attachment is broken."
268
  msgstr "Vedlegget fungerer ikke."
269
 
270
- #: contact_form.php:534
271
  msgid "Please complete the CAPTCHA."
272
  msgstr "Vennligst fyll ut CAPTCHA"
273
 
274
- #: contact_form.php:644
275
  msgid "Contact from"
276
  msgstr "Kontakt fra"
277
 
278
- #: contact_form.php:649
279
  msgid "Name"
280
  msgstr "Navn"
281
 
282
- #: contact_form.php:652
283
  msgid "Email"
284
  msgstr "Epost"
285
 
286
- #: contact_form.php:655
287
  msgid "Subject"
288
  msgstr "Tema"
289
 
290
- #: contact_form.php:658
291
  msgid "Message"
292
  msgstr "Melding"
293
 
294
- #: contact_form.php:661
295
  msgid "Site"
296
  msgstr "Site"
297
 
298
- #: contact_form.php:706
299
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
300
  msgstr "Dersom du kan se denne MIME, så aksepterer ikke klienten din MIME-typer!"
301
 
302
- #: contact_form.php:760
303
  msgid "FAQ"
304
  msgstr "Vanlige spørsmål"
305
 
306
- #: contact_form.php:761
307
  msgid "Support"
308
  msgstr "Support"
309
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-27 17:41+0300\n"
6
+ "PO-Revision-Date: 2012-06-27 17:41+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:802
32
+ #: contact_form.php:811
33
  msgid "Settings"
34
  msgstr "Innstilllinger"
35
 
59
  msgstr "Hvis du har spørsmål kan du kontakte oss på plugin@bestwebsoft.com eller bruke kontaktskjemaet på hjemmesiden vår"
60
 
61
  #: contact_form.php:108
62
+ #: contact_form.php:262
63
  msgid "Contact Form Options"
64
  msgstr "Innstillinger for kontaktskjema"
65
 
68
  msgstr "Kontaktskjema"
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 "Navn:"
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 "Epostadresse:"
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 "Tema:"
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 "Melding:"
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 "Vedlegg:"
104
 
105
+ #: contact_form.php:142
106
+ #: contact_form.php:186
107
+ msgid "Thank you for contacting us."
108
+ msgstr "Takk for at du tok kontakt med oss"
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 "Innstillinger lagret."
119
 
120
+ #: contact_form.php:245
121
  msgid "Such user is not exist. Settings are not saved."
122
  msgstr "Denne brukeren finnes ikke. Innstillingene er ikke lagret."
123
 
124
+ #: contact_form.php:254
125
  msgid "Please input correct email. Settings are not saved."
126
  msgstr "Vennligst benytt en korrekt epostadresse. Innstillingene er ikke lagret."
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 "Dersom du ønsket å legge til et kontaktskjema på wedsiden din, kopier og put denne koden i kommentaren din eller på siden din: "
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 "Dersom feltene under er tomme, vil meldingen bli sendt til en adresse som var spesifisert ved registrering."
135
 
136
+ #: contact_form.php:272
137
  msgid "Use email of wordpress user:"
138
  msgstr "Benytt eposten til wordpressbruker:"
139
 
140
+ #: contact_form.php:278
141
  msgid "Select user name"
142
  msgstr "Velg brukernavn"
143
 
144
+ #: contact_form.php:283
145
  msgid "Set a name of user who will get messages from a contact form."
146
  msgstr "Sett et brukernavn for mottaker av meldinger fra kontaktskjemaet"
147
 
148
+ #: contact_form.php:287
149
  msgid "Use this email:"
150
  msgstr "Benytt denne epostadressen:"
151
 
152
+ #: contact_form.php:293
153
  msgid "Set an email address which will be used for messages receiving."
154
  msgstr "Sett en epostadresse som skal benyttes for å motta meldinger."
155
 
156
+ #: contact_form.php:297
157
  msgid "Additional options"
158
  msgstr "Flere valg"
159
 
160
+ #: contact_form.php:300
161
  msgid "Display Attachment block"
162
  msgstr "Vis vedlegg"
163
 
164
+ #: contact_form.php:305
165
  msgid "Users can attach files of the following types"
166
  msgstr "Brukere kan legge ved filer av følgende typer"
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 "Vis send meg en kopi"
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 ""
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 ""
199
 
200
+ #: contact_form.php:343
201
  msgid "Change FROM fields of the contact form"
202
  msgstr "Endring fra feltene i kontaktskjemaet"
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 "Sendt fra (IP-adresse)"
212
 
213
+ #: contact_form.php:355
214
+ #: contact_form.php:678
215
  msgid "Date/Time"
216
  msgstr "Dato/tid"
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
 
228
+ #: contact_form.php:361
229
  msgid "Change label for fields of the contact form"
230
  msgstr "Forandre etikett for felter i kontaktskjemaet"
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 "Vis vedlegg"
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 "Lagre endringer"
256
 
257
+ #: contact_form.php:417
 
 
 
 
258
  msgid "Sorry, your e-mail could not be delivered."
259
  msgstr "Beklager, eposten din kunne ikke leveres."
260
 
261
+ #: contact_form.php:475
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:483
266
  msgid "Send me a copy"
267
  msgstr "Send meg 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 "Navnet ditt er påkrevet."
276
 
277
+ #: contact_form.php:533
278
  msgid "A proper e-mail address is required."
279
  msgstr "En korrekt epostadresse er påkrevet."
280
 
281
+ #: contact_form.php:534
282
  msgid "Subject text is required."
283
  msgstr "Tekst i temafeltet er påkrevet."
284
 
285
+ #: contact_form.php:535
286
  msgid "Message text is required."
287
  msgstr "Tekst i meldingsfeltet er påkrevet"
288
 
289
+ #: contact_form.php:536
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:567
294
  msgid "Attachment is broken."
295
  msgstr "Vedlegget fungerer ikke."
296
 
297
+ #: contact_form.php:580
298
  msgid "Please complete the CAPTCHA."
299
  msgstr "Vennligst fyll ut CAPTCHA"
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 "Epost"
312
 
313
+ #: contact_form.php:707
314
  msgid "Subject"
315
  msgstr "Tema"
316
 
317
+ #: contact_form.php:710
318
  msgid "Message"
319
  msgstr "Melding"
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 "Vanlige spørsmål"
332
 
333
+ #: contact_form.php:813
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-06-18 13:17+0300\n"
6
- "PO-Revision-Date: 2012-06-18 13:17+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 "Lees verder"
29
 
30
  #: contact_form.php:78
31
- #: contact_form.php:750
32
- #: contact_form.php:759
33
  msgid "Settings"
34
  msgstr "Instellingen"
35
 
@@ -59,7 +59,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
59
  msgstr "Mocht je nog vragen hebben stuur dan een email naar plugin@bestwebsoft.com of vul het contactformulier op onze website in."
60
 
61
  #: contact_form.php:108
62
- #: contact_form.php:242
63
  msgid "Contact Form Options"
64
  msgstr "Contact Form Opties"
65
 
@@ -68,242 +68,269 @@ msgid "Contact Form"
68
  msgstr "Contact Form"
69
 
70
  #: contact_form.php:136
71
- #: contact_form.php:177
72
- #: contact_form.php:210
73
- #: contact_form.php:346
74
  msgid "Name:"
75
  msgstr "Naam:"
76
 
77
  #: contact_form.php:137
78
- #: contact_form.php:178
79
- #: contact_form.php:211
80
- #: contact_form.php:347
81
  msgid "E-Mail Address:"
82
  msgstr "Email adres:"
83
 
84
  #: contact_form.php:138
85
- #: contact_form.php:179
86
- #: contact_form.php:212
87
- #: contact_form.php:348
88
  msgid "Subject:"
89
  msgstr "Onderwerp:"
90
 
91
  #: contact_form.php:139
92
- #: contact_form.php:180
93
- #: contact_form.php:213
94
- #: contact_form.php:349
95
  msgid "Message:"
96
  msgstr "Bericht:"
97
 
98
  #: contact_form.php:140
99
- #: contact_form.php:181
100
- #: contact_form.php:214
101
- #: contact_form.php:350
102
  msgid "Attachment:"
103
  msgstr "Bijlage:"
104
 
105
- #: contact_form.php:222
106
- #: contact_form.php:231
 
 
 
 
 
 
 
 
 
 
107
  msgid "Options saved."
108
  msgstr "Instellingen opgeslagen."
109
 
110
- #: contact_form.php:225
111
  msgid "Such user is not exist. Settings are not saved."
112
  msgstr "Deze gebruiker bestaat niet. Instellingen zijn niet opgeslagen."
113
 
114
- #: contact_form.php:234
115
  msgid "Please input correct email. Settings are not saved."
116
  msgstr "Geef een geldig email adres op. Instellingen zijn niet opgeslagen."
117
 
118
- #: contact_form.php:247
119
  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:"
120
  msgstr "Als je een Contact Form aan je website wil toevoegen, kopieer dan deze code in je bericht op op je pagina of widget:"
121
 
122
- #: contact_form.php:248
123
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
124
  msgstr "Als het onderstaande veld leeg blijft, dan zal het bericht gestuurd worden aan het adres dat is gespecificeerd tijdens de registratie."
125
 
126
- #: contact_form.php:252
127
  msgid "Use email of wordpress user:"
128
  msgstr "Gebruik het email adres van de Wordpress gebruiker:"
129
 
130
- #: contact_form.php:258
131
  msgid "Select user name"
132
  msgstr "Kies gebruikersnaam"
133
 
134
- #: contact_form.php:263
135
  msgid "Set a name of user who will get messages from a contact form."
136
  msgstr "Voer de naam in van de gebruiker die berichten van dit contact formulier moet ontvangen."
137
 
138
- #: contact_form.php:267
139
  msgid "Use this email:"
140
  msgstr "Gebruik dit email adres:"
141
 
142
- #: contact_form.php:273
143
  msgid "Set an email address which will be used for messages receiving."
144
  msgstr "Geef een email adres op waar de berichten naar verstuurd worden."
145
 
146
- #: contact_form.php:277
147
  msgid "Additional options"
148
  msgstr "Extra opties"
149
 
150
- #: contact_form.php:280
151
  msgid "Display Attachment block"
152
  msgstr "Bijlages toestaan"
153
 
154
- #: contact_form.php:285
155
  msgid "Users can attach files of the following types"
156
  msgstr "Gebruikers kunnen de volgende bestandtypen toevoegen"
157
 
158
- #: contact_form.php:289
159
  msgid "Display Attachment explanations"
160
  msgstr ""
161
 
162
- #: contact_form.php:294
163
  msgid "Display explanations after Attachment block"
164
  msgstr ""
165
 
166
- #: contact_form.php:298
167
  msgid "Display Send me a copy block"
168
  msgstr "Geef \"Kopie aan mij sturen\" weer"
169
 
170
- #: contact_form.php:304
171
  msgid "What use?"
172
  msgstr ""
173
 
174
- #: contact_form.php:309
175
  msgid "Wp-mail"
176
  msgstr "Wp-mail"
177
 
178
- #: contact_form.php:310
179
  msgid "To send mail you can use the wordpress wp_mail function"
180
  msgstr ""
181
 
182
- #: contact_form.php:318
183
  msgid "Mail"
184
  msgstr "Mail"
185
 
186
- #: contact_form.php:319
187
  msgid "To send mail you can use the php mail function"
188
  msgstr ""
189
 
190
- #: contact_form.php:323
191
  msgid "Change FROM fields of the contact form"
192
  msgstr "Veranderen van velden van het contactformulier"
193
 
194
- #: contact_form.php:329
195
  msgid "Display additional info in email"
196
  msgstr ""
197
 
198
- #: contact_form.php:334
199
- #: contact_form.php:621
200
  msgid "Sent from (ip address)"
201
  msgstr "Verstuurd van (IP-adres)"
202
 
203
- #: contact_form.php:335
204
- #: contact_form.php:626
205
  msgid "Date/Time"
206
  msgstr "Datum/Tijd"
207
 
208
- #: contact_form.php:336
209
- #: contact_form.php:631
210
  msgid "Coming from (referer)"
211
  msgstr "Verstuurd vanaf (referer)"
212
 
213
- #: contact_form.php:337
214
- #: contact_form.php:636
215
  msgid "Using (user agent)"
216
  msgstr "Met (user agent)"
217
 
218
- #: contact_form.php:341
219
  msgid "Change label for fields of the contact form"
220
  msgstr "Verander de namen van de labels"
221
 
222
- #: contact_form.php:356
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
223
  msgid "Save Changes"
224
  msgstr "Bewaar veranderingen"
225
 
226
- #: contact_form.php:389
227
- msgid "Thank you for contacting us."
228
- msgstr "Bedankt voor uw bericht."
229
-
230
- #: contact_form.php:394
231
  msgid "Sorry, your e-mail could not be delivered."
232
  msgstr "Sorry, uw bericht kon niet worden verstuurd."
233
 
234
- #: contact_form.php:452
235
  msgid "You can attach files of the following types"
236
  msgstr "Bestanden van het volgende formaten kunnen worden bijgesloten"
237
 
238
- #: contact_form.php:460
239
  msgid "Send me a copy"
240
  msgstr "Kopie aan mij sturen"
241
 
242
- #: contact_form.php:470
243
  msgid "Submit"
244
  msgstr "Versturen"
245
 
246
- #: contact_form.php:486
247
  msgid "Your name is required."
248
  msgstr "U bent vergeten uw naam op te geven"
249
 
250
- #: contact_form.php:487
251
  msgid "A proper e-mail address is required."
252
  msgstr "U bent vergeten uw emailadres op te geven"
253
 
254
- #: contact_form.php:488
255
  msgid "Subject text is required."
256
  msgstr "U bent vergeten een onderwerp op te geven"
257
 
258
- #: contact_form.php:489
259
  msgid "Message text is required."
260
  msgstr "U bent vergeten een bericht op te geven"
261
 
262
- #: contact_form.php:490
263
  msgid "Please make corrections below and try again."
264
  msgstr "Vul alle vereiste informatie in en probeer het opnieuw."
265
 
266
- #: contact_form.php:521
267
  msgid "Attachment is broken."
268
  msgstr "Bijlage is beschadigd."
269
 
270
- #: contact_form.php:534
271
  msgid "Please complete the CAPTCHA."
272
  msgstr "Vul de CAPTCHA in."
273
 
274
- #: contact_form.php:644
275
  msgid "Contact from"
276
  msgstr "Contact van"
277
 
278
- #: contact_form.php:649
279
  msgid "Name"
280
  msgstr "Naam"
281
 
282
- #: contact_form.php:652
283
  msgid "Email"
284
  msgstr "Email"
285
 
286
- #: contact_form.php:655
287
  msgid "Subject"
288
  msgstr "Onderwerp"
289
 
290
- #: contact_form.php:658
291
  msgid "Message"
292
  msgstr "Bericht"
293
 
294
- #: contact_form.php:661
295
  msgid "Site"
296
  msgstr "Website"
297
 
298
- #: contact_form.php:706
299
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
300
  msgstr "Als u deze MIME ziet, dan ondersteunt uw client geen MIME-Typen!"
301
 
302
- #: contact_form.php:760
303
  msgid "FAQ"
304
  msgstr "Veel gestelde vragen (FAQ)"
305
 
306
- #: contact_form.php:761
307
  msgid "Support"
308
  msgstr "Support"
309
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-27 17:41+0300\n"
6
+ "PO-Revision-Date: 2012-06-27 17:41+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:802
32
+ #: contact_form.php:811
33
  msgid "Settings"
34
  msgstr "Instellingen"
35
 
59
  msgstr "Mocht je nog vragen hebben stuur dan een email naar plugin@bestwebsoft.com of vul het contactformulier op onze website in."
60
 
61
  #: contact_form.php:108
62
+ #: contact_form.php:262
63
  msgid "Contact Form Options"
64
  msgstr "Contact Form Opties"
65
 
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 "Naam:"
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 "Email adres:"
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 "Onderwerp:"
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 "Bericht:"
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 "Bijlage:"
104
 
105
+ #: contact_form.php:142
106
+ #: contact_form.php:186
107
+ msgid "Thank you for contacting us."
108
+ msgstr "Bedankt voor uw bericht."
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 "Instellingen opgeslagen."
119
 
120
+ #: contact_form.php:245
121
  msgid "Such user is not exist. Settings are not saved."
122
  msgstr "Deze gebruiker bestaat niet. Instellingen zijn niet opgeslagen."
123
 
124
+ #: contact_form.php:254
125
  msgid "Please input correct email. Settings are not saved."
126
  msgstr "Geef een geldig email adres op. Instellingen zijn niet opgeslagen."
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 "Als je een Contact Form aan je website wil toevoegen, kopieer dan deze code in je bericht op op je pagina of widget:"
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 "Als het onderstaande veld leeg blijft, dan zal het bericht gestuurd worden aan het adres dat is gespecificeerd tijdens de registratie."
135
 
136
+ #: contact_form.php:272
137
  msgid "Use email of wordpress user:"
138
  msgstr "Gebruik het email adres van de Wordpress gebruiker:"
139
 
140
+ #: contact_form.php:278
141
  msgid "Select user name"
142
  msgstr "Kies gebruikersnaam"
143
 
144
+ #: contact_form.php:283
145
  msgid "Set a name of user who will get messages from a contact form."
146
  msgstr "Voer de naam in van de gebruiker die berichten van dit contact formulier moet ontvangen."
147
 
148
+ #: contact_form.php:287
149
  msgid "Use this email:"
150
  msgstr "Gebruik dit email adres:"
151
 
152
+ #: contact_form.php:293
153
  msgid "Set an email address which will be used for messages receiving."
154
  msgstr "Geef een email adres op waar de berichten naar verstuurd worden."
155
 
156
+ #: contact_form.php:297
157
  msgid "Additional options"
158
  msgstr "Extra opties"
159
 
160
+ #: contact_form.php:300
161
  msgid "Display Attachment block"
162
  msgstr "Bijlages toestaan"
163
 
164
+ #: contact_form.php:305
165
  msgid "Users can attach files of the following types"
166
  msgstr "Gebruikers kunnen de volgende bestandtypen toevoegen"
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 "Geef \"Kopie aan mij sturen\" weer"
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 ""
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 ""
199
 
200
+ #: contact_form.php:343
201
  msgid "Change FROM fields of the contact form"
202
  msgstr "Veranderen van velden van het contactformulier"
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 "Verstuurd van (IP-adres)"
212
 
213
+ #: contact_form.php:355
214
+ #: contact_form.php:678
215
  msgid "Date/Time"
216
  msgstr "Datum/Tijd"
217
 
218
+ #: contact_form.php:356
219
+ #: contact_form.php:683
220
  msgid "Coming from (referer)"
221
  msgstr "Verstuurd vanaf (referer)"
222
 
223
+ #: contact_form.php:357
224
+ #: contact_form.php:688
225
  msgid "Using (user agent)"
226
  msgstr "Met (user agent)"
227
 
228
+ #: contact_form.php:361
229
  msgid "Change label for fields of the contact form"
230
  msgstr "Verander de namen van de labels"
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 "Bijlages toestaan"
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 "Bewaar veranderingen"
256
 
257
+ #: contact_form.php:417
 
 
 
 
258
  msgid "Sorry, your e-mail could not be delivered."
259
  msgstr "Sorry, uw bericht kon niet worden verstuurd."
260
 
261
+ #: contact_form.php:475
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:483
266
  msgid "Send me a copy"
267
  msgstr "Kopie aan mij sturen"
268
 
269
+ #: contact_form.php:493
270
  msgid "Submit"
271
  msgstr "Versturen"
272
 
273
+ #: contact_form.php:532
274
  msgid "Your name is required."
275
  msgstr "U bent vergeten uw naam op te geven"
276
 
277
+ #: contact_form.php:533
278
  msgid "A proper e-mail address is required."
279
  msgstr "U bent vergeten uw emailadres op te geven"
280
 
281
+ #: contact_form.php:534
282
  msgid "Subject text is required."
283
  msgstr "U bent vergeten een onderwerp op te geven"
284
 
285
+ #: contact_form.php:535
286
  msgid "Message text is required."
287
  msgstr "U bent vergeten een bericht op te geven"
288
 
289
+ #: contact_form.php:536
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:567
294
  msgid "Attachment is broken."
295
  msgstr "Bijlage is beschadigd."
296
 
297
+ #: contact_form.php:580
298
  msgid "Please complete the CAPTCHA."
299
  msgstr "Vul de CAPTCHA in."
300
 
301
+ #: contact_form.php:696
302
  msgid "Contact from"
303
  msgstr "Contact van"
304
 
305
+ #: contact_form.php:701
306
  msgid "Name"
307
  msgstr "Naam"
308
 
309
+ #: contact_form.php:704
310
  msgid "Email"
311
  msgstr "Email"
312
 
313
+ #: contact_form.php:707
314
  msgid "Subject"
315
  msgstr "Onderwerp"
316
 
317
+ #: contact_form.php:710
318
  msgid "Message"
319
  msgstr "Bericht"
320
 
321
+ #: contact_form.php:713
322
  msgid "Site"
323
  msgstr "Website"
324
 
325
+ #: contact_form.php:758
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:812
330
  msgid "FAQ"
331
  msgstr "Veel gestelde vragen (FAQ)"
332
 
333
+ #: contact_form.php:813
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-06-18 13:17+0300\n"
6
- "PO-Revision-Date: 2012-06-18 13:17+0300\n"
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:750
37
- #: contact_form.php:759
38
  msgid "Settings"
39
  msgstr "Ustawienia"
40
 
@@ -71,7 +71,7 @@ msgstr "Jeśli masz pytania, napisz na adres plugin@bestwebsoft.com lub skorzyst
71
 
72
  # @ contact_form
73
  #: contact_form.php:108
74
- #: contact_form.php:242
75
  msgid "Contact Form Options"
76
  msgstr "Opcje Contact Form"
77
 
@@ -82,291 +82,319 @@ msgstr "Contact Form"
82
 
83
  # @ contact_form
84
  #: contact_form.php:136
85
- #: contact_form.php:177
86
- #: contact_form.php:210
87
- #: contact_form.php:346
88
  msgid "Name:"
89
  msgstr "Imię:"
90
 
91
  # @ contact_form
92
  #: contact_form.php:137
93
- #: contact_form.php:178
94
- #: contact_form.php:211
95
- #: contact_form.php:347
96
  msgid "E-Mail Address:"
97
  msgstr "Adres e-mail"
98
 
99
  # @ contact_form
100
  #: contact_form.php:138
101
- #: contact_form.php:179
102
- #: contact_form.php:212
103
- #: contact_form.php:348
104
  msgid "Subject:"
105
  msgstr "Temat:"
106
 
107
  # @ contact_form
108
  #: contact_form.php:139
109
- #: contact_form.php:180
110
- #: contact_form.php:213
111
- #: contact_form.php:349
112
  msgid "Message:"
113
  msgstr "Treść wiadomości:"
114
 
115
  # @ contact_form
116
  #: contact_form.php:140
117
- #: contact_form.php:181
118
- #: contact_form.php:214
119
- #: contact_form.php:350
120
  msgid "Attachment:"
121
  msgstr "Załączniki:"
122
 
123
  # @ contact_form
124
- #: contact_form.php:222
125
- #: contact_form.php:231
 
 
 
 
 
 
 
 
 
 
 
126
  msgid "Options saved."
127
  msgstr "Opcje zapisano"
128
 
129
  # @ contact_form
130
- #: contact_form.php:225
131
  msgid "Such user is not exist. Settings are not saved."
132
  msgstr "Nie ma takiego użytkownika. Ustawienia nie zostały zapisane."
133
 
134
  # @ contact_form
135
- #: contact_form.php:234
136
  msgid "Please input correct email. Settings are not saved."
137
  msgstr "Proszę wpisać prawidłowy e-mail. Ustawienia nie zostały zapisane."
138
 
139
  # @ contact_form
140
- #: contact_form.php:247
141
  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:"
142
  msgstr "Jeśli chcesz dodać formularz do swojej strony, po prostu skopiuj ten kod i wklej go do wpisu lub treści strony lub Widget:"
143
 
144
  # @ contact_form
145
- #: contact_form.php:248
146
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
147
  msgstr "Jeśli poniższe pola zostaną puste, wiadomość zostanie wysłana na adres podany podczas rejestracji."
148
 
149
  # @ contact_form
150
- #: contact_form.php:252
151
  msgid "Use email of wordpress user:"
152
  msgstr "Użyj adresu e-mail użytkownika:"
153
 
154
  # @ contact_form
155
- #: contact_form.php:258
156
  msgid "Select user name"
157
  msgstr "Wybierz użytkownika"
158
 
159
  # @ contact_form
160
- #: contact_form.php:263
161
  msgid "Set a name of user who will get messages from a contact form."
162
  msgstr "Wybierz użytkownika, który będzie dostawał wiadomości z formularza."
163
 
164
  # @ contact_form
165
- #: contact_form.php:267
166
  msgid "Use this email:"
167
  msgstr "Wybierz ten e-mail:"
168
 
169
  # @ contact_form
170
- #: contact_form.php:273
171
  msgid "Set an email address which will be used for messages receiving."
172
  msgstr "Ustaw adres e-mail, który będzie używany do odbierania wiadomości."
173
 
174
  # @ contact_form
175
- #: contact_form.php:277
176
  msgid "Additional options"
177
  msgstr "Dodatkowe opcje"
178
 
179
  # @ contact_form
180
- #: contact_form.php:280
181
  msgid "Display Attachment block"
182
  msgstr "Wyświetlaj blok załączników"
183
 
184
  # @ contact_form
185
- #: contact_form.php:285
186
  msgid "Users can attach files of the following types"
187
  msgstr "Można załączać pliki następujących typów"
188
 
189
  # @ contact_form
190
- #: contact_form.php:289
191
  msgid "Display Attachment explanations"
192
  msgstr ""
193
 
194
  # @ contact_form
195
- #: contact_form.php:294
196
  msgid "Display explanations after Attachment block"
197
  msgstr ""
198
 
199
  # @ contact_form
200
- #: contact_form.php:298
201
  msgid "Display Send me a copy block"
202
  msgstr "Wyświetlaj blok wysyłania kopii do nadawcy"
203
 
204
- #: contact_form.php:304
205
  msgid "What use?"
206
  msgstr ""
207
 
208
  # @ contact_form
209
- #: contact_form.php:309
210
  msgid "Wp-mail"
211
  msgstr "Wp-mail"
212
 
213
- #: contact_form.php:310
214
  msgid "To send mail you can use the wordpress wp_mail function"
215
  msgstr ""
216
 
217
  # @ contact_form
218
- #: contact_form.php:318
219
  msgid "Mail"
220
  msgstr "Mail"
221
 
222
- #: contact_form.php:319
223
  msgid "To send mail you can use the php mail function"
224
  msgstr ""
225
 
226
  # @ contact_form
227
- #: contact_form.php:323
228
  msgid "Change FROM fields of the contact form"
229
  msgstr "Zmień od pola formularza"
230
 
231
- #: contact_form.php:329
232
  msgid "Display additional info in email"
233
  msgstr ""
234
 
235
  # @ contact_form
236
- #: contact_form.php:334
237
- #: contact_form.php:621
238
  msgid "Sent from (ip address)"
239
  msgstr "Przysłane z (adres IP)"
240
 
241
  # @ contact_form
242
- #: contact_form.php:335
243
- #: contact_form.php:626
244
  msgid "Date/Time"
245
  msgstr "Data/czas"
246
 
247
  # @ contact_form
248
- #: contact_form.php:336
249
- #: contact_form.php:631
250
  msgid "Coming from (referer)"
251
  msgstr "Przekierowane z (referrer)"
252
 
253
  # @ contact_form
254
- #: contact_form.php:337
255
- #: contact_form.php:636
256
  msgid "Using (user agent)"
257
  msgstr "Klient (program użytkownika)"
258
 
259
  # @ contact_form
260
- #: contact_form.php:341
261
  msgid "Change label for fields of the contact form"
262
  msgstr "Zmień etykiety pól formularza"
263
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
264
  # @ default
265
- #: contact_form.php:356
266
  msgid "Save Changes"
267
  msgstr "Zapisz zmiany"
268
 
269
  # @ contact_form
270
- #: contact_form.php:389
271
- msgid "Thank you for contacting us."
272
- msgstr "Dziękujemy za wiadomość."
273
-
274
- # @ contact_form
275
- #: contact_form.php:394
276
  msgid "Sorry, your e-mail could not be delivered."
277
  msgstr "Niestety, ten e-mail nie mógł zostać dostarczony."
278
 
279
  # @ contact_form
280
- #: contact_form.php:452
281
  msgid "You can attach files of the following types"
282
  msgstr "Możesz załączać pliki następujących typów"
283
 
284
  # @ contact_form
285
- #: contact_form.php:460
286
  msgid "Send me a copy"
287
  msgstr "Wyślij mi kopię"
288
 
289
  # @ contact_form
290
- #: contact_form.php:470
291
  msgid "Submit"
292
  msgstr "Wyślij"
293
 
294
  # @ contact_form
295
- #: contact_form.php:486
296
  msgid "Your name is required."
297
  msgstr "Podanie imienia jest wymagane."
298
 
299
  # @ contact_form
300
- #: contact_form.php:487
301
  msgid "A proper e-mail address is required."
302
  msgstr "Podanie prawidłowego adresu e-mail jest wymagane."
303
 
304
  # @ contact_form
305
- #: contact_form.php:488
306
  msgid "Subject text is required."
307
  msgstr "Podanie tematu jest wymagane."
308
 
309
  # @ contact_form
310
- #: contact_form.php:489
311
  msgid "Message text is required."
312
  msgstr "Wiadomość musi mieć jakąś treść."
313
 
314
  # @ contact_form
315
- #: contact_form.php:490
316
  msgid "Please make corrections below and try again."
317
  msgstr "Proszę nanieść poprawki i spróbować jeszcze raz."
318
 
319
  # @ contact_form
320
- #: contact_form.php:521
321
  msgid "Attachment is broken."
322
  msgstr "Załącznik jest uszkodzony."
323
 
324
  # @ contact_form
325
- #: contact_form.php:534
326
  msgid "Please complete the CAPTCHA."
327
  msgstr "Proszę dokładnie przepisać kod."
328
 
329
  # @ contact_form
330
- #: contact_form.php:644
331
  msgid "Contact from"
332
  msgstr "Kontakt z"
333
 
334
  # @ contact_form
335
- #: contact_form.php:649
336
  msgid "Name"
337
  msgstr "Imię"
338
 
339
  # @ contact_form
340
- #: contact_form.php:652
341
  msgid "Email"
342
  msgstr "E-mail"
343
 
344
  # @ contact_form
345
- #: contact_form.php:655
346
  msgid "Subject"
347
  msgstr "Temat"
348
 
349
  # @ contact_form
350
- #: contact_form.php:658
351
  msgid "Message"
352
  msgstr "Wiadomość"
353
 
354
  # @ contact_form
355
- #: contact_form.php:661
356
  msgid "Site"
357
  msgstr "Strona www"
358
 
359
- #: contact_form.php:706
360
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
361
  msgstr ""
362
 
363
  # @ contact_form
364
- #: contact_form.php:760
365
  msgid "FAQ"
366
  msgstr "FAQ"
367
 
368
  # @ contact_form
369
- #: contact_form.php:761
370
  msgid "Support"
371
  msgstr "Wsparcie"
372
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form Plugin v3.05\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-27 17:41+0300\n"
6
+ "PO-Revision-Date: 2012-06-27 17:41+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:802
37
+ #: contact_form.php:811
38
  msgid "Settings"
39
  msgstr "Ustawienia"
40
 
71
 
72
  # @ contact_form
73
  #: contact_form.php:108
74
+ #: contact_form.php:262
75
  msgid "Contact Form Options"
76
  msgstr "Opcje Contact Form"
77
 
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 "Imię:"
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 "Adres e-mail"
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 "Temat:"
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 "Treść wiadomości:"
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 "Załączniki:"
122
 
123
  # @ contact_form
124
+ #: contact_form.php:142
125
+ #: contact_form.php:186
126
+ msgid "Thank you for contacting us."
127
+ msgstr "Dziękujemy za wiadomość."
128
+
129
+ #: contact_form.php:230
130
+ msgid "If the option 'Redirect to page' is selected then url field should be fillied in the following format"
131
+ msgstr ""
132
+
133
+ # @ contact_form
134
+ #: contact_form.php:237
135
+ #: contact_form.php:242
136
+ #: contact_form.php:251
137
  msgid "Options saved."
138
  msgstr "Opcje zapisano"
139
 
140
  # @ contact_form
141
+ #: contact_form.php:245
142
  msgid "Such user is not exist. Settings are not saved."
143
  msgstr "Nie ma takiego użytkownika. Ustawienia nie zostały zapisane."
144
 
145
  # @ contact_form
146
+ #: contact_form.php:254
147
  msgid "Please input correct email. Settings are not saved."
148
  msgstr "Proszę wpisać prawidłowy e-mail. Ustawienia nie zostały zapisane."
149
 
150
  # @ contact_form
151
+ #: contact_form.php:267
152
  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:"
153
  msgstr "Jeśli chcesz dodać formularz do swojej strony, po prostu skopiuj ten kod i wklej go do wpisu lub treści strony lub Widget:"
154
 
155
  # @ contact_form
156
+ #: contact_form.php:268
157
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
158
  msgstr "Jeśli poniższe pola zostaną puste, wiadomość zostanie wysłana na adres podany podczas rejestracji."
159
 
160
  # @ contact_form
161
+ #: contact_form.php:272
162
  msgid "Use email of wordpress user:"
163
  msgstr "Użyj adresu e-mail użytkownika:"
164
 
165
  # @ contact_form
166
+ #: contact_form.php:278
167
  msgid "Select user name"
168
  msgstr "Wybierz użytkownika"
169
 
170
  # @ contact_form
171
+ #: contact_form.php:283
172
  msgid "Set a name of user who will get messages from a contact form."
173
  msgstr "Wybierz użytkownika, który będzie dostawał wiadomości z formularza."
174
 
175
  # @ contact_form
176
+ #: contact_form.php:287
177
  msgid "Use this email:"
178
  msgstr "Wybierz ten e-mail:"
179
 
180
  # @ contact_form
181
+ #: contact_form.php:293
182
  msgid "Set an email address which will be used for messages receiving."
183
  msgstr "Ustaw adres e-mail, który będzie używany do odbierania wiadomości."
184
 
185
  # @ contact_form
186
+ #: contact_form.php:297
187
  msgid "Additional options"
188
  msgstr "Dodatkowe opcje"
189
 
190
  # @ contact_form
191
+ #: contact_form.php:300
192
  msgid "Display Attachment block"
193
  msgstr "Wyświetlaj blok załączników"
194
 
195
  # @ contact_form
196
+ #: contact_form.php:305
197
  msgid "Users can attach files of the following types"
198
  msgstr "Można załączać pliki następujących typów"
199
 
200
  # @ contact_form
201
+ #: contact_form.php:309
202
  msgid "Display Attachment explanations"
203
  msgstr ""
204
 
205
  # @ contact_form
206
+ #: contact_form.php:314
207
  msgid "Display explanations after Attachment block"
208
  msgstr ""
209
 
210
  # @ contact_form
211
+ #: contact_form.php:318
212
  msgid "Display Send me a copy block"
213
  msgstr "Wyświetlaj blok wysyłania kopii do nadawcy"
214
 
215
+ #: contact_form.php:324
216
  msgid "What use?"
217
  msgstr ""
218
 
219
  # @ contact_form
220
+ #: contact_form.php:329
221
  msgid "Wp-mail"
222
  msgstr "Wp-mail"
223
 
224
+ #: contact_form.php:330
225
  msgid "To send mail you can use the wordpress wp_mail function"
226
  msgstr ""
227
 
228
  # @ contact_form
229
+ #: contact_form.php:338
230
  msgid "Mail"
231
  msgstr "Mail"
232
 
233
+ #: contact_form.php:339
234
  msgid "To send mail you can use the php mail function"
235
  msgstr ""
236
 
237
  # @ contact_form
238
+ #: contact_form.php:343
239
  msgid "Change FROM fields of the contact form"
240
  msgstr "Zmień od pola formularza"
241
 
242
+ #: contact_form.php:349
243
  msgid "Display additional info in email"
244
  msgstr ""
245
 
246
  # @ contact_form
247
+ #: contact_form.php:354
248
+ #: contact_form.php:673
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:678
255
  msgid "Date/Time"
256
  msgstr "Data/czas"
257
 
258
  # @ contact_form
259
+ #: contact_form.php:356
260
+ #: contact_form.php:683
261
  msgid "Coming from (referer)"
262
  msgstr "Przekierowane z (referrer)"
263
 
264
  # @ contact_form
265
+ #: contact_form.php:357
266
+ #: contact_form.php:688
267
  msgid "Using (user agent)"
268
  msgstr "Klient (program użytkownika)"
269
 
270
  # @ contact_form
271
+ #: contact_form.php:361
272
  msgid "Change label for fields of the contact form"
273
  msgstr "Zmień etykiety pól formularza"
274
 
275
+ #: contact_form.php:374
276
+ msgid "Action after the send mail"
277
+ msgstr ""
278
+
279
+ # @ contact_form
280
+ #: contact_form.php:376
281
+ #, fuzzy
282
+ msgid "Display text"
283
+ msgstr "Wyświetlaj blok załączników"
284
+
285
+ #: contact_form.php:377
286
+ msgid "Text"
287
+ msgstr ""
288
+
289
+ #: contact_form.php:378
290
+ msgid "Redirect to page"
291
+ msgstr ""
292
+
293
+ #: contact_form.php:379
294
+ msgid "Url"
295
+ msgstr ""
296
+
297
  # @ default
298
+ #: contact_form.php:384
299
  msgid "Save Changes"
300
  msgstr "Zapisz zmiany"
301
 
302
  # @ contact_form
303
+ #: contact_form.php:417
 
 
 
 
 
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:475
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:483
314
  msgid "Send me a copy"
315
  msgstr "Wyślij mi kopię"
316
 
317
  # @ contact_form
318
+ #: contact_form.php:493
319
  msgid "Submit"
320
  msgstr "Wyślij"
321
 
322
  # @ contact_form
323
+ #: contact_form.php:532
324
  msgid "Your name is required."
325
  msgstr "Podanie imienia jest wymagane."
326
 
327
  # @ contact_form
328
+ #: contact_form.php:533
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:534
334
  msgid "Subject text is required."
335
  msgstr "Podanie tematu jest wymagane."
336
 
337
  # @ contact_form
338
+ #: contact_form.php:535
339
  msgid "Message text is required."
340
  msgstr "Wiadomość musi mieć jakąś treść."
341
 
342
  # @ contact_form
343
+ #: contact_form.php:536
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:567
349
  msgid "Attachment is broken."
350
  msgstr "Załącznik jest uszkodzony."
351
 
352
  # @ contact_form
353
+ #: contact_form.php:580
354
  msgid "Please complete the CAPTCHA."
355
  msgstr "Proszę dokładnie przepisać kod."
356
 
357
  # @ contact_form
358
+ #: contact_form.php:696
359
  msgid "Contact from"
360
  msgstr "Kontakt z"
361
 
362
  # @ contact_form
363
+ #: contact_form.php:701
364
  msgid "Name"
365
  msgstr "Imię"
366
 
367
  # @ contact_form
368
+ #: contact_form.php:704
369
  msgid "Email"
370
  msgstr "E-mail"
371
 
372
  # @ contact_form
373
+ #: contact_form.php:707
374
  msgid "Subject"
375
  msgstr "Temat"
376
 
377
  # @ contact_form
378
+ #: contact_form.php:710
379
  msgid "Message"
380
  msgstr "Wiadomość"
381
 
382
  # @ contact_form
383
+ #: contact_form.php:713
384
  msgid "Site"
385
  msgstr "Strona www"
386
 
387
+ #: contact_form.php:758
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:812
393
  msgid "FAQ"
394
  msgstr "FAQ"
395
 
396
  # @ contact_form
397
+ #: contact_form.php:813
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-06-18 13:17+0300\n"
6
- "PO-Revision-Date: 2012-06-18 13:17+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 "Leia Mais"
29
 
30
  #: contact_form.php:78
31
- #: contact_form.php:750
32
- #: contact_form.php:759
33
  msgid "Settings"
34
  msgstr "Configurações"
35
 
@@ -59,7 +59,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
59
  msgstr "Se você tem quaisquer perguntas, por favor entre em contato através do email plugin@bestwebsoft.com ou preencha nosso formulário de contato pelo site. "
60
 
61
  #: contact_form.php:108
62
- #: contact_form.php:242
63
  msgid "Contact Form Options"
64
  msgstr "Opções do formulário de contato"
65
 
@@ -68,242 +68,269 @@ msgid "Contact Form"
68
  msgstr "Formulário de contato"
69
 
70
  #: contact_form.php:136
71
- #: contact_form.php:177
72
- #: contact_form.php:210
73
- #: contact_form.php:346
74
  msgid "Name:"
75
  msgstr "Nome:"
76
 
77
  #: contact_form.php:137
78
- #: contact_form.php:178
79
- #: contact_form.php:211
80
- #: contact_form.php:347
81
  msgid "E-Mail Address:"
82
  msgstr "Endereço de E-mail:"
83
 
84
  #: contact_form.php:138
85
- #: contact_form.php:179
86
- #: contact_form.php:212
87
- #: contact_form.php:348
88
  msgid "Subject:"
89
  msgstr "Assunto:"
90
 
91
  #: contact_form.php:139
92
- #: contact_form.php:180
93
- #: contact_form.php:213
94
- #: contact_form.php:349
95
  msgid "Message:"
96
  msgstr "Mensagem:"
97
 
98
  #: contact_form.php:140
99
- #: contact_form.php:181
100
- #: contact_form.php:214
101
- #: contact_form.php:350
102
  msgid "Attachment:"
103
  msgstr "Anexo:"
104
 
105
- #: contact_form.php:222
106
- #: contact_form.php:231
 
 
 
 
 
 
 
 
 
 
107
  msgid "Options saved."
108
  msgstr "Opções salvas."
109
 
110
- #: contact_form.php:225
111
  msgid "Such user is not exist. Settings are not saved."
112
  msgstr "Tal usuári não existe. Configurações não foram salvas."
113
 
114
- #: contact_form.php:234
115
  msgid "Please input correct email. Settings are not saved."
116
  msgstr "Por favor digite o email corretamente. Configurações não foram salvas."
117
 
118
- #: contact_form.php:247
119
  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:"
120
  msgstr "Se você gostaria de adicionar o Formulário de Contato no seu site, apenas copie e cole este código na sua postagem ou página ou widget:"
121
 
122
- #: contact_form.php:248
123
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
124
  msgstr "Se informações nos campos abaixo estão vazias, então as mensagens serão enviadas para um endereço que foi especificado durante o registro."
125
 
126
- #: contact_form.php:252
127
  msgid "Use email of wordpress user:"
128
  msgstr "Use o email de um usuário do wordpress:"
129
 
130
- #: contact_form.php:258
131
  msgid "Select user name"
132
  msgstr "Selecione o nome do usuário"
133
 
134
- #: contact_form.php:263
135
  msgid "Set a name of user who will get messages from a contact form."
136
  msgstr "Determine um nome de usuário que receberá as mensagens enviadas pelo Formulário de Contato."
137
 
138
- #: contact_form.php:267
139
  msgid "Use this email:"
140
  msgstr "Use este email:"
141
 
142
- #: contact_form.php:273
143
  msgid "Set an email address which will be used for messages receiving."
144
  msgstr "Configure um endereço de email que será usado para o recebimento de mensagens."
145
 
146
- #: contact_form.php:277
147
  msgid "Additional options"
148
  msgstr "Opções adicionais"
149
 
150
- #: contact_form.php:280
151
  msgid "Display Attachment block"
152
  msgstr "Mostrar opção para anexar arquivos"
153
 
154
- #: contact_form.php:285
155
  msgid "Users can attach files of the following types"
156
  msgstr "Usuários pode anexar arquivos do seguinte tipo:"
157
 
158
- #: contact_form.php:289
159
  msgid "Display Attachment explanations"
160
  msgstr ""
161
 
162
- #: contact_form.php:294
163
  msgid "Display explanations after Attachment block"
164
  msgstr ""
165
 
166
- #: contact_form.php:298
167
  msgid "Display Send me a copy block"
168
  msgstr "Mostrar a opção Envie-me um cópia"
169
 
170
- #: contact_form.php:304
171
  msgid "What use?"
172
  msgstr ""
173
 
174
- #: contact_form.php:309
175
  msgid "Wp-mail"
176
  msgstr "Wp-mail"
177
 
178
- #: contact_form.php:310
179
  msgid "To send mail you can use the wordpress wp_mail function"
180
  msgstr ""
181
 
182
- #: contact_form.php:318
183
  msgid "Mail"
184
  msgstr "Mail"
185
 
186
- #: contact_form.php:319
187
  msgid "To send mail you can use the php mail function"
188
  msgstr ""
189
 
190
- #: contact_form.php:323
191
  msgid "Change FROM fields of the contact form"
192
  msgstr "Mudar de campos do formulário de contato"
193
 
194
- #: contact_form.php:329
195
  msgid "Display additional info in email"
196
  msgstr ""
197
 
198
- #: contact_form.php:334
199
- #: contact_form.php:621
200
  msgid "Sent from (ip address)"
201
  msgstr "Enviado de (Endereço IP)"
202
 
203
- #: contact_form.php:335
204
- #: contact_form.php:626
205
  msgid "Date/Time"
206
  msgstr "DAta / Hora"
207
 
208
- #: contact_form.php:336
209
- #: contact_form.php:631
210
  msgid "Coming from (referer)"
211
  msgstr "Vindo de (origem)"
212
 
213
- #: contact_form.php:337
214
- #: contact_form.php:636
215
  msgid "Using (user agent)"
216
  msgstr "Usando (cliente de email)"
217
 
218
- #: contact_form.php:341
219
  msgid "Change label for fields of the contact form"
220
  msgstr "Mudar rótulo para os campos no formulário de contato"
221
 
222
- #: contact_form.php:356
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
223
  msgid "Save Changes"
224
  msgstr "Salvar mudanças"
225
 
226
- #: contact_form.php:389
227
- msgid "Thank you for contacting us."
228
- msgstr "Obrigado por nos contactar"
229
-
230
- #: contact_form.php:394
231
  msgid "Sorry, your e-mail could not be delivered."
232
  msgstr "Desculpe, seu e-mail não pode ser entregue."
233
 
234
- #: contact_form.php:452
235
  msgid "You can attach files of the following types"
236
  msgstr "Você pode anexar arquivos do seguinte tipo"
237
 
238
- #: contact_form.php:460
239
  msgid "Send me a copy"
240
  msgstr "Envie-me uma cópia"
241
 
242
- #: contact_form.php:470
243
  msgid "Submit"
244
  msgstr "Enviar"
245
 
246
- #: contact_form.php:486
247
  msgid "Your name is required."
248
  msgstr "Seu nome é obrigatório"
249
 
250
- #: contact_form.php:487
251
  msgid "A proper e-mail address is required."
252
  msgstr "Um e-mail correto é obrigatório."
253
 
254
- #: contact_form.php:488
255
  msgid "Subject text is required."
256
  msgstr "O Assunto da mensagem é obrigatório."
257
 
258
- #: contact_form.php:489
259
  msgid "Message text is required."
260
  msgstr "O texto da Mensagem é obrigatório."
261
 
262
- #: contact_form.php:490
263
  msgid "Please make corrections below and try again."
264
  msgstr "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
265
 
266
- #: contact_form.php:521
267
  msgid "Attachment is broken."
268
  msgstr "Impossível anexar arquivo. "
269
 
270
- #: contact_form.php:534
271
  msgid "Please complete the CAPTCHA."
272
  msgstr "Por favor, complete a resposta da charada ."
273
 
274
- #: contact_form.php:644
275
  msgid "Contact from"
276
  msgstr "Formulário de Contato"
277
 
278
- #: contact_form.php:649
279
  msgid "Name"
280
  msgstr "Nome"
281
 
282
- #: contact_form.php:652
283
  msgid "Email"
284
  msgstr "E-Mail"
285
 
286
- #: contact_form.php:655
287
  msgid "Subject"
288
  msgstr "Assunto"
289
 
290
- #: contact_form.php:658
291
  msgid "Message"
292
  msgstr "Mensagem"
293
 
294
- #: contact_form.php:661
295
  msgid "Site"
296
  msgstr "Site"
297
 
298
- #: contact_form.php:706
299
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
300
  msgstr "Se você consegue ver esta MENSAGEM então seu cliente não aceita tipos MIME! Favor usar um cliente mais atualizado."
301
 
302
- #: contact_form.php:760
303
  msgid "FAQ"
304
  msgstr "Perguntas Frequentes"
305
 
306
- #: contact_form.php:761
307
  msgid "Support"
308
  msgstr "Suporte"
309
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-27 17:42+0300\n"
6
+ "PO-Revision-Date: 2012-06-27 17:42+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:802
32
+ #: contact_form.php:811
33
  msgid "Settings"
34
  msgstr "Configurações"
35
 
59
  msgstr "Se você tem quaisquer perguntas, por favor entre em contato através do email plugin@bestwebsoft.com ou preencha nosso formulário de contato pelo site. "
60
 
61
  #: contact_form.php:108
62
+ #: contact_form.php:262
63
  msgid "Contact Form Options"
64
  msgstr "Opções do formulário de contato"
65
 
68
  msgstr "Formulário de contato"
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 "Nome:"
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 "Endereço de 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 "Assunto:"
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 "Mensagem:"
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 "Anexo:"
104
 
105
+ #: contact_form.php:142
106
+ #: contact_form.php:186
107
+ msgid "Thank you for contacting us."
108
+ msgstr "Obrigado por nos contactar"
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 "Opções salvas."
119
 
120
+ #: contact_form.php:245
121
  msgid "Such user is not exist. Settings are not saved."
122
  msgstr "Tal usuári não existe. Configurações não foram salvas."
123
 
124
+ #: contact_form.php:254
125
  msgid "Please input correct email. Settings are not saved."
126
  msgstr "Por favor digite o email corretamente. Configurações não foram salvas."
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 "Se você gostaria de adicionar o Formulário de Contato no seu site, apenas copie e cole este código na sua postagem ou página ou widget:"
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 "Se informações nos campos abaixo estão vazias, então as mensagens serão enviadas para um endereço que foi especificado durante o registro."
135
 
136
+ #: contact_form.php:272
137
  msgid "Use email of wordpress user:"
138
  msgstr "Use o email de um usuário do wordpress:"
139
 
140
+ #: contact_form.php:278
141
  msgid "Select user name"
142
  msgstr "Selecione o nome do usuário"
143
 
144
+ #: contact_form.php:283
145
  msgid "Set a name of user who will get messages from a contact form."
146
  msgstr "Determine um nome de usuário que receberá as mensagens enviadas pelo Formulário de Contato."
147
 
148
+ #: contact_form.php:287
149
  msgid "Use this email:"
150
  msgstr "Use este email:"
151
 
152
+ #: contact_form.php:293
153
  msgid "Set an email address which will be used for messages receiving."
154
  msgstr "Configure um endereço de email que será usado para o recebimento de mensagens."
155
 
156
+ #: contact_form.php:297
157
  msgid "Additional options"
158
  msgstr "Opções adicionais"
159
 
160
+ #: contact_form.php:300
161
  msgid "Display Attachment block"
162
  msgstr "Mostrar opção para anexar arquivos"
163
 
164
+ #: contact_form.php:305
165
  msgid "Users can attach files of the following types"
166
  msgstr "Usuários pode anexar arquivos do seguinte tipo:"
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 "Mostrar a opção Envie-me um cópia"
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 ""
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 ""
199
 
200
+ #: contact_form.php:343
201
  msgid "Change FROM fields of the contact form"
202
  msgstr "Mudar de campos do formulário de contato"
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 "Enviado de (Endereço IP)"
212
 
213
+ #: contact_form.php:355
214
+ #: contact_form.php:678
215
  msgid "Date/Time"
216
  msgstr "DAta / Hora"
217
 
218
+ #: contact_form.php:356
219
+ #: contact_form.php:683
220
  msgid "Coming from (referer)"
221
  msgstr "Vindo de (origem)"
222
 
223
+ #: contact_form.php:357
224
+ #: contact_form.php:688
225
  msgid "Using (user agent)"
226
  msgstr "Usando (cliente de email)"
227
 
228
+ #: contact_form.php:361
229
  msgid "Change label for fields of the contact form"
230
  msgstr "Mudar rótulo para os campos no formulário de contato"
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 "Mostrar opção para anexar arquivos"
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 "Salvar mudanças"
256
 
257
+ #: contact_form.php:417
 
 
 
 
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:475
262
  msgid "You can attach files of the following types"
263
  msgstr "Você pode anexar arquivos do seguinte tipo"
264
 
265
+ #: contact_form.php:483
266
  msgid "Send me a copy"
267
  msgstr "Envie-me uma cópia"
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 "Seu nome é obrigatório"
276
 
277
+ #: contact_form.php:533
278
  msgid "A proper e-mail address is required."
279
  msgstr "Um e-mail correto é obrigatório."
280
 
281
+ #: contact_form.php:534
282
  msgid "Subject text is required."
283
  msgstr "O Assunto da mensagem é obrigatório."
284
 
285
+ #: contact_form.php:535
286
  msgid "Message text is required."
287
  msgstr "O texto da Mensagem é obrigatório."
288
 
289
+ #: contact_form.php:536
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:567
294
  msgid "Attachment is broken."
295
  msgstr "Impossível anexar arquivo. "
296
 
297
+ #: contact_form.php:580
298
  msgid "Please complete the CAPTCHA."
299
  msgstr "Por favor, complete a resposta da charada ."
300
 
301
+ #: contact_form.php:696
302
  msgid "Contact from"
303
  msgstr "Formulário de Contato"
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 "Assunto"
316
 
317
+ #: contact_form.php:710
318
  msgid "Message"
319
  msgstr "Mensagem"
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 "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:812
330
  msgid "FAQ"
331
  msgstr "Perguntas Frequentes"
332
 
333
+ #: contact_form.php:813
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-06-18 13:17+0300\n"
6
- "PO-Revision-Date: 2012-06-18 13:17+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 "Leia Mais"
29
 
30
  #: contact_form.php:78
31
- #: contact_form.php:750
32
- #: contact_form.php:759
33
  msgid "Settings"
34
  msgstr "Configurações"
35
 
@@ -59,7 +59,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
59
  msgstr "Se você tem quaisquer perguntas, por favor entre em contato através do email plugin@bestwebsoft.com ou preencha nosso formulário de contato pelo site. "
60
 
61
  #: contact_form.php:108
62
- #: contact_form.php:242
63
  msgid "Contact Form Options"
64
  msgstr "Opções do formulário de contato"
65
 
@@ -68,242 +68,269 @@ msgid "Contact Form"
68
  msgstr "Formulário de contato"
69
 
70
  #: contact_form.php:136
71
- #: contact_form.php:177
72
- #: contact_form.php:210
73
- #: contact_form.php:346
74
  msgid "Name:"
75
  msgstr "Nome:"
76
 
77
  #: contact_form.php:137
78
- #: contact_form.php:178
79
- #: contact_form.php:211
80
- #: contact_form.php:347
81
  msgid "E-Mail Address:"
82
  msgstr "Endereço de E-mail:"
83
 
84
  #: contact_form.php:138
85
- #: contact_form.php:179
86
- #: contact_form.php:212
87
- #: contact_form.php:348
88
  msgid "Subject:"
89
  msgstr "Assunto:"
90
 
91
  #: contact_form.php:139
92
- #: contact_form.php:180
93
- #: contact_form.php:213
94
- #: contact_form.php:349
95
  msgid "Message:"
96
  msgstr "Mensagem:"
97
 
98
  #: contact_form.php:140
99
- #: contact_form.php:181
100
- #: contact_form.php:214
101
- #: contact_form.php:350
102
  msgid "Attachment:"
103
  msgstr "Anexo:"
104
 
105
- #: contact_form.php:222
106
- #: contact_form.php:231
 
 
 
 
 
 
 
 
 
 
107
  msgid "Options saved."
108
  msgstr "Opções salvas."
109
 
110
- #: contact_form.php:225
111
  msgid "Such user is not exist. Settings are not saved."
112
  msgstr "Tal usuári não existe. Configurações não foram salvas."
113
 
114
- #: contact_form.php:234
115
  msgid "Please input correct email. Settings are not saved."
116
  msgstr "Por favor digite o email corretamente. Configurações não foram salvas."
117
 
118
- #: contact_form.php:247
119
  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:"
120
  msgstr "Se você gostaria de adicionar o Formulário de Contato no seu site, apenas copie e cole este código na sua postagem ou página ou widget:"
121
 
122
- #: contact_form.php:248
123
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
124
  msgstr "Se informações nos campos abaixo estão vazias, então as mensagens serão enviadas para um endereço que foi especificado durante o registro."
125
 
126
- #: contact_form.php:252
127
  msgid "Use email of wordpress user:"
128
  msgstr "Use o email de um usuário do wordpress:"
129
 
130
- #: contact_form.php:258
131
  msgid "Select user name"
132
  msgstr "Selecione o nome do usuário"
133
 
134
- #: contact_form.php:263
135
  msgid "Set a name of user who will get messages from a contact form."
136
  msgstr "Determine um nome de usuário que receberá as mensagens enviadas pelo Formulário de Contato."
137
 
138
- #: contact_form.php:267
139
  msgid "Use this email:"
140
  msgstr "Use este email:"
141
 
142
- #: contact_form.php:273
143
  msgid "Set an email address which will be used for messages receiving."
144
  msgstr "Configure um endereço de email que será usado para o recebimento de mensagens."
145
 
146
- #: contact_form.php:277
147
  msgid "Additional options"
148
  msgstr "Opções adicionais"
149
 
150
- #: contact_form.php:280
151
  msgid "Display Attachment block"
152
  msgstr "Mostrar opção para anexar arquivos"
153
 
154
- #: contact_form.php:285
155
  msgid "Users can attach files of the following types"
156
  msgstr "Usuários pode anexar arquivos do seguinte tipo:"
157
 
158
- #: contact_form.php:289
159
  msgid "Display Attachment explanations"
160
  msgstr ""
161
 
162
- #: contact_form.php:294
163
  msgid "Display explanations after Attachment block"
164
  msgstr ""
165
 
166
- #: contact_form.php:298
167
  msgid "Display Send me a copy block"
168
  msgstr "Mostrar a opção Envie-me um cópia"
169
 
170
- #: contact_form.php:304
171
  msgid "What use?"
172
  msgstr ""
173
 
174
- #: contact_form.php:309
175
  msgid "Wp-mail"
176
  msgstr "Wp-mail"
177
 
178
- #: contact_form.php:310
179
  msgid "To send mail you can use the wordpress wp_mail function"
180
  msgstr ""
181
 
182
- #: contact_form.php:318
183
  msgid "Mail"
184
  msgstr "Mail"
185
 
186
- #: contact_form.php:319
187
  msgid "To send mail you can use the php mail function"
188
  msgstr ""
189
 
190
- #: contact_form.php:323
191
  msgid "Change FROM fields of the contact form"
192
  msgstr ""
193
 
194
- #: contact_form.php:329
195
  msgid "Display additional info in email"
196
  msgstr ""
197
 
198
- #: contact_form.php:334
199
- #: contact_form.php:621
200
  msgid "Sent from (ip address)"
201
  msgstr "Enviado de (Endereço IP)"
202
 
203
- #: contact_form.php:335
204
- #: contact_form.php:626
205
  msgid "Date/Time"
206
  msgstr "DAta / Hora"
207
 
208
- #: contact_form.php:336
209
- #: contact_form.php:631
210
  msgid "Coming from (referer)"
211
  msgstr "Vindo de (origem)"
212
 
213
- #: contact_form.php:337
214
- #: contact_form.php:636
215
  msgid "Using (user agent)"
216
  msgstr "Usando (cliente de email)"
217
 
218
- #: contact_form.php:341
219
  msgid "Change label for fields of the contact form"
220
  msgstr "Mudar rótulo para os campos no formulário de contato"
221
 
222
- #: contact_form.php:356
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
223
  msgid "Save Changes"
224
  msgstr "Salvar mudanças"
225
 
226
- #: contact_form.php:389
227
- msgid "Thank you for contacting us."
228
- msgstr "Obrigado por nos contactar"
229
-
230
- #: contact_form.php:394
231
  msgid "Sorry, your e-mail could not be delivered."
232
  msgstr "Desculpe, seu e-mail não pode ser entregue."
233
 
234
- #: contact_form.php:452
235
  msgid "You can attach files of the following types"
236
  msgstr "Você pode anexar arquivos do seguinte tipo"
237
 
238
- #: contact_form.php:460
239
  msgid "Send me a copy"
240
  msgstr "Envie-me uma cópia"
241
 
242
- #: contact_form.php:470
243
  msgid "Submit"
244
  msgstr "Enviar"
245
 
246
- #: contact_form.php:486
247
  msgid "Your name is required."
248
  msgstr "Seu nome é obrigatório"
249
 
250
- #: contact_form.php:487
251
  msgid "A proper e-mail address is required."
252
  msgstr "Um e-mail correto é obrigatório."
253
 
254
- #: contact_form.php:488
255
  msgid "Subject text is required."
256
  msgstr "O Assunto da mensagem é obrigatório."
257
 
258
- #: contact_form.php:489
259
  msgid "Message text is required."
260
  msgstr "O texto da Mensagem é obrigatório."
261
 
262
- #: contact_form.php:490
263
  msgid "Please make corrections below and try again."
264
  msgstr "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
265
 
266
- #: contact_form.php:521
267
  msgid "Attachment is broken."
268
  msgstr "Impossível anexar arquivo. "
269
 
270
- #: contact_form.php:534
271
  msgid "Please complete the CAPTCHA."
272
  msgstr "Por favor, complete a resposta da charada ."
273
 
274
- #: contact_form.php:644
275
  msgid "Contact from"
276
  msgstr "Formulário de Contato"
277
 
278
- #: contact_form.php:649
279
  msgid "Name"
280
  msgstr "Nome"
281
 
282
- #: contact_form.php:652
283
  msgid "Email"
284
  msgstr "E-Mail"
285
 
286
- #: contact_form.php:655
287
  msgid "Subject"
288
  msgstr "Assunto"
289
 
290
- #: contact_form.php:658
291
  msgid "Message"
292
  msgstr "Mensagem"
293
 
294
- #: contact_form.php:661
295
  msgid "Site"
296
  msgstr "Site"
297
 
298
- #: contact_form.php:706
299
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
300
  msgstr "Se você consegue ver esta MENSAGEM então seu cliente não aceita tipos MIME! Favor usar um cliente mais atualizado."
301
 
302
- #: contact_form.php:760
303
  msgid "FAQ"
304
  msgstr "Perguntas Frequentes"
305
 
306
- #: contact_form.php:761
307
  msgid "Support"
308
  msgstr "Suporte"
309
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-27 17:42+0300\n"
6
+ "PO-Revision-Date: 2012-06-27 17:42+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:802
32
+ #: contact_form.php:811
33
  msgid "Settings"
34
  msgstr "Configurações"
35
 
59
  msgstr "Se você tem quaisquer perguntas, por favor entre em contato através do email plugin@bestwebsoft.com ou preencha nosso formulário de contato pelo site. "
60
 
61
  #: contact_form.php:108
62
+ #: contact_form.php:262
63
  msgid "Contact Form Options"
64
  msgstr "Opções do formulário de contato"
65
 
68
  msgstr "Formulário de contato"
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 "Nome:"
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 "Endereço de 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 "Assunto:"
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 "Mensagem:"
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 "Anexo:"
104
 
105
+ #: contact_form.php:142
106
+ #: contact_form.php:186
107
+ msgid "Thank you for contacting us."
108
+ msgstr "Obrigado por nos contactar"
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 "Opções salvas."
119
 
120
+ #: contact_form.php:245
121
  msgid "Such user is not exist. Settings are not saved."
122
  msgstr "Tal usuári não existe. Configurações não foram salvas."
123
 
124
+ #: contact_form.php:254
125
  msgid "Please input correct email. Settings are not saved."
126
  msgstr "Por favor digite o email corretamente. Configurações não foram salvas."
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 "Se você gostaria de adicionar o Formulário de Contato no seu site, apenas copie e cole este código na sua postagem ou página ou widget:"
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 "Se informações nos campos abaixo estão vazias, então as mensagens serão enviadas para um endereço que foi especificado durante o registro."
135
 
136
+ #: contact_form.php:272
137
  msgid "Use email of wordpress user:"
138
  msgstr "Use o email de um usuário do wordpress:"
139
 
140
+ #: contact_form.php:278
141
  msgid "Select user name"
142
  msgstr "Selecione o nome do usuário"
143
 
144
+ #: contact_form.php:283
145
  msgid "Set a name of user who will get messages from a contact form."
146
  msgstr "Determine um nome de usuário que receberá as mensagens enviadas pelo Formulário de Contato."
147
 
148
+ #: contact_form.php:287
149
  msgid "Use this email:"
150
  msgstr "Use este email:"
151
 
152
+ #: contact_form.php:293
153
  msgid "Set an email address which will be used for messages receiving."
154
  msgstr "Configure um endereço de email que será usado para o recebimento de mensagens."
155
 
156
+ #: contact_form.php:297
157
  msgid "Additional options"
158
  msgstr "Opções adicionais"
159
 
160
+ #: contact_form.php:300
161
  msgid "Display Attachment block"
162
  msgstr "Mostrar opção para anexar arquivos"
163
 
164
+ #: contact_form.php:305
165
  msgid "Users can attach files of the following types"
166
  msgstr "Usuários pode anexar arquivos do seguinte tipo:"
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 "Mostrar a opção Envie-me um cópia"
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 ""
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 ""
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 "Enviado de (Endereço IP)"
212
 
213
+ #: contact_form.php:355
214
+ #: contact_form.php:678
215
  msgid "Date/Time"
216
  msgstr "DAta / Hora"
217
 
218
+ #: contact_form.php:356
219
+ #: contact_form.php:683
220
  msgid "Coming from (referer)"
221
  msgstr "Vindo de (origem)"
222
 
223
+ #: contact_form.php:357
224
+ #: contact_form.php:688
225
  msgid "Using (user agent)"
226
  msgstr "Usando (cliente de email)"
227
 
228
+ #: contact_form.php:361
229
  msgid "Change label for fields of the contact form"
230
  msgstr "Mudar rótulo para os campos no formulário de contato"
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 "Mostrar opção para anexar arquivos"
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 "Salvar mudanças"
256
 
257
+ #: contact_form.php:417
 
 
 
 
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:475
262
  msgid "You can attach files of the following types"
263
  msgstr "Você pode anexar arquivos do seguinte tipo"
264
 
265
+ #: contact_form.php:483
266
  msgid "Send me a copy"
267
  msgstr "Envie-me uma cópia"
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 "Seu nome é obrigatório"
276
 
277
+ #: contact_form.php:533
278
  msgid "A proper e-mail address is required."
279
  msgstr "Um e-mail correto é obrigatório."
280
 
281
+ #: contact_form.php:534
282
  msgid "Subject text is required."
283
  msgstr "O Assunto da mensagem é obrigatório."
284
 
285
+ #: contact_form.php:535
286
  msgid "Message text is required."
287
  msgstr "O texto da Mensagem é obrigatório."
288
 
289
+ #: contact_form.php:536
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:567
294
  msgid "Attachment is broken."
295
  msgstr "Impossível anexar arquivo. "
296
 
297
+ #: contact_form.php:580
298
  msgid "Please complete the CAPTCHA."
299
  msgstr "Por favor, complete a resposta da charada ."
300
 
301
+ #: contact_form.php:696
302
  msgid "Contact from"
303
  msgstr "Formulário de Contato"
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 "Assunto"
316
 
317
+ #: contact_form.php:710
318
  msgid "Message"
319
  msgstr "Mensagem"
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 "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:812
330
  msgid "FAQ"
331
  msgstr "Perguntas Frequentes"
332
 
333
+ #: contact_form.php:813
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-06-18 13:17+0300\n"
6
- "PO-Revision-Date: 2012-06-18 13:19+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:750
32
- #: contact_form.php:759
33
  msgid "Settings"
34
  msgstr "Настройки"
35
 
@@ -59,7 +59,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
59
  msgstr "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
60
 
61
  #: contact_form.php:108
62
- #: contact_form.php:242
63
  msgid "Contact Form Options"
64
  msgstr "Настройки Контактной Формы"
65
 
@@ -68,242 +68,268 @@ msgid "Contact Form"
68
  msgstr "Контактная Форма"
69
 
70
  #: contact_form.php:136
71
- #: contact_form.php:177
72
- #: contact_form.php:210
73
- #: contact_form.php:346
74
  msgid "Name:"
75
  msgstr "Имя:"
76
 
77
  #: contact_form.php:137
78
- #: contact_form.php:178
79
- #: contact_form.php:211
80
- #: contact_form.php:347
81
  msgid "E-Mail Address:"
82
  msgstr "E-mail адрес:"
83
 
84
  #: contact_form.php:138
85
- #: contact_form.php:179
86
- #: contact_form.php:212
87
- #: contact_form.php:348
88
  msgid "Subject:"
89
  msgstr "Тема:"
90
 
91
  #: contact_form.php:139
92
- #: contact_form.php:180
93
- #: contact_form.php:213
94
- #: contact_form.php:349
95
  msgid "Message:"
96
  msgstr "Сообщение:"
97
 
98
  #: contact_form.php:140
99
- #: contact_form.php:181
100
- #: contact_form.php:214
101
- #: contact_form.php:350
102
  msgid "Attachment:"
103
  msgstr "Прикрепить файл:"
104
 
105
- #: contact_form.php:222
106
- #: contact_form.php:231
 
 
 
 
 
 
 
 
 
 
107
  msgid "Options saved."
108
  msgstr "Опции сохранены"
109
 
110
- #: contact_form.php:225
111
  msgid "Such user is not exist. Settings are not saved."
112
  msgstr "Данный пользователь не найден. Настройки не сохранены"
113
 
114
- #: contact_form.php:234
115
  msgid "Please input correct email. Settings are not saved."
116
  msgstr "Пожалуйста, введите корректный email. Настройки не сохранены."
117
 
118
- #: contact_form.php:247
119
  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:"
120
  msgstr "Если вы хотите добавить Контактную Форму на свой сайт, вам надо только скопировать и вставить шорткод в контент страницы или поста или виджета:"
121
 
122
- #: contact_form.php:248
123
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
124
  msgstr "Если информация в полях ниже отсутствует, соощения будут оправлены на email адрес, который был указан при регистрации сайта."
125
 
126
- #: contact_form.php:252
127
  msgid "Use email of wordpress user:"
128
  msgstr "Email пользователя сайта:"
129
 
130
- #: contact_form.php:258
131
  msgid "Select user name"
132
  msgstr "Выберите имя пользователя"
133
 
134
- #: contact_form.php:263
135
  msgid "Set a name of user who will get messages from a contact form."
136
  msgstr "Укажите логин пользователя, который будет получать сообщения контактной формы."
137
 
138
- #: contact_form.php:267
139
  msgid "Use this email:"
140
  msgstr "Использовать этот email:"
141
 
142
- #: contact_form.php:273
143
  msgid "Set an email address which will be used for messages receiving."
144
  msgstr "Укажите email адрес, на который будут отправляться сообщения."
145
 
146
- #: contact_form.php:277
147
  msgid "Additional options"
148
  msgstr "Дополнительные настройки"
149
 
150
- #: contact_form.php:280
151
  msgid "Display Attachment block"
152
  msgstr "Отобразить блок Прикрепить файл"
153
 
154
- #: contact_form.php:285
155
  msgid "Users can attach files of the following types"
156
  msgstr "Пользователи могут прикрепить файлы таких типов"
157
 
158
- #: contact_form.php:289
159
  msgid "Display Attachment explanations"
160
  msgstr "Отобразить пояснения для блока Прикрепить файл"
161
 
162
- #: contact_form.php:294
163
  msgid "Display explanations after Attachment block"
164
  msgstr "Отобразить пояснения после блока Прикрепить файл"
165
 
166
- #: contact_form.php:298
167
  msgid "Display Send me a copy block"
168
  msgstr "Отобразить блок Отправить мне копию"
169
 
170
- #: contact_form.php:304
171
  msgid "What use?"
172
  msgstr "Что использовать?"
173
 
174
- #: contact_form.php:309
175
  msgid "Wp-mail"
176
  msgstr "Wp-mail"
177
 
178
- #: contact_form.php:310
179
  msgid "To send mail you can use the wordpress wp_mail function"
180
  msgstr "Для отправки почты вы можете использовать функцию WordPress wp_mail"
181
 
182
- #: contact_form.php:318
183
  msgid "Mail"
184
  msgstr "Mail"
185
 
186
- #: contact_form.php:319
187
  msgid "To send mail you can use the php mail function"
188
  msgstr "Для отправки почты вы можете использовать функцию php mail"
189
 
190
- #: contact_form.php:323
191
  msgid "Change FROM fields of the contact form"
192
  msgstr "Изменить поле ОТ в контактной форме"
193
 
194
- #: contact_form.php:329
195
  msgid "Display additional info in email"
196
  msgstr "Отображение дополнительной информации в письме"
197
 
198
- #: contact_form.php:334
199
- #: contact_form.php:621
200
  msgid "Sent from (ip address)"
201
  msgstr "Отправлено от (ip адрес)"
202
 
203
- #: contact_form.php:335
204
- #: contact_form.php:626
205
  msgid "Date/Time"
206
  msgstr "Дата/Время"
207
 
208
- #: contact_form.php:336
209
- #: contact_form.php:631
210
  msgid "Coming from (referer)"
211
  msgstr "Пришло из (реферер)"
212
 
213
- #: contact_form.php:337
214
- #: contact_form.php:636
215
  msgid "Using (user agent)"
216
  msgstr "Используя (user agent)"
217
 
218
- #: contact_form.php:341
219
  msgid "Change label for fields of the contact form"
220
  msgstr "Изменить названия полей контактной формы"
221
 
222
- #: contact_form.php:356
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
223
  msgid "Save Changes"
224
  msgstr "Save Changes"
225
 
226
- #: contact_form.php:389
227
- msgid "Thank you for contacting us."
228
- msgstr "Спасибо за контакт с нами."
229
-
230
- #: contact_form.php:394
231
  msgid "Sorry, your e-mail could not be delivered."
232
  msgstr "Извините, ваш email не может быть отправлен."
233
 
234
- #: contact_form.php:452
235
  msgid "You can attach files of the following types"
236
  msgstr "Пользователи могут прикрепить файлы таких типов"
237
 
238
- #: contact_form.php:460
239
  msgid "Send me a copy"
240
  msgstr "Отправить мне копию"
241
 
242
- #: contact_form.php:470
243
  msgid "Submit"
244
  msgstr "Отправить"
245
 
246
- #: contact_form.php:486
247
  msgid "Your name is required."
248
  msgstr "Ваше имя - это обязательное поле."
249
 
250
- #: contact_form.php:487
251
  msgid "A proper e-mail address is required."
252
  msgstr "Поле e-mail адреса - обязательное для заполнения."
253
 
254
- #: contact_form.php:488
255
  msgid "Subject text is required."
256
  msgstr "Поле Тема - обязательное поле."
257
 
258
- #: contact_form.php:489
259
  msgid "Message text is required."
260
  msgstr "Поле Сообщение - обязательное поле."
261
 
262
- #: contact_form.php:490
263
  msgid "Please make corrections below and try again."
264
  msgstr "Пожалуйста, сделайте исправления в отмеченных полях ниже и повторите попытку."
265
 
266
- #: contact_form.php:521
267
  msgid "Attachment is broken."
268
  msgstr "Прикрепленный тип файла не поддерживается"
269
 
270
- #: contact_form.php:534
271
  msgid "Please complete the CAPTCHA."
272
  msgstr "Пожалуйста, заполните КАПЧУ."
273
 
274
- #: contact_form.php:644
275
  msgid "Contact from"
276
  msgstr "Контактная Форма"
277
 
278
- #: contact_form.php:649
279
  msgid "Name"
280
  msgstr "Имя"
281
 
282
- #: contact_form.php:652
283
  msgid "Email"
284
  msgstr "Email"
285
 
286
- #: contact_form.php:655
287
  msgid "Subject"
288
  msgstr "Тема"
289
 
290
- #: contact_form.php:658
291
  msgid "Message"
292
  msgstr "Сообщение"
293
 
294
- #: contact_form.php:661
295
  msgid "Site"
296
  msgstr "Сайт"
297
 
298
- #: contact_form.php:706
299
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
300
  msgstr "Если вы можете видеть этот MIME значит ваш почтовый клиент не поддерживает MIME тип!"
301
 
302
- #: contact_form.php:760
303
  msgid "FAQ"
304
  msgstr "FAQ"
305
 
306
- #: contact_form.php:761
307
  msgid "Support"
308
  msgstr "Поддержка"
309
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-27 17:42+0300\n"
6
+ "PO-Revision-Date: 2012-06-27 17:43+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
 
59
  msgstr "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
60
 
61
  #: contact_form.php:108
62
+ #: contact_form.php:262
63
  msgid "Contact Form Options"
64
  msgstr "Настройки Контактной Формы"
65
 
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 "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
  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 "Если информация в полях ниже отсутствует, соощения будут оправлены на email адрес, который был указан при регистрации сайта."
135
 
136
+ #: contact_form.php:272
137
  msgid "Use email of wordpress user:"
138
  msgstr "Email пользователя сайта:"
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 "Использовать этот email:"
151
 
152
+ #: contact_form.php:293
153
  msgid "Set an email address which will be used for messages receiving."
154
  msgstr "Укажите email адрес, на который будут отправляться сообщения."
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 "Для отправки почты вы можете использовать функцию WordPress 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 mail"
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 "Пришло из (реферер)"
222
 
223
+ #: contact_form.php:357
224
+ #: contact_form.php:688
225
  msgid "Using (user agent)"
226
  msgstr "Используя (user agent)"
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
+ msgid "Display text"
238
+ msgstr "Отобразить текст"
239
+
240
+ #: contact_form.php:377
241
+ msgid "Text"
242
+ msgstr "Текст"
243
+
244
+ #: contact_form.php:378
245
+ msgid "Redirect to page"
246
+ msgstr "Перенаправление на страницу"
247
+
248
+ #: contact_form.php:379
249
+ msgid "Url"
250
+ msgstr "Урл"
251
+
252
+ #: contact_form.php:384
253
  msgid "Save Changes"
254
  msgstr "Save Changes"
255
 
256
+ #: contact_form.php:417
 
 
 
 
257
  msgid "Sorry, your e-mail could not be delivered."
258
  msgstr "Извините, ваш email не может быть отправлен."
259
 
260
+ #: contact_form.php:475
261
  msgid "You can attach files of the following types"
262
  msgstr "Пользователи могут прикрепить файлы таких типов"
263
 
264
+ #: contact_form.php:483
265
  msgid "Send me a copy"
266
  msgstr "Отправить мне копию"
267
 
268
+ #: contact_form.php:493
269
  msgid "Submit"
270
  msgstr "Отправить"
271
 
272
+ #: contact_form.php:532
273
  msgid "Your name is required."
274
  msgstr "Ваше имя - это обязательное поле."
275
 
276
+ #: contact_form.php:533
277
  msgid "A proper e-mail address is required."
278
  msgstr "Поле e-mail адреса - обязательное для заполнения."
279
 
280
+ #: contact_form.php:534
281
  msgid "Subject text is required."
282
  msgstr "Поле Тема - обязательное поле."
283
 
284
+ #: contact_form.php:535
285
  msgid "Message text is required."
286
  msgstr "Поле Сообщение - обязательное поле."
287
 
288
+ #: contact_form.php:536
289
  msgid "Please make corrections below and try again."
290
  msgstr "Пожалуйста, сделайте исправления в отмеченных полях ниже и повторите попытку."
291
 
292
+ #: contact_form.php:567
293
  msgid "Attachment is broken."
294
  msgstr "Прикрепленный тип файла не поддерживается"
295
 
296
+ #: contact_form.php:580
297
  msgid "Please complete the CAPTCHA."
298
  msgstr "Пожалуйста, заполните КАПЧУ."
299
 
300
+ #: contact_form.php:696
301
  msgid "Contact from"
302
  msgstr "Контактная Форма"
303
 
304
+ #: contact_form.php:701
305
  msgid "Name"
306
  msgstr "Имя"
307
 
308
+ #: contact_form.php:704
309
  msgid "Email"
310
  msgstr "Email"
311
 
312
+ #: contact_form.php:707
313
  msgid "Subject"
314
  msgstr "Тема"
315
 
316
+ #: contact_form.php:710
317
  msgid "Message"
318
  msgstr "Сообщение"
319
 
320
+ #: contact_form.php:713
321
  msgid "Site"
322
  msgstr "Сайт"
323
 
324
+ #: contact_form.php:758
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:812
329
  msgid "FAQ"
330
  msgstr "FAQ"
331
 
332
+ #: contact_form.php:813
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-06-18 13:19+0300\n"
6
- "PO-Revision-Date: 2012-06-18 13:19+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 "Läs mer"
29
 
30
  #: contact_form.php:78
31
- #: contact_form.php:750
32
- #: contact_form.php:759
33
  msgid "Settings"
34
  msgstr "Inställningar"
35
 
@@ -59,7 +59,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
59
  msgstr "Om du har några frågor, var snäll och kontakta oss på plugin@bestwebsoft.com eller använd fårt kontaktformulär på vår hemsida"
60
 
61
  #: contact_form.php:108
62
- #: contact_form.php:242
63
  msgid "Contact Form Options"
64
  msgstr "Inställningar för Kontaktformulär"
65
 
@@ -68,242 +68,269 @@ msgid "Contact Form"
68
  msgstr "Kontak formulär"
69
 
70
  #: contact_form.php:136
71
- #: contact_form.php:177
72
- #: contact_form.php:210
73
- #: contact_form.php:346
74
  msgid "Name:"
75
  msgstr "Namn:"
76
 
77
  #: contact_form.php:137
78
- #: contact_form.php:178
79
- #: contact_form.php:211
80
- #: contact_form.php:347
81
  msgid "E-Mail Address:"
82
  msgstr "Epostadress:"
83
 
84
  #: contact_form.php:138
85
- #: contact_form.php:179
86
- #: contact_form.php:212
87
- #: contact_form.php:348
88
  msgid "Subject:"
89
  msgstr "Rubrik:"
90
 
91
  #: contact_form.php:139
92
- #: contact_form.php:180
93
- #: contact_form.php:213
94
- #: contact_form.php:349
95
  msgid "Message:"
96
  msgstr "Meddelande:"
97
 
98
  #: contact_form.php:140
99
- #: contact_form.php:181
100
- #: contact_form.php:214
101
- #: contact_form.php:350
102
  msgid "Attachment:"
103
  msgstr "Bilaga:"
104
 
105
- #: contact_form.php:222
106
- #: contact_form.php:231
 
 
 
 
 
 
 
 
 
 
107
  msgid "Options saved."
108
  msgstr "Inställningar sparade"
109
 
110
- #: contact_form.php:225
111
  msgid "Such user is not exist. Settings are not saved."
112
  msgstr "Sådan användare finns inte. Inställningar har inte sparats."
113
 
114
- #: contact_form.php:234
115
  msgid "Please input correct email. Settings are not saved."
116
  msgstr "Var vänlig och ange en korrekt epostadress. Inställningar är inte sparade."
117
 
118
- #: contact_form.php:247
119
  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:"
120
  msgstr "Om du vill lägga till ett kontaktformulär på din hemsida, kopiera och kilstra in denna snabbkod i ditt inlägg eller sida eller widget:"
121
 
122
- #: contact_form.php:248
123
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
124
  msgstr "Om information i fälten nedan är tomma så kommer meddelandet att skickas till en adress som specifierades vid registrering."
125
 
126
- #: contact_form.php:252
127
  msgid "Use email of wordpress user:"
128
  msgstr "Använd epostadress för wordpress användare:"
129
 
130
- #: contact_form.php:258
131
  msgid "Select user name"
132
  msgstr "Välj användarnamn"
133
 
134
- #: contact_form.php:263
135
  msgid "Set a name of user who will get messages from a contact form."
136
  msgstr "Ange ett namn på en användare som kommer få meddelandena från kontaktformulären"
137
 
138
- #: contact_form.php:267
139
  msgid "Use this email:"
140
  msgstr "Använd denna epost:"
141
 
142
- #: contact_form.php:273
143
  msgid "Set an email address which will be used for messages receiving."
144
  msgstr "Ange en epostadress som ska användas för att ta emot meddelandena."
145
 
146
- #: contact_form.php:277
147
  msgid "Additional options"
148
  msgstr "Fler val"
149
 
150
- #: contact_form.php:280
151
  msgid "Display Attachment block"
152
  msgstr "Visa bifogade"
153
 
154
- #: contact_form.php:285
155
  msgid "Users can attach files of the following types"
156
  msgstr "Användare kan lägga till filer av följande typer"
157
 
158
- #: contact_form.php:289
159
  msgid "Display Attachment explanations"
160
  msgstr ""
161
 
162
- #: contact_form.php:294
163
  msgid "Display explanations after Attachment block"
164
  msgstr ""
165
 
166
- #: contact_form.php:298
167
  msgid "Display Send me a copy block"
168
  msgstr "Visa \"Skicka mig en kopia\""
169
 
170
- #: contact_form.php:304
171
  msgid "What use?"
172
  msgstr ""
173
 
174
- #: contact_form.php:309
175
  msgid "Wp-mail"
176
  msgstr "Wp-mail"
177
 
178
- #: contact_form.php:310
179
  msgid "To send mail you can use the wordpress wp_mail function"
180
  msgstr ""
181
 
182
- #: contact_form.php:318
183
  msgid "Mail"
184
  msgstr "Mail"
185
 
186
- #: contact_form.php:319
187
  msgid "To send mail you can use the php mail function"
188
  msgstr ""
189
 
190
- #: contact_form.php:323
191
  msgid "Change FROM fields of the contact form"
192
  msgstr "Förändring från fält i kontaktformuläret"
193
 
194
- #: contact_form.php:329
195
  msgid "Display additional info in email"
196
  msgstr ""
197
 
198
- #: contact_form.php:334
199
- #: contact_form.php:621
200
  msgid "Sent from (ip address)"
201
  msgstr "Skickat från (IP-adress)"
202
 
203
- #: contact_form.php:335
204
- #: contact_form.php:626
205
  msgid "Date/Time"
206
  msgstr "Dag/tid"
207
 
208
- #: contact_form.php:336
209
- #: contact_form.php:631
210
  msgid "Coming from (referer)"
211
  msgstr "Skickat från (referent)"
212
 
213
- #: contact_form.php:337
214
- #: contact_form.php:636
215
  msgid "Using (user agent)"
216
  msgstr "med (user agent)"
217
 
218
- #: contact_form.php:341
219
  msgid "Change label for fields of the contact form"
220
  msgstr "Ändra etiketter för fält på kontaktformuläret"
221
 
222
- #: contact_form.php:356
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
223
  msgid "Save Changes"
224
  msgstr "Spara ändringar"
225
 
226
- #: contact_form.php:389
227
- msgid "Thank you for contacting us."
228
- msgstr "Tack för att du kontaktat oss."
229
-
230
- #: contact_form.php:394
231
  msgid "Sorry, your e-mail could not be delivered."
232
  msgstr "Beklagar, men ditt meddelande kunde inte levereras."
233
 
234
- #: contact_form.php:452
235
  msgid "You can attach files of the following types"
236
  msgstr "Du kan lägga till filer av följande typ."
237
 
238
- #: contact_form.php:460
239
  msgid "Send me a copy"
240
  msgstr "Skicka mig en kopia"
241
 
242
- #: contact_form.php:470
243
  msgid "Submit"
244
  msgstr "Skicka"
245
 
246
- #: contact_form.php:486
247
  msgid "Your name is required."
248
  msgstr "Ditt namn krävs"
249
 
250
- #: contact_form.php:487
251
  msgid "A proper e-mail address is required."
252
  msgstr "En korrekt epostadress krävs."
253
 
254
- #: contact_form.php:488
255
  msgid "Subject text is required."
256
  msgstr "Rubrik krävs."
257
 
258
- #: contact_form.php:489
259
  msgid "Message text is required."
260
  msgstr "Meddelandetext krävs."
261
 
262
- #: contact_form.php:490
263
  msgid "Please make corrections below and try again."
264
  msgstr "Var vänlig och gör ändringarna nedan och försök igen."
265
 
266
- #: contact_form.php:521
267
  msgid "Attachment is broken."
268
  msgstr "Fel vid bilaga"
269
 
270
- #: contact_form.php:534
271
  msgid "Please complete the CAPTCHA."
272
  msgstr "Var vänlig och fyll i CAPTCHA."
273
 
274
- #: contact_form.php:644
275
  msgid "Contact from"
276
  msgstr "Kontakformulär"
277
 
278
- #: contact_form.php:649
279
  msgid "Name"
280
  msgstr "Namn"
281
 
282
- #: contact_form.php:652
283
  msgid "Email"
284
  msgstr "Epost"
285
 
286
- #: contact_form.php:655
287
  msgid "Subject"
288
  msgstr "Rubrik"
289
 
290
- #: contact_form.php:658
291
  msgid "Message"
292
  msgstr "Meddelande"
293
 
294
- #: contact_form.php:661
295
  msgid "Site"
296
  msgstr "www"
297
 
298
- #: contact_form.php:706
299
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
300
  msgstr "Om du ser detta MIME så stödjer inte din client MIME!"
301
 
302
- #: contact_form.php:760
303
  msgid "FAQ"
304
  msgstr "Vanliga frågor"
305
 
306
- #: contact_form.php:761
307
  msgid "Support"
308
  msgstr "Support"
309
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-27 17:42+0300\n"
6
+ "PO-Revision-Date: 2012-06-27 17:42+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:802
32
+ #: contact_form.php:811
33
  msgid "Settings"
34
  msgstr "Inställningar"
35
 
59
  msgstr "Om du har några frågor, var snäll och kontakta oss på plugin@bestwebsoft.com eller använd fårt kontaktformulär på vår hemsida"
60
 
61
  #: contact_form.php:108
62
+ #: contact_form.php:262
63
  msgid "Contact Form Options"
64
  msgstr "Inställningar för Kontaktformulär"
65
 
68
  msgstr "Kontak formulär"
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 "Namn:"
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 "Epostadress:"
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 "Rubrik:"
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 "Meddelande:"
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 "Bilaga:"
104
 
105
+ #: contact_form.php:142
106
+ #: contact_form.php:186
107
+ msgid "Thank you for contacting us."
108
+ msgstr "Tack för att du kontaktat oss."
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 "Inställningar sparade"
119
 
120
+ #: contact_form.php:245
121
  msgid "Such user is not exist. Settings are not saved."
122
  msgstr "Sådan användare finns inte. Inställningar har inte sparats."
123
 
124
+ #: contact_form.php:254
125
  msgid "Please input correct email. Settings are not saved."
126
  msgstr "Var vänlig och ange en korrekt epostadress. Inställningar är inte sparade."
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 "Om du vill lägga till ett kontaktformulär på din hemsida, kopiera och kilstra in denna snabbkod i ditt inlägg eller sida eller widget:"
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 "Om information i fälten nedan är tomma så kommer meddelandet att skickas till en adress som specifierades vid registrering."
135
 
136
+ #: contact_form.php:272
137
  msgid "Use email of wordpress user:"
138
  msgstr "Använd epostadress för wordpress användare:"
139
 
140
+ #: contact_form.php:278
141
  msgid "Select user name"
142
  msgstr "Välj användarnamn"
143
 
144
+ #: contact_form.php:283
145
  msgid "Set a name of user who will get messages from a contact form."
146
  msgstr "Ange ett namn på en användare som kommer få meddelandena från kontaktformulären"
147
 
148
+ #: contact_form.php:287
149
  msgid "Use this email:"
150
  msgstr "Använd denna epost:"
151
 
152
+ #: contact_form.php:293
153
  msgid "Set an email address which will be used for messages receiving."
154
  msgstr "Ange en epostadress som ska användas för att ta emot meddelandena."
155
 
156
+ #: contact_form.php:297
157
  msgid "Additional options"
158
  msgstr "Fler val"
159
 
160
+ #: contact_form.php:300
161
  msgid "Display Attachment block"
162
  msgstr "Visa bifogade"
163
 
164
+ #: contact_form.php:305
165
  msgid "Users can attach files of the following types"
166
  msgstr "Användare kan lägga till filer av följande typer"
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 "Visa \"Skicka mig en kopia\""
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 ""
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 ""
199
 
200
+ #: contact_form.php:343
201
  msgid "Change FROM fields of the contact form"
202
  msgstr "Förändring från fält i kontaktformuläret"
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 "Skickat från (IP-adress)"
212
 
213
+ #: contact_form.php:355
214
+ #: contact_form.php:678
215
  msgid "Date/Time"
216
  msgstr "Dag/tid"
217
 
218
+ #: contact_form.php:356
219
+ #: contact_form.php:683
220
  msgid "Coming from (referer)"
221
  msgstr "Skickat från (referent)"
222
 
223
+ #: contact_form.php:357
224
+ #: contact_form.php:688
225
  msgid "Using (user agent)"
226
  msgstr "med (user agent)"
227
 
228
+ #: contact_form.php:361
229
  msgid "Change label for fields of the contact form"
230
  msgstr "Ändra etiketter för fält på kontaktformuläret"
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 "Visa bifogade"
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 "Spara ändringar"
256
 
257
+ #: contact_form.php:417
 
 
 
 
258
  msgid "Sorry, your e-mail could not be delivered."
259
  msgstr "Beklagar, men ditt meddelande kunde inte levereras."
260
 
261
+ #: contact_form.php:475
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:483
266
  msgid "Send me a copy"
267
  msgstr "Skicka mig en kopia"
268
 
269
+ #: contact_form.php:493
270
  msgid "Submit"
271
  msgstr "Skicka"
272
 
273
+ #: contact_form.php:532
274
  msgid "Your name is required."
275
  msgstr "Ditt namn krävs"
276
 
277
+ #: contact_form.php:533
278
  msgid "A proper e-mail address is required."
279
  msgstr "En korrekt epostadress krävs."
280
 
281
+ #: contact_form.php:534
282
  msgid "Subject text is required."
283
  msgstr "Rubrik krävs."
284
 
285
+ #: contact_form.php:535
286
  msgid "Message text is required."
287
  msgstr "Meddelandetext krävs."
288
 
289
+ #: contact_form.php:536
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:567
294
  msgid "Attachment is broken."
295
  msgstr "Fel vid bilaga"
296
 
297
+ #: contact_form.php:580
298
  msgid "Please complete the CAPTCHA."
299
  msgstr "Var vänlig och fyll i CAPTCHA."
300
 
301
+ #: contact_form.php:696
302
  msgid "Contact from"
303
  msgstr "Kontakformulär"
304
 
305
+ #: contact_form.php:701
306
  msgid "Name"
307
  msgstr "Namn"
308
 
309
+ #: contact_form.php:704
310
  msgid "Email"
311
  msgstr "Epost"
312
 
313
+ #: contact_form.php:707
314
  msgid "Subject"
315
  msgstr "Rubrik"
316
 
317
+ #: contact_form.php:710
318
  msgid "Message"
319
  msgstr "Meddelande"
320
 
321
+ #: contact_form.php:713
322
  msgid "Site"
323
  msgstr "www"
324
 
325
+ #: contact_form.php:758
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:812
330
  msgid "FAQ"
331
  msgstr "Vanliga frågor"
332
 
333
+ #: contact_form.php:813
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-06-18 13:19+0300\n"
6
- "PO-Revision-Date: 2012-06-18 13:19+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 "Devamı"
29
 
30
  #: contact_form.php:78
31
- #: contact_form.php:750
32
- #: contact_form.php:759
33
  msgid "Settings"
34
  msgstr "Ayarlar"
35
 
@@ -59,7 +59,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
59
  msgstr "Herhangi bir sorunuz varsa, lütfen plugin@bestwebsoft.com aracılığıyla bize ulaşın veya sitemizdeki iletişim formunu kullanın"
60
 
61
  #: contact_form.php:108
62
- #: contact_form.php:242
63
  msgid "Contact Form Options"
64
  msgstr "İletişim Formu Seçenekleri"
65
 
@@ -68,242 +68,269 @@ msgid "Contact Form"
68
  msgstr "İletişim Formu"
69
 
70
  #: contact_form.php:136
71
- #: contact_form.php:177
72
- #: contact_form.php:210
73
- #: contact_form.php:346
74
  msgid "Name:"
75
  msgstr "Adınız Soyadınız :"
76
 
77
  #: contact_form.php:137
78
- #: contact_form.php:178
79
- #: contact_form.php:211
80
- #: contact_form.php:347
81
  msgid "E-Mail Address:"
82
  msgstr "E-mail Adresiniz :"
83
 
84
  #: contact_form.php:138
85
- #: contact_form.php:179
86
- #: contact_form.php:212
87
- #: contact_form.php:348
88
  msgid "Subject:"
89
  msgstr "Konu:"
90
 
91
  #: contact_form.php:139
92
- #: contact_form.php:180
93
- #: contact_form.php:213
94
- #: contact_form.php:349
95
  msgid "Message:"
96
  msgstr "Mesajınız:"
97
 
98
  #: contact_form.php:140
99
- #: contact_form.php:181
100
- #: contact_form.php:214
101
- #: contact_form.php:350
102
  msgid "Attachment:"
103
  msgstr "Dosya Eki:"
104
 
105
- #: contact_form.php:222
106
- #: contact_form.php:231
 
 
 
 
 
 
 
 
 
 
107
  msgid "Options saved."
108
  msgstr "Ayarlar Kayıt Edildi."
109
 
110
- #: contact_form.php:225
111
  msgid "Such user is not exist. Settings are not saved."
112
  msgstr "Böyle bir kullanıcı yok. Ayarlar kayıt edilemedi."
113
 
114
- #: contact_form.php:234
115
  msgid "Please input correct email. Settings are not saved."
116
  msgstr "Böyle bir mail bulunumadı. Lütfen doğru bir mail giriniz."
117
 
118
- #: contact_form.php:247
119
  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:"
120
  msgstr "İletişim formunu sitenize yerleştirmek istiyorsanız lütfen kısa kodu yeni sayfa içerisine html modunda iken ekleyiniz:"
121
 
122
- #: contact_form.php:248
123
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
124
  msgstr "Lütfen aşağıdaki alanları doğru ve eksiksiz olarak doldurun."
125
 
126
- #: contact_form.php:252
127
  msgid "Use email of wordpress user:"
128
  msgstr "Kullanıcı adı veya mail girin"
129
 
130
- #: contact_form.php:258
131
  msgid "Select user name"
132
  msgstr "Kullanıcı adı seçin"
133
 
134
- #: contact_form.php:263
135
  msgid "Set a name of user who will get messages from a contact form."
136
  msgstr "Kullanıcı bir iletişim formunu mesajları alacak bir isim ayarlayın."
137
 
138
- #: contact_form.php:267
139
  msgid "Use this email:"
140
  msgstr "Bu e-posta adresini kullan:"
141
 
142
- #: contact_form.php:273
143
  msgid "Set an email address which will be used for messages receiving."
144
  msgstr "Mesaj almak için kullanılan bir e-posta adresi ayarlayın."
145
 
146
- #: contact_form.php:277
147
  msgid "Additional options"
148
  msgstr "Ek Seçenekler"
149
 
150
- #: contact_form.php:280
151
  msgid "Display Attachment block"
152
  msgstr "Eklenti Bloğunu Göster"
153
 
154
- #: contact_form.php:285
155
  msgid "Users can attach files of the following types"
156
  msgstr "Kullanıcılar aşağıdaki türdeki dosyaları yükleyebilir"
157
 
158
- #: contact_form.php:289
159
  msgid "Display Attachment explanations"
160
  msgstr ""
161
 
162
- #: contact_form.php:294
163
  msgid "Display explanations after Attachment block"
164
  msgstr ""
165
 
166
- #: contact_form.php:298
167
  msgid "Display Send me a copy block"
168
  msgstr "Bana bir kopya gönder bloğunu göster"
169
 
170
- #: contact_form.php:304
171
  msgid "What use?"
172
  msgstr ""
173
 
174
- #: contact_form.php:309
175
  msgid "Wp-mail"
176
  msgstr "Wp-mail"
177
 
178
- #: contact_form.php:310
179
  msgid "To send mail you can use the wordpress wp_mail function"
180
  msgstr ""
181
 
182
- #: contact_form.php:318
183
  msgid "Mail"
184
  msgstr "Mail"
185
 
186
- #: contact_form.php:319
187
  msgid "To send mail you can use the php mail function"
188
  msgstr ""
189
 
190
- #: contact_form.php:323
191
  msgid "Change FROM fields of the contact form"
192
  msgstr "Iletişim formu alanları DAN değiştirin"
193
 
194
- #: contact_form.php:329
195
  msgid "Display additional info in email"
196
  msgstr ""
197
 
198
- #: contact_form.php:334
199
- #: contact_form.php:621
200
  msgid "Sent from (ip address)"
201
  msgstr "Geldiği (ip adresi)"
202
 
203
- #: contact_form.php:335
204
- #: contact_form.php:626
205
  msgid "Date/Time"
206
  msgstr "Tarih/Zaman"
207
 
208
- #: contact_form.php:336
209
- #: contact_form.php:631
210
  msgid "Coming from (referer)"
211
  msgstr "Gelen"
212
 
213
- #: contact_form.php:337
214
- #: contact_form.php:636
215
  msgid "Using (user agent)"
216
  msgstr "Using (user agent)"
217
 
218
- #: contact_form.php:341
219
  msgid "Change label for fields of the contact form"
220
  msgstr "Iletişim formu alanlar için değişim etiket"
221
 
222
- #: contact_form.php:356
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
223
  msgid "Save Changes"
224
  msgstr "Değişiklikler Kayıt Edildi"
225
 
226
- #: contact_form.php:389
227
- msgid "Thank you for contacting us."
228
- msgstr "Bizimle bağlantı kurduğunuz için teşekkür ederiz."
229
-
230
- #: contact_form.php:394
231
  msgid "Sorry, your e-mail could not be delivered."
232
  msgstr "Üzgünüz, e-posta gönderilemedi."
233
 
234
- #: contact_form.php:452
235
  msgid "You can attach files of the following types"
236
  msgstr "Aşağıdaki türlerde dosya ekleyebilirsiniz"
237
 
238
- #: contact_form.php:460
239
  msgid "Send me a copy"
240
  msgstr "Bir kopyasını banada gönder"
241
 
242
- #: contact_form.php:470
243
  msgid "Submit"
244
  msgstr "Gönder"
245
 
246
- #: contact_form.php:486
247
  msgid "Your name is required."
248
  msgstr "Adınız ve soyadınız gereklidir."
249
 
250
- #: contact_form.php:487
251
  msgid "A proper e-mail address is required."
252
  msgstr "Düzgün bir e-posta adresi gereklidir."
253
 
254
- #: contact_form.php:488
255
  msgid "Subject text is required."
256
  msgstr "Konu metni gereklidir."
257
 
258
- #: contact_form.php:489
259
  msgid "Message text is required."
260
  msgstr "Mesaj metni gereklidir."
261
 
262
- #: contact_form.php:490
263
  msgid "Please make corrections below and try again."
264
  msgstr "Lütfen aşağıdaki düzeltmeleri yapın ve tekrar deneyin."
265
 
266
- #: contact_form.php:521
267
  msgid "Attachment is broken."
268
  msgstr "Eklenti Hatalı"
269
 
270
- #: contact_form.php:534
271
  msgid "Please complete the CAPTCHA."
272
  msgstr "CAPTCHA Doldurunuz"
273
 
274
- #: contact_form.php:644
275
  msgid "Contact from"
276
  msgstr "Adlı Kişiden Mail Var"
277
 
278
- #: contact_form.php:649
279
  msgid "Name"
280
  msgstr "Adınız Soyadınız"
281
 
282
- #: contact_form.php:652
283
  msgid "Email"
284
  msgstr "e-mail"
285
 
286
- #: contact_form.php:655
287
  msgid "Subject"
288
  msgstr "Konu"
289
 
290
- #: contact_form.php:658
291
  msgid "Message"
292
  msgstr "Mesaj"
293
 
294
- #: contact_form.php:661
295
  msgid "Site"
296
  msgstr "Site"
297
 
298
- #: contact_form.php:706
299
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
300
  msgstr "Istemci daha bu MIME görürseniz MIME türlerini kabul etmez!"
301
 
302
- #: contact_form.php:760
303
  msgid "FAQ"
304
  msgstr "Sık Sorulanlar"
305
 
306
- #: contact_form.php:761
307
  msgid "Support"
308
  msgstr "Destek"
309
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-27 17:42+0300\n"
6
+ "PO-Revision-Date: 2012-06-27 17:42+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:802
32
+ #: contact_form.php:811
33
  msgid "Settings"
34
  msgstr "Ayarlar"
35
 
59
  msgstr "Herhangi bir sorunuz varsa, lütfen plugin@bestwebsoft.com aracılığıyla bize ulaşın veya sitemizdeki iletişim formunu kullanın"
60
 
61
  #: contact_form.php:108
62
+ #: contact_form.php:262
63
  msgid "Contact Form Options"
64
  msgstr "İletişim Formu Seçenekleri"
65
 
68
  msgstr "İletişim Formu"
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 "Adınız Soyadınız :"
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 Adresiniz :"
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 "Konu:"
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 "Mesajınız:"
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 "Dosya Eki:"
104
 
105
+ #: contact_form.php:142
106
+ #: contact_form.php:186
107
+ msgid "Thank you for contacting us."
108
+ msgstr "Bizimle bağlantı kurduğunuz için teşekkür ederiz."
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 "Ayarlar Kayıt Edildi."
119
 
120
+ #: contact_form.php:245
121
  msgid "Such user is not exist. Settings are not saved."
122
  msgstr "Böyle bir kullanıcı yok. Ayarlar kayıt edilemedi."
123
 
124
+ #: contact_form.php:254
125
  msgid "Please input correct email. Settings are not saved."
126
  msgstr "Böyle bir mail bulunumadı. Lütfen doğru bir mail giriniz."
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 "İletişim formunu sitenize yerleştirmek istiyorsanız lütfen kısa kodu yeni sayfa içerisine html modunda iken ekleyiniz:"
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 "Lütfen aşağıdaki alanları doğru ve eksiksiz olarak doldurun."
135
 
136
+ #: contact_form.php:272
137
  msgid "Use email of wordpress user:"
138
  msgstr "Kullanıcı adı veya mail girin"
139
 
140
+ #: contact_form.php:278
141
  msgid "Select user name"
142
  msgstr "Kullanıcı adı seçin"
143
 
144
+ #: contact_form.php:283
145
  msgid "Set a name of user who will get messages from a contact form."
146
  msgstr "Kullanıcı bir iletişim formunu mesajları alacak bir isim ayarlayın."
147
 
148
+ #: contact_form.php:287
149
  msgid "Use this email:"
150
  msgstr "Bu e-posta adresini kullan:"
151
 
152
+ #: contact_form.php:293
153
  msgid "Set an email address which will be used for messages receiving."
154
  msgstr "Mesaj almak için kullanılan bir e-posta adresi ayarlayın."
155
 
156
+ #: contact_form.php:297
157
  msgid "Additional options"
158
  msgstr "Ek Seçenekler"
159
 
160
+ #: contact_form.php:300
161
  msgid "Display Attachment block"
162
  msgstr "Eklenti Bloğunu Göster"
163
 
164
+ #: contact_form.php:305
165
  msgid "Users can attach files of the following types"
166
  msgstr "Kullanıcılar aşağıdaki türdeki dosyaları yükleyebilir"
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 "Bana bir kopya gönder bloğunu göster"
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 ""
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 ""
199
 
200
+ #: contact_form.php:343
201
  msgid "Change FROM fields of the contact form"
202
  msgstr "Iletişim formu alanları DAN değiştirin"
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 "Geldiği (ip adresi)"
212
 
213
+ #: contact_form.php:355
214
+ #: contact_form.php:678
215
  msgid "Date/Time"
216
  msgstr "Tarih/Zaman"
217
 
218
+ #: contact_form.php:356
219
+ #: contact_form.php:683
220
  msgid "Coming from (referer)"
221
  msgstr "Gelen"
222
 
223
+ #: contact_form.php:357
224
+ #: contact_form.php:688
225
  msgid "Using (user agent)"
226
  msgstr "Using (user agent)"
227
 
228
+ #: contact_form.php:361
229
  msgid "Change label for fields of the contact form"
230
  msgstr "Iletişim formu alanlar için değişim etiket"
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 "Eklenti Bloğunu Göster"
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 "Değişiklikler Kayıt Edildi"
256
 
257
+ #: contact_form.php:417
 
 
 
 
258
  msgid "Sorry, your e-mail could not be delivered."
259
  msgstr "Üzgünüz, e-posta gönderilemedi."
260
 
261
+ #: contact_form.php:475
262
  msgid "You can attach files of the following types"
263
  msgstr "Aşağıdaki türlerde dosya ekleyebilirsiniz"
264
 
265
+ #: contact_form.php:483
266
  msgid "Send me a copy"
267
  msgstr "Bir kopyasını banada gönder"
268
 
269
+ #: contact_form.php:493
270
  msgid "Submit"
271
  msgstr "Gönder"
272
 
273
+ #: contact_form.php:532
274
  msgid "Your name is required."
275
  msgstr "Adınız ve soyadınız gereklidir."
276
 
277
+ #: contact_form.php:533
278
  msgid "A proper e-mail address is required."
279
  msgstr "Düzgün bir e-posta adresi gereklidir."
280
 
281
+ #: contact_form.php:534
282
  msgid "Subject text is required."
283
  msgstr "Konu metni gereklidir."
284
 
285
+ #: contact_form.php:535
286
  msgid "Message text is required."
287
  msgstr "Mesaj metni gereklidir."
288
 
289
+ #: contact_form.php:536
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:567
294
  msgid "Attachment is broken."
295
  msgstr "Eklenti Hatalı"
296
 
297
+ #: contact_form.php:580
298
  msgid "Please complete the CAPTCHA."
299
  msgstr "CAPTCHA Doldurunuz"
300
 
301
+ #: contact_form.php:696
302
  msgid "Contact from"
303
  msgstr "Adlı Kişiden Mail Var"
304
 
305
+ #: contact_form.php:701
306
  msgid "Name"
307
  msgstr "Adınız Soyadınız"
308
 
309
+ #: contact_form.php:704
310
  msgid "Email"
311
  msgstr "e-mail"
312
 
313
+ #: contact_form.php:707
314
  msgid "Subject"
315
  msgstr "Konu"
316
 
317
+ #: contact_form.php:710
318
  msgid "Message"
319
  msgstr "Mesaj"
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 "Istemci daha bu MIME görürseniz MIME türlerini kabul etmez!"
328
 
329
+ #: contact_form.php:812
330
  msgid "FAQ"
331
  msgstr "Sık Sorulanlar"
332
 
333
+ #: contact_form.php:813
334
  msgid "Support"
335
  msgstr "Destek"
336
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10
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.19
8
 
9
  Add Contact Form to your WordPress website.
10
 
@@ -98,6 +98,10 @@ Here is an example for German language files.
98
 
99
  == Changelog ==
100
 
 
 
 
 
101
  = V3.19 - 19.06.2012 =
102
  * Bugfix : The bug of email address validation in admin section was fixed.
103
 
@@ -207,6 +211,9 @@ Here is an example for German language files.
207
 
208
  == Upgrade Notice ==
209
 
 
 
 
210
  = V3.19 =
211
  The bug of email address validation in admin section was fixed.
212
 
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.20
8
 
9
  Add Contact Form to your WordPress website.
10
 
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.
104
+
105
  = V3.19 - 19.06.2012 =
106
  * Bugfix : The bug of email address validation in admin section was fixed.
107
 
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
+
217
  = V3.19 =
218
  The bug of email address validation in admin section was fixed.
219
 
screenshot-4.jpg CHANGED
Binary file