Contact Form by BestWebSoft - Version 3.25

Version Description

  • 22.11.2012 =
  • NEW : Added phone number as additiional form field.
  • NEW : Serbian language file is added to the plugin.
Download this release

Release Info

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

Code changes from version 3.21 to 3.25

Files changed (59) hide show
  1. contact_form.php +67 -31
  2. images/icon_16.png +0 -0
  3. images/icon_16_b.png +0 -0
  4. images/icon_16_c.png +0 -0
  5. images/icon_36.png +0 -0
  6. images/icon_36_b.png +0 -0
  7. images/px.png +0 -0
  8. js/script.js +0 -0
  9. languages/contact_form-ar.mo +0 -0
  10. languages/contact_form-ar.po +115 -108
  11. languages/contact_form-bg_BG.mo +0 -0
  12. languages/contact_form-bg_BG.po +116 -107
  13. languages/contact_form-cs_CZ.mo +0 -0
  14. languages/contact_form-cs_CZ.po +349 -0
  15. languages/contact_form-da_DK.mo +0 -0
  16. languages/contact_form-da_DK.po +114 -107
  17. languages/contact_form-de_DE.mo +0 -0
  18. languages/contact_form-de_DE.po +116 -107
  19. languages/contact_form-el_GR.mo +0 -0
  20. languages/contact_form-el_GR.po +112 -105
  21. languages/contact_form-es_ES.mo +0 -0
  22. languages/contact_form-es_ES.po +117 -108
  23. languages/contact_form-fr_FR.mo +0 -0
  24. languages/contact_form-fr_FR.po +126 -111
  25. languages/contact_form-he_IL.mo +0 -0
  26. languages/contact_form-he_IL.po +110 -106
  27. languages/contact_form-hi_IN.mo +0 -0
  28. languages/contact_form-hi_IN.po +115 -108
  29. languages/contact_form-it_IT.mo +0 -0
  30. languages/contact_form-it_IT.po +113 -106
  31. languages/contact_form-ja.mo +0 -0
  32. languages/contact_form-ja.po +353 -0
  33. languages/contact_form-lt_LT.mo +0 -0
  34. languages/contact_form-lt_LT.po +109 -105
  35. languages/contact_form-nb_NO.mo +0 -0
  36. languages/contact_form-nb_NO.po +112 -106
  37. languages/contact_form-nl_NL.mo +0 -0
  38. languages/contact_form-nl_NL.po +111 -105
  39. languages/contact_form-pl_PL.mo +0 -0
  40. languages/contact_form-pl_PL.po +108 -105
  41. languages/contact_form-pt_BR.mo +0 -0
  42. languages/contact_form-pt_BR.po +120 -109
  43. languages/contact_form-pt_PT.mo +0 -0
  44. languages/contact_form-pt_PT.po +119 -108
  45. languages/contact_form-ro_RO.mo +0 -0
  46. languages/contact_form-ro_RO.po +350 -0
  47. languages/contact_form-ru_RU.mo +0 -0
  48. languages/contact_form-ru_RU.po +119 -108
  49. languages/contact_form-sr_RS.mo +0 -0
  50. languages/contact_form-sr_RS.po +350 -0
  51. languages/contact_form-sv_SE.mo +0 -0
  52. languages/contact_form-sv_SE.po +113 -106
  53. languages/contact_form-tr_TR.mo +0 -0
  54. languages/contact_form-tr_TR.po +105 -103
  55. readme.txt +32 -2
  56. screenshot-1.jpg +0 -0
  57. screenshot-2.jpg +0 -0
  58. screenshot-3.jpg +0 -0
  59. screenshot-5.jpg +0 -0
contact_form.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Contact Form Plugin
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: Plugin for Contact Form.
6
  Author: BestWebSoft
7
- Version: 3.21
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
@@ -126,6 +126,7 @@ if( ! function_exists( 'cntctfrm_settings' ) ) {
126
  'cntctfrm_attachment_explanations' => 1,
127
  'cntctfrm_send_copy' => 0,
128
  'cntctfrm_from_field' => get_bloginfo( 'name' ),
 
129
  'cntctfrm_display_add_info' => 1,
130
  'cntctfrm_display_sent_from' => 1,
131
  'cntctfrm_display_date_time' => 1,
@@ -135,6 +136,7 @@ if( ! function_exists( 'cntctfrm_settings' ) ) {
135
  'cntctfrm_change_label' => 0,
136
  'cntctfrm_name_label' => __( "Name:", 'contact_form' ),
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' ),
@@ -160,7 +162,7 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
160
 
161
  $error = "";
162
  // Save data for settings page
163
- if( isset( $_REQUEST['cntctfrm_form_submit'] ) ) {
164
  $cntctfrm_options_submit['cntctfrm_user_email'] = $_REQUEST['cntctfrm_user_email'];
165
  $cntctfrm_options_submit['cntctfrm_custom_email'] = $_REQUEST['cntctfrm_custom_email'];
166
  $cntctfrm_options_submit['cntctfrm_select_email'] = $_REQUEST['cntctfrm_select_email'];
@@ -170,6 +172,7 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
170
  $cntctfrm_options_submit['cntctfrm_attachment_explanations'] = 1;
171
  $cntctfrm_options_submit['cntctfrm_send_copy'] = 0;
172
  $cntctfrm_options_submit['cntctfrm_from_field'] = get_bloginfo( 'name' );
 
173
  $cntctfrm_options_submit['cntctfrm_display_add_info'] = 1;
174
  $cntctfrm_options_submit['cntctfrm_display_sent_from'] = 1;
175
  $cntctfrm_options_submit['cntctfrm_display_date_time'] = 1;
@@ -190,9 +193,11 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
190
  $cntctfrm_options_submit['cntctfrm_attachment_explanations'] = isset( $_REQUEST['cntctfrm_attachment_explanations']) ? $_REQUEST['cntctfrm_attachment_explanations'] : 0;
191
  $cntctfrm_options_submit['cntctfrm_send_copy'] = isset( $_REQUEST['cntctfrm_send_copy']) ? $_REQUEST['cntctfrm_send_copy'] : 0;
192
  $cntctfrm_options_submit['cntctfrm_mail_method'] = $_REQUEST['cntctfrm_mail_method'];
193
- $cntctfrm_options_submit['cntctfrm_from_field'] = $_REQUEST['cntctfrm_from_field'];
194
  $cntctfrm_options_submit['cntctfrm_display_add_info'] = isset( $_REQUEST['cntctfrm_display_add_info']) ? 1 : 0;
195
  $cntctfrm_options_submit['cntctfrm_change_label'] = isset( $_REQUEST['cntctfrm_change_label']) ? 1 : 0;
 
 
196
  if( $cntctfrm_options_submit['cntctfrm_display_add_info'] == 1 ) {
197
  $cntctfrm_options_submit['cntctfrm_display_sent_from'] = isset( $_REQUEST['cntctfrm_display_sent_from']) ? 1 : 0;
198
  $cntctfrm_options_submit['cntctfrm_display_date_time'] = isset( $_REQUEST['cntctfrm_display_date_time']) ? 1 : 0;
@@ -208,6 +213,7 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
208
  if( $cntctfrm_options_submit['cntctfrm_change_label'] == 1 ) {
209
  $cntctfrm_options_submit['cntctfrm_name_label'] = isset( $_REQUEST['cntctfrm_name_label']) ? $_REQUEST['cntctfrm_name_label'] : $cntctfrm_options_submit['cntctfrm_name_label'];
210
  $cntctfrm_options_submit['cntctfrm_email_label'] = isset( $_REQUEST['cntctfrm_email_label']) ? $_REQUEST['cntctfrm_email_label'] : $cntctfrm_options_submit['cntctfrm_email_label'];
 
211
  $cntctfrm_options_submit['cntctfrm_subject_label'] = isset( $_REQUEST['cntctfrm_subject_label']) ? $_REQUEST['cntctfrm_subject_label'] : $cntctfrm_options_submit['cntctfrm_subject_label'];
212
  $cntctfrm_options_submit['cntctfrm_message_label'] = isset( $_REQUEST['cntctfrm_message_label']) ? $_REQUEST['cntctfrm_message_label'] : $cntctfrm_options_submit['cntctfrm_message_label'];
213
  $cntctfrm_options_submit['cntctfrm_attachment_label'] = isset( $_REQUEST['cntctfrm_attachment_label']) ? $_REQUEST['cntctfrm_attachment_label'] : $cntctfrm_options_submit['cntctfrm_attachment_label'];
@@ -215,6 +221,7 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
215
  else {
216
  $cntctfrm_options_submit['cntctfrm_name_label'] = __( "Name:", 'contact_form' );
217
  $cntctfrm_options_submit['cntctfrm_email_label'] = __( "E-Mail Address:", 'contact_form' );
 
218
  $cntctfrm_options_submit['cntctfrm_subject_label'] = __( "Subject:", 'contact_form' );
219
  $cntctfrm_options_submit['cntctfrm_message_label'] = __( "Message:", 'contact_form' );
220
  $cntctfrm_options_submit['cntctfrm_attachment_label'] = __( "Attachment:", 'contact_form' );
@@ -302,7 +309,7 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
302
  <input type="checkbox" id="cntctfrm_attachment" name="cntctfrm_attachment" value="1" <?php if($cntctfrm_options['cntctfrm_attachment'] == '1') echo "checked=\"checked\" "; ?>/>
303
  </td>
304
  <td>
305
- <span class="cntctfrm_info"><?php echo __( "Users can attach files of the following types", 'contact_form' ) . ": html, txt, css, gif, png, jpeg, jpg, tiff, bmp, ai, eps, ps, rtf, pdf, doc, docx, zip, rar, wav, mp3, ppt"; ?></span>
306
  </td>
307
  </tr>
308
  <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
@@ -345,6 +352,12 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
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"; ?>">
349
  <th scope="row" style="width:195px;"><?php _e( "Display additional info in email", 'contact_form' ); ?></th>
350
  <td>
@@ -365,6 +378,7 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
365
  <td class="cntctfrm_change_label_block <?php if($cntctfrm_options['cntctfrm_change_label'] == '0') echo "cntctfrm_hidden"; ?>">
366
  <input type="text" name="cntctfrm_name_label" value="<?php echo $cntctfrm_options['cntctfrm_name_label']; ?>" /> <span class="cntctfrm_info"><?php _e( "Name:", 'contact_form' ); ?></span><br />
367
  <input type="text" name="cntctfrm_email_label" value="<?php echo $cntctfrm_options['cntctfrm_email_label']; ?>" /> <span class="cntctfrm_info"><?php _e( "E-Mail Address:", 'contact_form' ); ?></span><br />
 
368
  <input type="text" name="cntctfrm_subject_label" value="<?php echo $cntctfrm_options['cntctfrm_subject_label']; ?>" /> <span class="cntctfrm_info"><?php _e( "Subject:", 'contact_form' ); ?></span><br />
369
  <input type="text" name="cntctfrm_message_label" value="<?php echo $cntctfrm_options['cntctfrm_message_label']; ?>" /> <span class="cntctfrm_info"><?php _e( "Message:", 'contact_form' ); ?></span><br />
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 />
@@ -383,6 +397,7 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
383
  <p class="submit">
384
  <input type="submit" class="button-primary" value="<?php _e('Save Changes') ?>" />
385
  </p>
 
386
  </form>
387
  </div>
388
  <?php
@@ -392,7 +407,7 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
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
 
@@ -401,22 +416,25 @@ if( ! function_exists( 'cntctfrm_display_form' ) ) {
401
  $name = isset( $_REQUEST['cntctfrm_contact_name'] ) ? $_REQUEST['cntctfrm_contact_name'] : "";
402
  $email = isset( $_REQUEST['cntctfrm_contact_email'] ) ? $_REQUEST['cntctfrm_contact_email'] : "";
403
  $subject = isset( $_REQUEST['cntctfrm_contact_subject'] ) ? $_REQUEST['cntctfrm_contact_subject'] : "";
 
 
404
  $message = isset( $_REQUEST['cntctfrm_contact_message'] ) ? $_REQUEST['cntctfrm_contact_message'] : "";
 
405
  $send_copy = isset( $_REQUEST['cntctfrm_contact_send_copy'] ) ? $_REQUEST['cntctfrm_contact_send_copy'] : "";
406
  // If it is good
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
  {
416
  // If email not be delivered
417
  $error_message['error_form'] = __( "Sorry, your e-mail could not be delivered.", 'contact_form' );
418
  }
419
- if( true !== $result) {
420
  $_SESSION['cntctfrm_send_mail'] = false;
421
  // Output form
422
  $content .= '<form method="post" id="cntctfrm_contact_form" action="'.$page_url.'" enctype="multipart/form-data">';
@@ -438,12 +456,24 @@ if( ! function_exists( 'cntctfrm_display_form' ) ) {
438
  </div>';
439
  if( isset( $error_message['error_email'] ) ) {
440
  $content .= '<div style="text-align: left; color: red;">'.$error_message['error_email'].'</div>';
441
- }
442
  $content .= '<div style="text-align: left;">
443
  <input class="text" type="text" size="40" value="'.$email.'" name="cntctfrm_contact_email" id="cntctfrm_contact_email" style="text-align: left; margin: 0;" />
444
  </div>
445
-
446
- <div style="text-align: left;">
 
 
 
 
 
 
 
 
 
 
 
 
447
  <label for="cntctfrm_contact_subject">'. $cntctfrm_options['cntctfrm_subject_label'] . '<span class="required"> *</span></label>
448
  </div>';
449
  if( isset( $error_message['error_subject'] ) ) {
@@ -472,7 +502,7 @@ if( ! function_exists( 'cntctfrm_display_form' ) ) {
472
  $content .= '<div style="text-align: left;">
473
  <input type="file" name="cntctfrm_contact_attachment" id="cntctfrm_contact_attachment"'.(isset( $error_message['error_attachment'] ) ? "class='error'": "").' />';
474
  if( $cntctfrm_options['cntctfrm_attachment_explanations'] == 1 ){
475
- $content .= '<label style="font-size:10px;"><br />'. __( "You can attach files of the following types", 'contact_form' ) . ': html, txt, css, gif, png, jpeg, jpg, tiff, bmp, ai, eps, ps, rtf, pdf, doc, docx, zip, rar, wav, mp3, ppt</label>';
476
  }
477
  $content .= '
478
  </div>';
@@ -484,7 +514,7 @@ if( ! function_exists( 'cntctfrm_display_form' ) ) {
484
  </div>';
485
  }
486
 
487
- if(has_filter('cntctfrm_display_captcha')) {
488
  $content .= apply_filters( 'cntctfrm_display_captcha' , $error_message );
489
  }
490
 
@@ -500,15 +530,15 @@ if( ! function_exists( 'cntctfrm_display_form' ) ) {
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'] );
@@ -526,7 +556,7 @@ if( ! function_exists( 'cntctfrm_check_form' ) ) {
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();
532
  $error_message['error_name'] = __( "Your name is required.", 'contact_form' );
@@ -559,6 +589,7 @@ if( ! function_exists( 'cntctfrm_check_form' ) ) {
559
  'pdf'=>'application/pdf',
560
  'doc'=>'application/msword',
561
  'docx'=>'application/mswor',
 
562
  'zip'=>'application/zip',
563
  'rar'=>'application/rar',
564
  'wav'=>'audio/wav',
@@ -616,9 +647,9 @@ if( ! function_exists( 'cntctfrm_check_form' ) ) {
616
  if( 1 == count( $error_message ) ) {
617
  unset( $error_message['error_form'] );
618
  // If all is good - send mail
619
- $result = cntctfrm_send_mail();
620
  }
621
- return $result;
622
  }
623
  }
624
 
@@ -629,8 +660,8 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
629
  $to = "";
630
  if( isset( $_SESSION['cntctfrm_send_mail'] ) && $_SESSION['cntctfrm_send_mail'] == true )
631
  return true;
632
- if($cntctfrm_options['cntctfrm_select_email'] == 'user') {
633
- if( function_exists('get_userdatabylogin') && false !== $user = get_userdatabylogin($cntctfrm_options['cntctfrm_user_email'] ) ){
634
  $to = $user->user_email;
635
  }
636
  else if( false !== $user = get_user_by( 'login', $cntctfrm_options_submit['cntctfrm_user_email'] ) )
@@ -659,7 +690,7 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
659
  }
660
 
661
  if( $cntctfrm_options['cntctfrm_display_add_info'] == 1) {
662
- $userdomain = gethostbyaddr($_SERVER['REMOTE_ADDR']);
663
  if( $cntctfrm_options['cntctfrm_display_add_info'] == 1 ||
664
  $cntctfrm_options['cntctfrm_display_sent_from'] == 1 ||
665
  $cntctfrm_options['cntctfrm_display_coming_from'] == 1 ||
@@ -703,8 +734,13 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
703
  <tr>
704
  <td>'. __( "Email", 'contact_form' ) .'</td><td>'.$_REQUEST['cntctfrm_contact_email'].'</td>
705
  </tr>
706
- <tr>
707
- <td>'. __( "Subject", 'contact_form' ) . '</td><td>'.strip_tags( $_REQUEST['cntctfrm_contact_subject'] ).'</td>
 
 
 
 
 
708
  </tr>
709
  <tr>
710
  <td>'. __( "Message", 'contact_form' ) . '</td><td>'.$_REQUEST['cntctfrm_contact_message'].'</td>
@@ -732,13 +768,13 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
732
  }
733
 
734
  if( isset( $_REQUEST['cntctfrm_contact_send_copy'] ) && $_REQUEST['cntctfrm_contact_send_copy'] == 1 )
735
- wp_mail($_REQUEST['cntctfrm_contact_email'], stripslashes( strip_tags( $subject ) ), stripslashes($message), $headers, $attachments);
736
 
737
  // Mail it
738
- return wp_mail($to, stripslashes( strip_tags( $subject ) ), stripslashes( $message ), $headers, $attachments);
739
  }
740
  else{
741
- if( $cntctfrm_options['cntctfrm_attachment'] == 1 && isset($_FILES["cntctfrm_contact_attachment"]["tmp_name"]) && $_FILES["cntctfrm_contact_attachment"]["tmp_name"] != "") {
742
  global $path_of_uploaded_file;
743
  $headers = "";
744
  $message_block = $message;
@@ -767,9 +803,9 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
767
  $file = file_get_contents($path_of_uploaded_file);
768
  $path_info = pathinfo( $path_of_uploaded_file );
769
 
770
- $message .= "Content-Type: ".$path_info['extension']."; name=\"".basename($path_of_uploaded_file)."\"\r\n"
771
  ."Content-Transfer-Encoding: base64\r\n"
772
- ."Content-disposition: attachment; file=\"".basename($path_of_uploaded_file)."\"\r\n"
773
  ."\r\n"
774
  .chunk_split( base64_encode( $file ) )
775
  .$bound_last;
@@ -783,9 +819,9 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
783
  $headers .= 'From: '.$_REQUEST['cntctfrm_contact_email']. "\r\n";
784
  }
785
  if( isset( $_REQUEST['cntctfrm_contact_send_copy'] ) && $_REQUEST['cntctfrm_contact_send_copy'] == 1 )
786
- @mail($_REQUEST['cntctfrm_contact_email'], stripslashes( strip_tags( $subject ) ), stripslashes( $message ), $headers);
787
 
788
- return @mail($to, stripslashes( strip_tags( $subject ) ), stripslashes( $message ), $headers);
789
  }
790
 
791
  }
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: Plugin for Contact Form.
6
  Author: BestWebSoft
7
+ Version: 3.25
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
126
  'cntctfrm_attachment_explanations' => 1,
127
  'cntctfrm_send_copy' => 0,
128
  'cntctfrm_from_field' => get_bloginfo( 'name' ),
129
+ 'cntctfrm_display_phone_field' => 0,
130
  'cntctfrm_display_add_info' => 1,
131
  'cntctfrm_display_sent_from' => 1,
132
  'cntctfrm_display_date_time' => 1,
136
  'cntctfrm_change_label' => 0,
137
  'cntctfrm_name_label' => __( "Name:", 'contact_form' ),
138
  'cntctfrm_email_label' => __( "E-Mail Address:", 'contact_form' ),
139
+ 'cntctfrm_phone_label' => __( "Phone:", 'contact_form' ),
140
  'cntctfrm_subject_label' => __( "Subject:", 'contact_form' ),
141
  'cntctfrm_message_label' => __( "Message:", 'contact_form' ),
142
  'cntctfrm_attachment_label' => __( "Attachment:", 'contact_form' ),
162
 
163
  $error = "";
164
  // Save data for settings page
165
+ if( isset( $_REQUEST['cntctfrm_form_submit'] ) && check_admin_referer( plugin_basename(__FILE__), 'cntctfrm_nonce_name' ) ) {
166
  $cntctfrm_options_submit['cntctfrm_user_email'] = $_REQUEST['cntctfrm_user_email'];
167
  $cntctfrm_options_submit['cntctfrm_custom_email'] = $_REQUEST['cntctfrm_custom_email'];
168
  $cntctfrm_options_submit['cntctfrm_select_email'] = $_REQUEST['cntctfrm_select_email'];
172
  $cntctfrm_options_submit['cntctfrm_attachment_explanations'] = 1;
173
  $cntctfrm_options_submit['cntctfrm_send_copy'] = 0;
174
  $cntctfrm_options_submit['cntctfrm_from_field'] = get_bloginfo( 'name' );
175
+ $cntctfrm_options_submit['cntctfrm_display_phone_field'] = 0;
176
  $cntctfrm_options_submit['cntctfrm_display_add_info'] = 1;
177
  $cntctfrm_options_submit['cntctfrm_display_sent_from'] = 1;
178
  $cntctfrm_options_submit['cntctfrm_display_date_time'] = 1;
193
  $cntctfrm_options_submit['cntctfrm_attachment_explanations'] = isset( $_REQUEST['cntctfrm_attachment_explanations']) ? $_REQUEST['cntctfrm_attachment_explanations'] : 0;
194
  $cntctfrm_options_submit['cntctfrm_send_copy'] = isset( $_REQUEST['cntctfrm_send_copy']) ? $_REQUEST['cntctfrm_send_copy'] : 0;
195
  $cntctfrm_options_submit['cntctfrm_mail_method'] = $_REQUEST['cntctfrm_mail_method'];
196
+ $cntctfrm_options_submit['cntctfrm_mail_method'] = $_REQUEST['cntctfrm_mail_method'];
197
  $cntctfrm_options_submit['cntctfrm_display_add_info'] = isset( $_REQUEST['cntctfrm_display_add_info']) ? 1 : 0;
198
  $cntctfrm_options_submit['cntctfrm_change_label'] = isset( $_REQUEST['cntctfrm_change_label']) ? 1 : 0;
199
+ $cntctfrm_options_submit['cntctfrm_display_phone_field'] = isset( $_REQUEST['cntctfrm_display_phone_field']) ? 1 : 0;
200
+
201
  if( $cntctfrm_options_submit['cntctfrm_display_add_info'] == 1 ) {
202
  $cntctfrm_options_submit['cntctfrm_display_sent_from'] = isset( $_REQUEST['cntctfrm_display_sent_from']) ? 1 : 0;
203
  $cntctfrm_options_submit['cntctfrm_display_date_time'] = isset( $_REQUEST['cntctfrm_display_date_time']) ? 1 : 0;
213
  if( $cntctfrm_options_submit['cntctfrm_change_label'] == 1 ) {
214
  $cntctfrm_options_submit['cntctfrm_name_label'] = isset( $_REQUEST['cntctfrm_name_label']) ? $_REQUEST['cntctfrm_name_label'] : $cntctfrm_options_submit['cntctfrm_name_label'];
215
  $cntctfrm_options_submit['cntctfrm_email_label'] = isset( $_REQUEST['cntctfrm_email_label']) ? $_REQUEST['cntctfrm_email_label'] : $cntctfrm_options_submit['cntctfrm_email_label'];
216
+ $cntctfrm_options_submit['cntctfrm_phone_label'] = isset( $_REQUEST['cntctfrm_phone_label']) ? $_REQUEST['cntctfrm_phone_label'] : $cntctfrm_options_submit['cntctfrm_phone_label'];
217
  $cntctfrm_options_submit['cntctfrm_subject_label'] = isset( $_REQUEST['cntctfrm_subject_label']) ? $_REQUEST['cntctfrm_subject_label'] : $cntctfrm_options_submit['cntctfrm_subject_label'];
218
  $cntctfrm_options_submit['cntctfrm_message_label'] = isset( $_REQUEST['cntctfrm_message_label']) ? $_REQUEST['cntctfrm_message_label'] : $cntctfrm_options_submit['cntctfrm_message_label'];
219
  $cntctfrm_options_submit['cntctfrm_attachment_label'] = isset( $_REQUEST['cntctfrm_attachment_label']) ? $_REQUEST['cntctfrm_attachment_label'] : $cntctfrm_options_submit['cntctfrm_attachment_label'];
221
  else {
222
  $cntctfrm_options_submit['cntctfrm_name_label'] = __( "Name:", 'contact_form' );
223
  $cntctfrm_options_submit['cntctfrm_email_label'] = __( "E-Mail Address:", 'contact_form' );
224
+ $cntctfrm_options_submit['cntctfrm_phone_label'] = __( "Phone:", 'contact_form' );
225
  $cntctfrm_options_submit['cntctfrm_subject_label'] = __( "Subject:", 'contact_form' );
226
  $cntctfrm_options_submit['cntctfrm_message_label'] = __( "Message:", 'contact_form' );
227
  $cntctfrm_options_submit['cntctfrm_attachment_label'] = __( "Attachment:", 'contact_form' );
309
  <input type="checkbox" id="cntctfrm_attachment" name="cntctfrm_attachment" value="1" <?php if($cntctfrm_options['cntctfrm_attachment'] == '1') echo "checked=\"checked\" "; ?>/>
310
  </td>
311
  <td>
312
+ <span class="cntctfrm_info"><?php echo __( "Users can attach files of the following types", 'contact_form' ) . ": html, txt, css, gif, png, jpeg, jpg, tiff, bmp, ai, eps, ps, rtf, pdf, doc, docx, xls, zip, rar, wav, mp3, ppt"; ?></span>
313
  </td>
314
  </tr>
315
  <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
352
  <input type="text" style="width:200px;" name="cntctfrm_from_field" value="<?php echo stripslashes( $cntctfrm_options['cntctfrm_from_field'] ); ?>" /><br />
353
  </td>
354
  </tr>
355
+ <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
356
+ <th scope="row" style="width:195px;"><?php _e( "Display phone field", 'contact_form' ); ?></th>
357
+ <td>
358
+ <input type="checkbox" id="cntctfrm_display_phone_field" name="cntctfrm_display_phone_field" value="1" <?php if($cntctfrm_options['cntctfrm_display_phone_field'] == '1') echo "checked=\"checked\" "; ?>/>
359
+ </td>
360
+ </tr>
361
  <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
362
  <th scope="row" style="width:195px;"><?php _e( "Display additional info in email", 'contact_form' ); ?></th>
363
  <td>
378
  <td class="cntctfrm_change_label_block <?php if($cntctfrm_options['cntctfrm_change_label'] == '0') echo "cntctfrm_hidden"; ?>">
379
  <input type="text" name="cntctfrm_name_label" value="<?php echo $cntctfrm_options['cntctfrm_name_label']; ?>" /> <span class="cntctfrm_info"><?php _e( "Name:", 'contact_form' ); ?></span><br />
380
  <input type="text" name="cntctfrm_email_label" value="<?php echo $cntctfrm_options['cntctfrm_email_label']; ?>" /> <span class="cntctfrm_info"><?php _e( "E-Mail Address:", 'contact_form' ); ?></span><br />
381
+ <input type="text" name="cntctfrm_phone_label" value="<?php echo $cntctfrm_options['cntctfrm_phone_label']; ?>" /> <span class="cntctfrm_info"><?php _e( "Phone:", 'contact_form' ); ?></span><br />
382
  <input type="text" name="cntctfrm_subject_label" value="<?php echo $cntctfrm_options['cntctfrm_subject_label']; ?>" /> <span class="cntctfrm_info"><?php _e( "Subject:", 'contact_form' ); ?></span><br />
383
  <input type="text" name="cntctfrm_message_label" value="<?php echo $cntctfrm_options['cntctfrm_message_label']; ?>" /> <span class="cntctfrm_info"><?php _e( "Message:", 'contact_form' ); ?></span><br />
384
  <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 />
397
  <p class="submit">
398
  <input type="submit" class="button-primary" value="<?php _e('Save Changes') ?>" />
399
  </p>
400
+ <?php wp_nonce_field( plugin_basename(__FILE__), 'cntctfrm_nonce_name' ); ?>
401
  </form>
402
  </div>
403
  <?php
407
  // Display contact form in front end - page or post
408
  if( ! function_exists( 'cntctfrm_display_form' ) ) {
409
  function cntctfrm_display_form() {
410
+ global $error_message, $cntctfrm_options, $cntctfrm_result;
411
  $cntctfrm_options = get_option( 'cntctfrm_options' );
412
  $content = "";
413
 
416
  $name = isset( $_REQUEST['cntctfrm_contact_name'] ) ? $_REQUEST['cntctfrm_contact_name'] : "";
417
  $email = isset( $_REQUEST['cntctfrm_contact_email'] ) ? $_REQUEST['cntctfrm_contact_email'] : "";
418
  $subject = isset( $_REQUEST['cntctfrm_contact_subject'] ) ? $_REQUEST['cntctfrm_contact_subject'] : "";
419
+ $name = strip_tags( $name );
420
+ $subject = strip_tags( $subject );
421
  $message = isset( $_REQUEST['cntctfrm_contact_message'] ) ? $_REQUEST['cntctfrm_contact_message'] : "";
422
+ $phone = isset( $_REQUEST['cntctfrm_contact_phone'] ) ? $_REQUEST['cntctfrm_contact_phone'] : "";
423
  $send_copy = isset( $_REQUEST['cntctfrm_contact_send_copy'] ) ? $_REQUEST['cntctfrm_contact_send_copy'] : "";
424
  // If it is good
425
+ if( true === $cntctfrm_result ) {
426
  $_SESSION['cntctfrm_send_mail'] = true;
427
  if( $cntctfrm_options['cntctfrm_action_after_send'] == 1 )
428
  $content .= $cntctfrm_options['cntctfrm_thank_text'];
429
  else
430
  $content .= "<script type='text/javascript'>window.location.href = '".$cntctfrm_options['cntctfrm_redirect_url']."';</script>";
431
  }
432
+ else if( false === $cntctfrm_result )
433
  {
434
  // If email not be delivered
435
  $error_message['error_form'] = __( "Sorry, your e-mail could not be delivered.", 'contact_form' );
436
  }
437
+ if( true !== $cntctfrm_result) {
438
  $_SESSION['cntctfrm_send_mail'] = false;
439
  // Output form
440
  $content .= '<form method="post" id="cntctfrm_contact_form" action="'.$page_url.'" enctype="multipart/form-data">';
456
  </div>';
457
  if( isset( $error_message['error_email'] ) ) {
458
  $content .= '<div style="text-align: left; color: red;">'.$error_message['error_email'].'</div>';
459
+ }
460
  $content .= '<div style="text-align: left;">
461
  <input class="text" type="text" size="40" value="'.$email.'" name="cntctfrm_contact_email" id="cntctfrm_contact_email" style="text-align: left; margin: 0;" />
462
  </div>
463
+ ';
464
+ if( $cntctfrm_options['cntctfrm_display_phone_field'] == 1 ) {
465
+ $content .= '<div style="text-align: left;">
466
+ <label for="cntctfrm_contact_phone">'. $cntctfrm_options['cntctfrm_phone_label'] . '</label>
467
+ </div>';
468
+ if( isset( $error_message['error_phone'] ) ) {
469
+ $content .= '<div style="text-align: left; color: red;">'.$error_message['error_phone'].'</div>';
470
+ }
471
+ $content .= '<div style="text-align: left;">
472
+ <input class="text" type="text" size="40" value="'.$phone.'" name="cntctfrm_contact_phone" id="cntctfrm_contact_phone" style="text-align: left; margin: 0;" />
473
+ </div>
474
+ ';
475
+ }
476
+ $content .= '<div style="text-align: left;">
477
  <label for="cntctfrm_contact_subject">'. $cntctfrm_options['cntctfrm_subject_label'] . '<span class="required"> *</span></label>
478
  </div>';
479
  if( isset( $error_message['error_subject'] ) ) {
502
  $content .= '<div style="text-align: left;">
503
  <input type="file" name="cntctfrm_contact_attachment" id="cntctfrm_contact_attachment"'.(isset( $error_message['error_attachment'] ) ? "class='error'": "").' />';
504
  if( $cntctfrm_options['cntctfrm_attachment_explanations'] == 1 ){
505
+ $content .= '<label style="font-size:10px;"><br />'. __( "You can attach files of the following types", 'contact_form' ) . ': html, txt, css, gif, png, jpeg, jpg, tiff, bmp, ai, eps, ps, rtf, pdf, doc, docx, xls, zip, rar, wav, mp3, ppt</label>';
506
  }
507
  $content .= '
508
  </div>';
514
  </div>';
515
  }
516
 
517
+ if( has_filter( 'cntctfrm_display_captcha' ) ) {
518
  $content .= apply_filters( 'cntctfrm_display_captcha' , $error_message );
519
  }
520
 
530
 
531
  if( ! function_exists( 'cntctfrm_check_and_send' ) ) {
532
  function cntctfrm_check_and_send() {
533
+ global $cntctfrm_result;
534
  $cntctfrm_options = get_option( 'cntctfrm_options' );
535
  if( isset( $_REQUEST['cntctfrm_contact_action'] ) )
536
  {
537
  // Check all input data
538
+ $cntctfrm_result = cntctfrm_check_form();
539
  }
540
  // If it is good
541
+ if( true === $cntctfrm_result ) {
542
  $_SESSION['cntctfrm_send_mail'] = true;
543
  if( $cntctfrm_options['cntctfrm_action_after_send'] == 0 ){
544
  wp_redirect( $cntctfrm_options['cntctfrm_redirect_url'] );
556
  $path_of_uploaded_file = '';
557
  if( empty( $cntctfrm_options ) )
558
  $cntctfrm_options = get_option( 'cntctfrm_options' );
559
+ $cntctfrm_result = "";
560
  // Error messages array
561
  $error_message = array();
562
  $error_message['error_name'] = __( "Your name is required.", 'contact_form' );
589
  'pdf'=>'application/pdf',
590
  'doc'=>'application/msword',
591
  'docx'=>'application/mswor',
592
+ 'xls'=>'application/vnd.ms-excel',
593
  'zip'=>'application/zip',
594
  'rar'=>'application/rar',
595
  'wav'=>'audio/wav',
647
  if( 1 == count( $error_message ) ) {
648
  unset( $error_message['error_form'] );
649
  // If all is good - send mail
650
+ $cntctfrm_result = cntctfrm_send_mail();
651
  }
652
+ return $cntctfrm_result;
653
  }
654
  }
655
 
660
  $to = "";
661
  if( isset( $_SESSION['cntctfrm_send_mail'] ) && $_SESSION['cntctfrm_send_mail'] == true )
662
  return true;
663
+ if( $cntctfrm_options['cntctfrm_select_email'] == 'user' ) {
664
+ if( function_exists('get_userdatabylogin') && false !== $user = get_userdatabylogin( $cntctfrm_options['cntctfrm_user_email'] ) ){
665
  $to = $user->user_email;
666
  }
667
  else if( false !== $user = get_user_by( 'login', $cntctfrm_options_submit['cntctfrm_user_email'] ) )
690
  }
691
 
692
  if( $cntctfrm_options['cntctfrm_display_add_info'] == 1) {
693
+ $userdomain = @gethostbyaddr($_SERVER['REMOTE_ADDR']);
694
  if( $cntctfrm_options['cntctfrm_display_add_info'] == 1 ||
695
  $cntctfrm_options['cntctfrm_display_sent_from'] == 1 ||
696
  $cntctfrm_options['cntctfrm_display_coming_from'] == 1 ||
734
  <tr>
735
  <td>'. __( "Email", 'contact_form' ) .'</td><td>'.$_REQUEST['cntctfrm_contact_email'].'</td>
736
  </tr>
737
+ ';
738
+ if( $cntctfrm_options['cntctfrm_display_phone_field'] == 1 )
739
+ $message .= '<tr>
740
+ <td>'. __( "Phone", 'contact_form' ) . '</td><td>'. strip_tags( $_REQUEST['cntctfrm_contact_phone'] ).'</td>
741
+ </tr>';
742
+ $message .= '<tr>
743
+ <td>'. __( "Subject", 'contact_form' ) . '</td><td>'. strip_tags( $subject ).'</td>
744
  </tr>
745
  <tr>
746
  <td>'. __( "Message", 'contact_form' ) . '</td><td>'.$_REQUEST['cntctfrm_contact_message'].'</td>
768
  }
769
 
770
  if( isset( $_REQUEST['cntctfrm_contact_send_copy'] ) && $_REQUEST['cntctfrm_contact_send_copy'] == 1 )
771
+ wp_mail( $_REQUEST['cntctfrm_contact_email'], stripslashes( strip_tags( $subject ) ), stripslashes( $message ), $headers, $attachments );
772
 
773
  // Mail it
774
+ return wp_mail( $to, stripslashes( strip_tags( $subject ) ), stripslashes( $message ), $headers, $attachments );
775
  }
776
  else{
777
+ if( $cntctfrm_options['cntctfrm_attachment'] == 1 && isset( $_FILES["cntctfrm_contact_attachment"]["tmp_name"] ) && $_FILES["cntctfrm_contact_attachment"]["tmp_name"] != "") {
778
  global $path_of_uploaded_file;
779
  $headers = "";
780
  $message_block = $message;
803
  $file = file_get_contents($path_of_uploaded_file);
804
  $path_info = pathinfo( $path_of_uploaded_file );
805
 
806
+ $message .= "Content-Type: ".$path_info['extension']."; name=\"".basename( $path_of_uploaded_file )."\"\r\n"
807
  ."Content-Transfer-Encoding: base64\r\n"
808
+ ."Content-disposition: attachment; file=\"".basename( $path_of_uploaded_file )."\"\r\n"
809
  ."\r\n"
810
  .chunk_split( base64_encode( $file ) )
811
  .$bound_last;
819
  $headers .= 'From: '.$_REQUEST['cntctfrm_contact_email']. "\r\n";
820
  }
821
  if( isset( $_REQUEST['cntctfrm_contact_send_copy'] ) && $_REQUEST['cntctfrm_contact_send_copy'] == 1 )
822
+ @mail( $_REQUEST['cntctfrm_contact_email'], stripslashes( strip_tags( $subject ) ), stripslashes( $message ), $headers );
823
 
824
+ return @mail( $to, stripslashes( strip_tags( $subject ) ), stripslashes( $message ), $headers );
825
  }
826
 
827
  }
images/icon_16.png CHANGED
File without changes
images/icon_16_b.png CHANGED
File without changes
images/icon_16_c.png CHANGED
File without changes
images/icon_36.png CHANGED
File without changes
images/icon_36_b.png CHANGED
File without changes
images/px.png CHANGED
File without changes
js/script.js CHANGED
File without changes
languages/contact_form-ar.mo CHANGED
Binary file
languages/contact_form-ar.po CHANGED
@@ -2,34 +2,30 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-07-10 10:48+0300\n"
6
- "PO-Revision-Date: 2012-07-10 10:49+0300\n"
7
- "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
- "Language-Team: Hammad Alshammari (ABU HATIM) www.abuhatim.net <al3zz.com@gmail.com>\n"
9
- "Language: \n"
 
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-Language: Arabic\n"
16
- "X-Poedit-Country: SAUDI ARABIA\n"
17
  "X-Poedit-SourceCharset: utf-8\n"
 
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: contact_form.php:76
21
  msgid "Activated plugins"
22
  msgstr "تفعيل الإضافات"
23
 
24
- #: contact_form.php:78
25
- #: contact_form.php:86
26
- #: contact_form.php:94
27
  msgid "Read more"
28
  msgstr "اقرأ المزيد"
29
 
30
- #: contact_form.php:78
31
- #: contact_form.php:802
32
- #: contact_form.php:811
33
  msgid "Settings"
34
  msgstr "إعدادات"
35
 
@@ -55,11 +51,14 @@ msgid "Install now from wordpress.org"
55
  msgstr "تثبيت من wordpress.org"
56
 
57
  #: contact_form.php:96
58
- msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
59
- msgstr "إذا كان لديك أي أسئلة، يرجى الاتصال بنا عبر plugin@bestwebsoft.com أو ملء استمارة الاتصال على موقعنا"
 
 
 
 
60
 
61
- #: contact_form.php:108
62
- #: contact_form.php:262
63
  msgid "Contact Form Options"
64
  msgstr "خيارات نموذج اتصل بنا"
65
 
@@ -67,277 +66,285 @@ msgstr "خيارات نموذج اتصل بنا"
67
  msgid "Contact Form"
68
  msgstr "نموذج الاتصال"
69
 
70
- #: contact_form.php:136
71
- #: contact_form.php:180
72
- #: contact_form.php:216
73
- #: contact_form.php:366
74
  msgid "Name:"
75
  msgstr "الأسم:"
76
 
77
- #: contact_form.php:137
78
- #: contact_form.php:181
79
- #: contact_form.php:217
80
- #: contact_form.php:367
81
  msgid "E-Mail Address:"
82
  msgstr "البريد الالكتروني:"
83
 
84
- #: contact_form.php:138
85
- #: contact_form.php:182
86
- #: contact_form.php:218
87
- #: contact_form.php:368
 
 
88
  msgid "Subject:"
89
  msgstr "موضوع الرسالة:"
90
 
91
- #: contact_form.php:139
92
- #: contact_form.php:183
93
- #: contact_form.php:219
94
- #: contact_form.php:369
95
  msgid "Message:"
96
  msgstr "الرسالة:"
97
 
98
- #: contact_form.php:140
99
- #: contact_form.php:184
100
- #: contact_form.php:220
101
- #: contact_form.php:370
102
  msgid "Attachment:"
103
  msgstr "المرفقات:"
104
 
105
- #: contact_form.php:142
106
- #: contact_form.php:186
107
  msgid "Thank you for contacting us."
108
  msgstr "أشكركم على الاتصال بنا. سيتم الرد عليكم في أقرب فرصة."
109
 
110
- #: contact_form.php:230
111
- msgid "If the option 'Redirect to page' is selected then url field should be fillied in the following format"
 
 
112
  msgstr ""
113
 
114
- #: contact_form.php:237
115
- #: contact_form.php:242
116
- #: contact_form.php:251
117
  msgid "Options saved."
118
  msgstr "الخيارات حُفظت."
119
 
120
- #: contact_form.php:245
121
  msgid "Such user is not exist. Settings are not saved."
122
  msgstr "هذا المستخدم لا وجود له. لم يتم حفظ الإعدادات."
123
 
124
- #: contact_form.php:254
125
  msgid "Please input correct email. Settings are not saved."
126
  msgstr "الرجاء إدخال بريد الكتروني صحيح. الاعدادات لم تُحفظ."
127
 
128
- #: contact_form.php:267
129
- msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
130
- msgstr "إذا كنت ترغب في إضافة نموذج الاتصال إلى موقع الويب الخاص بك، قم بنسخ ولصق هذا الرمز القصير:"
 
 
 
 
131
 
132
- #: contact_form.php:268
133
- msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
134
- msgstr "إذا كانت المعلومات في الحقول أدناه فارغة سيتم إرسال الرسالة إلى عنوان الذي تم تحديده أثناء التسجيل."
 
 
 
 
135
 
136
- #: contact_form.php:272
137
  msgid "Use email of wordpress user:"
138
  msgstr "أستخدم بريد العضو في وورد بريس:"
139
 
140
- #: contact_form.php:278
141
  msgid "Select user name"
142
  msgstr "اختر اسم المستخدم"
143
 
144
- #: contact_form.php:283
145
  msgid "Set a name of user who will get messages from a contact form."
146
  msgstr "تعيين اسم المستخدم من الذين سيحصلون على رسائل من شكل من أشكال الاتصال."
147
 
148
- #: contact_form.php:287
149
  msgid "Use this email:"
150
  msgstr "استخدام هذا البريد الالكتروني:"
151
 
152
- #: contact_form.php:293
153
  msgid "Set an email address which will be used for messages receiving."
154
  msgstr "تعيين عنوان البريد الإلكتروني التي سيتم استخدامها لاستقبال الرسائل."
155
 
156
- #: contact_form.php:297
157
  msgid "Additional options"
158
  msgstr "خيارات إضافية"
159
 
160
- #: contact_form.php:300
161
  msgid "Display Attachment block"
162
  msgstr "عرض حقل المرفقات"
163
 
164
- #: contact_form.php:305
165
  msgid "Users can attach files of the following types"
166
  msgstr "يمكن للمستخدمين إرفاق الملفات من الأنواع التالية"
167
 
168
- #: contact_form.php:309
 
169
  msgid "Display Attachment explanations"
170
- msgstr ""
171
 
172
- #: contact_form.php:314
 
173
  msgid "Display explanations after Attachment block"
174
- msgstr ""
175
 
176
- #: contact_form.php:318
177
  msgid "Display Send me a copy block"
178
  msgstr "عرض خيار (أرسل لي نسخة)"
179
 
180
- #: contact_form.php:324
181
  msgid "What use?"
182
  msgstr "ماذا تستخدم؟"
183
 
184
- #: contact_form.php:329
185
  msgid "Wp-mail"
186
  msgstr "Wp-mail"
187
 
188
- #: contact_form.php:330
189
  msgid "To send mail you can use the wordpress wp_mail function"
190
  msgstr "لإرسال البريد يمكنك استخدام وظيفة wp_mail"
191
 
192
- #: contact_form.php:338
193
  msgid "Mail"
194
  msgstr "Mail"
195
 
196
- #: contact_form.php:339
197
  msgid "To send mail you can use the php mail function"
198
  msgstr "لإرسال البريد يمكنك استخدام وظيفة البريد PHP"
199
 
200
- #: contact_form.php:343
201
  msgid "Change FROM fields of the contact form"
202
  msgstr "تغيير من الحقول من نموذج الاتصال"
203
 
204
- #: contact_form.php:349
 
 
 
 
205
  msgid "Display additional info in email"
206
  msgstr "عرض معلومات اضافية في البريد الالكتروني"
207
 
208
- #: contact_form.php:354
209
- #: contact_form.php:673
210
  msgid "Sent from (ip address)"
211
  msgstr "ارسلت من (عنوان IP)"
212
 
213
- #: contact_form.php:355
214
- #: contact_form.php:678
215
  msgid "Date/Time"
216
  msgstr "الوقت/التاريخ"
217
 
218
- #: contact_form.php:356
219
- #: contact_form.php:683
220
  msgid "Coming from (referer)"
221
  msgstr "Coming from (referer)"
222
 
223
- #: contact_form.php:357
224
- #: contact_form.php:688
225
  msgid "Using (user agent)"
226
  msgstr "باستخدام (وكيل المستخدم)"
227
 
228
- #: contact_form.php:361
229
  msgid "Change label for fields of the contact form"
230
  msgstr "تغيير تسمية حقول نموذج الاتصال"
231
 
232
- #: contact_form.php:374
233
  msgid "Action after the send mail"
234
  msgstr ""
235
 
236
- #: contact_form.php:376
237
  #, fuzzy
238
  msgid "Display text"
239
  msgstr "عرض حقل المرفقات"
240
 
241
- #: contact_form.php:377
242
  msgid "Text"
243
  msgstr ""
244
 
245
- #: contact_form.php:378
246
  msgid "Redirect to page"
247
  msgstr ""
248
 
249
- #: contact_form.php:379
250
  msgid "Url"
251
  msgstr ""
252
 
253
- #: contact_form.php:384
254
  msgid "Save Changes"
255
  msgstr "حفظ التغييرات"
256
 
257
- #: contact_form.php:417
258
  msgid "Sorry, your e-mail could not be delivered."
259
  msgstr "عذراً, لم نستطيع تسليم رسالتك."
260
 
261
- #: contact_form.php:475
262
  msgid "You can attach files of the following types"
263
  msgstr "يمكنك إرفاق الملفات من الأنواع التالية"
264
 
265
- #: contact_form.php:483
266
  msgid "Send me a copy"
267
  msgstr "أرسل لي نسخة"
268
 
269
- #: contact_form.php:493
270
  msgid "Submit"
271
  msgstr "تقدم"
272
 
273
- #: contact_form.php:532
274
  msgid "Your name is required."
275
  msgstr "مطلوب اسمك."
276
 
277
- #: contact_form.php:533
278
  msgid "A proper e-mail address is required."
279
  msgstr "مطلوب بريد الكتروني صحيح."
280
 
281
- #: contact_form.php:534
282
  msgid "Subject text is required."
283
  msgstr "مطلوب نص الموضوع."
284
 
285
- #: contact_form.php:535
286
  msgid "Message text is required."
287
  msgstr "مطلوب نص الرسالة."
288
 
289
- #: contact_form.php:536
290
  msgid "Please make corrections below and try again."
291
  msgstr "يرجى إجراء التصحيحات أدناه وحاول مرة أخرى."
292
 
293
- #: contact_form.php:567
294
  msgid "Attachment is broken."
295
  msgstr "المرفق تعطل."
296
 
297
- #: contact_form.php:580
298
  msgid "Please complete the CAPTCHA."
299
  msgstr "يرجى استكمال رمز التحقق."
300
 
301
- #: contact_form.php:696
302
  msgid "Contact from"
303
  msgstr "اتصل من"
304
 
305
- #: contact_form.php:701
306
  msgid "Name"
307
  msgstr "الأسم"
308
 
309
- #: contact_form.php:704
310
  msgid "Email"
311
  msgstr "البريد الألكتروني"
312
 
313
- #: contact_form.php:707
 
 
 
 
314
  msgid "Subject"
315
  msgstr "موضوع الرسالة"
316
 
317
- #: contact_form.php:710
318
  msgid "Message"
319
  msgstr "الرسالة"
320
 
321
- #: contact_form.php:713
322
  msgid "Site"
323
  msgstr "الموقع"
324
 
325
- #: contact_form.php:758
326
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
327
  msgstr "إذا يمكنك أن ترى هذه MIME من العميل الخاص بك لا يقبل أنواع MIME!"
328
 
329
- #: contact_form.php:812
330
  msgid "FAQ"
331
  msgstr "أسئلة وأجوبة"
332
 
333
- #: contact_form.php:813
334
  msgid "Support"
335
  msgstr "دعم"
336
 
337
  #~ msgid "E-Mail Addresse:"
338
  #~ msgstr "Indirizzo e-mail:"
 
339
  #~ msgid "Install Now"
340
  #~ msgstr "Installa Ora"
 
341
  #~ msgid "BWS Plugins"
342
  #~ msgstr "BWS Plugins"
343
-
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-22 13:39+0200\n"
6
+ "PO-Revision-Date: 2012-10-22 13:39+0200\n"
7
+ "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
+ "Language-Team: Hammad Alshammari (ABU HATIM) www.abuhatim.net <al3zz."
9
+ "com@gmail.com>\n"
10
+ "Language: ar_SA\n"
11
  "MIME-Version: 1.0\n"
12
  "Content-Type: text/plain; charset=UTF-8\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "X-Poedit-KeywordsList: __;_e\n"
15
  "X-Poedit-Basepath: ..\n"
 
 
16
  "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Generator: Poedit 1.5.4\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: contact_form.php:76
21
  msgid "Activated plugins"
22
  msgstr "تفعيل الإضافات"
23
 
24
+ #: contact_form.php:78 contact_form.php:86 contact_form.php:94
 
 
25
  msgid "Read more"
26
  msgstr "اقرأ المزيد"
27
 
28
+ #: contact_form.php:78 contact_form.php:838 contact_form.php:847
 
 
29
  msgid "Settings"
30
  msgstr "إعدادات"
31
 
51
  msgstr "تثبيت من wordpress.org"
52
 
53
  #: contact_form.php:96
54
+ msgid ""
55
+ "If you have any questions, please contact us via plugin@bestwebsoft.com or "
56
+ "fill in our contact form on our site"
57
+ msgstr ""
58
+ "إذا كان لديك أي أسئلة، يرجى الاتصال بنا عبر plugin@bestwebsoft.com أو ملء "
59
+ "استمارة الاتصال على موقعنا"
60
 
61
+ #: contact_form.php:108 contact_form.php:269
 
62
  msgid "Contact Form Options"
63
  msgstr "خيارات نموذج اتصل بنا"
64
 
66
  msgid "Contact Form"
67
  msgstr "نموذج الاتصال"
68
 
69
+ #: contact_form.php:137 contact_form.php:183 contact_form.php:222
70
+ #: contact_form.php:379
 
 
71
  msgid "Name:"
72
  msgstr "الأسم:"
73
 
74
+ #: contact_form.php:138 contact_form.php:184 contact_form.php:223
75
+ #: contact_form.php:380
 
 
76
  msgid "E-Mail Address:"
77
  msgstr "البريد الالكتروني:"
78
 
79
+ #: contact_form.php:139 contact_form.php:224 contact_form.php:381
80
+ msgid "Phone:"
81
+ msgstr ""
82
+
83
+ #: contact_form.php:140 contact_form.php:185 contact_form.php:225
84
+ #: contact_form.php:382
85
  msgid "Subject:"
86
  msgstr "موضوع الرسالة:"
87
 
88
+ #: contact_form.php:141 contact_form.php:186 contact_form.php:226
89
+ #: contact_form.php:383
 
 
90
  msgid "Message:"
91
  msgstr "الرسالة:"
92
 
93
+ #: contact_form.php:142 contact_form.php:187 contact_form.php:227
94
+ #: contact_form.php:384
 
 
95
  msgid "Attachment:"
96
  msgstr "المرفقات:"
97
 
98
+ #: contact_form.php:144 contact_form.php:189
 
99
  msgid "Thank you for contacting us."
100
  msgstr "أشكركم على الاتصال بنا. سيتم الرد عليكم في أقرب فرصة."
101
 
102
+ #: contact_form.php:237
103
+ msgid ""
104
+ "If the option 'Redirect to page' is selected then url field should be "
105
+ "fillied in the following format"
106
  msgstr ""
107
 
108
+ #: contact_form.php:244 contact_form.php:249 contact_form.php:258
 
 
109
  msgid "Options saved."
110
  msgstr "الخيارات حُفظت."
111
 
112
+ #: contact_form.php:252
113
  msgid "Such user is not exist. Settings are not saved."
114
  msgstr "هذا المستخدم لا وجود له. لم يتم حفظ الإعدادات."
115
 
116
+ #: contact_form.php:261
117
  msgid "Please input correct email. Settings are not saved."
118
  msgstr "الرجاء إدخال بريد الكتروني صحيح. الاعدادات لم تُحفظ."
119
 
120
+ #: contact_form.php:274
121
+ msgid ""
122
+ "If you would like to add a Contact Form to your website, just copy and put "
123
+ "this shortcode onto your post or page or widget:"
124
+ msgstr ""
125
+ "إذا كنت ترغب في إضافة نموذج الاتصال إلى موقع الويب الخاص بك، قم بنسخ ولصق "
126
+ "هذا الرمز القصير:"
127
 
128
+ #: contact_form.php:275
129
+ msgid ""
130
+ "If information in the below fields are empty then the message will be send "
131
+ "to an address which was specified during registration."
132
+ msgstr ""
133
+ "إذا كانت المعلومات في الحقول أدناه فارغة سيتم إرسال الرسالة إلى عنوان الذي "
134
+ "تم تحديده أثناء التسجيل."
135
 
136
+ #: contact_form.php:279
137
  msgid "Use email of wordpress user:"
138
  msgstr "أستخدم بريد العضو في وورد بريس:"
139
 
140
+ #: contact_form.php:285
141
  msgid "Select user name"
142
  msgstr "اختر اسم المستخدم"
143
 
144
+ #: contact_form.php:290
145
  msgid "Set a name of user who will get messages from a contact form."
146
  msgstr "تعيين اسم المستخدم من الذين سيحصلون على رسائل من شكل من أشكال الاتصال."
147
 
148
+ #: contact_form.php:294
149
  msgid "Use this email:"
150
  msgstr "استخدام هذا البريد الالكتروني:"
151
 
152
+ #: contact_form.php:300
153
  msgid "Set an email address which will be used for messages receiving."
154
  msgstr "تعيين عنوان البريد الإلكتروني التي سيتم استخدامها لاستقبال الرسائل."
155
 
156
+ #: contact_form.php:304
157
  msgid "Additional options"
158
  msgstr "خيارات إضافية"
159
 
160
+ #: contact_form.php:307
161
  msgid "Display Attachment block"
162
  msgstr "عرض حقل المرفقات"
163
 
164
+ #: contact_form.php:312
165
  msgid "Users can attach files of the following types"
166
  msgstr "يمكن للمستخدمين إرفاق الملفات من الأنواع التالية"
167
 
168
+ #: contact_form.php:316
169
+ #, fuzzy
170
  msgid "Display Attachment explanations"
171
+ msgstr "عرض حقل المرفقات"
172
 
173
+ #: contact_form.php:321
174
+ #, fuzzy
175
  msgid "Display explanations after Attachment block"
176
+ msgstr "عرض حقل المرفقات"
177
 
178
+ #: contact_form.php:325
179
  msgid "Display Send me a copy block"
180
  msgstr "عرض خيار (أرسل لي نسخة)"
181
 
182
+ #: contact_form.php:331
183
  msgid "What use?"
184
  msgstr "ماذا تستخدم؟"
185
 
186
+ #: contact_form.php:336
187
  msgid "Wp-mail"
188
  msgstr "Wp-mail"
189
 
190
+ #: contact_form.php:337
191
  msgid "To send mail you can use the wordpress wp_mail function"
192
  msgstr "لإرسال البريد يمكنك استخدام وظيفة wp_mail"
193
 
194
+ #: contact_form.php:345
195
  msgid "Mail"
196
  msgstr "Mail"
197
 
198
+ #: contact_form.php:346
199
  msgid "To send mail you can use the php mail function"
200
  msgstr "لإرسال البريد يمكنك استخدام وظيفة البريد PHP"
201
 
202
+ #: contact_form.php:350
203
  msgid "Change FROM fields of the contact form"
204
  msgstr "تغيير من الحقول من نموذج الاتصال"
205
 
206
+ #: contact_form.php:356
207
+ msgid "Display phone field"
208
+ msgstr ""
209
+
210
+ #: contact_form.php:362
211
  msgid "Display additional info in email"
212
  msgstr "عرض معلومات اضافية في البريد الالكتروني"
213
 
214
+ #: contact_form.php:367 contact_form.php:704
 
215
  msgid "Sent from (ip address)"
216
  msgstr "ارسلت من (عنوان IP)"
217
 
218
+ #: contact_form.php:368 contact_form.php:709
 
219
  msgid "Date/Time"
220
  msgstr "الوقت/التاريخ"
221
 
222
+ #: contact_form.php:369 contact_form.php:714
 
223
  msgid "Coming from (referer)"
224
  msgstr "Coming from (referer)"
225
 
226
+ #: contact_form.php:370 contact_form.php:719
 
227
  msgid "Using (user agent)"
228
  msgstr "باستخدام (وكيل المستخدم)"
229
 
230
+ #: contact_form.php:374
231
  msgid "Change label for fields of the contact form"
232
  msgstr "تغيير تسمية حقول نموذج الاتصال"
233
 
234
+ #: contact_form.php:388
235
  msgid "Action after the send mail"
236
  msgstr ""
237
 
238
+ #: contact_form.php:390
239
  #, fuzzy
240
  msgid "Display text"
241
  msgstr "عرض حقل المرفقات"
242
 
243
+ #: contact_form.php:391
244
  msgid "Text"
245
  msgstr ""
246
 
247
+ #: contact_form.php:392
248
  msgid "Redirect to page"
249
  msgstr ""
250
 
251
+ #: contact_form.php:393
252
  msgid "Url"
253
  msgstr ""
254
 
255
+ #: contact_form.php:398
256
  msgid "Save Changes"
257
  msgstr "حفظ التغييرات"
258
 
259
+ #: contact_form.php:435
260
  msgid "Sorry, your e-mail could not be delivered."
261
  msgstr "عذراً, لم نستطيع تسليم رسالتك."
262
 
263
+ #: contact_form.php:505
264
  msgid "You can attach files of the following types"
265
  msgstr "يمكنك إرفاق الملفات من الأنواع التالية"
266
 
267
+ #: contact_form.php:513
268
  msgid "Send me a copy"
269
  msgstr "أرسل لي نسخة"
270
 
271
+ #: contact_form.php:523
272
  msgid "Submit"
273
  msgstr "تقدم"
274
 
275
+ #: contact_form.php:562
276
  msgid "Your name is required."
277
  msgstr "مطلوب اسمك."
278
 
279
+ #: contact_form.php:563
280
  msgid "A proper e-mail address is required."
281
  msgstr "مطلوب بريد الكتروني صحيح."
282
 
283
+ #: contact_form.php:564
284
  msgid "Subject text is required."
285
  msgstr "مطلوب نص الموضوع."
286
 
287
+ #: contact_form.php:565
288
  msgid "Message text is required."
289
  msgstr "مطلوب نص الرسالة."
290
 
291
+ #: contact_form.php:566
292
  msgid "Please make corrections below and try again."
293
  msgstr "يرجى إجراء التصحيحات أدناه وحاول مرة أخرى."
294
 
295
+ #: contact_form.php:598
296
  msgid "Attachment is broken."
297
  msgstr "المرفق تعطل."
298
 
299
+ #: contact_form.php:611
300
  msgid "Please complete the CAPTCHA."
301
  msgstr "يرجى استكمال رمز التحقق."
302
 
303
+ #: contact_form.php:727
304
  msgid "Contact from"
305
  msgstr "اتصل من"
306
 
307
+ #: contact_form.php:732
308
  msgid "Name"
309
  msgstr "الأسم"
310
 
311
+ #: contact_form.php:735
312
  msgid "Email"
313
  msgstr "البريد الألكتروني"
314
 
315
+ #: contact_form.php:740
316
+ msgid "Phone"
317
+ msgstr ""
318
+
319
+ #: contact_form.php:743
320
  msgid "Subject"
321
  msgstr "موضوع الرسالة"
322
 
323
+ #: contact_form.php:746
324
  msgid "Message"
325
  msgstr "الرسالة"
326
 
327
+ #: contact_form.php:749
328
  msgid "Site"
329
  msgstr "الموقع"
330
 
331
+ #: contact_form.php:794
332
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
333
  msgstr "إذا يمكنك أن ترى هذه MIME من العميل الخاص بك لا يقبل أنواع MIME!"
334
 
335
+ #: contact_form.php:848
336
  msgid "FAQ"
337
  msgstr "أسئلة وأجوبة"
338
 
339
+ #: contact_form.php:849
340
  msgid "Support"
341
  msgstr "دعم"
342
 
343
  #~ msgid "E-Mail Addresse:"
344
  #~ msgstr "Indirizzo e-mail:"
345
+
346
  #~ msgid "Install Now"
347
  #~ msgstr "Installa Ora"
348
+
349
  #~ msgid "BWS Plugins"
350
  #~ msgstr "BWS Plugins"
 
languages/contact_form-bg_BG.mo CHANGED
Binary file
languages/contact_form-bg_BG.po CHANGED
@@ -2,34 +2,29 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-07-10 10:49+0300\n"
6
- "PO-Revision-Date: 2012-07-10 10:49+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
- "Language: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-Language: Bulgarian\n"
16
- "X-Poedit-Country: Bulgaria\n"
17
  "X-Poedit-SourceCharset: utf-8\n"
 
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: contact_form.php:76
21
  msgid "Activated plugins"
22
  msgstr "Активиране на приложението"
23
 
24
- #: contact_form.php:78
25
- #: contact_form.php:86
26
- #: contact_form.php:94
27
  msgid "Read more"
28
  msgstr "Прочетете повече"
29
 
30
- #: contact_form.php:78
31
- #: contact_form.php:802
32
- #: contact_form.php:811
33
  msgid "Settings"
34
  msgstr "Настройки"
35
 
@@ -55,11 +50,14 @@ msgid "Install now from wordpress.org"
55
  msgstr "Инсталирай сега от wordpress.org"
56
 
57
  #: contact_form.php:96
58
- msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
59
- msgstr "Ако имате някакви въпроси, моля свържете с нас чрез plugin@bestwebsoft.com или попълнете нашата форма за контакти на нашия сайт"
 
 
 
 
60
 
61
- #: contact_form.php:108
62
- #: contact_form.php:262
63
  msgid "Contact Form Options"
64
  msgstr "Настройки на Формата за контакт"
65
 
@@ -67,277 +65,288 @@ msgstr "Настройки на Формата за контакт"
67
  msgid "Contact Form"
68
  msgstr "Форма за контакт"
69
 
70
- #: contact_form.php:136
71
- #: contact_form.php:180
72
- #: contact_form.php:216
73
- #: contact_form.php:366
74
  msgid "Name:"
75
  msgstr "Име:"
76
 
77
- #: contact_form.php:137
78
- #: contact_form.php:181
79
- #: contact_form.php:217
80
- #: contact_form.php:367
81
  msgid "E-Mail Address:"
82
  msgstr "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
 
337
  #~ msgid "E-Mail Addresse:"
338
  #~ msgstr "E-mail адрес:"
 
339
  #~ msgid "Install Now"
340
  #~ msgstr "Инсталирайте сега"
 
341
  #~ msgid "BWS Plugins"
342
  #~ msgstr "Разширение BWS"
343
-
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-22 13:40+0200\n"
6
+ "PO-Revision-Date: 2012-10-22 13:40+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
+ "Language: bg_BG\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
 
 
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: contact_form.php:76
20
  msgid "Activated plugins"
21
  msgstr "Активиране на приложението"
22
 
23
+ #: contact_form.php:78 contact_form.php:86 contact_form.php:94
 
 
24
  msgid "Read more"
25
  msgstr "Прочетете повече"
26
 
27
+ #: contact_form.php:78 contact_form.php:838 contact_form.php:847
 
 
28
  msgid "Settings"
29
  msgstr "Настройки"
30
 
50
  msgstr "Инсталирай сега от wordpress.org"
51
 
52
  #: contact_form.php:96
53
+ msgid ""
54
+ "If you have any questions, please contact us via plugin@bestwebsoft.com or "
55
+ "fill in our contact form on our site"
56
+ msgstr ""
57
+ "Ако имате някакви въпроси, моля свържете с нас чрез plugin@bestwebsoft.com "
58
+ "или попълнете нашата форма за контакти на нашия сайт"
59
 
60
+ #: contact_form.php:108 contact_form.php:269
 
61
  msgid "Contact Form Options"
62
  msgstr "Настройки на Формата за контакт"
63
 
65
  msgid "Contact Form"
66
  msgstr "Форма за контакт"
67
 
68
+ #: contact_form.php:137 contact_form.php:183 contact_form.php:222
69
+ #: contact_form.php:379
 
 
70
  msgid "Name:"
71
  msgstr "Име:"
72
 
73
+ #: contact_form.php:138 contact_form.php:184 contact_form.php:223
74
+ #: contact_form.php:380
 
 
75
  msgid "E-Mail Address:"
76
  msgstr "E-mail адрес:"
77
 
78
+ #: contact_form.php:139 contact_form.php:224 contact_form.php:381
79
+ msgid "Phone:"
80
+ msgstr ""
81
+
82
+ #: contact_form.php:140 contact_form.php:185 contact_form.php:225
83
+ #: contact_form.php:382
84
  msgid "Subject:"
85
  msgstr "Тема:"
86
 
87
+ #: contact_form.php:141 contact_form.php:186 contact_form.php:226
88
+ #: contact_form.php:383
 
 
89
  msgid "Message:"
90
  msgstr "Съобщение:"
91
 
92
+ #: contact_form.php:142 contact_form.php:187 contact_form.php:227
93
+ #: contact_form.php:384
 
 
94
  msgid "Attachment:"
95
  msgstr "Прикачване на файл:"
96
 
97
+ #: contact_form.php:144 contact_form.php:189
 
98
  msgid "Thank you for contacting us."
99
  msgstr "Благодарим Ви, че се свързахте с нас."
100
 
101
+ #: contact_form.php:237
102
+ msgid ""
103
+ "If the option 'Redirect to page' is selected then url field should be "
104
+ "fillied in the following format"
105
  msgstr ""
106
 
107
+ #: contact_form.php:244 contact_form.php:249 contact_form.php:258
 
 
108
  msgid "Options saved."
109
  msgstr "Опциите са запазени"
110
 
111
+ #: contact_form.php:252
112
  msgid "Such user is not exist. Settings are not saved."
113
  msgstr "Не са намерени данни за потребителя. Настройките не са запазени"
114
 
115
+ #: contact_form.php:261
116
  msgid "Please input correct email. Settings are not saved."
117
  msgstr "Моля, въведете коректен Email. Настройките не са запазени."
118
 
119
+ #: contact_form.php:274
120
+ msgid ""
121
+ "If you would like to add a Contact Form to your website, just copy and put "
122
+ "this shortcode onto your post or page or widget:"
123
+ msgstr ""
124
+ "Ако искате да добавите формата за контакт на своят сайт копирайте и "
125
+ "поставете този код в страницата или публикацията или джаджа:"
126
 
127
+ #: contact_form.php:275
128
+ msgid ""
129
+ "If information in the below fields are empty then the message will be send "
130
+ "to an address which was specified during registration."
131
+ msgstr ""
132
+ "Ако посочените по-долу полета не са попълнени, съобщението ще бъде изпратено "
133
+ "на Email адрес, който е определен по време на регистрацията"
134
 
135
+ #: contact_form.php:279
136
  msgid "Use email of wordpress user:"
137
  msgstr "Използвайте Email на Wordpress потребител:"
138
 
139
+ #: contact_form.php:285
140
  msgid "Select user name"
141
  msgstr "Избиране на потребител"
142
 
143
+ #: contact_form.php:290
144
  msgid "Set a name of user who will get messages from a contact form."
145
+ msgstr ""
146
+ "Задайте името на потребителя, който ще получава съобщенията от формата за "
147
+ "контакт."
148
 
149
+ #: contact_form.php:294
150
  msgid "Use this email:"
151
  msgstr "Използвайте този Email:"
152
 
153
+ #: contact_form.php:300
154
  msgid "Set an email address which will be used for messages receiving."
155
+ msgstr ""
156
+ "Задаване на Email адрес, който ще се използва за получаване на съобщения."
157
 
158
+ #: contact_form.php:304
159
  msgid "Additional options"
160
  msgstr "Допълнителни настройки"
161
 
162
+ #: contact_form.php:307
163
  msgid "Display Attachment block"
164
  msgstr "Покажи опция за прикачване на файл"
165
 
166
+ #: contact_form.php:312
167
  msgid "Users can attach files of the following types"
168
  msgstr "Потребителите могат да прикачват файлове от следните видове"
169
 
170
+ #: contact_form.php:316
171
  msgid "Display Attachment explanations"
172
  msgstr ""
173
 
174
+ #: contact_form.php:321
175
  msgid "Display explanations after Attachment block"
176
  msgstr ""
177
 
178
+ #: contact_form.php:325
179
  msgid "Display Send me a copy block"
180
  msgstr "Показване на опция за изпращане на копие"
181
 
182
+ #: contact_form.php:331
183
  msgid "What use?"
184
  msgstr ""
185
 
186
+ #: contact_form.php:336
187
  msgid "Wp-mail"
188
  msgstr "Wp-mail"
189
 
190
+ #: contact_form.php:337
191
  msgid "To send mail you can use the wordpress wp_mail function"
192
  msgstr ""
193
 
194
+ #: contact_form.php:345
195
  msgid "Mail"
196
  msgstr "Mail"
197
 
198
+ #: contact_form.php:346
199
  msgid "To send mail you can use the php mail function"
200
  msgstr ""
201
 
202
+ #: contact_form.php:350
203
  msgid "Change FROM fields of the contact form"
204
  msgstr "Промяна от полета на формата за контакт"
205
 
206
+ #: contact_form.php:356
207
+ msgid "Display phone field"
208
+ msgstr ""
209
+
210
+ #: contact_form.php:362
211
  msgid "Display additional info in email"
212
  msgstr ""
213
 
214
+ #: contact_form.php:367 contact_form.php:704
 
215
  msgid "Sent from (ip address)"
216
  msgstr "Изпратено от (ip адрес)"
217
 
218
+ #: contact_form.php:368 contact_form.php:709
 
219
  msgid "Date/Time"
220
  msgstr "Дата/Час"
221
 
222
+ #: contact_form.php:369 contact_form.php:714
 
223
  msgid "Coming from (referer)"
224
  msgstr "Идва от (referer)"
225
 
226
+ #: contact_form.php:370 contact_form.php:719
 
227
  msgid "Using (user agent)"
228
  msgstr "Използвайки (user agent)"
229
 
230
+ #: contact_form.php:374
231
  msgid "Change label for fields of the contact form"
232
  msgstr "Промяна на етикетите за полета във формата за контакт"
233
 
234
+ #: contact_form.php:388
235
  msgid "Action after the send mail"
236
  msgstr ""
237
 
238
+ #: contact_form.php:390
239
  #, fuzzy
240
  msgid "Display text"
241
  msgstr "Покажи опция за прикачване на файл"
242
 
243
+ #: contact_form.php:391
244
  msgid "Text"
245
  msgstr ""
246
 
247
+ #: contact_form.php:392
248
  msgid "Redirect to page"
249
  msgstr ""
250
 
251
+ #: contact_form.php:393
252
  msgid "Url"
253
  msgstr ""
254
 
255
+ #: contact_form.php:398
256
  msgid "Save Changes"
257
  msgstr "Запис на промените"
258
 
259
+ #: contact_form.php:435
260
  msgid "Sorry, your e-mail could not be delivered."
261
  msgstr "Съжаляваме, Вашето съобщение не може да бъде изпратено."
262
 
263
+ #: contact_form.php:505
264
  msgid "You can attach files of the following types"
265
  msgstr "Можете да прикачвате файлове от следните типове"
266
 
267
+ #: contact_form.php:513
268
  msgid "Send me a copy"
269
  msgstr "Изпрати ми копие"
270
 
271
+ #: contact_form.php:523
272
  msgid "Submit"
273
  msgstr "Изпрати"
274
 
275
+ #: contact_form.php:562
276
  msgid "Your name is required."
277
  msgstr "Вашето име е задължително."
278
 
279
+ #: contact_form.php:563
280
  msgid "A proper e-mail address is required."
281
  msgstr "Правилният Email адрес е задължителен."
282
 
283
+ #: contact_form.php:564
284
  msgid "Subject text is required."
285
  msgstr "Заглавието е задължитено."
286
 
287
+ #: contact_form.php:565
288
  msgid "Message text is required."
289
  msgstr "Текстовото съобщение е задължително."
290
 
291
+ #: contact_form.php:566
292
  msgid "Please make corrections below and try again."
293
  msgstr "Моля направете необходимите корекции по-долу и опитайте отново."
294
 
295
+ #: contact_form.php:598
296
  msgid "Attachment is broken."
297
  msgstr "Прикаченият файл не се поддържа"
298
 
299
+ #: contact_form.php:611
300
  msgid "Please complete the CAPTCHA."
301
  msgstr "Моля попълнете CAPTCHA."
302
 
303
+ #: contact_form.php:727
304
  msgid "Contact from"
305
  msgstr "Форма за контакт"
306
 
307
+ #: contact_form.php:732
308
  msgid "Name"
309
  msgstr "Име"
310
 
311
+ #: contact_form.php:735
312
  msgid "Email"
313
  msgstr "Email"
314
 
315
+ #: contact_form.php:740
316
+ msgid "Phone"
317
+ msgstr ""
318
+
319
+ #: contact_form.php:743
320
  msgid "Subject"
321
  msgstr "Относно"
322
 
323
+ #: contact_form.php:746
324
  msgid "Message"
325
  msgstr "Съобщение"
326
 
327
+ #: contact_form.php:749
328
  msgid "Site"
329
  msgstr "Сайт"
330
 
331
+ #: contact_form.php:794
332
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
333
+ msgstr ""
334
+ "Ако видиждате това значи, че вашият MIME клиент за електронна поща не "
335
+ "поддържа MIME тип!"
336
 
337
+ #: contact_form.php:848
338
  msgid "FAQ"
339
  msgstr "FAQ"
340
 
341
+ #: contact_form.php:849
342
  msgid "Support"
343
  msgstr "Поддръжка"
344
 
345
  #~ msgid "E-Mail Addresse:"
346
  #~ msgstr "E-mail адрес:"
347
+
348
  #~ msgid "Install Now"
349
  #~ msgstr "Инсталирайте сега"
350
+
351
  #~ msgid "BWS Plugins"
352
  #~ msgstr "Разширение BWS"
 
languages/contact_form-cs_CZ.mo ADDED
Binary file
languages/contact_form-cs_CZ.po ADDED
@@ -0,0 +1,349 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: contact_form\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-22 13:40+0200\n"
6
+ "PO-Revision-Date: 2012-10-22 13:40+0200\n"
7
+ "Last-Translator: Petr Zápotocký <petr.zapotocky@centrum.cz>\n"
8
+ "Language-Team: Petr Zápotocký <\\tpetr.zapotocky@centrum.cz>\n"
9
+ "Language: cs_CZ\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: contact_form.php:76
20
+ msgid "Activated plugins"
21
+ msgstr "Aktivované pluginy"
22
+
23
+ #: contact_form.php:78 contact_form.php:86 contact_form.php:94
24
+ msgid "Read more"
25
+ msgstr "Čti více"
26
+
27
+ #: contact_form.php:78 contact_form.php:838 contact_form.php:847
28
+ msgid "Settings"
29
+ msgstr "Nastavení"
30
+
31
+ #: contact_form.php:84
32
+ msgid "Installed plugins"
33
+ msgstr "Instalované pluginy"
34
+
35
+ #: contact_form.php:92
36
+ msgid "Recommended plugins"
37
+ msgstr "Doporučené pluginy"
38
+
39
+ #: contact_form.php:94
40
+ msgid "Download"
41
+ msgstr "Download"
42
+
43
+ #: contact_form.php:94
44
+ #, php-format
45
+ msgid "Install %s"
46
+ msgstr "Instalace %s"
47
+
48
+ #: contact_form.php:94
49
+ msgid "Install now from wordpress.org"
50
+ msgstr "instalace z wordpress.org"
51
+
52
+ #: contact_form.php:96
53
+ msgid ""
54
+ "If you have any questions, please contact us via plugin@bestwebsoft.com or "
55
+ "fill in our contact form on our site"
56
+ msgstr ""
57
+ "Pokud máte dotazy, kontaktujte nás na mail: plugin@bestwebsoft.com nebo přes "
58
+ "náš kontaktní formulář"
59
+
60
+ #: contact_form.php:108 contact_form.php:269
61
+ msgid "Contact Form Options"
62
+ msgstr "Nastavení kontaktního formuláře"
63
+
64
+ #: contact_form.php:108
65
+ msgid "Contact Form"
66
+ msgstr "Kontaktní formulář"
67
+
68
+ #: contact_form.php:137 contact_form.php:183 contact_form.php:222
69
+ #: contact_form.php:379
70
+ msgid "Name:"
71
+ msgstr "Jméno:"
72
+
73
+ #: contact_form.php:138 contact_form.php:184 contact_form.php:223
74
+ #: contact_form.php:380
75
+ msgid "E-Mail Address:"
76
+ msgstr "E-Mail:"
77
+
78
+ #: contact_form.php:139 contact_form.php:224 contact_form.php:381
79
+ msgid "Phone:"
80
+ msgstr ""
81
+
82
+ #: contact_form.php:140 contact_form.php:185 contact_form.php:225
83
+ #: contact_form.php:382
84
+ msgid "Subject:"
85
+ msgstr "Předmět:"
86
+
87
+ #: contact_form.php:141 contact_form.php:186 contact_form.php:226
88
+ #: contact_form.php:383
89
+ msgid "Message:"
90
+ msgstr "Zpráva:"
91
+
92
+ #: contact_form.php:142 contact_form.php:187 contact_form.php:227
93
+ #: contact_form.php:384
94
+ msgid "Attachment:"
95
+ msgstr "Příloha:"
96
+
97
+ #: contact_form.php:144 contact_form.php:189
98
+ msgid "Thank you for contacting us."
99
+ msgstr "Děkujeme za zprávu."
100
+
101
+ #: contact_form.php:237
102
+ msgid ""
103
+ "If the option 'Redirect to page' is selected then url field should be "
104
+ "fillied in the following format"
105
+ msgstr ""
106
+ "Pokud vyberete \"Přesměrování na stránku\" do políčka url byste měli vložit "
107
+ "adresu v tomto formátu"
108
+
109
+ #: contact_form.php:244 contact_form.php:249 contact_form.php:258
110
+ msgid "Options saved."
111
+ msgstr "Nastavení uloženo."
112
+
113
+ #: contact_form.php:252
114
+ msgid "Such user is not exist. Settings are not saved."
115
+ msgstr "Uživatel neexistuje. Nastavení neuloženo."
116
+
117
+ #: contact_form.php:261
118
+ msgid "Please input correct email. Settings are not saved."
119
+ msgstr "Vložte správný mail. Nastavení neuloženo."
120
+
121
+ #: contact_form.php:274
122
+ msgid ""
123
+ "If you would like to add a Contact Form to your website, just copy and put "
124
+ "this shortcode onto your post or page or widget:"
125
+ msgstr ""
126
+ "Pokud chcete vložit kontaktní formulář na stránku, zkopírujte a vložte tento "
127
+ "kód do přípsěvku, stránky nebo widgetu:"
128
+
129
+ #: contact_form.php:275
130
+ msgid ""
131
+ "If information in the below fields are empty then the message will be send "
132
+ "to an address which was specified during registration."
133
+ msgstr ""
134
+ "Pokud nebudou informace vyplněny, zprávy budou zasílány na mail, který byl "
135
+ "uveden při registraci."
136
+
137
+ #: contact_form.php:279
138
+ msgid "Use email of wordpress user:"
139
+ msgstr "Použít email uživatele wordpressu:"
140
+
141
+ #: contact_form.php:285
142
+ msgid "Select user name"
143
+ msgstr "Vyberte uživatelské jméno"
144
+
145
+ #: contact_form.php:290
146
+ msgid "Set a name of user who will get messages from a contact form."
147
+ msgstr ""
148
+ "Nastavte uživatele, který bude dostávat zprávy z kontaktního formuláře."
149
+
150
+ #: contact_form.php:294
151
+ msgid "Use this email:"
152
+ msgstr "Použít tento email:"
153
+
154
+ #: contact_form.php:300
155
+ msgid "Set an email address which will be used for messages receiving."
156
+ msgstr "Nastavit email, který bude použit pro příjem zpráv."
157
+
158
+ #: contact_form.php:304
159
+ msgid "Additional options"
160
+ msgstr "Další nastavení"
161
+
162
+ #: contact_form.php:307
163
+ msgid "Display Attachment block"
164
+ msgstr "Zobrazit možnost přílohy"
165
+
166
+ #: contact_form.php:312
167
+ msgid "Users can attach files of the following types"
168
+ msgstr "Uživatelé mohou vkládat soubory těchto typů"
169
+
170
+ #: contact_form.php:316
171
+ msgid "Display Attachment explanations"
172
+ msgstr "Zobrazit vysvětlivky k příloze."
173
+
174
+ #: contact_form.php:321
175
+ msgid "Display explanations after Attachment block"
176
+ msgstr "Zobrazit vysvětlivky po bloku s přílohou."
177
+
178
+ #: contact_form.php:325
179
+ msgid "Display Send me a copy block"
180
+ msgstr "Zobrazit Zaslat kopii"
181
+
182
+ #: contact_form.php:331
183
+ msgid "What use?"
184
+ msgstr "K čemu?"
185
+
186
+ #: contact_form.php:336
187
+ msgid "Wp-mail"
188
+ msgstr "Wp-mail"
189
+
190
+ #: contact_form.php:337
191
+ msgid "To send mail you can use the wordpress wp_mail function"
192
+ msgstr "Pro zaslání mailu můžete použít wordpress wp_mail funkce"
193
+
194
+ #: contact_form.php:345
195
+ msgid "Mail"
196
+ msgstr "Mail"
197
+
198
+ #: contact_form.php:346
199
+ msgid "To send mail you can use the php mail function"
200
+ msgstr "Pro zaslání mailu můžete použít php mail funkce"
201
+
202
+ #: contact_form.php:350
203
+ msgid "Change FROM fields of the contact form"
204
+ msgstr "Změnit políčko OD"
205
+
206
+ #: contact_form.php:356
207
+ msgid "Display phone field"
208
+ msgstr ""
209
+
210
+ #: contact_form.php:362
211
+ msgid "Display additional info in email"
212
+ msgstr "Zobrazit přidané info v mailu."
213
+
214
+ #: contact_form.php:367 contact_form.php:704
215
+ msgid "Sent from (ip address)"
216
+ msgstr "Zasláno z (ip adresa)"
217
+
218
+ #: contact_form.php:368 contact_form.php:709
219
+ msgid "Date/Time"
220
+ msgstr "Datum / Čas"
221
+
222
+ #: contact_form.php:369 contact_form.php:714
223
+ msgid "Coming from (referer)"
224
+ msgstr "Příchozí od"
225
+
226
+ #: contact_form.php:370 contact_form.php:719
227
+ msgid "Using (user agent)"
228
+ msgstr "Používání"
229
+
230
+ #: contact_form.php:374
231
+ msgid "Change label for fields of the contact form"
232
+ msgstr "Změnit popisek políček"
233
+
234
+ #: contact_form.php:388
235
+ msgid "Action after the send mail"
236
+ msgstr "Akce po zaslání mailu."
237
+
238
+ #: contact_form.php:390
239
+ msgid "Display text"
240
+ msgstr "Zobraz text"
241
+
242
+ #: contact_form.php:391
243
+ msgid "Text"
244
+ msgstr "Text"
245
+
246
+ #: contact_form.php:392
247
+ msgid "Redirect to page"
248
+ msgstr "Přesměrovat na stránku"
249
+
250
+ #: contact_form.php:393
251
+ msgid "Url"
252
+ msgstr "Url"
253
+
254
+ #: contact_form.php:398
255
+ msgid "Save Changes"
256
+ msgstr "Uložit změny"
257
+
258
+ #: contact_form.php:435
259
+ msgid "Sorry, your e-mail could not be delivered."
260
+ msgstr "Omlouváme se, váš email nemohl být odeslán."
261
+
262
+ #: contact_form.php:505
263
+ msgid "You can attach files of the following types"
264
+ msgstr "Můžete přiložit soubory těchto typů"
265
+
266
+ #: contact_form.php:513
267
+ msgid "Send me a copy"
268
+ msgstr "Zaslat mi kopii"
269
+
270
+ #: contact_form.php:523
271
+ msgid "Submit"
272
+ msgstr "Zaslat"
273
+
274
+ #: contact_form.php:562
275
+ msgid "Your name is required."
276
+ msgstr "Jméno je požadováno."
277
+
278
+ #: contact_form.php:563
279
+ msgid "A proper e-mail address is required."
280
+ msgstr "E-mail je požadován."
281
+
282
+ #: contact_form.php:564
283
+ msgid "Subject text is required."
284
+ msgstr "Předmět je požadován."
285
+
286
+ #: contact_form.php:565
287
+ msgid "Message text is required."
288
+ msgstr "Zpráva je požadována."
289
+
290
+ #: contact_form.php:566
291
+ msgid "Please make corrections below and try again."
292
+ msgstr "Prosím opravte následující chyby a zkuste to znovu."
293
+
294
+ #: contact_form.php:598
295
+ msgid "Attachment is broken."
296
+ msgstr "Příloha nelze odeslat."
297
+
298
+ #: contact_form.php:611
299
+ msgid "Please complete the CAPTCHA."
300
+ msgstr "Prosím opište následující text."
301
+
302
+ #: contact_form.php:727
303
+ msgid "Contact from"
304
+ msgstr "Kontaktní formulář"
305
+
306
+ #: contact_form.php:732
307
+ msgid "Name"
308
+ msgstr "Jméno"
309
+
310
+ #: contact_form.php:735
311
+ msgid "Email"
312
+ msgstr "E-Mail"
313
+
314
+ #: contact_form.php:740
315
+ msgid "Phone"
316
+ msgstr ""
317
+
318
+ #: contact_form.php:743
319
+ msgid "Subject"
320
+ msgstr "Předmět"
321
+
322
+ #: contact_form.php:746
323
+ msgid "Message"
324
+ msgstr "Zpráva"
325
+
326
+ #: contact_form.php:749
327
+ msgid "Site"
328
+ msgstr "Stránka"
329
+
330
+ #: contact_form.php:794
331
+ msgid "If you can see this MIME than your client doesn't accept MIME types!"
332
+ msgstr "Když uvidíte MIME, váš klient neakceptoval MIME typy."
333
+
334
+ #: contact_form.php:848
335
+ msgid "FAQ"
336
+ msgstr "FAQ"
337
+
338
+ #: contact_form.php:849
339
+ msgid "Support"
340
+ msgstr "Podpora"
341
+
342
+ #~ msgid "E-Mail Addresse:"
343
+ #~ msgstr "Indirizzo e-mail:"
344
+
345
+ #~ msgid "Install Now"
346
+ #~ msgstr "Installa Ora"
347
+
348
+ #~ msgid "BWS Plugins"
349
+ #~ msgstr "BWS Plugins"
languages/contact_form-da_DK.mo CHANGED
Binary file
languages/contact_form-da_DK.po CHANGED
@@ -2,34 +2,29 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-07-10 10:49+0300\n"
6
- "PO-Revision-Date: 2012-07-10 10:49+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Mads Hannibal <mh@shortcuts.dk>\n"
9
- "Language: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-Language: Danish\n"
16
- "X-Poedit-Country: DENMARK\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 "Aktiverede plugins"
23
 
24
- #: contact_form.php:78
25
- #: contact_form.php:86
26
- #: contact_form.php:94
27
  msgid "Read more"
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
 
@@ -55,11 +50,14 @@ msgid "Install now from wordpress.org"
55
  msgstr "Installér nu fra 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 "Hvis du har spørgsmål kan du kontakte os 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
 
@@ -67,277 +65,286 @@ msgstr "Indstillinger for kontaktformular"
67
  msgid "Contact Form"
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
 
337
  #~ msgid "E-Mail Addresse:"
338
  #~ msgstr "Indirizzo e-mail:"
 
339
  #~ msgid "Install Now"
340
  #~ msgstr "Installa Ora"
 
341
  #~ msgid "BWS Plugins"
342
  #~ msgstr "BWS Plugins"
343
-
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-17 17:14+0200\n"
6
+ "PO-Revision-Date: 2012-10-17 17:14+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Mads Hannibal <mh@shortcuts.dk>\n"
9
+ "Language: da_DK\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
 
 
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: contact_form.php:76
20
  msgid "Activated plugins"
21
  msgstr "Aktiverede plugins"
22
 
23
+ #: contact_form.php:78 contact_form.php:86 contact_form.php:94
 
 
24
  msgid "Read more"
25
  msgstr "Læs mere"
26
 
27
+ #: contact_form.php:78 contact_form.php:836 contact_form.php:845
 
 
28
  msgid "Settings"
29
  msgstr "Indstillinger"
30
 
50
  msgstr "Installér nu fra wordpress.org"
51
 
52
  #: contact_form.php:96
53
+ msgid ""
54
+ "If you have any questions, please contact us via plugin@bestwebsoft.com or "
55
+ "fill in our contact form on our site"
56
+ msgstr ""
57
+ "Hvis du har spørgsmål kan du kontakte os på plugin@bestwebsoft.com eller "
58
+ "bruge kontaktformularen på vores hjemmeside"
59
 
60
+ #: contact_form.php:108 contact_form.php:267
 
61
  msgid "Contact Form Options"
62
  msgstr "Indstillinger for kontaktformular"
63
 
65
  msgid "Contact Form"
66
  msgstr "Kontaktformular"
67
 
68
+ #: contact_form.php:137 contact_form.php:183 contact_form.php:221
69
+ #: contact_form.php:377
 
 
70
  msgid "Name:"
71
  msgstr "Navn:"
72
 
73
+ #: contact_form.php:138 contact_form.php:184 contact_form.php:222
74
+ #: contact_form.php:378
 
 
75
  msgid "E-Mail Address:"
76
  msgstr "E-mail-adresse:"
77
 
78
+ #: contact_form.php:139 contact_form.php:379
79
+ msgid "Phone:"
80
+ msgstr ""
81
+
82
+ #: contact_form.php:140 contact_form.php:185 contact_form.php:223
83
+ #: contact_form.php:380
84
  msgid "Subject:"
85
  msgstr "Emne:"
86
 
87
+ #: contact_form.php:141 contact_form.php:186 contact_form.php:224
88
+ #: contact_form.php:381
 
 
89
  msgid "Message:"
90
  msgstr "Besked:"
91
 
92
+ #: contact_form.php:142 contact_form.php:187 contact_form.php:225
93
+ #: contact_form.php:382
 
 
94
  msgid "Attachment:"
95
  msgstr "Bilag:"
96
 
97
+ #: contact_form.php:144 contact_form.php:189
 
98
  msgid "Thank you for contacting us."
99
  msgstr "Tak fordi du kontaktede os"
100
 
101
+ #: contact_form.php:235
102
+ msgid ""
103
+ "If the option 'Redirect to page' is selected then url field should be "
104
+ "fillied in the following format"
105
  msgstr ""
106
 
107
+ #: contact_form.php:242 contact_form.php:247 contact_form.php:256
 
 
108
  msgid "Options saved."
109
  msgstr "Indstillinger gemt."
110
 
111
+ #: contact_form.php:250
112
  msgid "Such user is not exist. Settings are not saved."
113
  msgstr "Brugeren eksisterer ikke. Indstillingerne er ikke gemt."
114
 
115
+ #: contact_form.php:259
116
  msgid "Please input correct email. Settings are not saved."
117
+ msgstr ""
118
+ "Benyt venligst en korrekt e-mail-adresse. Indstillingerne er ikke gemt."
119
 
120
+ #: contact_form.php:272
121
+ msgid ""
122
+ "If you would like to add a Contact Form to your website, just copy and put "
123
+ "this shortcode onto your post or page or widget:"
124
+ msgstr ""
125
+ "Hvis du ønsker at tilføje en kontaktformular til din side, kopier og put "
126
+ "denne kode i din kommentar eller på din side: "
127
 
128
+ #: contact_form.php:273
129
+ msgid ""
130
+ "If information in the below fields are empty then the message will be send "
131
+ "to an address which was specified during registration."
132
+ msgstr ""
133
+ "Hvis felterne nedenunder er tomme, vil meddelesen blive sendt til den "
134
+ "adresse, som var angivet ved registreringen."
135
 
136
+ #: contact_form.php:277
137
  msgid "Use email of wordpress user:"
138
  msgstr "Benyt e-mail-adressen til wordpressbrugeren:"
139
 
140
+ #: contact_form.php:283
141
  msgid "Select user name"
142
  msgstr "Vælg brugernavn"
143
 
144
+ #: contact_form.php:288
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:292
149
  msgid "Use this email:"
150
  msgstr "Benyt denne e-mail-adresse:"
151
 
152
+ #: contact_form.php:298
153
  msgid "Set an email address which will be used for messages receiving."
154
+ msgstr ""
155
+ "Angiv den e-mail-adresse, som vil blive benyttet ved modtagelse af beskeder."
156
 
157
+ #: contact_form.php:302
158
  msgid "Additional options"
159
  msgstr "Flere valgmuligheder"
160
 
161
+ #: contact_form.php:305
162
  msgid "Display Attachment block"
163
  msgstr "Vis bilag"
164
 
165
+ #: contact_form.php:310
166
  msgid "Users can attach files of the following types"
167
  msgstr "Brugere kan vedlægge filer af følgende typer"
168
 
169
+ #: contact_form.php:314
170
  msgid "Display Attachment explanations"
171
  msgstr ""
172
 
173
+ #: contact_form.php:319
174
  msgid "Display explanations after Attachment block"
175
  msgstr ""
176
 
177
+ #: contact_form.php:323
178
  msgid "Display Send me a copy block"
179
  msgstr "Vis \"Send mig en kopi\"-afsnit"
180
 
181
+ #: contact_form.php:329
182
  msgid "What use?"
183
  msgstr ""
184
 
185
+ #: contact_form.php:334
186
  msgid "Wp-mail"
187
  msgstr "Wp-mail"
188
 
189
+ #: contact_form.php:335
190
  msgid "To send mail you can use the wordpress wp_mail function"
191
  msgstr ""
192
 
193
+ #: contact_form.php:343
194
  msgid "Mail"
195
  msgstr "Mail"
196
 
197
+ #: contact_form.php:344
198
  msgid "To send mail you can use the php mail function"
199
  msgstr ""
200
 
201
+ #: contact_form.php:348
202
  msgid "Change FROM fields of the contact form"
203
  msgstr "Skift FRA-felterne i kontaktformularen"
204
 
205
+ #: contact_form.php:354
206
+ msgid "Display phone field"
207
+ msgstr ""
208
+
209
+ #: contact_form.php:360
210
  msgid "Display additional info in email"
211
  msgstr "Vis yderligere information i e-mail"
212
 
213
+ #: contact_form.php:365 contact_form.php:702
 
214
  msgid "Sent from (ip address)"
215
  msgstr "Sendt fra (IP-adresse)"
216
 
217
+ #: contact_form.php:366 contact_form.php:707
 
218
  msgid "Date/Time"
219
  msgstr "Dato/klokkeslæt"
220
 
221
+ #: contact_form.php:367 contact_form.php:712
 
222
  msgid "Coming from (referer)"
223
  msgstr "Sendt fra (referent)"
224
 
225
+ #: contact_form.php:368 contact_form.php:717
 
226
  msgid "Using (user agent)"
227
  msgstr "Med (user agent)"
228
 
229
+ #: contact_form.php:372
230
  msgid "Change label for fields of the contact form"
231
  msgstr "Skifte etiketter til felterne i kontaktformularen"
232
 
233
+ #: contact_form.php:386
234
  msgid "Action after the send mail"
235
  msgstr ""
236
 
237
+ #: contact_form.php:388
238
  #, fuzzy
239
  msgid "Display text"
240
  msgstr "Vis bilag"
241
 
242
+ #: contact_form.php:389
243
  msgid "Text"
244
  msgstr ""
245
 
246
+ #: contact_form.php:390
247
  msgid "Redirect to page"
248
  msgstr ""
249
 
250
+ #: contact_form.php:391
251
  msgid "Url"
252
  msgstr ""
253
 
254
+ #: contact_form.php:396
255
  msgid "Save Changes"
256
  msgstr "Gem ændringer"
257
 
258
+ #: contact_form.php:433
259
  msgid "Sorry, your e-mail could not be delivered."
260
  msgstr "Beklager, men din e-mail kunne ikke leveres."
261
 
262
+ #: contact_form.php:503
263
  msgid "You can attach files of the following types"
264
  msgstr "Du kan vedhæfte filer af følgende typer"
265
 
266
+ #: contact_form.php:511
267
  msgid "Send me a copy"
268
  msgstr "Send mig en kopi"
269
 
270
+ #: contact_form.php:521
271
  msgid "Submit"
272
  msgstr "Send"
273
 
274
+ #: contact_form.php:560
275
  msgid "Your name is required."
276
  msgstr "Dit navn er obligatorisk"
277
 
278
+ #: contact_form.php:561
279
  msgid "A proper e-mail address is required."
280
  msgstr "En korrekt e-mail-adresse er påkrævet."
281
 
282
+ #: contact_form.php:562
283
  msgid "Subject text is required."
284
  msgstr "Emnefeltet er obligatorisk."
285
 
286
+ #: contact_form.php:563
287
  msgid "Message text is required."
288
  msgstr "Du skal angive en besked"
289
 
290
+ #: contact_form.php:564
291
  msgid "Please make corrections below and try again."
292
  msgstr "Ret venligst nedenstående og prøv igen."
293
 
294
+ #: contact_form.php:596
295
  msgid "Attachment is broken."
296
  msgstr "Bilaget er korrupt."
297
 
298
+ #: contact_form.php:609
299
  msgid "Please complete the CAPTCHA."
300
  msgstr "Venligst udfyld CAPTCHA-feltet."
301
 
302
+ #: contact_form.php:725
303
  msgid "Contact from"
304
  msgstr "Kontakt fra"
305
 
306
+ #: contact_form.php:730
307
  msgid "Name"
308
  msgstr "Navn"
309
 
310
+ #: contact_form.php:733
311
  msgid "Email"
312
  msgstr "E-mail"
313
 
314
+ #: contact_form.php:738
315
+ msgid "Phone"
316
+ msgstr ""
317
+
318
+ #: contact_form.php:741
319
  msgid "Subject"
320
  msgstr "Emne"
321
 
322
+ #: contact_form.php:744
323
  msgid "Message"
324
  msgstr "Besked"
325
 
326
+ #: contact_form.php:747
327
  msgid "Site"
328
  msgstr "Site"
329
 
330
+ #: contact_form.php:792
331
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
332
+ msgstr ""
333
+ "Dersom du kan se denne MIME, så aksepterer ikke klienten din MIME-typer!"
334
 
335
+ #: contact_form.php:846
336
  msgid "FAQ"
337
  msgstr "Ofte stillede spørgsmål"
338
 
339
+ #: contact_form.php:847
340
  msgid "Support"
341
  msgstr "Support"
342
 
343
  #~ msgid "E-Mail Addresse:"
344
  #~ msgstr "Indirizzo e-mail:"
345
+
346
  #~ msgid "Install Now"
347
  #~ msgstr "Installa Ora"
348
+
349
  #~ msgid "BWS Plugins"
350
  #~ msgstr "BWS Plugins"
 
languages/contact_form-de_DE.mo CHANGED
Binary file
languages/contact_form-de_DE.po CHANGED
@@ -2,34 +2,29 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-07-10 10:49+0300\n"
6
- "PO-Revision-Date: 2012-07-10 10:49+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
- "Language: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-Language: German\n"
16
- "X-Poedit-Country: GERMANY\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 "Aktivierte PlugIns"
23
 
24
- #: contact_form.php:78
25
- #: contact_form.php:86
26
- #: contact_form.php:94
27
  msgid "Read more"
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
 
@@ -55,11 +50,14 @@ msgid "Install now from wordpress.org"
55
  msgstr "installiere jetzt von 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 "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
 
@@ -67,277 +65,288 @@ msgstr "Contact Form Einstellungen"
67
  msgid "Contact Form"
68
  msgstr "Contact Form"
69
 
70
- #: contact_form.php:136
71
- #: contact_form.php:180
72
- #: contact_form.php:216
73
- #: contact_form.php:366
74
  msgid "Name:"
75
  msgstr "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
 
337
  #~ msgid "E-Mail Addresse:"
338
  #~ msgstr "Indirizzo e-mail:"
 
339
  #~ msgid "Install Now"
340
  #~ msgstr "Installa Ora"
 
341
  #~ msgid "BWS Plugins"
342
  #~ msgstr "BWS Plugins"
343
-
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-17 17:14+0200\n"
6
+ "PO-Revision-Date: 2012-10-17 17:14+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
+ "Language: de_DE\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
 
 
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: contact_form.php:76
20
  msgid "Activated plugins"
21
  msgstr "Aktivierte PlugIns"
22
 
23
+ #: contact_form.php:78 contact_form.php:86 contact_form.php:94
 
 
24
  msgid "Read more"
25
  msgstr "Lesen Sie mehr"
26
 
27
+ #: contact_form.php:78 contact_form.php:836 contact_form.php:845
 
 
28
  msgid "Settings"
29
  msgstr "Einstellungen"
30
 
50
  msgstr "installiere jetzt von wordpress.org"
51
 
52
  #: contact_form.php:96
53
+ msgid ""
54
+ "If you have any questions, please contact us via plugin@bestwebsoft.com or "
55
+ "fill in our contact form on our site"
56
+ msgstr ""
57
+ "Bei Fragen wenden Sie sich an plugin@bestwebsoft.com oder füllen Sie das "
58
+ "Kontakformular auf unserer Webseite aus"
59
 
60
+ #: contact_form.php:108 contact_form.php:267
 
61
  msgid "Contact Form Options"
62
  msgstr "Contact Form Einstellungen"
63
 
65
  msgid "Contact Form"
66
  msgstr "Contact Form"
67
 
68
+ #: contact_form.php:137 contact_form.php:183 contact_form.php:221
69
+ #: contact_form.php:377
 
 
70
  msgid "Name:"
71
  msgstr "Name:"
72
 
73
+ #: contact_form.php:138 contact_form.php:184 contact_form.php:222
74
+ #: contact_form.php:378
 
 
75
  msgid "E-Mail Address:"
76
  msgstr "E-Mail-Adresse:"
77
 
78
+ #: contact_form.php:139 contact_form.php:379
79
+ msgid "Phone:"
80
+ msgstr ""
81
+
82
+ #: contact_form.php:140 contact_form.php:185 contact_form.php:223
83
+ #: contact_form.php:380
84
  msgid "Subject:"
85
  msgstr "Betreff:"
86
 
87
+ #: contact_form.php:141 contact_form.php:186 contact_form.php:224
88
+ #: contact_form.php:381
 
 
89
  msgid "Message:"
90
  msgstr "Nachricht:"
91
 
92
+ #: contact_form.php:142 contact_form.php:187 contact_form.php:225
93
+ #: contact_form.php:382
 
 
94
  msgid "Attachment:"
95
  msgstr "Anhang:"
96
 
97
+ #: contact_form.php:144 contact_form.php:189
 
98
  msgid "Thank you for contacting us."
99
  msgstr "Danke für Ihre Nachricht."
100
 
101
+ #: contact_form.php:235
102
+ msgid ""
103
+ "If the option 'Redirect to page' is selected then url field should be "
104
+ "fillied in the following format"
105
  msgstr ""
106
 
107
+ #: contact_form.php:242 contact_form.php:247 contact_form.php:256
 
 
108
  msgid "Options saved."
109
  msgstr "Einstellungen gespeichert."
110
 
111
+ #: contact_form.php:250
112
  msgid "Such user is not exist. Settings are not saved."
113
  msgstr "Dieser Benutzer existiert nicht. Einstellungen nicht gespeichert."
114
 
115
+ #: contact_form.php:259
116
  msgid "Please input correct email. Settings are not saved."
117
+ msgstr ""
118
+ "Bitte geben Sie eine korrekte E-Mail-Adresse ein. Einstellungen nicht "
119
+ "gespeichert."
120
 
121
+ #: contact_form.php:272
122
+ msgid ""
123
+ "If you would like to add a Contact Form to your website, just copy and put "
124
+ "this shortcode onto your post or page or widget:"
125
+ msgstr ""
126
+ "Wenn Sie Contact Form in Ihrer Webpräsenz verwenden wollen, kopieren Sie "
127
+ "einfach folgenden shortcode auf Ihre Seite oder Ihren Artikel oder widget:"
128
 
129
+ #: contact_form.php:273
130
+ msgid ""
131
+ "If information in the below fields are empty then the message will be send "
132
+ "to an address which was specified during registration."
133
+ msgstr ""
134
+ "Wenn das folgende Feld leer bleibt wird die Nachricht an die Adresse "
135
+ "gesandt, die bei der Registrierung angegeben wurde."
136
 
137
+ #: contact_form.php:277
138
  msgid "Use email of wordpress user:"
139
  msgstr "Benutze die E-Mail-Adresse von WordPress-Benutzer:"
140
 
141
+ #: contact_form.php:283
142
  msgid "Select user name"
143
  msgstr "Wähle Benutzer"
144
 
145
+ #: contact_form.php:288
146
  msgid "Set a name of user who will get messages from a contact form."
147
+ msgstr ""
148
+ "Definieren Sie die Benutzer, die Nachrichten von Contact Form bekommen "
149
+ "sollen."
150
 
151
+ #: contact_form.php:292
152
  msgid "Use this email:"
153
  msgstr "Verwende diese E-Mail-Adresse:"
154
 
155
+ #: contact_form.php:298
156
  msgid "Set an email address which will be used for messages receiving."
157
  msgstr "Definieren Sie die E-Mail-Adresse, die Contact Form verwenden soll."
158
 
159
+ #: contact_form.php:302
160
  msgid "Additional options"
161
  msgstr "Erweiterte Optionen"
162
 
163
+ #: contact_form.php:305
164
  msgid "Display Attachment block"
165
  msgstr "Anhänge erlauben"
166
 
167
+ #: contact_form.php:310
168
  msgid "Users can attach files of the following types"
169
  msgstr "Benutzer können folgende Dateitypen anhängen"
170
 
171
+ #: contact_form.php:314
172
  msgid "Display Attachment explanations"
173
  msgstr ""
174
 
175
+ #: contact_form.php:319
176
  msgid "Display explanations after Attachment block"
177
  msgstr ""
178
 
179
+ #: contact_form.php:323
180
  msgid "Display Send me a copy block"
181
  msgstr "Kopie-an-mich anzeigen"
182
 
183
+ #: contact_form.php:329
184
  msgid "What use?"
185
  msgstr ""
186
 
187
+ #: contact_form.php:334
188
  msgid "Wp-mail"
189
  msgstr "Wp-mail"
190
 
191
+ #: contact_form.php:335
192
  msgid "To send mail you can use the wordpress wp_mail function"
193
  msgstr ""
194
 
195
+ #: contact_form.php:343
196
  msgid "Mail"
197
  msgstr "Mail"
198
 
199
+ #: contact_form.php:344
200
  msgid "To send mail you can use the php mail function"
201
  msgstr ""
202
 
203
+ #: contact_form.php:348
204
  msgid "Change FROM fields of the contact form"
205
  msgstr "Veränderung gegenüber Felder des Kontaktformulars"
206
 
207
+ #: contact_form.php:354
208
+ msgid "Display phone field"
209
+ msgstr ""
210
+
211
+ #: contact_form.php:360
212
  msgid "Display additional info in email"
213
  msgstr ""
214
 
215
+ #: contact_form.php:365 contact_form.php:702
 
216
  msgid "Sent from (ip address)"
217
  msgstr "Gesendet von (IP-Adresse)"
218
 
219
+ #: contact_form.php:366 contact_form.php:707
 
220
  msgid "Date/Time"
221
  msgstr "Datum / Uhrzeit"
222
 
223
+ #: contact_form.php:367 contact_form.php:712
 
224
  msgid "Coming from (referer)"
225
  msgstr "gesendet von (referer)"
226
 
227
+ #: contact_form.php:368 contact_form.php:717
 
228
  msgid "Using (user agent)"
229
  msgstr "mit (user agent)"
230
 
231
+ #: contact_form.php:372
232
  msgid "Change label for fields of the contact form"
233
  msgstr "Ändern Sie die Bezeichnung der Felder des Kontaktformulars"
234
 
235
+ #: contact_form.php:386
236
  msgid "Action after the send mail"
237
  msgstr ""
238
 
239
+ #: contact_form.php:388
240
  #, fuzzy
241
  msgid "Display text"
242
  msgstr "Anhänge erlauben"
243
 
244
+ #: contact_form.php:389
245
  msgid "Text"
246
  msgstr ""
247
 
248
+ #: contact_form.php:390
249
  msgid "Redirect to page"
250
  msgstr ""
251
 
252
+ #: contact_form.php:391
253
  msgid "Url"
254
  msgstr ""
255
 
256
+ #: contact_form.php:396
257
  msgid "Save Changes"
258
  msgstr "Änderungen speichern"
259
 
260
+ #: contact_form.php:433
261
  msgid "Sorry, your e-mail could not be delivered."
262
  msgstr "Entschuldigung, Ihre E-Mail konnte leider nicht zugestellt werden."
263
 
264
+ #: contact_form.php:503
265
  msgid "You can attach files of the following types"
266
  msgstr "Sie können folgende Dateitypen anhängen"
267
 
268
+ #: contact_form.php:511
269
  msgid "Send me a copy"
270
  msgstr "Kopie an mich senden"
271
 
272
+ #: contact_form.php:521
273
  msgid "Submit"
274
  msgstr "senden"
275
 
276
+ #: contact_form.php:560
277
  msgid "Your name is required."
278
  msgstr "Ihr Name wird benötigt"
279
 
280
+ #: contact_form.php:561
281
  msgid "A proper e-mail address is required."
282
  msgstr "Eine korrekte E-Mail-Adresse ist zwingend."
283
 
284
+ #: contact_form.php:562
285
  msgid "Subject text is required."
286
  msgstr "Bitte geben Sie einen Betreff ein."
287
 
288
+ #: contact_form.php:563
289
  msgid "Message text is required."
290
  msgstr "Bitte geben Sie eine Nachricht ein."
291
 
292
+ #: contact_form.php:564
293
  msgid "Please make corrections below and try again."
294
+ msgstr ""
295
+ "Bitte führen Sie die Korrekturen unten durch und versuchen Sie es erneut."
296
 
297
+ #: contact_form.php:596
298
  msgid "Attachment is broken."
299
  msgstr "Anhang scheint defekt zu sein."
300
 
301
+ #: contact_form.php:609
302
  msgid "Please complete the CAPTCHA."
303
  msgstr "Bitte ergänzen Sie das CAPTCHA."
304
 
305
+ #: contact_form.php:725
306
  msgid "Contact from"
307
  msgstr "Kontakt von"
308
 
309
+ #: contact_form.php:730
310
  msgid "Name"
311
  msgstr "Nome"
312
 
313
+ #: contact_form.php:733
314
  msgid "Email"
315
  msgstr "E-Mail"
316
 
317
+ #: contact_form.php:738
318
+ msgid "Phone"
319
+ msgstr ""
320
+
321
+ #: contact_form.php:741
322
  msgid "Subject"
323
  msgstr "Betreff"
324
 
325
+ #: contact_form.php:744
326
  msgid "Message"
327
  msgstr "Nachricht"
328
 
329
+ #: contact_form.php:747
330
  msgid "Site"
331
  msgstr "Site"
332
 
333
+ #: contact_form.php:792
334
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
335
  msgstr "Wenn Sie dieses MIME sehen, unterstützt Ihr Client keine MIME-Typen!"
336
 
337
+ #: contact_form.php:846
338
  msgid "FAQ"
339
  msgstr "Häufig gestellte Fragen (FAQ)"
340
 
341
+ #: contact_form.php:847
342
  msgid "Support"
343
  msgstr "Unterstützung"
344
 
345
  #~ msgid "E-Mail Addresse:"
346
  #~ msgstr "Indirizzo e-mail:"
347
+
348
  #~ msgid "Install Now"
349
  #~ msgstr "Installa Ora"
350
+
351
  #~ msgid "BWS Plugins"
352
  #~ msgstr "BWS Plugins"
 
languages/contact_form-el_GR.mo CHANGED
Binary file
languages/contact_form-el_GR.po CHANGED
@@ -2,34 +2,29 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-07-10 10:49+0300\n"
6
- "PO-Revision-Date: 2012-07-10 10:49+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Pantelis Panteloglou <ppanteloglou@gmail.com>\n"
9
- "Language: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-Language: Greek\n"
16
- "X-Poedit-Country: GREECE\n"
17
  "X-Poedit-SourceCharset: utf-8\n"
 
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: contact_form.php:76
21
  msgid "Activated plugins"
22
  msgstr "Ενεργοποιημένα πρόσθετα"
23
 
24
- #: contact_form.php:78
25
- #: contact_form.php:86
26
- #: contact_form.php:94
27
  msgid "Read more"
28
  msgstr "Διαβάστε περισσότερα"
29
 
30
- #: contact_form.php:78
31
- #: contact_form.php:802
32
- #: contact_form.php:811
33
  msgid "Settings"
34
  msgstr "Ρυθμίσεις"
35
 
@@ -55,11 +50,14 @@ msgid "Install now from wordpress.org"
55
  msgstr "Εγκαταστήστε τώρα από το wordpress.org"
56
 
57
  #: contact_form.php:96
58
- msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
59
- msgstr "Αν έχετε απορίες, επικοινωνήστε στο plugin@bestwebsoft.com ή μέσω της φόρμας επικοινωνίας της ιστοσελίδας μας"
 
 
 
 
60
 
61
- #: contact_form.php:108
62
- #: contact_form.php:262
63
  msgid "Contact Form Options"
64
  msgstr "Επιλογές φόρμας επικοινωνίας"
65
 
@@ -67,277 +65,286 @@ msgstr "Επιλογές φόρμας επικοινωνίας"
67
  msgid "Contact Form"
68
  msgstr "Φόρμα επικοινωνίας"
69
 
70
- #: contact_form.php:136
71
- #: contact_form.php:180
72
- #: contact_form.php:216
73
- #: contact_form.php:366
74
  msgid "Name:"
75
  msgstr "Όνομα:"
76
 
77
- #: contact_form.php:137
78
- #: contact_form.php:181
79
- #: contact_form.php:217
80
- #: contact_form.php:367
81
  msgid "E-Mail Address:"
82
  msgstr "Διεύθυνση 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
 
337
  #~ msgid "E-Mail Addresse:"
338
  #~ msgstr "Indirizzo e-mail:"
 
339
  #~ msgid "Install Now"
340
  #~ msgstr "Installa Ora"
 
341
  #~ msgid "BWS Plugins"
342
  #~ msgstr "BWS Plugins"
343
-
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-17 17:14+0200\n"
6
+ "PO-Revision-Date: 2012-10-17 17:14+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Pantelis Panteloglou <ppanteloglou@gmail.com>\n"
9
+ "Language: el_GR\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
 
 
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: contact_form.php:76
20
  msgid "Activated plugins"
21
  msgstr "Ενεργοποιημένα πρόσθετα"
22
 
23
+ #: contact_form.php:78 contact_form.php:86 contact_form.php:94
 
 
24
  msgid "Read more"
25
  msgstr "Διαβάστε περισσότερα"
26
 
27
+ #: contact_form.php:78 contact_form.php:836 contact_form.php:845
 
 
28
  msgid "Settings"
29
  msgstr "Ρυθμίσεις"
30
 
50
  msgstr "Εγκαταστήστε τώρα από το wordpress.org"
51
 
52
  #: contact_form.php:96
53
+ msgid ""
54
+ "If you have any questions, please contact us via plugin@bestwebsoft.com or "
55
+ "fill in our contact form on our site"
56
+ msgstr ""
57
+ "Αν έχετε απορίες, επικοινωνήστε στο plugin@bestwebsoft.com ή μέσω της φόρμας "
58
+ "επικοινωνίας της ιστοσελίδας μας"
59
 
60
+ #: contact_form.php:108 contact_form.php:267
 
61
  msgid "Contact Form Options"
62
  msgstr "Επιλογές φόρμας επικοινωνίας"
63
 
65
  msgid "Contact Form"
66
  msgstr "Φόρμα επικοινωνίας"
67
 
68
+ #: contact_form.php:137 contact_form.php:183 contact_form.php:221
69
+ #: contact_form.php:377
 
 
70
  msgid "Name:"
71
  msgstr "Όνομα:"
72
 
73
+ #: contact_form.php:138 contact_form.php:184 contact_form.php:222
74
+ #: contact_form.php:378
 
 
75
  msgid "E-Mail Address:"
76
  msgstr "Διεύθυνση e-mail:"
77
 
78
+ #: contact_form.php:139 contact_form.php:379
79
+ msgid "Phone:"
80
+ msgstr ""
81
+
82
+ #: contact_form.php:140 contact_form.php:185 contact_form.php:223
83
+ #: contact_form.php:380
84
  msgid "Subject:"
85
  msgstr "Θέμα:"
86
 
87
+ #: contact_form.php:141 contact_form.php:186 contact_form.php:224
88
+ #: contact_form.php:381
 
 
89
  msgid "Message:"
90
  msgstr "Μήνυμα:"
91
 
92
+ #: contact_form.php:142 contact_form.php:187 contact_form.php:225
93
+ #: contact_form.php:382
 
 
94
  msgid "Attachment:"
95
  msgstr "Επισύναψη:"
96
 
97
+ #: contact_form.php:144 contact_form.php:189
 
98
  msgid "Thank you for contacting us."
99
  msgstr "Ευχαριστούμε για την επικοινωνία."
100
 
101
+ #: contact_form.php:235
102
+ msgid ""
103
+ "If the option 'Redirect to page' is selected then url field should be "
104
+ "fillied in the following format"
105
  msgstr ""
106
 
107
+ #: contact_form.php:242 contact_form.php:247 contact_form.php:256
 
 
108
  msgid "Options saved."
109
  msgstr "Οι επιλογές αποθηκεύτηκαν."
110
 
111
+ #: contact_form.php:250
112
  msgid "Such user is not exist. Settings are not saved."
113
  msgstr "Δεν υπάρχει τέτοιος χρήστης. Οι επιλογές δεν αποθηκεύτηκαν."
114
 
115
+ #: contact_form.php:259
116
  msgid "Please input correct email. Settings are not saved."
117
+ msgstr ""
118
+ "Παρακαλούμε εισάγετε μια σωστή διεύθυνση email. Οι επιλογές δεν "
119
+ "αποθηκεύτηκαν."
120
 
121
+ #: contact_form.php:272
122
+ msgid ""
123
+ "If you would like to add a Contact Form to your website, just copy and put "
124
+ "this shortcode onto your post or page or widget:"
125
+ msgstr ""
126
+ "Αν θέλετε να προσθέσετε μια φόρμα επικοινωνίας στην ιστοσελίδα σας, "
127
+ "αντιγράψτε αυτό τον σύντομο κώδικα στην ανάρτηση, τη σελίδα ή το πρόσθετό "
128
+ "σας:"
129
 
130
+ #: contact_form.php:273
131
+ msgid ""
132
+ "If information in the below fields are empty then the message will be send "
133
+ "to an address which was specified during registration."
134
+ msgstr ""
135
+ "Αν τα παρακάτω πεδία είναι κενά, το μήνυμα θα σταλεί στη διεύθυνση που "
136
+ "ορίστηκε κατά την εγγραφή"
137
 
138
+ #: contact_form.php:277
139
  msgid "Use email of wordpress user:"
140
  msgstr "Τα μηνύματα θα στέλνονται στο email του χρήστη:"
141
 
142
+ #: contact_form.php:283
143
  msgid "Select user name"
144
  msgstr "επιλογή χρήστη"
145
 
146
+ #: contact_form.php:288
147
  msgid "Set a name of user who will get messages from a contact form."
148
  msgstr "Τα μηνύματα θα λαμβάνει ο χρήστης"
149
 
150
+ #: contact_form.php:292
151
  msgid "Use this email:"
152
  msgstr "Τα μηνύματα θα στέλνονται στο email "
153
 
154
+ #: contact_form.php:298
155
  msgid "Set an email address which will be used for messages receiving."
156
  msgstr "Ορίστε την διεύθυνση email στην οποία θα αποστέλλονται τα μηνύματα."
157
 
158
+ #: contact_form.php:302
159
  msgid "Additional options"
160
  msgstr "Πρόσθετες επιλογές"
161
 
162
+ #: contact_form.php:305
163
  msgid "Display Attachment block"
164
  msgstr "Προβολή κουτιού επισύναψης αρχείου"
165
 
166
+ #: contact_form.php:310
167
  msgid "Users can attach files of the following types"
168
  msgstr "Οι χρήστες μπορούν να επισυνάψουν αρχεία τύπου"
169
 
170
+ #: contact_form.php:314
171
  msgid "Display Attachment explanations"
172
  msgstr ""
173
 
174
+ #: contact_form.php:319
175
  msgid "Display explanations after Attachment block"
176
  msgstr ""
177
 
178
+ #: contact_form.php:323
179
  msgid "Display Send me a copy block"
180
  msgstr "Προβολή κουτιού \"Στείλτο και σ' εμένα\""
181
 
182
+ #: contact_form.php:329
183
  msgid "What use?"
184
  msgstr ""
185
 
186
+ #: contact_form.php:334
187
  msgid "Wp-mail"
188
  msgstr "Wp-mail"
189
 
190
+ #: contact_form.php:335
191
  msgid "To send mail you can use the wordpress wp_mail function"
192
  msgstr ""
193
 
194
+ #: contact_form.php:343
195
  msgid "Mail"
196
  msgstr "Mail"
197
 
198
+ #: contact_form.php:344
199
  msgid "To send mail you can use the php mail function"
200
  msgstr ""
201
 
202
+ #: contact_form.php:348
203
  msgid "Change FROM fields of the contact form"
204
  msgstr "Αλλάξτε το πεδίο \"ΑΠΟ\" της φόρμας επικοινωνίας"
205
 
206
+ #: contact_form.php:354
207
+ msgid "Display phone field"
208
+ msgstr ""
209
+
210
+ #: contact_form.php:360
211
  msgid "Display additional info in email"
212
  msgstr "Προβολή πρόσθετων πληροφοριών στο email"
213
 
214
+ #: contact_form.php:365 contact_form.php:702
 
215
  msgid "Sent from (ip address)"
216
  msgstr "Στάλθηκε από (διεύθυνση ip)"
217
 
218
+ #: contact_form.php:366 contact_form.php:707
 
219
  msgid "Date/Time"
220
  msgstr "Ημερομηνία/Ώρα"
221
 
222
+ #: contact_form.php:367 contact_form.php:712
 
223
  msgid "Coming from (referer)"
224
  msgstr "Από (referer)"
225
 
226
+ #: contact_form.php:368 contact_form.php:717
 
227
  msgid "Using (user agent)"
228
  msgstr "με χρήση (user agent)"
229
 
230
+ #: contact_form.php:372
231
  msgid "Change label for fields of the contact form"
232
  msgstr "Αλλαγή ετικετών πεδίων της φόρμας επικοινωνίας"
233
 
234
+ #: contact_form.php:386
235
  msgid "Action after the send mail"
236
  msgstr ""
237
 
238
+ #: contact_form.php:388
239
  #, fuzzy
240
  msgid "Display text"
241
  msgstr "Προβολή κουτιού επισύναψης αρχείου"
242
 
243
+ #: contact_form.php:389
244
  msgid "Text"
245
  msgstr ""
246
 
247
+ #: contact_form.php:390
248
  msgid "Redirect to page"
249
  msgstr ""
250
 
251
+ #: contact_form.php:391
252
  msgid "Url"
253
  msgstr ""
254
 
255
+ #: contact_form.php:396
256
  msgid "Save Changes"
257
  msgstr "Αποθήκευση αλλαγών"
258
 
259
+ #: contact_form.php:433
260
  msgid "Sorry, your e-mail could not be delivered."
261
  msgstr "Δυστυχώς δεν μπορέσαμε να στείλουμε το email σας."
262
 
263
+ #: contact_form.php:503
264
  msgid "You can attach files of the following types"
265
  msgstr "Μπορείτε να επισυνάψετε αρχεία τύπου"
266
 
267
+ #: contact_form.php:511
268
  msgid "Send me a copy"
269
  msgstr "Στείλε μου ένα αντίγραφο"
270
 
271
+ #: contact_form.php:521
272
  msgid "Submit"
273
  msgstr "Υποβολή"
274
 
275
+ #: contact_form.php:560
276
  msgid "Your name is required."
277
  msgstr "Γράψτε οπωσδήποτε το όνομά σας."
278
 
279
+ #: contact_form.php:561
280
  msgid "A proper e-mail address is required."
281
  msgstr "Απαιτείται μια έγκυρη διεύθυνση e-mail."
282
 
283
+ #: contact_form.php:562
284
  msgid "Subject text is required."
285
  msgstr "Γράψτε οπωσδήποτε ένα θέμα"
286
 
287
+ #: contact_form.php:563
288
  msgid "Message text is required."
289
  msgstr "Απαιτείται κείμενο μηνύματος."
290
 
291
+ #: contact_form.php:564
292
  msgid "Please make corrections below and try again."
293
  msgstr "Κάνετε διορθώσεις παρακάτω και ξαναπροσπαθήστε."
294
 
295
+ #: contact_form.php:596
296
  msgid "Attachment is broken."
297
  msgstr "Το επισυναπτόμενο δεν λειτουργεί."
298
 
299
+ #: contact_form.php:609
300
  msgid "Please complete the CAPTCHA."
301
  msgstr "Συμπληρώστε το CAPTCHA."
302
 
303
+ #: contact_form.php:725
304
  msgid "Contact from"
305
  msgstr "Επικοινωνία από"
306
 
307
+ #: contact_form.php:730
308
  msgid "Name"
309
  msgstr "Όνομα"
310
 
311
+ #: contact_form.php:733
312
  msgid "Email"
313
  msgstr "E-Mail"
314
 
315
+ #: contact_form.php:738
316
+ msgid "Phone"
317
+ msgstr ""
318
+
319
+ #: contact_form.php:741
320
  msgid "Subject"
321
  msgstr "Θέμα"
322
 
323
+ #: contact_form.php:744
324
  msgid "Message"
325
  msgstr "Μήνυμα"
326
 
327
+ #: contact_form.php:747
328
  msgid "Site"
329
  msgstr "Ιστοσελίδα"
330
 
331
+ #: contact_form.php:792
332
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
333
  msgstr "Wenn Sie dieses MIME sehen, unterstützt Ihr Client keine MIME-Typen!"
334
 
335
+ #: contact_form.php:846
336
  msgid "FAQ"
337
  msgstr "Συχνές ερωτήσεις"
338
 
339
+ #: contact_form.php:847
340
  msgid "Support"
341
  msgstr "Υποστήριξη"
342
 
343
  #~ msgid "E-Mail Addresse:"
344
  #~ msgstr "Indirizzo e-mail:"
345
+
346
  #~ msgid "Install Now"
347
  #~ msgstr "Installa Ora"
348
+
349
  #~ msgid "BWS Plugins"
350
  #~ msgstr "BWS Plugins"
 
languages/contact_form-es_ES.mo CHANGED
Binary file
languages/contact_form-es_ES.po CHANGED
@@ -2,34 +2,29 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-07-10 10:49+0300\n"
6
- "PO-Revision-Date: 2012-07-10 10:49+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
- "Language: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-Language: Spanish\n"
16
- "X-Poedit-Country: SPAIN\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 ativado"
23
 
24
- #: contact_form.php:78
25
- #: contact_form.php:86
26
- #: contact_form.php:94
27
  msgid "Read more"
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
 
@@ -55,11 +50,14 @@ msgid "Install now from wordpress.org"
55
  msgstr "Instala ahora de 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 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
 
@@ -67,277 +65,288 @@ msgstr "Opciones Contact Form"
67
  msgid "Contact Form"
68
  msgstr "Contact Form"
69
 
70
- #: contact_form.php:136
71
- #: contact_form.php:180
72
- #: contact_form.php:216
73
- #: contact_form.php:366
74
  msgid "Name:"
75
  msgstr "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
 
337
  #~ msgid "E-Mail Addresse:"
338
  #~ msgstr "Indirizzo e-mail:"
 
339
  #~ msgid "Install Now"
340
  #~ msgstr "Installa Ora"
 
341
  #~ msgid "BWS Plugins"
342
  #~ msgstr "BWS Plugins"
343
-
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-17 17:14+0200\n"
6
+ "PO-Revision-Date: 2012-10-17 17:14+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
+ "Language: es_ES\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
 
 
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: contact_form.php:76
20
  msgid "Activated plugins"
21
  msgstr "Plugin ativado"
22
 
23
+ #: contact_form.php:78 contact_form.php:86 contact_form.php:94
 
 
24
  msgid "Read more"
25
  msgstr "Lea mas"
26
 
27
+ #: contact_form.php:78 contact_form.php:836 contact_form.php:845
 
 
28
  msgid "Settings"
29
  msgstr "Configuración"
30
 
50
  msgstr "Instala ahora de wordpress.org"
51
 
52
  #: contact_form.php:96
53
+ msgid ""
54
+ "If you have any questions, please contact us via plugin@bestwebsoft.com or "
55
+ "fill in our contact form on our site"
56
+ msgstr ""
57
+ "Si tiene alguna pregunta, por favor contactenos via plugin@bestwebsoft.com o "
58
+ "use el formulario de contacto de nuestra web"
59
 
60
+ #: contact_form.php:108 contact_form.php:267
 
61
  msgid "Contact Form Options"
62
  msgstr "Opciones Contact Form"
63
 
65
  msgid "Contact Form"
66
  msgstr "Contact Form"
67
 
68
+ #: contact_form.php:137 contact_form.php:183 contact_form.php:221
69
+ #: contact_form.php:377
 
 
70
  msgid "Name:"
71
  msgstr "Nombre:"
72
 
73
+ #: contact_form.php:138 contact_form.php:184 contact_form.php:222
74
+ #: contact_form.php:378
 
 
75
  msgid "E-Mail Address:"
76
  msgstr "Dirección e-mail:"
77
 
78
+ #: contact_form.php:139 contact_form.php:379
79
+ msgid "Phone:"
80
+ msgstr ""
81
+
82
+ #: contact_form.php:140 contact_form.php:185 contact_form.php:223
83
+ #: contact_form.php:380
84
  msgid "Subject:"
85
  msgstr "Asunto:"
86
 
87
+ #: contact_form.php:141 contact_form.php:186 contact_form.php:224
88
+ #: contact_form.php:381
 
 
89
  msgid "Message:"
90
  msgstr "Mensaje:"
91
 
92
+ #: contact_form.php:142 contact_form.php:187 contact_form.php:225
93
+ #: contact_form.php:382
 
 
94
  msgid "Attachment:"
95
  msgstr "Adjunto:"
96
 
97
+ #: contact_form.php:144 contact_form.php:189
 
98
  msgid "Thank you for contacting us."
99
  msgstr "Gracias por contactar con nosotros"
100
 
101
+ #: contact_form.php:235
102
+ msgid ""
103
+ "If the option 'Redirect to page' is selected then url field should be "
104
+ "fillied in the following format"
105
  msgstr ""
106
 
107
+ #: contact_form.php:242 contact_form.php:247 contact_form.php:256
 
 
108
  msgid "Options saved."
109
  msgstr "Configuración guardada."
110
 
111
+ #: contact_form.php:250
112
  msgid "Such user is not exist. Settings are not saved."
113
  msgstr "Usuario inexistente. Los cambios no se han guardado."
114
 
115
+ #: contact_form.php:259
116
  msgid "Please input correct email. Settings are not saved."
117
+ msgstr ""
118
+ "Por favor introduzca un e-mail correcto. Los cambios no se han guardado."
119
 
120
+ #: contact_form.php:272
121
+ msgid ""
122
+ "If you would like to add a Contact Form to your website, just copy and put "
123
+ "this shortcode onto your post or page or widget:"
124
+ msgstr ""
125
+ "Si quiere añadir Contact Form en su web, copie y pegue este código en su "
126
+ "mensaje o página o widget:"
127
 
128
+ #: contact_form.php:273
129
+ msgid ""
130
+ "If information in the below fields are empty then the message will be send "
131
+ "to an address which was specified during registration."
132
+ msgstr ""
133
+ "Si la información en este campo está vacia, se usará la dirección "
134
+ "especificada en el registro."
135
 
136
+ #: contact_form.php:277
137
  msgid "Use email of wordpress user:"
138
  msgstr "Use el email del usuario de Wordpress:"
139
 
140
+ #: contact_form.php:283
141
  msgid "Select user name"
142
  msgstr "Seleccione nombre de usuario"
143
 
144
+ #: contact_form.php:288
145
  msgid "Set a name of user who will get messages from a contact form."
146
+ msgstr ""
147
+ "Introduzca el nombre del usuario que va a recibir mensajes desde contact form"
148
 
149
+ #: contact_form.php:292
150
  msgid "Use this email:"
151
  msgstr "Use este emaill:"
152
 
153
+ #: contact_form.php:298
154
  msgid "Set an email address which will be used for messages receiving."
155
+ msgstr ""
156
+ "Establecer una dirección de correo electrónico que se utiliza para los "
157
+ "mensajes que reciben."
158
 
159
+ #: contact_form.php:302
160
  msgid "Additional options"
161
  msgstr "Opciones adicionales"
162
 
163
+ #: contact_form.php:305
164
  msgid "Display Attachment block"
165
  msgstr "Visualiza el adjunto"
166
 
167
+ #: contact_form.php:310
168
  msgid "Users can attach files of the following types"
169
  msgstr "Usuarios pueden adjuntar archivos de este tipo"
170
 
171
+ #: contact_form.php:314
172
  msgid "Display Attachment explanations"
173
  msgstr ""
174
 
175
+ #: contact_form.php:319
176
  msgid "Display explanations after Attachment block"
177
  msgstr ""
178
 
179
+ #: contact_form.php:323
180
  msgid "Display Send me a copy block"
181
  msgstr "Ver envíame una copia"
182
 
183
+ #: contact_form.php:329
184
  msgid "What use?"
185
  msgstr ""
186
 
187
+ #: contact_form.php:334
188
  msgid "Wp-mail"
189
  msgstr "Wp-mail"
190
 
191
+ #: contact_form.php:335
192
  msgid "To send mail you can use the wordpress wp_mail function"
193
  msgstr ""
194
 
195
+ #: contact_form.php:343
196
  msgid "Mail"
197
  msgstr "Mail"
198
 
199
+ #: contact_form.php:344
200
  msgid "To send mail you can use the php mail function"
201
  msgstr ""
202
 
203
+ #: contact_form.php:348
204
  msgid "Change FROM fields of the contact form"
205
  msgstr "Modifica DE los campos en contact form"
206
 
207
+ #: contact_form.php:354
208
+ msgid "Display phone field"
209
+ msgstr ""
210
+
211
+ #: contact_form.php:360
212
  msgid "Display additional info in email"
213
  msgstr ""
214
 
215
+ #: contact_form.php:365 contact_form.php:702
 
216
  msgid "Sent from (ip address)"
217
  msgstr "Enviado desde (dirección IP)"
218
 
219
+ #: contact_form.php:366 contact_form.php:707
 
220
  msgid "Date/Time"
221
  msgstr "Fecha/hora"
222
 
223
+ #: contact_form.php:367 contact_form.php:712
 
224
  msgid "Coming from (referer)"
225
  msgstr "De (referente)"
226
 
227
+ #: contact_form.php:368 contact_form.php:717
 
228
  msgid "Using (user agent)"
229
  msgstr "Usando (user agent)"
230
 
231
+ #: contact_form.php:372
232
  msgid "Change label for fields of the contact form"
233
  msgstr "Modifica las etiquetas de los campos en contact form"
234
 
235
+ #: contact_form.php:386
236
  msgid "Action after the send mail"
237
  msgstr ""
238
 
239
+ #: contact_form.php:388
240
  #, fuzzy
241
  msgid "Display text"
242
  msgstr "Visualiza el adjunto"
243
 
244
+ #: contact_form.php:389
245
  msgid "Text"
246
  msgstr ""
247
 
248
+ #: contact_form.php:390
249
  msgid "Redirect to page"
250
  msgstr ""
251
 
252
+ #: contact_form.php:391
253
  msgid "Url"
254
  msgstr ""
255
 
256
+ #: contact_form.php:396
257
  msgid "Save Changes"
258
  msgstr "Guardar los cambios"
259
 
260
+ #: contact_form.php:433
261
  msgid "Sorry, your e-mail could not be delivered."
262
  msgstr "Disculpe, su email no se puede entregar."
263
 
264
+ #: contact_form.php:503
265
  msgid "You can attach files of the following types"
266
  msgstr "Puede adjuntar archivos de estos tipos"
267
 
268
+ #: contact_form.php:511
269
  msgid "Send me a copy"
270
  msgstr "Envíame una copia"
271
 
272
+ #: contact_form.php:521
273
  msgid "Submit"
274
  msgstr "Enviar"
275
 
276
+ #: contact_form.php:560
277
  msgid "Your name is required."
278
  msgstr "Su nombre es obligatorio."
279
 
280
+ #: contact_form.php:561
281
  msgid "A proper e-mail address is required."
282
  msgstr "Una dirección válida es obligatoria."
283
 
284
+ #: contact_form.php:562
285
  msgid "Subject text is required."
286
  msgstr "El asunto es obligatorio."
287
 
288
+ #: contact_form.php:563
289
  msgid "Message text is required."
290
  msgstr "El mensaje es obligatorio."
291
 
292
+ #: contact_form.php:564
293
  msgid "Please make corrections below and try again."
294
  msgstr "Por favor, corrija los datos y pruebe de nuevo."
295
 
296
+ #: contact_form.php:596
297
  msgid "Attachment is broken."
298
  msgstr "El adjunto es incorrecto."
299
 
300
+ #: contact_form.php:609
301
  msgid "Please complete the CAPTCHA."
302
  msgstr "Por favor completa el CAPTCHA"
303
 
304
+ #: contact_form.php:725
305
  msgid "Contact from"
306
  msgstr "Contact from"
307
 
308
+ #: contact_form.php:730
309
  msgid "Name"
310
  msgstr "Nombre"
311
 
312
+ #: contact_form.php:733
313
  msgid "Email"
314
  msgstr "E-mail"
315
 
316
+ #: contact_form.php:738
317
+ msgid "Phone"
318
+ msgstr ""
319
+
320
+ #: contact_form.php:741
321
  msgid "Subject"
322
  msgstr "Asunto"
323
 
324
+ #: contact_form.php:744
325
  msgid "Message"
326
  msgstr "Mensaje"
327
 
328
+ #: contact_form.php:747
329
  msgid "Site"
330
  msgstr "Sitio"
331
 
332
+ #: contact_form.php:792
333
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
334
+ msgstr ""
335
+ "Si usted puede ver esta MIME es que su cliente no acepta los tipos MIME!"
336
 
337
+ #: contact_form.php:846
338
  msgid "FAQ"
339
  msgstr "FAQ"
340
 
341
+ #: contact_form.php:847
342
  msgid "Support"
343
  msgstr "Soporte"
344
 
345
  #~ msgid "E-Mail Addresse:"
346
  #~ msgstr "Indirizzo e-mail:"
347
+
348
  #~ msgid "Install Now"
349
  #~ msgstr "Installa Ora"
350
+
351
  #~ msgid "BWS Plugins"
352
  #~ msgstr "BWS Plugins"
 
languages/contact_form-fr_FR.mo CHANGED
Binary file
languages/contact_form-fr_FR.po CHANGED
@@ -2,35 +2,30 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-07-10 10:49+0300\n"
6
- "PO-Revision-Date: 2012-07-10 10:49+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
- "Language: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
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
  #: contact_form.php:76
22
  msgid "Activated plugins"
23
  msgstr "Plugin activé"
24
 
25
- #: contact_form.php:78
26
- #: contact_form.php:86
27
- #: contact_form.php:94
28
  msgid "Read more"
29
  msgstr "Lire la suite"
30
 
31
- #: contact_form.php:78
32
- #: contact_form.php:802
33
- #: contact_form.php:811
34
  msgid "Settings"
35
  msgstr "Réglages"
36
 
@@ -56,11 +51,14 @@ msgid "Install now from wordpress.org"
56
  msgstr "Installer maintenant depuis wordpress.org"
57
 
58
  #: contact_form.php:96
59
- msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
60
- msgstr "Si vous avez des questions, merci de contacter plugin@bestwebsoft.com ou d'utilisez le formulaire de contact \"contact form\" sur notre site"
 
 
 
 
61
 
62
- #: contact_form.php:108
63
- #: contact_form.php:262
64
  msgid "Contact Form Options"
65
  msgstr "Options du Formulaire de Contact"
66
 
@@ -68,269 +66,284 @@ msgstr "Options du Formulaire de Contact"
68
  msgid "Contact Form"
69
  msgstr "Formulaire de Contact"
70
 
71
- #: contact_form.php:136
72
- #: contact_form.php:180
73
- #: contact_form.php:216
74
- #: contact_form.php:366
75
  msgid "Name:"
76
  msgstr "Nom:"
77
 
78
- #: contact_form.php:137
79
- #: contact_form.php:181
80
- #: contact_form.php:217
81
- #: contact_form.php:367
82
  msgid "E-Mail Address:"
83
  msgstr "Adresse e-mail:"
84
 
85
- #: contact_form.php:138
86
- #: contact_form.php:182
87
- #: contact_form.php:218
88
- #: contact_form.php:368
 
 
89
  msgid "Subject:"
90
  msgstr "Sujet:"
91
 
92
- #: contact_form.php:139
93
- #: contact_form.php:183
94
- #: contact_form.php:219
95
- #: contact_form.php:369
96
  msgid "Message:"
97
  msgstr "Message:"
98
 
99
- #: contact_form.php:140
100
- #: contact_form.php:184
101
- #: contact_form.php:220
102
- #: contact_form.php:370
103
  msgid "Attachment:"
104
  msgstr "Pièce-jointe:"
105
 
106
- #: contact_form.php:142
107
- #: contact_form.php:186
108
  msgid "Thank you for contacting us."
109
  msgstr "Merci de nous avoir contacté."
110
 
111
- #: contact_form.php:230
112
- msgid "If the option 'Redirect to page' is selected then url field should be fillied in the following format"
113
- msgstr "Si l'ioption 'Rediriger vers la page' est positionnée, alors le champ Url doit être rempli avec le format suivant"
 
 
 
 
114
 
115
- #: contact_form.php:237
116
- #: contact_form.php:242
117
- #: contact_form.php:251
118
  msgid "Options saved."
119
  msgstr "Options sauvegardées."
120
 
121
- #: contact_form.php:245
122
  msgid "Such user is not exist. Settings are not saved."
123
- msgstr "Cet utilisateur est inconnu. Les modifications ne sont pas sauvegardées."
 
124
 
125
- #: contact_form.php:254
126
  msgid "Please input correct email. Settings are not saved."
127
- msgstr "Merci de saisir une adresse e-mail valide. Les modifications ne sont pas sauvegardées."
 
 
128
 
129
- #: contact_form.php:267
130
- msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
131
- msgstr "Si vous souhaiter ajouter un formulaire de contact à votre site web, copiez juste ce code dans un article ou sur une page ou un widget:"
 
 
 
 
132
 
133
- #: contact_form.php:268
134
- msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
135
- msgstr "Si les champs ci-dessous ne sont pas renseignés le message sera envoyé à l'adresse spécifiée lors de l'enregistrement."
 
 
 
 
136
 
137
- #: contact_form.php:272
138
  msgid "Use email of wordpress user:"
139
  msgstr "Utiliser l'e-mail du compte wordpress:"
140
 
141
- #: contact_form.php:278
142
  msgid "Select user name"
143
  msgstr "Choisir un nom d'utilisateur"
144
 
145
- #: contact_form.php:283
146
  msgid "Set a name of user who will get messages from a contact form."
147
- msgstr "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le formulaire de contact."
 
 
148
 
149
- #: contact_form.php:287
150
  msgid "Use this email:"
151
  msgstr "Utiliser cette adresse e-mail:"
152
 
153
- #: contact_form.php:293
154
  msgid "Set an email address which will be used for messages receiving."
155
  msgstr "Choisir l'adresse e-mail qui sera utilisée pour recevoir les messages."
156
 
157
- #: contact_form.php:297
158
  msgid "Additional options"
159
  msgstr "Options supplémentaires"
160
 
161
- #: contact_form.php:300
162
  msgid "Display Attachment block"
163
  msgstr "Afficher le bloc pièce-jointe"
164
 
165
- #: contact_form.php:305
166
  msgid "Users can attach files of the following types"
167
  msgstr "Les utilisateurs peuvent joindre des documents des types suivants"
168
 
169
- #: contact_form.php:309
170
  msgid "Display Attachment explanations"
171
  msgstr "Afficher les explications sur les pièces jointes"
172
 
173
- #: contact_form.php:314
174
  msgid "Display explanations after Attachment block"
175
  msgstr "Afficher les explications après le bloc des pièces jointes"
176
 
177
- #: contact_form.php:318
178
  msgid "Display Send me a copy block"
179
  msgstr "Afficher \"M'envoyer une copie\" "
180
 
181
- #: contact_form.php:324
182
  msgid "What use?"
183
  msgstr "Quel utilisation?"
184
 
185
- #: contact_form.php:329
186
  msgid "Wp-mail"
187
  msgstr "Wp-mail"
188
 
189
- #: contact_form.php:330
190
  msgid "To send mail you can use the wordpress wp_mail function"
191
- msgstr "Pour envoyer l'e-mail, vous pouvez utiliser la fonction wp_mail de wordpress"
 
192
 
193
- #: contact_form.php:338
194
  msgid "Mail"
195
  msgstr "E-mail"
196
 
197
- #: contact_form.php:339
198
  msgid "To send mail you can use the php mail function"
199
  msgstr "Pour envoyer l'e-mail, vous pouvez utiliser la fonction mail de php"
200
 
201
- #: contact_form.php:343
202
  msgid "Change FROM fields of the contact form"
203
  msgstr "Modifier des champs du formulaire de contact"
204
 
205
- #: contact_form.php:349
 
 
 
 
206
  msgid "Display additional info in email"
207
  msgstr "Afficher les informations complémentaires dans le courriel"
208
 
209
- #: contact_form.php:354
210
- #: contact_form.php:673
211
  msgid "Sent from (ip address)"
212
  msgstr "Envoyé de (adresse IP)"
213
 
214
- #: contact_form.php:355
215
- #: contact_form.php:678
216
  msgid "Date/Time"
217
  msgstr "Date/Heure"
218
 
219
- #: contact_form.php:356
220
- #: contact_form.php:683
221
  msgid "Coming from (referer)"
222
  msgstr "Envoyer de (référence)"
223
 
224
- #: contact_form.php:357
225
- #: contact_form.php:688
226
  msgid "Using (user agent)"
227
  msgstr "Depuis (navigateur)"
228
 
229
- #: contact_form.php:361
230
  msgid "Change label for fields of the contact form"
231
  msgstr "Modifier le nom des champs du formulaire de contact"
232
 
233
- #: contact_form.php:374
234
  msgid "Action after the send mail"
235
  msgstr "Action après l'envoie de l'e-mail"
236
 
237
- #: contact_form.php:376
238
  msgid "Display text"
239
  msgstr "Afficher le texte"
240
 
241
- #: contact_form.php:377
242
  msgid "Text"
243
  msgstr "Texte"
244
 
245
- #: contact_form.php:378
246
  msgid "Redirect to page"
247
  msgstr "Rediriger vers la page"
248
 
249
- #: contact_form.php:379
250
  msgid "Url"
251
  msgstr "Url"
252
 
253
- #: contact_form.php:384
254
  msgid "Save Changes"
255
  msgstr "Sauvegarder les modifications"
256
 
257
- #: contact_form.php:417
258
  msgid "Sorry, your e-mail could not be delivered."
259
  msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
260
 
261
- #: contact_form.php:475
262
  msgid "You can attach files of the following types"
263
  msgstr "Vous pouvez joindre des fichiers aux formats suivants"
264
 
265
- #: contact_form.php:483
266
  msgid "Send me a copy"
267
  msgstr "M'envoyer une copie"
268
 
269
- #: contact_form.php:493
270
  msgid "Submit"
271
  msgstr "Envoyer"
272
 
273
- #: contact_form.php:532
274
  msgid "Your name is required."
275
  msgstr "Un nom est obligatoire."
276
 
277
- #: contact_form.php:533
278
  msgid "A proper e-mail address is required."
279
  msgstr "Une adresse e-mail valide est obligatoire."
280
 
281
- #: contact_form.php:534
282
  msgid "Subject text is required."
283
  msgstr "Sujet obligatoire."
284
 
285
- #: contact_form.php:535
286
  msgid "Message text is required."
287
  msgstr "Un message est obligatoire."
288
 
289
- #: contact_form.php:536
290
  msgid "Please make corrections below and try again."
291
  msgstr "Merci de faire les corrections suivantes et de réessayer."
292
 
293
- #: contact_form.php:567
294
  msgid "Attachment is broken."
295
  msgstr "La pièce-jointe n'est pas valide."
296
 
297
- #: contact_form.php:580
298
  msgid "Please complete the CAPTCHA."
299
  msgstr "Merci de compléter le CAPTCHA."
300
 
301
- #: contact_form.php:696
302
  msgid "Contact from"
303
  msgstr "Contact de"
304
 
305
- #: contact_form.php:701
306
  msgid "Name"
307
  msgstr "Nom"
308
 
309
- #: contact_form.php:704
310
  msgid "Email"
311
  msgstr "E-mail"
312
 
313
- #: contact_form.php:707
 
 
 
 
314
  msgid "Subject"
315
  msgstr "Sujet"
316
 
317
- #: contact_form.php:710
318
  msgid "Message"
319
  msgstr "Message"
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 "Si vous voyez ce MIME c'est que votre navigateur n'accepte pas ce type de MIME !"
 
 
328
 
329
- #: contact_form.php:812
330
  msgid "FAQ"
331
  msgstr "FAQ"
332
 
333
- #: contact_form.php:813
334
  msgid "Support"
335
  msgstr "Support"
336
 
@@ -341,8 +354,10 @@ msgstr "Support"
341
  #~ msgstr ""
342
  #~ "Si vous souhaiter ajouter un formulaire de contact à votre site web, "
343
  #~ "copiez juste ce code dans un article ou sur une page ou un widget:"
 
344
  #~ msgid "Install Now"
345
  #~ msgstr "Installa Ora"
 
346
  #~ msgid "BWS Plugins"
347
  #~ msgstr "BWS Plugins"
348
 
@@ -355,6 +370,6 @@ msgstr "Support"
355
  #~ msgstr ""
356
  #~ "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le "
357
  #~ "formulaire de contact."
 
358
  #~ msgid "E-Mail Addresse:"
359
  #~ msgstr "Indirizzo e-mail:"
360
-
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-17 17:14+0200\n"
6
+ "PO-Revision-Date: 2012-10-17 17:14+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Luc Capronnier <lcapronnier@yahoo.com>\n"
9
+ "Language: fr_FR\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
 
 
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "Plural-Forms: nplurals=2;plural=n>2;\n"
17
+ "X-Generator: Poedit 1.5.4\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 contact_form.php:86 contact_form.php:94
 
 
25
  msgid "Read more"
26
  msgstr "Lire la suite"
27
 
28
+ #: contact_form.php:78 contact_form.php:836 contact_form.php:845
 
 
29
  msgid "Settings"
30
  msgstr "Réglages"
31
 
51
  msgstr "Installer maintenant depuis wordpress.org"
52
 
53
  #: contact_form.php:96
54
+ msgid ""
55
+ "If you have any questions, please contact us via plugin@bestwebsoft.com or "
56
+ "fill in our contact form on our site"
57
+ msgstr ""
58
+ "Si vous avez des questions, merci de contacter plugin@bestwebsoft.com ou "
59
+ "d'utilisez le formulaire de contact \"contact form\" sur notre site"
60
 
61
+ #: contact_form.php:108 contact_form.php:267
 
62
  msgid "Contact Form Options"
63
  msgstr "Options du Formulaire de Contact"
64
 
66
  msgid "Contact Form"
67
  msgstr "Formulaire de Contact"
68
 
69
+ #: contact_form.php:137 contact_form.php:183 contact_form.php:221
70
+ #: contact_form.php:377
 
 
71
  msgid "Name:"
72
  msgstr "Nom:"
73
 
74
+ #: contact_form.php:138 contact_form.php:184 contact_form.php:222
75
+ #: contact_form.php:378
 
 
76
  msgid "E-Mail Address:"
77
  msgstr "Adresse e-mail:"
78
 
79
+ #: contact_form.php:139 contact_form.php:379
80
+ msgid "Phone:"
81
+ msgstr ""
82
+
83
+ #: contact_form.php:140 contact_form.php:185 contact_form.php:223
84
+ #: contact_form.php:380
85
  msgid "Subject:"
86
  msgstr "Sujet:"
87
 
88
+ #: contact_form.php:141 contact_form.php:186 contact_form.php:224
89
+ #: contact_form.php:381
 
 
90
  msgid "Message:"
91
  msgstr "Message:"
92
 
93
+ #: contact_form.php:142 contact_form.php:187 contact_form.php:225
94
+ #: contact_form.php:382
 
 
95
  msgid "Attachment:"
96
  msgstr "Pièce-jointe:"
97
 
98
+ #: contact_form.php:144 contact_form.php:189
 
99
  msgid "Thank you for contacting us."
100
  msgstr "Merci de nous avoir contacté."
101
 
102
+ #: contact_form.php:235
103
+ msgid ""
104
+ "If the option 'Redirect to page' is selected then url field should be "
105
+ "fillied in the following format"
106
+ msgstr ""
107
+ "Si l'ioption 'Rediriger vers la page' est positionnée, alors le champ Url "
108
+ "doit être rempli avec le format suivant"
109
 
110
+ #: contact_form.php:242 contact_form.php:247 contact_form.php:256
 
 
111
  msgid "Options saved."
112
  msgstr "Options sauvegardées."
113
 
114
+ #: contact_form.php:250
115
  msgid "Such user is not exist. Settings are not saved."
116
+ msgstr ""
117
+ "Cet utilisateur est inconnu. Les modifications ne sont pas sauvegardées."
118
 
119
+ #: contact_form.php:259
120
  msgid "Please input correct email. Settings are not saved."
121
+ msgstr ""
122
+ "Merci de saisir une adresse e-mail valide. Les modifications ne sont pas "
123
+ "sauvegardées."
124
 
125
+ #: contact_form.php:272
126
+ msgid ""
127
+ "If you would like to add a Contact Form to your website, just copy and put "
128
+ "this shortcode onto your post or page or widget:"
129
+ msgstr ""
130
+ "Si vous souhaiter ajouter un formulaire de contact à votre site web, copiez "
131
+ "juste ce code dans un article ou sur une page ou un widget:"
132
 
133
+ #: contact_form.php:273
134
+ msgid ""
135
+ "If information in the below fields are empty then the message will be send "
136
+ "to an address which was specified during registration."
137
+ msgstr ""
138
+ "Si les champs ci-dessous ne sont pas renseignés le message sera envoyé à "
139
+ "l'adresse spécifiée lors de l'enregistrement."
140
 
141
+ #: contact_form.php:277
142
  msgid "Use email of wordpress user:"
143
  msgstr "Utiliser l'e-mail du compte wordpress:"
144
 
145
+ #: contact_form.php:283
146
  msgid "Select user name"
147
  msgstr "Choisir un nom d'utilisateur"
148
 
149
+ #: contact_form.php:288
150
  msgid "Set a name of user who will get messages from a contact form."
151
+ msgstr ""
152
+ "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le "
153
+ "formulaire de contact."
154
 
155
+ #: contact_form.php:292
156
  msgid "Use this email:"
157
  msgstr "Utiliser cette adresse e-mail:"
158
 
159
+ #: contact_form.php:298
160
  msgid "Set an email address which will be used for messages receiving."
161
  msgstr "Choisir l'adresse e-mail qui sera utilisée pour recevoir les messages."
162
 
163
+ #: contact_form.php:302
164
  msgid "Additional options"
165
  msgstr "Options supplémentaires"
166
 
167
+ #: contact_form.php:305
168
  msgid "Display Attachment block"
169
  msgstr "Afficher le bloc pièce-jointe"
170
 
171
+ #: contact_form.php:310
172
  msgid "Users can attach files of the following types"
173
  msgstr "Les utilisateurs peuvent joindre des documents des types suivants"
174
 
175
+ #: contact_form.php:314
176
  msgid "Display Attachment explanations"
177
  msgstr "Afficher les explications sur les pièces jointes"
178
 
179
+ #: contact_form.php:319
180
  msgid "Display explanations after Attachment block"
181
  msgstr "Afficher les explications après le bloc des pièces jointes"
182
 
183
+ #: contact_form.php:323
184
  msgid "Display Send me a copy block"
185
  msgstr "Afficher \"M'envoyer une copie\" "
186
 
187
+ #: contact_form.php:329
188
  msgid "What use?"
189
  msgstr "Quel utilisation?"
190
 
191
+ #: contact_form.php:334
192
  msgid "Wp-mail"
193
  msgstr "Wp-mail"
194
 
195
+ #: contact_form.php:335
196
  msgid "To send mail you can use the wordpress wp_mail function"
197
+ msgstr ""
198
+ "Pour envoyer l'e-mail, vous pouvez utiliser la fonction wp_mail de wordpress"
199
 
200
+ #: contact_form.php:343
201
  msgid "Mail"
202
  msgstr "E-mail"
203
 
204
+ #: contact_form.php:344
205
  msgid "To send mail you can use the php mail function"
206
  msgstr "Pour envoyer l'e-mail, vous pouvez utiliser la fonction mail de php"
207
 
208
+ #: contact_form.php:348
209
  msgid "Change FROM fields of the contact form"
210
  msgstr "Modifier des champs du formulaire de contact"
211
 
212
+ #: contact_form.php:354
213
+ msgid "Display phone field"
214
+ msgstr ""
215
+
216
+ #: contact_form.php:360
217
  msgid "Display additional info in email"
218
  msgstr "Afficher les informations complémentaires dans le courriel"
219
 
220
+ #: contact_form.php:365 contact_form.php:702
 
221
  msgid "Sent from (ip address)"
222
  msgstr "Envoyé de (adresse IP)"
223
 
224
+ #: contact_form.php:366 contact_form.php:707
 
225
  msgid "Date/Time"
226
  msgstr "Date/Heure"
227
 
228
+ #: contact_form.php:367 contact_form.php:712
 
229
  msgid "Coming from (referer)"
230
  msgstr "Envoyer de (référence)"
231
 
232
+ #: contact_form.php:368 contact_form.php:717
 
233
  msgid "Using (user agent)"
234
  msgstr "Depuis (navigateur)"
235
 
236
+ #: contact_form.php:372
237
  msgid "Change label for fields of the contact form"
238
  msgstr "Modifier le nom des champs du formulaire de contact"
239
 
240
+ #: contact_form.php:386
241
  msgid "Action after the send mail"
242
  msgstr "Action après l'envoie de l'e-mail"
243
 
244
+ #: contact_form.php:388
245
  msgid "Display text"
246
  msgstr "Afficher le texte"
247
 
248
+ #: contact_form.php:389
249
  msgid "Text"
250
  msgstr "Texte"
251
 
252
+ #: contact_form.php:390
253
  msgid "Redirect to page"
254
  msgstr "Rediriger vers la page"
255
 
256
+ #: contact_form.php:391
257
  msgid "Url"
258
  msgstr "Url"
259
 
260
+ #: contact_form.php:396
261
  msgid "Save Changes"
262
  msgstr "Sauvegarder les modifications"
263
 
264
+ #: contact_form.php:433
265
  msgid "Sorry, your e-mail could not be delivered."
266
  msgstr "Désolé, votre e-mail n'a pas pu être envoyé."
267
 
268
+ #: contact_form.php:503
269
  msgid "You can attach files of the following types"
270
  msgstr "Vous pouvez joindre des fichiers aux formats suivants"
271
 
272
+ #: contact_form.php:511
273
  msgid "Send me a copy"
274
  msgstr "M'envoyer une copie"
275
 
276
+ #: contact_form.php:521
277
  msgid "Submit"
278
  msgstr "Envoyer"
279
 
280
+ #: contact_form.php:560
281
  msgid "Your name is required."
282
  msgstr "Un nom est obligatoire."
283
 
284
+ #: contact_form.php:561
285
  msgid "A proper e-mail address is required."
286
  msgstr "Une adresse e-mail valide est obligatoire."
287
 
288
+ #: contact_form.php:562
289
  msgid "Subject text is required."
290
  msgstr "Sujet obligatoire."
291
 
292
+ #: contact_form.php:563
293
  msgid "Message text is required."
294
  msgstr "Un message est obligatoire."
295
 
296
+ #: contact_form.php:564
297
  msgid "Please make corrections below and try again."
298
  msgstr "Merci de faire les corrections suivantes et de réessayer."
299
 
300
+ #: contact_form.php:596
301
  msgid "Attachment is broken."
302
  msgstr "La pièce-jointe n'est pas valide."
303
 
304
+ #: contact_form.php:609
305
  msgid "Please complete the CAPTCHA."
306
  msgstr "Merci de compléter le CAPTCHA."
307
 
308
+ #: contact_form.php:725
309
  msgid "Contact from"
310
  msgstr "Contact de"
311
 
312
+ #: contact_form.php:730
313
  msgid "Name"
314
  msgstr "Nom"
315
 
316
+ #: contact_form.php:733
317
  msgid "Email"
318
  msgstr "E-mail"
319
 
320
+ #: contact_form.php:738
321
+ msgid "Phone"
322
+ msgstr ""
323
+
324
+ #: contact_form.php:741
325
  msgid "Subject"
326
  msgstr "Sujet"
327
 
328
+ #: contact_form.php:744
329
  msgid "Message"
330
  msgstr "Message"
331
 
332
+ #: contact_form.php:747
333
  msgid "Site"
334
  msgstr "Site"
335
 
336
+ #: contact_form.php:792
337
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
338
+ msgstr ""
339
+ "Si vous voyez ce MIME c'est que votre navigateur n'accepte pas ce type de "
340
+ "MIME !"
341
 
342
+ #: contact_form.php:846
343
  msgid "FAQ"
344
  msgstr "FAQ"
345
 
346
+ #: contact_form.php:847
347
  msgid "Support"
348
  msgstr "Support"
349
 
354
  #~ msgstr ""
355
  #~ "Si vous souhaiter ajouter un formulaire de contact à votre site web, "
356
  #~ "copiez juste ce code dans un article ou sur une page ou un widget:"
357
+
358
  #~ msgid "Install Now"
359
  #~ msgstr "Installa Ora"
360
+
361
  #~ msgid "BWS Plugins"
362
  #~ msgstr "BWS Plugins"
363
 
370
  #~ msgstr ""
371
  #~ "Choisir le nom d'utilisateur qui recevra les messages envoyés depuis le "
372
  #~ "formulaire de contact."
373
+
374
  #~ msgid "E-Mail Addresse:"
375
  #~ msgstr "Indirizzo e-mail:"
 
languages/contact_form-he_IL.mo CHANGED
Binary file
languages/contact_form-he_IL.po CHANGED
@@ -2,21 +2,21 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form Plugin v3.20\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-07-10 10:49+0300\n"
6
- "PO-Revision-Date: 2012-07-10 10:49+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
- "Language: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
- "X-Poedit-Language: Hebrew\n"
15
- "X-Poedit-Country: ISRAEL\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
 
18
  "X-Poedit-Basepath: ../\n"
19
  "X-Textdomain-Support: yes\n"
 
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  # @ contact_form
@@ -25,16 +25,12 @@ msgid "Activated plugins"
25
  msgstr "תוספים פעילים"
26
 
27
  # @ contact_form
28
- #: contact_form.php:78
29
- #: contact_form.php:86
30
- #: contact_form.php:94
31
  msgid "Read more"
32
  msgstr "קרא עוד"
33
 
34
  # @ contact_form
35
- #: contact_form.php:78
36
- #: contact_form.php:802
37
- #: contact_form.php:811
38
  msgid "Settings"
39
  msgstr "הגדרות"
40
 
@@ -66,12 +62,15 @@ msgstr "התקן כעת מ wordpress.org"
66
 
67
  # @ contact_form
68
  #: contact_form.php:96
69
- msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
70
- msgstr "אם יש לך שאלות כלשהן, אנא צור עמנו קשר דרך plugin@bestwebsoft.com או שתמלא את טופס יצירת הקשר באתר שלנו"
 
 
 
 
71
 
72
  # @ contact_form
73
- #: contact_form.php:108
74
- #: contact_form.php:262
75
  msgid "Contact Form Options"
76
  msgstr "אפשרויות טופס צור קשר"
77
 
@@ -81,329 +80,334 @@ msgid "Contact Form"
81
  msgstr "טופס צור קשר"
82
 
83
  # @ contact_form
84
- #: contact_form.php:136
85
- #: contact_form.php:180
86
- #: contact_form.php:216
87
- #: contact_form.php:366
88
  msgid "Name:"
89
  msgstr "שם:"
90
 
91
  # @ contact_form
92
- #: contact_form.php:137
93
- #: contact_form.php:181
94
- #: contact_form.php:217
95
- #: contact_form.php:367
96
  msgid "E-Mail Address:"
97
  msgstr "כתובת דוא\\\"ל:"
98
 
 
 
 
 
99
  # @ contact_form
100
- #: contact_form.php:138
101
- #: contact_form.php:182
102
- #: contact_form.php:218
103
- #: contact_form.php:368
104
  msgid "Subject:"
105
  msgstr "נושא:"
106
 
107
  # @ contact_form
108
- #: contact_form.php:139
109
- #: contact_form.php:183
110
- #: contact_form.php:219
111
- #: contact_form.php:369
112
  msgid "Message:"
113
  msgstr "הודעה:"
114
 
115
  # @ contact_form
116
- #: contact_form.php:140
117
- #: contact_form.php:184
118
- #: contact_form.php:220
119
- #: contact_form.php:370
120
  msgid "Attachment:"
121
  msgstr "קובץ מצורף:"
122
 
123
  # @ contact_form
124
- #: contact_form.php:142
125
- #: contact_form.php:186
126
  msgid "Thank you for contacting us."
127
  msgstr "תודה שיצרת עמנו קשר."
128
 
129
  # @ contact_form
130
- #: contact_form.php:230
131
- msgid "If the option 'Redirect to page' is selected then url field should be fillied in the following format"
132
- msgstr "אם האפשרות 'הפנה מחדש לדף' מסומנת אז חייבים למלא את שדה כתובת ה URL בפורמט הבא"
 
 
 
 
133
 
134
  # @ contact_form
135
- #: contact_form.php:237
136
- #: contact_form.php:242
137
- #: contact_form.php:251
138
  msgid "Options saved."
139
  msgstr "האפשרויות נשמרו."
140
 
141
  # @ contact_form
142
- #: contact_form.php:245
143
  msgid "Such user is not exist. Settings are not saved."
144
  msgstr "משתמש כזה אינו קיים. ההגדרות לא נשמרו."
145
 
146
  # @ contact_form
147
- #: contact_form.php:254
148
  msgid "Please input correct email. Settings are not saved."
149
  msgstr "בבקשה הזן כתובת מייל נכונה. ההגדרות לא נשמרו."
150
 
151
  # @ contact_form
152
- #: contact_form.php:267
153
- msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
154
- msgstr "אם אתה מעוניין להוסיף טופס צור קשר לאתר שלך, פשוט העתק את קיצור הקוד שלהלן אל הפוסט או הדף או הוידג'ט שלך:"
 
 
 
 
155
 
156
  # @ contact_form
157
- #: contact_form.php:268
158
- msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
 
 
159
  msgstr "אם השדות שלהלן ריקים, אז המייל יישלח אל לכתובת שצוינה בעת ההרשמה."
160
 
161
  # @ contact_form
162
- #: contact_form.php:272
163
  msgid "Use email of wordpress user:"
164
  msgstr "השתמש במייל של משתמש וורדפרס:"
165
 
166
  # @ contact_form
167
- #: contact_form.php:278
168
  msgid "Select user name"
169
  msgstr "בחר שם משתמש"
170
 
171
  # @ contact_form
172
- #: contact_form.php:283
173
  msgid "Set a name of user who will get messages from a contact form."
174
  msgstr "הגדר שם משתמש, אשר יקבל את ההודעות הנשלחות דרך טופס יצירת הקשר."
175
 
176
  # @ contact_form
177
- #: contact_form.php:287
178
  msgid "Use this email:"
179
  msgstr "השתמש במייל זה:"
180
 
181
  # @ contact_form
182
- #: contact_form.php:293
183
  msgid "Set an email address which will be used for messages receiving."
184
  msgstr "הגדר כתובת מייל שתשמש לקבלת הודעות."
185
 
186
  # @ contact_form
187
- #: contact_form.php:297
188
  msgid "Additional options"
189
  msgstr "אפשרויות נוספות"
190
 
191
  # @ contact_form
192
- #: contact_form.php:300
193
  msgid "Display Attachment block"
194
  msgstr "הצג אפשרות קובץ מצורף"
195
 
196
  # @ contact_form
197
- #: contact_form.php:305
198
  msgid "Users can attach files of the following types"
199
  msgstr "משתמשים יוכלו לצרף קבצים מהסוגים הבאים"
200
 
201
  # @ contact_form
202
- #: contact_form.php:309
203
  msgid "Display Attachment explanations"
204
  msgstr "הצג הסברי קובץ מצורף"
205
 
206
  # @ contact_form
207
- #: contact_form.php:314
208
  msgid "Display explanations after Attachment block"
209
  msgstr "הצג את ההסברים אחרי תיבת הקובץ המצורף"
210
 
211
  # @ contact_form
212
- #: contact_form.php:318
213
  msgid "Display Send me a copy block"
214
  msgstr "הצג תיבת שלח לי עותק"
215
 
216
  # @ contact_form
217
- #: contact_form.php:324
218
  msgid "What use?"
219
  msgstr "איזה שימוש?"
220
 
221
  # @ mail-send
222
- #: contact_form.php:329
223
  msgid "Wp-mail"
224
  msgstr ""
225
 
226
  # @ mail_send
227
- #: contact_form.php:330
228
  msgid "To send mail you can use the wordpress wp_mail function"
229
  msgstr ""
230
 
231
  # @ mail-send
232
- #: contact_form.php:338
233
  msgid "Mail"
234
  msgstr ""
235
 
236
  # @ mail_send
237
- #: contact_form.php:339
238
  msgid "To send mail you can use the php mail function"
239
  msgstr ""
240
 
241
  # @ contact_form
242
- #: contact_form.php:343
243
  msgid "Change FROM fields of the contact form"
244
  msgstr "שנה את השדות של טופס יצירת הקשר"
245
 
 
 
 
 
246
  # @ contact_form
247
- #: contact_form.php:349
248
  msgid "Display additional info in email"
249
  msgstr "הצג מידע נוסף במייל"
250
 
251
  # @ contact_form
252
- #: contact_form.php:354
253
- #: contact_form.php:673
254
  msgid "Sent from (ip address)"
255
  msgstr "נשלח מ (כתובת IP)"
256
 
257
  # @ contact_form
258
- #: contact_form.php:355
259
- #: contact_form.php:678
260
  msgid "Date/Time"
261
  msgstr "תאריך\\שעה"
262
 
263
  # @ contact_form
264
- #: contact_form.php:356
265
- #: contact_form.php:683
266
  msgid "Coming from (referer)"
267
  msgstr "מגיע מ (השולח)"
268
 
269
  # @ contact_form
270
- #: contact_form.php:357
271
- #: contact_form.php:688
272
  msgid "Using (user agent)"
273
  msgstr "משתמש ב (user agent)"
274
 
275
  # @ contact_form
276
- #: contact_form.php:361
277
  msgid "Change label for fields of the contact form"
278
  msgstr "שנה את תוויות הטופס"
279
 
280
  # @ contact_form
281
- #: contact_form.php:374
282
  msgid "Action after the send mail"
283
  msgstr "הפעולה שלאחר שליחת הטופס"
284
 
285
  # @ contact_form
286
- #: contact_form.php:376
287
  msgid "Display text"
288
  msgstr "הטקסט המוצג"
289
 
290
  # @ contact_form
291
- #: contact_form.php:377
292
  msgid "Text"
293
  msgstr "טקסט"
294
 
295
  # @ contact_form
296
- #: contact_form.php:378
297
  msgid "Redirect to page"
298
  msgstr "הפנה אל הדף"
299
 
300
  # @ contact_form
301
- #: contact_form.php:379
302
  msgid "Url"
303
  msgstr "URL"
304
 
305
  # @ default
306
- #: contact_form.php:384
307
  msgid "Save Changes"
308
  msgstr ""
309
 
310
  # @ contact_form
311
- #: contact_form.php:417
312
  msgid "Sorry, your e-mail could not be delivered."
313
  msgstr "מצטערים, אי אפשר היה לשלוח את המייל שלך."
314
 
315
  # @ contact_form
316
- #: contact_form.php:475
317
  msgid "You can attach files of the following types"
318
  msgstr "אתה יכול לצרף קבצים מן הסוגים הבאים"
319
 
320
  # @ contact_form
321
- #: contact_form.php:483
322
  msgid "Send me a copy"
323
  msgstr "שלח לי עותק"
324
 
325
  # @ contact_form
326
- #: contact_form.php:493
327
  msgid "Submit"
328
  msgstr "שלח"
329
 
330
  # @ contact_form
331
- #: contact_form.php:532
332
  msgid "Your name is required."
333
  msgstr "השם שלך הכרחי."
334
 
335
  # @ contact_form
336
- #: contact_form.php:533
337
  msgid "A proper e-mail address is required."
338
  msgstr "כתובת מייל תקנית הכרחית."
339
 
340
  # @ contact_form
341
- #: contact_form.php:534
342
  msgid "Subject text is required."
343
  msgstr "הנושא הכרחי."
344
 
345
  # @ contact_form
346
- #: contact_form.php:535
347
  msgid "Message text is required."
348
  msgstr "מילוי שדה ההודעה הכרחי."
349
 
350
  # @ contact_form
351
- #: contact_form.php:536
352
  msgid "Please make corrections below and try again."
353
  msgstr "אנא עשה תיקונים להלן ונסה שוב."
354
 
355
  # @ contact_form
356
- #: contact_form.php:567
357
  msgid "Attachment is broken."
358
  msgstr "הקובץ המצורף שבור"
359
 
360
  # @ contact_form
361
- #: contact_form.php:580
362
  msgid "Please complete the CAPTCHA."
363
  msgstr "אנא השלם את קוד האימות."
364
 
365
  # @ contact_form
366
- #: contact_form.php:696
367
  msgid "Contact from"
368
  msgstr "טופס צור קשר"
369
 
370
  # @ contact_form
371
- #: contact_form.php:701
372
  msgid "Name"
373
  msgstr "שם"
374
 
375
  # @ contact_form
376
- #: contact_form.php:704
377
  msgid "Email"
378
  msgstr "כתובת מייל"
379
 
 
 
 
 
380
  # @ contact_form
381
- #: contact_form.php:707
382
  msgid "Subject"
383
  msgstr "נושא"
384
 
385
  # @ contact_form
386
- #: contact_form.php:710
387
  msgid "Message"
388
  msgstr "תוכן ההודעה"
389
 
390
  # @ contact_form
391
- #: contact_form.php:713
392
  msgid "Site"
393
  msgstr "אתר"
394
 
395
  # @ contact_form
396
- #: contact_form.php:758
397
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
398
- msgstr "אם אתה יכול לראות את ה MIME הזה, אז הלקוח שלך אינו יכול לקבל סוגי MIME!"
 
399
 
400
  # @ contact_form
401
- #: contact_form.php:812
402
  msgid "FAQ"
403
  msgstr "שאלות ותשובות"
404
 
405
  # @ contact_form
406
- #: contact_form.php:813
407
  msgid "Support"
408
  msgstr "תמיכה"
409
-
2
  msgstr ""
3
  "Project-Id-Version: Contact Form Plugin v3.20\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-17 17:15+0200\n"
6
+ "PO-Revision-Date: 2012-10-17 17:15+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
+ "Language: he_IL\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
 
14
  "X-Poedit-SourceCharset: utf-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
16
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Poedit-Basepath: ../\n"
18
  "X-Textdomain-Support: yes\n"
19
+ "X-Generator: Poedit 1.5.4\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  # @ contact_form
25
  msgstr "תוספים פעילים"
26
 
27
  # @ contact_form
28
+ #: contact_form.php:78 contact_form.php:86 contact_form.php:94
 
 
29
  msgid "Read more"
30
  msgstr "קרא עוד"
31
 
32
  # @ contact_form
33
+ #: contact_form.php:78 contact_form.php:836 contact_form.php:845
 
 
34
  msgid "Settings"
35
  msgstr "הגדרות"
36
 
62
 
63
  # @ contact_form
64
  #: contact_form.php:96
65
+ msgid ""
66
+ "If you have any questions, please contact us via plugin@bestwebsoft.com or "
67
+ "fill in our contact form on our site"
68
+ msgstr ""
69
+ "אם יש לך שאלות כלשהן, אנא צור עמנו קשר דרך plugin@bestwebsoft.com או שתמלא "
70
+ "את טופס יצירת הקשר באתר שלנו"
71
 
72
  # @ contact_form
73
+ #: contact_form.php:108 contact_form.php:267
 
74
  msgid "Contact Form Options"
75
  msgstr "אפשרויות טופס צור קשר"
76
 
80
  msgstr "טופס צור קשר"
81
 
82
  # @ contact_form
83
+ #: contact_form.php:137 contact_form.php:183 contact_form.php:221
84
+ #: contact_form.php:377
 
 
85
  msgid "Name:"
86
  msgstr "שם:"
87
 
88
  # @ contact_form
89
+ #: contact_form.php:138 contact_form.php:184 contact_form.php:222
90
+ #: contact_form.php:378
 
 
91
  msgid "E-Mail Address:"
92
  msgstr "כתובת דוא\\\"ל:"
93
 
94
+ #: contact_form.php:139 contact_form.php:379
95
+ msgid "Phone:"
96
+ msgstr ""
97
+
98
  # @ contact_form
99
+ #: contact_form.php:140 contact_form.php:185 contact_form.php:223
100
+ #: contact_form.php:380
 
 
101
  msgid "Subject:"
102
  msgstr "נושא:"
103
 
104
  # @ contact_form
105
+ #: contact_form.php:141 contact_form.php:186 contact_form.php:224
106
+ #: contact_form.php:381
 
 
107
  msgid "Message:"
108
  msgstr "הודעה:"
109
 
110
  # @ contact_form
111
+ #: contact_form.php:142 contact_form.php:187 contact_form.php:225
112
+ #: contact_form.php:382
 
 
113
  msgid "Attachment:"
114
  msgstr "קובץ מצורף:"
115
 
116
  # @ contact_form
117
+ #: contact_form.php:144 contact_form.php:189
 
118
  msgid "Thank you for contacting us."
119
  msgstr "תודה שיצרת עמנו קשר."
120
 
121
  # @ contact_form
122
+ #: contact_form.php:235
123
+ msgid ""
124
+ "If the option 'Redirect to page' is selected then url field should be "
125
+ "fillied in the following format"
126
+ msgstr ""
127
+ "אם האפשרות 'הפנה מחדש לדף' מסומנת אז חייבים למלא את שדה כתובת ה URL בפורמט "
128
+ "הבא"
129
 
130
  # @ contact_form
131
+ #: contact_form.php:242 contact_form.php:247 contact_form.php:256
 
 
132
  msgid "Options saved."
133
  msgstr "האפשרויות נשמרו."
134
 
135
  # @ contact_form
136
+ #: contact_form.php:250
137
  msgid "Such user is not exist. Settings are not saved."
138
  msgstr "משתמש כזה אינו קיים. ההגדרות לא נשמרו."
139
 
140
  # @ contact_form
141
+ #: contact_form.php:259
142
  msgid "Please input correct email. Settings are not saved."
143
  msgstr "בבקשה הזן כתובת מייל נכונה. ההגדרות לא נשמרו."
144
 
145
  # @ contact_form
146
+ #: contact_form.php:272
147
+ msgid ""
148
+ "If you would like to add a Contact Form to your website, just copy and put "
149
+ "this shortcode onto your post or page or widget:"
150
+ msgstr ""
151
+ "אם אתה מעוניין להוסיף טופס צור קשר לאתר שלך, פשוט העתק את קיצור הקוד שלהלן "
152
+ "אל הפוסט או הדף או הוידג'ט שלך:"
153
 
154
  # @ contact_form
155
+ #: contact_form.php:273
156
+ msgid ""
157
+ "If information in the below fields are empty then the message will be send "
158
+ "to an address which was specified during registration."
159
  msgstr "אם השדות שלהלן ריקים, אז המייל יישלח אל לכתובת שצוינה בעת ההרשמה."
160
 
161
  # @ contact_form
162
+ #: contact_form.php:277
163
  msgid "Use email of wordpress user:"
164
  msgstr "השתמש במייל של משתמש וורדפרס:"
165
 
166
  # @ contact_form
167
+ #: contact_form.php:283
168
  msgid "Select user name"
169
  msgstr "בחר שם משתמש"
170
 
171
  # @ contact_form
172
+ #: contact_form.php:288
173
  msgid "Set a name of user who will get messages from a contact form."
174
  msgstr "הגדר שם משתמש, אשר יקבל את ההודעות הנשלחות דרך טופס יצירת הקשר."
175
 
176
  # @ contact_form
177
+ #: contact_form.php:292
178
  msgid "Use this email:"
179
  msgstr "השתמש במייל זה:"
180
 
181
  # @ contact_form
182
+ #: contact_form.php:298
183
  msgid "Set an email address which will be used for messages receiving."
184
  msgstr "הגדר כתובת מייל שתשמש לקבלת הודעות."
185
 
186
  # @ contact_form
187
+ #: contact_form.php:302
188
  msgid "Additional options"
189
  msgstr "אפשרויות נוספות"
190
 
191
  # @ contact_form
192
+ #: contact_form.php:305
193
  msgid "Display Attachment block"
194
  msgstr "הצג אפשרות קובץ מצורף"
195
 
196
  # @ contact_form
197
+ #: contact_form.php:310
198
  msgid "Users can attach files of the following types"
199
  msgstr "משתמשים יוכלו לצרף קבצים מהסוגים הבאים"
200
 
201
  # @ contact_form
202
+ #: contact_form.php:314
203
  msgid "Display Attachment explanations"
204
  msgstr "הצג הסברי קובץ מצורף"
205
 
206
  # @ contact_form
207
+ #: contact_form.php:319
208
  msgid "Display explanations after Attachment block"
209
  msgstr "הצג את ההסברים אחרי תיבת הקובץ המצורף"
210
 
211
  # @ contact_form
212
+ #: contact_form.php:323
213
  msgid "Display Send me a copy block"
214
  msgstr "הצג תיבת שלח לי עותק"
215
 
216
  # @ contact_form
217
+ #: contact_form.php:329
218
  msgid "What use?"
219
  msgstr "איזה שימוש?"
220
 
221
  # @ mail-send
222
+ #: contact_form.php:334
223
  msgid "Wp-mail"
224
  msgstr ""
225
 
226
  # @ mail_send
227
+ #: contact_form.php:335
228
  msgid "To send mail you can use the wordpress wp_mail function"
229
  msgstr ""
230
 
231
  # @ mail-send
232
+ #: contact_form.php:343
233
  msgid "Mail"
234
  msgstr ""
235
 
236
  # @ mail_send
237
+ #: contact_form.php:344
238
  msgid "To send mail you can use the php mail function"
239
  msgstr ""
240
 
241
  # @ contact_form
242
+ #: contact_form.php:348
243
  msgid "Change FROM fields of the contact form"
244
  msgstr "שנה את השדות של טופס יצירת הקשר"
245
 
246
+ #: contact_form.php:354
247
+ msgid "Display phone field"
248
+ msgstr ""
249
+
250
  # @ contact_form
251
+ #: contact_form.php:360
252
  msgid "Display additional info in email"
253
  msgstr "הצג מידע נוסף במייל"
254
 
255
  # @ contact_form
256
+ #: contact_form.php:365 contact_form.php:702
 
257
  msgid "Sent from (ip address)"
258
  msgstr "נשלח מ (כתובת IP)"
259
 
260
  # @ contact_form
261
+ #: contact_form.php:366 contact_form.php:707
 
262
  msgid "Date/Time"
263
  msgstr "תאריך\\שעה"
264
 
265
  # @ contact_form
266
+ #: contact_form.php:367 contact_form.php:712
 
267
  msgid "Coming from (referer)"
268
  msgstr "מגיע מ (השולח)"
269
 
270
  # @ contact_form
271
+ #: contact_form.php:368 contact_form.php:717
 
272
  msgid "Using (user agent)"
273
  msgstr "משתמש ב (user agent)"
274
 
275
  # @ contact_form
276
+ #: contact_form.php:372
277
  msgid "Change label for fields of the contact form"
278
  msgstr "שנה את תוויות הטופס"
279
 
280
  # @ contact_form
281
+ #: contact_form.php:386
282
  msgid "Action after the send mail"
283
  msgstr "הפעולה שלאחר שליחת הטופס"
284
 
285
  # @ contact_form
286
+ #: contact_form.php:388
287
  msgid "Display text"
288
  msgstr "הטקסט המוצג"
289
 
290
  # @ contact_form
291
+ #: contact_form.php:389
292
  msgid "Text"
293
  msgstr "טקסט"
294
 
295
  # @ contact_form
296
+ #: contact_form.php:390
297
  msgid "Redirect to page"
298
  msgstr "הפנה אל הדף"
299
 
300
  # @ contact_form
301
+ #: contact_form.php:391
302
  msgid "Url"
303
  msgstr "URL"
304
 
305
  # @ default
306
+ #: contact_form.php:396
307
  msgid "Save Changes"
308
  msgstr ""
309
 
310
  # @ contact_form
311
+ #: contact_form.php:433
312
  msgid "Sorry, your e-mail could not be delivered."
313
  msgstr "מצטערים, אי אפשר היה לשלוח את המייל שלך."
314
 
315
  # @ contact_form
316
+ #: contact_form.php:503
317
  msgid "You can attach files of the following types"
318
  msgstr "אתה יכול לצרף קבצים מן הסוגים הבאים"
319
 
320
  # @ contact_form
321
+ #: contact_form.php:511
322
  msgid "Send me a copy"
323
  msgstr "שלח לי עותק"
324
 
325
  # @ contact_form
326
+ #: contact_form.php:521
327
  msgid "Submit"
328
  msgstr "שלח"
329
 
330
  # @ contact_form
331
+ #: contact_form.php:560
332
  msgid "Your name is required."
333
  msgstr "השם שלך הכרחי."
334
 
335
  # @ contact_form
336
+ #: contact_form.php:561
337
  msgid "A proper e-mail address is required."
338
  msgstr "כתובת מייל תקנית הכרחית."
339
 
340
  # @ contact_form
341
+ #: contact_form.php:562
342
  msgid "Subject text is required."
343
  msgstr "הנושא הכרחי."
344
 
345
  # @ contact_form
346
+ #: contact_form.php:563
347
  msgid "Message text is required."
348
  msgstr "מילוי שדה ההודעה הכרחי."
349
 
350
  # @ contact_form
351
+ #: contact_form.php:564
352
  msgid "Please make corrections below and try again."
353
  msgstr "אנא עשה תיקונים להלן ונסה שוב."
354
 
355
  # @ contact_form
356
+ #: contact_form.php:596
357
  msgid "Attachment is broken."
358
  msgstr "הקובץ המצורף שבור"
359
 
360
  # @ contact_form
361
+ #: contact_form.php:609
362
  msgid "Please complete the CAPTCHA."
363
  msgstr "אנא השלם את קוד האימות."
364
 
365
  # @ contact_form
366
+ #: contact_form.php:725
367
  msgid "Contact from"
368
  msgstr "טופס צור קשר"
369
 
370
  # @ contact_form
371
+ #: contact_form.php:730
372
  msgid "Name"
373
  msgstr "שם"
374
 
375
  # @ contact_form
376
+ #: contact_form.php:733
377
  msgid "Email"
378
  msgstr "כתובת מייל"
379
 
380
+ #: contact_form.php:738
381
+ msgid "Phone"
382
+ msgstr ""
383
+
384
  # @ contact_form
385
+ #: contact_form.php:741
386
  msgid "Subject"
387
  msgstr "נושא"
388
 
389
  # @ contact_form
390
+ #: contact_form.php:744
391
  msgid "Message"
392
  msgstr "תוכן ההודעה"
393
 
394
  # @ contact_form
395
+ #: contact_form.php:747
396
  msgid "Site"
397
  msgstr "אתר"
398
 
399
  # @ contact_form
400
+ #: contact_form.php:792
401
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
402
+ msgstr ""
403
+ "אם אתה יכול לראות את ה MIME הזה, אז הלקוח שלך אינו יכול לקבל סוגי MIME!"
404
 
405
  # @ contact_form
406
+ #: contact_form.php:846
407
  msgid "FAQ"
408
  msgstr "שאלות ותשובות"
409
 
410
  # @ contact_form
411
+ #: contact_form.php:847
412
  msgid "Support"
413
  msgstr "תמיכה"
 
languages/contact_form-hi_IN.mo CHANGED
Binary file
languages/contact_form-hi_IN.po CHANGED
@@ -2,34 +2,29 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-07-10 10:49+0300\n"
6
- "PO-Revision-Date: 2012-07-10 10:49+0300\n"
7
- "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Team Outshine <ash.pr@outshinesolutions.com>\n"
9
- "Language: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-Language: Hindi\n"
16
- "X-Poedit-Country: INDIA\n"
17
  "X-Poedit-SourceCharset: utf-8\n"
 
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: contact_form.php:76
21
  msgid "Activated plugins"
22
  msgstr "सक्रिय प्लगिन"
23
 
24
- #: contact_form.php:78
25
- #: contact_form.php:86
26
- #: contact_form.php:94
27
  msgid "Read more"
28
  msgstr "अधिक पढ़ें"
29
 
30
- #: contact_form.php:78
31
- #: contact_form.php:802
32
- #: contact_form.php:811
33
  msgid "Settings"
34
  msgstr "सेटिंग्स"
35
 
@@ -55,11 +50,14 @@ msgid "Install now from wordpress.org"
55
  msgstr "Wordpress.org से अब स्थापित"
56
 
57
  #: contact_form.php:96
58
- msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
59
- msgstr "यदि आप कोई प्रश्न हैं, हमें plugin@bestwebsoft.com के माध्यम से संपर्क करें या हमारी साइट पर हमारे संपर्क फार्म में भरें"
 
 
 
 
60
 
61
- #: contact_form.php:108
62
- #: contact_form.php:262
63
  msgid "Contact Form Options"
64
  msgstr "संपर्क प्रपत्र विकल्प"
65
 
@@ -67,277 +65,286 @@ msgstr "संपर्क प्रपत्र विकल्प"
67
  msgid "Contact Form"
68
  msgstr "संपर्क प्रपत्र"
69
 
70
- #: contact_form.php:136
71
- #: contact_form.php:180
72
- #: contact_form.php:216
73
- #: contact_form.php:366
74
  msgid "Name:"
75
  msgstr "नाम:"
76
 
77
- #: contact_form.php:137
78
- #: contact_form.php:181
79
- #: contact_form.php:217
80
- #: contact_form.php:367
81
  msgid "E-Mail Address:"
82
  msgstr "ई - मेल पता:"
83
 
84
- #: contact_form.php:138
85
- #: contact_form.php:182
86
- #: contact_form.php:218
87
- #: contact_form.php:368
 
 
88
  msgid "Subject:"
89
  msgstr "विषय:"
90
 
91
- #: contact_form.php:139
92
- #: contact_form.php:183
93
- #: contact_form.php:219
94
- #: contact_form.php:369
95
  msgid "Message:"
96
  msgstr "संदेश:"
97
 
98
- #: contact_form.php:140
99
- #: contact_form.php:184
100
- #: contact_form.php:220
101
- #: contact_form.php:370
102
  msgid "Attachment:"
103
  msgstr "लगाव:"
104
 
105
- #: contact_form.php:142
106
- #: contact_form.php:186
107
  msgid "Thank you for contacting us."
108
  msgstr "हमसे संपर्क करने के लिए धन्यवाद.हमसे संपर्क करने के लिए धन्यवाद."
109
 
110
- #: contact_form.php:230
111
- msgid "If the option 'Redirect to page' is selected then url field should be fillied in the following format"
 
 
112
  msgstr ""
113
 
114
- #: contact_form.php:237
115
- #: contact_form.php:242
116
- #: contact_form.php:251
117
  msgid "Options saved."
118
  msgstr "विकल्प बचाया."
119
 
120
- #: contact_form.php:245
121
  msgid "Such user is not exist. Settings are not saved."
122
  msgstr "इस तरह के उपयोगकर्ता मौजूद नहीं है. सेटिंग्स सहेजे नहीं जाते हैं."
123
 
124
- #: contact_form.php:254
125
  msgid "Please input correct email. Settings are not saved."
126
  msgstr "कृपया सही ईमेल इनपुट करे . सेटिंग्स सहेजे नहीं जाते हैं."
127
 
128
- #: contact_form.php:267
129
- msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
130
- msgstr "यदि आप अपनी वेबसाइट पर एक संपर्क फ़ॉर्म को जोड़ना चाहते हैं, बस कॉपी और अपनी पोस्ट या पृष्ठ या विजेट पर यह लघुकोडः को रखा:"
 
 
 
 
131
 
132
- #: contact_form.php:268
133
- msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
134
- msgstr "यदि नीचे दी गई फ़ील्ड्स में जानकारी खाली रहे हैं तो जो पंजीकरण के दौरान निर्दिष्ट किया गया था एक पता करने के लिए संदेश भेजने के लिए किया जाएगा."
 
 
 
 
135
 
136
- #: contact_form.php:272
137
  msgid "Use email of wordpress user:"
138
  msgstr "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
 
337
  #~ msgid "E-Mail Addresse:"
338
  #~ msgstr "Indirizzo e-mail:"
 
339
  #~ msgid "Install Now"
340
  #~ msgstr "Installa Ora"
 
341
  #~ msgid "BWS Plugins"
342
  #~ msgstr "BWS Plugins"
343
-
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-17 17:15+0200\n"
6
+ "PO-Revision-Date: 2012-10-17 17:15+0200\n"
7
+ "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Team Outshine <ash.pr@outshinesolutions.com>\n"
9
+ "Language: hi_IN\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
 
 
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: contact_form.php:76
20
  msgid "Activated plugins"
21
  msgstr "सक्रिय प्लगिन"
22
 
23
+ #: contact_form.php:78 contact_form.php:86 contact_form.php:94
 
 
24
  msgid "Read more"
25
  msgstr "अधिक पढ़ें"
26
 
27
+ #: contact_form.php:78 contact_form.php:836 contact_form.php:845
 
 
28
  msgid "Settings"
29
  msgstr "सेटिंग्स"
30
 
50
  msgstr "Wordpress.org से अब स्थापित"
51
 
52
  #: contact_form.php:96
53
+ msgid ""
54
+ "If you have any questions, please contact us via plugin@bestwebsoft.com or "
55
+ "fill in our contact form on our site"
56
+ msgstr ""
57
+ "यदि आप कोई प्रश्न हैं, हमें plugin@bestwebsoft.com के माध्यम से संपर्क करें या हमारी साइट "
58
+ "पर हमारे संपर्क फार्म में भरें"
59
 
60
+ #: contact_form.php:108 contact_form.php:267
 
61
  msgid "Contact Form Options"
62
  msgstr "संपर्क प्रपत्र विकल्प"
63
 
65
  msgid "Contact Form"
66
  msgstr "संपर्क प्रपत्र"
67
 
68
+ #: contact_form.php:137 contact_form.php:183 contact_form.php:221
69
+ #: contact_form.php:377
 
 
70
  msgid "Name:"
71
  msgstr "नाम:"
72
 
73
+ #: contact_form.php:138 contact_form.php:184 contact_form.php:222
74
+ #: contact_form.php:378
 
 
75
  msgid "E-Mail Address:"
76
  msgstr "ई - मेल पता:"
77
 
78
+ #: contact_form.php:139 contact_form.php:379
79
+ msgid "Phone:"
80
+ msgstr ""
81
+
82
+ #: contact_form.php:140 contact_form.php:185 contact_form.php:223
83
+ #: contact_form.php:380
84
  msgid "Subject:"
85
  msgstr "विषय:"
86
 
87
+ #: contact_form.php:141 contact_form.php:186 contact_form.php:224
88
+ #: contact_form.php:381
 
 
89
  msgid "Message:"
90
  msgstr "संदेश:"
91
 
92
+ #: contact_form.php:142 contact_form.php:187 contact_form.php:225
93
+ #: contact_form.php:382
 
 
94
  msgid "Attachment:"
95
  msgstr "लगाव:"
96
 
97
+ #: contact_form.php:144 contact_form.php:189
 
98
  msgid "Thank you for contacting us."
99
  msgstr "हमसे संपर्क करने के लिए धन्यवाद.हमसे संपर्क करने के लिए धन्यवाद."
100
 
101
+ #: contact_form.php:235
102
+ msgid ""
103
+ "If the option 'Redirect to page' is selected then url field should be "
104
+ "fillied in the following format"
105
  msgstr ""
106
 
107
+ #: contact_form.php:242 contact_form.php:247 contact_form.php:256
 
 
108
  msgid "Options saved."
109
  msgstr "विकल्प बचाया."
110
 
111
+ #: contact_form.php:250
112
  msgid "Such user is not exist. Settings are not saved."
113
  msgstr "इस तरह के उपयोगकर्ता मौजूद नहीं है. सेटिंग्स सहेजे नहीं जाते हैं."
114
 
115
+ #: contact_form.php:259
116
  msgid "Please input correct email. Settings are not saved."
117
  msgstr "कृपया सही ईमेल इनपुट करे . सेटिंग्स सहेजे नहीं जाते हैं."
118
 
119
+ #: contact_form.php:272
120
+ msgid ""
121
+ "If you would like to add a Contact Form to your website, just copy and put "
122
+ "this shortcode onto your post or page or widget:"
123
+ msgstr ""
124
+ "यदि आप अपनी वेबसाइट पर एक संपर्क फ़ॉर्म को जोड़ना चाहते हैं, बस कॉपी और अपनी पोस्ट या "
125
+ "पृष्ठ या विजेट पर यह लघुकोडः को रखा:"
126
 
127
+ #: contact_form.php:273
128
+ msgid ""
129
+ "If information in the below fields are empty then the message will be send "
130
+ "to an address which was specified during registration."
131
+ msgstr ""
132
+ "यदि नीचे दी गई फ़ील्ड्स में जानकारी खाली रहे हैं तो जो पंजीकरण के दौरान निर्दिष्ट किया "
133
+ "गया था एक पता करने के लिए संदेश भेजने के लिए किया जाएगा."
134
 
135
+ #: contact_form.php:277
136
  msgid "Use email of wordpress user:"
137
  msgstr "WordPress के उपयोगकर्ता का ईमेल का उपयोग करें:"
138
 
139
+ #: contact_form.php:283
140
  msgid "Select user name"
141
  msgstr "उपयोगकर्ता नाम का चयन करें"
142
 
143
+ #: contact_form.php:288
144
  msgid "Set a name of user who will get messages from a contact form."
145
  msgstr "उपयोगकर्ता का नाम है जो एक संपर्क फ़ॉर्म से संदेश मिल जाएगा"
146
 
147
+ #: contact_form.php:292
148
  msgid "Use this email:"
149
  msgstr "इस ईमेल का उपयोग करें:"
150
 
151
+ #: contact_form.php:298
152
  msgid "Set an email address which will be used for messages receiving."
153
  msgstr "एक ईमेल पता है जो संदेश प्राप्त करने के लिए इस्तेमाल किया जाएगा "
154
 
155
+ #: contact_form.php:302
156
  msgid "Additional options"
157
  msgstr "अतिरिक्त विकल्प"
158
 
159
+ #: contact_form.php:305
160
  msgid "Display Attachment block"
161
  msgstr "अटैचमेंट ब्लॉक प्रदर्शित करें"
162
 
163
+ #: contact_form.php:310
164
  msgid "Users can attach files of the following types"
165
  msgstr "उपयोगकर्ताओं को निम्नलिखित प्रकार की फ़ाइलों को संलग्न कर सकते हैं"
166
 
167
+ #: contact_form.php:314
168
+ #, fuzzy
169
  msgid "Display Attachment explanations"
170
+ msgstr "अटैचमेंट ब्लॉक प्रदर्शित करें"
171
 
172
+ #: contact_form.php:319
173
+ #, fuzzy
174
  msgid "Display explanations after Attachment block"
175
+ msgstr "अटैचमेंट ब्लॉक प्रदर्शित करें"
176
 
177
+ #: contact_form.php:323
178
  msgid "Display Send me a copy block"
179
  msgstr "मुझे एक प्रति ब्लॉक भेजें प्रदर्शित करें"
180
 
181
+ #: contact_form.php:329
182
  msgid "What use?"
183
  msgstr "किस का उपयोग करें?."
184
 
185
+ #: contact_form.php:334
186
  msgid "Wp-mail"
187
  msgstr "Wp-mail"
188
 
189
+ #: contact_form.php:335
190
  msgid "To send mail you can use the wordpress wp_mail function"
191
  msgstr "मेल भेजने के लिए आपको WordPress के wp_mail समारोह का उपयोग कर सकते हैं"
192
 
193
+ #: contact_form.php:343
194
  msgid "Mail"
195
  msgstr "मेल"
196
 
197
+ #: contact_form.php:344
198
  msgid "To send mail you can use the php mail function"
199
  msgstr "मेल भेजने के लिए आपको php मेल समारोह का उपयोग कर सकते हैं"
200
 
201
+ #: contact_form.php:348
202
  msgid "Change FROM fields of the contact form"
203
  msgstr "संपर्क प्रपत्र की फ़ील्ड्स से बदलें"
204
 
205
+ #: contact_form.php:354
206
+ msgid "Display phone field"
207
+ msgstr ""
208
+
209
+ #: contact_form.php:360
210
  msgid "Display additional info in email"
211
  msgstr "ईमेल में अतिरिक्त जानकारी प्रदर्शित करें"
212
 
213
+ #: contact_form.php:365 contact_form.php:702
 
214
  msgid "Sent from (ip address)"
215
  msgstr "(आईपी पते से भेजा गया)"
216
 
217
+ #: contact_form.php:366 contact_form.php:707
 
218
  msgid "Date/Time"
219
  msgstr "दिनांक / समय"
220
 
221
+ #: contact_form.php:367 contact_form.php:712
 
222
  msgid "Coming from (referer)"
223
  msgstr "से आ रहा है (referer)"
224
 
225
+ #: contact_form.php:368 contact_form.php:717
 
226
  msgid "Using (user agent)"
227
  msgstr "उपयोग करना (प्रयोक्ता एजेंट)"
228
 
229
+ #: contact_form.php:372
230
  msgid "Change label for fields of the contact form"
231
  msgstr "संपर्क प्रपत्र का फ़ील्ड्स के लिए लेबल बदलें"
232
 
233
+ #: contact_form.php:386
234
  msgid "Action after the send mail"
235
  msgstr ""
236
 
237
+ #: contact_form.php:388
238
  #, fuzzy
239
  msgid "Display text"
240
  msgstr "अटैचमेंट ब्लॉक प्रदर्शित करें"
241
 
242
+ #: contact_form.php:389
243
  msgid "Text"
244
  msgstr ""
245
 
246
+ #: contact_form.php:390
247
  msgid "Redirect to page"
248
  msgstr ""
249
 
250
+ #: contact_form.php:391
251
  msgid "Url"
252
  msgstr ""
253
 
254
+ #: contact_form.php:396
255
  msgid "Save Changes"
256
  msgstr "परिवर्तन सहेजें"
257
 
258
+ #: contact_form.php:433
259
  msgid "Sorry, your e-mail could not be delivered."
260
  msgstr "क्षमा करें, आपका ई - मेल वितरित नहीं किया जा सकता है."
261
 
262
+ #: contact_form.php:503
263
  msgid "You can attach files of the following types"
264
  msgstr "आप निम्न प्रकार का फ़ाइलों को संलग्न कर सकते हैं"
265
 
266
+ #: contact_form.php:511
267
  msgid "Send me a copy"
268
  msgstr "मुझे एक प्रतिलिपि भेजें"
269
 
270
+ #: contact_form.php:521
271
  msgid "Submit"
272
  msgstr "सबमिट"
273
 
274
+ #: contact_form.php:560
275
  msgid "Your name is required."
276
  msgstr "आपका नाम की आवश्यकता है."
277
 
278
+ #: contact_form.php:561
279
  msgid "A proper e-mail address is required."
280
  msgstr "एक उचित ई - मेल पते की आवश्यकता है."
281
 
282
+ #: contact_form.php:562
283
  msgid "Subject text is required."
284
  msgstr "विषय पाठ की आवश्यकता होती है"
285
 
286
+ #: contact_form.php:563
287
  msgid "Message text is required."
288
  msgstr "संदेश पाठ की आवश्यकता है."
289
 
290
+ #: contact_form.php:564
291
  msgid "Please make corrections below and try again."
292
  msgstr "सुधार नीचे बनाने के लिए और फिर प्रयास करें"
293
 
294
+ #: contact_form.php:596
295
  msgid "Attachment is broken."
296
  msgstr "अटैचमेंट टूटा ."
297
 
298
+ #: contact_form.php:609
299
  msgid "Please complete the CAPTCHA."
300
  msgstr "कॅप्चा पूरा करें."
301
 
302
+ #: contact_form.php:725
303
  msgid "Contact from"
304
  msgstr "संपर्क करें"
305
 
306
+ #: contact_form.php:730
307
  msgid "Name"
308
  msgstr "नाम"
309
 
310
+ #: contact_form.php:733
311
  msgid "Email"
312
  msgstr "ईमेल"
313
 
314
+ #: contact_form.php:738
315
+ msgid "Phone"
316
+ msgstr ""
317
+
318
+ #: contact_form.php:741
319
  msgid "Subject"
320
  msgstr "विषय"
321
 
322
+ #: contact_form.php:744
323
  msgid "Message"
324
  msgstr "संदेश"
325
 
326
+ #: contact_form.php:747
327
  msgid "Site"
328
  msgstr "साइट"
329
 
330
+ #: contact_form.php:792
331
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
332
+ msgstr ""
333
+ "यदि आप अपने ग्राहक की तुलना में इस माइम देख सकते हैं MIME प्रकार स्वीकार नहीं करता है!"
334
 
335
+ #: contact_form.php:846
336
  msgid "FAQ"
337
  msgstr "अक्सर पूछे जाने वाले प्रश्न"
338
 
339
+ #: contact_form.php:847
340
  msgid "Support"
341
  msgstr "समर्थन"
342
 
343
  #~ msgid "E-Mail Addresse:"
344
  #~ msgstr "Indirizzo e-mail:"
345
+
346
  #~ msgid "Install Now"
347
  #~ msgstr "Installa Ora"
348
+
349
  #~ msgid "BWS Plugins"
350
  #~ msgstr "BWS Plugins"
 
languages/contact_form-it_IT.mo CHANGED
Binary file
languages/contact_form-it_IT.po CHANGED
@@ -2,34 +2,29 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-07-10 10:49+0300\n"
6
- "PO-Revision-Date: 2012-07-10 10:49+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
- "Language: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-Language: Italian\n"
16
- "X-Poedit-Country: ITALY\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 attivati"
23
 
24
- #: contact_form.php:78
25
- #: contact_form.php:86
26
- #: contact_form.php:94
27
  msgid "Read more"
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
 
@@ -55,11 +50,14 @@ msgid "Install now from wordpress.org"
55
  msgstr "Installa ora da 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 "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
 
@@ -67,277 +65,286 @@ msgstr "Opzioni Contact Form"
67
  msgid "Contact Form"
68
  msgstr "Contact Form"
69
 
70
- #: contact_form.php:136
71
- #: contact_form.php:180
72
- #: contact_form.php:216
73
- #: contact_form.php:366
74
  msgid "Name:"
75
  msgstr "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
 
337
  #~ msgid "E-Mail Addresse:"
338
  #~ msgstr "Indirizzo e-mail:"
 
339
  #~ msgid "Install Now"
340
  #~ msgstr "Installa Ora"
 
341
  #~ msgid "BWS Plugins"
342
  #~ msgstr "BWS Plugins"
343
-
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-17 17:15+0200\n"
6
+ "PO-Revision-Date: 2012-10-17 17:15+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
+ "Language: it_IT\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
 
 
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: contact_form.php:76
20
  msgid "Activated plugins"
21
  msgstr "Plugin attivati"
22
 
23
+ #: contact_form.php:78 contact_form.php:86 contact_form.php:94
 
 
24
  msgid "Read more"
25
  msgstr "Leggi"
26
 
27
+ #: contact_form.php:78 contact_form.php:836 contact_form.php:845
 
 
28
  msgid "Settings"
29
  msgstr "Settaggi"
30
 
50
  msgstr "Installa ora da wordpress.org"
51
 
52
  #: contact_form.php:96
53
+ msgid ""
54
+ "If you have any questions, please contact us via plugin@bestwebsoft.com or "
55
+ "fill in our contact form on our site"
56
+ msgstr ""
57
+ "Se hai domande, per favore contattaci a plugin@bestwebsoft.com o compila il "
58
+ "modulo \"contact form\" sul nostro sito"
59
 
60
+ #: contact_form.php:108 contact_form.php:267
 
61
  msgid "Contact Form Options"
62
  msgstr "Opzioni Contact Form"
63
 
65
  msgid "Contact Form"
66
  msgstr "Contact Form"
67
 
68
+ #: contact_form.php:137 contact_form.php:183 contact_form.php:221
69
+ #: contact_form.php:377
 
 
70
  msgid "Name:"
71
  msgstr "Nome:"
72
 
73
+ #: contact_form.php:138 contact_form.php:184 contact_form.php:222
74
+ #: contact_form.php:378
 
 
75
  msgid "E-Mail Address:"
76
  msgstr "Indirizzo e-mail:"
77
 
78
+ #: contact_form.php:139 contact_form.php:379
79
+ msgid "Phone:"
80
+ msgstr ""
81
+
82
+ #: contact_form.php:140 contact_form.php:185 contact_form.php:223
83
+ #: contact_form.php:380
84
  msgid "Subject:"
85
  msgstr "Oggetto:"
86
 
87
+ #: contact_form.php:141 contact_form.php:186 contact_form.php:224
88
+ #: contact_form.php:381
 
 
89
  msgid "Message:"
90
  msgstr "Messaggio:"
91
 
92
+ #: contact_form.php:142 contact_form.php:187 contact_form.php:225
93
+ #: contact_form.php:382
 
 
94
  msgid "Attachment:"
95
  msgstr "Attachment:"
96
 
97
+ #: contact_form.php:144 contact_form.php:189
 
98
  msgid "Thank you for contacting us."
99
  msgstr "Grazie per averci contattato."
100
 
101
+ #: contact_form.php:235
102
+ msgid ""
103
+ "If the option 'Redirect to page' is selected then url field should be "
104
+ "fillied in the following format"
105
  msgstr ""
106
 
107
+ #: contact_form.php:242 contact_form.php:247 contact_form.php:256
 
 
108
  msgid "Options saved."
109
  msgstr "Opzioni salvate."
110
 
111
+ #: contact_form.php:250
112
  msgid "Such user is not exist. Settings are not saved."
113
  msgstr "L'utente indicato non esiste. Le opzioni non sono state salvate."
114
 
115
+ #: contact_form.php:259
116
  msgid "Please input correct email. Settings are not saved."
117
  msgstr "Perfavore inserisci una e-mail corretta. Opzioni non salvate."
118
 
119
+ #: contact_form.php:272
120
+ msgid ""
121
+ "If you would like to add a Contact Form to your website, just copy and put "
122
+ "this shortcode onto your post or page or widget:"
123
+ msgstr ""
124
+ "Se vuoi aggiungere un Contact Form al tuo sito, copia e incolla questo "
125
+ "shortcode nei tuoi post o nelle tue pagine o widget:"
126
 
127
+ #: contact_form.php:273
128
+ msgid ""
129
+ "If information in the below fields are empty then the message will be send "
130
+ "to an address which was specified during registration."
131
+ msgstr ""
132
+ "Se le informazioni nei campi sottostanti sono vuote allora il messaggio sarà "
133
+ "inviato ad un indirizzo che è stato specificato durante la fase di "
134
+ "registrazione. "
135
 
136
+ #: contact_form.php:277
137
  msgid "Use email of wordpress user:"
138
  msgstr "Utilizza l'e-mail dell'utente wordpress:"
139
 
140
+ #: contact_form.php:283
141
  msgid "Select user name"
142
  msgstr "Seleziona nome utente"
143
 
144
+ #: contact_form.php:288
145
  msgid "Set a name of user who will get messages from a contact form."
146
+ msgstr ""
147
+ "Imposta il nome dell'utente che riceverà i messaggi da un contact form."
148
 
149
+ #: contact_form.php:292
150
  msgid "Use this email:"
151
  msgstr "Utilizza questa e-mail:"
152
 
153
+ #: contact_form.php:298
154
  msgid "Set an email address which will be used for messages receiving."
155
  msgstr "Imposta una e-mail che verrà utilizzata per ricevere i messaggi."
156
 
157
+ #: contact_form.php:302
158
  msgid "Additional options"
159
  msgstr "Impostazioni aggiuntive"
160
 
161
+ #: contact_form.php:305
162
  msgid "Display Attachment block"
163
  msgstr "Visualizza l'attachment"
164
 
165
+ #: contact_form.php:310
166
  msgid "Users can attach files of the following types"
167
  msgstr "Gli utenti possono allegare i files nei seguenti tipi"
168
 
169
+ #: contact_form.php:314
170
  msgid "Display Attachment explanations"
171
  msgstr ""
172
 
173
+ #: contact_form.php:319
174
  msgid "Display explanations after Attachment block"
175
  msgstr ""
176
 
177
+ #: contact_form.php:323
178
  msgid "Display Send me a copy block"
179
  msgstr "Visualizza il blocco \"Inviami una copia\" "
180
 
181
+ #: contact_form.php:329
182
  msgid "What use?"
183
  msgstr ""
184
 
185
+ #: contact_form.php:334
186
  msgid "Wp-mail"
187
  msgstr "Wp-mail"
188
 
189
+ #: contact_form.php:335
190
  msgid "To send mail you can use the wordpress wp_mail function"
191
  msgstr ""
192
 
193
+ #: contact_form.php:343
194
  msgid "Mail"
195
  msgstr "Mail"
196
 
197
+ #: contact_form.php:344
198
  msgid "To send mail you can use the php mail function"
199
  msgstr ""
200
 
201
+ #: contact_form.php:348
202
  msgid "Change FROM fields of the contact form"
203
  msgstr "Modifica da campi del contact form"
204
 
205
+ #: contact_form.php:354
206
+ msgid "Display phone field"
207
+ msgstr ""
208
+
209
+ #: contact_form.php:360
210
  msgid "Display additional info in email"
211
  msgstr ""
212
 
213
+ #: contact_form.php:365 contact_form.php:702
 
214
  msgid "Sent from (ip address)"
215
  msgstr "Inviato da (indirizzi IP)"
216
 
217
+ #: contact_form.php:366 contact_form.php:707
 
218
  msgid "Date/Time"
219
  msgstr "Data/Ora"
220
 
221
+ #: contact_form.php:367 contact_form.php:712
 
222
  msgid "Coming from (referer)"
223
  msgstr "Da (referente)"
224
 
225
+ #: contact_form.php:368 contact_form.php:717
 
226
  msgid "Using (user agent)"
227
  msgstr "Utilizza (user agent)"
228
 
229
+ #: contact_form.php:372
230
  msgid "Change label for fields of the contact form"
231
  msgstr "Modifica le etichette dei campi del contact form"
232
 
233
+ #: contact_form.php:386
234
  msgid "Action after the send mail"
235
  msgstr ""
236
 
237
+ #: contact_form.php:388
238
  #, fuzzy
239
  msgid "Display text"
240
  msgstr "Visualizza l'attachment"
241
 
242
+ #: contact_form.php:389
243
  msgid "Text"
244
  msgstr ""
245
 
246
+ #: contact_form.php:390
247
  msgid "Redirect to page"
248
  msgstr ""
249
 
250
+ #: contact_form.php:391
251
  msgid "Url"
252
  msgstr ""
253
 
254
+ #: contact_form.php:396
255
  msgid "Save Changes"
256
  msgstr "Salva le modifiche"
257
 
258
+ #: contact_form.php:433
259
  msgid "Sorry, your e-mail could not be delivered."
260
  msgstr "Spiacenti, la tua e-mail non può essere consegnata al momento."
261
 
262
+ #: contact_form.php:503
263
  msgid "You can attach files of the following types"
264
  msgstr "Gli utenti possono allegare i files nei seguenti tipi"
265
 
266
+ #: contact_form.php:511
267
  msgid "Send me a copy"
268
  msgstr "Inviami una copia"
269
 
270
+ #: contact_form.php:521
271
  msgid "Submit"
272
  msgstr "Invia"
273
 
274
+ #: contact_form.php:560
275
  msgid "Your name is required."
276
  msgstr "Il nome è obbligatorio"
277
 
278
+ #: contact_form.php:561
279
  msgid "A proper e-mail address is required."
280
  msgstr "È richiesto un indirizzo e-mail corretto"
281
 
282
+ #: contact_form.php:562
283
  msgid "Subject text is required."
284
  msgstr "L'oggetto è obbligatorio"
285
 
286
+ #: contact_form.php:563
287
  msgid "Message text is required."
288
  msgstr "Il campo messaggio è obbligatorio"
289
 
290
+ #: contact_form.php:564
291
  msgid "Please make corrections below and try again."
292
  msgstr "Controlla i dati del modulo e riprova!"
293
 
294
+ #: contact_form.php:596
295
  msgid "Attachment is broken."
296
  msgstr "L'attachment non è corretto"
297
 
298
+ #: contact_form.php:609
299
  msgid "Please complete the CAPTCHA."
300
  msgstr "Completa il CAPTCHA"
301
 
302
+ #: contact_form.php:725
303
  msgid "Contact from"
304
  msgstr "Contact from"
305
 
306
+ #: contact_form.php:730
307
  msgid "Name"
308
  msgstr "Nome"
309
 
310
+ #: contact_form.php:733
311
  msgid "Email"
312
  msgstr "e-mail"
313
 
314
+ #: contact_form.php:738
315
+ msgid "Phone"
316
+ msgstr ""
317
+
318
+ #: contact_form.php:741
319
  msgid "Subject"
320
  msgstr "Oggetto"
321
 
322
+ #: contact_form.php:744
323
  msgid "Message"
324
  msgstr "Messaggio"
325
 
326
+ #: contact_form.php:747
327
  msgid "Site"
328
  msgstr "Sito"
329
 
330
+ #: contact_form.php:792
331
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
332
+ msgstr ""
333
+ "Se puoi visualizzare questo MIME il tuo client non supporta i MIME types!"
334
 
335
+ #: contact_form.php:846
336
  msgid "FAQ"
337
  msgstr "FAQ"
338
 
339
+ #: contact_form.php:847
340
  msgid "Support"
341
  msgstr "Supporto"
342
 
343
  #~ msgid "E-Mail Addresse:"
344
  #~ msgstr "Indirizzo e-mail:"
345
+
346
  #~ msgid "Install Now"
347
  #~ msgstr "Installa Ora"
348
+
349
  #~ msgid "BWS Plugins"
350
  #~ msgstr "BWS Plugins"
 
languages/contact_form-ja.mo ADDED
Binary file
languages/contact_form-ja.po ADDED
@@ -0,0 +1,353 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: contact_form\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-17 17:15+0200\n"
6
+ "PO-Revision-Date: 2012-10-17 17:15+0200\n"
7
+ "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
+ "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
+ "Language: ja_JP\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: contact_form.php:76
20
+ msgid "Activated plugins"
21
+ msgstr "有効なプラグイン"
22
+
23
+ #: contact_form.php:78 contact_form.php:86 contact_form.php:94
24
+ msgid "Read more"
25
+ msgstr "もっと読む"
26
+
27
+ #: contact_form.php:78 contact_form.php:836 contact_form.php:845
28
+ msgid "Settings"
29
+ msgstr "設定"
30
+
31
+ #: contact_form.php:84
32
+ msgid "Installed plugins"
33
+ msgstr "導入済みプラグイン"
34
+
35
+ #: contact_form.php:92
36
+ msgid "Recommended plugins"
37
+ msgstr "推奨プラグイン"
38
+
39
+ #: contact_form.php:94
40
+ msgid "Download"
41
+ msgstr "ダウンロード"
42
+
43
+ #: contact_form.php:94
44
+ #, php-format
45
+ msgid "Install %s"
46
+ msgstr "%s 導入"
47
+
48
+ #: contact_form.php:94
49
+ msgid "Install now from wordpress.org"
50
+ msgstr "wordpress.org から直ぐに導入"
51
+
52
+ #: contact_form.php:96
53
+ msgid ""
54
+ "If you have any questions, please contact us via plugin@bestwebsoft.com or "
55
+ "fill in our contact form on our site"
56
+ msgstr ""
57
+ "もそご質問がある場合は、plugin@bestwebsoft.comにご連絡頂くか、我々のサイトの"
58
+ "コンタクトフォームからお願いします。"
59
+
60
+ #: contact_form.php:108 contact_form.php:267
61
+ msgid "Contact Form Options"
62
+ msgstr "コンタクトフォーム オプション"
63
+
64
+ #: contact_form.php:108
65
+ msgid "Contact Form"
66
+ msgstr "Contact Form"
67
+
68
+ #: contact_form.php:137 contact_form.php:183 contact_form.php:221
69
+ #: contact_form.php:377
70
+ msgid "Name:"
71
+ msgstr "名前:"
72
+
73
+ #: contact_form.php:138 contact_form.php:184 contact_form.php:222
74
+ #: contact_form.php:378
75
+ msgid "E-Mail Address:"
76
+ msgstr "E-Mail:"
77
+
78
+ #: contact_form.php:139 contact_form.php:379
79
+ msgid "Phone:"
80
+ msgstr ""
81
+
82
+ #: contact_form.php:140 contact_form.php:185 contact_form.php:223
83
+ #: contact_form.php:380
84
+ msgid "Subject:"
85
+ msgstr "件名:"
86
+
87
+ #: contact_form.php:141 contact_form.php:186 contact_form.php:224
88
+ #: contact_form.php:381
89
+ msgid "Message:"
90
+ msgstr "メッセージ:"
91
+
92
+ #: contact_form.php:142 contact_form.php:187 contact_form.php:225
93
+ #: contact_form.php:382
94
+ msgid "Attachment:"
95
+ msgstr "添付:"
96
+
97
+ #: contact_form.php:144 contact_form.php:189
98
+ msgid "Thank you for contacting us."
99
+ msgstr "ご連絡ありがとうございます"
100
+
101
+ #: contact_form.php:235
102
+ msgid ""
103
+ "If the option 'Redirect to page' is selected then url field should be "
104
+ "fillied in the following format"
105
+ msgstr ""
106
+
107
+ #: contact_form.php:242 contact_form.php:247 contact_form.php:256
108
+ msgid "Options saved."
109
+ msgstr "オプション保存."
110
+
111
+ #: contact_form.php:250
112
+ msgid "Such user is not exist. Settings are not saved."
113
+ msgstr "このようなユーザは存在しません。設定は保存されません。"
114
+
115
+ #: contact_form.php:259
116
+ msgid "Please input correct email. Settings are not saved."
117
+ msgstr "正確なemailを入力して下さい。設定は保存されません。"
118
+
119
+ #: contact_form.php:272
120
+ #, fuzzy
121
+ msgid ""
122
+ "If you would like to add a Contact Form to your website, just copy and put "
123
+ "this shortcode onto your post or page or widget:"
124
+ msgstr ""
125
+ "コンタクトフォームをあなたのサイトに追加したい場合は、このショートカットを投"
126
+ "稿またはページにコピーして貼り付けるだけです。"
127
+
128
+ #: contact_form.php:273
129
+ msgid ""
130
+ "If information in the below fields are empty then the message will be send "
131
+ "to an address which was specified during registration."
132
+ msgstr ""
133
+ "以下の項目の情報が空欄の場合、登録の際に記述したアドレスにメッセージが送られ"
134
+ "ます。"
135
+
136
+ #: contact_form.php:277
137
+ msgid "Use email of wordpress user:"
138
+ msgstr "wordpressユーザのemailを利用r:"
139
+
140
+ #: contact_form.php:283
141
+ msgid "Select user name"
142
+ msgstr "ユーザ名の選択"
143
+
144
+ #: contact_form.php:288
145
+ #, fuzzy
146
+ msgid "Set a name of user who will get messages from a contact form."
147
+ msgstr "コンタクトフォームからメッセージを受け取るユーザ名を設定。"
148
+
149
+ #: contact_form.php:292
150
+ msgid "Use this email:"
151
+ msgstr "このemailを利用:"
152
+
153
+ #: contact_form.php:298
154
+ msgid "Set an email address which will be used for messages receiving."
155
+ msgstr "メッセージ受信用のemailを設定。"
156
+
157
+ #: contact_form.php:302
158
+ msgid "Additional options"
159
+ msgstr "追加オプション"
160
+
161
+ #: contact_form.php:305
162
+ msgid "Display Attachment block"
163
+ msgstr "添付ブロックを表示"
164
+
165
+ #: contact_form.php:310
166
+ msgid "Users can attach files of the following types"
167
+ msgstr "ユーザは、以下のタイプのファイルを添付できる"
168
+
169
+ #: contact_form.php:314
170
+ #, fuzzy
171
+ msgid "Display Attachment explanations"
172
+ msgstr "添付ブロックを表示"
173
+
174
+ #: contact_form.php:319
175
+ #, fuzzy
176
+ msgid "Display explanations after Attachment block"
177
+ msgstr "添付ブロックを表示"
178
+
179
+ #: contact_form.php:323
180
+ msgid "Display Send me a copy block"
181
+ msgstr "コピーブロックを自分に送るを表示"
182
+
183
+ #: contact_form.php:329
184
+ msgid "What use?"
185
+ msgstr ""
186
+
187
+ #: contact_form.php:334
188
+ #, fuzzy
189
+ msgid "Wp-mail"
190
+ msgstr "E-Mail"
191
+
192
+ #: contact_form.php:335
193
+ msgid "To send mail you can use the wordpress wp_mail function"
194
+ msgstr ""
195
+
196
+ #: contact_form.php:343
197
+ msgid "Mail"
198
+ msgstr ""
199
+
200
+ #: contact_form.php:344
201
+ msgid "To send mail you can use the php mail function"
202
+ msgstr ""
203
+
204
+ #: contact_form.php:348
205
+ #, fuzzy
206
+ msgid "Change FROM fields of the contact form"
207
+ msgstr "コンタクトフォームのフィールドのラベルを変更"
208
+
209
+ #: contact_form.php:354
210
+ msgid "Display phone field"
211
+ msgstr ""
212
+
213
+ #: contact_form.php:360
214
+ msgid "Display additional info in email"
215
+ msgstr ""
216
+
217
+ #: contact_form.php:365 contact_form.php:702
218
+ msgid "Sent from (ip address)"
219
+ msgstr "(IP-Adresse)から送られた"
220
+
221
+ #: contact_form.php:366 contact_form.php:707
222
+ msgid "Date/Time"
223
+ msgstr "日時"
224
+
225
+ #: contact_form.php:367 contact_form.php:712
226
+ msgid "Coming from (referer)"
227
+ msgstr "(referer)から送られている"
228
+
229
+ #: contact_form.php:368 contact_form.php:717
230
+ msgid "Using (user agent)"
231
+ msgstr "(user agent)使用"
232
+
233
+ #: contact_form.php:372
234
+ msgid "Change label for fields of the contact form"
235
+ msgstr "コンタクトフォームのフィールドのラベルを変更"
236
+
237
+ #: contact_form.php:386
238
+ msgid "Action after the send mail"
239
+ msgstr ""
240
+
241
+ #: contact_form.php:388
242
+ #, fuzzy
243
+ msgid "Display text"
244
+ msgstr "添付ブロックを表示"
245
+
246
+ #: contact_form.php:389
247
+ msgid "Text"
248
+ msgstr ""
249
+
250
+ #: contact_form.php:390
251
+ msgid "Redirect to page"
252
+ msgstr ""
253
+
254
+ #: contact_form.php:391
255
+ msgid "Url"
256
+ msgstr ""
257
+
258
+ #: contact_form.php:396
259
+ msgid "Save Changes"
260
+ msgstr "変更を保存"
261
+
262
+ #: contact_form.php:433
263
+ msgid "Sorry, your e-mail could not be delivered."
264
+ msgstr "申し訳ございませんが、貴方のemailは配信できませんでした。"
265
+
266
+ #: contact_form.php:503
267
+ msgid "You can attach files of the following types"
268
+ msgstr "貴方は、以下のタイプのファイルを添付できます"
269
+
270
+ #: contact_form.php:511
271
+ msgid "Send me a copy"
272
+ msgstr "コピーを自分に送る"
273
+
274
+ #: contact_form.php:521
275
+ msgid "Submit"
276
+ msgstr "送信"
277
+
278
+ #: contact_form.php:560
279
+ msgid "Your name is required."
280
+ msgstr "名前は必須です。"
281
+
282
+ #: contact_form.php:561
283
+ msgid "A proper e-mail address is required."
284
+ msgstr "正確なemailが必須です。"
285
+
286
+ #: contact_form.php:562
287
+ msgid "Subject text is required."
288
+ msgstr "件名は必須です。"
289
+
290
+ #: contact_form.php:563
291
+ msgid "Message text is required."
292
+ msgstr "メッセージ本文は必須です。"
293
+
294
+ #: contact_form.php:564
295
+ msgid "Please make corrections below and try again."
296
+ msgstr "以下を修正し、再度試して下さい。"
297
+
298
+ #: contact_form.php:596
299
+ msgid "Attachment is broken."
300
+ msgstr "添付が壊れています。"
301
+
302
+ #: contact_form.php:609
303
+ msgid "Please complete the CAPTCHA."
304
+ msgstr "CAPTCHAを入力して下さい。"
305
+
306
+ #: contact_form.php:725
307
+ msgid "Contact from"
308
+ msgstr "コンタクトフォーム"
309
+
310
+ #: contact_form.php:730
311
+ msgid "Name"
312
+ msgstr "名前"
313
+
314
+ #: contact_form.php:733
315
+ msgid "Email"
316
+ msgstr "E-Mail"
317
+
318
+ #: contact_form.php:738
319
+ msgid "Phone"
320
+ msgstr ""
321
+
322
+ #: contact_form.php:741
323
+ msgid "Subject"
324
+ msgstr "件名"
325
+
326
+ #: contact_form.php:744
327
+ msgid "Message"
328
+ msgstr "メッセージ"
329
+
330
+ #: contact_form.php:747
331
+ msgid "Site"
332
+ msgstr "サイト"
333
+
334
+ #: contact_form.php:792
335
+ msgid "If you can see this MIME than your client doesn't accept MIME types!"
336
+ msgstr "このMIMEを見ている場合は、貴方のクライアントはMIMEタイプを読めません。"
337
+
338
+ #: contact_form.php:846
339
+ msgid "FAQ"
340
+ msgstr "FAQ"
341
+
342
+ #: contact_form.php:847
343
+ msgid "Support"
344
+ msgstr "サポート"
345
+
346
+ #~ msgid "E-Mail Addresse:"
347
+ #~ msgstr "Indirizzo e-mail:"
348
+
349
+ #~ msgid "Install Now"
350
+ #~ msgstr "Installa Ora"
351
+
352
+ #~ msgid "BWS Plugins"
353
+ #~ msgstr "BWS Plugins"
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-07-10 10:49+0300\n"
7
- "PO-Revision-Date: 2012-07-10 10:49+0300\n"
8
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
9
  "Language-Team: Lithuanian <kde-i18n-lt@kde.org>\n"
10
  "Language: lt\n"
@@ -13,26 +13,21 @@ msgstr ""
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "X-Poedit-KeywordsList: __;_e\n"
15
  "X-Poedit-Basepath: ..\n"
16
- "X-Poedit-Language: Lithuanian\n"
17
- "X-Poedit-Country: Lithuania\n"
18
  "X-Poedit-SourceCharset: utf-8\n"
19
- "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
20
- "X-Generator: Lokalize 1.4\n"
 
21
  "X-Poedit-SearchPath-0: .\n"
22
 
23
  #: contact_form.php:76
24
  msgid "Activated plugins"
25
  msgstr "Aktyvuoti įskiepiai"
26
 
27
- #: contact_form.php:78
28
- #: contact_form.php:86
29
- #: contact_form.php:94
30
  msgid "Read more"
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
 
@@ -58,11 +53,14 @@ msgid "Install now from wordpress.org"
58
  msgstr "Įdiegti dabar iš wordpress.org"
59
 
60
  #: contact_form.php:96
61
- msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
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
 
@@ -70,277 +68,283 @@ msgstr "Kontaktų formos parinktys"
70
  msgid "Contact Form"
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
 
340
  #~ msgid "E-Mail Addresse:"
341
  #~ msgstr "E-mail адрес:"
 
342
  #~ msgid "Install Now"
343
  #~ msgstr "Инсталирайте сега"
 
344
  #~ msgid "BWS Plugins"
345
  #~ msgstr "Разширение BWS"
346
-
3
  msgstr ""
4
  "Project-Id-Version: contact_form\n"
5
  "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2012-10-17 17:15+0200\n"
7
+ "PO-Revision-Date: 2012-10-17 17:15+0200\n"
8
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
9
  "Language-Team: Lithuanian <kde-i18n-lt@kde.org>\n"
10
  "Language: lt\n"
13
  "Content-Transfer-Encoding: 8bit\n"
14
  "X-Poedit-KeywordsList: __;_e\n"
15
  "X-Poedit-Basepath: ..\n"
 
 
16
  "X-Poedit-SourceCharset: utf-8\n"
17
+ "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
18
+ "%100<10 || n%100>=20) ? 1 : 2);\n"
19
+ "X-Generator: Poedit 1.5.4\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  #: contact_form.php:76
23
  msgid "Activated plugins"
24
  msgstr "Aktyvuoti įskiepiai"
25
 
26
+ #: contact_form.php:78 contact_form.php:86 contact_form.php:94
 
 
27
  msgid "Read more"
28
  msgstr "Skaityti daugiau"
29
 
30
+ #: contact_form.php:78 contact_form.php:836 contact_form.php:845
 
 
31
  msgid "Settings"
32
  msgstr "Nustatymai"
33
 
53
  msgstr "Įdiegti dabar iš wordpress.org"
54
 
55
  #: contact_form.php:96
56
+ msgid ""
57
+ "If you have any questions, please contact us via plugin@bestwebsoft.com or "
58
+ "fill in our contact form on our site"
59
+ msgstr ""
60
+ "Jei turite klausimų, prašome susisiekti su mumis per plugin@bestwebsoft.com "
61
+ "arba užpildykite mūsų kontaktų formą mūsų svetainėje"
62
 
63
+ #: contact_form.php:108 contact_form.php:267
 
64
  msgid "Contact Form Options"
65
  msgstr "Kontaktų formos parinktys"
66
 
68
  msgid "Contact Form"
69
  msgstr "Kontaktų forma"
70
 
71
+ #: contact_form.php:137 contact_form.php:183 contact_form.php:221
72
+ #: contact_form.php:377
 
 
73
  msgid "Name:"
74
  msgstr "Vardas:"
75
 
76
+ #: contact_form.php:138 contact_form.php:184 contact_form.php:222
77
+ #: contact_form.php:378
 
 
78
  msgid "E-Mail Address:"
79
  msgstr "El. pašto adresas:"
80
 
81
+ #: contact_form.php:139 contact_form.php:379
82
+ msgid "Phone:"
83
+ msgstr ""
84
+
85
+ #: contact_form.php:140 contact_form.php:185 contact_form.php:223
86
+ #: contact_form.php:380
87
  msgid "Subject:"
88
  msgstr "Tema:"
89
 
90
+ #: contact_form.php:141 contact_form.php:186 contact_form.php:224
91
+ #: contact_form.php:381
 
 
92
  msgid "Message:"
93
  msgstr "Pranešimas:"
94
 
95
+ #: contact_form.php:142 contact_form.php:187 contact_form.php:225
96
+ #: contact_form.php:382
 
 
97
  msgid "Attachment:"
98
  msgstr "Priedas:"
99
 
100
+ #: contact_form.php:144 contact_form.php:189
 
101
  msgid "Thank you for contacting us."
102
  msgstr "Dėkojame, kad su mumis susisiekėte."
103
 
104
+ #: contact_form.php:235
105
+ msgid ""
106
+ "If the option 'Redirect to page' is selected then url field should be "
107
+ "fillied in the following format"
108
  msgstr ""
109
 
110
+ #: contact_form.php:242 contact_form.php:247 contact_form.php:256
 
 
111
  msgid "Options saved."
112
  msgstr "Parinktys išsaugotos."
113
 
114
+ #: contact_form.php:250
115
  msgid "Such user is not exist. Settings are not saved."
116
  msgstr "Toks vartotojas neegzistuoja. Nustatymai neišsaugoti."
117
 
118
+ #: contact_form.php:259
119
  msgid "Please input correct email. Settings are not saved."
120
  msgstr "Prašome įrašyti teisingą el. pašto adresą. Nustatymai neįrašyti."
121
 
122
+ #: contact_form.php:272
123
+ msgid ""
124
+ "If you would like to add a Contact Form to your website, just copy and put "
125
+ "this shortcode onto your post or page or widget:"
126
+ msgstr ""
127
+ "Jei norite pridėti kontaktų formą prie savo svetainės, tiesiog nukopijuokite "
128
+ "šį trumpą kodą į savo puslapį ar elementą:"
129
 
130
+ #: contact_form.php:273
131
+ msgid ""
132
+ "If information in the below fields are empty then the message will be send "
133
+ "to an address which was specified during registration."
134
+ msgstr ""
135
+ "Jei informacijos žemiau esančiuose laukuose nėra, pranešimas bus išsiųstas "
136
+ "adresu, kuris buvo nurodytas prisiregistravimo metu."
137
 
138
+ #: contact_form.php:277
139
  msgid "Use email of wordpress user:"
140
  msgstr "Naudoti wordpress vartotojo el. pašto adresą:"
141
 
142
+ #: contact_form.php:283
143
  msgid "Select user name"
144
  msgstr "Pasirinkite vartotojo vardą"
145
 
146
+ #: contact_form.php:288
147
  msgid "Set a name of user who will get messages from a contact form."
148
  msgstr "Nurodykite vardą vartotojo, kuris gaus pranešimus iš Kontaktų formos."
149
 
150
+ #: contact_form.php:292
151
  msgid "Use this email:"
152
  msgstr "Naudoti šį el. pašto adresą:"
153
 
154
+ #: contact_form.php:298
155
  msgid "Set an email address which will be used for messages receiving."
156
  msgstr "Nustatykite el. pašto adresą, kuris bus naudojamas pranešimams gauti."
157
 
158
+ #: contact_form.php:302
159
  msgid "Additional options"
160
  msgstr "Papildomos parinktys"
161
 
162
+ #: contact_form.php:305
163
  msgid "Display Attachment block"
164
  msgstr "Rodyti priedų įrašą"
165
 
166
+ #: contact_form.php:310
167
  msgid "Users can attach files of the following types"
168
  msgstr "Vartotojai gali prikabinti šių tipų failus"
169
 
170
+ #: contact_form.php:314
171
  msgid "Display Attachment explanations"
172
  msgstr ""
173
 
174
+ #: contact_form.php:319
175
  msgid "Display explanations after Attachment block"
176
  msgstr ""
177
 
178
+ #: contact_form.php:323
179
  msgid "Display Send me a copy block"
180
  msgstr "Rodyti „Siųsti kopiją man“ įrašą"
181
 
182
+ #: contact_form.php:329
183
  msgid "What use?"
184
  msgstr ""
185
 
186
+ #: contact_form.php:334
187
  msgid "Wp-mail"
188
  msgstr "Wp-mail"
189
 
190
+ #: contact_form.php:335
191
  msgid "To send mail you can use the wordpress wp_mail function"
192
  msgstr ""
193
 
194
+ #: contact_form.php:343
195
  msgid "Mail"
196
  msgstr "Mail"
197
 
198
+ #: contact_form.php:344
199
  msgid "To send mail you can use the php mail function"
200
  msgstr ""
201
 
202
+ #: contact_form.php:348
203
  msgid "Change FROM fields of the contact form"
204
  msgstr "Pakeiskite IŠ srityse kontaktų formos"
205
 
206
+ #: contact_form.php:354
207
+ msgid "Display phone field"
208
+ msgstr ""
209
+
210
+ #: contact_form.php:360
211
  msgid "Display additional info in email"
212
  msgstr ""
213
 
214
+ #: contact_form.php:365 contact_form.php:702
 
215
  msgid "Sent from (ip address)"
216
  msgstr "Siųsta iš (ip adresas)"
217
 
218
+ #: contact_form.php:366 contact_form.php:707
 
219
  msgid "Date/Time"
220
  msgstr "Data/laikas"
221
 
222
+ #: contact_form.php:367 contact_form.php:712
 
223
  msgid "Coming from (referer)"
224
  msgstr "Ateita iš (nukreipiklis)"
225
 
226
+ #: contact_form.php:368 contact_form.php:717
 
227
  msgid "Using (user agent)"
228
  msgstr "Naudoja (naršyklės įrašas)"
229
 
230
+ #: contact_form.php:372
231
  msgid "Change label for fields of the contact form"
232
  msgstr "Pakeiskite antraštes kontaktų formos etiketėms"
233
 
234
+ #: contact_form.php:386
235
  msgid "Action after the send mail"
236
  msgstr ""
237
 
238
+ #: contact_form.php:388
239
  #, fuzzy
240
  msgid "Display text"
241
  msgstr "Rodyti priedų įrašą"
242
 
243
+ #: contact_form.php:389
244
  msgid "Text"
245
  msgstr ""
246
 
247
+ #: contact_form.php:390
248
  msgid "Redirect to page"
249
  msgstr ""
250
 
251
+ #: contact_form.php:391
252
  msgid "Url"
253
  msgstr ""
254
 
255
+ #: contact_form.php:396
256
  msgid "Save Changes"
257
  msgstr "Įrašyti pakeitimus"
258
 
259
+ #: contact_form.php:433
260
  msgid "Sorry, your e-mail could not be delivered."
261
  msgstr "Deja, jūsų el. laiško nepavyko pristatyti."
262
 
263
+ #: contact_form.php:503
264
  msgid "You can attach files of the following types"
265
  msgstr "Galite prikabinti šių tipų failus"
266
 
267
+ #: contact_form.php:511
268
  msgid "Send me a copy"
269
  msgstr "Siųsti kopiją man"
270
 
271
+ #: contact_form.php:521
272
  msgid "Submit"
273
  msgstr "Siųsti"
274
 
275
+ #: contact_form.php:560
276
  msgid "Your name is required."
277
  msgstr "Būtina įrašyti vardą."
278
 
279
+ #: contact_form.php:561
280
  msgid "A proper e-mail address is required."
281
  msgstr "Būtina įrašyti teisingą el. pašto adresą."
282
 
283
+ #: contact_form.php:562
284
  msgid "Subject text is required."
285
  msgstr "Būtina įrašyti temą."
286
 
287
+ #: contact_form.php:563
288
  msgid "Message text is required."
289
  msgstr "Būtina įrašyti laiško turinį."
290
 
291
+ #: contact_form.php:564
292
  msgid "Please make corrections below and try again."
293
  msgstr "Prašome pataisyti laišką ir bandyti iš naujo."
294
 
295
+ #: contact_form.php:596
296
  msgid "Attachment is broken."
297
  msgstr "Pridedamas failas sugadintas."
298
 
299
+ #: contact_form.php:609
300
  msgid "Please complete the CAPTCHA."
301
  msgstr "Prašome užpildyti CAPTCHA."
302
 
303
+ #: contact_form.php:725
304
  msgid "Contact from"
305
  msgstr "Kontaktų forma"
306
 
307
+ #: contact_form.php:730
308
  msgid "Name"
309
  msgstr "Vardas"
310
 
311
+ #: contact_form.php:733
312
  msgid "Email"
313
  msgstr "El. paštas"
314
 
315
+ #: contact_form.php:738
316
+ msgid "Phone"
317
+ msgstr ""
318
+
319
+ #: contact_form.php:741
320
  msgid "Subject"
321
  msgstr "Tema"
322
 
323
+ #: contact_form.php:744
324
  msgid "Message"
325
  msgstr "Tekstas"
326
 
327
+ #: contact_form.php:747
328
  msgid "Site"
329
  msgstr "Svetainė"
330
 
331
+ #: contact_form.php:792
332
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
333
  msgstr "Jei galite matyti šį MIME tipą, jūsų klientas nepriima MIME tipų!"
334
 
335
+ #: contact_form.php:846
336
  msgid "FAQ"
337
  msgstr "DUK"
338
 
339
+ #: contact_form.php:847
340
  msgid "Support"
341
  msgstr "Palaikymas"
342
 
343
  #~ msgid "E-Mail Addresse:"
344
  #~ msgstr "E-mail адрес:"
345
+
346
  #~ msgid "Install Now"
347
  #~ msgstr "Инсталирайте сега"
348
+
349
  #~ msgid "BWS Plugins"
350
  #~ msgstr "Разширение BWS"
 
languages/contact_form-nb_NO.mo CHANGED
Binary file
languages/contact_form-nb_NO.po CHANGED
@@ -2,34 +2,29 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-07-10 10:49+0300\n"
6
- "PO-Revision-Date: 2012-07-10 10:49+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
- "Language: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-Language: German\n"
16
- "X-Poedit-Country: GERMANY\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 "Aktiverte innstikk"
23
 
24
- #: contact_form.php:78
25
- #: contact_form.php:86
26
- #: contact_form.php:94
27
  msgid "Read more"
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
 
@@ -55,11 +50,14 @@ msgid "Install now from wordpress.org"
55
  msgstr "Innstallér nå fra 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 "Hvis du har spørsmål kan du kontakte oss 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
 
@@ -67,277 +65,285 @@ msgstr "Innstillinger for kontaktskjema"
67
  msgid "Contact Form"
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 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
 
337
  #~ msgid "E-Mail Addresse:"
338
  #~ msgstr "Indirizzo e-mail:"
 
339
  #~ msgid "Install Now"
340
  #~ msgstr "Installa Ora"
 
341
  #~ msgid "BWS Plugins"
342
  #~ msgstr "BWS Plugins"
343
-
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-17 17:15+0200\n"
6
+ "PO-Revision-Date: 2012-10-17 17:15+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
+ "Language: de_DE\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
 
 
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: contact_form.php:76
20
  msgid "Activated plugins"
21
  msgstr "Aktiverte innstikk"
22
 
23
+ #: contact_form.php:78 contact_form.php:86 contact_form.php:94
 
 
24
  msgid "Read more"
25
  msgstr "Les mer"
26
 
27
+ #: contact_form.php:78 contact_form.php:836 contact_form.php:845
 
 
28
  msgid "Settings"
29
  msgstr "Innstilllinger"
30
 
50
  msgstr "Innstallér nå fra wordpress.org"
51
 
52
  #: contact_form.php:96
53
+ msgid ""
54
+ "If you have any questions, please contact us via plugin@bestwebsoft.com or "
55
+ "fill in our contact form on our site"
56
+ msgstr ""
57
+ "Hvis du har spørsmål kan du kontakte oss på plugin@bestwebsoft.com eller "
58
+ "bruke kontaktskjemaet på hjemmesiden vår"
59
 
60
+ #: contact_form.php:108 contact_form.php:267
 
61
  msgid "Contact Form Options"
62
  msgstr "Innstillinger for kontaktskjema"
63
 
65
  msgid "Contact Form"
66
  msgstr "Kontaktskjema"
67
 
68
+ #: contact_form.php:137 contact_form.php:183 contact_form.php:221
69
+ #: contact_form.php:377
 
 
70
  msgid "Name:"
71
  msgstr "Navn:"
72
 
73
+ #: contact_form.php:138 contact_form.php:184 contact_form.php:222
74
+ #: contact_form.php:378
 
 
75
  msgid "E-Mail Address:"
76
  msgstr "Epostadresse:"
77
 
78
+ #: contact_form.php:139 contact_form.php:379
79
+ msgid "Phone:"
80
+ msgstr ""
81
+
82
+ #: contact_form.php:140 contact_form.php:185 contact_form.php:223
83
+ #: contact_form.php:380
84
  msgid "Subject:"
85
  msgstr "Tema:"
86
 
87
+ #: contact_form.php:141 contact_form.php:186 contact_form.php:224
88
+ #: contact_form.php:381
 
 
89
  msgid "Message:"
90
  msgstr "Melding:"
91
 
92
+ #: contact_form.php:142 contact_form.php:187 contact_form.php:225
93
+ #: contact_form.php:382
 
 
94
  msgid "Attachment:"
95
  msgstr "Vedlegg:"
96
 
97
+ #: contact_form.php:144 contact_form.php:189
 
98
  msgid "Thank you for contacting us."
99
  msgstr "Takk for at du tok kontakt med oss"
100
 
101
+ #: contact_form.php:235
102
+ msgid ""
103
+ "If the option 'Redirect to page' is selected then url field should be "
104
+ "fillied in the following format"
105
  msgstr ""
106
 
107
+ #: contact_form.php:242 contact_form.php:247 contact_form.php:256
 
 
108
  msgid "Options saved."
109
  msgstr "Innstillinger lagret."
110
 
111
+ #: contact_form.php:250
112
  msgid "Such user is not exist. Settings are not saved."
113
  msgstr "Denne brukeren finnes ikke. Innstillingene er ikke lagret."
114
 
115
+ #: contact_form.php:259
116
  msgid "Please input correct email. Settings are not saved."
117
+ msgstr ""
118
+ "Vennligst benytt en korrekt epostadresse. Innstillingene er ikke lagret."
119
 
120
+ #: contact_form.php:272
121
+ msgid ""
122
+ "If you would like to add a Contact Form to your website, just copy and put "
123
+ "this shortcode onto your post or page or widget:"
124
+ msgstr ""
125
+ "Dersom du ønsket å legge til et kontaktskjema på wedsiden din, kopier og put "
126
+ "denne koden i kommentaren din eller på siden din: "
127
 
128
+ #: contact_form.php:273
129
+ msgid ""
130
+ "If information in the below fields are empty then the message will be send "
131
+ "to an address which was specified during registration."
132
+ msgstr ""
133
+ "Dersom feltene under er tomme, vil meldingen bli sendt til en adresse som "
134
+ "var spesifisert ved registrering."
135
 
136
+ #: contact_form.php:277
137
  msgid "Use email of wordpress user:"
138
  msgstr "Benytt eposten til wordpressbruker:"
139
 
140
+ #: contact_form.php:283
141
  msgid "Select user name"
142
  msgstr "Velg brukernavn"
143
 
144
+ #: contact_form.php:288
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:292
149
  msgid "Use this email:"
150
  msgstr "Benytt denne epostadressen:"
151
 
152
+ #: contact_form.php:298
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:302
157
  msgid "Additional options"
158
  msgstr "Flere valg"
159
 
160
+ #: contact_form.php:305
161
  msgid "Display Attachment block"
162
  msgstr "Vis vedlegg"
163
 
164
+ #: contact_form.php:310
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:314
169
  msgid "Display Attachment explanations"
170
  msgstr ""
171
 
172
+ #: contact_form.php:319
173
  msgid "Display explanations after Attachment block"
174
  msgstr ""
175
 
176
+ #: contact_form.php:323
177
  msgid "Display Send me a copy block"
178
  msgstr "Vis send meg en kopi"
179
 
180
+ #: contact_form.php:329
181
  msgid "What use?"
182
  msgstr ""
183
 
184
+ #: contact_form.php:334
185
  msgid "Wp-mail"
186
  msgstr "Wp-mail"
187
 
188
+ #: contact_form.php:335
189
  msgid "To send mail you can use the wordpress wp_mail function"
190
  msgstr ""
191
 
192
+ #: contact_form.php:343
193
  msgid "Mail"
194
  msgstr "Mail"
195
 
196
+ #: contact_form.php:344
197
  msgid "To send mail you can use the php mail function"
198
  msgstr ""
199
 
200
+ #: contact_form.php:348
201
  msgid "Change FROM fields of the contact form"
202
  msgstr "Endring fra feltene i kontaktskjemaet"
203
 
204
+ #: contact_form.php:354
205
+ msgid "Display phone field"
206
+ msgstr ""
207
+
208
+ #: contact_form.php:360
209
  msgid "Display additional info in email"
210
  msgstr ""
211
 
212
+ #: contact_form.php:365 contact_form.php:702
 
213
  msgid "Sent from (ip address)"
214
  msgstr "Sendt fra (IP-adresse)"
215
 
216
+ #: contact_form.php:366 contact_form.php:707
 
217
  msgid "Date/Time"
218
  msgstr "Dato/tid"
219
 
220
+ #: contact_form.php:367 contact_form.php:712
 
221
  msgid "Coming from (referer)"
222
  msgstr "Sendt fra (referent)"
223
 
224
+ #: contact_form.php:368 contact_form.php:717
 
225
  msgid "Using (user agent)"
226
  msgstr "med (user agent)"
227
 
228
+ #: contact_form.php:372
229
  msgid "Change label for fields of the contact form"
230
  msgstr "Forandre etikett for felter i kontaktskjemaet"
231
 
232
+ #: contact_form.php:386
233
  msgid "Action after the send mail"
234
  msgstr ""
235
 
236
+ #: contact_form.php:388
237
  #, fuzzy
238
  msgid "Display text"
239
  msgstr "Vis vedlegg"
240
 
241
+ #: contact_form.php:389
242
  msgid "Text"
243
  msgstr ""
244
 
245
+ #: contact_form.php:390
246
  msgid "Redirect to page"
247
  msgstr ""
248
 
249
+ #: contact_form.php:391
250
  msgid "Url"
251
  msgstr ""
252
 
253
+ #: contact_form.php:396
254
  msgid "Save Changes"
255
  msgstr "Lagre endringer"
256
 
257
+ #: contact_form.php:433
258
  msgid "Sorry, your e-mail could not be delivered."
259
  msgstr "Beklager, eposten din kunne ikke leveres."
260
 
261
+ #: contact_form.php:503
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:511
266
  msgid "Send me a copy"
267
  msgstr "Send meg en kopi"
268
 
269
+ #: contact_form.php:521
270
  msgid "Submit"
271
  msgstr "Send"
272
 
273
+ #: contact_form.php:560
274
  msgid "Your name is required."
275
  msgstr "Navnet ditt er påkrevet."
276
 
277
+ #: contact_form.php:561
278
  msgid "A proper e-mail address is required."
279
  msgstr "En korrekt epostadresse er påkrevet."
280
 
281
+ #: contact_form.php:562
282
  msgid "Subject text is required."
283
  msgstr "Tekst i temafeltet er påkrevet."
284
 
285
+ #: contact_form.php:563
286
  msgid "Message text is required."
287
  msgstr "Tekst i meldingsfeltet er påkrevet"
288
 
289
+ #: contact_form.php:564
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:596
294
  msgid "Attachment is broken."
295
  msgstr "Vedlegget fungerer ikke."
296
 
297
+ #: contact_form.php:609
298
  msgid "Please complete the CAPTCHA."
299
  msgstr "Vennligst fyll ut CAPTCHA"
300
 
301
+ #: contact_form.php:725
302
  msgid "Contact from"
303
  msgstr "Kontakt fra"
304
 
305
+ #: contact_form.php:730
306
  msgid "Name"
307
  msgstr "Navn"
308
 
309
+ #: contact_form.php:733
310
  msgid "Email"
311
  msgstr "Epost"
312
 
313
+ #: contact_form.php:738
314
+ msgid "Phone"
315
+ msgstr ""
316
+
317
+ #: contact_form.php:741
318
  msgid "Subject"
319
  msgstr "Tema"
320
 
321
+ #: contact_form.php:744
322
  msgid "Message"
323
  msgstr "Melding"
324
 
325
+ #: contact_form.php:747
326
  msgid "Site"
327
  msgstr "Site"
328
 
329
+ #: contact_form.php:792
330
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
331
+ msgstr ""
332
+ "Dersom du kan se denne MIME, så aksepterer ikke klienten din MIME-typer!"
333
 
334
+ #: contact_form.php:846
335
  msgid "FAQ"
336
  msgstr "Vanlige spørsmål"
337
 
338
+ #: contact_form.php:847
339
  msgid "Support"
340
  msgstr "Support"
341
 
342
  #~ msgid "E-Mail Addresse:"
343
  #~ msgstr "Indirizzo e-mail:"
344
+
345
  #~ msgid "Install Now"
346
  #~ msgstr "Installa Ora"
347
+
348
  #~ msgid "BWS Plugins"
349
  #~ msgstr "BWS Plugins"
 
languages/contact_form-nl_NL.mo CHANGED
Binary file
languages/contact_form-nl_NL.po CHANGED
@@ -2,34 +2,29 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-07-10 10:49+0300\n"
6
- "PO-Revision-Date: 2012-07-10 10:49+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
- "Language: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-Language: Dutch\n"
16
- "X-Poedit-Country: NETHERLANDS\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 "Activated plugins"
23
 
24
- #: contact_form.php:78
25
- #: contact_form.php:86
26
- #: contact_form.php:94
27
  msgid "Read more"
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
 
@@ -55,11 +50,14 @@ msgid "Install now from wordpress.org"
55
  msgstr "Installeer nu via 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 "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
 
@@ -67,277 +65,285 @@ msgstr "Contact Form Opties"
67
  msgid "Contact Form"
68
  msgstr "Contact Form"
69
 
70
- #: contact_form.php:136
71
- #: contact_form.php:180
72
- #: contact_form.php:216
73
- #: contact_form.php:366
74
  msgid "Name:"
75
  msgstr "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
 
337
  #~ msgid "E-Mail Addresse:"
338
  #~ msgstr "Indirizzo e-mail:"
 
339
  #~ msgid "Install Now"
340
  #~ msgstr "Installa Ora"
 
341
  #~ msgid "BWS Plugins"
342
  #~ msgstr "BWS Plugins"
343
-
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-17 17:15+0200\n"
6
+ "PO-Revision-Date: 2012-10-17 17:15+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
+ "Language: nl_NL\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
 
 
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: contact_form.php:76
20
  msgid "Activated plugins"
21
  msgstr "Activated plugins"
22
 
23
+ #: contact_form.php:78 contact_form.php:86 contact_form.php:94
 
 
24
  msgid "Read more"
25
  msgstr "Lees verder"
26
 
27
+ #: contact_form.php:78 contact_form.php:836 contact_form.php:845
 
 
28
  msgid "Settings"
29
  msgstr "Instellingen"
30
 
50
  msgstr "Installeer nu via wordpress.org"
51
 
52
  #: contact_form.php:96
53
+ msgid ""
54
+ "If you have any questions, please contact us via plugin@bestwebsoft.com or "
55
+ "fill in our contact form on our site"
56
+ msgstr ""
57
+ "Mocht je nog vragen hebben stuur dan een email naar plugin@bestwebsoft.com "
58
+ "of vul het contactformulier op onze website in."
59
 
60
+ #: contact_form.php:108 contact_form.php:267
 
61
  msgid "Contact Form Options"
62
  msgstr "Contact Form Opties"
63
 
65
  msgid "Contact Form"
66
  msgstr "Contact Form"
67
 
68
+ #: contact_form.php:137 contact_form.php:183 contact_form.php:221
69
+ #: contact_form.php:377
 
 
70
  msgid "Name:"
71
  msgstr "Naam:"
72
 
73
+ #: contact_form.php:138 contact_form.php:184 contact_form.php:222
74
+ #: contact_form.php:378
 
 
75
  msgid "E-Mail Address:"
76
  msgstr "Email adres:"
77
 
78
+ #: contact_form.php:139 contact_form.php:379
79
+ msgid "Phone:"
80
+ msgstr ""
81
+
82
+ #: contact_form.php:140 contact_form.php:185 contact_form.php:223
83
+ #: contact_form.php:380
84
  msgid "Subject:"
85
  msgstr "Onderwerp:"
86
 
87
+ #: contact_form.php:141 contact_form.php:186 contact_form.php:224
88
+ #: contact_form.php:381
 
 
89
  msgid "Message:"
90
  msgstr "Bericht:"
91
 
92
+ #: contact_form.php:142 contact_form.php:187 contact_form.php:225
93
+ #: contact_form.php:382
 
 
94
  msgid "Attachment:"
95
  msgstr "Bijlage:"
96
 
97
+ #: contact_form.php:144 contact_form.php:189
 
98
  msgid "Thank you for contacting us."
99
  msgstr "Bedankt voor uw bericht."
100
 
101
+ #: contact_form.php:235
102
+ msgid ""
103
+ "If the option 'Redirect to page' is selected then url field should be "
104
+ "fillied in the following format"
105
  msgstr ""
106
 
107
+ #: contact_form.php:242 contact_form.php:247 contact_form.php:256
 
 
108
  msgid "Options saved."
109
  msgstr "Instellingen opgeslagen."
110
 
111
+ #: contact_form.php:250
112
  msgid "Such user is not exist. Settings are not saved."
113
  msgstr "Deze gebruiker bestaat niet. Instellingen zijn niet opgeslagen."
114
 
115
+ #: contact_form.php:259
116
  msgid "Please input correct email. Settings are not saved."
117
  msgstr "Geef een geldig email adres op. Instellingen zijn niet opgeslagen."
118
 
119
+ #: contact_form.php:272
120
+ msgid ""
121
+ "If you would like to add a Contact Form to your website, just copy and put "
122
+ "this shortcode onto your post or page or widget:"
123
+ msgstr ""
124
+ "Als je een Contact Form aan je website wil toevoegen, kopieer dan deze code "
125
+ "in je bericht op op je pagina of widget:"
126
 
127
+ #: contact_form.php:273
128
+ msgid ""
129
+ "If information in the below fields are empty then the message will be send "
130
+ "to an address which was specified during registration."
131
+ msgstr ""
132
+ "Als het onderstaande veld leeg blijft, dan zal het bericht gestuurd worden "
133
+ "aan het adres dat is gespecificeerd tijdens de registratie."
134
 
135
+ #: contact_form.php:277
136
  msgid "Use email of wordpress user:"
137
  msgstr "Gebruik het email adres van de Wordpress gebruiker:"
138
 
139
+ #: contact_form.php:283
140
  msgid "Select user name"
141
  msgstr "Kies gebruikersnaam"
142
 
143
+ #: contact_form.php:288
144
  msgid "Set a name of user who will get messages from a contact form."
145
+ msgstr ""
146
+ "Voer de naam in van de gebruiker die berichten van dit contact formulier "
147
+ "moet ontvangen."
148
 
149
+ #: contact_form.php:292
150
  msgid "Use this email:"
151
  msgstr "Gebruik dit email adres:"
152
 
153
+ #: contact_form.php:298
154
  msgid "Set an email address which will be used for messages receiving."
155
  msgstr "Geef een email adres op waar de berichten naar verstuurd worden."
156
 
157
+ #: contact_form.php:302
158
  msgid "Additional options"
159
  msgstr "Extra opties"
160
 
161
+ #: contact_form.php:305
162
  msgid "Display Attachment block"
163
  msgstr "Bijlages toestaan"
164
 
165
+ #: contact_form.php:310
166
  msgid "Users can attach files of the following types"
167
  msgstr "Gebruikers kunnen de volgende bestandtypen toevoegen"
168
 
169
+ #: contact_form.php:314
170
  msgid "Display Attachment explanations"
171
  msgstr ""
172
 
173
+ #: contact_form.php:319
174
  msgid "Display explanations after Attachment block"
175
  msgstr ""
176
 
177
+ #: contact_form.php:323
178
  msgid "Display Send me a copy block"
179
  msgstr "Geef \"Kopie aan mij sturen\" weer"
180
 
181
+ #: contact_form.php:329
182
  msgid "What use?"
183
  msgstr ""
184
 
185
+ #: contact_form.php:334
186
  msgid "Wp-mail"
187
  msgstr "Wp-mail"
188
 
189
+ #: contact_form.php:335
190
  msgid "To send mail you can use the wordpress wp_mail function"
191
  msgstr ""
192
 
193
+ #: contact_form.php:343
194
  msgid "Mail"
195
  msgstr "Mail"
196
 
197
+ #: contact_form.php:344
198
  msgid "To send mail you can use the php mail function"
199
  msgstr ""
200
 
201
+ #: contact_form.php:348
202
  msgid "Change FROM fields of the contact form"
203
  msgstr "Veranderen van velden van het contactformulier"
204
 
205
+ #: contact_form.php:354
206
+ msgid "Display phone field"
207
+ msgstr ""
208
+
209
+ #: contact_form.php:360
210
  msgid "Display additional info in email"
211
  msgstr ""
212
 
213
+ #: contact_form.php:365 contact_form.php:702
 
214
  msgid "Sent from (ip address)"
215
  msgstr "Verstuurd van (IP-adres)"
216
 
217
+ #: contact_form.php:366 contact_form.php:707
 
218
  msgid "Date/Time"
219
  msgstr "Datum/Tijd"
220
 
221
+ #: contact_form.php:367 contact_form.php:712
 
222
  msgid "Coming from (referer)"
223
  msgstr "Verstuurd vanaf (referer)"
224
 
225
+ #: contact_form.php:368 contact_form.php:717
 
226
  msgid "Using (user agent)"
227
  msgstr "Met (user agent)"
228
 
229
+ #: contact_form.php:372
230
  msgid "Change label for fields of the contact form"
231
  msgstr "Verander de namen van de labels"
232
 
233
+ #: contact_form.php:386
234
  msgid "Action after the send mail"
235
  msgstr ""
236
 
237
+ #: contact_form.php:388
238
  #, fuzzy
239
  msgid "Display text"
240
  msgstr "Bijlages toestaan"
241
 
242
+ #: contact_form.php:389
243
  msgid "Text"
244
  msgstr ""
245
 
246
+ #: contact_form.php:390
247
  msgid "Redirect to page"
248
  msgstr ""
249
 
250
+ #: contact_form.php:391
251
  msgid "Url"
252
  msgstr ""
253
 
254
+ #: contact_form.php:396
255
  msgid "Save Changes"
256
  msgstr "Bewaar veranderingen"
257
 
258
+ #: contact_form.php:433
259
  msgid "Sorry, your e-mail could not be delivered."
260
  msgstr "Sorry, uw bericht kon niet worden verstuurd."
261
 
262
+ #: contact_form.php:503
263
  msgid "You can attach files of the following types"
264
  msgstr "Bestanden van het volgende formaten kunnen worden bijgesloten"
265
 
266
+ #: contact_form.php:511
267
  msgid "Send me a copy"
268
  msgstr "Kopie aan mij sturen"
269
 
270
+ #: contact_form.php:521
271
  msgid "Submit"
272
  msgstr "Versturen"
273
 
274
+ #: contact_form.php:560
275
  msgid "Your name is required."
276
  msgstr "U bent vergeten uw naam op te geven"
277
 
278
+ #: contact_form.php:561
279
  msgid "A proper e-mail address is required."
280
  msgstr "U bent vergeten uw emailadres op te geven"
281
 
282
+ #: contact_form.php:562
283
  msgid "Subject text is required."
284
  msgstr "U bent vergeten een onderwerp op te geven"
285
 
286
+ #: contact_form.php:563
287
  msgid "Message text is required."
288
  msgstr "U bent vergeten een bericht op te geven"
289
 
290
+ #: contact_form.php:564
291
  msgid "Please make corrections below and try again."
292
  msgstr "Vul alle vereiste informatie in en probeer het opnieuw."
293
 
294
+ #: contact_form.php:596
295
  msgid "Attachment is broken."
296
  msgstr "Bijlage is beschadigd."
297
 
298
+ #: contact_form.php:609
299
  msgid "Please complete the CAPTCHA."
300
  msgstr "Vul de CAPTCHA in."
301
 
302
+ #: contact_form.php:725
303
  msgid "Contact from"
304
  msgstr "Contact van"
305
 
306
+ #: contact_form.php:730
307
  msgid "Name"
308
  msgstr "Naam"
309
 
310
+ #: contact_form.php:733
311
  msgid "Email"
312
  msgstr "Email"
313
 
314
+ #: contact_form.php:738
315
+ msgid "Phone"
316
+ msgstr ""
317
+
318
+ #: contact_form.php:741
319
  msgid "Subject"
320
  msgstr "Onderwerp"
321
 
322
+ #: contact_form.php:744
323
  msgid "Message"
324
  msgstr "Bericht"
325
 
326
+ #: contact_form.php:747
327
  msgid "Site"
328
  msgstr "Website"
329
 
330
+ #: contact_form.php:792
331
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
332
  msgstr "Als u deze MIME ziet, dan ondersteunt uw client geen MIME-Typen!"
333
 
334
+ #: contact_form.php:846
335
  msgid "FAQ"
336
  msgstr "Veel gestelde vragen (FAQ)"
337
 
338
+ #: contact_form.php:847
339
  msgid "Support"
340
  msgstr "Support"
341
 
342
  #~ msgid "E-Mail Addresse:"
343
  #~ msgstr "Indirizzo e-mail:"
344
+
345
  #~ msgid "Install Now"
346
  #~ msgstr "Installa Ora"
347
+
348
  #~ msgid "BWS Plugins"
349
  #~ msgstr "BWS Plugins"
 
languages/contact_form-pl_PL.mo CHANGED
Binary file
languages/contact_form-pl_PL.po CHANGED
@@ -2,21 +2,21 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form Plugin v3.05\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-07-10 10:50+0300\n"
6
- "PO-Revision-Date: 2012-07-10 10:50+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
- "Language: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
14
- "X-Poedit-Language: Polish\n"
15
- "X-Poedit-Country: POLAND\n"
16
  "X-Poedit-SourceCharset: utf-8\n"
17
- "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
 
18
  "X-Poedit-Basepath: ../\n"
19
  "X-Textdomain-Support: yes\n"
 
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  # @ contact_form
@@ -25,16 +25,12 @@ msgid "Activated plugins"
25
  msgstr "Aktywne wtyczki"
26
 
27
  # @ contact_form
28
- #: contact_form.php:78
29
- #: contact_form.php:86
30
- #: contact_form.php:94
31
  msgid "Read more"
32
  msgstr "Czytaj więcej"
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
 
@@ -66,12 +62,15 @@ msgstr "Zainstaluj z wordpress.org"
66
 
67
  # @ contact_form
68
  #: contact_form.php:96
69
- msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
70
- msgstr "Jeśli masz pytania, napisz na adres plugin@bestwebsoft.com lub skorzystaj z formularza na naszej stronie"
 
 
 
 
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
 
@@ -81,320 +80,324 @@ msgid "Contact Form"
81
  msgstr "Contact Form"
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
-
2
  msgstr ""
3
  "Project-Id-Version: Contact Form Plugin v3.05\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-17 17:15+0200\n"
6
+ "PO-Revision-Date: 2012-10-17 17:15+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
+ "Language: pl_PL\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
 
 
14
  "X-Poedit-SourceCharset: utf-8\n"
15
+ "X-Poedit-KeywordsList: __;_e;__ngettext:1,2;_n:1,2;__ngettext_noop:1,2;"
16
+ "_n_noop:1,2;_c,_nc:4c,1,2;_x:1,2c;_ex:1,2c;_nx:4c,1,2;_nx_noop:4c,1,2\n"
17
  "X-Poedit-Basepath: ../\n"
18
  "X-Textdomain-Support: yes\n"
19
+ "X-Generator: Poedit 1.5.4\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
 
22
  # @ contact_form
25
  msgstr "Aktywne wtyczki"
26
 
27
  # @ contact_form
28
+ #: contact_form.php:78 contact_form.php:86 contact_form.php:94
 
 
29
  msgid "Read more"
30
  msgstr "Czytaj więcej"
31
 
32
  # @ contact_form
33
+ #: contact_form.php:78 contact_form.php:836 contact_form.php:845
 
 
34
  msgid "Settings"
35
  msgstr "Ustawienia"
36
 
62
 
63
  # @ contact_form
64
  #: contact_form.php:96
65
+ msgid ""
66
+ "If you have any questions, please contact us via plugin@bestwebsoft.com or "
67
+ "fill in our contact form on our site"
68
+ msgstr ""
69
+ "Jeśli masz pytania, napisz na adres plugin@bestwebsoft.com lub skorzystaj z "
70
+ "formularza na naszej stronie"
71
 
72
  # @ contact_form
73
+ #: contact_form.php:108 contact_form.php:267
 
74
  msgid "Contact Form Options"
75
  msgstr "Opcje Contact Form"
76
 
80
  msgstr "Contact Form"
81
 
82
  # @ contact_form
83
+ #: contact_form.php:137 contact_form.php:183 contact_form.php:221
84
+ #: contact_form.php:377
 
 
85
  msgid "Name:"
86
  msgstr "Imię:"
87
 
88
  # @ contact_form
89
+ #: contact_form.php:138 contact_form.php:184 contact_form.php:222
90
+ #: contact_form.php:378
 
 
91
  msgid "E-Mail Address:"
92
  msgstr "Adres e-mail"
93
 
94
+ #: contact_form.php:139 contact_form.php:379
95
+ msgid "Phone:"
96
+ msgstr ""
97
+
98
  # @ contact_form
99
+ #: contact_form.php:140 contact_form.php:185 contact_form.php:223
100
+ #: contact_form.php:380
 
 
101
  msgid "Subject:"
102
  msgstr "Temat:"
103
 
104
  # @ contact_form
105
+ #: contact_form.php:141 contact_form.php:186 contact_form.php:224
106
+ #: contact_form.php:381
 
 
107
  msgid "Message:"
108
  msgstr "Treść wiadomości:"
109
 
110
  # @ contact_form
111
+ #: contact_form.php:142 contact_form.php:187 contact_form.php:225
112
+ #: contact_form.php:382
 
 
113
  msgid "Attachment:"
114
  msgstr "Załączniki:"
115
 
116
  # @ contact_form
117
+ #: contact_form.php:144 contact_form.php:189
 
118
  msgid "Thank you for contacting us."
119
  msgstr "Dziękujemy za wiadomość."
120
 
121
+ #: contact_form.php:235
122
+ msgid ""
123
+ "If the option 'Redirect to page' is selected then url field should be "
124
+ "fillied in the following format"
125
  msgstr ""
126
 
127
  # @ contact_form
128
+ #: contact_form.php:242 contact_form.php:247 contact_form.php:256
 
 
129
  msgid "Options saved."
130
  msgstr "Opcje zapisano"
131
 
132
  # @ contact_form
133
+ #: contact_form.php:250
134
  msgid "Such user is not exist. Settings are not saved."
135
  msgstr "Nie ma takiego użytkownika. Ustawienia nie zostały zapisane."
136
 
137
  # @ contact_form
138
+ #: contact_form.php:259
139
  msgid "Please input correct email. Settings are not saved."
140
  msgstr "Proszę wpisać prawidłowy e-mail. Ustawienia nie zostały zapisane."
141
 
142
  # @ contact_form
143
+ #: contact_form.php:272
144
+ msgid ""
145
+ "If you would like to add a Contact Form to your website, just copy and put "
146
+ "this shortcode onto your post or page or widget:"
147
+ msgstr ""
148
+ "Jeśli chcesz dodać formularz do swojej strony, po prostu skopiuj ten kod i "
149
+ "wklej go do wpisu lub treści strony lub Widget:"
150
 
151
  # @ contact_form
152
+ #: contact_form.php:273
153
+ msgid ""
154
+ "If information in the below fields are empty then the message will be send "
155
+ "to an address which was specified during registration."
156
+ msgstr ""
157
+ "Jeśli poniższe pola zostaną puste, wiadomość zostanie wysłana na adres "
158
+ "podany podczas rejestracji."
159
 
160
  # @ contact_form
161
+ #: contact_form.php:277
162
  msgid "Use email of wordpress user:"
163
  msgstr "Użyj adresu e-mail użytkownika:"
164
 
165
  # @ contact_form
166
+ #: contact_form.php:283
167
  msgid "Select user name"
168
  msgstr "Wybierz użytkownika"
169
 
170
  # @ contact_form
171
+ #: contact_form.php:288
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:292
177
  msgid "Use this email:"
178
  msgstr "Wybierz ten e-mail:"
179
 
180
  # @ contact_form
181
+ #: contact_form.php:298
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:302
187
  msgid "Additional options"
188
  msgstr "Dodatkowe opcje"
189
 
190
  # @ contact_form
191
+ #: contact_form.php:305
192
  msgid "Display Attachment block"
193
  msgstr "Wyświetlaj blok załączników"
194
 
195
  # @ contact_form
196
+ #: contact_form.php:310
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:314
202
  msgid "Display Attachment explanations"
203
  msgstr ""
204
 
205
  # @ contact_form
206
+ #: contact_form.php:319
207
  msgid "Display explanations after Attachment block"
208
  msgstr ""
209
 
210
  # @ contact_form
211
+ #: contact_form.php:323
212
  msgid "Display Send me a copy block"
213
  msgstr "Wyświetlaj blok wysyłania kopii do nadawcy"
214
 
215
+ #: contact_form.php:329
216
  msgid "What use?"
217
  msgstr ""
218
 
219
  # @ contact_form
220
+ #: contact_form.php:334
221
  msgid "Wp-mail"
222
  msgstr "Wp-mail"
223
 
224
+ #: contact_form.php:335
225
  msgid "To send mail you can use the wordpress wp_mail function"
226
  msgstr ""
227
 
228
  # @ contact_form
229
+ #: contact_form.php:343
230
  msgid "Mail"
231
  msgstr "Mail"
232
 
233
+ #: contact_form.php:344
234
  msgid "To send mail you can use the php mail function"
235
  msgstr ""
236
 
237
  # @ contact_form
238
+ #: contact_form.php:348
239
  msgid "Change FROM fields of the contact form"
240
  msgstr "Zmień od pola formularza"
241
 
242
+ #: contact_form.php:354
243
+ msgid "Display phone field"
244
+ msgstr ""
245
+
246
+ #: contact_form.php:360
247
  msgid "Display additional info in email"
248
  msgstr ""
249
 
250
  # @ contact_form
251
+ #: contact_form.php:365 contact_form.php:702
 
252
  msgid "Sent from (ip address)"
253
  msgstr "Przysłane z (adres IP)"
254
 
255
  # @ contact_form
256
+ #: contact_form.php:366 contact_form.php:707
 
257
  msgid "Date/Time"
258
  msgstr "Data/czas"
259
 
260
  # @ contact_form
261
+ #: contact_form.php:367 contact_form.php:712
 
262
  msgid "Coming from (referer)"
263
  msgstr "Przekierowane z (referrer)"
264
 
265
  # @ contact_form
266
+ #: contact_form.php:368 contact_form.php:717
 
267
  msgid "Using (user agent)"
268
  msgstr "Klient (program użytkownika)"
269
 
270
  # @ contact_form
271
+ #: contact_form.php:372
272
  msgid "Change label for fields of the contact form"
273
  msgstr "Zmień etykiety pól formularza"
274
 
275
+ #: contact_form.php:386
276
  msgid "Action after the send mail"
277
  msgstr ""
278
 
279
  # @ contact_form
280
+ #: contact_form.php:388
281
  #, fuzzy
282
  msgid "Display text"
283
  msgstr "Wyświetlaj blok załączników"
284
 
285
+ #: contact_form.php:389
286
  msgid "Text"
287
  msgstr ""
288
 
289
+ #: contact_form.php:390
290
  msgid "Redirect to page"
291
  msgstr ""
292
 
293
+ #: contact_form.php:391
294
  msgid "Url"
295
  msgstr ""
296
 
297
  # @ default
298
+ #: contact_form.php:396
299
  msgid "Save Changes"
300
  msgstr "Zapisz zmiany"
301
 
302
  # @ contact_form
303
+ #: contact_form.php:433
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:503
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:511
314
  msgid "Send me a copy"
315
  msgstr "Wyślij mi kopię"
316
 
317
  # @ contact_form
318
+ #: contact_form.php:521
319
  msgid "Submit"
320
  msgstr "Wyślij"
321
 
322
  # @ contact_form
323
+ #: contact_form.php:560
324
  msgid "Your name is required."
325
  msgstr "Podanie imienia jest wymagane."
326
 
327
  # @ contact_form
328
+ #: contact_form.php:561
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:562
334
  msgid "Subject text is required."
335
  msgstr "Podanie tematu jest wymagane."
336
 
337
  # @ contact_form
338
+ #: contact_form.php:563
339
  msgid "Message text is required."
340
  msgstr "Wiadomość musi mieć jakąś treść."
341
 
342
  # @ contact_form
343
+ #: contact_form.php:564
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:596
349
  msgid "Attachment is broken."
350
  msgstr "Załącznik jest uszkodzony."
351
 
352
  # @ contact_form
353
+ #: contact_form.php:609
354
  msgid "Please complete the CAPTCHA."
355
  msgstr "Proszę dokładnie przepisać kod."
356
 
357
  # @ contact_form
358
+ #: contact_form.php:725
359
  msgid "Contact from"
360
  msgstr "Kontakt z"
361
 
362
  # @ contact_form
363
+ #: contact_form.php:730
364
  msgid "Name"
365
  msgstr "Imię"
366
 
367
  # @ contact_form
368
+ #: contact_form.php:733
369
  msgid "Email"
370
  msgstr "E-mail"
371
 
372
+ #: contact_form.php:738
373
+ msgid "Phone"
374
+ msgstr ""
375
+
376
  # @ contact_form
377
+ #: contact_form.php:741
378
  msgid "Subject"
379
  msgstr "Temat"
380
 
381
  # @ contact_form
382
+ #: contact_form.php:744
383
  msgid "Message"
384
  msgstr "Wiadomość"
385
 
386
  # @ contact_form
387
+ #: contact_form.php:747
388
  msgid "Site"
389
  msgstr "Strona www"
390
 
391
+ #: contact_form.php:792
392
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
393
  msgstr ""
394
 
395
  # @ contact_form
396
+ #: contact_form.php:846
397
  msgid "FAQ"
398
  msgstr "FAQ"
399
 
400
  # @ contact_form
401
+ #: contact_form.php:847
402
  msgid "Support"
403
  msgstr "Wsparcie"
 
languages/contact_form-pt_BR.mo CHANGED
Binary file
languages/contact_form-pt_BR.po CHANGED
@@ -2,34 +2,29 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-07-10 10:50+0300\n"
6
- "PO-Revision-Date: 2012-07-10 10:50+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
- "Language: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-Language: German\n"
16
- "X-Poedit-Country: GERMANY\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 "Plugins ativados"
23
 
24
- #: contact_form.php:78
25
- #: contact_form.php:86
26
- #: contact_form.php:94
27
  msgid "Read more"
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
 
@@ -55,11 +50,14 @@ msgid "Install now from wordpress.org"
55
  msgstr "Instale agora do site 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 "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
 
@@ -67,277 +65,290 @@ msgstr "Opções do formulário de contato"
67
  msgid "Contact Form"
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
 
337
  #~ msgid "E-Mail Addresse:"
338
  #~ msgstr "Indirizzo e-mail:"
 
339
  #~ msgid "Install Now"
340
  #~ msgstr "Installa Ora"
 
341
  #~ msgid "BWS Plugins"
342
  #~ msgstr "BWS Plugins"
343
-
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-17 17:15+0200\n"
6
+ "PO-Revision-Date: 2012-10-17 17:15+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
+ "Language: de_DE\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
 
 
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: contact_form.php:76
20
  msgid "Activated plugins"
21
  msgstr "Plugins ativados"
22
 
23
+ #: contact_form.php:78 contact_form.php:86 contact_form.php:94
 
 
24
  msgid "Read more"
25
  msgstr "Leia Mais"
26
 
27
+ #: contact_form.php:78 contact_form.php:836 contact_form.php:845
 
 
28
  msgid "Settings"
29
  msgstr "Configurações"
30
 
50
  msgstr "Instale agora do site wordpress.org"
51
 
52
  #: contact_form.php:96
53
+ msgid ""
54
+ "If you have any questions, please contact us via plugin@bestwebsoft.com or "
55
+ "fill in our contact form on our site"
56
+ msgstr ""
57
+ "Se você tem quaisquer perguntas, por favor entre em contato através do email "
58
+ "plugin@bestwebsoft.com ou preencha nosso formulário de contato pelo site. "
59
 
60
+ #: contact_form.php:108 contact_form.php:267
 
61
  msgid "Contact Form Options"
62
  msgstr "Opções do formulário de contato"
63
 
65
  msgid "Contact Form"
66
  msgstr "Formulário de contato"
67
 
68
+ #: contact_form.php:137 contact_form.php:183 contact_form.php:221
69
+ #: contact_form.php:377
 
 
70
  msgid "Name:"
71
  msgstr "Nome:"
72
 
73
+ #: contact_form.php:138 contact_form.php:184 contact_form.php:222
74
+ #: contact_form.php:378
 
 
75
  msgid "E-Mail Address:"
76
  msgstr "Endereço de E-mail:"
77
 
78
+ #: contact_form.php:139 contact_form.php:379
79
+ msgid "Phone:"
80
+ msgstr ""
81
+
82
+ #: contact_form.php:140 contact_form.php:185 contact_form.php:223
83
+ #: contact_form.php:380
84
  msgid "Subject:"
85
  msgstr "Assunto:"
86
 
87
+ #: contact_form.php:141 contact_form.php:186 contact_form.php:224
88
+ #: contact_form.php:381
 
 
89
  msgid "Message:"
90
  msgstr "Mensagem:"
91
 
92
+ #: contact_form.php:142 contact_form.php:187 contact_form.php:225
93
+ #: contact_form.php:382
 
 
94
  msgid "Attachment:"
95
  msgstr "Anexo:"
96
 
97
+ #: contact_form.php:144 contact_form.php:189
 
98
  msgid "Thank you for contacting us."
99
+ msgstr "Obrigado por nos contatar"
100
 
101
+ #: contact_form.php:235
102
+ msgid ""
103
+ "If the option 'Redirect to page' is selected then url field should be "
104
+ "fillied in the following format"
105
  msgstr ""
106
 
107
+ #: contact_form.php:242 contact_form.php:247 contact_form.php:256
 
 
108
  msgid "Options saved."
109
  msgstr "Opções salvas."
110
 
111
+ #: contact_form.php:250
112
  msgid "Such user is not exist. Settings are not saved."
113
  msgstr "Tal usuári não existe. Configurações não foram salvas."
114
 
115
+ #: contact_form.php:259
116
  msgid "Please input correct email. Settings are not saved."
117
  msgstr "Por favor digite o email corretamente. Configurações não foram salvas."
118
 
119
+ #: contact_form.php:272
120
+ msgid ""
121
+ "If you would like to add a Contact Form to your website, just copy and put "
122
+ "this shortcode onto your post or page or widget:"
123
+ msgstr ""
124
+ "Se você gostaria de adicionar o Formulário de Contato no seu site, apenas "
125
+ "copie e cole este código na sua postagem ou página ou widget:"
126
 
127
+ #: contact_form.php:273
128
+ msgid ""
129
+ "If information in the below fields are empty then the message will be send "
130
+ "to an address which was specified during registration."
131
+ msgstr ""
132
+ "Se informações nos campos abaixo estão vazias, então as mensagens serão "
133
+ "enviadas para um endereço que foi especificado durante o registro."
134
 
135
+ #: contact_form.php:277
136
  msgid "Use email of wordpress user:"
137
  msgstr "Use o email de um usuário do wordpress:"
138
 
139
+ #: contact_form.php:283
140
  msgid "Select user name"
141
  msgstr "Selecione o nome do usuário"
142
 
143
+ #: contact_form.php:288
144
  msgid "Set a name of user who will get messages from a contact form."
145
+ msgstr ""
146
+ "Determine um nome de usuário que receberá as mensagens enviadas pelo "
147
+ "Formulário de Contato."
148
 
149
+ #: contact_form.php:292
150
  msgid "Use this email:"
151
  msgstr "Use este email:"
152
 
153
+ #: contact_form.php:298
154
  msgid "Set an email address which will be used for messages receiving."
155
+ msgstr ""
156
+ "Configure um endereço de email que será usado para o recebimento de "
157
+ "mensagens."
158
 
159
+ #: contact_form.php:302
160
  msgid "Additional options"
161
  msgstr "Opções adicionais"
162
 
163
+ #: contact_form.php:305
164
  msgid "Display Attachment block"
165
  msgstr "Mostrar opção para anexar arquivos"
166
 
167
+ #: contact_form.php:310
168
  msgid "Users can attach files of the following types"
169
  msgstr "Usuários pode anexar arquivos do seguinte tipo:"
170
 
171
+ #: contact_form.php:314
172
  msgid "Display Attachment explanations"
173
  msgstr ""
174
 
175
+ #: contact_form.php:319
176
  msgid "Display explanations after Attachment block"
177
  msgstr ""
178
 
179
+ #: contact_form.php:323
180
  msgid "Display Send me a copy block"
181
  msgstr "Mostrar a opção Envie-me um cópia"
182
 
183
+ #: contact_form.php:329
184
  msgid "What use?"
185
  msgstr ""
186
 
187
+ #: contact_form.php:334
188
  msgid "Wp-mail"
189
  msgstr "Wp-mail"
190
 
191
+ #: contact_form.php:335
192
  msgid "To send mail you can use the wordpress wp_mail function"
193
  msgstr ""
194
 
195
+ #: contact_form.php:343
196
  msgid "Mail"
197
  msgstr "Mail"
198
 
199
+ #: contact_form.php:344
200
  msgid "To send mail you can use the php mail function"
201
  msgstr ""
202
 
203
+ #: contact_form.php:348
204
  msgid "Change FROM fields of the contact form"
205
  msgstr "Mudar de campos do formulário de contato"
206
 
207
+ #: contact_form.php:354
208
+ msgid "Display phone field"
209
+ msgstr ""
210
+
211
+ #: contact_form.php:360
212
  msgid "Display additional info in email"
213
  msgstr ""
214
 
215
+ #: contact_form.php:365 contact_form.php:702
 
216
  msgid "Sent from (ip address)"
217
  msgstr "Enviado de (Endereço IP)"
218
 
219
+ #: contact_form.php:366 contact_form.php:707
 
220
  msgid "Date/Time"
221
  msgstr "DAta / Hora"
222
 
223
+ #: contact_form.php:367 contact_form.php:712
 
224
  msgid "Coming from (referer)"
225
  msgstr "Vindo de (origem)"
226
 
227
+ #: contact_form.php:368 contact_form.php:717
 
228
  msgid "Using (user agent)"
229
  msgstr "Usando (cliente de email)"
230
 
231
+ #: contact_form.php:372
232
  msgid "Change label for fields of the contact form"
233
  msgstr "Mudar rótulo para os campos no formulário de contato"
234
 
235
+ #: contact_form.php:386
236
  msgid "Action after the send mail"
237
  msgstr ""
238
 
239
+ #: contact_form.php:388
240
  #, fuzzy
241
  msgid "Display text"
242
  msgstr "Mostrar opção para anexar arquivos"
243
 
244
+ #: contact_form.php:389
245
  msgid "Text"
246
  msgstr ""
247
 
248
+ #: contact_form.php:390
249
  msgid "Redirect to page"
250
  msgstr ""
251
 
252
+ #: contact_form.php:391
253
  msgid "Url"
254
  msgstr ""
255
 
256
+ #: contact_form.php:396
257
  msgid "Save Changes"
258
  msgstr "Salvar mudanças"
259
 
260
+ #: contact_form.php:433
261
  msgid "Sorry, your e-mail could not be delivered."
262
  msgstr "Desculpe, seu e-mail não pode ser entregue."
263
 
264
+ #: contact_form.php:503
265
  msgid "You can attach files of the following types"
266
  msgstr "Você pode anexar arquivos do seguinte tipo"
267
 
268
+ #: contact_form.php:511
269
  msgid "Send me a copy"
270
  msgstr "Envie-me uma cópia"
271
 
272
+ #: contact_form.php:521
273
  msgid "Submit"
274
  msgstr "Enviar"
275
 
276
+ #: contact_form.php:560
277
  msgid "Your name is required."
278
  msgstr "Seu nome é obrigatório"
279
 
280
+ #: contact_form.php:561
281
  msgid "A proper e-mail address is required."
282
  msgstr "Um e-mail correto é obrigatório."
283
 
284
+ #: contact_form.php:562
285
  msgid "Subject text is required."
286
  msgstr "O Assunto da mensagem é obrigatório."
287
 
288
+ #: contact_form.php:563
289
  msgid "Message text is required."
290
  msgstr "O texto da Mensagem é obrigatório."
291
 
292
+ #: contact_form.php:564
293
  msgid "Please make corrections below and try again."
294
+ msgstr ""
295
+ "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
296
 
297
+ #: contact_form.php:596
298
  msgid "Attachment is broken."
299
  msgstr "Impossível anexar arquivo. "
300
 
301
+ #: contact_form.php:609
302
  msgid "Please complete the CAPTCHA."
303
  msgstr "Por favor, complete a resposta da charada ."
304
 
305
+ #: contact_form.php:725
306
  msgid "Contact from"
307
  msgstr "Formulário de Contato"
308
 
309
+ #: contact_form.php:730
310
  msgid "Name"
311
  msgstr "Nome"
312
 
313
+ #: contact_form.php:733
314
  msgid "Email"
315
  msgstr "E-Mail"
316
 
317
+ #: contact_form.php:738
318
+ msgid "Phone"
319
+ msgstr ""
320
+
321
+ #: contact_form.php:741
322
  msgid "Subject"
323
  msgstr "Assunto"
324
 
325
+ #: contact_form.php:744
326
  msgid "Message"
327
  msgstr "Mensagem"
328
 
329
+ #: contact_form.php:747
330
  msgid "Site"
331
  msgstr "Site"
332
 
333
+ #: contact_form.php:792
334
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
335
+ msgstr ""
336
+ "Se você consegue ver esta MENSAGEM então seu cliente não aceita tipos MIME! "
337
+ "Favor usar um cliente mais atualizado."
338
 
339
+ #: contact_form.php:846
340
  msgid "FAQ"
341
  msgstr "Perguntas Frequentes"
342
 
343
+ #: contact_form.php:847
344
  msgid "Support"
345
  msgstr "Suporte"
346
 
347
  #~ msgid "E-Mail Addresse:"
348
  #~ msgstr "Indirizzo e-mail:"
349
+
350
  #~ msgid "Install Now"
351
  #~ msgstr "Installa Ora"
352
+
353
  #~ msgid "BWS Plugins"
354
  #~ msgstr "BWS Plugins"
 
languages/contact_form-pt_PT.mo CHANGED
Binary file
languages/contact_form-pt_PT.po CHANGED
@@ -2,34 +2,29 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-07-10 10:50+0300\n"
6
- "PO-Revision-Date: 2012-07-10 10:50+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
- "Language: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-Language: Rhaeto-Romance\n"
16
- "X-Poedit-Country: SAINT HELENA\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 "Plugins ativados"
23
 
24
- #: contact_form.php:78
25
- #: contact_form.php:86
26
- #: contact_form.php:94
27
  msgid "Read more"
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
 
@@ -55,11 +50,14 @@ msgid "Install now from wordpress.org"
55
  msgstr "Instale agora do site 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 "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
 
@@ -67,277 +65,290 @@ msgstr "Opções do formulário de contato"
67
  msgid "Contact Form"
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
 
337
  #~ msgid "E-Mail Addresse:"
338
  #~ msgstr "Indirizzo e-mail:"
 
339
  #~ msgid "Install Now"
340
  #~ msgstr "Installa Ora"
 
341
  #~ msgid "BWS Plugins"
342
  #~ msgstr "BWS Plugins"
343
-
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-17 17:16+0200\n"
6
+ "PO-Revision-Date: 2012-10-17 17:16+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
+ "Language: rm_SH\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
 
 
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: contact_form.php:76
20
  msgid "Activated plugins"
21
  msgstr "Plugins ativados"
22
 
23
+ #: contact_form.php:78 contact_form.php:86 contact_form.php:94
 
 
24
  msgid "Read more"
25
  msgstr "Leia Mais"
26
 
27
+ #: contact_form.php:78 contact_form.php:836 contact_form.php:845
 
 
28
  msgid "Settings"
29
  msgstr "Configurações"
30
 
50
  msgstr "Instale agora do site wordpress.org"
51
 
52
  #: contact_form.php:96
53
+ msgid ""
54
+ "If you have any questions, please contact us via plugin@bestwebsoft.com or "
55
+ "fill in our contact form on our site"
56
+ msgstr ""
57
+ "Se você tem quaisquer perguntas, por favor entre em contato através do email "
58
+ "plugin@bestwebsoft.com ou preencha nosso formulário de contato pelo site. "
59
 
60
+ #: contact_form.php:108 contact_form.php:267
 
61
  msgid "Contact Form Options"
62
  msgstr "Opções do formulário de contato"
63
 
65
  msgid "Contact Form"
66
  msgstr "Formulário de contato"
67
 
68
+ #: contact_form.php:137 contact_form.php:183 contact_form.php:221
69
+ #: contact_form.php:377
 
 
70
  msgid "Name:"
71
  msgstr "Nome:"
72
 
73
+ #: contact_form.php:138 contact_form.php:184 contact_form.php:222
74
+ #: contact_form.php:378
 
 
75
  msgid "E-Mail Address:"
76
  msgstr "Endereço de E-mail:"
77
 
78
+ #: contact_form.php:139 contact_form.php:379
79
+ msgid "Phone:"
80
+ msgstr ""
81
+
82
+ #: contact_form.php:140 contact_form.php:185 contact_form.php:223
83
+ #: contact_form.php:380
84
  msgid "Subject:"
85
  msgstr "Assunto:"
86
 
87
+ #: contact_form.php:141 contact_form.php:186 contact_form.php:224
88
+ #: contact_form.php:381
 
 
89
  msgid "Message:"
90
  msgstr "Mensagem:"
91
 
92
+ #: contact_form.php:142 contact_form.php:187 contact_form.php:225
93
+ #: contact_form.php:382
 
 
94
  msgid "Attachment:"
95
  msgstr "Anexo:"
96
 
97
+ #: contact_form.php:144 contact_form.php:189
 
98
  msgid "Thank you for contacting us."
99
  msgstr "Obrigado por nos contactar"
100
 
101
+ #: contact_form.php:235
102
+ msgid ""
103
+ "If the option 'Redirect to page' is selected then url field should be "
104
+ "fillied in the following format"
105
  msgstr ""
106
 
107
+ #: contact_form.php:242 contact_form.php:247 contact_form.php:256
 
 
108
  msgid "Options saved."
109
  msgstr "Opções salvas."
110
 
111
+ #: contact_form.php:250
112
  msgid "Such user is not exist. Settings are not saved."
113
  msgstr "Tal usuári não existe. Configurações não foram salvas."
114
 
115
+ #: contact_form.php:259
116
  msgid "Please input correct email. Settings are not saved."
117
  msgstr "Por favor digite o email corretamente. Configurações não foram salvas."
118
 
119
+ #: contact_form.php:272
120
+ msgid ""
121
+ "If you would like to add a Contact Form to your website, just copy and put "
122
+ "this shortcode onto your post or page or widget:"
123
+ msgstr ""
124
+ "Se você gostaria de adicionar o Formulário de Contato no seu site, apenas "
125
+ "copie e cole este código na sua postagem ou página ou widget:"
126
 
127
+ #: contact_form.php:273
128
+ msgid ""
129
+ "If information in the below fields are empty then the message will be send "
130
+ "to an address which was specified during registration."
131
+ msgstr ""
132
+ "Se informações nos campos abaixo estão vazias, então as mensagens serão "
133
+ "enviadas para um endereço que foi especificado durante o registro."
134
 
135
+ #: contact_form.php:277
136
  msgid "Use email of wordpress user:"
137
  msgstr "Use o email de um usuário do wordpress:"
138
 
139
+ #: contact_form.php:283
140
  msgid "Select user name"
141
  msgstr "Selecione o nome do usuário"
142
 
143
+ #: contact_form.php:288
144
  msgid "Set a name of user who will get messages from a contact form."
145
+ msgstr ""
146
+ "Determine um nome de usuário que receberá as mensagens enviadas pelo "
147
+ "Formulário de Contato."
148
 
149
+ #: contact_form.php:292
150
  msgid "Use this email:"
151
  msgstr "Use este email:"
152
 
153
+ #: contact_form.php:298
154
  msgid "Set an email address which will be used for messages receiving."
155
+ msgstr ""
156
+ "Configure um endereço de email que será usado para o recebimento de "
157
+ "mensagens."
158
 
159
+ #: contact_form.php:302
160
  msgid "Additional options"
161
  msgstr "Opções adicionais"
162
 
163
+ #: contact_form.php:305
164
  msgid "Display Attachment block"
165
  msgstr "Mostrar opção para anexar arquivos"
166
 
167
+ #: contact_form.php:310
168
  msgid "Users can attach files of the following types"
169
  msgstr "Usuários pode anexar arquivos do seguinte tipo:"
170
 
171
+ #: contact_form.php:314
172
  msgid "Display Attachment explanations"
173
  msgstr ""
174
 
175
+ #: contact_form.php:319
176
  msgid "Display explanations after Attachment block"
177
  msgstr ""
178
 
179
+ #: contact_form.php:323
180
  msgid "Display Send me a copy block"
181
  msgstr "Mostrar a opção Envie-me um cópia"
182
 
183
+ #: contact_form.php:329
184
  msgid "What use?"
185
  msgstr ""
186
 
187
+ #: contact_form.php:334
188
  msgid "Wp-mail"
189
  msgstr "Wp-mail"
190
 
191
+ #: contact_form.php:335
192
  msgid "To send mail you can use the wordpress wp_mail function"
193
  msgstr ""
194
 
195
+ #: contact_form.php:343
196
  msgid "Mail"
197
  msgstr "Mail"
198
 
199
+ #: contact_form.php:344
200
  msgid "To send mail you can use the php mail function"
201
  msgstr ""
202
 
203
+ #: contact_form.php:348
204
  msgid "Change FROM fields of the contact form"
205
  msgstr ""
206
 
207
+ #: contact_form.php:354
208
+ msgid "Display phone field"
209
+ msgstr ""
210
+
211
+ #: contact_form.php:360
212
  msgid "Display additional info in email"
213
  msgstr ""
214
 
215
+ #: contact_form.php:365 contact_form.php:702
 
216
  msgid "Sent from (ip address)"
217
  msgstr "Enviado de (Endereço IP)"
218
 
219
+ #: contact_form.php:366 contact_form.php:707
 
220
  msgid "Date/Time"
221
  msgstr "DAta / Hora"
222
 
223
+ #: contact_form.php:367 contact_form.php:712
 
224
  msgid "Coming from (referer)"
225
  msgstr "Vindo de (origem)"
226
 
227
+ #: contact_form.php:368 contact_form.php:717
 
228
  msgid "Using (user agent)"
229
  msgstr "Usando (cliente de email)"
230
 
231
+ #: contact_form.php:372
232
  msgid "Change label for fields of the contact form"
233
  msgstr "Mudar rótulo para os campos no formulário de contato"
234
 
235
+ #: contact_form.php:386
236
  msgid "Action after the send mail"
237
  msgstr ""
238
 
239
+ #: contact_form.php:388
240
  #, fuzzy
241
  msgid "Display text"
242
  msgstr "Mostrar opção para anexar arquivos"
243
 
244
+ #: contact_form.php:389
245
  msgid "Text"
246
  msgstr ""
247
 
248
+ #: contact_form.php:390
249
  msgid "Redirect to page"
250
  msgstr ""
251
 
252
+ #: contact_form.php:391
253
  msgid "Url"
254
  msgstr ""
255
 
256
+ #: contact_form.php:396
257
  msgid "Save Changes"
258
  msgstr "Salvar mudanças"
259
 
260
+ #: contact_form.php:433
261
  msgid "Sorry, your e-mail could not be delivered."
262
  msgstr "Desculpe, seu e-mail não pode ser entregue."
263
 
264
+ #: contact_form.php:503
265
  msgid "You can attach files of the following types"
266
  msgstr "Você pode anexar arquivos do seguinte tipo"
267
 
268
+ #: contact_form.php:511
269
  msgid "Send me a copy"
270
  msgstr "Envie-me uma cópia"
271
 
272
+ #: contact_form.php:521
273
  msgid "Submit"
274
  msgstr "Enviar"
275
 
276
+ #: contact_form.php:560
277
  msgid "Your name is required."
278
  msgstr "Seu nome é obrigatório"
279
 
280
+ #: contact_form.php:561
281
  msgid "A proper e-mail address is required."
282
  msgstr "Um e-mail correto é obrigatório."
283
 
284
+ #: contact_form.php:562
285
  msgid "Subject text is required."
286
  msgstr "O Assunto da mensagem é obrigatório."
287
 
288
+ #: contact_form.php:563
289
  msgid "Message text is required."
290
  msgstr "O texto da Mensagem é obrigatório."
291
 
292
+ #: contact_form.php:564
293
  msgid "Please make corrections below and try again."
294
+ msgstr ""
295
+ "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
296
 
297
+ #: contact_form.php:596
298
  msgid "Attachment is broken."
299
  msgstr "Impossível anexar arquivo. "
300
 
301
+ #: contact_form.php:609
302
  msgid "Please complete the CAPTCHA."
303
  msgstr "Por favor, complete a resposta da charada ."
304
 
305
+ #: contact_form.php:725
306
  msgid "Contact from"
307
  msgstr "Formulário de Contato"
308
 
309
+ #: contact_form.php:730
310
  msgid "Name"
311
  msgstr "Nome"
312
 
313
+ #: contact_form.php:733
314
  msgid "Email"
315
  msgstr "E-Mail"
316
 
317
+ #: contact_form.php:738
318
+ msgid "Phone"
319
+ msgstr ""
320
+
321
+ #: contact_form.php:741
322
  msgid "Subject"
323
  msgstr "Assunto"
324
 
325
+ #: contact_form.php:744
326
  msgid "Message"
327
  msgstr "Mensagem"
328
 
329
+ #: contact_form.php:747
330
  msgid "Site"
331
  msgstr "Site"
332
 
333
+ #: contact_form.php:792
334
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
335
+ msgstr ""
336
+ "Se você consegue ver esta MENSAGEM então seu cliente não aceita tipos MIME! "
337
+ "Favor usar um cliente mais atualizado."
338
 
339
+ #: contact_form.php:846
340
  msgid "FAQ"
341
  msgstr "Perguntas Frequentes"
342
 
343
+ #: contact_form.php:847
344
  msgid "Support"
345
  msgstr "Suporte"
346
 
347
  #~ msgid "E-Mail Addresse:"
348
  #~ msgstr "Indirizzo e-mail:"
349
+
350
  #~ msgid "Install Now"
351
  #~ msgstr "Installa Ora"
352
+
353
  #~ msgid "BWS Plugins"
354
  #~ msgstr "BWS Plugins"
 
languages/contact_form-ro_RO.mo ADDED
Binary file
languages/contact_form-ro_RO.po ADDED
@@ -0,0 +1,350 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: contact_form\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-17 17:16+0200\n"
6
+ "PO-Revision-Date: 2012-10-17 17:16+0200\n"
7
+ "Last-Translator: Cosmin Berescu <b.cosmin@gmx.net>\n"
8
+ "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
+ "Language: ro_RO\n"
10
+ "MIME-Version: 1.0\n"
11
+ "Content-Type: text/plain; charset=UTF-8\n"
12
+ "Content-Transfer-Encoding: 8bit\n"
13
+ "X-Poedit-KeywordsList: __;_e\n"
14
+ "X-Poedit-Basepath: ..\n"
15
+ "X-Poedit-SourceCharset: UTF-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: contact_form.php:76
20
+ msgid "Activated plugins"
21
+ msgstr "Plugin-uri activate"
22
+
23
+ #: contact_form.php:78 contact_form.php:86 contact_form.php:94
24
+ msgid "Read more"
25
+ msgstr "Citeste mai multe"
26
+
27
+ #: contact_form.php:78 contact_form.php:836 contact_form.php:845
28
+ msgid "Settings"
29
+ msgstr "Setari"
30
+
31
+ #: contact_form.php:84
32
+ msgid "Installed plugins"
33
+ msgstr "Pluginuri instalate"
34
+
35
+ #: contact_form.php:92
36
+ msgid "Recommended plugins"
37
+ msgstr "Pluginuri recomandate"
38
+
39
+ #: contact_form.php:94
40
+ msgid "Download"
41
+ msgstr "Descarca"
42
+
43
+ #: contact_form.php:94
44
+ #, php-format
45
+ msgid "Install %s"
46
+ msgstr "Instaleaza %s"
47
+
48
+ #: contact_form.php:94
49
+ msgid "Install now from wordpress.org"
50
+ msgstr "Instaleaza acum de pe wordpress.org"
51
+
52
+ #: contact_form.php:96
53
+ msgid ""
54
+ "If you have any questions, please contact us via plugin@bestwebsoft.com or "
55
+ "fill in our contact form on our site"
56
+ msgstr ""
57
+ "Daca aveti intrebari, va rugam sa ne contactati folosind plugin@bestwebsoft."
58
+ "com sau completati formularul de contact de la noi de pe site"
59
+
60
+ #: contact_form.php:108 contact_form.php:267
61
+ msgid "Contact Form Options"
62
+ msgstr "Optiuni formular de contact"
63
+
64
+ #: contact_form.php:108
65
+ msgid "Contact Form"
66
+ msgstr "Formular de contact"
67
+
68
+ #: contact_form.php:137 contact_form.php:183 contact_form.php:221
69
+ #: contact_form.php:377
70
+ msgid "Name:"
71
+ msgstr "Nume:"
72
+
73
+ #: contact_form.php:138 contact_form.php:184 contact_form.php:222
74
+ #: contact_form.php:378
75
+ msgid "E-Mail Address:"
76
+ msgstr "Adresa email:"
77
+
78
+ #: contact_form.php:139 contact_form.php:379
79
+ msgid "Phone:"
80
+ msgstr ""
81
+
82
+ #: contact_form.php:140 contact_form.php:185 contact_form.php:223
83
+ #: contact_form.php:380
84
+ msgid "Subject:"
85
+ msgstr "Subiect:"
86
+
87
+ #: contact_form.php:141 contact_form.php:186 contact_form.php:224
88
+ #: contact_form.php:381
89
+ msgid "Message:"
90
+ msgstr "Mesaj:"
91
+
92
+ #: contact_form.php:142 contact_form.php:187 contact_form.php:225
93
+ #: contact_form.php:382
94
+ msgid "Attachment:"
95
+ msgstr "Atasament:"
96
+
97
+ #: contact_form.php:144 contact_form.php:189
98
+ msgid "Thank you for contacting us."
99
+ msgstr "Va multumim ca ati luat legatura cu noi."
100
+
101
+ #: contact_form.php:235
102
+ msgid ""
103
+ "If the option 'Redirect to page' is selected then url field should be "
104
+ "fillied in the following format"
105
+ msgstr ""
106
+ "Daca optiunea 'Redirectioneaza la pagina' este selectata, atunci campul url "
107
+ "ar trebui completat in urmatorul format"
108
+
109
+ #: contact_form.php:242 contact_form.php:247 contact_form.php:256
110
+ msgid "Options saved."
111
+ msgstr "Optiuni salvate."
112
+
113
+ #: contact_form.php:250
114
+ msgid "Such user is not exist. Settings are not saved."
115
+ msgstr "Acest utilizator nu exista. Setarile nu au fost salvate."
116
+
117
+ #: contact_form.php:259
118
+ msgid "Please input correct email. Settings are not saved."
119
+ msgstr "Va rugam introduceti un email corect. Setarile nu au fost salvate."
120
+
121
+ #: contact_form.php:272
122
+ msgid ""
123
+ "If you would like to add a Contact Form to your website, just copy and put "
124
+ "this shortcode onto your post or page or widget:"
125
+ msgstr ""
126
+ "Daca ati dori sa adaugati un Formular de Contact pe situl dumneavoastra, "
127
+ "copiati si lipiti acest cod intr-o pagina sau widget:"
128
+
129
+ #: contact_form.php:273
130
+ msgid ""
131
+ "If information in the below fields are empty then the message will be send "
132
+ "to an address which was specified during registration."
133
+ msgstr ""
134
+ "Daca informatia din campurile urmatoare este nula, atunci mesajul va fi "
135
+ "trimis la adresa specificata in timpul procesului de inregistrare."
136
+
137
+ #: contact_form.php:277
138
+ msgid "Use email of wordpress user:"
139
+ msgstr "Foloseste email-ul utilizatorului Wordpress:"
140
+
141
+ #: contact_form.php:283
142
+ msgid "Select user name"
143
+ msgstr "Alege numele utilizatorului"
144
+
145
+ #: contact_form.php:288
146
+ msgid "Set a name of user who will get messages from a contact form."
147
+ msgstr ""
148
+ "Alege numele utilizatorului care va primi mesaje de la formularul de contact."
149
+
150
+ #: contact_form.php:292
151
+ msgid "Use this email:"
152
+ msgstr "Foloseste acest email:"
153
+
154
+ #: contact_form.php:298
155
+ msgid "Set an email address which will be used for messages receiving."
156
+ msgstr "Alege o adresa email care sa fie folosita pentru primirea mesajelor."
157
+
158
+ #: contact_form.php:302
159
+ msgid "Additional options"
160
+ msgstr "Optiuni aditionale"
161
+
162
+ #: contact_form.php:305
163
+ msgid "Display Attachment block"
164
+ msgstr "Afisaza blocul de Atasamente"
165
+
166
+ #: contact_form.php:310
167
+ msgid "Users can attach files of the following types"
168
+ msgstr "Utilizatorii pot atasa fisiere de urmatoarele tipuri"
169
+
170
+ #: contact_form.php:314
171
+ msgid "Display Attachment explanations"
172
+ msgstr "Afisaza explicatii despre Atasamente"
173
+
174
+ #: contact_form.php:319
175
+ msgid "Display explanations after Attachment block"
176
+ msgstr "Afisaza explicatiile dupa blocul Atasament"
177
+
178
+ #: contact_form.php:323
179
+ msgid "Display Send me a copy block"
180
+ msgstr "Afisaza blocul Trimite-mi o copie"
181
+
182
+ #: contact_form.php:329
183
+ msgid "What use?"
184
+ msgstr "Ce sa folosesc?"
185
+
186
+ #: contact_form.php:334
187
+ msgid "Wp-mail"
188
+ msgstr "Wp-mail"
189
+
190
+ #: contact_form.php:335
191
+ msgid "To send mail you can use the wordpress wp_mail function"
192
+ msgstr "Pentru a trimite mailuri puteti folosi functia Wordpress wp_mail"
193
+
194
+ #: contact_form.php:343
195
+ msgid "Mail"
196
+ msgstr "Mail"
197
+
198
+ #: contact_form.php:344
199
+ msgid "To send mail you can use the php mail function"
200
+ msgstr "Pentru a trimite mailuri puteti folosi functia PHP mail"
201
+
202
+ #: contact_form.php:348
203
+ msgid "Change FROM fields of the contact form"
204
+ msgstr "Modifica linia DE LA din formularul de contact"
205
+
206
+ #: contact_form.php:354
207
+ msgid "Display phone field"
208
+ msgstr ""
209
+
210
+ #: contact_form.php:360
211
+ msgid "Display additional info in email"
212
+ msgstr "Afisaza informatii aditionale in email"
213
+
214
+ #: contact_form.php:365 contact_form.php:702
215
+ msgid "Sent from (ip address)"
216
+ msgstr "Trimis de la (adresa IP)"
217
+
218
+ #: contact_form.php:366 contact_form.php:707
219
+ msgid "Date/Time"
220
+ msgstr "Data/Ora"
221
+
222
+ #: contact_form.php:367 contact_form.php:712
223
+ msgid "Coming from (referer)"
224
+ msgstr "Venind de la (referinta)"
225
+
226
+ #: contact_form.php:368 contact_form.php:717
227
+ msgid "Using (user agent)"
228
+ msgstr "Folosind (Agent)"
229
+
230
+ #: contact_form.php:372
231
+ msgid "Change label for fields of the contact form"
232
+ msgstr "Schimba etichetele pentru campurile formularului de contact"
233
+
234
+ #: contact_form.php:386
235
+ msgid "Action after the send mail"
236
+ msgstr "Actiune dupa trimiterea mailului"
237
+
238
+ #: contact_form.php:388
239
+ msgid "Display text"
240
+ msgstr "Afisaza text"
241
+
242
+ #: contact_form.php:389
243
+ msgid "Text"
244
+ msgstr "Text"
245
+
246
+ #: contact_form.php:390
247
+ msgid "Redirect to page"
248
+ msgstr "Redirectioneaza la pagina"
249
+
250
+ #: contact_form.php:391
251
+ msgid "Url"
252
+ msgstr "Url"
253
+
254
+ #: contact_form.php:396
255
+ msgid "Save Changes"
256
+ msgstr "Salveaza schimbarile"
257
+
258
+ #: contact_form.php:433
259
+ msgid "Sorry, your e-mail could not be delivered."
260
+ msgstr "Ne pare rau, mailul dumneavoastra nu a putut fi livrat."
261
+
262
+ #: contact_form.php:503
263
+ msgid "You can attach files of the following types"
264
+ msgstr "Puteti atasa fisiere de urmatoarele tipuri"
265
+
266
+ #: contact_form.php:511
267
+ msgid "Send me a copy"
268
+ msgstr "Trimite-mi o copie"
269
+
270
+ #: contact_form.php:521
271
+ msgid "Submit"
272
+ msgstr "Trimite"
273
+
274
+ #: contact_form.php:560
275
+ msgid "Your name is required."
276
+ msgstr "Numele dumneavoastra este necesar."
277
+
278
+ #: contact_form.php:561
279
+ msgid "A proper e-mail address is required."
280
+ msgstr "O adresa email valida este necesara."
281
+
282
+ #: contact_form.php:562
283
+ msgid "Subject text is required."
284
+ msgstr "Subiectul mesajului este necesar"
285
+
286
+ #: contact_form.php:563
287
+ msgid "Message text is required."
288
+ msgstr "Textul mesajului este necesar."
289
+
290
+ #: contact_form.php:564
291
+ msgid "Please make corrections below and try again."
292
+ msgstr "Va rugam sa realizati corecturile de mai jos si sa incercati din nou."
293
+
294
+ #: contact_form.php:596
295
+ msgid "Attachment is broken."
296
+ msgstr "Atasamentul este stricat."
297
+
298
+ #: contact_form.php:609
299
+ msgid "Please complete the CAPTCHA."
300
+ msgstr "Va rugam completati CAPTCHA-ul"
301
+
302
+ #: contact_form.php:725
303
+ msgid "Contact from"
304
+ msgstr "Formular de contact"
305
+
306
+ #: contact_form.php:730
307
+ msgid "Name"
308
+ msgstr "Nume"
309
+
310
+ #: contact_form.php:733
311
+ msgid "Email"
312
+ msgstr "Email"
313
+
314
+ #: contact_form.php:738
315
+ msgid "Phone"
316
+ msgstr ""
317
+
318
+ #: contact_form.php:741
319
+ msgid "Subject"
320
+ msgstr "Subiect"
321
+
322
+ #: contact_form.php:744
323
+ msgid "Message"
324
+ msgstr "Mesaj"
325
+
326
+ #: contact_form.php:747
327
+ msgid "Site"
328
+ msgstr "Site"
329
+
330
+ #: contact_form.php:792
331
+ msgid "If you can see this MIME than your client doesn't accept MIME types!"
332
+ msgstr ""
333
+ "Daca vedeti acest MIME atunci clientul dumneavoastra nu accepta tipuri MIME!"
334
+
335
+ #: contact_form.php:846
336
+ msgid "FAQ"
337
+ msgstr "FAQ"
338
+
339
+ #: contact_form.php:847
340
+ msgid "Support"
341
+ msgstr "Suport tehnic"
342
+
343
+ #~ msgid "E-Mail Addresse:"
344
+ #~ msgstr "Indirizzo e-mail:"
345
+
346
+ #~ msgid "Install Now"
347
+ #~ msgstr "Installa Ora"
348
+
349
+ #~ msgid "BWS Plugins"
350
+ #~ msgstr "BWS Plugins"
languages/contact_form-ru_RU.mo CHANGED
Binary file
languages/contact_form-ru_RU.po CHANGED
@@ -2,34 +2,29 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-07-10 10:50+0300\n"
6
- "PO-Revision-Date: 2012-07-10 10:50+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
- "Language: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-Language: Russian\n"
16
- "X-Poedit-Country: RUSSIAN FEDERATION\n"
17
  "X-Poedit-SourceCharset: utf-8\n"
 
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
  #: contact_form.php:76
21
  msgid "Activated plugins"
22
  msgstr "Активированные плагины"
23
 
24
- #: contact_form.php:78
25
- #: contact_form.php:86
26
- #: contact_form.php:94
27
  msgid "Read more"
28
  msgstr "Читать далее"
29
 
30
- #: contact_form.php:78
31
- #: contact_form.php:802
32
- #: contact_form.php:811
33
  msgid "Settings"
34
  msgstr "Настройки"
35
 
@@ -55,11 +50,14 @@ msgid "Install now from wordpress.org"
55
  msgstr "Установить с wordpress.org"
56
 
57
  #: contact_form.php:96
58
- msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
59
- msgstr "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
 
 
 
 
60
 
61
- #: contact_form.php:108
62
- #: contact_form.php:262
63
  msgid "Contact Form Options"
64
  msgstr "Настройки Контактной Формы"
65
 
@@ -67,276 +65,289 @@ msgstr "Настройки Контактной Формы"
67
  msgid "Contact Form"
68
  msgstr "Контактная Форма"
69
 
70
- #: contact_form.php:136
71
- #: contact_form.php:180
72
- #: contact_form.php:216
73
- #: contact_form.php:366
74
  msgid "Name:"
75
  msgstr "Имя:"
76
 
77
- #: contact_form.php:137
78
- #: contact_form.php:181
79
- #: contact_form.php:217
80
- #: contact_form.php:367
81
  msgid "E-Mail Address:"
82
  msgstr "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
 
336
  #~ msgid "E-Mail Addresse:"
337
  #~ msgstr "E-mail адрес:"
 
338
  #~ msgid "Install Now"
339
  #~ msgstr "Установить сейчас"
 
340
  #~ msgid "BWS Plugins"
341
  #~ msgstr "Плагины BWS"
342
-
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-17 17:18+0200\n"
6
+ "PO-Revision-Date: 2012-10-17 17:18+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
+ "Language: ru_RU\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
 
 
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: contact_form.php:76
20
  msgid "Activated plugins"
21
  msgstr "Активированные плагины"
22
 
23
+ #: contact_form.php:78 contact_form.php:86 contact_form.php:94
 
 
24
  msgid "Read more"
25
  msgstr "Читать далее"
26
 
27
+ #: contact_form.php:78 contact_form.php:838 contact_form.php:847
 
 
28
  msgid "Settings"
29
  msgstr "Настройки"
30
 
50
  msgstr "Установить с wordpress.org"
51
 
52
  #: contact_form.php:96
53
+ msgid ""
54
+ "If you have any questions, please contact us via plugin@bestwebsoft.com or "
55
+ "fill in our contact form on our site"
56
+ msgstr ""
57
+ "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или "
58
+ "заполните контактную форму на нашем сайте"
59
 
60
+ #: contact_form.php:108 contact_form.php:269
 
61
  msgid "Contact Form Options"
62
  msgstr "Настройки Контактной Формы"
63
 
65
  msgid "Contact Form"
66
  msgstr "Контактная Форма"
67
 
68
+ #: contact_form.php:137 contact_form.php:183 contact_form.php:222
69
+ #: contact_form.php:379
 
 
70
  msgid "Name:"
71
  msgstr "Имя:"
72
 
73
+ #: contact_form.php:138 contact_form.php:184 contact_form.php:223
74
+ #: contact_form.php:380
 
 
75
  msgid "E-Mail Address:"
76
  msgstr "E-mail адрес:"
77
 
78
+ #: contact_form.php:139 contact_form.php:224 contact_form.php:381
79
+ msgid "Phone:"
80
+ msgstr "Телефон:"
81
+
82
+ #: contact_form.php:140 contact_form.php:185 contact_form.php:225
83
+ #: contact_form.php:382
84
  msgid "Subject:"
85
  msgstr "Тема:"
86
 
87
+ #: contact_form.php:141 contact_form.php:186 contact_form.php:226
88
+ #: contact_form.php:383
 
 
89
  msgid "Message:"
90
  msgstr "Сообщение:"
91
 
92
+ #: contact_form.php:142 contact_form.php:187 contact_form.php:227
93
+ #: contact_form.php:384
 
 
94
  msgid "Attachment:"
95
  msgstr "Прикрепить файл:"
96
 
97
+ #: contact_form.php:144 contact_form.php:189
 
98
  msgid "Thank you for contacting us."
99
  msgstr "Спасибо за контакт с нами."
100
 
 
 
 
 
101
  #: contact_form.php:237
102
+ msgid ""
103
+ "If the option 'Redirect to page' is selected then url field should be "
104
+ "fillied in the following format"
105
+ msgstr ""
106
+ "Если опция 'Перейти на страницу \"выбран, то Урл поле должно быть заполнено "
107
+ "в следующем формате"
108
+
109
+ #: contact_form.php:244 contact_form.php:249 contact_form.php:258
110
  msgid "Options saved."
111
  msgstr "Опции сохранены"
112
 
113
+ #: contact_form.php:252
114
  msgid "Such user is not exist. Settings are not saved."
115
  msgstr "Данный пользователь не найден. Настройки не сохранены"
116
 
117
+ #: contact_form.php:261
118
  msgid "Please input correct email. Settings are not saved."
119
  msgstr "Пожалуйста, введите корректный email. Настройки не сохранены."
120
 
121
+ #: contact_form.php:274
122
+ msgid ""
123
+ "If you would like to add a Contact Form to your website, just copy and put "
124
+ "this shortcode onto your post or page or widget:"
125
+ msgstr ""
126
+ "Если вы хотите добавить Контактную Форму на свой сайт, вам надо только "
127
+ "скопировать и вставить шорткод в контент страницы или поста или виджета:"
128
 
129
+ #: contact_form.php:275
130
+ msgid ""
131
+ "If information in the below fields are empty then the message will be send "
132
+ "to an address which was specified during registration."
133
+ msgstr ""
134
+ "Если информация в полях ниже отсутствует, соощения будут оправлены на email "
135
+ "адрес, который был указан при регистрации сайта."
136
 
137
+ #: contact_form.php:279
138
  msgid "Use email of wordpress user:"
139
  msgstr "Email пользователя сайта:"
140
 
141
+ #: contact_form.php:285
142
  msgid "Select user name"
143
  msgstr "Выберите имя пользователя"
144
 
145
+ #: contact_form.php:290
146
  msgid "Set a name of user who will get messages from a contact form."
147
+ msgstr ""
148
+ "Укажите логин пользователя, который будет получать сообщения контактной "
149
+ "формы."
150
 
151
+ #: contact_form.php:294
152
  msgid "Use this email:"
153
  msgstr "Использовать этот email:"
154
 
155
+ #: contact_form.php:300
156
  msgid "Set an email address which will be used for messages receiving."
157
  msgstr "Укажите email адрес, на который будут отправляться сообщения."
158
 
159
+ #: contact_form.php:304
160
  msgid "Additional options"
161
  msgstr "Дополнительные настройки"
162
 
163
+ #: contact_form.php:307
164
  msgid "Display Attachment block"
165
  msgstr "Отобразить блок Прикрепить файл"
166
 
167
+ #: contact_form.php:312
168
  msgid "Users can attach files of the following types"
169
  msgstr "Пользователи могут прикрепить файлы таких типов"
170
 
171
+ #: contact_form.php:316
172
  msgid "Display Attachment explanations"
173
  msgstr "Отобразить пояснения для блока Прикрепить файл"
174
 
175
+ #: contact_form.php:321
176
  msgid "Display explanations after Attachment block"
177
  msgstr "Отобразить пояснения после блока Прикрепить файл"
178
 
179
+ #: contact_form.php:325
180
  msgid "Display Send me a copy block"
181
  msgstr "Отобразить блок Отправить мне копию"
182
 
183
+ #: contact_form.php:331
184
  msgid "What use?"
185
  msgstr "Что использовать?"
186
 
187
+ #: contact_form.php:336
188
  msgid "Wp-mail"
189
  msgstr "Wp-mail"
190
 
191
+ #: contact_form.php:337
192
  msgid "To send mail you can use the wordpress wp_mail function"
193
  msgstr "Для отправки почты вы можете использовать функцию WordPress wp_mail"
194
 
195
+ #: contact_form.php:345
196
  msgid "Mail"
197
  msgstr "Mail"
198
 
199
+ #: contact_form.php:346
200
  msgid "To send mail you can use the php mail function"
201
  msgstr "Для отправки почты вы можете использовать функцию php mail"
202
 
203
+ #: contact_form.php:350
204
  msgid "Change FROM fields of the contact form"
205
  msgstr "Изменить поле ОТ в контактной форме"
206
 
207
+ #: contact_form.php:356
208
+ msgid "Display phone field"
209
+ msgstr "Отобразить поле для телефона"
210
+
211
+ #: contact_form.php:362
212
  msgid "Display additional info in email"
213
  msgstr "Отображение дополнительной информации в письме"
214
 
215
+ #: contact_form.php:367 contact_form.php:704
 
216
  msgid "Sent from (ip address)"
217
  msgstr "Отправлено от (ip адрес)"
218
 
219
+ #: contact_form.php:368 contact_form.php:709
 
220
  msgid "Date/Time"
221
  msgstr "Дата/Время"
222
 
223
+ #: contact_form.php:369 contact_form.php:714
 
224
  msgid "Coming from (referer)"
225
  msgstr "Пришло из (реферер)"
226
 
227
+ #: contact_form.php:370 contact_form.php:719
 
228
  msgid "Using (user agent)"
229
  msgstr "Используя (user agent)"
230
 
231
+ #: contact_form.php:374
232
  msgid "Change label for fields of the contact form"
233
  msgstr "Изменить названия полей контактной формы"
234
 
235
+ #: contact_form.php:388
236
  msgid "Action after the send mail"
237
  msgstr "Действие после отправки письма"
238
 
239
+ #: contact_form.php:390
240
  msgid "Display text"
241
  msgstr "Отобразить текст"
242
 
243
+ #: contact_form.php:391
244
  msgid "Text"
245
  msgstr "Текст"
246
 
247
+ #: contact_form.php:392
248
  msgid "Redirect to page"
249
  msgstr "Перенаправление на страницу"
250
 
251
+ #: contact_form.php:393
252
  msgid "Url"
253
  msgstr "Урл"
254
 
255
+ #: contact_form.php:398
256
  msgid "Save Changes"
257
  msgstr "Save Changes"
258
 
259
+ #: contact_form.php:435
260
  msgid "Sorry, your e-mail could not be delivered."
261
  msgstr "Извините, ваш email не может быть отправлен."
262
 
263
+ #: contact_form.php:505
264
  msgid "You can attach files of the following types"
265
  msgstr "Пользователи могут прикрепить файлы таких типов"
266
 
267
+ #: contact_form.php:513
268
  msgid "Send me a copy"
269
  msgstr "Отправить мне копию"
270
 
271
+ #: contact_form.php:523
272
  msgid "Submit"
273
  msgstr "Отправить"
274
 
275
+ #: contact_form.php:562
276
  msgid "Your name is required."
277
  msgstr "Ваше имя - это обязательное поле."
278
 
279
+ #: contact_form.php:563
280
  msgid "A proper e-mail address is required."
281
  msgstr "Поле e-mail адреса - обязательное для заполнения."
282
 
283
+ #: contact_form.php:564
284
  msgid "Subject text is required."
285
  msgstr "Поле Тема - обязательное поле."
286
 
287
+ #: contact_form.php:565
288
  msgid "Message text is required."
289
  msgstr "Поле Сообщение - обязательное поле."
290
 
291
+ #: contact_form.php:566
292
  msgid "Please make corrections below and try again."
293
+ msgstr ""
294
+ "Пожалуйста, сделайте исправления в отмеченных полях ниже и повторите попытку."
295
 
296
+ #: contact_form.php:598
297
  msgid "Attachment is broken."
298
  msgstr "Прикрепленный тип файла не поддерживается"
299
 
300
+ #: contact_form.php:611
301
  msgid "Please complete the CAPTCHA."
302
  msgstr "Пожалуйста, заполните КАПЧУ."
303
 
304
+ #: contact_form.php:727
305
  msgid "Contact from"
306
  msgstr "Контактная Форма"
307
 
308
+ #: contact_form.php:732
309
  msgid "Name"
310
  msgstr "Имя"
311
 
312
+ #: contact_form.php:735
313
  msgid "Email"
314
  msgstr "Email"
315
 
316
+ #: contact_form.php:740
317
+ msgid "Phone"
318
+ msgstr "Телефон"
319
+
320
+ #: contact_form.php:743
321
  msgid "Subject"
322
  msgstr "Тема"
323
 
324
+ #: contact_form.php:746
325
  msgid "Message"
326
  msgstr "Сообщение"
327
 
328
+ #: contact_form.php:749
329
  msgid "Site"
330
  msgstr "Сайт"
331
 
332
+ #: contact_form.php:794
333
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
334
+ msgstr ""
335
+ "Если вы можете видеть этот MIME значит ваш почтовый клиент не поддерживает "
336
+ "MIME тип!"
337
 
338
+ #: contact_form.php:848
339
  msgid "FAQ"
340
  msgstr "FAQ"
341
 
342
+ #: contact_form.php:849
343
  msgid "Support"
344
  msgstr "Поддержка"
345
 
346
  #~ msgid "E-Mail Addresse:"
347
  #~ msgstr "E-mail адрес:"
348
+
349
  #~ msgid "Install Now"
350
  #~ msgstr "Установить сейчас"
351
+
352
  #~ msgid "BWS Plugins"
353
  #~ msgstr "Плагины BWS"
 
languages/contact_form-sr_RS.mo ADDED
Binary file
languages/contact_form-sr_RS.po ADDED
@@ -0,0 +1,350 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: contact_form\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-17 17:16+0200\n"
6
+ "PO-Revision-Date: 2012-10-22 13:43+0200\n"
7
+ "Last-Translator: Radovan Georgijevic <radovan@georgijevic.info>\n"
8
+ "Language-Team: Georgijevic Team <http://www.georgijevic.info>\n"
9
+ "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
+ "Content-Transfer-Encoding: 8bit\n"
12
+ "X-Poedit-KeywordsList: __;_e\n"
13
+ "X-Poedit-Basepath: ..\n"
14
+ "X-Poedit-SourceCharset: UTF-8\n"
15
+ "X-Generator: Poedit 1.5.4\n"
16
+ "Language: sr_RS\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: contact_form.php:76
20
+ msgid "Activated plugins"
21
+ msgstr "Aktivni dodaci"
22
+
23
+ #: contact_form.php:78 contact_form.php:86 contact_form.php:94
24
+ msgid "Read more"
25
+ msgstr "Čitaj više"
26
+
27
+ #: contact_form.php:78 contact_form.php:836 contact_form.php:845
28
+ msgid "Settings"
29
+ msgstr "Podešavanja"
30
+
31
+ #: contact_form.php:84
32
+ msgid "Installed plugins"
33
+ msgstr "Instalirani dodaci"
34
+
35
+ #: contact_form.php:92
36
+ msgid "Recommended plugins"
37
+ msgstr "Preporučeni dodaci"
38
+
39
+ #: contact_form.php:94
40
+ msgid "Download"
41
+ msgstr "Preuzmi"
42
+
43
+ #: contact_form.php:94
44
+ #, php-format
45
+ msgid "Install %s"
46
+ msgstr "Instaliraj %s"
47
+
48
+ #: contact_form.php:94
49
+ msgid "Install now from wordpress.org"
50
+ msgstr "Instaliraj sa wordpress.org"
51
+
52
+ #: contact_form.php:96
53
+ msgid ""
54
+ "If you have any questions, please contact us via plugin@bestwebsoft.com or "
55
+ "fill in our contact form on our site"
56
+ msgstr ""
57
+ "Ako imate bilo kakva pitanja, kontaktirajte na mejl plugin@bestwebsoft.com "
58
+ "ili popunite kontakt formu na našem sajtu"
59
+
60
+ #: contact_form.php:108 contact_form.php:267
61
+ msgid "Contact Form Options"
62
+ msgstr "Opcije Kontakt Forme"
63
+
64
+ #: contact_form.php:108
65
+ msgid "Contact Form"
66
+ msgstr "Kontakt Forma"
67
+
68
+ #: contact_form.php:137 contact_form.php:183 contact_form.php:221
69
+ #: contact_form.php:377
70
+ msgid "Name:"
71
+ msgstr "Ime:"
72
+
73
+ #: contact_form.php:138 contact_form.php:184 contact_form.php:222
74
+ #: contact_form.php:378
75
+ msgid "E-Mail Address:"
76
+ msgstr "E-mail Adresa:"
77
+
78
+ #: contact_form.php:139 contact_form.php:379
79
+ msgid "Phone:"
80
+ msgstr ""
81
+
82
+ #: contact_form.php:140 contact_form.php:185 contact_form.php:223
83
+ #: contact_form.php:380
84
+ msgid "Subject:"
85
+ msgstr "Tema:"
86
+
87
+ #: contact_form.php:141 contact_form.php:186 contact_form.php:224
88
+ #: contact_form.php:381
89
+ msgid "Message:"
90
+ msgstr "Poruka:"
91
+
92
+ #: contact_form.php:142 contact_form.php:187 contact_form.php:225
93
+ #: contact_form.php:382
94
+ msgid "Attachment:"
95
+ msgstr "Priveži fajl:"
96
+
97
+ #: contact_form.php:144 contact_form.php:189
98
+ msgid "Thank you for contacting us."
99
+ msgstr "Hvala što ste nas kontaktirali."
100
+
101
+ #: contact_form.php:235
102
+ msgid ""
103
+ "If the option 'Redirect to page' is selected then url field should be "
104
+ "fillied in the following format"
105
+ msgstr ""
106
+ "Ako opcija 'Prosledi na stranu' je izabrana onda polje za URL možete "
107
+ "popuniti u sledećem formatu"
108
+
109
+ #: contact_form.php:242 contact_form.php:247 contact_form.php:256
110
+ msgid "Options saved."
111
+ msgstr "Opcije sačuvane"
112
+
113
+ #: contact_form.php:250
114
+ msgid "Such user is not exist. Settings are not saved."
115
+ msgstr "Takav korisnik ne postoji. Podešavanja nisu sačuvana"
116
+
117
+ #: contact_form.php:259
118
+ msgid "Please input correct email. Settings are not saved."
119
+ msgstr "Molim vam unesite ispravan mejl. Podešavanja nisu sačuvana."
120
+
121
+ #: contact_form.php:272
122
+ msgid ""
123
+ "If you would like to add a Contact Form to your website, just copy and put "
124
+ "this shortcode onto your post or page or widget:"
125
+ msgstr ""
126
+ "Ako želite da dodate Kontakt Formu na vaš veb sajt, jednostavno iskopirajte "
127
+ "ovaj kratak kod na vašu stranu, članak ili vidžet:"
128
+
129
+ #: contact_form.php:273
130
+ msgid ""
131
+ "If information in the below fields are empty then the message will be send "
132
+ "to an address which was specified during registration."
133
+ msgstr ""
134
+ "Ako je polje za podatke ispod prazno tada će poruka biti poslata na adresu "
135
+ "koja je navedena prilikom registracije."
136
+
137
+ #: contact_form.php:277
138
+ msgid "Use email of wordpress user:"
139
+ msgstr "Koristi mejl wordpress kosirnika:"
140
+
141
+ #: contact_form.php:283
142
+ msgid "Select user name"
143
+ msgstr "Odaberi korisničko ime"
144
+
145
+ #: contact_form.php:288
146
+ msgid "Set a name of user who will get messages from a contact form."
147
+ msgstr "Podesi ime korisnika koji će primiti poruku sa ove kontakt forme."
148
+
149
+ #: contact_form.php:292
150
+ msgid "Use this email:"
151
+ msgstr "Koristi ovaj mejl:"
152
+
153
+ #: contact_form.php:298
154
+ msgid "Set an email address which will be used for messages receiving."
155
+ msgstr "Podesi mejl adresu koja će biti korišćena za prijem poruka."
156
+
157
+ #: contact_form.php:302
158
+ msgid "Additional options"
159
+ msgstr "Dodatne opcije"
160
+
161
+ #: contact_form.php:305
162
+ msgid "Display Attachment block"
163
+ msgstr "Prikaži blok privezaka"
164
+
165
+ #: contact_form.php:310
166
+ msgid "Users can attach files of the following types"
167
+ msgstr "Korisnici mogu privezivati fajlove sledećih tipova"
168
+
169
+ #: contact_form.php:314
170
+ msgid "Display Attachment explanations"
171
+ msgstr "Prikaži objašnjenja privezaka"
172
+
173
+ #: contact_form.php:319
174
+ msgid "Display explanations after Attachment block"
175
+ msgstr "Prikaži objašnjenja posle bloka Privezaka"
176
+
177
+ #: contact_form.php:323
178
+ msgid "Display Send me a copy block"
179
+ msgstr "Prikaži Pošalji mi kopiju blok"
180
+
181
+ #: contact_form.php:329
182
+ msgid "What use?"
183
+ msgstr "Šta koritite?"
184
+
185
+ #: contact_form.php:334
186
+ msgid "Wp-mail"
187
+ msgstr "Wp-mail"
188
+
189
+ #: contact_form.php:335
190
+ msgid "To send mail you can use the wordpress wp_mail function"
191
+ msgstr "Da biste poslali mejl možete koristiti wordpress-ovu wp_mail funkciju"
192
+
193
+ #: contact_form.php:343
194
+ msgid "Mail"
195
+ msgstr "Mail"
196
+
197
+ #: contact_form.php:344
198
+ msgid "To send mail you can use the php mail function"
199
+ msgstr "Da biste poslali mejl možete koristiti php mail funkciju"
200
+
201
+ #: contact_form.php:348
202
+ msgid "Change FROM fields of the contact form"
203
+ msgstr "Promeni OD polja u kontakt formi"
204
+
205
+ #: contact_form.php:354
206
+ msgid "Display phone field"
207
+ msgstr ""
208
+
209
+ #: contact_form.php:360
210
+ msgid "Display additional info in email"
211
+ msgstr "Prikaži dodatne informacije u mejlu"
212
+
213
+ #: contact_form.php:365 contact_form.php:702
214
+ msgid "Sent from (ip address)"
215
+ msgstr "Poslato sa (ip adresa)"
216
+
217
+ #: contact_form.php:366 contact_form.php:707
218
+ msgid "Date/Time"
219
+ msgstr "Datum/Vreme"
220
+
221
+ #: contact_form.php:367 contact_form.php:712
222
+ msgid "Coming from (referer)"
223
+ msgstr "Došlo od (prosleđivač)"
224
+
225
+ #: contact_form.php:368 contact_form.php:717
226
+ msgid "Using (user agent)"
227
+ msgstr "Koristi (user agent)"
228
+
229
+ #: contact_form.php:372
230
+ msgid "Change label for fields of the contact form"
231
+ msgstr "Promeni oznaku za polja u kontakt formi"
232
+
233
+ #: contact_form.php:386
234
+ msgid "Action after the send mail"
235
+ msgstr "Akcija posle poslatog mejla"
236
+
237
+ #: contact_form.php:388
238
+ msgid "Display text"
239
+ msgstr "Prikaži tekst"
240
+
241
+ #: contact_form.php:389
242
+ msgid "Text"
243
+ msgstr "Tekst"
244
+
245
+ #: contact_form.php:390
246
+ msgid "Redirect to page"
247
+ msgstr "Preusmeri na stranu"
248
+
249
+ #: contact_form.php:391
250
+ msgid "Url"
251
+ msgstr "Url"
252
+
253
+ #: contact_form.php:396
254
+ msgid "Save Changes"
255
+ msgstr "Sačuvaj izmene"
256
+
257
+ #: contact_form.php:433
258
+ msgid "Sorry, your e-mail could not be delivered."
259
+ msgstr "Izvinite, vaš mejl nije mogao biti dostavljen."
260
+
261
+ #: contact_form.php:503
262
+ msgid "You can attach files of the following types"
263
+ msgstr "Možete privezati fajlove sledećih tipova"
264
+
265
+ #: contact_form.php:511
266
+ msgid "Send me a copy"
267
+ msgstr "Pošalji mi kopiju"
268
+
269
+ #: contact_form.php:521
270
+ msgid "Submit"
271
+ msgstr "Podnesi"
272
+
273
+ #: contact_form.php:560
274
+ msgid "Your name is required."
275
+ msgstr "Vaše ime je potrebno."
276
+
277
+ #: contact_form.php:561
278
+ msgid "A proper e-mail address is required."
279
+ msgstr "Ispravna e-mail adresa potrebna."
280
+
281
+ #: contact_form.php:562
282
+ msgid "Subject text is required."
283
+ msgstr "Tekst Teme je potreban."
284
+
285
+ #: contact_form.php:563
286
+ msgid "Message text is required."
287
+ msgstr "Tekst poruke je potreban."
288
+
289
+ #: contact_form.php:564
290
+ msgid "Please make corrections below and try again."
291
+ msgstr "Molimo vas da izvršite izmene ispod i pokušate ponovo."
292
+
293
+ #: contact_form.php:596
294
+ msgid "Attachment is broken."
295
+ msgstr "Privezakne radi"
296
+
297
+ #: contact_form.php:609
298
+ msgid "Please complete the CAPTCHA."
299
+ msgstr "Molimo vas popunite CAPTCHA."
300
+
301
+ #: contact_form.php:725
302
+ msgid "Contact from"
303
+ msgstr "Kontakt forma"
304
+
305
+ #: contact_form.php:730
306
+ msgid "Name"
307
+ msgstr "Ime"
308
+
309
+ #: contact_form.php:733
310
+ msgid "Email"
311
+ msgstr "Email"
312
+
313
+ #: contact_form.php:738
314
+ msgid "Phone"
315
+ msgstr ""
316
+
317
+ #: contact_form.php:741
318
+ msgid "Subject"
319
+ msgstr "Tema"
320
+
321
+ #: contact_form.php:744
322
+ msgid "Message"
323
+ msgstr "Poruka"
324
+
325
+ #: contact_form.php:747
326
+ msgid "Site"
327
+ msgstr "Sajt"
328
+
329
+ #: contact_form.php:792
330
+ msgid "If you can see this MIME than your client doesn't accept MIME types!"
331
+ msgstr ""
332
+ "Ako možete da vidite ovaj MIME to znači da vaš klijent ne prihvata MIME "
333
+ "tipove!"
334
+
335
+ #: contact_form.php:846
336
+ msgid "FAQ"
337
+ msgstr "FAQ"
338
+
339
+ #: contact_form.php:847
340
+ msgid "Support"
341
+ msgstr "Podrška"
342
+
343
+ #~ msgid "E-Mail Addresse:"
344
+ #~ msgstr "E-mail adresa:"
345
+
346
+ #~ msgid "Install Now"
347
+ #~ msgstr "Instaliraj Sada"
348
+
349
+ #~ msgid "BWS Plugins"
350
+ #~ msgstr "BWS Dodaci"
languages/contact_form-sv_SE.mo CHANGED
Binary file
languages/contact_form-sv_SE.po CHANGED
@@ -2,34 +2,29 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-07-10 10:50+0300\n"
6
- "PO-Revision-Date: 2012-07-10 10:50+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
- "Language: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-Language: Swedish\n"
16
- "X-Poedit-Country: SWEDEN\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 "Aktiverat plugin"
23
 
24
- #: contact_form.php:78
25
- #: contact_form.php:86
26
- #: contact_form.php:94
27
  msgid "Read more"
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
 
@@ -55,11 +50,14 @@ msgid "Install now from wordpress.org"
55
  msgstr "Installera från 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 "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
 
@@ -67,277 +65,286 @@ msgstr "Inställningar för Kontaktformulär"
67
  msgid "Contact Form"
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 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 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
 
337
  #~ msgid "E-Mail Addresse:"
338
  #~ msgstr "Epost adress"
 
339
  #~ msgid "Install Now"
340
  #~ msgstr "Installera nu"
 
341
  #~ msgid "BWS Plugins"
342
  #~ msgstr "BWS Plugins"
343
-
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-17 17:16+0200\n"
6
+ "PO-Revision-Date: 2012-10-17 17:16+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
+ "Language: sv_SE\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
 
 
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: contact_form.php:76
20
  msgid "Activated plugins"
21
  msgstr "Aktiverat plugin"
22
 
23
+ #: contact_form.php:78 contact_form.php:86 contact_form.php:94
 
 
24
  msgid "Read more"
25
  msgstr "Läs mer"
26
 
27
+ #: contact_form.php:78 contact_form.php:836 contact_form.php:845
 
 
28
  msgid "Settings"
29
  msgstr "Inställningar"
30
 
50
  msgstr "Installera från wordpress.org"
51
 
52
  #: contact_form.php:96
53
+ msgid ""
54
+ "If you have any questions, please contact us via plugin@bestwebsoft.com or "
55
+ "fill in our contact form on our site"
56
+ msgstr ""
57
+ "Om du har några frågor, var snäll och kontakta oss på plugin@bestwebsoft.com "
58
+ "eller använd fårt kontaktformulär på vår hemsida"
59
 
60
+ #: contact_form.php:108 contact_form.php:267
 
61
  msgid "Contact Form Options"
62
  msgstr "Inställningar för Kontaktformulär"
63
 
65
  msgid "Contact Form"
66
  msgstr "Kontak formulär"
67
 
68
+ #: contact_form.php:137 contact_form.php:183 contact_form.php:221
69
+ #: contact_form.php:377
 
 
70
  msgid "Name:"
71
  msgstr "Namn:"
72
 
73
+ #: contact_form.php:138 contact_form.php:184 contact_form.php:222
74
+ #: contact_form.php:378
 
 
75
  msgid "E-Mail Address:"
76
  msgstr "Epostadress:"
77
 
78
+ #: contact_form.php:139 contact_form.php:379
79
+ msgid "Phone:"
80
+ msgstr ""
81
+
82
+ #: contact_form.php:140 contact_form.php:185 contact_form.php:223
83
+ #: contact_form.php:380
84
  msgid "Subject:"
85
  msgstr "Rubrik:"
86
 
87
+ #: contact_form.php:141 contact_form.php:186 contact_form.php:224
88
+ #: contact_form.php:381
 
 
89
  msgid "Message:"
90
  msgstr "Meddelande:"
91
 
92
+ #: contact_form.php:142 contact_form.php:187 contact_form.php:225
93
+ #: contact_form.php:382
 
 
94
  msgid "Attachment:"
95
  msgstr "Bilaga:"
96
 
97
+ #: contact_form.php:144 contact_form.php:189
 
98
  msgid "Thank you for contacting us."
99
  msgstr "Tack för att du kontaktat oss."
100
 
101
+ #: contact_form.php:235
102
+ msgid ""
103
+ "If the option 'Redirect to page' is selected then url field should be "
104
+ "fillied in the following format"
105
  msgstr ""
106
 
107
+ #: contact_form.php:242 contact_form.php:247 contact_form.php:256
 
 
108
  msgid "Options saved."
109
  msgstr "Inställningar sparade"
110
 
111
+ #: contact_form.php:250
112
  msgid "Such user is not exist. Settings are not saved."
113
  msgstr "Sådan användare finns inte. Inställningar har inte sparats."
114
 
115
+ #: contact_form.php:259
116
  msgid "Please input correct email. Settings are not saved."
117
+ msgstr ""
118
+ "Var vänlig och ange en korrekt epostadress. Inställningar är inte sparade."
119
 
120
+ #: contact_form.php:272
121
+ msgid ""
122
+ "If you would like to add a Contact Form to your website, just copy and put "
123
+ "this shortcode onto your post or page or widget:"
124
+ msgstr ""
125
+ "Om du vill lägga till ett kontaktformulär på din hemsida, kopiera och "
126
+ "kilstra in denna snabbkod i ditt inlägg eller sida eller widget:"
127
 
128
+ #: contact_form.php:273
129
+ msgid ""
130
+ "If information in the below fields are empty then the message will be send "
131
+ "to an address which was specified during registration."
132
+ msgstr ""
133
+ "Om information i fälten nedan är tomma så kommer meddelandet att skickas "
134
+ "till en adress som specifierades vid registrering."
135
 
136
+ #: contact_form.php:277
137
  msgid "Use email of wordpress user:"
138
  msgstr "Använd epostadress för wordpress användare:"
139
 
140
+ #: contact_form.php:283
141
  msgid "Select user name"
142
  msgstr "Välj användarnamn"
143
 
144
+ #: contact_form.php:288
145
  msgid "Set a name of user who will get messages from a contact form."
146
+ msgstr ""
147
+ "Ange ett namn på en användare som kommer få meddelandena från "
148
+ "kontaktformulären"
149
 
150
+ #: contact_form.php:292
151
  msgid "Use this email:"
152
  msgstr "Använd denna epost:"
153
 
154
+ #: contact_form.php:298
155
  msgid "Set an email address which will be used for messages receiving."
156
  msgstr "Ange en epostadress som ska användas för att ta emot meddelandena."
157
 
158
+ #: contact_form.php:302
159
  msgid "Additional options"
160
  msgstr "Fler val"
161
 
162
+ #: contact_form.php:305
163
  msgid "Display Attachment block"
164
  msgstr "Visa bifogade"
165
 
166
+ #: contact_form.php:310
167
  msgid "Users can attach files of the following types"
168
  msgstr "Användare kan lägga till filer av följande typer"
169
 
170
+ #: contact_form.php:314
171
  msgid "Display Attachment explanations"
172
  msgstr ""
173
 
174
+ #: contact_form.php:319
175
  msgid "Display explanations after Attachment block"
176
  msgstr ""
177
 
178
+ #: contact_form.php:323
179
  msgid "Display Send me a copy block"
180
  msgstr "Visa \"Skicka mig en kopia\""
181
 
182
+ #: contact_form.php:329
183
  msgid "What use?"
184
  msgstr ""
185
 
186
+ #: contact_form.php:334
187
  msgid "Wp-mail"
188
  msgstr "Wp-mail"
189
 
190
+ #: contact_form.php:335
191
  msgid "To send mail you can use the wordpress wp_mail function"
192
  msgstr ""
193
 
194
+ #: contact_form.php:343
195
  msgid "Mail"
196
  msgstr "Mail"
197
 
198
+ #: contact_form.php:344
199
  msgid "To send mail you can use the php mail function"
200
  msgstr ""
201
 
202
+ #: contact_form.php:348
203
  msgid "Change FROM fields of the contact form"
204
  msgstr "Förändring från fält i kontaktformuläret"
205
 
206
+ #: contact_form.php:354
207
+ msgid "Display phone field"
208
+ msgstr ""
209
+
210
+ #: contact_form.php:360
211
  msgid "Display additional info in email"
212
  msgstr ""
213
 
214
+ #: contact_form.php:365 contact_form.php:702
 
215
  msgid "Sent from (ip address)"
216
  msgstr "Skickat från (IP-adress)"
217
 
218
+ #: contact_form.php:366 contact_form.php:707
 
219
  msgid "Date/Time"
220
  msgstr "Dag/tid"
221
 
222
+ #: contact_form.php:367 contact_form.php:712
 
223
  msgid "Coming from (referer)"
224
  msgstr "Skickat från (referent)"
225
 
226
+ #: contact_form.php:368 contact_form.php:717
 
227
  msgid "Using (user agent)"
228
  msgstr "med (user agent)"
229
 
230
+ #: contact_form.php:372
231
  msgid "Change label for fields of the contact form"
232
  msgstr "Ändra etiketter för fält på kontaktformuläret"
233
 
234
+ #: contact_form.php:386
235
  msgid "Action after the send mail"
236
  msgstr ""
237
 
238
+ #: contact_form.php:388
239
  #, fuzzy
240
  msgid "Display text"
241
  msgstr "Visa bifogade"
242
 
243
+ #: contact_form.php:389
244
  msgid "Text"
245
  msgstr ""
246
 
247
+ #: contact_form.php:390
248
  msgid "Redirect to page"
249
  msgstr ""
250
 
251
+ #: contact_form.php:391
252
  msgid "Url"
253
  msgstr ""
254
 
255
+ #: contact_form.php:396
256
  msgid "Save Changes"
257
  msgstr "Spara ändringar"
258
 
259
+ #: contact_form.php:433
260
  msgid "Sorry, your e-mail could not be delivered."
261
  msgstr "Beklagar, men ditt meddelande kunde inte levereras."
262
 
263
+ #: contact_form.php:503
264
  msgid "You can attach files of the following types"
265
  msgstr "Du kan lägga till filer av följande typ."
266
 
267
+ #: contact_form.php:511
268
  msgid "Send me a copy"
269
  msgstr "Skicka mig en kopia"
270
 
271
+ #: contact_form.php:521
272
  msgid "Submit"
273
  msgstr "Skicka"
274
 
275
+ #: contact_form.php:560
276
  msgid "Your name is required."
277
  msgstr "Ditt namn krävs"
278
 
279
+ #: contact_form.php:561
280
  msgid "A proper e-mail address is required."
281
  msgstr "En korrekt epostadress krävs."
282
 
283
+ #: contact_form.php:562
284
  msgid "Subject text is required."
285
  msgstr "Rubrik krävs."
286
 
287
+ #: contact_form.php:563
288
  msgid "Message text is required."
289
  msgstr "Meddelandetext krävs."
290
 
291
+ #: contact_form.php:564
292
  msgid "Please make corrections below and try again."
293
  msgstr "Var vänlig och gör ändringarna nedan och försök igen."
294
 
295
+ #: contact_form.php:596
296
  msgid "Attachment is broken."
297
  msgstr "Fel vid bilaga"
298
 
299
+ #: contact_form.php:609
300
  msgid "Please complete the CAPTCHA."
301
  msgstr "Var vänlig och fyll i CAPTCHA."
302
 
303
+ #: contact_form.php:725
304
  msgid "Contact from"
305
  msgstr "Kontakformulär"
306
 
307
+ #: contact_form.php:730
308
  msgid "Name"
309
  msgstr "Namn"
310
 
311
+ #: contact_form.php:733
312
  msgid "Email"
313
  msgstr "Epost"
314
 
315
+ #: contact_form.php:738
316
+ msgid "Phone"
317
+ msgstr ""
318
+
319
+ #: contact_form.php:741
320
  msgid "Subject"
321
  msgstr "Rubrik"
322
 
323
+ #: contact_form.php:744
324
  msgid "Message"
325
  msgstr "Meddelande"
326
 
327
+ #: contact_form.php:747
328
  msgid "Site"
329
  msgstr "www"
330
 
331
+ #: contact_form.php:792
332
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
333
  msgstr "Om du ser detta MIME så stödjer inte din client MIME!"
334
 
335
+ #: contact_form.php:846
336
  msgid "FAQ"
337
  msgstr "Vanliga frågor"
338
 
339
+ #: contact_form.php:847
340
  msgid "Support"
341
  msgstr "Support"
342
 
343
  #~ msgid "E-Mail Addresse:"
344
  #~ msgstr "Epost adress"
345
+
346
  #~ msgid "Install Now"
347
  #~ msgstr "Installera nu"
348
+
349
  #~ msgid "BWS Plugins"
350
  #~ msgstr "BWS Plugins"
 
languages/contact_form-tr_TR.mo CHANGED
Binary file
languages/contact_form-tr_TR.po CHANGED
@@ -2,34 +2,29 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-07-10 10:50+0300\n"
6
- "PO-Revision-Date: 2012-07-10 10:50+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
- "Language: \n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
15
- "X-Poedit-Language: Italian\n"
16
- "X-Poedit-Country: ITALY\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 "Aktif eklentiler"
23
 
24
- #: contact_form.php:78
25
- #: contact_form.php:86
26
- #: contact_form.php:94
27
  msgid "Read more"
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
 
@@ -55,11 +50,14 @@ msgid "Install now from wordpress.org"
55
  msgstr "Wordpress.org dan şimdi yükleyin"
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 "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
 
@@ -67,277 +65,281 @@ msgstr "İletişim Formu Seçenekleri"
67
  msgid "Contact Form"
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
 
337
  #~ msgid "E-Mail Addresse:"
338
  #~ msgstr "Indirizzo e-mail:"
 
339
  #~ msgid "Install Now"
340
  #~ msgstr "Installa Ora"
 
341
  #~ msgid "BWS Plugins"
342
  #~ msgstr "BWS Plugins"
343
-
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-10-17 17:17+0200\n"
6
+ "PO-Revision-Date: 2012-10-17 17:17+0200\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
+ "Language: it_IT\n"
10
  "MIME-Version: 1.0\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "X-Poedit-KeywordsList: __;_e\n"
14
  "X-Poedit-Basepath: ..\n"
 
 
15
  "X-Poedit-SourceCharset: utf-8\n"
16
+ "X-Generator: Poedit 1.5.4\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
  #: contact_form.php:76
20
  msgid "Activated plugins"
21
  msgstr "Aktif eklentiler"
22
 
23
+ #: contact_form.php:78 contact_form.php:86 contact_form.php:94
 
 
24
  msgid "Read more"
25
  msgstr "Devamı"
26
 
27
+ #: contact_form.php:78 contact_form.php:836 contact_form.php:845
 
 
28
  msgid "Settings"
29
  msgstr "Ayarlar"
30
 
50
  msgstr "Wordpress.org dan şimdi yükleyin"
51
 
52
  #: contact_form.php:96
53
+ msgid ""
54
+ "If you have any questions, please contact us via plugin@bestwebsoft.com or "
55
+ "fill in our contact form on our site"
56
+ msgstr ""
57
+ "Herhangi bir sorunuz varsa, lütfen plugin@bestwebsoft.com aracılığıyla bize "
58
+ "ulaşın veya sitemizdeki iletişim formunu kullanın"
59
 
60
+ #: contact_form.php:108 contact_form.php:267
 
61
  msgid "Contact Form Options"
62
  msgstr "İletişim Formu Seçenekleri"
63
 
65
  msgid "Contact Form"
66
  msgstr "İletişim Formu"
67
 
68
+ #: contact_form.php:137 contact_form.php:183 contact_form.php:221
69
+ #: contact_form.php:377
 
 
70
  msgid "Name:"
71
  msgstr "Adınız Soyadınız :"
72
 
73
+ #: contact_form.php:138 contact_form.php:184 contact_form.php:222
74
+ #: contact_form.php:378
 
 
75
  msgid "E-Mail Address:"
76
  msgstr "E-mail Adresiniz :"
77
 
78
+ #: contact_form.php:139 contact_form.php:379
79
+ msgid "Phone:"
80
+ msgstr ""
81
+
82
+ #: contact_form.php:140 contact_form.php:185 contact_form.php:223
83
+ #: contact_form.php:380
84
  msgid "Subject:"
85
  msgstr "Konu:"
86
 
87
+ #: contact_form.php:141 contact_form.php:186 contact_form.php:224
88
+ #: contact_form.php:381
 
 
89
  msgid "Message:"
90
  msgstr "Mesajınız:"
91
 
92
+ #: contact_form.php:142 contact_form.php:187 contact_form.php:225
93
+ #: contact_form.php:382
 
 
94
  msgid "Attachment:"
95
  msgstr "Dosya Eki:"
96
 
97
+ #: contact_form.php:144 contact_form.php:189
 
98
  msgid "Thank you for contacting us."
99
  msgstr "Bizimle bağlantı kurduğunuz için teşekkür ederiz."
100
 
101
+ #: contact_form.php:235
102
+ msgid ""
103
+ "If the option 'Redirect to page' is selected then url field should be "
104
+ "fillied in the following format"
105
  msgstr ""
106
 
107
+ #: contact_form.php:242 contact_form.php:247 contact_form.php:256
 
 
108
  msgid "Options saved."
109
  msgstr "Ayarlar Kayıt Edildi."
110
 
111
+ #: contact_form.php:250
112
  msgid "Such user is not exist. Settings are not saved."
113
  msgstr "Böyle bir kullanıcı yok. Ayarlar kayıt edilemedi."
114
 
115
+ #: contact_form.php:259
116
  msgid "Please input correct email. Settings are not saved."
117
  msgstr "Böyle bir mail bulunumadı. Lütfen doğru bir mail giriniz."
118
 
119
+ #: contact_form.php:272
120
+ msgid ""
121
+ "If you would like to add a Contact Form to your website, just copy and put "
122
+ "this shortcode onto your post or page or widget:"
123
+ msgstr ""
124
+ "İletişim formunu sitenize yerleştirmek istiyorsanız lütfen kısa kodu yeni "
125
+ "sayfa içerisine html modunda iken ekleyiniz:"
126
 
127
+ #: contact_form.php:273
128
+ msgid ""
129
+ "If information in the below fields are empty then the message will be send "
130
+ "to an address which was specified during registration."
131
  msgstr "Lütfen aşağıdaki alanları doğru ve eksiksiz olarak doldurun."
132
 
133
+ #: contact_form.php:277
134
  msgid "Use email of wordpress user:"
135
  msgstr "Kullanıcı adı veya mail girin"
136
 
137
+ #: contact_form.php:283
138
  msgid "Select user name"
139
  msgstr "Kullanıcı adı seçin"
140
 
141
+ #: contact_form.php:288
142
  msgid "Set a name of user who will get messages from a contact form."
143
  msgstr "Kullanıcı bir iletişim formunu mesajları alacak bir isim ayarlayın."
144
 
145
+ #: contact_form.php:292
146
  msgid "Use this email:"
147
  msgstr "Bu e-posta adresini kullan:"
148
 
149
+ #: contact_form.php:298
150
  msgid "Set an email address which will be used for messages receiving."
151
  msgstr "Mesaj almak için kullanılan bir e-posta adresi ayarlayın."
152
 
153
+ #: contact_form.php:302
154
  msgid "Additional options"
155
  msgstr "Ek Seçenekler"
156
 
157
+ #: contact_form.php:305
158
  msgid "Display Attachment block"
159
  msgstr "Eklenti Bloğunu Göster"
160
 
161
+ #: contact_form.php:310
162
  msgid "Users can attach files of the following types"
163
  msgstr "Kullanıcılar aşağıdaki türdeki dosyaları yükleyebilir"
164
 
165
+ #: contact_form.php:314
166
  msgid "Display Attachment explanations"
167
  msgstr ""
168
 
169
+ #: contact_form.php:319
170
  msgid "Display explanations after Attachment block"
171
  msgstr ""
172
 
173
+ #: contact_form.php:323
174
  msgid "Display Send me a copy block"
175
  msgstr "Bana bir kopya gönder bloğunu göster"
176
 
177
+ #: contact_form.php:329
178
  msgid "What use?"
179
  msgstr ""
180
 
181
+ #: contact_form.php:334
182
  msgid "Wp-mail"
183
  msgstr "Wp-mail"
184
 
185
+ #: contact_form.php:335
186
  msgid "To send mail you can use the wordpress wp_mail function"
187
  msgstr ""
188
 
189
+ #: contact_form.php:343
190
  msgid "Mail"
191
  msgstr "Mail"
192
 
193
+ #: contact_form.php:344
194
  msgid "To send mail you can use the php mail function"
195
  msgstr ""
196
 
197
+ #: contact_form.php:348
198
  msgid "Change FROM fields of the contact form"
199
  msgstr "Iletişim formu alanları DAN değiştirin"
200
 
201
+ #: contact_form.php:354
202
+ msgid "Display phone field"
203
+ msgstr ""
204
+
205
+ #: contact_form.php:360
206
  msgid "Display additional info in email"
207
  msgstr ""
208
 
209
+ #: contact_form.php:365 contact_form.php:702
 
210
  msgid "Sent from (ip address)"
211
  msgstr "Geldiği (ip adresi)"
212
 
213
+ #: contact_form.php:366 contact_form.php:707
 
214
  msgid "Date/Time"
215
  msgstr "Tarih/Zaman"
216
 
217
+ #: contact_form.php:367 contact_form.php:712
 
218
  msgid "Coming from (referer)"
219
  msgstr "Gelen"
220
 
221
+ #: contact_form.php:368 contact_form.php:717
 
222
  msgid "Using (user agent)"
223
  msgstr "Using (user agent)"
224
 
225
+ #: contact_form.php:372
226
  msgid "Change label for fields of the contact form"
227
  msgstr "Iletişim formu alanlar için değişim etiket"
228
 
229
+ #: contact_form.php:386
230
  msgid "Action after the send mail"
231
  msgstr ""
232
 
233
+ #: contact_form.php:388
234
  #, fuzzy
235
  msgid "Display text"
236
  msgstr "Eklenti Bloğunu Göster"
237
 
238
+ #: contact_form.php:389
239
  msgid "Text"
240
  msgstr ""
241
 
242
+ #: contact_form.php:390
243
  msgid "Redirect to page"
244
  msgstr ""
245
 
246
+ #: contact_form.php:391
247
  msgid "Url"
248
  msgstr ""
249
 
250
+ #: contact_form.php:396
251
  msgid "Save Changes"
252
  msgstr "Değişiklikler Kayıt Edildi"
253
 
254
+ #: contact_form.php:433
255
  msgid "Sorry, your e-mail could not be delivered."
256
  msgstr "Üzgünüz, e-posta gönderilemedi."
257
 
258
+ #: contact_form.php:503
259
  msgid "You can attach files of the following types"
260
  msgstr "Aşağıdaki türlerde dosya ekleyebilirsiniz"
261
 
262
+ #: contact_form.php:511
263
  msgid "Send me a copy"
264
  msgstr "Bir kopyasını banada gönder"
265
 
266
+ #: contact_form.php:521
267
  msgid "Submit"
268
  msgstr "Gönder"
269
 
270
+ #: contact_form.php:560
271
  msgid "Your name is required."
272
  msgstr "Adınız ve soyadınız gereklidir."
273
 
274
+ #: contact_form.php:561
275
  msgid "A proper e-mail address is required."
276
  msgstr "Düzgün bir e-posta adresi gereklidir."
277
 
278
+ #: contact_form.php:562
279
  msgid "Subject text is required."
280
  msgstr "Konu metni gereklidir."
281
 
282
+ #: contact_form.php:563
283
  msgid "Message text is required."
284
  msgstr "Mesaj metni gereklidir."
285
 
286
+ #: contact_form.php:564
287
  msgid "Please make corrections below and try again."
288
  msgstr "Lütfen aşağıdaki düzeltmeleri yapın ve tekrar deneyin."
289
 
290
+ #: contact_form.php:596
291
  msgid "Attachment is broken."
292
  msgstr "Eklenti Hatalı"
293
 
294
+ #: contact_form.php:609
295
  msgid "Please complete the CAPTCHA."
296
  msgstr "CAPTCHA Doldurunuz"
297
 
298
+ #: contact_form.php:725
299
  msgid "Contact from"
300
  msgstr "Adlı Kişiden Mail Var"
301
 
302
+ #: contact_form.php:730
303
  msgid "Name"
304
  msgstr "Adınız Soyadınız"
305
 
306
+ #: contact_form.php:733
307
  msgid "Email"
308
  msgstr "e-mail"
309
 
310
+ #: contact_form.php:738
311
+ msgid "Phone"
312
+ msgstr ""
313
+
314
+ #: contact_form.php:741
315
  msgid "Subject"
316
  msgstr "Konu"
317
 
318
+ #: contact_form.php:744
319
  msgid "Message"
320
  msgstr "Mesaj"
321
 
322
+ #: contact_form.php:747
323
  msgid "Site"
324
  msgstr "Site"
325
 
326
+ #: contact_form.php:792
327
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
328
  msgstr "Istemci daha bu MIME görürseniz MIME türlerini kabul etmez!"
329
 
330
+ #: contact_form.php:846
331
  msgid "FAQ"
332
  msgstr "Sık Sorulanlar"
333
 
334
+ #: contact_form.php:847
335
  msgid "Support"
336
  msgstr "Destek"
337
 
338
  #~ msgid "E-Mail Addresse:"
339
  #~ msgstr "Indirizzo e-mail:"
340
+
341
  #~ msgid "Install Now"
342
  #~ msgstr "Installa Ora"
343
+
344
  #~ msgid "BWS Plugins"
345
  #~ msgstr "BWS Plugins"
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: bestwebsoft
3
  Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10&product_id=13
4
  Tags: Contact Form, text, contact, form, contacts, contakt form, request, contact me, feedback form, feedback, contact button, contact form plugin, contacts form plugin, attachment, send, copy, atachment, send copy
5
  Requires at least: 2.9
6
- Tested up to: 3.4.1
7
- Stable tag: 3.21
8
 
9
  Add Contact Form to your WordPress website.
10
 
@@ -27,6 +27,7 @@ Contact Form allows you to add a feedback form easilly and simply to a post or a
27
  * Arabic (ar) (thanks to Hammad Alshammari (ABU HATIM), www.abuhatim.net)
28
  * Bulgarian (bg_BG) (thanks to Martin Jekov)
29
  * Brazilian Portuguese (pt_BR) (thanks to <a href="mailto:brenojac@gmail.com">Breno Jacinto</a>, www.iconis.org.br)
 
30
  * Danish (da_DK) (thanks to Mads Hannibal)
31
  * Dutch (nl_NL) (thanks to <a href="ronald@hostingu.nl">HostingU, Ronald Verheul</a>, Jan Boeijink )
32
  * French (fr_FR) (thanks to Alain Thomas and Vincent Cibelli)
@@ -35,9 +36,12 @@ Contact Form allows you to add a feedback form easilly and simply to a post or a
35
  * Hebrew (he_IL) (thanks to Sagive SEO)
36
  * Hindi (hi_IN) (thanks to <a href="mailto:ash.pr@outshinesolutions.com">Team Outshine</a>)
37
  * Italian (it_IT) (thanks to <a href="mailto:ilian@ultra-violet.it">Ilian Gagliardi</a>)
 
38
  * Norwegian (nb_NO) (thanks to Tore Hjartland)
39
  * Polish (pl_PL) (thanks to Jarek Spirydowicz)
 
40
  * Russian (ru_RU)
 
41
  * Spanish (es_ES) (thanks to Jesús Parra)
42
  * Swedish (sv_SV) (thanks to Martin Tonek)
43
  * Turkish (tr_TR) (thanks to <a herf="mailto:d-bulent@hotmail.com ">Devrim Bulent Ibis</a>, www.devrimhoca.com)
@@ -99,6 +103,20 @@ Here is an example for German language files.
99
 
100
  == Changelog ==
101
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
102
  = V3.21 - 10.07.2012 =
103
  * NEW : Hebrew language file is added to the plugin.
104
  * Update : We updated French language file.
@@ -218,6 +236,18 @@ Here is an example for German language files.
218
 
219
  == Upgrade Notice ==
220
 
 
 
 
 
 
 
 
 
 
 
 
 
221
  = V3.21 =
222
  Hebrew language file is added to the plugin. We updated French language file. We updated all functionality for wordpress 3.4.1. In the email in the field Date/Time used correct time zone - instead of UTC we use local settings which are setup on the page Settings -> General.
223
 
3
  Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=10&product_id=13
4
  Tags: Contact Form, text, contact, form, contacts, contakt form, request, contact me, feedback form, feedback, contact button, contact form plugin, contacts form plugin, attachment, send, copy, atachment, send copy
5
  Requires at least: 2.9
6
+ Tested up to: 3.4.2
7
+ Stable tag: 3.25
8
 
9
  Add Contact Form to your WordPress website.
10
 
27
  * Arabic (ar) (thanks to Hammad Alshammari (ABU HATIM), www.abuhatim.net)
28
  * Bulgarian (bg_BG) (thanks to Martin Jekov)
29
  * Brazilian Portuguese (pt_BR) (thanks to <a href="mailto:brenojac@gmail.com">Breno Jacinto</a>, www.iconis.org.br)
30
+ * Czech (cs_CZ) (thanks to Petr Zápotocký)
31
  * Danish (da_DK) (thanks to Mads Hannibal)
32
  * Dutch (nl_NL) (thanks to <a href="ronald@hostingu.nl">HostingU, Ronald Verheul</a>, Jan Boeijink )
33
  * French (fr_FR) (thanks to Alain Thomas and Vincent Cibelli)
36
  * Hebrew (he_IL) (thanks to Sagive SEO)
37
  * Hindi (hi_IN) (thanks to <a href="mailto:ash.pr@outshinesolutions.com">Team Outshine</a>)
38
  * Italian (it_IT) (thanks to <a href="mailto:ilian@ultra-violet.it">Ilian Gagliardi</a>)
39
+ * Japanese (ja) (thanks to Foken)
40
  * Norwegian (nb_NO) (thanks to Tore Hjartland)
41
  * Polish (pl_PL) (thanks to Jarek Spirydowicz)
42
+ * Romanian (ro_RO) (thanks to George Bejan and Cosmin Berescu)
43
  * Russian (ru_RU)
44
+ * Serbian (sr_RS) (thanks to Georgijevic Team, www.georgijevic.info)
45
  * Spanish (es_ES) (thanks to Jesús Parra)
46
  * Swedish (sv_SV) (thanks to Martin Tonek)
47
  * Turkish (tr_TR) (thanks to <a herf="mailto:d-bulent@hotmail.com ">Devrim Bulent Ibis</a>, www.devrimhoca.com)
103
 
104
  == Changelog ==
105
 
106
+ = V3.25 - 22.11.2012 =
107
+ * NEW : Added phone number as additiional form field.
108
+ * NEW : Serbian language file is added to the plugin.
109
+
110
+ = V3.24 - 12.08.2012 =
111
+ * NEW : Czech and Romanian language files are added to the plugin.
112
+
113
+ = V3.23 - 03.08.2012 =
114
+ * Bugfix : Cross Site Request Forgery bug was fixed.
115
+
116
+ = V3.22 - 24.07.2012 =
117
+ * NEW : Japanese language file is added to the plugin.
118
+ * Bugfix : Cross Site Request Forgery bug was fixed.
119
+
120
  = V3.21 - 10.07.2012 =
121
  * NEW : Hebrew language file is added to the plugin.
122
  * Update : We updated French language file.
236
 
237
  == Upgrade Notice ==
238
 
239
+ = V3.25 =
240
+ Added phone number as additiional form field. Serbian language file is added to the plugin.
241
+
242
+ = V3.24 =
243
+ Czech and Romanian language files are added to the plugin.
244
+
245
+ = V3.23 =
246
+ Cross Site Request Forgery bug was fixed.
247
+
248
+ = V3.22 =
249
+ Japanese language file is added to the plugin. Cross Site Request Forgery bug was fixed.
250
+
251
  = V3.21 =
252
  Hebrew language file is added to the plugin. We updated French language file. We updated all functionality for wordpress 3.4.1. In the email in the field Date/Time used correct time zone - instead of UTC we use local settings which are setup on the page Settings -> General.
253
 
screenshot-1.jpg CHANGED
File without changes
screenshot-2.jpg CHANGED
File without changes
screenshot-3.jpg CHANGED
File without changes
screenshot-5.jpg CHANGED
File without changes