Contact Form by BestWebSoft - Version 3.20

Version Description

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

Release Info

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

Code changes from version 3.19 to 3.20

Files changed (40) hide show
  1. contact_form.php +68 -20
  2. css/style.css +5 -1
  3. languages/contact_form-ar.mo +0 -0
  4. languages/contact_form-ar.po +105 -78
  5. languages/contact_form-bg_BG.mo +0 -0
  6. languages/contact_form-bg_BG.po +105 -78
  7. languages/contact_form-da_DK.mo +0 -0
  8. languages/contact_form-da_DK.po +105 -78
  9. languages/contact_form-de_DE.mo +0 -0
  10. languages/contact_form-de_DE.po +105 -78
  11. languages/contact_form-el_GR.mo +0 -0
  12. languages/contact_form-el_GR.po +105 -78
  13. languages/contact_form-es_ES.mo +0 -0
  14. languages/contact_form-es_ES.po +105 -78
  15. languages/contact_form-fr_FR.mo +0 -0
  16. languages/contact_form-fr_FR.po +1137 -144
  17. languages/contact_form-hi_IN.mo +0 -0
  18. languages/contact_form-hi_IN.po +105 -78
  19. languages/contact_form-it_IT.mo +0 -0
  20. languages/contact_form-it_IT.po +105 -78
  21. languages/contact_form-lt_LT.mo +0 -0
  22. languages/contact_form-lt_LT.po +105 -78
  23. languages/contact_form-nb_NO.mo +0 -0
  24. languages/contact_form-nb_NO.po +105 -78
  25. languages/contact_form-nl_NL.mo +0 -0
  26. languages/contact_form-nl_NL.po +105 -78
  27. languages/contact_form-pl_PL.mo +0 -0
  28. languages/contact_form-pl_PL.po +107 -79
  29. languages/contact_form-pt_BR.mo +0 -0
  30. languages/contact_form-pt_BR.po +105 -78
  31. languages/contact_form-pt_PT.mo +0 -0
  32. languages/contact_form-pt_PT.po +105 -78
  33. languages/contact_form-ru_RU.mo +0 -0
  34. languages/contact_form-ru_RU.po +104 -78
  35. languages/contact_form-sv_SE.mo +0 -0
  36. languages/contact_form-sv_SE.po +105 -78
  37. languages/contact_form-tr_TR.mo +0 -0
  38. languages/contact_form-tr_TR.po +105 -78
  39. readme.txt +8 -1
  40. screenshot-4.jpg +0 -0
contact_form.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Contact Form Plugin
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: Plugin for Contact Form.
6
  Author: BestWebSoft
7
- Version: 3.19
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
@@ -137,7 +137,10 @@ if( ! function_exists( 'cntctfrm_settings' ) ) {
137
  'cntctfrm_email_label' => __( "E-Mail Address:", 'contact_form' ),
138
  'cntctfrm_subject_label' => __( "Subject:", 'contact_form' ),
139
  'cntctfrm_message_label' => __( "Message:", 'contact_form' ),
140
- 'cntctfrm_attachment_label' => __( "Attachment:", 'contact_form' )
 
 
 
141
  );
142
  if( ! get_option( 'cntctfrm_options' ) )
143
  add_option( 'cntctfrm_options', $cntctfrm_option_defaults, '', 'yes' );
@@ -179,6 +182,9 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
179
  $cntctfrm_options_submit['cntctfrm_subject_label'] = __( "Subject:", 'contact_form' );
180
  $cntctfrm_options_submit['cntctfrm_message_label'] = __( "Message:", 'contact_form' );
181
  $cntctfrm_options_submit['cntctfrm_attachment_label'] = __( "Attachment:", 'contact_form' );
 
 
 
182
  } else {
183
  $cntctfrm_options_submit['cntctfrm_attachment'] = isset( $_REQUEST['cntctfrm_attachment']) ? $_REQUEST['cntctfrm_attachment'] : 0;
184
  $cntctfrm_options_submit['cntctfrm_attachment_explanations'] = isset( $_REQUEST['cntctfrm_attachment_explanations']) ? $_REQUEST['cntctfrm_attachment_explanations'] : 0;
@@ -213,8 +219,17 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
213
  $cntctfrm_options_submit['cntctfrm_message_label'] = __( "Message:", 'contact_form' );
214
  $cntctfrm_options_submit['cntctfrm_attachment_label'] = __( "Attachment:", 'contact_form' );
215
  }
 
 
 
216
  }
217
  $cntctfrm_options = array_merge( $cntctfrm_options, $cntctfrm_options_submit );
 
 
 
 
 
 
218
  if( 'user' == $cntctfrm_options_submit['cntctfrm_select_email'] ) {
219
  if( function_exists('get_userdatabylogin') && false !== get_userdatabylogin( $cntctfrm_options_submit['cntctfrm_user_email'] ) )
220
  {
@@ -227,9 +242,8 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
227
  $message = __( "Options saved.", 'contact_form' );
228
  }
229
  else {
230
- $error =__( "Such user is not exist. Settings are not saved.", 'contact_form' );
231
  }
232
- var_dump(function_exists('get_userdatabylogin'));
233
  }
234
  else {
235
  if( $cntctfrm_options_submit['cntctfrm_custom_email'] != "" && preg_match( "/^((?:[a-z0-9]+(?:[a-z0-9\-_\.]+)?@[a-z0-9]+(?:[a-z0-9\-\.]+)?\.[a-z]{2,5})[, ]*)+$/i", trim( $cntctfrm_options_submit['cntctfrm_custom_email'] ) ) ) {
@@ -237,7 +251,7 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
237
  $message = __( "Options saved.", 'contact_form' );
238
  }
239
  else {
240
- $error = __( "Please input correct email. Settings are not saved.", 'contact_form' );
241
  }
242
  }
243
  }
@@ -328,7 +342,7 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
328
  <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
329
  <th scope="row" style="width:195px;"><?php _e( "Change FROM fields of the contact form", 'contact_form' ); ?></th>
330
  <td colspan="2">
331
- <input type="text" style="width:200px;" name="cntctfrm_from_field" value="<?php echo $cntctfrm_options['cntctfrm_from_field']; ?>" /><br />
332
  </td>
333
  </tr>
334
  <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
@@ -356,6 +370,14 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
356
  <input type="text" name="cntctfrm_attachment_label" value="<?php echo $cntctfrm_options['cntctfrm_attachment_label']; ?>" /> <span class="cntctfrm_info"><?php _e( "Attachment:", 'contact_form' ); ?></span><br />
357
  </td>
358
  </tr>
 
 
 
 
 
 
 
 
359
  </table>
360
  <input type="hidden" name="cntctfrm_form_submit" value="submit" />
361
  <p class="submit">
@@ -370,13 +392,10 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
370
  // Display contact form in front end - page or post
371
  if( ! function_exists( 'cntctfrm_display_form' ) ) {
372
  function cntctfrm_display_form() {
373
- global $error_message;
374
- global $cntctfrm_options;
375
  $cntctfrm_options = get_option( 'cntctfrm_options' );
376
  $content = "";
377
 
378
- $result = "";
379
-
380
  $page_url = ( isset( $_SERVER["HTTPS"] ) && $_SERVER["HTTPS"] == "on" ? "https://" : "http://" ).$_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
381
  // If contact form submited
382
  $name = isset( $_REQUEST['cntctfrm_contact_name'] ) ? $_REQUEST['cntctfrm_contact_name'] : "";
@@ -384,15 +403,13 @@ if( ! function_exists( 'cntctfrm_display_form' ) ) {
384
  $subject = isset( $_REQUEST['cntctfrm_contact_subject'] ) ? $_REQUEST['cntctfrm_contact_subject'] : "";
385
  $message = isset( $_REQUEST['cntctfrm_contact_message'] ) ? $_REQUEST['cntctfrm_contact_message'] : "";
386
  $send_copy = isset( $_REQUEST['cntctfrm_contact_send_copy'] ) ? $_REQUEST['cntctfrm_contact_send_copy'] : "";
387
- if( isset( $_REQUEST['cntctfrm_contact_action'] ) )
388
- {
389
- // Check all input data
390
- $result = cntctfrm_check_form();
391
- }
392
  // If it is good
393
  if( true === $result ) {
394
  $_SESSION['cntctfrm_send_mail'] = true;
395
- $content .= __( "Thank you for contacting us.", 'contact_form' );
 
 
 
396
  }
397
  else if( false === $result )
398
  {
@@ -481,11 +498,34 @@ if( ! function_exists( 'cntctfrm_display_form' ) ) {
481
  }
482
  }
483
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
484
  // Check all input data
485
  if( ! function_exists( 'cntctfrm_check_form' ) ) {
486
  function cntctfrm_check_form() {
487
  global $error_message;
488
  global $cntctfrm_options;
 
 
 
489
  $result = "";
490
  // Error messages array
491
  $error_message = array();
@@ -555,7 +595,10 @@ if( ! function_exists( 'cntctfrm_check_form' ) ) {
555
  }
556
  else {
557
  $uploads = wp_upload_dir();
558
- $path_of_uploaded_file = $uploads['path'] ."/". $_FILES["cntctfrm_contact_attachment"]["name"];
 
 
 
559
  }
560
  $tmp_path = $_FILES["cntctfrm_contact_attachment"]["tmp_name"];
561
  $path_info = pathinfo( $path_of_uploaded_file );
@@ -587,8 +630,11 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
587
  if( isset( $_SESSION['cntctfrm_send_mail'] ) && $_SESSION['cntctfrm_send_mail'] == true )
588
  return true;
589
  if($cntctfrm_options['cntctfrm_select_email'] == 'user') {
590
- if( false !== $user = get_userdatabylogin($cntctfrm_options['cntctfrm_user_email'] ) )
591
- $to = $user->user_email;
 
 
 
592
  }
593
  else {
594
  $to = $cntctfrm_options['cntctfrm_custom_email'];
@@ -822,13 +868,15 @@ if ( ! function_exists ( 'cntctfrm_wp_head' ) ) {
822
  function cntctfrm_email_name_filter( $data ){
823
  global $cntctfrm_options;
824
  if( isset( $cntctfrm_options['cntctfrm_from_field'] ) && trim( $cntctfrm_options['cntctfrm_from_field'] ) != "" )
825
- return $cntctfrm_options['cntctfrm_from_field'];
826
  else
827
  return $data;
828
  }
829
 
830
  add_action( 'init', 'cntctfrm_plugin_init' );
831
 
 
 
832
  add_action( 'admin_enqueue_scripts', 'cntctfrm_admin_head' );
833
 
834
  add_action( 'wp_enqueue_scripts', 'cntctfrm_wp_head' );
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: Plugin for Contact Form.
6
  Author: BestWebSoft
7
+ Version: 3.20
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
137
  'cntctfrm_email_label' => __( "E-Mail Address:", 'contact_form' ),
138
  'cntctfrm_subject_label' => __( "Subject:", 'contact_form' ),
139
  'cntctfrm_message_label' => __( "Message:", 'contact_form' ),
140
+ 'cntctfrm_attachment_label' => __( "Attachment:", 'contact_form' ),
141
+ 'cntctfrm_action_after_send' => 1,
142
+ 'cntctfrm_thank_text' => __( "Thank you for contacting us.", 'contact_form' ),
143
+ 'cntctfrm_redirect_url' => ''
144
  );
145
  if( ! get_option( 'cntctfrm_options' ) )
146
  add_option( 'cntctfrm_options', $cntctfrm_option_defaults, '', 'yes' );
182
  $cntctfrm_options_submit['cntctfrm_subject_label'] = __( "Subject:", 'contact_form' );
183
  $cntctfrm_options_submit['cntctfrm_message_label'] = __( "Message:", 'contact_form' );
184
  $cntctfrm_options_submit['cntctfrm_attachment_label'] = __( "Attachment:", 'contact_form' );
185
+ $cntctfrm_options_submit['cntctfrm_action_after_send'] = 1;
186
+ $cntctfrm_options_submit['cntctfrm_thank_text'] = __( "Thank you for contacting us.", 'contact_form' );
187
+ $cntctfrm_options_submit['cntctfrm_redirect_url'] = '';
188
  } else {
189
  $cntctfrm_options_submit['cntctfrm_attachment'] = isset( $_REQUEST['cntctfrm_attachment']) ? $_REQUEST['cntctfrm_attachment'] : 0;
190
  $cntctfrm_options_submit['cntctfrm_attachment_explanations'] = isset( $_REQUEST['cntctfrm_attachment_explanations']) ? $_REQUEST['cntctfrm_attachment_explanations'] : 0;
219
  $cntctfrm_options_submit['cntctfrm_message_label'] = __( "Message:", 'contact_form' );
220
  $cntctfrm_options_submit['cntctfrm_attachment_label'] = __( "Attachment:", 'contact_form' );
221
  }
222
+ $cntctfrm_options_submit['cntctfrm_action_after_send'] = $_REQUEST['cntctfrm_action_after_send'];
223
+ $cntctfrm_options_submit['cntctfrm_thank_text'] = $_REQUEST['cntctfrm_thank_text'];
224
+ $cntctfrm_options_submit['cntctfrm_redirect_url'] = $_REQUEST['cntctfrm_redirect_url'];
225
  }
226
  $cntctfrm_options = array_merge( $cntctfrm_options, $cntctfrm_options_submit );
227
+ if( $cntctfrm_options_submit['cntctfrm_action_after_send'] == 0
228
+ && ( trim( $cntctfrm_options_submit['cntctfrm_redirect_url'] ) == ""
229
+ || !preg_match( '@^(?:http://)?([^/]+)@i', trim( $cntctfrm_options_submit['cntctfrm_redirect_url'] ) ) ) ) {
230
+ $error .=__( "If the option 'Redirect to page' is selected then url field should be fillied in the following format", 'contact_form' )." <code>http://your_site/your_page</code>";
231
+ $cntctfrm_options['cntctfrm_action_after_send'] = 1;
232
+ }
233
  if( 'user' == $cntctfrm_options_submit['cntctfrm_select_email'] ) {
234
  if( function_exists('get_userdatabylogin') && false !== get_userdatabylogin( $cntctfrm_options_submit['cntctfrm_user_email'] ) )
235
  {
242
  $message = __( "Options saved.", 'contact_form' );
243
  }
244
  else {
245
+ $error .=__( "Such user is not exist. Settings are not saved.", 'contact_form' );
246
  }
 
247
  }
248
  else {
249
  if( $cntctfrm_options_submit['cntctfrm_custom_email'] != "" && preg_match( "/^((?:[a-z0-9]+(?:[a-z0-9\-_\.]+)?@[a-z0-9]+(?:[a-z0-9\-\.]+)?\.[a-z]{2,5})[, ]*)+$/i", trim( $cntctfrm_options_submit['cntctfrm_custom_email'] ) ) ) {
251
  $message = __( "Options saved.", 'contact_form' );
252
  }
253
  else {
254
+ $error .= __( "Please input correct email. Settings are not saved.", 'contact_form' );
255
  }
256
  }
257
  }
342
  <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
343
  <th scope="row" style="width:195px;"><?php _e( "Change FROM fields of the contact form", 'contact_form' ); ?></th>
344
  <td colspan="2">
345
+ <input type="text" style="width:200px;" name="cntctfrm_from_field" value="<?php echo stripslashes( $cntctfrm_options['cntctfrm_from_field'] ); ?>" /><br />
346
  </td>
347
  </tr>
348
  <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
370
  <input type="text" name="cntctfrm_attachment_label" value="<?php echo $cntctfrm_options['cntctfrm_attachment_label']; ?>" /> <span class="cntctfrm_info"><?php _e( "Attachment:", 'contact_form' ); ?></span><br />
371
  </td>
372
  </tr>
373
+ <tr valign="top" class="cntctfrm_additions_block <?php if($cntctfrm_options['cntctfrm_additions_options'] == '0') echo "cntctfrm_hidden"; ?>">
374
+ <th scope="row" style="width:195px;"><?php _e( "Action after the send mail", 'contact_form' ); ?></th>
375
+ <td colspan="2" class="cntctfrm_action_after_send_block">
376
+ <input type="radio" id="cntctfrm_action_after_send" name="cntctfrm_action_after_send" value="1" <?php if($cntctfrm_options['cntctfrm_action_after_send'] == '1') echo "checked=\"checked\" "; ?>/> <span class="cntctfrm_info"><?php _e( "Display text", 'contact_form' ); ?></span><br />
377
+ <input type="text" name="cntctfrm_thank_text" value="<?php echo $cntctfrm_options['cntctfrm_thank_text']; ?>" /> <span class="cntctfrm_info"><?php _e( "Text", 'contact_form' ); ?></span><br />
378
+ <input type="radio" id="cntctfrm_action_after_send" name="cntctfrm_action_after_send" value="0" <?php if($cntctfrm_options['cntctfrm_action_after_send'] == '0') echo "checked=\"checked\" "; ?>/> <span class="cntctfrm_info"><?php _e( "Redirect to page", 'contact_form' ); ?></span><br />
379
+ <input type="text" name="cntctfrm_redirect_url" value="<?php echo $cntctfrm_options['cntctfrm_redirect_url']; ?>" /> <span class="cntctfrm_info"><?php _e( "Url", 'contact_form' ); ?></span><br />
380
+ </td>
381
  </table>
382
  <input type="hidden" name="cntctfrm_form_submit" value="submit" />
383
  <p class="submit">
392
  // Display contact form in front end - page or post
393
  if( ! function_exists( 'cntctfrm_display_form' ) ) {
394
  function cntctfrm_display_form() {
395
+ global $error_message, $cntctfrm_options, $result;
 
396
  $cntctfrm_options = get_option( 'cntctfrm_options' );
397
  $content = "";
398
 
 
 
399
  $page_url = ( isset( $_SERVER["HTTPS"] ) && $_SERVER["HTTPS"] == "on" ? "https://" : "http://" ).$_SERVER["SERVER_NAME"].$_SERVER["REQUEST_URI"];
400
  // If contact form submited
401
  $name = isset( $_REQUEST['cntctfrm_contact_name'] ) ? $_REQUEST['cntctfrm_contact_name'] : "";
403
  $subject = isset( $_REQUEST['cntctfrm_contact_subject'] ) ? $_REQUEST['cntctfrm_contact_subject'] : "";
404
  $message = isset( $_REQUEST['cntctfrm_contact_message'] ) ? $_REQUEST['cntctfrm_contact_message'] : "";
405
  $send_copy = isset( $_REQUEST['cntctfrm_contact_send_copy'] ) ? $_REQUEST['cntctfrm_contact_send_copy'] : "";
 
 
 
 
 
406
  // If it is good
407
  if( true === $result ) {
408
  $_SESSION['cntctfrm_send_mail'] = true;
409
+ if( $cntctfrm_options['cntctfrm_action_after_send'] == 1 )
410
+ $content .= $cntctfrm_options['cntctfrm_thank_text'];
411
+ else
412
+ $content .= "<script type='text/javascript'>window.location.href = '".$cntctfrm_options['cntctfrm_redirect_url']."';</script>";
413
  }
414
  else if( false === $result )
415
  {
498
  }
499
  }
500
 
501
+ if( ! function_exists( 'cntctfrm_check_and_send' ) ) {
502
+ function cntctfrm_check_and_send() {
503
+ global $result;
504
+ $cntctfrm_options = get_option( 'cntctfrm_options' );
505
+ if( isset( $_REQUEST['cntctfrm_contact_action'] ) )
506
+ {
507
+ // Check all input data
508
+ $result = cntctfrm_check_form();
509
+ }
510
+ // If it is good
511
+ if( true === $result ) {
512
+ $_SESSION['cntctfrm_send_mail'] = true;
513
+ if( $cntctfrm_options['cntctfrm_action_after_send'] == 0 ){
514
+ wp_redirect( $cntctfrm_options['cntctfrm_redirect_url'] );
515
+ exit;
516
+ }
517
+ }
518
+ }
519
+ }
520
+
521
  // Check all input data
522
  if( ! function_exists( 'cntctfrm_check_form' ) ) {
523
  function cntctfrm_check_form() {
524
  global $error_message;
525
  global $cntctfrm_options;
526
+ $path_of_uploaded_file = '';
527
+ if( empty( $cntctfrm_options ) )
528
+ $cntctfrm_options = get_option( 'cntctfrm_options' );
529
  $result = "";
530
  // Error messages array
531
  $error_message = array();
595
  }
596
  else {
597
  $uploads = wp_upload_dir();
598
+ if( ! isset( $uploads['path'] ) && isset ( $uploads['error'] ) )
599
+ $error_message['error_attachment'] = $uploads['error'];
600
+ else
601
+ $path_of_uploaded_file = $uploads['path'] ."/". $_FILES["cntctfrm_contact_attachment"]["name"];
602
  }
603
  $tmp_path = $_FILES["cntctfrm_contact_attachment"]["tmp_name"];
604
  $path_info = pathinfo( $path_of_uploaded_file );
630
  if( isset( $_SESSION['cntctfrm_send_mail'] ) && $_SESSION['cntctfrm_send_mail'] == true )
631
  return true;
632
  if($cntctfrm_options['cntctfrm_select_email'] == 'user') {
633
+ if( function_exists('get_userdatabylogin') && false !== $user = get_userdatabylogin($cntctfrm_options['cntctfrm_user_email'] ) ){
634
+ $to = $user->user_email;
635
+ }
636
+ else if( false !== $user = get_user_by( 'login', $cntctfrm_options_submit['cntctfrm_user_email'] ) )
637
+ $to = $user->user_email;
638
  }
639
  else {
640
  $to = $cntctfrm_options['cntctfrm_custom_email'];
868
  function cntctfrm_email_name_filter( $data ){
869
  global $cntctfrm_options;
870
  if( isset( $cntctfrm_options['cntctfrm_from_field'] ) && trim( $cntctfrm_options['cntctfrm_from_field'] ) != "" )
871
+ return stripslashes( $cntctfrm_options['cntctfrm_from_field'] );
872
  else
873
  return $data;
874
  }
875
 
876
  add_action( 'init', 'cntctfrm_plugin_init' );
877
 
878
+ add_action( 'init', 'cntctfrm_check_and_send' );
879
+
880
  add_action( 'admin_enqueue_scripts', 'cntctfrm_admin_head' );
881
 
882
  add_action( 'wp_enqueue_scripts', 'cntctfrm_wp_head' );
css/style.css CHANGED
@@ -50,10 +50,14 @@
50
  position:relative;
51
  top:5px;
52
  }
53
- .cntctfrm_change_label_block input {
54
  margin: 1px 0;
55
  }
56
 
 
 
 
 
57
  .widget-container #cntctfrm_contact_form input.text,
58
  .widget-container #cntctfrm_contact_form textarea,
59
  .widget-container #cntctfrm_contact_message,
50
  position:relative;
51
  top:5px;
52
  }
53
+ .cntctfrm_change_label_block input, .cntctfrm_action_after_send_block input {
54
  margin: 1px 0;
55
  }
56
 
57
+ .cntctfrm_action_after_send_block input[type="text"] {
58
+ width:250px;
59
+ }
60
+
61
  .widget-container #cntctfrm_contact_form input.text,
62
  .widget-container #cntctfrm_contact_form textarea,
63
  .widget-container #cntctfrm_contact_message,
languages/contact_form-ar.mo CHANGED
Binary file
languages/contact_form-ar.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-18 13:13+0300\n"
6
- "PO-Revision-Date: 2012-06-18 13:13+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Hammad Alshammari (ABU HATIM) www.abuhatim.net <al3zz.com@gmail.com>\n"
9
  "Language: \n"
@@ -28,8 +28,8 @@ msgid "Read more"
28
  msgstr "اقرأ المزيد"
29
 
30
  #: contact_form.php:78
31
- #: contact_form.php:750
32
- #: contact_form.php:759
33
  msgid "Settings"
34
  msgstr "إعدادات"
35
 
@@ -59,7 +59,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
59
  msgstr "إذا كان لديك أي أسئلة، يرجى الاتصال بنا عبر plugin@bestwebsoft.com أو ملء استمارة الاتصال على موقعنا"
60
 
61
  #: contact_form.php:108
62
- #: contact_form.php:242
63
  msgid "Contact Form Options"
64
  msgstr "خيارات نموذج اتصل بنا"
65
 
@@ -68,242 +68,269 @@ msgid "Contact Form"
68
  msgstr "نموذج الاتصال"
69
 
70
  #: contact_form.php:136
71
- #: contact_form.php:177
72
- #: contact_form.php:210
73
- #: contact_form.php:346
74
  msgid "Name:"
75
  msgstr "الأسم:"
76
 
77
  #: contact_form.php:137
78
- #: contact_form.php:178
79
- #: contact_form.php:211
80
- #: contact_form.php:347
81
  msgid "E-Mail Address:"
82
  msgstr "البريد الالكتروني:"
83
 
84
  #: contact_form.php:138
85
- #: contact_form.php:179
86
- #: contact_form.php:212
87
- #: contact_form.php:348
88
  msgid "Subject:"
89
  msgstr "موضوع الرسالة:"
90
 
91
  #: contact_form.php:139
92
- #: contact_form.php:180
93
- #: contact_form.php:213
94
- #: contact_form.php:349
95
  msgid "Message:"
96
  msgstr "الرسالة:"
97
 
98
  #: contact_form.php:140
99
- #: contact_form.php:181
100
- #: contact_form.php:214
101
- #: contact_form.php:350
102
  msgid "Attachment:"
103
  msgstr "المرفقات:"
104
 
105
- #: contact_form.php:222
106
- #: contact_form.php:231
 
 
 
 
 
 
 
 
 
 
107
  msgid "Options saved."
108
  msgstr "الخيارات حُفظت."
109
 
110
- #: contact_form.php:225
111
  msgid "Such user is not exist. Settings are not saved."
112
  msgstr "هذا المستخدم لا وجود له. لم يتم حفظ الإعدادات."
113
 
114
- #: contact_form.php:234
115
  msgid "Please input correct email. Settings are not saved."
116
  msgstr "الرجاء إدخال بريد الكتروني صحيح. الاعدادات لم تُحفظ."
117
 
118
- #: contact_form.php:247
119
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
120
  msgstr "إذا كنت ترغب في إضافة نموذج الاتصال إلى موقع الويب الخاص بك، قم بنسخ ولصق هذا الرمز القصير:"
121
 
122
- #: contact_form.php:248
123
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
124
  msgstr "إذا كانت المعلومات في الحقول أدناه فارغة سيتم إرسال الرسالة إلى عنوان الذي تم تحديده أثناء التسجيل."
125
 
126
- #: contact_form.php:252
127
  msgid "Use email of wordpress user:"
128
  msgstr "أستخدم بريد العضو في وورد بريس:"
129
 
130
- #: contact_form.php:258
131
  msgid "Select user name"
132
  msgstr "اختر اسم المستخدم"
133
 
134
- #: contact_form.php:263
135
  msgid "Set a name of user who will get messages from a contact form."
136
  msgstr "تعيين اسم المستخدم من الذين سيحصلون على رسائل من شكل من أشكال الاتصال."
137
 
138
- #: contact_form.php:267
139
  msgid "Use this email:"
140
  msgstr "استخدام هذا البريد الالكتروني:"
141
 
142
- #: contact_form.php:273
143
  msgid "Set an email address which will be used for messages receiving."
144
  msgstr "تعيين عنوان البريد الإلكتروني التي سيتم استخدامها لاستقبال الرسائل."
145
 
146
- #: contact_form.php:277
147
  msgid "Additional options"
148
  msgstr "خيارات إضافية"
149
 
150
- #: contact_form.php:280
151
  msgid "Display Attachment block"
152
  msgstr "عرض حقل المرفقات"
153
 
154
- #: contact_form.php:285
155
  msgid "Users can attach files of the following types"
156
  msgstr "يمكن للمستخدمين إرفاق الملفات من الأنواع التالية"
157
 
158
- #: contact_form.php:289
159
  msgid "Display Attachment explanations"
160
  msgstr ""
161
 
162
- #: contact_form.php:294
163
  msgid "Display explanations after Attachment block"
164
  msgstr ""
165
 
166
- #: contact_form.php:298
167
  msgid "Display Send me a copy block"
168
  msgstr "عرض خيار (أرسل لي نسخة)"
169
 
170
- #: contact_form.php:304
171
  msgid "What use?"
172
  msgstr "ماذا تستخدم؟"
173
 
174
- #: contact_form.php:309
175
  msgid "Wp-mail"
176
  msgstr "Wp-mail"
177
 
178
- #: contact_form.php:310
179
  msgid "To send mail you can use the wordpress wp_mail function"
180
  msgstr "لإرسال البريد يمكنك استخدام وظيفة wp_mail"
181
 
182
- #: contact_form.php:318
183
  msgid "Mail"
184
  msgstr "Mail"
185
 
186
- #: contact_form.php:319
187
  msgid "To send mail you can use the php mail function"
188
  msgstr "لإرسال البريد يمكنك استخدام وظيفة البريد PHP"
189
 
190
- #: contact_form.php:323
191
  msgid "Change FROM fields of the contact form"
192
  msgstr "تغيير من الحقول من نموذج الاتصال"
193
 
194
- #: contact_form.php:329
195
  msgid "Display additional info in email"
196
  msgstr "عرض معلومات اضافية في البريد الالكتروني"
197
 
198
- #: contact_form.php:334
199
- #: contact_form.php:621
200
  msgid "Sent from (ip address)"
201
  msgstr "ارسلت من (عنوان IP)"
202
 
203
- #: contact_form.php:335
204
- #: contact_form.php:626
205
  msgid "Date/Time"
206
  msgstr "الوقت/التاريخ"
207
 
208
- #: contact_form.php:336
209
- #: contact_form.php:631
210
  msgid "Coming from (referer)"
211
  msgstr "Coming from (referer)"
212
 
213
- #: contact_form.php:337
214
- #: contact_form.php:636
215
  msgid "Using (user agent)"
216
  msgstr "باستخدام (وكيل المستخدم)"
217
 
218
- #: contact_form.php:341
219
  msgid "Change label for fields of the contact form"
220
  msgstr "تغيير تسمية حقول نموذج الاتصال"
221
 
222
- #: contact_form.php:356
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
223
  msgid "Save Changes"
224
  msgstr "حفظ التغييرات"
225
 
226
- #: contact_form.php:389
227
- msgid "Thank you for contacting us."
228
- msgstr "أشكركم على الاتصال بنا. سيتم الرد عليكم في أقرب فرصة."
229
-
230
- #: contact_form.php:394
231
  msgid "Sorry, your e-mail could not be delivered."
232
  msgstr "عذراً, لم نستطيع تسليم رسالتك."
233
 
234
- #: contact_form.php:452
235
  msgid "You can attach files of the following types"
236
  msgstr "يمكنك إرفاق الملفات من الأنواع التالية"
237
 
238
- #: contact_form.php:460
239
  msgid "Send me a copy"
240
  msgstr "أرسل لي نسخة"
241
 
242
- #: contact_form.php:470
243
  msgid "Submit"
244
  msgstr "تقدم"
245
 
246
- #: contact_form.php:486
247
  msgid "Your name is required."
248
  msgstr "مطلوب اسمك."
249
 
250
- #: contact_form.php:487
251
  msgid "A proper e-mail address is required."
252
  msgstr "مطلوب بريد الكتروني صحيح."
253
 
254
- #: contact_form.php:488
255
  msgid "Subject text is required."
256
  msgstr "مطلوب نص الموضوع."
257
 
258
- #: contact_form.php:489
259
  msgid "Message text is required."
260
  msgstr "مطلوب نص الرسالة."
261
 
262
- #: contact_form.php:490
263
  msgid "Please make corrections below and try again."
264
  msgstr "يرجى إجراء التصحيحات أدناه وحاول مرة أخرى."
265
 
266
- #: contact_form.php:521
267
  msgid "Attachment is broken."
268
  msgstr "المرفق تعطل."
269
 
270
- #: contact_form.php:534
271
  msgid "Please complete the CAPTCHA."
272
  msgstr "يرجى استكمال رمز التحقق."
273
 
274
- #: contact_form.php:644
275
  msgid "Contact from"
276
  msgstr "اتصل من"
277
 
278
- #: contact_form.php:649
279
  msgid "Name"
280
  msgstr "الأسم"
281
 
282
- #: contact_form.php:652
283
  msgid "Email"
284
  msgstr "البريد الألكتروني"
285
 
286
- #: contact_form.php:655
287
  msgid "Subject"
288
  msgstr "موضوع الرسالة"
289
 
290
- #: contact_form.php:658
291
  msgid "Message"
292
  msgstr "الرسالة"
293
 
294
- #: contact_form.php:661
295
  msgid "Site"
296
  msgstr "الموقع"
297
 
298
- #: contact_form.php:706
299
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
300
  msgstr "إذا يمكنك أن ترى هذه MIME من العميل الخاص بك لا يقبل أنواع MIME!"
301
 
302
- #: contact_form.php:760
303
  msgid "FAQ"
304
  msgstr "أسئلة وأجوبة"
305
 
306
- #: contact_form.php:761
307
  msgid "Support"
308
  msgstr "دعم"
309
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-27 17:40+0300\n"
6
+ "PO-Revision-Date: 2012-06-27 17:41+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Hammad Alshammari (ABU HATIM) www.abuhatim.net <al3zz.com@gmail.com>\n"
9
  "Language: \n"
28
  msgstr "اقرأ المزيد"
29
 
30
  #: contact_form.php:78
31
+ #: contact_form.php:802
32
+ #: contact_form.php:811
33
  msgid "Settings"
34
  msgstr "إعدادات"
35
 
59
  msgstr "إذا كان لديك أي أسئلة، يرجى الاتصال بنا عبر plugin@bestwebsoft.com أو ملء استمارة الاتصال على موقعنا"
60
 
61
  #: contact_form.php:108
62
+ #: contact_form.php:262
63
  msgid "Contact Form Options"
64
  msgstr "خيارات نموذج اتصل بنا"
65
 
68
  msgstr "نموذج الاتصال"
69
 
70
  #: contact_form.php:136
71
+ #: contact_form.php:180
72
+ #: contact_form.php:216
73
+ #: contact_form.php:366
74
  msgid "Name:"
75
  msgstr "الأسم:"
76
 
77
  #: contact_form.php:137
78
+ #: contact_form.php:181
79
+ #: contact_form.php:217
80
+ #: contact_form.php:367
81
  msgid "E-Mail Address:"
82
  msgstr "البريد الالكتروني:"
83
 
84
  #: contact_form.php:138
85
+ #: contact_form.php:182
86
+ #: contact_form.php:218
87
+ #: contact_form.php:368
88
  msgid "Subject:"
89
  msgstr "موضوع الرسالة:"
90
 
91
  #: contact_form.php:139
92
+ #: contact_form.php:183
93
+ #: contact_form.php:219
94
+ #: contact_form.php:369
95
  msgid "Message:"
96
  msgstr "الرسالة:"
97
 
98
  #: contact_form.php:140
99
+ #: contact_form.php:184
100
+ #: contact_form.php:220
101
+ #: contact_form.php:370
102
  msgid "Attachment:"
103
  msgstr "المرفقات:"
104
 
105
+ #: contact_form.php:142
106
+ #: contact_form.php:186
107
+ msgid "Thank you for contacting us."
108
+ msgstr "أشكركم على الاتصال بنا. سيتم الرد عليكم في أقرب فرصة."
109
+
110
+ #: contact_form.php:230
111
+ msgid "If the option 'Redirect to page' is selected then url field should be fillied in the following format"
112
+ msgstr ""
113
+
114
+ #: contact_form.php:237
115
+ #: contact_form.php:242
116
+ #: contact_form.php:251
117
  msgid "Options saved."
118
  msgstr "الخيارات حُفظت."
119
 
120
+ #: contact_form.php:245
121
  msgid "Such user is not exist. Settings are not saved."
122
  msgstr "هذا المستخدم لا وجود له. لم يتم حفظ الإعدادات."
123
 
124
+ #: contact_form.php:254
125
  msgid "Please input correct email. Settings are not saved."
126
  msgstr "الرجاء إدخال بريد الكتروني صحيح. الاعدادات لم تُحفظ."
127
 
128
+ #: contact_form.php:267
129
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
130
  msgstr "إذا كنت ترغب في إضافة نموذج الاتصال إلى موقع الويب الخاص بك، قم بنسخ ولصق هذا الرمز القصير:"
131
 
132
+ #: contact_form.php:268
133
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
134
  msgstr "إذا كانت المعلومات في الحقول أدناه فارغة سيتم إرسال الرسالة إلى عنوان الذي تم تحديده أثناء التسجيل."
135
 
136
+ #: contact_form.php:272
137
  msgid "Use email of wordpress user:"
138
  msgstr "أستخدم بريد العضو في وورد بريس:"
139
 
140
+ #: contact_form.php:278
141
  msgid "Select user name"
142
  msgstr "اختر اسم المستخدم"
143
 
144
+ #: contact_form.php:283
145
  msgid "Set a name of user who will get messages from a contact form."
146
  msgstr "تعيين اسم المستخدم من الذين سيحصلون على رسائل من شكل من أشكال الاتصال."
147
 
148
+ #: contact_form.php:287
149
  msgid "Use this email:"
150
  msgstr "استخدام هذا البريد الالكتروني:"
151
 
152
+ #: contact_form.php:293
153
  msgid "Set an email address which will be used for messages receiving."
154
  msgstr "تعيين عنوان البريد الإلكتروني التي سيتم استخدامها لاستقبال الرسائل."
155
 
156
+ #: contact_form.php:297
157
  msgid "Additional options"
158
  msgstr "خيارات إضافية"
159
 
160
+ #: contact_form.php:300
161
  msgid "Display Attachment block"
162
  msgstr "عرض حقل المرفقات"
163
 
164
+ #: contact_form.php:305
165
  msgid "Users can attach files of the following types"
166
  msgstr "يمكن للمستخدمين إرفاق الملفات من الأنواع التالية"
167
 
168
+ #: contact_form.php:309
169
  msgid "Display Attachment explanations"
170
  msgstr ""
171
 
172
+ #: contact_form.php:314
173
  msgid "Display explanations after Attachment block"
174
  msgstr ""
175
 
176
+ #: contact_form.php:318
177
  msgid "Display Send me a copy block"
178
  msgstr "عرض خيار (أرسل لي نسخة)"
179
 
180
+ #: contact_form.php:324
181
  msgid "What use?"
182
  msgstr "ماذا تستخدم؟"
183
 
184
+ #: contact_form.php:329
185
  msgid "Wp-mail"
186
  msgstr "Wp-mail"
187
 
188
+ #: contact_form.php:330
189
  msgid "To send mail you can use the wordpress wp_mail function"
190
  msgstr "لإرسال البريد يمكنك استخدام وظيفة wp_mail"
191
 
192
+ #: contact_form.php:338
193
  msgid "Mail"
194
  msgstr "Mail"
195
 
196
+ #: contact_form.php:339
197
  msgid "To send mail you can use the php mail function"
198
  msgstr "لإرسال البريد يمكنك استخدام وظيفة البريد PHP"
199
 
200
+ #: contact_form.php:343
201
  msgid "Change FROM fields of the contact form"
202
  msgstr "تغيير من الحقول من نموذج الاتصال"
203
 
204
+ #: contact_form.php:349
205
  msgid "Display additional info in email"
206
  msgstr "عرض معلومات اضافية في البريد الالكتروني"
207
 
208
+ #: contact_form.php:354
209
+ #: contact_form.php:673
210
  msgid "Sent from (ip address)"
211
  msgstr "ارسلت من (عنوان IP)"
212
 
213
+ #: contact_form.php:355
214
+ #: contact_form.php:678
215
  msgid "Date/Time"
216
  msgstr "الوقت/التاريخ"
217
 
218
+ #: contact_form.php:356
219
+ #: contact_form.php:683
220
  msgid "Coming from (referer)"
221
  msgstr "Coming from (referer)"
222
 
223
+ #: contact_form.php:357
224
+ #: contact_form.php:688
225
  msgid "Using (user agent)"
226
  msgstr "باستخدام (وكيل المستخدم)"
227
 
228
+ #: contact_form.php:361
229
  msgid "Change label for fields of the contact form"
230
  msgstr "تغيير تسمية حقول نموذج الاتصال"
231
 
232
+ #: contact_form.php:374
233
+ msgid "Action after the send mail"
234
+ msgstr ""
235
+
236
+ #: contact_form.php:376
237
+ #, fuzzy
238
+ msgid "Display text"
239
+ msgstr "عرض حقل المرفقات"
240
+
241
+ #: contact_form.php:377
242
+ msgid "Text"
243
+ msgstr ""
244
+
245
+ #: contact_form.php:378
246
+ msgid "Redirect to page"
247
+ msgstr ""
248
+
249
+ #: contact_form.php:379
250
+ msgid "Url"
251
+ msgstr ""
252
+
253
+ #: contact_form.php:384
254
  msgid "Save Changes"
255
  msgstr "حفظ التغييرات"
256
 
257
+ #: contact_form.php:417
 
 
 
 
258
  msgid "Sorry, your e-mail could not be delivered."
259
  msgstr "عذراً, لم نستطيع تسليم رسالتك."
260
 
261
+ #: contact_form.php:475
262
  msgid "You can attach files of the following types"
263
  msgstr "يمكنك إرفاق الملفات من الأنواع التالية"
264
 
265
+ #: contact_form.php:483
266
  msgid "Send me a copy"
267
  msgstr "أرسل لي نسخة"
268
 
269
+ #: contact_form.php:493
270
  msgid "Submit"
271
  msgstr "تقدم"
272
 
273
+ #: contact_form.php:532
274
  msgid "Your name is required."
275
  msgstr "مطلوب اسمك."
276
 
277
+ #: contact_form.php:533
278
  msgid "A proper e-mail address is required."
279
  msgstr "مطلوب بريد الكتروني صحيح."
280
 
281
+ #: contact_form.php:534
282
  msgid "Subject text is required."
283
  msgstr "مطلوب نص الموضوع."
284
 
285
+ #: contact_form.php:535
286
  msgid "Message text is required."
287
  msgstr "مطلوب نص الرسالة."
288
 
289
+ #: contact_form.php:536
290
  msgid "Please make corrections below and try again."
291
  msgstr "يرجى إجراء التصحيحات أدناه وحاول مرة أخرى."
292
 
293
+ #: contact_form.php:567
294
  msgid "Attachment is broken."
295
  msgstr "المرفق تعطل."
296
 
297
+ #: contact_form.php:580
298
  msgid "Please complete the CAPTCHA."
299
  msgstr "يرجى استكمال رمز التحقق."
300
 
301
+ #: contact_form.php:696
302
  msgid "Contact from"
303
  msgstr "اتصل من"
304
 
305
+ #: contact_form.php:701
306
  msgid "Name"
307
  msgstr "الأسم"
308
 
309
+ #: contact_form.php:704
310
  msgid "Email"
311
  msgstr "البريد الألكتروني"
312
 
313
+ #: contact_form.php:707
314
  msgid "Subject"
315
  msgstr "موضوع الرسالة"
316
 
317
+ #: contact_form.php:710
318
  msgid "Message"
319
  msgstr "الرسالة"
320
 
321
+ #: contact_form.php:713
322
  msgid "Site"
323
  msgstr "الموقع"
324
 
325
+ #: contact_form.php:758
326
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
327
  msgstr "إذا يمكنك أن ترى هذه MIME من العميل الخاص بك لا يقبل أنواع MIME!"
328
 
329
+ #: contact_form.php:812
330
  msgid "FAQ"
331
  msgstr "أسئلة وأجوبة"
332
 
333
+ #: contact_form.php:813
334
  msgid "Support"
335
  msgstr "دعم"
336
 
languages/contact_form-bg_BG.mo CHANGED
Binary file
languages/contact_form-bg_BG.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-18 13:15+0300\n"
6
- "PO-Revision-Date: 2012-06-18 13:15+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: \n"
@@ -28,8 +28,8 @@ msgid "Read more"
28
  msgstr "Прочетете повече"
29
 
30
  #: contact_form.php:78
31
- #: contact_form.php:750
32
- #: contact_form.php:759
33
  msgid "Settings"
34
  msgstr "Настройки"
35
 
@@ -59,7 +59,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
59
  msgstr "Ако имате някакви въпроси, моля свържете с нас чрез plugin@bestwebsoft.com или попълнете нашата форма за контакти на нашия сайт"
60
 
61
  #: contact_form.php:108
62
- #: contact_form.php:242
63
  msgid "Contact Form Options"
64
  msgstr "Настройки на Формата за контакт"
65
 
@@ -68,242 +68,269 @@ msgid "Contact Form"
68
  msgstr "Форма за контакт"
69
 
70
  #: contact_form.php:136
71
- #: contact_form.php:177
72
- #: contact_form.php:210
73
- #: contact_form.php:346
74
  msgid "Name:"
75
  msgstr "Име:"
76
 
77
  #: contact_form.php:137
78
- #: contact_form.php:178
79
- #: contact_form.php:211
80
- #: contact_form.php:347
81
  msgid "E-Mail Address:"
82
  msgstr "E-mail адрес:"
83
 
84
  #: contact_form.php:138
85
- #: contact_form.php:179
86
- #: contact_form.php:212
87
- #: contact_form.php:348
88
  msgid "Subject:"
89
  msgstr "Тема:"
90
 
91
  #: contact_form.php:139
92
- #: contact_form.php:180
93
- #: contact_form.php:213
94
- #: contact_form.php:349
95
  msgid "Message:"
96
  msgstr "Съобщение:"
97
 
98
  #: contact_form.php:140
99
- #: contact_form.php:181
100
- #: contact_form.php:214
101
- #: contact_form.php:350
102
  msgid "Attachment:"
103
  msgstr "Прикачване на файл:"
104
 
105
- #: contact_form.php:222
106
- #: contact_form.php:231
 
 
 
 
 
 
 
 
 
 
107
  msgid "Options saved."
108
  msgstr "Опциите са запазени"
109
 
110
- #: contact_form.php:225
111
  msgid "Such user is not exist. Settings are not saved."
112
  msgstr "Не са намерени данни за потребителя. Настройките не са запазени"
113
 
114
- #: contact_form.php:234
115
  msgid "Please input correct email. Settings are not saved."
116
  msgstr "Моля, въведете коректен Email. Настройките не са запазени."
117
 
118
- #: contact_form.php:247
119
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
120
  msgstr "Ако искате да добавите формата за контакт на своят сайт копирайте и поставете този код в страницата или публикацията или джаджа:"
121
 
122
- #: contact_form.php:248
123
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
124
  msgstr "Ако посочените по-долу полета не са попълнени, съобщението ще бъде изпратено на Email адрес, който е определен по време на регистрацията"
125
 
126
- #: contact_form.php:252
127
  msgid "Use email of wordpress user:"
128
  msgstr "Използвайте Email на Wordpress потребител:"
129
 
130
- #: contact_form.php:258
131
  msgid "Select user name"
132
  msgstr "Избиране на потребител"
133
 
134
- #: contact_form.php:263
135
  msgid "Set a name of user who will get messages from a contact form."
136
  msgstr "Задайте името на потребителя, който ще получава съобщенията от формата за контакт."
137
 
138
- #: contact_form.php:267
139
  msgid "Use this email:"
140
  msgstr "Използвайте този Email:"
141
 
142
- #: contact_form.php:273
143
  msgid "Set an email address which will be used for messages receiving."
144
  msgstr "Задаване на Email адрес, който ще се използва за получаване на съобщения."
145
 
146
- #: contact_form.php:277
147
  msgid "Additional options"
148
  msgstr "Допълнителни настройки"
149
 
150
- #: contact_form.php:280
151
  msgid "Display Attachment block"
152
  msgstr "Покажи опция за прикачване на файл"
153
 
154
- #: contact_form.php:285
155
  msgid "Users can attach files of the following types"
156
  msgstr "Потребителите могат да прикачват файлове от следните видове"
157
 
158
- #: contact_form.php:289
159
  msgid "Display Attachment explanations"
160
  msgstr ""
161
 
162
- #: contact_form.php:294
163
  msgid "Display explanations after Attachment block"
164
  msgstr ""
165
 
166
- #: contact_form.php:298
167
  msgid "Display Send me a copy block"
168
  msgstr "Показване на опция за изпращане на копие"
169
 
170
- #: contact_form.php:304
171
  msgid "What use?"
172
  msgstr ""
173
 
174
- #: contact_form.php:309
175
  msgid "Wp-mail"
176
  msgstr "Wp-mail"
177
 
178
- #: contact_form.php:310
179
  msgid "To send mail you can use the wordpress wp_mail function"
180
  msgstr ""
181
 
182
- #: contact_form.php:318
183
  msgid "Mail"
184
  msgstr "Mail"
185
 
186
- #: contact_form.php:319
187
  msgid "To send mail you can use the php mail function"
188
  msgstr ""
189
 
190
- #: contact_form.php:323
191
  msgid "Change FROM fields of the contact form"
192
  msgstr "Промяна от полета на формата за контакт"
193
 
194
- #: contact_form.php:329
195
  msgid "Display additional info in email"
196
  msgstr ""
197
 
198
- #: contact_form.php:334
199
- #: contact_form.php:621
200
  msgid "Sent from (ip address)"
201
  msgstr "Изпратено от (ip адрес)"
202
 
203
- #: contact_form.php:335
204
- #: contact_form.php:626
205
  msgid "Date/Time"
206
  msgstr "Дата/Час"
207
 
208
- #: contact_form.php:336
209
- #: contact_form.php:631
210
  msgid "Coming from (referer)"
211
  msgstr "Идва от (referer)"
212
 
213
- #: contact_form.php:337
214
- #: contact_form.php:636
215
  msgid "Using (user agent)"
216
  msgstr "Използвайки (user agent)"
217
 
218
- #: contact_form.php:341
219
  msgid "Change label for fields of the contact form"
220
  msgstr "Промяна на етикетите за полета във формата за контакт"
221
 
222
- #: contact_form.php:356
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
223
  msgid "Save Changes"
224
  msgstr "Запис на промените"
225
 
226
- #: contact_form.php:389
227
- msgid "Thank you for contacting us."
228
- msgstr "Благодарим Ви, че се свързахте с нас."
229
-
230
- #: contact_form.php:394
231
  msgid "Sorry, your e-mail could not be delivered."
232
  msgstr "Съжаляваме, Вашето съобщение не може да бъде изпратено."
233
 
234
- #: contact_form.php:452
235
  msgid "You can attach files of the following types"
236
  msgstr "Можете да прикачвате файлове от следните типове"
237
 
238
- #: contact_form.php:460
239
  msgid "Send me a copy"
240
  msgstr "Изпрати ми копие"
241
 
242
- #: contact_form.php:470
243
  msgid "Submit"
244
  msgstr "Изпрати"
245
 
246
- #: contact_form.php:486
247
  msgid "Your name is required."
248
  msgstr "Вашето име е задължително."
249
 
250
- #: contact_form.php:487
251
  msgid "A proper e-mail address is required."
252
  msgstr "Правилният Email адрес е задължителен."
253
 
254
- #: contact_form.php:488
255
  msgid "Subject text is required."
256
  msgstr "Заглавието е задължитено."
257
 
258
- #: contact_form.php:489
259
  msgid "Message text is required."
260
  msgstr "Текстовото съобщение е задължително."
261
 
262
- #: contact_form.php:490
263
  msgid "Please make corrections below and try again."
264
  msgstr "Моля направете необходимите корекции по-долу и опитайте отново."
265
 
266
- #: contact_form.php:521
267
  msgid "Attachment is broken."
268
  msgstr "Прикаченият файл не се поддържа"
269
 
270
- #: contact_form.php:534
271
  msgid "Please complete the CAPTCHA."
272
  msgstr "Моля попълнете CAPTCHA."
273
 
274
- #: contact_form.php:644
275
  msgid "Contact from"
276
  msgstr "Форма за контакт"
277
 
278
- #: contact_form.php:649
279
  msgid "Name"
280
  msgstr "Име"
281
 
282
- #: contact_form.php:652
283
  msgid "Email"
284
  msgstr "Email"
285
 
286
- #: contact_form.php:655
287
  msgid "Subject"
288
  msgstr "Относно"
289
 
290
- #: contact_form.php:658
291
  msgid "Message"
292
  msgstr "Съобщение"
293
 
294
- #: contact_form.php:661
295
  msgid "Site"
296
  msgstr "Сайт"
297
 
298
- #: contact_form.php:706
299
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
300
  msgstr "Ако видиждате това значи, че вашият MIME клиент за електронна поща не поддържа MIME тип!"
301
 
302
- #: contact_form.php:760
303
  msgid "FAQ"
304
  msgstr "FAQ"
305
 
306
- #: contact_form.php:761
307
  msgid "Support"
308
  msgstr "Поддръжка"
309
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-27 17:41+0300\n"
6
+ "PO-Revision-Date: 2012-06-27 17:41+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "Language: \n"
28
  msgstr "Прочетете повече"
29
 
30
  #: contact_form.php:78
31
+ #: contact_form.php:802
32
+ #: contact_form.php:811
33
  msgid "Settings"
34
  msgstr "Настройки"
35
 
59
  msgstr "Ако имате някакви въпроси, моля свържете с нас чрез plugin@bestwebsoft.com или попълнете нашата форма за контакти на нашия сайт"
60
 
61
  #: contact_form.php:108
62
+ #: contact_form.php:262
63
  msgid "Contact Form Options"
64
  msgstr "Настройки на Формата за контакт"
65
 
68
  msgstr "Форма за контакт"
69
 
70
  #: contact_form.php:136
71
+ #: contact_form.php:180
72
+ #: contact_form.php:216
73
+ #: contact_form.php:366
74
  msgid "Name:"
75
  msgstr "Име:"
76
 
77
  #: contact_form.php:137
78
+ #: contact_form.php:181
79
+ #: contact_form.php:217
80
+ #: contact_form.php:367
81
  msgid "E-Mail Address:"
82
  msgstr "E-mail адрес:"
83
 
84
  #: contact_form.php:138
85
+ #: contact_form.php:182
86
+ #: contact_form.php:218
87
+ #: contact_form.php:368
88
  msgid "Subject:"
89
  msgstr "Тема:"
90
 
91
  #: contact_form.php:139
92
+ #: contact_form.php:183
93
+ #: contact_form.php:219
94
+ #: contact_form.php:369
95
  msgid "Message:"
96
  msgstr "Съобщение:"
97
 
98
  #: contact_form.php:140
99
+ #: contact_form.php:184
100
+ #: contact_form.php:220
101
+ #: contact_form.php:370
102
  msgid "Attachment:"
103
  msgstr "Прикачване на файл:"
104
 
105
+ #: contact_form.php:142
106
+ #: contact_form.php:186
107
+ msgid "Thank you for contacting us."
108
+ msgstr "Благодарим Ви, че се свързахте с нас."
109
+
110
+ #: contact_form.php:230
111
+ msgid "If the option 'Redirect to page' is selected then url field should be fillied in the following format"
112
+ msgstr ""
113
+
114
+ #: contact_form.php:237
115
+ #: contact_form.php:242
116
+ #: contact_form.php:251
117
  msgid "Options saved."
118
  msgstr "Опциите са запазени"
119
 
120
+ #: contact_form.php:245
121
  msgid "Such user is not exist. Settings are not saved."
122
  msgstr "Не са намерени данни за потребителя. Настройките не са запазени"
123
 
124
+ #: contact_form.php:254
125
  msgid "Please input correct email. Settings are not saved."
126
  msgstr "Моля, въведете коректен Email. Настройките не са запазени."
127
 
128
+ #: contact_form.php:267
129
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
130
  msgstr "Ако искате да добавите формата за контакт на своят сайт копирайте и поставете този код в страницата или публикацията или джаджа:"
131
 
132
+ #: contact_form.php:268
133
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
134
  msgstr "Ако посочените по-долу полета не са попълнени, съобщението ще бъде изпратено на Email адрес, който е определен по време на регистрацията"
135
 
136
+ #: contact_form.php:272
137
  msgid "Use email of wordpress user:"
138
  msgstr "Използвайте Email на Wordpress потребител:"
139
 
140
+ #: contact_form.php:278
141
  msgid "Select user name"
142
  msgstr "Избиране на потребител"
143
 
144
+ #: contact_form.php:283
145
  msgid "Set a name of user who will get messages from a contact form."
146
  msgstr "Задайте името на потребителя, който ще получава съобщенията от формата за контакт."
147
 
148
+ #: contact_form.php:287
149
  msgid "Use this email:"
150
  msgstr "Използвайте този Email:"
151
 
152
+ #: contact_form.php:293
153
  msgid "Set an email address which will be used for messages receiving."
154
  msgstr "Задаване на Email адрес, който ще се използва за получаване на съобщения."
155
 
156
+ #: contact_form.php:297
157
  msgid "Additional options"
158
  msgstr "Допълнителни настройки"
159
 
160
+ #: contact_form.php:300
161
  msgid "Display Attachment block"
162
  msgstr "Покажи опция за прикачване на файл"
163
 
164
+ #: contact_form.php:305
165
  msgid "Users can attach files of the following types"
166
  msgstr "Потребителите могат да прикачват файлове от следните видове"
167
 
168
+ #: contact_form.php:309
169
  msgid "Display Attachment explanations"
170
  msgstr ""
171
 
172
+ #: contact_form.php:314
173
  msgid "Display explanations after Attachment block"
174
  msgstr ""
175
 
176
+ #: contact_form.php:318
177
  msgid "Display Send me a copy block"
178
  msgstr "Показване на опция за изпращане на копие"
179
 
180
+ #: contact_form.php:324
181
  msgid "What use?"
182
  msgstr ""
183
 
184
+ #: contact_form.php:329
185
  msgid "Wp-mail"
186
  msgstr "Wp-mail"
187
 
188
+ #: contact_form.php:330
189
  msgid "To send mail you can use the wordpress wp_mail function"
190
  msgstr ""
191
 
192
+ #: contact_form.php:338
193
  msgid "Mail"
194
  msgstr "Mail"
195
 
196
+ #: contact_form.php:339
197
  msgid "To send mail you can use the php mail function"
198
  msgstr ""
199
 
200
+ #: contact_form.php:343
201
  msgid "Change FROM fields of the contact form"
202
  msgstr "Промяна от полета на формата за контакт"
203
 
204
+ #: contact_form.php:349
205
  msgid "Display additional info in email"
206
  msgstr ""
207
 
208
+ #: contact_form.php:354
209
+ #: contact_form.php:673
210
  msgid "Sent from (ip address)"
211
  msgstr "Изпратено от (ip адрес)"
212
 
213
+ #: contact_form.php:355
214
+ #: contact_form.php:678
215
  msgid "Date/Time"
216
  msgstr "Дата/Час"
217
 
218
+ #: contact_form.php:356
219
+ #: contact_form.php:683
220
  msgid "Coming from (referer)"
221
  msgstr "Идва от (referer)"
222
 
223
+ #: contact_form.php:357
224
+ #: contact_form.php:688
225
  msgid "Using (user agent)"
226
  msgstr "Използвайки (user agent)"
227
 
228
+ #: contact_form.php:361
229
  msgid "Change label for fields of the contact form"
230
  msgstr "Промяна на етикетите за полета във формата за контакт"
231
 
232
+ #: contact_form.php:374
233
+ msgid "Action after the send mail"
234
+ msgstr ""
235
+
236
+ #: contact_form.php:376
237
+ #, fuzzy
238
+ msgid "Display text"
239
+ msgstr "Покажи опция за прикачване на файл"
240
+
241
+ #: contact_form.php:377
242
+ msgid "Text"
243
+ msgstr ""
244
+
245
+ #: contact_form.php:378
246
+ msgid "Redirect to page"
247
+ msgstr ""
248
+
249
+ #: contact_form.php:379
250
+ msgid "Url"
251
+ msgstr ""
252
+
253
+ #: contact_form.php:384
254
  msgid "Save Changes"
255
  msgstr "Запис на промените"
256
 
257
+ #: contact_form.php:417
 
 
 
 
258
  msgid "Sorry, your e-mail could not be delivered."
259
  msgstr "Съжаляваме, Вашето съобщение не може да бъде изпратено."
260
 
261
+ #: contact_form.php:475
262
  msgid "You can attach files of the following types"
263
  msgstr "Можете да прикачвате файлове от следните типове"
264
 
265
+ #: contact_form.php:483
266
  msgid "Send me a copy"
267
  msgstr "Изпрати ми копие"
268
 
269
+ #: contact_form.php:493
270
  msgid "Submit"
271
  msgstr "Изпрати"
272
 
273
+ #: contact_form.php:532
274
  msgid "Your name is required."
275
  msgstr "Вашето име е задължително."
276
 
277
+ #: contact_form.php:533
278
  msgid "A proper e-mail address is required."
279
  msgstr "Правилният Email адрес е задължителен."
280
 
281
+ #: contact_form.php:534
282
  msgid "Subject text is required."
283
  msgstr "Заглавието е задължитено."
284
 
285
+ #: contact_form.php:535
286
  msgid "Message text is required."
287
  msgstr "Текстовото съобщение е задължително."
288
 
289
+ #: contact_form.php:536
290
  msgid "Please make corrections below and try again."
291
  msgstr "Моля направете необходимите корекции по-долу и опитайте отново."
292
 
293
+ #: contact_form.php:567
294
  msgid "Attachment is broken."
295
  msgstr "Прикаченият файл не се поддържа"
296
 
297
+ #: contact_form.php:580
298
  msgid "Please complete the CAPTCHA."
299
  msgstr "Моля попълнете CAPTCHA."
300
 
301
+ #: contact_form.php:696
302
  msgid "Contact from"
303
  msgstr "Форма за контакт"
304
 
305
+ #: contact_form.php:701
306
  msgid "Name"
307
  msgstr "Име"
308
 
309
+ #: contact_form.php:704
310
  msgid "Email"
311
  msgstr "Email"
312
 
313
+ #: contact_form.php:707
314
  msgid "Subject"
315
  msgstr "Относно"
316
 
317
+ #: contact_form.php:710
318
  msgid "Message"
319
  msgstr "Съобщение"
320
 
321
+ #: contact_form.php:713
322
  msgid "Site"
323
  msgstr "Сайт"
324
 
325
+ #: contact_form.php:758
326
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
327
  msgstr "Ако видиждате това значи, че вашият MIME клиент за електронна поща не поддържа MIME тип!"
328
 
329
+ #: contact_form.php:812
330
  msgid "FAQ"
331
  msgstr "FAQ"
332
 
333
+ #: contact_form.php:813
334
  msgid "Support"
335
  msgstr "Поддръжка"
336
 
languages/contact_form-da_DK.mo CHANGED
Binary file
languages/contact_form-da_DK.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-18 13:16+0300\n"
6
- "PO-Revision-Date: 2012-06-18 13:16+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Mads Hannibal <mh@shortcuts.dk>\n"
9
  "Language: \n"
@@ -28,8 +28,8 @@ msgid "Read more"
28
  msgstr "Læs mere"
29
 
30
  #: contact_form.php:78
31
- #: contact_form.php:750
32
- #: contact_form.php:759
33
  msgid "Settings"
34
  msgstr "Indstillinger"
35
 
@@ -59,7 +59,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
59
  msgstr "Hvis du har spørgsmål kan du kontakte os på plugin@bestwebsoft.com eller bruge kontaktformularen på vores hjemmeside"
60
 
61
  #: contact_form.php:108
62
- #: contact_form.php:242
63
  msgid "Contact Form Options"
64
  msgstr "Indstillinger for kontaktformular"
65
 
@@ -68,242 +68,269 @@ msgid "Contact Form"
68
  msgstr "Kontaktformular"
69
 
70
  #: contact_form.php:136
71
- #: contact_form.php:177
72
- #: contact_form.php:210
73
- #: contact_form.php:346
74
  msgid "Name:"
75
  msgstr "Navn:"
76
 
77
  #: contact_form.php:137
78
- #: contact_form.php:178
79
- #: contact_form.php:211
80
- #: contact_form.php:347
81
  msgid "E-Mail Address:"
82
  msgstr "E-mail-adresse:"
83
 
84
  #: contact_form.php:138
85
- #: contact_form.php:179
86
- #: contact_form.php:212
87
- #: contact_form.php:348
88
  msgid "Subject:"
89
  msgstr "Emne:"
90
 
91
  #: contact_form.php:139
92
- #: contact_form.php:180
93
- #: contact_form.php:213
94
- #: contact_form.php:349
95
  msgid "Message:"
96
  msgstr "Besked:"
97
 
98
  #: contact_form.php:140
99
- #: contact_form.php:181
100
- #: contact_form.php:214
101
- #: contact_form.php:350
102
  msgid "Attachment:"
103
  msgstr "Bilag:"
104
 
105
- #: contact_form.php:222
106
- #: contact_form.php:231
 
 
 
 
 
 
 
 
 
 
107
  msgid "Options saved."
108
  msgstr "Indstillinger gemt."
109
 
110
- #: contact_form.php:225
111
  msgid "Such user is not exist. Settings are not saved."
112
  msgstr "Brugeren eksisterer ikke. Indstillingerne er ikke gemt."
113
 
114
- #: contact_form.php:234
115
  msgid "Please input correct email. Settings are not saved."
116
  msgstr "Benyt venligst en korrekt e-mail-adresse. Indstillingerne er ikke gemt."
117
 
118
- #: contact_form.php:247
119
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
120
  msgstr "Hvis du ønsker at tilføje en kontaktformular til din side, kopier og put denne kode i din kommentar eller på din side: "
121
 
122
- #: contact_form.php:248
123
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
124
  msgstr "Hvis felterne nedenunder er tomme, vil meddelesen blive sendt til den adresse, som var angivet ved registreringen."
125
 
126
- #: contact_form.php:252
127
  msgid "Use email of wordpress user:"
128
  msgstr "Benyt e-mail-adressen til wordpressbrugeren:"
129
 
130
- #: contact_form.php:258
131
  msgid "Select user name"
132
  msgstr "Vælg brugernavn"
133
 
134
- #: contact_form.php:263
135
  msgid "Set a name of user who will get messages from a contact form."
136
  msgstr "Angiv det brugernavn, som vil modtage beskeder fra en kontaktformular."
137
 
138
- #: contact_form.php:267
139
  msgid "Use this email:"
140
  msgstr "Benyt denne e-mail-adresse:"
141
 
142
- #: contact_form.php:273
143
  msgid "Set an email address which will be used for messages receiving."
144
  msgstr "Angiv den e-mail-adresse, som vil blive benyttet ved modtagelse af beskeder."
145
 
146
- #: contact_form.php:277
147
  msgid "Additional options"
148
  msgstr "Flere valgmuligheder"
149
 
150
- #: contact_form.php:280
151
  msgid "Display Attachment block"
152
  msgstr "Vis bilag"
153
 
154
- #: contact_form.php:285
155
  msgid "Users can attach files of the following types"
156
  msgstr "Brugere kan vedlægge filer af følgende typer"
157
 
158
- #: contact_form.php:289
159
  msgid "Display Attachment explanations"
160
  msgstr ""
161
 
162
- #: contact_form.php:294
163
  msgid "Display explanations after Attachment block"
164
  msgstr ""
165
 
166
- #: contact_form.php:298
167
  msgid "Display Send me a copy block"
168
  msgstr "Vis \"Send mig en kopi\"-afsnit"
169
 
170
- #: contact_form.php:304
171
  msgid "What use?"
172
  msgstr ""
173
 
174
- #: contact_form.php:309
175
  msgid "Wp-mail"
176
  msgstr "Wp-mail"
177
 
178
- #: contact_form.php:310
179
  msgid "To send mail you can use the wordpress wp_mail function"
180
  msgstr ""
181
 
182
- #: contact_form.php:318
183
  msgid "Mail"
184
  msgstr "Mail"
185
 
186
- #: contact_form.php:319
187
  msgid "To send mail you can use the php mail function"
188
  msgstr ""
189
 
190
- #: contact_form.php:323
191
  msgid "Change FROM fields of the contact form"
192
  msgstr "Skift FRA-felterne i kontaktformularen"
193
 
194
- #: contact_form.php:329
195
  msgid "Display additional info in email"
196
  msgstr "Vis yderligere information i e-mail"
197
 
198
- #: contact_form.php:334
199
- #: contact_form.php:621
200
  msgid "Sent from (ip address)"
201
  msgstr "Sendt fra (IP-adresse)"
202
 
203
- #: contact_form.php:335
204
- #: contact_form.php:626
205
  msgid "Date/Time"
206
  msgstr "Dato/klokkeslæt"
207
 
208
- #: contact_form.php:336
209
- #: contact_form.php:631
210
  msgid "Coming from (referer)"
211
  msgstr "Sendt fra (referent)"
212
 
213
- #: contact_form.php:337
214
- #: contact_form.php:636
215
  msgid "Using (user agent)"
216
  msgstr "Med (user agent)"
217
 
218
- #: contact_form.php:341
219
  msgid "Change label for fields of the contact form"
220
  msgstr "Skifte etiketter til felterne i kontaktformularen"
221
 
222
- #: contact_form.php:356
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
223
  msgid "Save Changes"
224
  msgstr "Gem ændringer"
225
 
226
- #: contact_form.php:389
227
- msgid "Thank you for contacting us."
228
- msgstr "Tak fordi du kontaktede os"
229
-
230
- #: contact_form.php:394
231
  msgid "Sorry, your e-mail could not be delivered."
232
  msgstr "Beklager, men din e-mail kunne ikke leveres."
233
 
234
- #: contact_form.php:452
235
  msgid "You can attach files of the following types"
236
  msgstr "Du kan vedhæfte filer af følgende typer"
237
 
238
- #: contact_form.php:460
239
  msgid "Send me a copy"
240
  msgstr "Send mig en kopi"
241
 
242
- #: contact_form.php:470
243
  msgid "Submit"
244
  msgstr "Send"
245
 
246
- #: contact_form.php:486
247
  msgid "Your name is required."
248
  msgstr "Dit navn er obligatorisk"
249
 
250
- #: contact_form.php:487
251
  msgid "A proper e-mail address is required."
252
  msgstr "En korrekt e-mail-adresse er påkrævet."
253
 
254
- #: contact_form.php:488
255
  msgid "Subject text is required."
256
  msgstr "Emnefeltet er obligatorisk."
257
 
258
- #: contact_form.php:489
259
  msgid "Message text is required."
260
  msgstr "Du skal angive en besked"
261
 
262
- #: contact_form.php:490
263
  msgid "Please make corrections below and try again."
264
  msgstr "Ret venligst nedenstående og prøv igen."
265
 
266
- #: contact_form.php:521
267
  msgid "Attachment is broken."
268
  msgstr "Bilaget er korrupt."
269
 
270
- #: contact_form.php:534
271
  msgid "Please complete the CAPTCHA."
272
  msgstr "Venligst udfyld CAPTCHA-feltet."
273
 
274
- #: contact_form.php:644
275
  msgid "Contact from"
276
  msgstr "Kontakt fra"
277
 
278
- #: contact_form.php:649
279
  msgid "Name"
280
  msgstr "Navn"
281
 
282
- #: contact_form.php:652
283
  msgid "Email"
284
  msgstr "E-mail"
285
 
286
- #: contact_form.php:655
287
  msgid "Subject"
288
  msgstr "Emne"
289
 
290
- #: contact_form.php:658
291
  msgid "Message"
292
  msgstr "Besked"
293
 
294
- #: contact_form.php:661
295
  msgid "Site"
296
  msgstr "Site"
297
 
298
- #: contact_form.php:706
299
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
300
  msgstr "Dersom du kan se denne MIME, så aksepterer ikke klienten din MIME-typer!"
301
 
302
- #: contact_form.php:760
303
  msgid "FAQ"
304
  msgstr "Ofte stillede spørgsmål"
305
 
306
- #: contact_form.php:761
307
  msgid "Support"
308
  msgstr "Support"
309
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-27 17:41+0300\n"
6
+ "PO-Revision-Date: 2012-06-27 17:41+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Mads Hannibal <mh@shortcuts.dk>\n"
9
  "Language: \n"
28
  msgstr "Læs mere"
29
 
30
  #: contact_form.php:78
31
+ #: contact_form.php:802
32
+ #: contact_form.php:811
33
  msgid "Settings"
34
  msgstr "Indstillinger"
35
 
59
  msgstr "Hvis du har spørgsmål kan du kontakte os på plugin@bestwebsoft.com eller bruge kontaktformularen på vores hjemmeside"
60
 
61
  #: contact_form.php:108
62
+ #: contact_form.php:262
63
  msgid "Contact Form Options"
64
  msgstr "Indstillinger for kontaktformular"
65
 
68
  msgstr "Kontaktformular"
69
 
70
  #: contact_form.php:136
71
+ #: contact_form.php:180
72
+ #: contact_form.php:216
73
+ #: contact_form.php:366
74
  msgid "Name:"
75
  msgstr "Navn:"
76
 
77
  #: contact_form.php:137
78
+ #: contact_form.php:181
79
+ #: contact_form.php:217
80
+ #: contact_form.php:367
81
  msgid "E-Mail Address:"
82
  msgstr "E-mail-adresse:"
83
 
84
  #: contact_form.php:138
85
+ #: contact_form.php:182
86
+ #: contact_form.php:218
87
+ #: contact_form.php:368
88
  msgid "Subject:"
89
  msgstr "Emne:"
90
 
91
  #: contact_form.php:139
92
+ #: contact_form.php:183
93
+ #: contact_form.php:219
94
+ #: contact_form.php:369
95
  msgid "Message:"
96
  msgstr "Besked:"
97
 
98
  #: contact_form.php:140
99
+ #: contact_form.php:184
100
+ #: contact_form.php:220
101
+ #: contact_form.php:370
102
  msgid "Attachment:"
103
  msgstr "Bilag:"
104
 
105
+ #: contact_form.php:142
106
+ #: contact_form.php:186
107
+ msgid "Thank you for contacting us."
108
+ msgstr "Tak fordi du kontaktede os"
109
+
110
+ #: contact_form.php:230
111
+ msgid "If the option 'Redirect to page' is selected then url field should be fillied in the following format"
112
+ msgstr ""
113
+
114
+ #: contact_form.php:237
115
+ #: contact_form.php:242
116
+ #: contact_form.php:251
117
  msgid "Options saved."
118
  msgstr "Indstillinger gemt."
119
 
120
+ #: contact_form.php:245
121
  msgid "Such user is not exist. Settings are not saved."
122
  msgstr "Brugeren eksisterer ikke. Indstillingerne er ikke gemt."
123
 
124
+ #: contact_form.php:254
125
  msgid "Please input correct email. Settings are not saved."
126
  msgstr "Benyt venligst en korrekt e-mail-adresse. Indstillingerne er ikke gemt."
127
 
128
+ #: contact_form.php:267
129
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
130
  msgstr "Hvis du ønsker at tilføje en kontaktformular til din side, kopier og put denne kode i din kommentar eller på din side: "
131
 
132
+ #: contact_form.php:268
133
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
134
  msgstr "Hvis felterne nedenunder er tomme, vil meddelesen blive sendt til den adresse, som var angivet ved registreringen."
135
 
136
+ #: contact_form.php:272
137
  msgid "Use email of wordpress user:"
138
  msgstr "Benyt e-mail-adressen til wordpressbrugeren:"
139
 
140
+ #: contact_form.php:278
141
  msgid "Select user name"
142
  msgstr "Vælg brugernavn"
143
 
144
+ #: contact_form.php:283
145
  msgid "Set a name of user who will get messages from a contact form."
146
  msgstr "Angiv det brugernavn, som vil modtage beskeder fra en kontaktformular."
147
 
148
+ #: contact_form.php:287
149
  msgid "Use this email:"
150
  msgstr "Benyt denne e-mail-adresse:"
151
 
152
+ #: contact_form.php:293
153
  msgid "Set an email address which will be used for messages receiving."
154
  msgstr "Angiv den e-mail-adresse, som vil blive benyttet ved modtagelse af beskeder."
155
 
156
+ #: contact_form.php:297
157
  msgid "Additional options"
158
  msgstr "Flere valgmuligheder"
159
 
160
+ #: contact_form.php:300
161
  msgid "Display Attachment block"
162
  msgstr "Vis bilag"
163
 
164
+ #: contact_form.php:305
165
  msgid "Users can attach files of the following types"
166
  msgstr "Brugere kan vedlægge filer af følgende typer"
167
 
168
+ #: contact_form.php:309
169
  msgid "Display Attachment explanations"
170
  msgstr ""
171
 
172
+ #: contact_form.php:314
173
  msgid "Display explanations after Attachment block"
174
  msgstr ""
175
 
176
+ #: contact_form.php:318
177
  msgid "Display Send me a copy block"
178
  msgstr "Vis \"Send mig en kopi\"-afsnit"
179
 
180
+ #: contact_form.php:324
181
  msgid "What use?"
182
  msgstr ""
183
 
184
+ #: contact_form.php:329
185
  msgid "Wp-mail"
186
  msgstr "Wp-mail"
187
 
188
+ #: contact_form.php:330
189
  msgid "To send mail you can use the wordpress wp_mail function"
190
  msgstr ""
191
 
192
+ #: contact_form.php:338
193
  msgid "Mail"
194
  msgstr "Mail"
195
 
196
+ #: contact_form.php:339
197
  msgid "To send mail you can use the php mail function"
198
  msgstr ""
199
 
200
+ #: contact_form.php:343
201
  msgid "Change FROM fields of the contact form"
202
  msgstr "Skift FRA-felterne i kontaktformularen"
203
 
204
+ #: contact_form.php:349
205
  msgid "Display additional info in email"
206
  msgstr "Vis yderligere information i e-mail"
207
 
208
+ #: contact_form.php:354
209
+ #: contact_form.php:673
210
  msgid "Sent from (ip address)"
211
  msgstr "Sendt fra (IP-adresse)"
212
 
213
+ #: contact_form.php:355
214
+ #: contact_form.php:678
215
  msgid "Date/Time"
216
  msgstr "Dato/klokkeslæt"
217
 
218
+ #: contact_form.php:356
219
+ #: contact_form.php:683
220
  msgid "Coming from (referer)"
221
  msgstr "Sendt fra (referent)"
222
 
223
+ #: contact_form.php:357
224
+ #: contact_form.php:688
225
  msgid "Using (user agent)"
226
  msgstr "Med (user agent)"
227
 
228
+ #: contact_form.php:361
229
  msgid "Change label for fields of the contact form"
230
  msgstr "Skifte etiketter til felterne i kontaktformularen"
231
 
232
+ #: contact_form.php:374
233
+ msgid "Action after the send mail"
234
+ msgstr ""
235
+
236
+ #: contact_form.php:376
237
+ #, fuzzy
238
+ msgid "Display text"
239
+ msgstr "Vis bilag"
240
+
241
+ #: contact_form.php:377
242
+ msgid "Text"
243
+ msgstr ""
244
+
245
+ #: contact_form.php:378
246
+ msgid "Redirect to page"
247
+ msgstr ""
248
+
249
+ #: contact_form.php:379
250
+ msgid "Url"
251
+ msgstr ""
252
+
253
+ #: contact_form.php:384
254
  msgid "Save Changes"
255
  msgstr "Gem ændringer"
256
 
257
+ #: contact_form.php:417
 
 
 
 
258
  msgid "Sorry, your e-mail could not be delivered."
259
  msgstr "Beklager, men din e-mail kunne ikke leveres."
260
 
261
+ #: contact_form.php:475
262
  msgid "You can attach files of the following types"
263
  msgstr "Du kan vedhæfte filer af følgende typer"
264
 
265
+ #: contact_form.php:483
266
  msgid "Send me a copy"
267
  msgstr "Send mig en kopi"
268
 
269
+ #: contact_form.php:493
270
  msgid "Submit"
271
  msgstr "Send"
272
 
273
+ #: contact_form.php:532
274
  msgid "Your name is required."
275
  msgstr "Dit navn er obligatorisk"
276
 
277
+ #: contact_form.php:533
278
  msgid "A proper e-mail address is required."
279
  msgstr "En korrekt e-mail-adresse er påkrævet."
280
 
281
+ #: contact_form.php:534
282
  msgid "Subject text is required."
283
  msgstr "Emnefeltet er obligatorisk."
284
 
285
+ #: contact_form.php:535
286
  msgid "Message text is required."
287
  msgstr "Du skal angive en besked"
288
 
289
+ #: contact_form.php:536
290
  msgid "Please make corrections below and try again."
291
  msgstr "Ret venligst nedenstående og prøv igen."
292
 
293
+ #: contact_form.php:567
294
  msgid "Attachment is broken."
295
  msgstr "Bilaget er korrupt."
296
 
297
+ #: contact_form.php:580
298
  msgid "Please complete the CAPTCHA."
299
  msgstr "Venligst udfyld CAPTCHA-feltet."
300
 
301
+ #: contact_form.php:696
302
  msgid "Contact from"
303
  msgstr "Kontakt fra"
304
 
305
+ #: contact_form.php:701
306
  msgid "Name"
307
  msgstr "Navn"
308
 
309
+ #: contact_form.php:704
310
  msgid "Email"
311
  msgstr "E-mail"
312
 
313
+ #: contact_form.php:707
314
  msgid "Subject"
315
  msgstr "Emne"
316
 
317
+ #: contact_form.php:710
318
  msgid "Message"
319
  msgstr "Besked"
320
 
321
+ #: contact_form.php:713
322
  msgid "Site"
323
  msgstr "Site"
324
 
325
+ #: contact_form.php:758
326
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
327
  msgstr "Dersom du kan se denne MIME, så aksepterer ikke klienten din MIME-typer!"
328
 
329
+ #: contact_form.php:812
330
  msgid "FAQ"
331
  msgstr "Ofte stillede spørgsmål"
332
 
333
+ #: contact_form.php:813
334
  msgid "Support"
335
  msgstr "Support"
336
 
languages/contact_form-de_DE.mo CHANGED
Binary file
languages/contact_form-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-18 13:16+0300\n"
6
- "PO-Revision-Date: 2012-06-18 13:16+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "Language: \n"
@@ -28,8 +28,8 @@ msgid "Read more"
28
  msgstr "Lesen Sie mehr"
29
 
30
  #: contact_form.php:78
31
- #: contact_form.php:750
32
- #: contact_form.php:759
33
  msgid "Settings"
34
  msgstr "Einstellungen"
35
 
@@ -59,7 +59,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
59
  msgstr "Bei Fragen wenden Sie sich an plugin@bestwebsoft.com oder füllen Sie das Kontakformular auf unserer Webseite aus"
60
 
61
  #: contact_form.php:108
62
- #: contact_form.php:242
63
  msgid "Contact Form Options"
64
  msgstr "Contact Form Einstellungen"
65
 
@@ -68,242 +68,269 @@ msgid "Contact Form"
68
  msgstr "Contact Form"
69
 
70
  #: contact_form.php:136
71
- #: contact_form.php:177
72
- #: contact_form.php:210
73
- #: contact_form.php:346
74
  msgid "Name:"
75
  msgstr "Name:"
76
 
77
  #: contact_form.php:137
78
- #: contact_form.php:178
79
- #: contact_form.php:211
80
- #: contact_form.php:347
81
  msgid "E-Mail Address:"
82
  msgstr "E-Mail-Adresse:"
83
 
84
  #: contact_form.php:138
85
- #: contact_form.php:179
86
- #: contact_form.php:212
87
- #: contact_form.php:348
88
  msgid "Subject:"
89
  msgstr "Betreff:"
90
 
91
  #: contact_form.php:139
92
- #: contact_form.php:180
93
- #: contact_form.php:213
94
- #: contact_form.php:349
95
  msgid "Message:"
96
  msgstr "Nachricht:"
97
 
98
  #: contact_form.php:140
99
- #: contact_form.php:181
100
- #: contact_form.php:214
101
- #: contact_form.php:350
102
  msgid "Attachment:"
103
  msgstr "Anhang:"
104
 
105
- #: contact_form.php:222
106
- #: contact_form.php:231
 
 
 
 
 
 
 
 
 
 
107
  msgid "Options saved."
108
  msgstr "Einstellungen gespeichert."
109
 
110
- #: contact_form.php:225
111
  msgid "Such user is not exist. Settings are not saved."
112
  msgstr "Dieser Benutzer existiert nicht. Einstellungen nicht gespeichert."
113
 
114
- #: contact_form.php:234
115
  msgid "Please input correct email. Settings are not saved."
116
  msgstr "Bitte geben Sie eine korrekte E-Mail-Adresse ein. Einstellungen nicht gespeichert."
117
 
118
- #: contact_form.php:247
119
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
120
  msgstr "Wenn Sie Contact Form in Ihrer Webpräsenz verwenden wollen, kopieren Sie einfach folgenden shortcode auf Ihre Seite oder Ihren Artikel oder widget:"
121
 
122
- #: contact_form.php:248
123
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
124
  msgstr "Wenn das folgende Feld leer bleibt wird die Nachricht an die Adresse gesandt, die bei der Registrierung angegeben wurde."
125
 
126
- #: contact_form.php:252
127
  msgid "Use email of wordpress user:"
128
  msgstr "Benutze die E-Mail-Adresse von WordPress-Benutzer:"
129
 
130
- #: contact_form.php:258
131
  msgid "Select user name"
132
  msgstr "Wähle Benutzer"
133
 
134
- #: contact_form.php:263
135
  msgid "Set a name of user who will get messages from a contact form."
136
  msgstr "Definieren Sie die Benutzer, die Nachrichten von Contact Form bekommen sollen."
137
 
138
- #: contact_form.php:267
139
  msgid "Use this email:"
140
  msgstr "Verwende diese E-Mail-Adresse:"
141
 
142
- #: contact_form.php:273
143
  msgid "Set an email address which will be used for messages receiving."
144
  msgstr "Definieren Sie die E-Mail-Adresse, die Contact Form verwenden soll."
145
 
146
- #: contact_form.php:277
147
  msgid "Additional options"
148
  msgstr "Erweiterte Optionen"
149
 
150
- #: contact_form.php:280
151
  msgid "Display Attachment block"
152
  msgstr "Anhänge erlauben"
153
 
154
- #: contact_form.php:285
155
  msgid "Users can attach files of the following types"
156
  msgstr "Benutzer können folgende Dateitypen anhängen"
157
 
158
- #: contact_form.php:289
159
  msgid "Display Attachment explanations"
160
  msgstr ""
161
 
162
- #: contact_form.php:294
163
  msgid "Display explanations after Attachment block"
164
  msgstr ""
165
 
166
- #: contact_form.php:298
167
  msgid "Display Send me a copy block"
168
  msgstr "Kopie-an-mich anzeigen"
169
 
170
- #: contact_form.php:304
171
  msgid "What use?"
172
  msgstr ""
173
 
174
- #: contact_form.php:309
175
  msgid "Wp-mail"
176
  msgstr "Wp-mail"
177
 
178
- #: contact_form.php:310
179
  msgid "To send mail you can use the wordpress wp_mail function"
180
  msgstr ""
181
 
182
- #: contact_form.php:318
183
  msgid "Mail"
184
  msgstr "Mail"
185
 
186
- #: contact_form.php:319
187
  msgid "To send mail you can use the php mail function"
188
  msgstr ""
189
 
190
- #: contact_form.php:323
191
  msgid "Change FROM fields of the contact form"
192
  msgstr "Veränderung gegenüber Felder des Kontaktformulars"
193
 
194
- #: contact_form.php:329
195
  msgid "Display additional info in email"
196
  msgstr ""
197
 
198
- #: contact_form.php:334
199
- #: contact_form.php:621
200
  msgid "Sent from (ip address)"
201
  msgstr "Gesendet von (IP-Adresse)"
202
 
203
- #: contact_form.php:335
204
- #: contact_form.php:626
205
  msgid "Date/Time"
206
  msgstr "Datum / Uhrzeit"
207
 
208
- #: contact_form.php:336
209
- #: contact_form.php:631
210
  msgid "Coming from (referer)"
211
  msgstr "gesendet von (referer)"
212
 
213
- #: contact_form.php:337
214
- #: contact_form.php:636
215
  msgid "Using (user agent)"
216
  msgstr "mit (user agent)"
217
 
218
- #: contact_form.php:341
219
  msgid "Change label for fields of the contact form"
220
  msgstr "Ändern Sie die Bezeichnung der Felder des Kontaktformulars"
221
 
222
- #: contact_form.php:356
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
223
  msgid "Save Changes"
224
  msgstr "Änderungen speichern"
225
 
226
- #: contact_form.php:389
227
- msgid "Thank you for contacting us."
228
- msgstr "Danke für Ihre Nachricht."
229
-
230
- #: contact_form.php:394
231
  msgid "Sorry, your e-mail could not be delivered."
232
  msgstr "Entschuldigung, Ihre E-Mail konnte leider nicht zugestellt werden."
233
 
234
- #: contact_form.php:452
235
  msgid "You can attach files of the following types"
236
  msgstr "Sie können folgende Dateitypen anhängen"
237
 
238
- #: contact_form.php:460
239
  msgid "Send me a copy"
240
  msgstr "Kopie an mich senden"
241
 
242
- #: contact_form.php:470
243
  msgid "Submit"
244
  msgstr "senden"
245
 
246
- #: contact_form.php:486
247
  msgid "Your name is required."
248
  msgstr "Ihr Name wird benötigt"
249
 
250
- #: contact_form.php:487
251
  msgid "A proper e-mail address is required."
252
  msgstr "Eine korrekte E-Mail-Adresse ist zwingend."
253
 
254
- #: contact_form.php:488
255
  msgid "Subject text is required."
256
  msgstr "Bitte geben Sie einen Betreff ein."
257
 
258
- #: contact_form.php:489
259
  msgid "Message text is required."
260
  msgstr "Bitte geben Sie eine Nachricht ein."
261
 
262
- #: contact_form.php:490
263
  msgid "Please make corrections below and try again."
264
  msgstr "Bitte führen Sie die Korrekturen unten durch und versuchen Sie es erneut."
265
 
266
- #: contact_form.php:521
267
  msgid "Attachment is broken."
268
  msgstr "Anhang scheint defekt zu sein."
269
 
270
- #: contact_form.php:534
271
  msgid "Please complete the CAPTCHA."
272
  msgstr "Bitte ergänzen Sie das CAPTCHA."
273
 
274
- #: contact_form.php:644
275
  msgid "Contact from"
276
  msgstr "Kontakt von"
277
 
278
- #: contact_form.php:649
279
  msgid "Name"
280
  msgstr "Nome"
281
 
282
- #: contact_form.php:652
283
  msgid "Email"
284
  msgstr "E-Mail"
285
 
286
- #: contact_form.php:655
287
  msgid "Subject"
288
  msgstr "Betreff"
289
 
290
- #: contact_form.php:658
291
  msgid "Message"
292
  msgstr "Nachricht"
293
 
294
- #: contact_form.php:661
295
  msgid "Site"
296
  msgstr "Site"
297
 
298
- #: contact_form.php:706
299
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
300
  msgstr "Wenn Sie dieses MIME sehen, unterstützt Ihr Client keine MIME-Typen!"
301
 
302
- #: contact_form.php:760
303
  msgid "FAQ"
304
  msgstr "Häufig gestellte Fragen (FAQ)"
305
 
306
- #: contact_form.php:761
307
  msgid "Support"
308
  msgstr "Unterstützung"
309
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-06-27 17:41+0300\n"
6
+ "PO-Revision-Date: 2012-06-27 17:41+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "Language: \n"
28
  msgstr "Lesen Sie mehr"
29
 
30
  #: contact_form.php:78
31
+ #: contact_form.php:802
32
+ #: contact_form.php:811
33
  msgid "Settings"
34
  msgstr "Einstellungen"
35
 
59
  msgstr "Bei Fragen wenden Sie sich an plugin@bestwebsoft.com oder füllen Sie das Kontakformular auf unserer Webseite aus"
60
 
61
  #: contact_form.php:108
62
+ #: contact_form.php:262
63
  msgid "Contact Form Options"
64
  msgstr "Contact Form Einstellungen"
65
 
68
  msgstr "Contact Form"
69
 
70
  #: contact_form.php:136
71
+ #: contact_form.php:180
72
+ #: contact_form.php:216
73
+ #: contact_form.php:366
74
  msgid "Name:"
75
  msgstr "Name:"
76
 
77
  #: contact_form.php:137
78
+ #: contact_form.php:181
79
+ #: contact_form.php:217
80
+ #: contact_form.php:367
81
  msgid "E-Mail Address:"
82
  msgstr "E-Mail-Adresse:"
83
 
84
  #: contact_form.php:138
85
+ #: contact_form.php:182
86
+ #: contact_form.php:218
87
+ #: contact_form.php:368
88
  msgid "Subject:"
89
  msgstr "Betreff:"
90
 
91
  #: contact_form.php:139
92
+ #: contact_form.php:183
93
+ #: contact_form.php:219
94
+ #: contact_form.php:369
95
  msgid "Message:"
96
  msgstr "Nachricht:"
97
 
98
  #: contact_form.php:140
99
+ #: contact_form.php:184
100
+ #: contact_form.php:220
101
+ #: contact_form.php:370
102
  msgid "Attachment:"
103
  msgstr "Anhang:"
104
 
105
+ #: contact_form.php:142
106
+ #: contact_form.php:186
107
+ msgid "Thank you for contacting us."
108
+ msgstr "Danke für Ihre Nachricht."
109
+
110
+ #: contact_form.php:230
111
+ msgid "If the option 'Redirect to page' is selected then url field should be fillied in the following format"
112
+ msgstr ""
113
+
114
+ #: contact_form.php:237
115
+ #: contact_form.php:242
116
+ #: contact_form.php:251
117
  msgid "Options saved."
118
  msgstr "Einstellungen gespeichert."
119
 
120
+ #: contact_form.php:245
121
  msgid "Such user is not exist. Settings are not saved."
122
  msgstr "Dieser Benutzer existiert nicht. Einstellungen nicht gespeichert."
123
 
124
+ #: contact_form.php:254
125
  msgid "Please input correct email. Settings are not saved."
126
  msgstr "Bitte geben Sie eine korrekte E-Mail-Adresse ein. Einstellungen nicht gespeichert."
127
 
128
+ #: contact_form.php:267
129
  msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
130
  msgstr "Wenn Sie Contact Form in Ihrer Webpräsenz verwenden wollen, kopieren Sie einfach folgenden shortcode auf Ihre Seite oder Ihren Artikel oder widget:"
131
 
132
+ #: contact_form.php:268
133
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
134
  msgstr "Wenn das folgende Feld leer bleibt wird die Nachricht an die Adresse gesandt, die bei der Registrierung angegeben wurde."
135
 
136
+ #: contact_form.php:272
137
  msgid "Use email of wordpress user:"
138
  msgstr "Benutze die E-Mail-Adresse von WordPress-Benutzer:"
139
 
140
+ #: contact_form.php:278
141
  msgid "Select user name"
142
  msgstr "Wähle Benutzer"
143
 
144
+ #: contact_form.php:283
145
  msgid "Set a name of user who will get messages from a contact form."
146
  msgstr "Definieren Sie die Benutzer, die Nachrichten von Contact Form bekommen sollen."
147
 
148
+ #: contact_form.php:287
149
  msgid "Use this email:"
150
  msgstr "Verwende diese E-Mail-Adresse:"
151
 
152
+ #: contact_form.php:293
153
  msgid "Set an email address which will be used for messages receiving."
154
  msgstr "Definieren Sie die E-Mail-Adresse, die Contact Form verwenden soll."
155
 
156
+ #: contact_form.php:297
157
  msgid "Additional options"
158
  msgstr "Erweiterte Optionen"
159
 
160
+ #: contact_form.php:300
161
  msgid "Display Attachment block"
162
  msgstr "Anhänge erlauben"
163
 
164
+ #: contact_form.php:305
165
  msgid "Users can attach files of the following types"
166
  msgstr "Benutzer können folgende Dateitypen anhängen"
167
 
168
+ #: contact_form.php:309
169
  msgid "Display Attachment explanations"
170
  msgstr ""
171
 
172
+ #: contact_form.php:314
173
  msgid "Display explanations after Attachment block"
174
  msgstr ""
175
 
176
+ #: contact_form.php:318
177
  msgid "Display Send me a copy block"
178
  msgstr "Kopie-an-mich anzeigen"
179
 
180
+ #: contact_form.php:324
181
  msgid "What use?"
182
  msgstr ""
183
 
184
+ #: contact_form.php:329
185
  msgid "Wp-mail"
186
  msgstr "Wp-mail"
187
 
188
+ #: contact_form.php:330
189
  msgid "To send mail you can use the wordpress wp_mail function"
190
  msgstr ""
191
 
192
+ #: contact_form.php:338
193
  msgid "Mail"
194
  msgstr "Mail"
195
 
196
+ #: contact_form.php:339
197
  msgid "To send mail you can use the php mail function"
198
  msgstr ""
199
 
200
+ #: contact_form.php:343
201
  msgid "Change FROM fields of the contact form"
202
  msgstr "Veränderung gegenüber Felder des Kontaktformulars"
203
 
204
+ #: contact_form.php:349
205
  msgid "Display additional info in email"
206
  msgstr ""
207
 
208
+ #: contact_form.php:354
209
+ #: contact_form.php:673
210
  msgid "Sent from (ip address)"
211
  msgstr "Gesendet von (IP-Adresse)"
212
 
213
+ #: contact_form.php:355
214
+ #: contact_form.php:678
215
  msgid "Date/Time"
216
  msgstr "Datum / Uhrzeit"
217
 
218
+ #: contact_form.php:356
219
+ #: contact_form.php:683
220
  msgid "Coming from (referer)"
221
  msgstr "gesendet von (referer)"
222
 
223
+ #: contact_form.php:357
224
+ #: contact_form.php:688
225
  msgid "Using (user agent)"
226
  msgstr "mit (user agent)"
227
 
228
+ #: contact_form.php:361
229
  msgid "Change label for fields of the contact form"
230
  msgstr "Ändern Sie die Bezeichnung der Felder des Kontaktformulars"
231
 
232
+ #: contact_form.php:374
233
+ msgid "Action after the send mail"
234
+ msgstr ""
235
+
236
+ #: contact_form.php:376
237
+ #, fuzzy
238
+ msgid "Display text"
239
+ msgstr "Anhänge erlauben"
240
+
241
+ #: contact_form.php:377
242
+ msgid "Text"
243
+ msgstr ""
244
+
245
+ #: contact_form.php:378
246
+ msgid "Redirect to page"
247
+ msgstr ""
248
+
249
+ #: contact_form.php:379
250
+ msgid "Url"
251
+ msgstr ""
252
+
253
+ #: contact_form.php:384
254
  msgid "Save Changes"
255
  msgstr "Änderungen speichern"
256
 
257
+ #: contact_form.php:417
 
 
 
 
258
  msgid "Sorry, your e-mail could not be delivered."
259
  msgstr "Entschuldigung, Ihre E-Mail konnte leider nicht zugestellt werden."
260
 
261
+ #: contact_form.php:475
262
  msgid "You can attach files of the following types"
263
  msgstr "Sie können folgende Dateitypen anhängen"
264
 
265
+ #: contact_form.php:483
266
  msgid "Send me a copy"
267
  msgstr "Kopie an mich senden"
268
 
269
+ #: contact_form.php:493
270
  msgid "Submit"
271
  msgstr "senden"
272
 
273
+ #: contact_form.php:532
274
  msgid "Your name is required."
275
  msgstr "Ihr Name wird benötigt"
276
 
277
+ #: contact_form.php:533
278
  msgid "A proper e-mail address is required."
279
  msgstr "Eine korrekte E-Mail-Adresse ist zwingend."
280
 
281
+ #: contact_form.php:534
282
  msgid "Subject text is required."
283
  msgstr "Bitte geben Sie einen Betreff ein."
284
 
285
+ #: contact_form.php:535
286
  msgid "Message text is required."
287
  msgstr "Bitte geben Sie eine Nachricht ein."
288
 
289
+ #: contact_form.php:536
290
  msgid "Please make corrections below and try again."
291
  msgstr "Bitte führen Sie die Korrekturen unten durch und versuchen Sie es erneut."
292
 
293
+ #: contact_form.php:567
294
  msgid "Attachment is broken."
295
  msgstr "Anhang scheint defekt zu sein."
296
 
297
+ #: contact_form.php:580
298
  msgid "Please complete the CAPTCHA."
299
  msgstr "Bitte ergänzen Sie das CAPTCHA."
300
 
301
+ #: contact_form.php:696
302
  msgid "Contact from"
303
  msgstr "Kontakt von"
304
 
305
+ #: contact_form.php:701
306
  msgid "Name"
307
  msgstr "Nome"
308
 
309
+ #: contact_form.php:704
310
  msgid "Email"
311
  msgstr "E-Mail"
312
 
313
+ #: contact_form.php:707
314
  msgid "Subject"
315
  msgstr "Betreff"
316
 
317
+ #: contact_form.php:710
318
  msgid "Message"
319
  msgstr "Nachricht"
320
 
321
+ #: contact_form.php:713
322
  msgid "Site"
323
  msgstr "Site"
324
 
325
+ #: contact_form.php:758
326
  msgid "If you can see this MIME than your client doesn't accept MIME types!"
327
  msgstr "Wenn Sie dieses MIME sehen, unterstützt Ihr Client keine MIME-Typen!"
328
 
329
+ #: contact_form.php:812
330
  msgid "FAQ"
331
  msgstr "Häufig gestellte Fragen (FAQ)"
332
 
333
+ #: contact_form.php:813
334
  msgid "Support"
335
  msgstr "Unterstützung"
336
 
languages/contact_form-el_GR.mo CHANGED
Binary file
languages/contact_form-el_GR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-06-18 13:16+0300\n"
6
- "PO-Revision-Date: 2012-06-18 13:16+0300\n"
7
  "Last-Translator: zos <zos@bestwebsoft.com>\n"
8
  "Language-Team: Pantelis Panteloglou <ppanteloglou@gmail.com>\n"
9
  "Language: \n"
@@ -28,8 +28,8 @@ msgid "Read more"
28
  msgstr "Διαβάστε περισσότερα"
29
 
30
  #: contact_form.php:78
31
- #: contact_form.php:750
32
- #: contact_form.php:759
33
  msgid "Settings"
34
  msgstr "Ρυθμίσεις"
35
 
@@ -59,7 +59,7 @@ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com o
59
  msgstr "Αν έχετε απορίες, επικοινωνήστε στο plugin@bestwebsoft.com ή μέσω της φόρμας επικοινωνίας της ιστοσελίδας μας"
60
 
61
  #: contact_form.php:108
62
- #: contact_form.php:242
63
  msgid "Contact Form Options"
64
  msgstr "Επιλογές φόρμας επικοινωνίας"
65
 
@@ -68,242 +68,269 @@ msgid "Contact Form"
68
  msgstr "Φόρμα επικοινωνίας"
69
 
70
  #: contact_form.php:136
71
- #: contact_form.php:177
72
- #: contact_form.php:210
73
- #: contact_form.php:346
74
  msgid "Name:"
75
  msgstr "Όνομα:"
76
 
77
  #: contact_form.php:137
78
- #: contact_form.php:178
79
- #: contact_form.php:211
80
- #: contact_form.php:347
81
  msgid "E-Mail Address:"
82
  msgstr "Διεύθυνση e-mail:"
83
 
84
  #: contact_form.php:138
85
- #: contact_form.php:179
86
- #: contact_form.php:212
87
- #: contact_form.php:348
88
  msgid "Subject:"
89
  msgstr "Θέμα:"
90
 
91
  #: contact_form.php:139
92
- #: contact_form.php:180
93
- #: contact_form.php:213
94
- #: contact_form.php:349
95
  msgid "Message:"
96
  msgstr "Μήνυμα:"
97
 
98
  #: contact_form.php:140
99
- #: contact_form.php:181
100
- #: contact_form.php:214
101
- #: contact_form.php:350
102
  msgid "Attachment:"
103
  msgstr "Επισύναψη:"
104
 
105
- #: contact_form.php:222
106
- #: contact_form.php:231
 
 
 
 
 
 
 
 
 
 
107
  msgid "Options saved."
108
  msgstr "Οι επιλογές αποθηκεύτηκαν."
109
 
110
- #: contact_form.php:225
111
  msgid "Such user is not exist. Settings are not saved."
112
  msgstr "Δεν υπάρχει τέτοιος χρήστης. Οι επιλογές δεν αποθηκεύτηκαν."
113
 
114
- #: contact_form.php:234
115