Contact Form by BestWebSoft - Version 3.11

Version Description

  • 12.03.2012 =
  • NEW : French language file is added to the plugin.
  • NEW : Added ability to use the contact form shortcode as widget in the sidebars.
  • Change : The change was done to an email sending functionality now it is using wordpress functionality only.
Download this release

Release Info

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

Code changes from version 3.10 to 3.11

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.10
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
@@ -42,7 +42,8 @@ if( ! function_exists( 'bws_add_menu_render' ) ) {
42
  array( 'portfolio\/portfolio.php', 'Portfolio', 'http://wordpress.org/extend/plugins/portfolio/', 'http://bestwebsoft.com/plugin/portfolio-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Portfolio+bestwebsoft&plugin-search-input=Search+Plugins', '' ),
43
  array( 'gallery-plugin\/gallery-plugin.php', 'Gallery', 'http://wordpress.org/extend/plugins/gallery-plugin/', 'http://bestwebsoft.com/plugin/gallery-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Gallery+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', '' ),
44
  array( 'adsense-plugin\/adsense-plugin.php', 'Google AdSense Plugin', 'http://wordpress.org/extend/plugins/adsense-plugin/', 'http://bestwebsoft.com/plugin/google-adsense-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Adsense+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=adsense-plugin.php' ),
45
- array( 'custom-search-plugin\/custom-search-plugin.php', 'Custom Search Plugin', 'http://wordpress.org/extend/plugins/custom-search-plugin/', 'http://bestwebsoft.com/plugin/custom-search-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Custom+Search+plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=custom_search.php' )
 
46
  );
47
  foreach($array_plugins as $plugins) {
48
  if( 0 < count( preg_grep( "/".$plugins[0]."/", $active_plugins ) ) ) {
@@ -212,7 +213,7 @@ if( ! function_exists( 'cntctfrm_settings_page' ) ) {
212
  <div class="error" <?php if( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
213
  <form method="post" action="admin.php?page=contact_form.php">
214
  <span style="margin-bottom:15px;">
215
- <p><?php _e( "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page:", 'contact_form' ); ?> [contact_form]</p>
216
  <?php _e( "If information in the below fields are empty then the message will be send to an address which was specified during registration.", 'contact_form' ); ?>
217
  </span>
218
  <table class="form-table">
@@ -357,7 +358,7 @@ if( ! function_exists( 'cntctfrm_display_form' ) ) {
357
  $content .= '<div style="text-align: left; color: red;">'.$error_message['error_message'].'</div>';
358
  }
359
  $content .= '<div style="text-align: left;">
360
- <textarea rows="10" cols="30" name="cntctfrm_contact_message" id="cntctfrm_contact_message">'.$message.'</textarea>
361
  </div>';
362
  if($cntctfrm_options['cntctfrm_attachment'] == 1 ) {
363
  $content .= '<div style="text-align: left;">
@@ -383,7 +384,7 @@ if( ! function_exists( 'cntctfrm_display_form' ) ) {
383
  }
384
 
385
  $content .= '<div style="text-align: left; padding-top: 8px;">
386
- <input type="hidden" value="send" name="cntctfrm_contact_action"><input type="hidden" value="Version: 3.08">
387
  <input type="submit" value="'. __( "Submit", 'contact_form' ). '" style="cursor: pointer; margin: 0pt; text-align: center;margin-bottom:10px;">
388
  </div>
389
  </form>';
@@ -419,7 +420,7 @@ if( ! function_exists( 'cntctfrm_check_form' ) ) {
419
  'jpg'=>'image/jpeg',
420
  'JPG'=>'image/jpeg',
421
  'jpe'=>'image/jpeg',
422
- 'TIFF'=>'image/tifff',
423
  'tiff'=>'image/tiff',
424
  'tif'=>'image/tiff',
425
  'bmp'=>'image/x-ms-bmp',
@@ -448,8 +449,24 @@ if( ! function_exists( 'cntctfrm_check_form' ) ) {
448
  if( ! apply_filters( 'cntctfrm_check_form', $_REQUEST ) )
449
  $error_message['error_captcha'] = __( "Please complete the CAPTCHA.", 'contact_form' );
450
  if( isset($_FILES["cntctfrm_contact_attachment"]["tmp_name"]) && $_FILES["cntctfrm_contact_attachment"]["tmp_name"] != "") {
451
- $uploads = wp_upload_dir();
452
- $path_of_uploaded_file = $uploads['path'] ."/". $_FILES["cntctfrm_contact_attachment"]["name"];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
453
  $tmp_path = $_FILES["cntctfrm_contact_attachment"]["tmp_name"];
454
  $path_info = pathinfo( $path_of_uploaded_file );
455
 
@@ -475,7 +492,7 @@ if( ! function_exists( 'cntctfrm_check_form' ) ) {
475
  // Send mail function
476
  if( ! function_exists( 'cntctfrm_send_mail' ) ) {
477
  function cntctfrm_send_mail() {
478
- global $cntctfrm_options;
479
  $to = "";
480
  if( isset( $_SESSION['cntctfrm_send_mail'] ) && $_SESSION['cntctfrm_send_mail'] == true )
481
  return true;
@@ -496,6 +513,9 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
496
  $user_info_string = '';
497
  $userdomain = '';
498
  $form_action_url = '';
 
 
 
499
  if ( getenv('HTTPS') == 'on' ) {
500
  $form_action_url = 'https://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
501
  } else {
@@ -552,57 +572,21 @@ if( ! function_exists( 'cntctfrm_send_mail' ) ) {
552
  </body>
553
  </html>
554
  ';
 
 
 
 
 
 
555
  if( $cntctfrm_options['cntctfrm_attachment'] == 1 && isset($_FILES["cntctfrm_contact_attachment"]["tmp_name"]) && $_FILES["cntctfrm_contact_attachment"]["tmp_name"] != "") {
556
- global $path_of_uploaded_file;
557
- $headers = "";
558
- $message_block = $message;
559
-
560
- // Additional headers
561
- $headers .= 'From: '.$_REQUEST['cntctfrm_contact_email']. "\r\n";
562
-
563
- $bound_text = "jimmyP123";
564
-
565
- $bound = "--".$bound_text."\r\n";
566
-
567
- $bound_last = "--".$bound_text."--\r\n";
568
-
569
- $headers .= "MIME-Version: 1.0\r\n"
570
- ."Content-Type: multipart/mixed; boundary=\"$bound_text\"";
571
-
572
- $message = __( "If you can see this MIME than your client doesn't accept MIME types!", "contact_form" ) . "\r\n"
573
- .$bound;
574
-
575
-
576
- $message .= "Content-Type: text/html; charset=\"utf-8\"\r\n"
577
- ."Content-Transfer-Encoding: 7bit\r\n\r\n"
578
- ."".$message_block."\r\n"
579
- .$value
580
- .$bound;
581
-
582
- $file = file_get_contents($path_of_uploaded_file);
583
- $path_info = pathinfo( $path_of_uploaded_file );
584
-
585
- $message .= "Content-Type: ".$path_info['extension']."; name=\"".basename($path_of_uploaded_file)."\"\r\n"
586
- ."Content-Transfer-Encoding: base64\r\n"
587
- ."Content-disposition: attachment; file=\"".basename($path_of_uploaded_file)."\"\r\n"
588
- ."\r\n"
589
- .chunk_split( base64_encode( $file ) )
590
- .$bound_last;
591
  }
592
- else {
593
- // To send HTML mail, the Content-type header must be set
594
- $headers = 'MIME-Version: 1.0' . "\r\n";
595
- $headers .= 'Content-type: text/html; charset=utf-8' . "\r\n";
596
-
597
- // Additional headers
598
- $headers .= 'From: '.$_REQUEST['cntctfrm_contact_email']. "\r\n";
599
 
600
- // Mail it
601
- }
602
- if( $_REQUEST['cntctfrm_contact_send_copy'] == 1 )
603
- wp_mail($_REQUEST['cntctfrm_contact_email'], stripslashes($subject), stripslashes($message), $headers);
604
 
605
- return wp_mail($to, stripslashes($subject), stripslashes($message), $headers);
 
606
  }
607
  return false;
608
  }
@@ -674,9 +658,17 @@ if ( ! function_exists ( 'cntctfrm_admin_head' ) ) {
674
  }
675
  }
676
 
 
 
 
 
 
 
677
  add_action( 'init', 'cntctfrm_plugin_init' );
678
 
679
- add_action( 'init', 'cntctfrm_admin_head' );
 
 
680
 
681
  // adds "Settings" link to the plugin action page
682
  add_filter( 'plugin_action_links', 'cntctfrm_plugin_action_links',10,2);
@@ -685,6 +677,8 @@ add_filter( 'plugin_action_links', 'cntctfrm_plugin_action_links',10,2);
685
  add_filter( 'plugin_row_meta', 'cntctfrm_register_plugin_links',10,2);
686
 
687
  add_shortcode( 'contact_form', 'cntctfrm_display_form' );
 
688
  add_action( 'admin_menu', 'cntctfrm_admin_menu' );
689
 
 
690
  ?>
4
  Plugin URI: http://bestwebsoft.com/plugin/
5
  Description: Plugin for Contact Form.
6
  Author: BestWebSoft
7
+ Version: 3.11
8
  Author URI: http://bestwebsoft.com/
9
  License: GPLv2 or later
10
  */
42
  array( 'portfolio\/portfolio.php', 'Portfolio', 'http://wordpress.org/extend/plugins/portfolio/', 'http://bestwebsoft.com/plugin/portfolio-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Portfolio+bestwebsoft&plugin-search-input=Search+Plugins', '' ),
43
  array( 'gallery-plugin\/gallery-plugin.php', 'Gallery', 'http://wordpress.org/extend/plugins/gallery-plugin/', 'http://bestwebsoft.com/plugin/gallery-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Gallery+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', '' ),
44
  array( 'adsense-plugin\/adsense-plugin.php', 'Google AdSense Plugin', 'http://wordpress.org/extend/plugins/adsense-plugin/', 'http://bestwebsoft.com/plugin/google-adsense-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Adsense+Plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=adsense-plugin.php' ),
45
+ array( 'custom-search-plugin\/custom-search-plugin.php', 'Custom Search Plugin', 'http://wordpress.org/extend/plugins/custom-search-plugin/', 'http://bestwebsoft.com/plugin/custom-search-plugin/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Custom+Search+plugin+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=custom_search.php' ),
46
+ array( 'quotes_and_tips\/quotes-and-tips.php', 'Quotes and Tips', 'http://wordpress.org/extend/plugins/quotes-and-tips/', 'http://bestwebsoft.com/plugin/quotes-and-tips/', '/wp-admin/plugin-install.php?tab=search&type=term&s=Quotes+and+Tips+bestwebsoft&plugin-search-input=Search+Plugins', 'admin.php?page=quotes-and-tips.php' )
47
  );
48
  foreach($array_plugins as $plugins) {
49
  if( 0 < count( preg_grep( "/".$plugins[0]."/", $active_plugins ) ) ) {
213
  <div class="error" <?php if( "" == $error ) echo "style=\"display:none\""; ?>><p><strong><?php echo $error; ?></strong></p></div>
214
  <form method="post" action="admin.php?page=contact_form.php">
215
  <span style="margin-bottom:15px;">
216
+ <p><?php _e( "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:", 'contact_form' ); ?> [contact_form]</p>
217
  <?php _e( "If information in the below fields are empty then the message will be send to an address which was specified during registration.", 'contact_form' ); ?>
218
  </span>
219
  <table class="form-table">
358
  $content .= '<div style="text-align: left; color: red;">'.$error_message['error_message'].'</div>';
359
  }
360
  $content .= '<div style="text-align: left;">
361
+ <textarea rows="5" cols="30" name="cntctfrm_contact_message" id="cntctfrm_contact_message">'.$message.'</textarea>
362
  </div>';
363
  if($cntctfrm_options['cntctfrm_attachment'] == 1 ) {
364
  $content .= '<div style="text-align: left;">
384
  }
385
 
386
  $content .= '<div style="text-align: left; padding-top: 8px;">
387
+ <input type="hidden" value="send" name="cntctfrm_contact_action"><input type="hidden" value="Version: 3.11">
388
  <input type="submit" value="'. __( "Submit", 'contact_form' ). '" style="cursor: pointer; margin: 0pt; text-align: center;margin-bottom:10px;">
389
  </div>
390
  </form>';
420
  'jpg'=>'image/jpeg',
421
  'JPG'=>'image/jpeg',
422
  'jpe'=>'image/jpeg',
423
+ 'TIFF'=>'image/tiff',
424
  'tiff'=>'image/tiff',
425
  'tif'=>'image/tiff',
426
  'bmp'=>'image/x-ms-bmp',
449
  if( ! apply_filters( 'cntctfrm_check_form', $_REQUEST ) )
450
  $error_message['error_captcha'] = __( "Please complete the CAPTCHA.", 'contact_form' );
451
  if( isset($_FILES["cntctfrm_contact_attachment"]["tmp_name"]) && $_FILES["cntctfrm_contact_attachment"]["tmp_name"] != "") {
452
+ if( is_multisite() ){
453
+ if( defined('UPLOADS') ) {
454
+ if( ! is_dir( ABSPATH . UPLOADS ) ) {
455
+ wp_mkdir_p( ABSPATH . UPLOADS );
456
+ }
457
+ $path_of_uploaded_file = ABSPATH . UPLOADS. $_FILES["cntctfrm_contact_attachment"]["name"];
458
+ }
459
+ else if ( defined( 'BLOGUPLOADDIR' ) ) {
460
+ if( ! is_dir( BLOGUPLOADDIR ) ) {
461
+ wp_mkdir_p( BLOGUPLOADDIR );
462
+ }
463
+ $path_of_uploaded_file = BLOGUPLOADDIR. $_FILES["cntctfrm_contact_attachment"]["name"];
464
+ }
465
+ }
466
+ else {
467
+ $uploads = wp_upload_dir();
468
+ $path_of_uploaded_file = $uploads['path'] ."/". $_FILES["cntctfrm_contact_attachment"]["name"];
469
+ }
470
  $tmp_path = $_FILES["cntctfrm_contact_attachment"]["tmp_name"];
471
  $path_info = pathinfo( $path_of_uploaded_file );
472
 
492
  // Send mail function
493
  if( ! function_exists( 'cntctfrm_send_mail' ) ) {
494
  function cntctfrm_send_mail() {
495
+ global $cntctfrm_options, $path_of_uploaded_file;
496
  $to = "";
497
  if( isset( $_SESSION['cntctfrm_send_mail'] ) && $_SESSION['cntctfrm_send_mail'] == true )
498
  return true;
513
  $user_info_string = '';
514
  $userdomain = '';
515
  $form_action_url = '';
516
+ $attachments = array();
517
+ $headers = "";
518
+
519
  if ( getenv('HTTPS') == 'on' ) {
520
  $form_action_url = 'https://'.$_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'];
521
  } else {
572
  </body>
573
  </html>
574
  ';
575
+ // To send HTML mail, the Content-type header must be set
576
+ $headers = 'MIME-Version: 1.0' . "\r\n";
577
+ $headers .= 'Content-type: text/html; charset=utf-8' . "\r\n";
578
+
579
+ // Additional headers
580
+ $headers .= 'From: '.$_REQUEST['cntctfrm_contact_email']. "\r\n";
581
  if( $cntctfrm_options['cntctfrm_attachment'] == 1 && isset($_FILES["cntctfrm_contact_attachment"]["tmp_name"]) && $_FILES["cntctfrm_contact_attachment"]["tmp_name"] != "") {
582
+ $attachments = array( $path_of_uploaded_file );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
583
  }
 
 
 
 
 
 
 
584
 
585
+ if( isset( $_REQUEST['cntctfrm_contact_send_copy'] ) && $_REQUEST['cntctfrm_contact_send_copy'] == 1 )
586
+ wp_mail($_REQUEST['cntctfrm_contact_email'], stripslashes($subject), stripslashes($message), $headers, $attachments);
 
 
587
 
588
+ // Mail it
589
+ return wp_mail($to, stripslashes($subject), stripslashes($message), $headers, $attachments);
590
  }
591
  return false;
592
  }
658
  }
659
  }
660
 
661
+ if ( ! function_exists ( 'cntctfrm_wp_head' ) ) {
662
+ function cntctfrm_wp_head() {
663
+ wp_enqueue_style( 'cntctfrmStylesheet', plugins_url( 'css/style.css', __FILE__ ) );
664
+ }
665
+ }
666
+
667
  add_action( 'init', 'cntctfrm_plugin_init' );
668
 
669
+ add_action( 'admin_enqueue_scripts', 'cntctfrm_admin_head' );
670
+
671
+ add_action( 'wp_enqueue_scripts', 'cntctfrm_wp_head' );
672
 
673
  // adds "Settings" link to the plugin action page
674
  add_filter( 'plugin_action_links', 'cntctfrm_plugin_action_links',10,2);
677
  add_filter( 'plugin_row_meta', 'cntctfrm_register_plugin_links',10,2);
678
 
679
  add_shortcode( 'contact_form', 'cntctfrm_display_form' );
680
+
681
  add_action( 'admin_menu', 'cntctfrm_admin_menu' );
682
 
683
+ add_filter( 'widget_text', 'do_shortcode' );
684
  ?>
css/style.css CHANGED
@@ -10,6 +10,10 @@
10
  {
11
  background: url("../images/icon_16.png") no-repeat scroll center center transparent;
12
  }
 
 
 
 
13
  #adminmenu #toplevel_page_bws_plugins:hover div.wp-menu-image,#adminmenu #toplevel_page_bws_plugins.wp-has-current-submenu div.wp-menu-image
14
  {
15
  background: url("../images/icon_16_c.png") no-repeat scroll center center transparent;
@@ -18,6 +22,10 @@
18
  {
19
  background: url("../images/icon_36.png") no-repeat scroll left top transparent;
20
  }
 
 
 
 
21
  #toplevel_page_bws_plugins .wp-submenu .wp-first-item, .cntctfrm_hidden
22
  {
23
  display:none;
@@ -44,4 +52,19 @@
44
  }
45
  .cntctfrm_change_label_block input {
46
  margin: 1px 0;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
  }
10
  {
11
  background: url("../images/icon_16.png") no-repeat scroll center center transparent;
12
  }
13
+ .admin-color-classic #adminmenu #toplevel_page_bws_plugins div.wp-menu-image
14
+ {
15
+ background: url("../images/icon_16_b.png") no-repeat scroll center center transparent;
16
+ }
17
  #adminmenu #toplevel_page_bws_plugins:hover div.wp-menu-image,#adminmenu #toplevel_page_bws_plugins.wp-has-current-submenu div.wp-menu-image
18
  {
19
  background: url("../images/icon_16_c.png") no-repeat scroll center center transparent;
22
  {
23
  background: url("../images/icon_36.png") no-repeat scroll left top transparent;
24
  }
25
+ .admin-color-classic .wrap #icon-options-general.icon32-bws
26
+ {
27
+ background: url("../images/icon_36_b.png") no-repeat scroll left top transparent;
28
+ }
29
  #toplevel_page_bws_plugins .wp-submenu .wp-first-item, .cntctfrm_hidden
30
  {
31
  display:none;
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,
60
+ .widget-container #cntctfrm_contact_name,
61
+ .widget-container #cntctfrm_contact_email,
62
+ .widget-container #cntctfrm_contact_subject,
63
+ .textwidget #cntctfrm_contact_form input.text,
64
+ .textwidget #cntctfrm_contact_form textarea,
65
+ .textwidget #cntctfrm_contact_message,
66
+ .textwidgetr #cntctfrm_contact_name,
67
+ .textwidget #cntctfrm_contact_email,
68
+ .textwidget #cntctfrm_contact_subject{
69
+ width: 200px !important;
70
  }
images/icon_16_b.png ADDED
Binary file
images/icon_36_b.png ADDED
Binary file
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-03-02 15:39+0200\n"
6
- "PO-Revision-Date: 2012-03-02 15:39+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,260 +16,261 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:75
20
  msgid "Activated plugins"
21
  msgstr "Активиране на приложението"
22
 
23
- #: contact_form.php:77
24
- #: contact_form.php:85
25
- #: contact_form.php:93
26
  msgid "Read more"
27
  msgstr "Прочетете повече"
28
 
29
- #: contact_form.php:77
30
- #: contact_form.php:617
31
- #: contact_form.php:626
32
  msgid "Settings"
33
  msgstr "Настройки"
34
 
35
- #: contact_form.php:83
36
  msgid "Installed plugins"
37
  msgstr "Инсталиране на приложението"
38
 
39
- #: contact_form.php:91
40
  msgid "Recommended plugins"
41
  msgstr "Препоръчани приложения"
42
 
43
- #: contact_form.php:93
44
  msgid "Download"
45
  msgstr "Изтегляне"
46
 
47
- #: contact_form.php:93
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Инсталиране %s"
51
 
52
- #: contact_form.php:93
53
  msgid "Install now from wordpress.org"
54
  msgstr "Инсталирай сега от wordpress.org"
55
 
56
- #: contact_form.php:95
57
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
58
  msgstr "Ако имате някакви въпроси, моля свържете с нас чрез plugin@bestwebsoft.com или попълнете нашата форма за контакти на нашия сайт"
59
 
60
- #: contact_form.php:107
61
- #: contact_form.php:210
62
  msgid "Contact Form Options"
63
  msgstr "Настройки на Формата за контакт"
64
 
65
- #: contact_form.php:107
66
  msgid "Contact Form"
67
  msgstr "Форма за контакт"
68
 
69
- #: contact_form.php:127
70
- #: contact_form.php:161
71
- #: contact_form.php:178
72
- #: contact_form.php:268
73
- msgid "Name:"
74
- msgstr "Име:"
75
-
76
  #: contact_form.php:128
77
  #: contact_form.php:162
78
  #: contact_form.php:179
79
  #: contact_form.php:269
80
- msgid "E-Mail Address:"
81
- msgstr "E-mail адрес:"
82
 
83
  #: contact_form.php:129
84
  #: contact_form.php:163
85
  #: contact_form.php:180
86
  #: contact_form.php:270
87
- msgid "Subject:"
88
- msgstr "Тема:"
89
 
90
  #: contact_form.php:130
91
  #: contact_form.php:164
92
  #: contact_form.php:181
93
  #: contact_form.php:271
94
- msgid "Message:"
95
- msgstr "Съобщение:"
96
 
97
  #: contact_form.php:131
98
  #: contact_form.php:165
99
  #: contact_form.php:182
100
  #: contact_form.php:272
 
 
 
 
 
 
 
101
  msgid "Attachment:"
102
  msgstr "Прикачване на файл:"
103
 
104
- #: contact_form.php:190
105
- #: contact_form.php:199
106
  msgid "Options saved."
107
  msgstr "Опциите са запазени"
108
 
109
- #: contact_form.php:193
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Не са намерени данни за потребителя. Настройките не са запазени"
112
 
113
- #: contact_form.php:202
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Моля, въведете коректен Email. Настройките не са запазени."
116
 
117
- #: contact_form.php:215
118
- msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page:"
119
- msgstr "Ако искате да добавите формата за контакт на своят сайт копирайте и поставете този код в страницата или публикацията"
120
-
121
  #: contact_form.php:216
 
 
 
 
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Ако посочените по-долу полета не са попълнени, съобщението ще бъде изпратено на Email адрес, който е определен по време на регистрацията"
124
 
125
- #: contact_form.php:220
126
  msgid "Use email of wordpress user:"
127
  msgstr "Използвайте Email на Wordpress потребител:"
128
 
129
- #: contact_form.php:226
130
  msgid "Select user name"
131
  msgstr "Избиране на потребител"
132
 
133
- #: contact_form.php:231
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Задайте името на потребителя, който ще получава съобщенията от формата за контакт."
136
 
137
- #: contact_form.php:235
138
  msgid "Use this email:"
139
  msgstr "Използвайте този Email:"
140
 
141
- #: contact_form.php:241
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Задаване на Email адрес, който ще се използва за получаване на съобщения."
144
 
145
- #: contact_form.php:245
146
  msgid "Additional options"
147
  msgstr "Допълнителни настройки"
148
 
149
- #: contact_form.php:248
150
  msgid "Display Attachment block"
151
  msgstr "Покажи опция за прикачване на файл"
152
 
153
- #: contact_form.php:253
154
  msgid "Users can attach files of the following types"
155
  msgstr "Потребителите могат да прикачват файлове от следните видове"
156
 
157
- #: contact_form.php:257
158
  msgid "Display Send me a copy block"
159
  msgstr "Показване на опция за изпращане на копие"
160
 
161
- #: contact_form.php:263
162
  msgid "Change label for fields of the contact form"
163
  msgstr "Промяна на етикетите за полета във формата за контакт"
164
 
165
- #: contact_form.php:278
166
  msgid "Save Changes"
167
  msgstr "Запис на промените"
168
 
169
- #: contact_form.php:309
170
  msgid "Thank you for contacting us."
171
  msgstr "Благодарим Ви, че се свързахте с нас."
172
 
173
- #: contact_form.php:314
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Съжаляваме, Вашето съобщение не може да бъде изпратено."
176
 
177
- #: contact_form.php:371
178
  msgid "You can attach files of the following types"
179
  msgstr "Можете да прикачвате файлове от следните типове"
180
 
181
- #: contact_form.php:377
182
  msgid "Send me a copy"
183
  msgstr "Изпрати ми копие"
184
 
185
- #: contact_form.php:387
186
  msgid "Submit"
187
  msgstr "Изпрати"
188
 
189
- #: contact_form.php:403
190
  msgid "Your name is required."
191
  msgstr "Вашето име е задължително."
192
 
193
- #: contact_form.php:404
194
  msgid "A proper e-mail address is required."
195
  msgstr "Правилният Email адрес е задължителен."
196
 
197
- #: contact_form.php:405
198
  msgid "Subject text is required."
199
  msgstr "Заглавието е задължитено."
200
 
201
- #: contact_form.php:406
202
  msgid "Message text is required."
203
  msgstr "Текстовото съобщение е задължително."
204
 
205
- #: contact_form.php:407
206
  msgid "Please make corrections below and try again."
207
  msgstr "Моля направете необходимите корекции по-долу и опитайте отново."
208
 
209
- #: contact_form.php:436
210
  msgid "Attachment is broken."
211
  msgstr "Прикаченият файл не се поддържа"
212
 
213
- #: contact_form.php:449
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Моля попълнете CAPTCHA."
216
 
217
- #: contact_form.php:506
218
- #: contact_form.php:540
219
  msgid "Sent from (ip address)"
220
  msgstr "Изпратено от (ip адрес)"
221
 
222
- #: contact_form.php:507
223
- #: contact_form.php:543
224
  msgid "Date/Time"
225
  msgstr "Дата/Час"
226
 
227
- #: contact_form.php:508
228
- #: contact_form.php:546
229
  msgid "Coming from (referer)"
230
  msgstr "Идва от (referer)"
231
 
232
- #: contact_form.php:509
233
- #: contact_form.php:549
234
  msgid "Using (user agent)"
235
  msgstr "Използвайки (user agent)"
236
 
237
- #: contact_form.php:514
238
  msgid "Contact from"
239
  msgstr "Форма за контакт"
240
 
241
- #: contact_form.php:519
242
  msgid "Name"
243
  msgstr "Име"
244
 
245
- #: contact_form.php:522
246
  msgid "Email"
247
  msgstr "Email"
248
 
249
- #: contact_form.php:525
250
  msgid "Subject"
251
  msgstr "Относно"
252
 
253
- #: contact_form.php:528
254
  msgid "Message"
255
  msgstr "Съобщение"
256
 
257
- #: contact_form.php:531
258
  msgid "Site"
259
  msgstr "Сайт"
260
 
261
- #: contact_form.php:572
262
- msgid "If you can see this MIME than your client doesn't accept MIME types!"
263
- msgstr "Ако видиждате това значи, че вашият MIME клиент за електронна поща не поддържа MIME тип!"
264
-
265
- #: contact_form.php:627
266
  msgid "FAQ"
267
  msgstr "FAQ"
268
 
269
- #: contact_form.php:628
270
  msgid "Support"
271
  msgstr "Поддръжка"
272
 
 
 
 
 
 
273
  #~ msgid "E-Mail Addresse:"
274
  #~ msgstr "E-mail адрес:"
275
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-12 19:25+0200\n"
6
+ "PO-Revision-Date: 2012-03-12 19:25+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Poedit-SourceCharset: utf-8\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
24
+ #: contact_form.php:86
25
+ #: contact_form.php:94
26
  msgid "Read more"
27
  msgstr "Прочетете повече"
28
 
29
+ #: contact_form.php:78
30
+ #: contact_form.php:601
31
+ #: contact_form.php:610
32
  msgid "Settings"
33
  msgstr "Настройки"
34
 
35
+ #: contact_form.php:84
36
  msgid "Installed plugins"
37
  msgstr "Инсталиране на приложението"
38
 
39
+ #: contact_form.php:92
40
  msgid "Recommended plugins"
41
  msgstr "Препоръчани приложения"
42
 
43
+ #: contact_form.php:94
44
  msgid "Download"
45
  msgstr "Изтегляне"
46
 
47
+ #: contact_form.php:94
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Инсталиране %s"
51
 
52
+ #: contact_form.php:94
53
  msgid "Install now from wordpress.org"
54
  msgstr "Инсталирай сега от wordpress.org"
55
 
56
+ #: contact_form.php:96
57
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
58
  msgstr "Ако имате някакви въпроси, моля свържете с нас чрез plugin@bestwebsoft.com или попълнете нашата форма за контакти на нашия сайт"
59
 
60
+ #: contact_form.php:108
61
+ #: contact_form.php:211
62
  msgid "Contact Form Options"
63
  msgstr "Настройки на Формата за контакт"
64
 
65
+ #: contact_form.php:108
66
  msgid "Contact Form"
67
  msgstr "Форма за контакт"
68
 
 
 
 
 
 
 
 
69
  #: contact_form.php:128
70
  #: contact_form.php:162
71
  #: contact_form.php:179
72
  #: contact_form.php:269
73
+ msgid "Name:"
74
+ msgstr "Име:"
75
 
76
  #: contact_form.php:129
77
  #: contact_form.php:163
78
  #: contact_form.php:180
79
  #: contact_form.php:270
80
+ msgid "E-Mail Address:"
81
+ msgstr "E-mail адрес:"
82
 
83
  #: contact_form.php:130
84
  #: contact_form.php:164
85
  #: contact_form.php:181
86
  #: contact_form.php:271
87
+ msgid "Subject:"
88
+ msgstr "Тема:"
89
 
90
  #: contact_form.php:131
91
  #: contact_form.php:165
92
  #: contact_form.php:182
93
  #: contact_form.php:272
94
+ msgid "Message:"
95
+ msgstr "Съобщение:"
96
+
97
+ #: contact_form.php:132
98
+ #: contact_form.php:166
99
+ #: contact_form.php:183
100
+ #: contact_form.php:273
101
  msgid "Attachment:"
102
  msgstr "Прикачване на файл:"
103
 
104
+ #: contact_form.php:191
105
+ #: contact_form.php:200
106
  msgid "Options saved."
107
  msgstr "Опциите са запазени"
108
 
109
+ #: contact_form.php:194
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Не са намерени данни за потребителя. Настройките не са запазени"
112
 
113
+ #: contact_form.php:203
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Моля, въведете коректен Email. Настройките не са запазени."
116
 
 
 
 
 
117
  #: contact_form.php:216
118
+ msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
+ msgstr "Ако искате да добавите формата за контакт на своят сайт копирайте и поставете този код в страницата или публикацията или джаджа:"
120
+
121
+ #: contact_form.php:217
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Ако посочените по-долу полета не са попълнени, съобщението ще бъде изпратено на Email адрес, който е определен по време на регистрацията"
124
 
125
+ #: contact_form.php:221
126
  msgid "Use email of wordpress user:"
127
  msgstr "Използвайте Email на Wordpress потребител:"
128
 
129
+ #: contact_form.php:227
130
  msgid "Select user name"
131
  msgstr "Избиране на потребител"
132
 
133
+ #: contact_form.php:232
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Задайте името на потребителя, който ще получава съобщенията от формата за контакт."
136
 
137
+ #: contact_form.php:236
138
  msgid "Use this email:"
139
  msgstr "Използвайте този Email:"
140
 
141
+ #: contact_form.php:242
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Задаване на Email адрес, който ще се използва за получаване на съобщения."
144
 
145
+ #: contact_form.php:246
146
  msgid "Additional options"
147
  msgstr "Допълнителни настройки"
148
 
149
+ #: contact_form.php:249
150
  msgid "Display Attachment block"
151
  msgstr "Покажи опция за прикачване на файл"
152
 
153
+ #: contact_form.php:254
154
  msgid "Users can attach files of the following types"
155
  msgstr "Потребителите могат да прикачват файлове от следните видове"
156
 
157
+ #: contact_form.php:258
158
  msgid "Display Send me a copy block"
159
  msgstr "Показване на опция за изпращане на копие"
160
 
161
+ #: contact_form.php:264
162
  msgid "Change label for fields of the contact form"
163
  msgstr "Промяна на етикетите за полета във формата за контакт"
164
 
165
+ #: contact_form.php:279
166
  msgid "Save Changes"
167
  msgstr "Запис на промените"
168
 
169
+ #: contact_form.php:310
170
  msgid "Thank you for contacting us."
171
  msgstr "Благодарим Ви, че се свързахте с нас."
172
 
173
+ #: contact_form.php:315
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Съжаляваме, Вашето съобщение не може да бъде изпратено."
176
 
177
+ #: contact_form.php:372
178
  msgid "You can attach files of the following types"
179
  msgstr "Можете да прикачвате файлове от следните типове"
180
 
181
+ #: contact_form.php:378
182
  msgid "Send me a copy"
183
  msgstr "Изпрати ми копие"
184
 
185
+ #: contact_form.php:388
186
  msgid "Submit"
187
  msgstr "Изпрати"
188
 
189
+ #: contact_form.php:404
190
  msgid "Your name is required."
191
  msgstr "Вашето име е задължително."
192
 
193
+ #: contact_form.php:405
194
  msgid "A proper e-mail address is required."
195
  msgstr "Правилният Email адрес е задължителен."
196
 
197
+ #: contact_form.php:406
198
  msgid "Subject text is required."
199
  msgstr "Заглавието е задължитено."
200
 
201
+ #: contact_form.php:407
202
  msgid "Message text is required."
203
  msgstr "Текстовото съобщение е задължително."
204
 
205
+ #: contact_form.php:408
206
  msgid "Please make corrections below and try again."
207
  msgstr "Моля направете необходимите корекции по-долу и опитайте отново."
208
 
209
+ #: contact_form.php:437
210
  msgid "Attachment is broken."
211
  msgstr "Прикаченият файл не се поддържа"
212
 
213
+ #: contact_form.php:450
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Моля попълнете CAPTCHA."
216
 
217
+ #: contact_form.php:526
218
+ #: contact_form.php:560
219
  msgid "Sent from (ip address)"
220
  msgstr "Изпратено от (ip адрес)"
221
 
222
+ #: contact_form.php:527
223
+ #: contact_form.php:563
224
  msgid "Date/Time"
225
  msgstr "Дата/Час"
226
 
227
+ #: contact_form.php:528
228
+ #: contact_form.php:566
229
  msgid "Coming from (referer)"
230
  msgstr "Идва от (referer)"
231
 
232
+ #: contact_form.php:529
233
+ #: contact_form.php:569
234
  msgid "Using (user agent)"
235
  msgstr "Използвайки (user agent)"
236
 
237
+ #: contact_form.php:534
238
  msgid "Contact from"
239
  msgstr "Форма за контакт"
240
 
241
+ #: contact_form.php:539
242
  msgid "Name"
243
  msgstr "Име"
244
 
245
+ #: contact_form.php:542
246
  msgid "Email"
247
  msgstr "Email"
248
 
249
+ #: contact_form.php:545
250
  msgid "Subject"
251
  msgstr "Относно"
252
 
253
+ #: contact_form.php:548
254
  msgid "Message"
255
  msgstr "Съобщение"
256
 
257
+ #: contact_form.php:551
258
  msgid "Site"
259
  msgstr "Сайт"
260
 
261
+ #: contact_form.php:611
 
 
 
 
262
  msgid "FAQ"
263
  msgstr "FAQ"
264
 
265
+ #: contact_form.php:612
266
  msgid "Support"
267
  msgstr "Поддръжка"
268
 
269
+ #~ msgid "If you can see this MIME than your client doesn't accept MIME types!"
270
+ #~ msgstr ""
271
+ #~ "Ако видиждате това значи, че вашият MIME клиент за електронна поща не "
272
+ #~ "поддържа MIME тип!"
273
+
274
  #~ msgid "E-Mail Addresse:"
275
  #~ msgstr "E-mail адрес:"
276
 
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-02-24 15:53+0200\n"
6
- "PO-Revision-Date: 2012-02-24 15:53+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,260 +16,260 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:75
20
  msgid "Activated plugins"
21
  msgstr "Aktivierte PlugIns"
22
 
23
- #: contact_form.php:77
24
- #: contact_form.php:85
25
- #: contact_form.php:93
26
  msgid "Read more"
27
  msgstr "Lesen Sie mehr"
28
 
29
- #: contact_form.php:77
30
- #: contact_form.php:617
31
- #: contact_form.php:626
32
  msgid "Settings"
33
  msgstr "Einstellungen"
34
 
35
- #: contact_form.php:83
36
  msgid "Installed plugins"
37
  msgstr "Installierte PlugIns"
38
 
39
- #: contact_form.php:91
40
  msgid "Recommended plugins"
41
  msgstr "Empfohlene PlugIns"
42
 
43
- #: contact_form.php:93
44
  msgid "Download"
45
  msgstr "Download"
46
 
47
- #: contact_form.php:93
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Installiere %s"
51
 
52
- #: contact_form.php:93
53
  msgid "Install now from wordpress.org"
54
  msgstr "installiere jetzt von wordpress.org"
55
 
56
- #: contact_form.php:95
57
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
58
  msgstr "Bei Fragen wenden Sie sich an plugin@bestwebsoft.com oder füllen Sie das Kontakformular auf unserer Webseite aus"
59
 
60
- #: contact_form.php:107
61
- #: contact_form.php:210
62
  msgid "Contact Form Options"
63
  msgstr "Contact Form Einstellungen"
64
 
65
- #: contact_form.php:107
66
  msgid "Contact Form"
67
  msgstr "Contact Form"
68
 
69
- #: contact_form.php:127
70
- #: contact_form.php:161
71
- #: contact_form.php:178
72
- #: contact_form.php:268
73
- msgid "Name:"
74
- msgstr "Name:"
75
-
76
  #: contact_form.php:128
77
  #: contact_form.php:162
78
  #: contact_form.php:179
79
  #: contact_form.php:269
80
- msgid "E-Mail Address:"
81
- msgstr "E-Mail-Adresse:"
82
 
83
  #: contact_form.php:129
84
  #: contact_form.php:163
85
  #: contact_form.php:180
86
  #: contact_form.php:270
87
- msgid "Subject:"
88
- msgstr "Betreff:"
89
 
90
  #: contact_form.php:130
91
  #: contact_form.php:164
92
  #: contact_form.php:181
93
  #: contact_form.php:271
94
- msgid "Message:"
95
- msgstr "Nachricht:"
96
 
97
  #: contact_form.php:131
98
  #: contact_form.php:165
99
  #: contact_form.php:182
100
  #: contact_form.php:272
 
 
 
 
 
 
 
101
  msgid "Attachment:"
102
  msgstr "Anhang:"
103
 
104
- #: contact_form.php:190
105
- #: contact_form.php:199
106
  msgid "Options saved."
107
  msgstr "Einstellungen gespeichert."
108
 
109
- #: contact_form.php:193
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Dieser Benutzer existiert nicht. Einstellungen nicht gespeichert."
112
 
113
- #: contact_form.php:202
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Bitte geben Sie eine korrekte E-Mail-Adresse ein. Einstellungen nicht gespeichert."
116
 
117
- #: contact_form.php:215
118
- msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page:"
119
- msgstr "Wenn Sie Contact Form in Ihrer Webpräsenz verwenden wollen, kopieren Sie einfach folgenden shortcode auf Ihre Seite oder Ihren Artikel"
120
-
121
  #: contact_form.php:216
 
 
 
 
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Wenn das folgende Feld leer bleibt wird die Nachricht an die Adresse gesandt, die bei der Registrierung angegeben wurde."
124
 
125
- #: contact_form.php:220
126
  msgid "Use email of wordpress user:"
127
  msgstr "Benutze die E-Mail-Adresse von WordPress-Benutzer:"
128
 
129
- #: contact_form.php:226
130
  msgid "Select user name"
131
  msgstr "Wähle Benutzer"
132
 
133
- #: contact_form.php:231
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Definieren Sie die Benutzer, die Nachrichten von Contact Form bekommen sollen."
136
 
137
- #: contact_form.php:235
138
  msgid "Use this email:"
139
  msgstr "Verwende diese E-Mail-Adresse:"
140
 
141
- #: contact_form.php:241
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Definieren Sie die E-Mail-Adresse, die Contact Form verwenden soll."
144
 
145
- #: contact_form.php:245
146
  msgid "Additional options"
147
  msgstr "Erweiterte Optionen"
148
 
149
- #: contact_form.php:248
150
  msgid "Display Attachment block"
151
  msgstr "Anhänge erlauben"
152
 
153
- #: contact_form.php:253
154
  msgid "Users can attach files of the following types"
155
  msgstr "Benutzer können folgende Dateitypen anhängen"
156
 
157
- #: contact_form.php:257
158
  msgid "Display Send me a copy block"
159
  msgstr "Kopie-an-mich anzeigen"
160
 
161
- #: contact_form.php:263
162
  msgid "Change label for fields of the contact form"
163
  msgstr "Ändern Sie die Bezeichnung der Felder des Kontaktformulars"
164
 
165
- #: contact_form.php:278
166
  msgid "Save Changes"
167
  msgstr "Änderungen speichern"
168
 
169
- #: contact_form.php:309
170
  msgid "Thank you for contacting us."
171
  msgstr "Danke für Ihre Nachricht."
172
 
173
- #: contact_form.php:314
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Entschuldigung, Ihre E-Mail konnte leider nicht zugestellt werden."
176
 
177
- #: contact_form.php:371
178
  msgid "You can attach files of the following types"
179
  msgstr "Sie können folgende Dateitypen anhängen"
180
 
181
- #: contact_form.php:377
182
  msgid "Send me a copy"
183
  msgstr "Kopie an mich senden"
184
 
185
- #: contact_form.php:387
186
  msgid "Submit"
187
  msgstr "senden"
188
 
189
- #: contact_form.php:403
190
  msgid "Your name is required."
191
  msgstr "Ihr Name wird benötigt"
192
 
193
- #: contact_form.php:404
194
  msgid "A proper e-mail address is required."
195
  msgstr "Eine korrekte E-Mail-Adresse ist zwingend."
196
 
197
- #: contact_form.php:405
198
  msgid "Subject text is required."
199
  msgstr "Bitte geben Sie einen Betreff ein."
200
 
201
- #: contact_form.php:406
202
  msgid "Message text is required."
203
  msgstr "Bitte geben Sie eine Nachricht ein."
204
 
205
- #: contact_form.php:407
206
  msgid "Please make corrections below and try again."
207
  msgstr "Bitte führen Sie die Korrekturen unten durch und versuchen Sie es erneut."
208
 
209
- #: contact_form.php:436
210
  msgid "Attachment is broken."
211
  msgstr "Anhang scheint defekt zu sein."
212
 
213
- #: contact_form.php:449
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Bitte ergänzen Sie das CAPTCHA."
216
 
217
- #: contact_form.php:506
218
- #: contact_form.php:540
219
  msgid "Sent from (ip address)"
220
  msgstr "Gesendet von (IP-Adresse)"
221
 
222
- #: contact_form.php:507
223
- #: contact_form.php:543
224
  msgid "Date/Time"
225
  msgstr "Datum / Uhrzeit"
226
 
227
- #: contact_form.php:508
228
- #: contact_form.php:546
229
  msgid "Coming from (referer)"
230
  msgstr "gesendet von (referer)"
231
 
232
- #: contact_form.php:509
233
- #: contact_form.php:549
234
  msgid "Using (user agent)"
235
  msgstr "mit (user agent)"
236
 
237
- #: contact_form.php:514
238
  msgid "Contact from"
239
  msgstr "Kontakt von"
240
 
241
- #: contact_form.php:519
242
  msgid "Name"
243
  msgstr "Nome"
244
 
245
- #: contact_form.php:522
246
  msgid "Email"
247
  msgstr "E-Mail"
248
 
249
- #: contact_form.php:525
250
  msgid "Subject"
251
  msgstr "Betreff"
252
 
253
- #: contact_form.php:528
254
  msgid "Message"
255
  msgstr "Nachricht"
256
 
257
- #: contact_form.php:531
258
  msgid "Site"
259
  msgstr "Site"
260
 
261
- #: contact_form.php:572
262
- msgid "If you can see this MIME than your client doesn't accept MIME types!"
263
- msgstr "Wenn Sie dieses MIME sehen, unterstützt Ihr Client keine MIME-Typen!"
264
-
265
- #: contact_form.php:627
266
  msgid "FAQ"
267
  msgstr "Häufig gestellte Fragen (FAQ)"
268
 
269
- #: contact_form.php:628
270
  msgid "Support"
271
  msgstr "Unterstützung"
272
 
 
 
 
 
273
  #~ msgid "E-Mail Addresse:"
274
  #~ msgstr "Indirizzo e-mail:"
275
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-12 19:25+0200\n"
6
+ "PO-Revision-Date: 2012-03-12 19:25+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Poedit-SourceCharset: utf-8\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
24
+ #: contact_form.php:86
25
+ #: contact_form.php:94
26
  msgid "Read more"
27
  msgstr "Lesen Sie mehr"
28
 
29
+ #: contact_form.php:78
30
+ #: contact_form.php:601
31
+ #: contact_form.php:610
32
  msgid "Settings"
33
  msgstr "Einstellungen"
34
 
35
+ #: contact_form.php:84
36
  msgid "Installed plugins"
37
  msgstr "Installierte PlugIns"
38
 
39
+ #: contact_form.php:92
40
  msgid "Recommended plugins"
41
  msgstr "Empfohlene PlugIns"
42
 
43
+ #: contact_form.php:94
44
  msgid "Download"
45
  msgstr "Download"
46
 
47
+ #: contact_form.php:94
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Installiere %s"
51
 
52
+ #: contact_form.php:94
53
  msgid "Install now from wordpress.org"
54
  msgstr "installiere jetzt von wordpress.org"
55
 
56
+ #: contact_form.php:96
57
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
58
  msgstr "Bei Fragen wenden Sie sich an plugin@bestwebsoft.com oder füllen Sie das Kontakformular auf unserer Webseite aus"
59
 
60
+ #: contact_form.php:108
61
+ #: contact_form.php:211
62
  msgid "Contact Form Options"
63
  msgstr "Contact Form Einstellungen"
64
 
65
+ #: contact_form.php:108
66
  msgid "Contact Form"
67
  msgstr "Contact Form"
68
 
 
 
 
 
 
 
 
69
  #: contact_form.php:128
70
  #: contact_form.php:162
71
  #: contact_form.php:179
72
  #: contact_form.php:269
73
+ msgid "Name:"
74
+ msgstr "Name:"
75
 
76
  #: contact_form.php:129
77
  #: contact_form.php:163
78
  #: contact_form.php:180
79
  #: contact_form.php:270
80
+ msgid "E-Mail Address:"
81
+ msgstr "E-Mail-Adresse:"
82
 
83
  #: contact_form.php:130
84
  #: contact_form.php:164
85
  #: contact_form.php:181
86
  #: contact_form.php:271
87
+ msgid "Subject:"
88
+ msgstr "Betreff:"
89
 
90
  #: contact_form.php:131
91
  #: contact_form.php:165
92
  #: contact_form.php:182
93
  #: contact_form.php:272
94
+ msgid "Message:"
95
+ msgstr "Nachricht:"
96
+
97
+ #: contact_form.php:132
98
+ #: contact_form.php:166
99
+ #: contact_form.php:183
100
+ #: contact_form.php:273
101
  msgid "Attachment:"
102
  msgstr "Anhang:"
103
 
104
+ #: contact_form.php:191
105
+ #: contact_form.php:200
106
  msgid "Options saved."
107
  msgstr "Einstellungen gespeichert."
108
 
109
+ #: contact_form.php:194
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Dieser Benutzer existiert nicht. Einstellungen nicht gespeichert."
112
 
113
+ #: contact_form.php:203
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Bitte geben Sie eine korrekte E-Mail-Adresse ein. Einstellungen nicht gespeichert."
116
 
 
 
 
 
117
  #: contact_form.php:216
118
+ msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
+ msgstr "Wenn Sie Contact Form in Ihrer Webpräsenz verwenden wollen, kopieren Sie einfach folgenden shortcode auf Ihre Seite oder Ihren Artikel oder widget:"
120
+
121
+ #: contact_form.php:217
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Wenn das folgende Feld leer bleibt wird die Nachricht an die Adresse gesandt, die bei der Registrierung angegeben wurde."
124
 
125
+ #: contact_form.php:221
126
  msgid "Use email of wordpress user:"
127
  msgstr "Benutze die E-Mail-Adresse von WordPress-Benutzer:"
128
 
129
+ #: contact_form.php:227
130
  msgid "Select user name"
131
  msgstr "Wähle Benutzer"
132
 
133
+ #: contact_form.php:232
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Definieren Sie die Benutzer, die Nachrichten von Contact Form bekommen sollen."
136
 
137
+ #: contact_form.php:236
138
  msgid "Use this email:"
139
  msgstr "Verwende diese E-Mail-Adresse:"
140
 
141
+ #: contact_form.php:242
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Definieren Sie die E-Mail-Adresse, die Contact Form verwenden soll."
144
 
145
+ #: contact_form.php:246
146
  msgid "Additional options"
147
  msgstr "Erweiterte Optionen"
148
 
149
+ #: contact_form.php:249
150
  msgid "Display Attachment block"
151
  msgstr "Anhänge erlauben"
152
 
153
+ #: contact_form.php:254
154
  msgid "Users can attach files of the following types"
155
  msgstr "Benutzer können folgende Dateitypen anhängen"
156
 
157
+ #: contact_form.php:258
158
  msgid "Display Send me a copy block"
159
  msgstr "Kopie-an-mich anzeigen"
160
 
161
+ #: contact_form.php:264
162
  msgid "Change label for fields of the contact form"
163
  msgstr "Ändern Sie die Bezeichnung der Felder des Kontaktformulars"
164
 
165
+ #: contact_form.php:279
166
  msgid "Save Changes"
167
  msgstr "Änderungen speichern"
168
 
169
+ #: contact_form.php:310
170
  msgid "Thank you for contacting us."
171
  msgstr "Danke für Ihre Nachricht."
172
 
173
+ #: contact_form.php:315
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Entschuldigung, Ihre E-Mail konnte leider nicht zugestellt werden."
176
 
177
+ #: contact_form.php:372
178
  msgid "You can attach files of the following types"
179
  msgstr "Sie können folgende Dateitypen anhängen"
180
 
181
+ #: contact_form.php:378
182
  msgid "Send me a copy"
183
  msgstr "Kopie an mich senden"
184
 
185
+ #: contact_form.php:388
186
  msgid "Submit"
187
  msgstr "senden"
188
 
189
+ #: contact_form.php:404
190
  msgid "Your name is required."
191
  msgstr "Ihr Name wird benötigt"
192
 
193
+ #: contact_form.php:405
194
  msgid "A proper e-mail address is required."
195
  msgstr "Eine korrekte E-Mail-Adresse ist zwingend."
196
 
197
+ #: contact_form.php:406
198
  msgid "Subject text is required."
199
  msgstr "Bitte geben Sie einen Betreff ein."
200
 
201
+ #: contact_form.php:407
202
  msgid "Message text is required."
203
  msgstr "Bitte geben Sie eine Nachricht ein."
204
 
205
+ #: contact_form.php:408
206
  msgid "Please make corrections below and try again."
207
  msgstr "Bitte führen Sie die Korrekturen unten durch und versuchen Sie es erneut."
208
 
209
+ #: contact_form.php:437
210
  msgid "Attachment is broken."
211
  msgstr "Anhang scheint defekt zu sein."
212
 
213
+ #: contact_form.php:450
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Bitte ergänzen Sie das CAPTCHA."
216
 
217
+ #: contact_form.php:526
218
+ #: contact_form.php:560
219
  msgid "Sent from (ip address)"
220
  msgstr "Gesendet von (IP-Adresse)"
221
 
222
+ #: contact_form.php:527
223
+ #: contact_form.php:563
224
  msgid "Date/Time"
225
  msgstr "Datum / Uhrzeit"
226
 
227
+ #: contact_form.php:528
228
+ #: contact_form.php:566
229
  msgid "Coming from (referer)"
230
  msgstr "gesendet von (referer)"
231
 
232
+ #: contact_form.php:529
233
+ #: contact_form.php:569
234
  msgid "Using (user agent)"
235
  msgstr "mit (user agent)"
236
 
237
+ #: contact_form.php:534
238
  msgid "Contact from"
239
  msgstr "Kontakt von"
240
 
241
+ #: contact_form.php:539
242
  msgid "Name"
243
  msgstr "Nome"
244
 
245
+ #: contact_form.php:542
246
  msgid "Email"
247
  msgstr "E-Mail"
248
 
249
+ #: contact_form.php:545
250
  msgid "Subject"
251
  msgstr "Betreff"
252
 
253
+ #: contact_form.php:548
254
  msgid "Message"
255
  msgstr "Nachricht"
256
 
257
+ #: contact_form.php:551
258
  msgid "Site"
259
  msgstr "Site"
260
 
261
+ #: contact_form.php:611
 
 
 
 
262
  msgid "FAQ"
263
  msgstr "Häufig gestellte Fragen (FAQ)"
264
 
265
+ #: contact_form.php:612
266
  msgid "Support"
267
  msgstr "Unterstützung"
268
 
269
+ #~ msgid "If you can see this MIME than your client doesn't accept MIME types!"
270
+ #~ msgstr ""
271
+ #~ "Wenn Sie dieses MIME sehen, unterstützt Ihr Client keine MIME-Typen!"
272
+
273
  #~ msgid "E-Mail Addresse:"
274
  #~ msgstr "Indirizzo e-mail:"
275
 
languages/contact_form-es_ES.mo CHANGED
Binary file
languages/contact_form-es_ES.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-02-24 15:53+0200\n"
6
- "PO-Revision-Date: 2012-02-24 15:53+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,260 +16,260 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:75
20
  msgid "Activated plugins"
21
  msgstr "Plugin ativado"
22
 
23
- #: contact_form.php:77
24
- #: contact_form.php:85
25
- #: contact_form.php:93
26
  msgid "Read more"
27
  msgstr "Lea mas"
28
 
29
- #: contact_form.php:77
30
- #: contact_form.php:617
31
- #: contact_form.php:626
32
  msgid "Settings"
33
  msgstr "Configuración"
34
 
35
- #: contact_form.php:83
36
  msgid "Installed plugins"
37
  msgstr "Plugin instalados"
38
 
39
- #: contact_form.php:91
40
  msgid "Recommended plugins"
41
  msgstr "Plugins recomendados"
42
 
43
- #: contact_form.php:93
44
  msgid "Download"
45
  msgstr "Descargar"
46
 
47
- #: contact_form.php:93
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Instala %s"
51
 
52
- #: contact_form.php:93
53
  msgid "Install now from wordpress.org"
54
  msgstr "Instala ahora de wordpress.org"
55
 
56
- #: contact_form.php:95
57
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
58
  msgstr "Si tiene alguna pregunta, por favor contactenos via plugin@bestwebsoft.com o use el formulario de contacto de nuestra web"
59
 
60
- #: contact_form.php:107
61
- #: contact_form.php:210
62
  msgid "Contact Form Options"
63
  msgstr "Opciones Contact Form"
64
 
65
- #: contact_form.php:107
66
  msgid "Contact Form"
67
  msgstr "Contact Form"
68
 
69
- #: contact_form.php:127
70
- #: contact_form.php:161
71
- #: contact_form.php:178
72
- #: contact_form.php:268
73
- msgid "Name:"
74
- msgstr "Nombre:"
75
-
76
  #: contact_form.php:128
77
  #: contact_form.php:162
78
  #: contact_form.php:179
79
  #: contact_form.php:269
80
- msgid "E-Mail Address:"
81
- msgstr "Dirección e-mail:"
82
 
83
  #: contact_form.php:129
84
  #: contact_form.php:163
85
  #: contact_form.php:180
86
  #: contact_form.php:270
87
- msgid "Subject:"
88
- msgstr "Asunto:"
89
 
90
  #: contact_form.php:130
91
  #: contact_form.php:164
92
  #: contact_form.php:181
93
  #: contact_form.php:271
94
- msgid "Message:"
95
- msgstr "Mensaje:"
96
 
97
  #: contact_form.php:131
98
  #: contact_form.php:165
99
  #: contact_form.php:182
100
  #: contact_form.php:272
 
 
 
 
 
 
 
101
  msgid "Attachment:"
102
  msgstr "Adjunto:"
103
 
104
- #: contact_form.php:190
105
- #: contact_form.php:199
106
  msgid "Options saved."
107
  msgstr "Configuración guardada."
108
 
109
- #: contact_form.php:193
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Usuario inexistente. Los cambios no se han guardado."
112
 
113
- #: contact_form.php:202
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Por favor introduzca un e-mail correcto. Los cambios no se han guardado."
116
 
117
- #: contact_form.php:215
118
- msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page:"
119
- msgstr "Si quiere añadir Contact Form en su web, copie y pegue este código en su mensaje o página:"
120
-
121
  #: contact_form.php:216
 
 
 
 
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Si la información en este campo está vacia, se usará la dirección especificada en el registro."
124
 
125
- #: contact_form.php:220
126
  msgid "Use email of wordpress user:"
127
  msgstr "Use el email del usuario de Wordpress:"
128
 
129
- #: contact_form.php:226
130
  msgid "Select user name"
131
  msgstr "Seleccione nombre de usuario"
132
 
133
- #: contact_form.php:231
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Introduzca el nombre del usuario que va a recibir mensajes desde contact form"
136
 
137
- #: contact_form.php:235
138
  msgid "Use this email:"
139
  msgstr "Use este emaill:"
140
 
141
- #: contact_form.php:241
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Establecer una dirección de correo electrónico que se utiliza para los mensajes que reciben."
144
 
145
- #: contact_form.php:245
146
  msgid "Additional options"
147
  msgstr "Opciones adicionales"
148
 
149
- #: contact_form.php:248
150
  msgid "Display Attachment block"
151
  msgstr "Visualiza el adjunto"
152
 
153
- #: contact_form.php:253
154
  msgid "Users can attach files of the following types"
155
  msgstr "Usuarios pueden adjuntar archivos de este tipo"
156
 
157
- #: contact_form.php:257
158
  msgid "Display Send me a copy block"
159
  msgstr "Ver envíame una copia"
160
 
161
- #: contact_form.php:263
162
  msgid "Change label for fields of the contact form"
163
  msgstr "Modifica las etiquetas de los campos en contact form"
164
 
165
- #: contact_form.php:278
166
  msgid "Save Changes"
167
  msgstr "Guardar los cambios"
168
 
169
- #: contact_form.php:309
170
  msgid "Thank you for contacting us."
171
  msgstr "Gracias por contactar con nosotros"
172
 
173
- #: contact_form.php:314
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Disculpe, su email no se puede entregar."
176
 
177
- #: contact_form.php:371
178
  msgid "You can attach files of the following types"
179
  msgstr "Puede adjuntar archivos de estos tipos"
180
 
181
- #: contact_form.php:377
182
  msgid "Send me a copy"
183
  msgstr "Envíame una copia"
184
 
185
- #: contact_form.php:387
186
  msgid "Submit"
187
  msgstr "Enviar"
188
 
189
- #: contact_form.php:403
190
  msgid "Your name is required."
191
  msgstr "Su nombre es obligatorio."
192
 
193
- #: contact_form.php:404
194
  msgid "A proper e-mail address is required."
195
  msgstr "Una dirección válida es obligatoria."
196
 
197
- #: contact_form.php:405
198
  msgid "Subject text is required."
199
  msgstr "El asunto es obligatorio."
200
 
201
- #: contact_form.php:406
202
  msgid "Message text is required."
203
  msgstr "El mensaje es obligatorio."
204
 
205
- #: contact_form.php:407
206
  msgid "Please make corrections below and try again."
207
  msgstr "Por favor, corrija los datos y pruebe de nuevo."
208
 
209
- #: contact_form.php:436
210
  msgid "Attachment is broken."
211
  msgstr "El adjunto es incorrecto."
212
 
213
- #: contact_form.php:449
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Por favor completa el CAPTCHA"
216
 
217
- #: contact_form.php:506
218
- #: contact_form.php:540
219
  msgid "Sent from (ip address)"
220
  msgstr "Enviado desde (dirección IP)"
221
 
222
- #: contact_form.php:507
223
- #: contact_form.php:543
224
  msgid "Date/Time"
225
  msgstr "Fecha/hora"
226
 
227
- #: contact_form.php:508
228
- #: contact_form.php:546
229
  msgid "Coming from (referer)"
230
  msgstr "De (referente)"
231
 
232
- #: contact_form.php:509
233
- #: contact_form.php:549
234
  msgid "Using (user agent)"
235
  msgstr "Usando (user agent)"
236
 
237
- #: contact_form.php:514
238
  msgid "Contact from"
239
  msgstr "Contact from"
240
 
241
- #: contact_form.php:519
242
  msgid "Name"
243
  msgstr "Nombre"
244
 
245
- #: contact_form.php:522
246
  msgid "Email"
247
  msgstr "E-mail"
248
 
249
- #: contact_form.php:525
250
  msgid "Subject"
251
  msgstr "Asunto"
252
 
253
- #: contact_form.php:528
254
  msgid "Message"
255
  msgstr "Mensaje"
256
 
257
- #: contact_form.php:531
258
  msgid "Site"
259
  msgstr "Sitio"
260
 
261
- #: contact_form.php:572
262
- msgid "If you can see this MIME than your client doesn't accept MIME types!"
263
- msgstr "Si usted puede ver esta MIME es que su cliente no acepta los tipos MIME!"
264
-
265
- #: contact_form.php:627
266
  msgid "FAQ"
267
  msgstr "FAQ"
268
 
269
- #: contact_form.php:628
270
  msgid "Support"
271
  msgstr "Soporte"
272
 
 
 
 
 
273
  #~ msgid "E-Mail Addresse:"
274
  #~ msgstr "Indirizzo e-mail:"
275
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-12 19:26+0200\n"
6
+ "PO-Revision-Date: 2012-03-12 19:26+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Poedit-SourceCharset: utf-8\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
24
+ #: contact_form.php:86
25
+ #: contact_form.php:94
26
  msgid "Read more"
27
  msgstr "Lea mas"
28
 
29
+ #: contact_form.php:78
30
+ #: contact_form.php:601
31
+ #: contact_form.php:610
32
  msgid "Settings"
33
  msgstr "Configuración"
34
 
35
+ #: contact_form.php:84
36
  msgid "Installed plugins"
37
  msgstr "Plugin instalados"
38
 
39
+ #: contact_form.php:92
40
  msgid "Recommended plugins"
41
  msgstr "Plugins recomendados"
42
 
43
+ #: contact_form.php:94
44
  msgid "Download"
45
  msgstr "Descargar"
46
 
47
+ #: contact_form.php:94
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Instala %s"
51
 
52
+ #: contact_form.php:94
53
  msgid "Install now from wordpress.org"
54
  msgstr "Instala ahora de wordpress.org"
55
 
56
+ #: contact_form.php:96
57
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
58
  msgstr "Si tiene alguna pregunta, por favor contactenos via plugin@bestwebsoft.com o use el formulario de contacto de nuestra web"
59
 
60
+ #: contact_form.php:108
61
+ #: contact_form.php:211
62
  msgid "Contact Form Options"
63
  msgstr "Opciones Contact Form"
64
 
65
+ #: contact_form.php:108
66
  msgid "Contact Form"
67
  msgstr "Contact Form"
68
 
 
 
 
 
 
 
 
69
  #: contact_form.php:128
70
  #: contact_form.php:162
71
  #: contact_form.php:179
72
  #: contact_form.php:269
73
+ msgid "Name:"
74
+ msgstr "Nombre:"
75
 
76
  #: contact_form.php:129
77
  #: contact_form.php:163
78
  #: contact_form.php:180
79
  #: contact_form.php:270
80
+ msgid "E-Mail Address:"
81
+ msgstr "Dirección e-mail:"
82
 
83
  #: contact_form.php:130
84
  #: contact_form.php:164
85
  #: contact_form.php:181
86
  #: contact_form.php:271
87
+ msgid "Subject:"
88
+ msgstr "Asunto:"
89
 
90
  #: contact_form.php:131
91
  #: contact_form.php:165
92
  #: contact_form.php:182
93
  #: contact_form.php:272
94
+ msgid "Message:"
95
+ msgstr "Mensaje:"
96
+
97
+ #: contact_form.php:132
98
+ #: contact_form.php:166
99
+ #: contact_form.php:183
100
+ #: contact_form.php:273
101
  msgid "Attachment:"
102
  msgstr "Adjunto:"
103
 
104
+ #: contact_form.php:191
105
+ #: contact_form.php:200
106
  msgid "Options saved."
107
  msgstr "Configuración guardada."
108
 
109
+ #: contact_form.php:194
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Usuario inexistente. Los cambios no se han guardado."
112
 
113
+ #: contact_form.php:203
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Por favor introduzca un e-mail correcto. Los cambios no se han guardado."
116
 
 
 
 
 
117
  #: contact_form.php:216
118
+ msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
+ msgstr "Si quiere añadir Contact Form en su web, copie y pegue este código en su mensaje o página o widget:"
120
+
121
+ #: contact_form.php:217
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Si la información en este campo está vacia, se usará la dirección especificada en el registro."
124
 
125
+ #: contact_form.php:221
126
  msgid "Use email of wordpress user:"
127
  msgstr "Use el email del usuario de Wordpress:"
128
 
129
+ #: contact_form.php:227
130
  msgid "Select user name"
131
  msgstr "Seleccione nombre de usuario"
132
 
133
+ #: contact_form.php:232
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Introduzca el nombre del usuario que va a recibir mensajes desde contact form"
136
 
137
+ #: contact_form.php:236
138
  msgid "Use this email:"
139
  msgstr "Use este emaill:"
140
 
141
+ #: contact_form.php:242
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Establecer una dirección de correo electrónico que se utiliza para los mensajes que reciben."
144
 
145
+ #: contact_form.php:246
146
  msgid "Additional options"
147
  msgstr "Opciones adicionales"
148
 
149
+ #: contact_form.php:249
150
  msgid "Display Attachment block"
151
  msgstr "Visualiza el adjunto"
152
 
153
+ #: contact_form.php:254
154
  msgid "Users can attach files of the following types"
155
  msgstr "Usuarios pueden adjuntar archivos de este tipo"
156
 
157
+ #: contact_form.php:258
158
  msgid "Display Send me a copy block"
159
  msgstr "Ver envíame una copia"
160
 
161
+ #: contact_form.php:264
162
  msgid "Change label for fields of the contact form"
163
  msgstr "Modifica las etiquetas de los campos en contact form"
164
 
165
+ #: contact_form.php:279
166
  msgid "Save Changes"
167
  msgstr "Guardar los cambios"
168
 
169
+ #: contact_form.php:310
170
  msgid "Thank you for contacting us."
171
  msgstr "Gracias por contactar con nosotros"
172
 
173
+ #: contact_form.php:315
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Disculpe, su email no se puede entregar."
176
 
177
+ #: contact_form.php:372
178
  msgid "You can attach files of the following types"
179
  msgstr "Puede adjuntar archivos de estos tipos"
180
 
181
+ #: contact_form.php:378
182
  msgid "Send me a copy"
183
  msgstr "Envíame una copia"
184
 
185
+ #: contact_form.php:388
186
  msgid "Submit"
187
  msgstr "Enviar"
188
 
189
+ #: contact_form.php:404
190
  msgid "Your name is required."
191
  msgstr "Su nombre es obligatorio."
192
 
193
+ #: contact_form.php:405
194
  msgid "A proper e-mail address is required."
195
  msgstr "Una dirección válida es obligatoria."
196
 
197
+ #: contact_form.php:406
198
  msgid "Subject text is required."
199
  msgstr "El asunto es obligatorio."
200
 
201
+ #: contact_form.php:407
202
  msgid "Message text is required."
203
  msgstr "El mensaje es obligatorio."
204
 
205
+ #: contact_form.php:408
206
  msgid "Please make corrections below and try again."
207
  msgstr "Por favor, corrija los datos y pruebe de nuevo."
208
 
209
+ #: contact_form.php:437
210
  msgid "Attachment is broken."
211
  msgstr "El adjunto es incorrecto."
212
 
213
+ #: contact_form.php:450
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Por favor completa el CAPTCHA"
216
 
217
+ #: contact_form.php:526
218
+ #: contact_form.php:560
219
  msgid "Sent from (ip address)"
220
  msgstr "Enviado desde (dirección IP)"
221
 
222
+ #: contact_form.php:527
223
+ #: contact_form.php:563
224
  msgid "Date/Time"
225
  msgstr "Fecha/hora"
226
 
227
+ #: contact_form.php:528
228
+ #: contact_form.php:566
229
  msgid "Coming from (referer)"
230
  msgstr "De (referente)"
231
 
232
+ #: contact_form.php:529
233
+ #: contact_form.php:569
234
  msgid "Using (user agent)"
235
  msgstr "Usando (user agent)"
236
 
237
+ #: contact_form.php:534
238
  msgid "Contact from"
239
  msgstr "Contact from"
240
 
241
+ #: contact_form.php:539
242
  msgid "Name"
243
  msgstr "Nombre"
244
 
245
+ #: contact_form.php:542
246
  msgid "Email"
247
  msgstr "E-mail"
248
 
249
+ #: contact_form.php:545
250
  msgid "Subject"
251
  msgstr "Asunto"
252
 
253
+ #: contact_form.php:548
254
  msgid "Message"
255
  msgstr "Mensaje"
256
 
257
+ #: contact_form.php:551
258
  msgid "Site"
259
  msgstr "Sitio"
260
 
261
+ #: contact_form.php:611
 
 
 
 
262
  msgid "FAQ"
263
  msgstr "FAQ"
264
 
265
+ #: contact_form.php:612
266
  msgid "Support"
267
  msgstr "Soporte"
268
 
269
+ #~ msgid "If you can see this MIME than your client doesn't accept MIME types!"
270
+ #~ msgstr ""
271
+ #~ "Si usted puede ver esta MIME es que su cliente no acepta los tipos MIME!"
272
+
273
  #~ msgid "E-Mail Addresse:"
274
  #~ msgstr "Indirizzo e-mail:"
275
 
languages/contact_form-fr_FR.mo ADDED
Binary file
languages/contact_form-fr_FR.po ADDED
@@ -0,0 +1,279 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ msgid ""
2
+ msgstr ""
3
+ "Project-Id-Version: contact_form\n"
4
+ "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-12 19:26+0200\n"
6
+ "PO-Revision-Date: 2012-03-12 19:26+0200\n"
7
+ "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
+ "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\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-Language: Spanish\n"
15
+ "X-Poedit-Country: SPAIN\n"
16
+ "X-Poedit-SourceCharset: utf-8\n"
17
+ "X-Poedit-SearchPath-0: .\n"
18
+
19
+ #: contact_form.php:76
20
+ msgid "Activated plugins"
21
+ msgstr "Extension activée"
22
+
23
+ #: contact_form.php:78
24
+ #: contact_form.php:86
25
+ #: contact_form.php:94
26
+ msgid "Read more"
27
+ msgstr "Lire plus"
28
+
29
+ #: contact_form.php:78
30
+ #: contact_form.php:601
31
+ #: contact_form.php:610
32
+ msgid "Settings"
33
+ msgstr "Réglages"
34
+
35
+ #: contact_form.php:84
36
+ msgid "Installed plugins"
37
+ msgstr "Extensions installées"
38
+
39
+ #: contact_form.php:92
40
+ msgid "Recommended plugins"
41
+ msgstr "Extensions recommandées"
42
+
43
+ #: contact_form.php:94
44
+ msgid "Download"
45
+ msgstr "Télécharger"
46
+
47
+ #: contact_form.php:94
48
+ #, php-format
49
+ msgid "Install %s"
50
+ msgstr "Intallation %s"
51
+
52
+ #: contact_form.php:94
53
+ msgid "Install now from wordpress.org"
54
+ msgstr "Installer maintenant depuis wordpress.org"
55
+
56
+ #: contact_form.php:96
57
+ msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
58
+ msgstr "Si vous avez des questions, merci de nous contacter par plugin@bestwebsoft.com ou utilisez notre formulaire sur notre site internet"
59
+
60
+ #: contact_form.php:108
61
+ #: contact_form.php:211
62
+ msgid "Contact Form Options"
63
+ msgstr "Réglages Contact Form"
64
+
65
+ #: contact_form.php:108
66
+ msgid "Contact Form"
67
+ msgstr "Formulaire de contact"
68
+
69
+ #: contact_form.php:128
70
+ #: contact_form.php:162
71
+ #: contact_form.php:179
72
+ #: contact_form.php:269
73
+ msgid "Name:"
74
+ msgstr "Nom:"
75
+
76
+ #: contact_form.php:129
77
+ #: contact_form.php:163
78
+ #: contact_form.php:180
79
+ #: contact_form.php:270
80
+ msgid "E-Mail Address:"
81
+ msgstr "Adresse email:"
82
+
83
+ #: contact_form.php:130
84
+ #: contact_form.php:164
85
+ #: contact_form.php:181
86
+ #: contact_form.php:271
87
+ msgid "Subject:"
88
+ msgstr "Sujet:"
89
+
90
+ #: contact_form.php:131
91
+ #: contact_form.php:165
92
+ #: contact_form.php:182
93
+ #: contact_form.php:272
94
+ msgid "Message:"
95
+ msgstr "Message:"
96
+
97
+ #: contact_form.php:132
98
+ #: contact_form.php:166
99
+ #: contact_form.php:183
100
+ #: contact_form.php:273
101
+ msgid "Attachment:"
102
+ msgstr "Pièce jointe:"
103
+
104
+ #: contact_form.php:191
105
+ #: contact_form.php:200
106
+ msgid "Options saved."
107
+ msgstr "Réglages sauvegardés."
108
+
109
+ #: contact_form.php:194
110
+ msgid "Such user is not exist. Settings are not saved."
111
+ msgstr "Utilisateur non existant. Réglages non sauvegardés."
112
+
113
+ #: contact_form.php:203
114
+ msgid "Please input correct email. Settings are not saved."
115
+ msgstr "Merci d'entrez une adresse email correcte. Réglages non sauvegardés."
116
+
117
+ #: contact_form.php:216
118
+ msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
+ msgstr "Si vous voulez ajouter un formulaire de contact sur votre site, ajouter ce code sur votre article ou votre page ou un widget:"
120
+
121
+ #: contact_form.php:217
122
+ msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
+ msgstr "Si aucune information n'est saisie dans ce champ alors le message sera envoyé à l'adresse specifiée lors de l'enregistrement."
124
+
125
+ #: contact_form.php:221
126
+ msgid "Use email of wordpress user:"
127
+ msgstr "Utiliser l'email de l'utilisateur wordpress:"
128
+
129
+ #: contact_form.php:227
130
+ msgid "Select user name"
131
+ msgstr "Selectionnez l'utilisateur"
132
+
133
+ #: contact_form.php:232
134
+ msgid "Set a name of user who will get messages from a contact form."
135
+ msgstr "Saisir le nom de l'utilisateur qui recevra les emails provenant du formulaire."
136
+
137
+ #: contact_form.php:236
138
+ msgid "Use this email:"
139
+ msgstr "Utiliser cet email:"
140
+
141
+ #: contact_form.php:242
142
+ msgid "Set an email address which will be used for messages receiving."
143
+ msgstr "Saisir l'adresse email qui sera utilisée pour la réception des messages"
144
+
145
+ #: contact_form.php:246
146
+ msgid "Additional options"
147
+ msgstr "Réglages supplémentaires"
148
+
149
+ #: contact_form.php:249
150
+ msgid "Display Attachment block"
151
+ msgstr "Afficher le bloc pièce jointe"
152
+
153
+ #: contact_form.php:254
154
+ msgid "Users can attach files of the following types"
155
+ msgstr "Les utilisateurs peuvent joindre des fichiers de ce type"
156
+
157
+ #: contact_form.php:258
158
+ msgid "Display Send me a copy block"
159
+ msgstr "Afficher le bloc Envoyer moi une copie"
160
+
161
+ #: contact_form.php:264
162
+ msgid "Change label for fields of the contact form"
163
+ msgstr "Modifier le titre des champs du formulaire de contact"
164
+
165
+ #: contact_form.php:279
166
+ msgid "Save Changes"
167
+ msgstr "Sauvegarder les changements"
168
+
169
+ #: contact_form.php:310
170
+ msgid "Thank you for contacting us."
171
+ msgstr "Merci de nous avoir contacter."
172
+
173
+ #: contact_form.php:315
174
+ msgid "Sorry, your e-mail could not be delivered."
175
+ msgstr "Désolé, votre adresse email ne peut pas être delivré."
176
+
177
+ #: contact_form.php:372
178
+ msgid "You can attach files of the following types"
179
+ msgstr "Vous pouvez attacher des fichier de ce type"
180
+
181
+ #: contact_form.php:378
182
+ msgid "Send me a copy"
183
+ msgstr "Envoyer moi une copie"
184
+
185
+ #: contact_form.php:388
186
+ msgid "Submit"
187
+ msgstr "Envoyer"
188
+
189
+ #: contact_form.php:404
190
+ msgid "Your name is required."
191
+ msgstr "Votre nom est requis."
192
+
193
+ #: contact_form.php:405
194
+ msgid "A proper e-mail address is required."
195
+ msgstr "Une adresse email valide est requise."
196
+
197
+ #: contact_form.php:406
198
+ msgid "Subject text is required."
199
+ msgstr "Sujet requis."
200
+
201
+ #: contact_form.php:407
202
+ msgid "Message text is required."
203
+ msgstr "Message requis."
204
+
205
+ #: contact_form.php:408
206
+ msgid "Please make corrections below and try again."
207
+ msgstr "Merci d'effectuer les corrections suivantes et de recommencer."
208
+
209
+ #: contact_form.php:437
210
+ msgid "Attachment is broken."
211
+ msgstr "La pièce jointe est corrompue."
212
+
213
+ #: contact_form.php:450
214
+ msgid "Please complete the CAPTCHA."
215
+ msgstr "Merci de saisir CAPTCHA"
216
+
217
+ #: contact_form.php:526
218
+ #: contact_form.php:560
219
+ msgid "Sent from (ip address)"
220
+ msgstr "Envoyé de (adresse IP)"
221
+
222
+ #: contact_form.php:527
223
+ #: contact_form.php:563
224
+ msgid "Date/Time"
225
+ msgstr "Date/Heure"
226
+
227
+ #: contact_form.php:528
228
+ #: contact_form.php:566
229
+ msgid "Coming from (referer)"
230
+ msgstr "De (Emetteur)"
231
+
232
+ #: contact_form.php:529
233
+ #: contact_form.php:569
234
+ msgid "Using (user agent)"
235
+ msgstr "Utilisant (user agent)"
236
+
237
+ #: contact_form.php:534
238
+ msgid "Contact from"
239
+ msgstr "Formulaire de contact"
240
+
241
+ #: contact_form.php:539
242
+ msgid "Name"
243
+ msgstr "Nom"
244
+
245
+ #: contact_form.php:542
246
+ msgid "Email"
247
+ msgstr "Email"
248
+
249
+ #: contact_form.php:545
250
+ msgid "Subject"
251
+ msgstr "Sujet"
252
+
253
+ #: contact_form.php:548
254
+ msgid "Message"
255
+ msgstr "Message"
256
+
257
+ #: contact_form.php:551
258
+ msgid "Site"
259
+ msgstr "Site"
260
+
261
+ #: contact_form.php:611
262
+ msgid "FAQ"
263
+ msgstr "FAQ"
264
+
265
+ #: contact_form.php:612
266
+ msgid "Support"
267
+ msgstr "Support"
268
+
269
+ #~ msgid "If you can see this MIME than your client doesn't accept MIME types!"
270
+ #~ msgstr "Type MIME non accepté par votre client!"
271
+
272
+ #~ msgid "E-Mail Addresse:"
273
+ #~ msgstr "Indirizzo e-mail:"
274
+
275
+ #~ msgid "Install Now"
276
+ #~ msgstr "Installa Ora"
277
+
278
+ #~ msgid "BWS Plugins"
279
+ #~ msgstr "BWS Plugins"
languages/contact_form-it_IT.mo CHANGED
Binary file
languages/contact_form-it_IT.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-02-24 15:53+0200\n"
6
- "PO-Revision-Date: 2012-02-24 15:53+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,260 +16,260 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:75
20
  msgid "Activated plugins"
21
  msgstr "Plugin attivati"
22
 
23
- #: contact_form.php:77
24
- #: contact_form.php:85
25
- #: contact_form.php:93
26
  msgid "Read more"
27
  msgstr "Leggi"
28
 
29
- #: contact_form.php:77
30
- #: contact_form.php:617
31
- #: contact_form.php:626
32
  msgid "Settings"
33
  msgstr "Settaggi"
34
 
35
- #: contact_form.php:83
36
  msgid "Installed plugins"
37
  msgstr "Plugin installati"
38
 
39
- #: contact_form.php:91
40
  msgid "Recommended plugins"
41
  msgstr "Plugin raccomandati"
42
 
43
- #: contact_form.php:93
44
  msgid "Download"
45
  msgstr "Download"
46
 
47
- #: contact_form.php:93
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Installa %s"
51
 
52
- #: contact_form.php:93
53
  msgid "Install now from wordpress.org"
54
  msgstr "Installa ora da wordpress.org"
55
 
56
- #: contact_form.php:95
57
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
58
  msgstr "Se hai domande, per favore contattaci a plugin@bestwebsoft.com o compila il modulo \"contact form\" sul nostro sito"
59
 
60
- #: contact_form.php:107
61
- #: contact_form.php:210
62
  msgid "Contact Form Options"
63
  msgstr "Opzioni Contact Form"
64
 
65
- #: contact_form.php:107
66
  msgid "Contact Form"
67
  msgstr "Contact Form"
68
 
69
- #: contact_form.php:127
70
- #: contact_form.php:161
71
- #: contact_form.php:178
72
- #: contact_form.php:268
73
- msgid "Name:"
74
- msgstr "Nome:"
75
-
76
  #: contact_form.php:128
77
  #: contact_form.php:162
78
  #: contact_form.php:179
79
  #: contact_form.php:269
80
- msgid "E-Mail Address:"
81
- msgstr "Indirizzo e-mail:"
82
 
83
  #: contact_form.php:129
84
  #: contact_form.php:163
85
  #: contact_form.php:180
86
  #: contact_form.php:270
87
- msgid "Subject:"
88
- msgstr "Oggetto:"
89
 
90
  #: contact_form.php:130
91
  #: contact_form.php:164
92
  #: contact_form.php:181
93
  #: contact_form.php:271
94
- msgid "Message:"
95
- msgstr "Messaggio:"
96
 
97
  #: contact_form.php:131
98
  #: contact_form.php:165
99
  #: contact_form.php:182
100
  #: contact_form.php:272
 
 
 
 
 
 
 
101
  msgid "Attachment:"
102
  msgstr "Attachment:"
103
 
104
- #: contact_form.php:190
105
- #: contact_form.php:199
106
  msgid "Options saved."
107
  msgstr "Opzioni salvate."
108
 
109
- #: contact_form.php:193
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "L'utente indicato non esiste. Le opzioni non sono state salvate."
112
 
113
- #: contact_form.php:202
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Perfavore inserisci una e-mail corretta. Opzioni non salvate."
116
 
117
- #: contact_form.php:215
118
- msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page:"
119
- msgstr "Se vuoi aggiungere un Contact Form al tuo sito, copia e incolla questo shortcode nei tuoi post o nelle tue pagine:"
120
-
121
  #: contact_form.php:216
 
 
 
 
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Se le informazioni nei campi sottostanti sono vuote allora il messaggio sarà inviato ad un indirizzo che è stato specificato durante la fase di registrazione. "
124
 
125
- #: contact_form.php:220
126
  msgid "Use email of wordpress user:"
127
  msgstr "Utilizza l'e-mail dell'utente wordpress:"
128
 
129
- #: contact_form.php:226
130
  msgid "Select user name"
131
  msgstr "Seleziona nome utente"
132
 
133
- #: contact_form.php:231
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Imposta il nome dell'utente che riceverà i messaggi da un contact form."
136
 
137
- #: contact_form.php:235
138
  msgid "Use this email:"
139
  msgstr "Utilizza questa e-mail:"
140
 
141
- #: contact_form.php:241
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Imposta una e-mail che verrà utilizzata per ricevere i messaggi."
144
 
145
- #: contact_form.php:245
146
  msgid "Additional options"
147
  msgstr "Impostazioni aggiuntive"
148
 
149
- #: contact_form.php:248
150
  msgid "Display Attachment block"
151
  msgstr "Visualizza l'attachment"
152
 
153
- #: contact_form.php:253
154
  msgid "Users can attach files of the following types"
155
  msgstr "Gli utenti possono allegare i files nei seguenti tipi"
156
 
157
- #: contact_form.php:257
158
  msgid "Display Send me a copy block"
159
  msgstr "Visualizza il blocco \"Inviami una copia\" "
160
 
161
- #: contact_form.php:263
162
  msgid "Change label for fields of the contact form"
163
  msgstr "Modifica le etichette dei campi del contact form"
164
 
165
- #: contact_form.php:278
166
  msgid "Save Changes"
167
  msgstr "Salva le modifiche"
168
 
169
- #: contact_form.php:309
170
  msgid "Thank you for contacting us."
171
  msgstr "Grazie per averci contattato."
172
 
173
- #: contact_form.php:314
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Spiacenti, la tua e-mail non può essere consegnata al momento."
176
 
177
- #: contact_form.php:371
178
  msgid "You can attach files of the following types"
179
  msgstr "Gli utenti possono allegare i files nei seguenti tipi"
180
 
181
- #: contact_form.php:377
182
  msgid "Send me a copy"
183
  msgstr "Inviami una copia"
184
 
185
- #: contact_form.php:387
186
  msgid "Submit"
187
  msgstr "Invia"
188
 
189
- #: contact_form.php:403
190
  msgid "Your name is required."
191
  msgstr "Il nome è obbligatorio"
192
 
193
- #: contact_form.php:404
194
  msgid "A proper e-mail address is required."
195
  msgstr "È richiesto un indirizzo e-mail corretto"
196
 
197
- #: contact_form.php:405
198
  msgid "Subject text is required."
199
  msgstr "L'oggetto è obbligatorio"
200
 
201
- #: contact_form.php:406
202
  msgid "Message text is required."
203
  msgstr "Il campo messaggio è obbligatorio"
204
 
205
- #: contact_form.php:407
206
  msgid "Please make corrections below and try again."
207
  msgstr "Controlla i dati del modulo e riprova!"
208
 
209
- #: contact_form.php:436
210
  msgid "Attachment is broken."
211
  msgstr "L'attachment non è corretto"
212
 
213
- #: contact_form.php:449
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Completa il CAPTCHA"
216
 
217
- #: contact_form.php:506
218
- #: contact_form.php:540
219
  msgid "Sent from (ip address)"
220
  msgstr "Inviato da (indirizzi IP)"
221
 
222
- #: contact_form.php:507
223
- #: contact_form.php:543
224
  msgid "Date/Time"
225
  msgstr "Data/Ora"
226
 
227
- #: contact_form.php:508
228
- #: contact_form.php:546
229
  msgid "Coming from (referer)"
230
  msgstr "Da (referente)"
231
 
232
- #: contact_form.php:509
233
- #: contact_form.php:549
234
  msgid "Using (user agent)"
235
  msgstr "Utilizza (user agent)"
236
 
237
- #: contact_form.php:514
238
  msgid "Contact from"
239
  msgstr "Contact from"
240
 
241
- #: contact_form.php:519
242
  msgid "Name"
243
  msgstr "Nome"
244
 
245
- #: contact_form.php:522
246
  msgid "Email"
247
  msgstr "e-mail"
248
 
249
- #: contact_form.php:525
250
  msgid "Subject"
251
  msgstr "Oggetto"
252
 
253
- #: contact_form.php:528
254
  msgid "Message"
255
  msgstr "Messaggio"
256
 
257
- #: contact_form.php:531
258
  msgid "Site"
259
  msgstr "Sito"
260
 
261
- #: contact_form.php:572
262
- msgid "If you can see this MIME than your client doesn't accept MIME types!"
263
- msgstr "Se puoi visualizzare questo MIME il tuo client non supporta i MIME types!"
264
-
265
- #: contact_form.php:627
266
  msgid "FAQ"
267
  msgstr "FAQ"
268
 
269
- #: contact_form.php:628
270
  msgid "Support"
271
  msgstr "Supporto"
272
 
 
 
 
 
273
  #~ msgid "E-Mail Addresse:"
274
  #~ msgstr "Indirizzo e-mail:"
275
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-12 19:26+0200\n"
6
+ "PO-Revision-Date: 2012-03-12 19:26+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Poedit-SourceCharset: utf-8\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
24
+ #: contact_form.php:86
25
+ #: contact_form.php:94
26
  msgid "Read more"
27
  msgstr "Leggi"
28
 
29
+ #: contact_form.php:78
30
+ #: contact_form.php:601
31
+ #: contact_form.php:610
32
  msgid "Settings"
33
  msgstr "Settaggi"
34
 
35
+ #: contact_form.php:84
36
  msgid "Installed plugins"
37
  msgstr "Plugin installati"
38
 
39
+ #: contact_form.php:92
40
  msgid "Recommended plugins"
41
  msgstr "Plugin raccomandati"
42
 
43
+ #: contact_form.php:94
44
  msgid "Download"
45
  msgstr "Download"
46
 
47
+ #: contact_form.php:94
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Installa %s"
51
 
52
+ #: contact_form.php:94
53
  msgid "Install now from wordpress.org"
54
  msgstr "Installa ora da wordpress.org"
55
 
56
+ #: contact_form.php:96
57
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
58
  msgstr "Se hai domande, per favore contattaci a plugin@bestwebsoft.com o compila il modulo \"contact form\" sul nostro sito"
59
 
60
+ #: contact_form.php:108
61
+ #: contact_form.php:211
62
  msgid "Contact Form Options"
63
  msgstr "Opzioni Contact Form"
64
 
65
+ #: contact_form.php:108
66
  msgid "Contact Form"
67
  msgstr "Contact Form"
68
 
 
 
 
 
 
 
 
69
  #: contact_form.php:128
70
  #: contact_form.php:162
71
  #: contact_form.php:179
72
  #: contact_form.php:269
73
+ msgid "Name:"
74
+ msgstr "Nome:"
75
 
76
  #: contact_form.php:129
77
  #: contact_form.php:163
78
  #: contact_form.php:180
79
  #: contact_form.php:270
80
+ msgid "E-Mail Address:"
81
+ msgstr "Indirizzo e-mail:"
82
 
83
  #: contact_form.php:130
84
  #: contact_form.php:164
85
  #: contact_form.php:181
86
  #: contact_form.php:271
87
+ msgid "Subject:"
88
+ msgstr "Oggetto:"
89
 
90
  #: contact_form.php:131
91
  #: contact_form.php:165
92
  #: contact_form.php:182
93
  #: contact_form.php:272
94
+ msgid "Message:"
95
+ msgstr "Messaggio:"
96
+
97
+ #: contact_form.php:132
98
+ #: contact_form.php:166
99
+ #: contact_form.php:183
100
+ #: contact_form.php:273
101
  msgid "Attachment:"
102
  msgstr "Attachment:"
103
 
104
+ #: contact_form.php:191
105
+ #: contact_form.php:200
106
  msgid "Options saved."
107
  msgstr "Opzioni salvate."
108
 
109
+ #: contact_form.php:194
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "L'utente indicato non esiste. Le opzioni non sono state salvate."
112
 
113
+ #: contact_form.php:203
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Perfavore inserisci una e-mail corretta. Opzioni non salvate."
116
 
 
 
 
 
117
  #: contact_form.php:216
118
+ msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
+ msgstr "Se vuoi aggiungere un Contact Form al tuo sito, copia e incolla questo shortcode nei tuoi post o nelle tue pagine o widget:"
120
+
121
+ #: contact_form.php:217
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Se le informazioni nei campi sottostanti sono vuote allora il messaggio sarà inviato ad un indirizzo che è stato specificato durante la fase di registrazione. "
124
 
125
+ #: contact_form.php:221
126
  msgid "Use email of wordpress user:"
127
  msgstr "Utilizza l'e-mail dell'utente wordpress:"
128
 
129
+ #: contact_form.php:227
130
  msgid "Select user name"
131
  msgstr "Seleziona nome utente"
132
 
133
+ #: contact_form.php:232
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Imposta il nome dell'utente che riceverà i messaggi da un contact form."
136
 
137
+ #: contact_form.php:236
138
  msgid "Use this email:"
139
  msgstr "Utilizza questa e-mail:"
140
 
141
+ #: contact_form.php:242
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Imposta una e-mail che verrà utilizzata per ricevere i messaggi."
144
 
145
+ #: contact_form.php:246
146
  msgid "Additional options"
147
  msgstr "Impostazioni aggiuntive"
148
 
149
+ #: contact_form.php:249
150
  msgid "Display Attachment block"
151
  msgstr "Visualizza l'attachment"
152
 
153
+ #: contact_form.php:254
154
  msgid "Users can attach files of the following types"
155
  msgstr "Gli utenti possono allegare i files nei seguenti tipi"
156
 
157
+ #: contact_form.php:258
158
  msgid "Display Send me a copy block"
159
  msgstr "Visualizza il blocco \"Inviami una copia\" "
160
 
161
+ #: contact_form.php:264
162
  msgid "Change label for fields of the contact form"
163
  msgstr "Modifica le etichette dei campi del contact form"
164
 
165
+ #: contact_form.php:279
166
  msgid "Save Changes"
167
  msgstr "Salva le modifiche"
168
 
169
+ #: contact_form.php:310
170
  msgid "Thank you for contacting us."
171
  msgstr "Grazie per averci contattato."
172
 
173
+ #: contact_form.php:315
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Spiacenti, la tua e-mail non può essere consegnata al momento."
176
 
177
+ #: contact_form.php:372
178
  msgid "You can attach files of the following types"
179
  msgstr "Gli utenti possono allegare i files nei seguenti tipi"
180
 
181
+ #: contact_form.php:378
182
  msgid "Send me a copy"
183
  msgstr "Inviami una copia"
184
 
185
+ #: contact_form.php:388
186
  msgid "Submit"
187
  msgstr "Invia"
188
 
189
+ #: contact_form.php:404
190
  msgid "Your name is required."
191
  msgstr "Il nome è obbligatorio"
192
 
193
+ #: contact_form.php:405
194
  msgid "A proper e-mail address is required."
195
  msgstr "È richiesto un indirizzo e-mail corretto"
196
 
197
+ #: contact_form.php:406
198
  msgid "Subject text is required."
199
  msgstr "L'oggetto è obbligatorio"
200
 
201
+ #: contact_form.php:407
202
  msgid "Message text is required."
203
  msgstr "Il campo messaggio è obbligatorio"
204
 
205
+ #: contact_form.php:408
206
  msgid "Please make corrections below and try again."
207
  msgstr "Controlla i dati del modulo e riprova!"
208
 
209
+ #: contact_form.php:437
210
  msgid "Attachment is broken."
211
  msgstr "L'attachment non è corretto"
212
 
213
+ #: contact_form.php:450
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Completa il CAPTCHA"
216
 
217
+ #: contact_form.php:526
218
+ #: contact_form.php:560
219
  msgid "Sent from (ip address)"
220
  msgstr "Inviato da (indirizzi IP)"
221
 
222
+ #: contact_form.php:527
223
+ #: contact_form.php:563
224
  msgid "Date/Time"
225
  msgstr "Data/Ora"
226
 
227
+ #: contact_form.php:528
228
+ #: contact_form.php:566
229
  msgid "Coming from (referer)"
230
  msgstr "Da (referente)"
231
 
232
+ #: contact_form.php:529
233
+ #: contact_form.php:569
234
  msgid "Using (user agent)"
235
  msgstr "Utilizza (user agent)"
236
 
237
+ #: contact_form.php:534
238
  msgid "Contact from"
239
  msgstr "Contact from"
240
 
241
+ #: contact_form.php:539
242
  msgid "Name"
243
  msgstr "Nome"
244
 
245
+ #: contact_form.php:542
246
  msgid "Email"
247
  msgstr "e-mail"
248
 
249
+ #: contact_form.php:545
250
  msgid "Subject"
251
  msgstr "Oggetto"
252
 
253
+ #: contact_form.php:548
254
  msgid "Message"
255
  msgstr "Messaggio"
256
 
257
+ #: contact_form.php:551
258
  msgid "Site"
259
  msgstr "Sito"
260
 
261
+ #: contact_form.php:611
 
 
 
 
262
  msgid "FAQ"
263
  msgstr "FAQ"
264
 
265
+ #: contact_form.php:612
266
  msgid "Support"
267
  msgstr "Supporto"
268
 
269
+ #~ msgid "If you can see this MIME than your client doesn't accept MIME types!"
270
+ #~ msgstr ""
271
+ #~ "Se puoi visualizzare questo MIME il tuo client non supporta i MIME types!"
272
+
273
  #~ msgid "E-Mail Addresse:"
274
  #~ msgstr "Indirizzo e-mail:"
275
 
languages/contact_form-lt_LT.mo ADDED
Binary file
languages/contact_form-lt_LT.po ADDED
@@ -0,0 +1,283 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Donatas G. <dgvirtual@akl.lt>, 2012.
2
+ msgid ""
3
+ msgstr ""
4
+ "Project-Id-Version: contact_form\n"
5
+ "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2012-03-12 19:26+0200\n"
7
+ "PO-Revision-Date: 2012-03-12 19:26+0200\n"
8
+ "Last-Translator: BWS <zos@bestwebsoft.com>\n"
9
+ "Language-Team: Lithuanian <kde-i18n-lt@kde.org>\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: Lithuanian\n"
16
+ "X-Poedit-Country: Lithuania\n"
17
+ "X-Poedit-SourceCharset: utf-8\n"
18
+ "Language: lt\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:601
35
+ #: contact_form.php:610
36
+ msgid "Settings"
37
+ msgstr "Nustatymai"
38
+
39
+ #: contact_form.php:84
40
+ msgid "Installed plugins"
41
+ msgstr "Įdiegti įskiepiai"
42
+
43
+ #: contact_form.php:92
44
+ msgid "Recommended plugins"
45
+ msgstr "Rekomenduojami įskiepiai"
46
+
47
+ #: contact_form.php:94
48
+ msgid "Download"
49
+ msgstr "Atsisiųsti"
50
+
51
+ #: contact_form.php:94
52
+ #, php-format
53
+ msgid "Install %s"
54
+ msgstr "Įdiegti %s"
55
+
56
+ #: contact_form.php:94
57
+ 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:211
66
+ msgid "Contact Form Options"
67
+ msgstr "Kontaktų formos parinktys"
68
+
69
+ #: contact_form.php:108
70
+ msgid "Contact Form"
71
+ msgstr "Kontaktų forma"
72
+
73
+ #: contact_form.php:128
74
+ #: contact_form.php:162
75
+ #: contact_form.php:179
76
+ #: contact_form.php:269
77
+ msgid "Name:"
78
+ msgstr "Vardas:"
79
+
80
+ #: contact_form.php:129
81
+ #: contact_form.php:163
82
+ #: contact_form.php:180
83
+ #: contact_form.php:270
84
+ msgid "E-Mail Address:"
85
+ msgstr "El. pašto adresas:"
86
+
87
+ #: contact_form.php:130
88
+ #: contact_form.php:164
89
+ #: contact_form.php:181
90
+ #: contact_form.php:271
91
+ msgid "Subject:"
92
+ msgstr "Tema:"
93
+
94
+ #: contact_form.php:131
95
+ #: contact_form.php:165
96
+ #: contact_form.php:182
97
+ #: contact_form.php:272
98
+ msgid "Message:"
99
+ msgstr "Pranešimas:"
100
+
101
+ #: contact_form.php:132
102
+ #: contact_form.php:166
103
+ #: contact_form.php:183
104
+ #: contact_form.php:273
105
+ msgid "Attachment:"
106
+ msgstr "Priedas:"
107
+
108
+ #: contact_form.php:191
109
+ #: contact_form.php:200
110
+ msgid "Options saved."
111
+ msgstr "Parinktys išsaugotos."
112
+
113
+ #: contact_form.php:194
114
+ msgid "Such user is not exist. Settings are not saved."
115
+ msgstr "Toks vartotojas neegzistuoja. Nustatymai neišsaugoti."
116
+
117
+ #: contact_form.php:203
118
+ msgid "Please input correct email. Settings are not saved."
119
+ msgstr "Prašome įrašyti teisingą el. pašto adresą. Nustatymai neįrašyti."
120
+
121
+ #: contact_form.php:216
122
+ msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
123
+ msgstr "Jei norite pridėti kontaktų formą prie savo svetainės, tiesiog nukopijuokite šį trumpą kodą į savo puslapį ar elementą:"
124
+
125
+ #: contact_form.php:217
126
+ msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
127
+ msgstr "Jei informacijos žemiau esančiuose laukuose nėra, pranešimas bus išsiųstas adresu, kuris buvo nurodytas prisiregistravimo metu."
128
+
129
+ #: contact_form.php:221
130
+ msgid "Use email of wordpress user:"
131
+ msgstr "Naudoti wordpress vartotojo el. pašto adresą:"
132
+
133
+ #: contact_form.php:227
134
+ msgid "Select user name"
135
+ msgstr "Pasirinkite vartotojo vardą"
136
+
137
+ #: contact_form.php:232
138
+ msgid "Set a name of user who will get messages from a contact form."
139
+ msgstr "Nurodykite vardą vartotojo, kuris gaus pranešimus iš Kontaktų formos."
140
+
141
+ #: contact_form.php:236
142
+ msgid "Use this email:"
143
+ msgstr "Naudoti šį el. pašto adresą:"
144
+
145
+ #: contact_form.php:242
146
+ msgid "Set an email address which will be used for messages receiving."
147
+ msgstr "Nustatykite el. pašto adresą, kuris bus naudojamas pranešimams gauti."
148
+
149
+ #: contact_form.php:246
150
+ msgid "Additional options"
151
+ msgstr "Papildomos parinktys"
152
+
153
+ #: contact_form.php:249
154
+ msgid "Display Attachment block"
155
+ msgstr "Rodyti priedų įrašą"
156
+
157
+ #: contact_form.php:254
158
+ msgid "Users can attach files of the following types"
159
+ msgstr "Vartotojai gali prikabinti šių tipų failus"
160
+
161
+ #: contact_form.php:258
162
+ msgid "Display Send me a copy block"
163
+ msgstr "Rodyti „Siųsti kopiją man“ įrašą"
164
+
165
+ #: contact_form.php:264
166
+ msgid "Change label for fields of the contact form"
167
+ msgstr "Pakeiskite antraštes kontaktų formos etiketėms"
168
+
169
+ #: contact_form.php:279
170
+ msgid "Save Changes"
171
+ msgstr "Įrašyti pakeitimus"
172
+
173
+ #: contact_form.php:310
174
+ msgid "Thank you for contacting us."
175
+ msgstr "Dėkojame, kad su mumis susisiekėte."
176
+
177
+ #: contact_form.php:315
178
+ msgid "Sorry, your e-mail could not be delivered."
179
+ msgstr "Deja, jūsų el. laiško nepavyko pristatyti."
180
+
181
+ #: contact_form.php:372
182
+ msgid "You can attach files of the following types"
183
+ msgstr "Galite prikabinti šių tipų failus"
184
+
185
+ #: contact_form.php:378
186
+ msgid "Send me a copy"
187
+ msgstr "Siųsti kopiją man"
188
+
189
+ #: contact_form.php:388
190
+ msgid "Submit"
191
+ msgstr "Siųsti"
192
+
193
+ #: contact_form.php:404
194
+ msgid "Your name is required."
195
+ msgstr "Būtina įrašyti vardą."
196
+
197
+ #: contact_form.php:405
198
+ msgid "A proper e-mail address is required."
199
+ msgstr "Būtina įrašyti teisingą el. pašto adresą."
200
+
201
+ #: contact_form.php:406
202
+ msgid "Subject text is required."
203
+ msgstr "Būtina įrašyti temą."
204
+
205
+ #: contact_form.php:407
206
+ msgid "Message text is required."
207
+ msgstr "Būtina įrašyti laiško turinį."
208
+
209
+ #: contact_form.php:408
210
+ msgid "Please make corrections below and try again."
211
+ msgstr "Prašome pataisyti laišką ir bandyti iš naujo."
212
+
213
+ #: contact_form.php:437
214
+ msgid "Attachment is broken."
215
+ msgstr "Pridedamas failas sugadintas."
216
+
217
+ #: contact_form.php:450
218
+ msgid "Please complete the CAPTCHA."
219
+ msgstr "Prašome užpildyti CAPTCHA."
220
+
221
+ #: contact_form.php:526
222
+ #: contact_form.php:560
223
+ msgid "Sent from (ip address)"
224
+ msgstr "Siųsta iš (ip adresas)"
225
+
226
+ #: contact_form.php:527
227
+ #: contact_form.php:563
228
+ msgid "Date/Time"
229
+ msgstr "Data/laikas"
230
+
231
+ #: contact_form.php:528
232
+ #: contact_form.php:566
233
+ msgid "Coming from (referer)"
234
+ msgstr "Ateita iš (nukreipiklis)"
235
+
236
+ #: contact_form.php:529
237
+ #: contact_form.php:569
238
+ msgid "Using (user agent)"
239
+ msgstr "Naudoja (naršyklės įrašas)"
240
+
241
+ #: contact_form.php:534
242
+ msgid "Contact from"
243
+ msgstr "Kontaktų forma"
244
+
245
+ #: contact_form.php:539
246
+ msgid "Name"
247
+ msgstr "Vardas"
248
+
249
+ #: contact_form.php:542
250
+ msgid "Email"
251
+ msgstr "El. paštas"
252
+
253
+ #: contact_form.php:545
254
+ msgid "Subject"
255
+ msgstr "Tema"
256
+
257
+ #: contact_form.php:548
258
+ msgid "Message"
259
+ msgstr "Tekstas"
260
+
261
+ #: contact_form.php:551
262
+ msgid "Site"
263
+ msgstr "Svetainė"
264
+
265
+ #: contact_form.php:611
266
+ msgid "FAQ"
267
+ msgstr "DUK"
268
+
269
+ #: contact_form.php:612
270
+ msgid "Support"
271
+ msgstr "Palaikymas"
272
+
273
+ #~ msgid "If you can see this MIME than your client doesn't accept MIME types!"
274
+ #~ msgstr "Jei galite matyti šį MIME tipą, jūsų klientas nepriima MIME tipų!"
275
+
276
+ #~ msgid "E-Mail Addresse:"
277
+ #~ msgstr "E-mail адрес:"
278
+
279
+ #~ msgid "Install Now"
280
+ #~ msgstr "Инсталирайте сега"
281
+
282
+ #~ msgid "BWS Plugins"
283
+ #~ msgstr "Разширение BWS"
languages/contact_form-nb_NO.mo CHANGED
Binary file
languages/contact_form-nb_NO.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-02-24 15:52+0200\n"
6
- "PO-Revision-Date: 2012-02-24 15:52+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,260 +16,260 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:75
20
  msgid "Activated plugins"
21
  msgstr "Aktiverte innstikk"
22
 
23
- #: contact_form.php:77
24
- #: contact_form.php:85
25
- #: contact_form.php:93
26
  msgid "Read more"
27
  msgstr "Les mer"
28
 
29
- #: contact_form.php:77
30
- #: contact_form.php:617
31
- #: contact_form.php:626
32
  msgid "Settings"
33
  msgstr "Innstilllinger"
34
 
35
- #: contact_form.php:83
36
  msgid "Installed plugins"
37
  msgstr "Installerte instikk"
38
 
39
- #: contact_form.php:91
40
  msgid "Recommended plugins"
41
  msgstr "Anbefalte innstikk"
42
 
43
- #: contact_form.php:93
44
  msgid "Download"
45
  msgstr "Last ned"
46
 
47
- #: contact_form.php:93
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Installér %s"
51
 
52
- #: contact_form.php:93
53
  msgid "Install now from wordpress.org"
54
  msgstr "Innstallér nå fra wordpress.org"
55
 
56
- #: contact_form.php:95
57
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
58
  msgstr "Hvis du har spørsmål kan du kontakte oss på plugin@bestwebsoft.com eller bruke kontaktskjemaet på hjemmesiden vår"
59
 
60
- #: contact_form.php:107
61
- #: contact_form.php:210
62
  msgid "Contact Form Options"
63
  msgstr "Innstillinger for kontaktskjema"
64
 
65
- #: contact_form.php:107
66
  msgid "Contact Form"
67
  msgstr "Kontaktskjema"
68
 
69
- #: contact_form.php:127
70
- #: contact_form.php:161
71
- #: contact_form.php:178
72
- #: contact_form.php:268
73
- msgid "Name:"
74
- msgstr "Navn:"
75
-
76
  #: contact_form.php:128
77
  #: contact_form.php:162
78
  #: contact_form.php:179
79
  #: contact_form.php:269
80
- msgid "E-Mail Address:"
81
- msgstr "Epostadresse:"
82
 
83
  #: contact_form.php:129
84
  #: contact_form.php:163
85
  #: contact_form.php:180
86
  #: contact_form.php:270
87
- msgid "Subject:"
88
- msgstr "Tema:"
89
 
90
  #: contact_form.php:130
91
  #: contact_form.php:164
92
  #: contact_form.php:181
93
  #: contact_form.php:271
94
- msgid "Message:"
95
- msgstr "Melding:"
96
 
97
  #: contact_form.php:131
98
  #: contact_form.php:165
99
  #: contact_form.php:182
100
  #: contact_form.php:272
 
 
 
 
 
 
 
101
  msgid "Attachment:"
102
  msgstr "Vedlegg:"
103
 
104
- #: contact_form.php:190
105
- #: contact_form.php:199
106
  msgid "Options saved."
107
  msgstr "Innstillinger lagret."
108
 
109
- #: contact_form.php:193
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Denne brukeren finnes ikke. Innstillingene er ikke lagret."
112
 
113
- #: contact_form.php:202
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Vennligst benytt en korrekt epostadresse. Innstillingene er ikke lagret."
116
 
117
- #: contact_form.php:215
118
- msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page:"
119
  msgstr "Dersom du ønsket å legge til et kontaktskjema på wedsiden din, kopier og put denne koden i kommentaren din eller på siden din: "
120
 
121
- #: contact_form.php:216
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Dersom feltene under er tomme, vil meldingen bli sendt til en adresse som var spesifisert ved registrering."
124
 
125
- #: contact_form.php:220
126
  msgid "Use email of wordpress user:"
127
  msgstr "Benytt eposten til wordpressbruker:"
128
 
129
- #: contact_form.php:226
130
  msgid "Select user name"
131
  msgstr "Velg brukernavn"
132
 
133
- #: contact_form.php:231
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Sett et brukernavn for mottaker av meldinger fra kontaktskjemaet"
136
 
137
- #: contact_form.php:235
138
  msgid "Use this email:"
139
  msgstr "Benytt denne epostadressen:"
140
 
141
- #: contact_form.php:241
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Sett en epostadresse som skal benyttes for å motta meldinger."
144
 
145
- #: contact_form.php:245
146
  msgid "Additional options"
147
  msgstr "Flere valg"
148
 
149
- #: contact_form.php:248
150
  msgid "Display Attachment block"
151
  msgstr "Vis vedlegg"
152
 
153
- #: contact_form.php:253
154
  msgid "Users can attach files of the following types"
155
  msgstr "Brukere kan legge ved filer av følgende typer"
156
 
157
- #: contact_form.php:257
158
  msgid "Display Send me a copy block"
159
  msgstr "Vis send meg en kopi"
160
 
161
- #: contact_form.php:263
162
  msgid "Change label for fields of the contact form"
163
  msgstr "Forandre etikett for felter i kontaktskjemaet"
164
 
165
- #: contact_form.php:278
166
  msgid "Save Changes"
167
  msgstr "Lagre endringer"
168
 
169
- #: contact_form.php:309
170
  msgid "Thank you for contacting us."
171
  msgstr "Takk for at du tok kontakt med oss"
172
 
173
- #: contact_form.php:314
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Beklager, eposten din kunne ikke leveres."
176
 
177
- #: contact_form.php:371
178
  msgid "You can attach files of the following types"
179
  msgstr "Du kan legge til filer av følgende typer"
180
 
181
- #: contact_form.php:377
182
  msgid "Send me a copy"
183
  msgstr "Send meg en kopi"
184
 
185
- #: contact_form.php:387
186
  msgid "Submit"
187
  msgstr "Send"
188
 
189
- #: contact_form.php:403
190
  msgid "Your name is required."
191
  msgstr "Navnet ditt er påkrevet."
192
 
193
- #: contact_form.php:404
194
  msgid "A proper e-mail address is required."
195
  msgstr "En korrekt epostadresse er påkrevet."
196
 
197
- #: contact_form.php:405
198
  msgid "Subject text is required."
199
  msgstr "Tekst i temafeltet er påkrevet."
200
 
201
- #: contact_form.php:406
202
  msgid "Message text is required."
203
  msgstr "Tekst i meldingsfeltet er påkrevet"
204
 
205
- #: contact_form.php:407
206
  msgid "Please make corrections below and try again."
207
  msgstr "Vennligst gjør endringer nedenfor og forsøk igjen."
208
 
209
- #: contact_form.php:436
210
  msgid "Attachment is broken."
211
  msgstr "Vedlegget fungerer ikke."
212
 
213
- #: contact_form.php:449
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Vennligst fyll ut CAPTCHA"
216
 
217
- #: contact_form.php:506
218
- #: contact_form.php:540
219
  msgid "Sent from (ip address)"
220
  msgstr "Sendt fra (IP-adresse)"
221
 
222
- #: contact_form.php:507
223
- #: contact_form.php:543
224
  msgid "Date/Time"
225
  msgstr "Dato/tid"
226
 
227
- #: contact_form.php:508
228
- #: contact_form.php:546
229
  msgid "Coming from (referer)"
230
  msgstr "Sendt fra (referent)"
231
 
232
- #: contact_form.php:509
233
- #: contact_form.php:549
234
  msgid "Using (user agent)"
235
  msgstr "med (user agent)"
236
 
237
- #: contact_form.php:514
238
  msgid "Contact from"
239
  msgstr "Kontakt fra"
240
 
241
- #: contact_form.php:519
242
  msgid "Name"
243
  msgstr "Navn"
244
 
245
- #: contact_form.php:522
246
  msgid "Email"
247
  msgstr "Epost"
248
 
249
- #: contact_form.php:525
250
  msgid "Subject"
251
  msgstr "Tema"
252
 
253
- #: contact_form.php:528
254
  msgid "Message"
255
  msgstr "Melding"
256
 
257
- #: contact_form.php:531
258
  msgid "Site"
259
  msgstr "Site"
260
 
261
- #: contact_form.php:572
262
- msgid "If you can see this MIME than your client doesn't accept MIME types!"
263
- msgstr "Dersom du kan se denne MIME, så aksepterer ikke klienten din MIME-typer!"
264
-
265
- #: contact_form.php:627
266
  msgid "FAQ"
267
  msgstr "Vanlige spørsmål"
268
 
269
- #: contact_form.php:628
270
  msgid "Support"
271
  msgstr "Support"
272
 
 
 
 
 
273
  #~ msgid "E-Mail Addresse:"
274
  #~ msgstr "Indirizzo e-mail:"
275
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-12 19:26+0200\n"
6
+ "PO-Revision-Date: 2012-03-12 19:26+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Poedit-SourceCharset: utf-8\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
24
+ #: contact_form.php:86
25
+ #: contact_form.php:94
26
  msgid "Read more"
27
  msgstr "Les mer"
28
 
29
+ #: contact_form.php:78
30
+ #: contact_form.php:601
31
+ #: contact_form.php:610
32
  msgid "Settings"
33
  msgstr "Innstilllinger"
34
 
35
+ #: contact_form.php:84
36
  msgid "Installed plugins"
37
  msgstr "Installerte instikk"
38
 
39
+ #: contact_form.php:92
40
  msgid "Recommended plugins"
41
  msgstr "Anbefalte innstikk"
42
 
43
+ #: contact_form.php:94
44
  msgid "Download"
45
  msgstr "Last ned"
46
 
47
+ #: contact_form.php:94
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Installér %s"
51
 
52
+ #: contact_form.php:94
53
  msgid "Install now from wordpress.org"
54
  msgstr "Innstallér nå fra wordpress.org"
55
 
56
+ #: contact_form.php:96
57
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
58
  msgstr "Hvis du har spørsmål kan du kontakte oss på plugin@bestwebsoft.com eller bruke kontaktskjemaet på hjemmesiden vår"
59
 
60
+ #: contact_form.php:108
61
+ #: contact_form.php:211
62
  msgid "Contact Form Options"
63
  msgstr "Innstillinger for kontaktskjema"
64
 
65
+ #: contact_form.php:108
66
  msgid "Contact Form"
67
  msgstr "Kontaktskjema"
68
 
 
 
 
 
 
 
 
69
  #: contact_form.php:128
70
  #: contact_form.php:162
71
  #: contact_form.php:179
72
  #: contact_form.php:269
73
+ msgid "Name:"
74
+ msgstr "Navn:"
75
 
76
  #: contact_form.php:129
77
  #: contact_form.php:163
78
  #: contact_form.php:180
79
  #: contact_form.php:270
80
+ msgid "E-Mail Address:"
81
+ msgstr "Epostadresse:"
82
 
83
  #: contact_form.php:130
84
  #: contact_form.php:164
85
  #: contact_form.php:181
86
  #: contact_form.php:271
87
+ msgid "Subject:"
88
+ msgstr "Tema:"
89
 
90
  #: contact_form.php:131
91
  #: contact_form.php:165
92
  #: contact_form.php:182
93
  #: contact_form.php:272
94
+ msgid "Message:"
95
+ msgstr "Melding:"
96
+
97
+ #: contact_form.php:132
98
+ #: contact_form.php:166
99
+ #: contact_form.php:183
100
+ #: contact_form.php:273
101
  msgid "Attachment:"
102
  msgstr "Vedlegg:"
103
 
104
+ #: contact_form.php:191
105
+ #: contact_form.php:200
106
  msgid "Options saved."
107
  msgstr "Innstillinger lagret."
108
 
109
+ #: contact_form.php:194
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Denne brukeren finnes ikke. Innstillingene er ikke lagret."
112
 
113
+ #: contact_form.php:203
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Vennligst benytt en korrekt epostadresse. Innstillingene er ikke lagret."
116
 
117
+ #: contact_form.php:216
118
+ msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
  msgstr "Dersom du ønsket å legge til et kontaktskjema på wedsiden din, kopier og put denne koden i kommentaren din eller på siden din: "
120
 
121
+ #: contact_form.php:217
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Dersom feltene under er tomme, vil meldingen bli sendt til en adresse som var spesifisert ved registrering."
124
 
125
+ #: contact_form.php:221
126
  msgid "Use email of wordpress user:"
127
  msgstr "Benytt eposten til wordpressbruker:"
128
 
129
+ #: contact_form.php:227
130
  msgid "Select user name"
131
  msgstr "Velg brukernavn"
132
 
133
+ #: contact_form.php:232
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Sett et brukernavn for mottaker av meldinger fra kontaktskjemaet"
136
 
137
+ #: contact_form.php:236
138
  msgid "Use this email:"
139
  msgstr "Benytt denne epostadressen:"
140
 
141
+ #: contact_form.php:242
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Sett en epostadresse som skal benyttes for å motta meldinger."
144
 
145
+ #: contact_form.php:246
146
  msgid "Additional options"
147
  msgstr "Flere valg"
148
 
149
+ #: contact_form.php:249
150
  msgid "Display Attachment block"
151
  msgstr "Vis vedlegg"
152
 
153
+ #: contact_form.php:254
154
  msgid "Users can attach files of the following types"
155
  msgstr "Brukere kan legge ved filer av følgende typer"
156
 
157
+ #: contact_form.php:258
158
  msgid "Display Send me a copy block"
159
  msgstr "Vis send meg en kopi"
160
 
161
+ #: contact_form.php:264
162
  msgid "Change label for fields of the contact form"
163
  msgstr "Forandre etikett for felter i kontaktskjemaet"
164
 
165
+ #: contact_form.php:279
166
  msgid "Save Changes"
167
  msgstr "Lagre endringer"
168
 
169
+ #: contact_form.php:310
170
  msgid "Thank you for contacting us."
171
  msgstr "Takk for at du tok kontakt med oss"
172
 
173
+ #: contact_form.php:315
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Beklager, eposten din kunne ikke leveres."
176
 
177
+ #: contact_form.php:372
178
  msgid "You can attach files of the following types"
179
  msgstr "Du kan legge til filer av følgende typer"
180
 
181
+ #: contact_form.php:378
182
  msgid "Send me a copy"
183
  msgstr "Send meg en kopi"
184
 
185
+ #: contact_form.php:388
186
  msgid "Submit"
187
  msgstr "Send"
188
 
189
+ #: contact_form.php:404
190
  msgid "Your name is required."
191
  msgstr "Navnet ditt er påkrevet."
192
 
193
+ #: contact_form.php:405
194
  msgid "A proper e-mail address is required."
195
  msgstr "En korrekt epostadresse er påkrevet."
196
 
197
+ #: contact_form.php:406
198
  msgid "Subject text is required."
199
  msgstr "Tekst i temafeltet er påkrevet."
200
 
201
+ #: contact_form.php:407
202
  msgid "Message text is required."
203
  msgstr "Tekst i meldingsfeltet er påkrevet"
204
 
205
+ #: contact_form.php:408
206
  msgid "Please make corrections below and try again."
207
  msgstr "Vennligst gjør endringer nedenfor og forsøk igjen."
208
 
209
+ #: contact_form.php:437
210
  msgid "Attachment is broken."
211
  msgstr "Vedlegget fungerer ikke."
212
 
213
+ #: contact_form.php:450
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Vennligst fyll ut CAPTCHA"
216
 
217
+ #: contact_form.php:526
218
+ #: contact_form.php:560
219
  msgid "Sent from (ip address)"
220
  msgstr "Sendt fra (IP-adresse)"
221
 
222
+ #: contact_form.php:527
223
+ #: contact_form.php:563
224
  msgid "Date/Time"
225
  msgstr "Dato/tid"
226
 
227
+ #: contact_form.php:528
228
+ #: contact_form.php:566
229
  msgid "Coming from (referer)"
230
  msgstr "Sendt fra (referent)"
231
 
232
+ #: contact_form.php:529
233
+ #: contact_form.php:569
234
  msgid "Using (user agent)"
235
  msgstr "med (user agent)"
236
 
237
+ #: contact_form.php:534
238
  msgid "Contact from"
239
  msgstr "Kontakt fra"
240
 
241
+ #: contact_form.php:539
242
  msgid "Name"
243
  msgstr "Navn"
244
 
245
+ #: contact_form.php:542
246
  msgid "Email"
247
  msgstr "Epost"
248
 
249
+ #: contact_form.php:545
250
  msgid "Subject"
251
  msgstr "Tema"
252
 
253
+ #: contact_form.php:548
254
  msgid "Message"
255
  msgstr "Melding"
256
 
257
+ #: contact_form.php:551
258
  msgid "Site"
259
  msgstr "Site"
260
 
261
+ #: contact_form.php:611
 
 
 
 
262
  msgid "FAQ"
263
  msgstr "Vanlige spørsmål"
264
 
265
+ #: contact_form.php:612
266
  msgid "Support"
267
  msgstr "Support"
268
 
269
+ #~ msgid "If you can see this MIME than your client doesn't accept MIME types!"
270
+ #~ msgstr ""
271
+ #~ "Dersom du kan se denne MIME, så aksepterer ikke klienten din MIME-typer!"
272
+
273
  #~ msgid "E-Mail Addresse:"
274
  #~ msgstr "Indirizzo e-mail:"
275
 
languages/contact_form-nl_NL.mo CHANGED
Binary file
languages/contact_form-nl_NL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-02-24 15:52+0200\n"
6
- "PO-Revision-Date: 2012-02-24 15:52+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,260 +16,259 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:75
20
  msgid "Activated plugins"
21
  msgstr "Activated plugins"
22
 
23
- #: contact_form.php:77
24
- #: contact_form.php:85
25
- #: contact_form.php:93
26
  msgid "Read more"
27
  msgstr "Lees verder"
28
 
29
- #: contact_form.php:77
30
- #: contact_form.php:617
31
- #: contact_form.php:626
32
  msgid "Settings"
33
  msgstr "Instellingen"
34
 
35
- #: contact_form.php:83
36
  msgid "Installed plugins"
37
  msgstr "Geïnstalleerde Plugins"
38
 
39
- #: contact_form.php:91
40
  msgid "Recommended plugins"
41
  msgstr "Aanbevolen Plugins"
42
 
43
- #: contact_form.php:93
44
  msgid "Download"
45
  msgstr "Download"
46
 
47
- #: contact_form.php:93
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Installeer %s"
51
 
52
- #: contact_form.php:93
53
  msgid "Install now from wordpress.org"
54
  msgstr "Installeer nu via wordpress.org"
55
 
56
- #: contact_form.php:95
57
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
58
  msgstr "Mocht je nog vragen hebben stuur dan een email naar plugin@bestwebsoft.com of vul het contactformulier op onze website in."
59
 
60
- #: contact_form.php:107
61
- #: contact_form.php:210
62
  msgid "Contact Form Options"
63
  msgstr "Contact Form Opties"
64
 
65
- #: contact_form.php:107
66
  msgid "Contact Form"
67
  msgstr "Contact Form"
68
 
69
- #: contact_form.php:127
70
- #: contact_form.php:161
71
- #: contact_form.php:178
72
- #: contact_form.php:268
73
- msgid "Name:"
74
- msgstr "Naam:"
75
-
76
  #: contact_form.php:128
77
  #: contact_form.php:162
78
  #: contact_form.php:179
79
  #: contact_form.php:269
80
- msgid "E-Mail Address:"
81
- msgstr "Email adres:"
82
 
83
  #: contact_form.php:129
84
  #: contact_form.php:163
85
  #: contact_form.php:180
86
  #: contact_form.php:270
87
- msgid "Subject:"
88
- msgstr "Onderwerp:"
89
 
90
  #: contact_form.php:130
91
  #: contact_form.php:164
92
  #: contact_form.php:181
93
  #: contact_form.php:271
94
- msgid "Message:"
95
- msgstr "Bericht:"
96
 
97
  #: contact_form.php:131
98
  #: contact_form.php:165
99
  #: contact_form.php:182
100
  #: contact_form.php:272
 
 
 
 
 
 
 
101
  msgid "Attachment:"
102
  msgstr "Bijlage:"
103
 
104
- #: contact_form.php:190
105
- #: contact_form.php:199
106
  msgid "Options saved."
107
  msgstr "Instellingen opgeslagen."
108
 
109
- #: contact_form.php:193
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Deze gebruiker bestaat niet. Instellingen zijn niet opgeslagen."
112
 
113
- #: contact_form.php:202
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Geef een geldig email adres op. Instellingen zijn niet opgeslagen."
116
 
117
- #: contact_form.php:215
118
- msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page:"
119
- msgstr "Als je een Contact Form aan je website wil toevoegen, kopieer dan deze code in je bericht op op je pagina:"
120
-
121
  #: contact_form.php:216
 
 
 
 
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Als het onderstaande veld leeg blijft, dan zal het bericht gestuurd worden aan het adres dat is gespecificeerd tijdens de registratie."
124
 
125
- #: contact_form.php:220
126
  msgid "Use email of wordpress user:"
127
  msgstr "Gebruik het email adres van de Wordpress gebruiker:"
128
 
129
- #: contact_form.php:226
130
  msgid "Select user name"
131
  msgstr "Kies gebruikersnaam"
132
 
133
- #: contact_form.php:231
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Voer de naam in van de gebruiker die berichten van dit contact formulier moet ontvangen."
136
 
137
- #: contact_form.php:235
138
  msgid "Use this email:"
139
  msgstr "Gebruik dit email adres:"
140
 
141
- #: contact_form.php:241
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Geef een email adres op waar de berichten naar verstuurd worden."
144
 
145
- #: contact_form.php:245
146
  msgid "Additional options"
147
  msgstr "Extra opties"
148
 
149
- #: contact_form.php:248
150
  msgid "Display Attachment block"
151
  msgstr "Bijlages toestaan"
152
 
153
- #: contact_form.php:253
154
  msgid "Users can attach files of the following types"
155
  msgstr "Gebruikers kunnen de volgende bestandtypen toevoegen"
156
 
157
- #: contact_form.php:257
158
  msgid "Display Send me a copy block"
159
  msgstr "Geef \"Kopie aan mij sturen\" weer"
160
 
161
- #: contact_form.php:263
162
  msgid "Change label for fields of the contact form"
163
  msgstr "Verander de namen van de labels"
164
 
165
- #: contact_form.php:278
166
  msgid "Save Changes"
167
  msgstr "Bewaar veranderingen"
168
 
169
- #: contact_form.php:309
170
  msgid "Thank you for contacting us."
171
  msgstr "Bedankt voor uw bericht."
172
 
173
- #: contact_form.php:314
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Sorry, uw bericht kon niet worden verstuurd."
176
 
177
- #: contact_form.php:371
178
  msgid "You can attach files of the following types"
179
  msgstr "Bestanden van het volgende formaten kunnen worden bijgesloten"
180
 
181
- #: contact_form.php:377
182
  msgid "Send me a copy"
183
  msgstr "Kopie aan mij sturen"
184
 
185
- #: contact_form.php:387
186
  msgid "Submit"
187
  msgstr "Versturen"
188
 
189
- #: contact_form.php:403
190
  msgid "Your name is required."
191
  msgstr "U bent vergeten uw naam op te geven"
192
 
193
- #: contact_form.php:404
194
  msgid "A proper e-mail address is required."
195
  msgstr "U bent vergeten uw emailadres op te geven"
196
 
197
- #: contact_form.php:405
198
  msgid "Subject text is required."
199
  msgstr "U bent vergeten een onderwerp op te geven"
200
 
201
- #: contact_form.php:406
202
  msgid "Message text is required."
203
  msgstr "U bent vergeten een bericht op te geven"
204
 
205
- #: contact_form.php:407
206
  msgid "Please make corrections below and try again."
207
  msgstr "Vul alle vereiste informatie in en probeer het opnieuw."
208
 
209
- #: contact_form.php:436
210
  msgid "Attachment is broken."
211
  msgstr "Bijlage is beschadigd."
212
 
213
- #: contact_form.php:449
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Vul de CAPTCHA in."
216
 
217
- #: contact_form.php:506
218
- #: contact_form.php:540
219
  msgid "Sent from (ip address)"
220
  msgstr "Verstuurd van (IP-adres)"
221
 
222
- #: contact_form.php:507
223
- #: contact_form.php:543
224
  msgid "Date/Time"
225
  msgstr "Datum/Tijd"
226
 
227
- #: contact_form.php:508
228
- #: contact_form.php:546
229
  msgid "Coming from (referer)"
230
  msgstr "Verstuurd vanaf (referer)"
231
 
232
- #: contact_form.php:509
233
- #: contact_form.php:549
234
  msgid "Using (user agent)"
235
  msgstr "Met (user agent)"
236
 
237
- #: contact_form.php:514
238
  msgid "Contact from"
239
  msgstr "Contact van"
240
 
241
- #: contact_form.php:519
242
  msgid "Name"
243
  msgstr "Naam"
244
 
245
- #: contact_form.php:522
246
  msgid "Email"
247
  msgstr "Email"
248
 
249
- #: contact_form.php:525
250
  msgid "Subject"
251
  msgstr "Onderwerp"
252
 
253
- #: contact_form.php:528
254
  msgid "Message"
255
  msgstr "Bericht"
256
 
257
- #: contact_form.php:531
258
  msgid "Site"
259
  msgstr "Website"
260
 
261
- #: contact_form.php:572
262
- msgid "If you can see this MIME than your client doesn't accept MIME types!"
263
- msgstr "Als u deze MIME ziet, dan ondersteunt uw client geen MIME-Typen!"
264
-
265
- #: contact_form.php:627
266
  msgid "FAQ"
267
  msgstr "Veel gestelde vragen (FAQ)"
268
 
269
- #: contact_form.php:628
270
  msgid "Support"
271
  msgstr "Support"
272
 
 
 
 
273
  #~ msgid "E-Mail Addresse:"
274
  #~ msgstr "Indirizzo e-mail:"
275
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-12 19:26+0200\n"
6
+ "PO-Revision-Date: 2012-03-12 19:26+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Poedit-SourceCharset: utf-8\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
24
+ #: contact_form.php:86
25
+ #: contact_form.php:94
26
  msgid "Read more"
27
  msgstr "Lees verder"
28
 
29
+ #: contact_form.php:78
30
+ #: contact_form.php:601
31
+ #: contact_form.php:610
32
  msgid "Settings"
33
  msgstr "Instellingen"
34
 
35
+ #: contact_form.php:84
36
  msgid "Installed plugins"
37
  msgstr "Geïnstalleerde Plugins"
38
 
39
+ #: contact_form.php:92
40
  msgid "Recommended plugins"
41
  msgstr "Aanbevolen Plugins"
42
 
43
+ #: contact_form.php:94
44
  msgid "Download"
45
  msgstr "Download"
46
 
47
+ #: contact_form.php:94
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Installeer %s"
51
 
52
+ #: contact_form.php:94
53
  msgid "Install now from wordpress.org"
54
  msgstr "Installeer nu via wordpress.org"
55
 
56
+ #: contact_form.php:96
57
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
58
  msgstr "Mocht je nog vragen hebben stuur dan een email naar plugin@bestwebsoft.com of vul het contactformulier op onze website in."
59
 
60
+ #: contact_form.php:108
61
+ #: contact_form.php:211
62
  msgid "Contact Form Options"
63
  msgstr "Contact Form Opties"
64
 
65
+ #: contact_form.php:108
66
  msgid "Contact Form"
67
  msgstr "Contact Form"
68
 
 
 
 
 
 
 
 
69
  #: contact_form.php:128
70
  #: contact_form.php:162
71
  #: contact_form.php:179
72
  #: contact_form.php:269
73
+ msgid "Name:"
74
+ msgstr "Naam:"
75
 
76
  #: contact_form.php:129
77
  #: contact_form.php:163
78
  #: contact_form.php:180
79
  #: contact_form.php:270
80
+ msgid "E-Mail Address:"
81
+ msgstr "Email adres:"
82
 
83
  #: contact_form.php:130
84
  #: contact_form.php:164
85
  #: contact_form.php:181
86
  #: contact_form.php:271
87
+ msgid "Subject:"
88
+ msgstr "Onderwerp:"
89
 
90
  #: contact_form.php:131
91
  #: contact_form.php:165
92
  #: contact_form.php:182
93
  #: contact_form.php:272
94
+ msgid "Message:"
95
+ msgstr "Bericht:"
96
+
97
+ #: contact_form.php:132
98
+ #: contact_form.php:166
99
+ #: contact_form.php:183
100
+ #: contact_form.php:273
101
  msgid "Attachment:"
102
  msgstr "Bijlage:"
103
 
104
+ #: contact_form.php:191
105
+ #: contact_form.php:200
106
  msgid "Options saved."
107
  msgstr "Instellingen opgeslagen."
108
 
109
+ #: contact_form.php:194
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Deze gebruiker bestaat niet. Instellingen zijn niet opgeslagen."
112
 
113
+ #: contact_form.php:203
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Geef een geldig email adres op. Instellingen zijn niet opgeslagen."
116
 
 
 
 
 
117
  #: contact_form.php:216
118
+ msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
+ msgstr "Als je een Contact Form aan je website wil toevoegen, kopieer dan deze code in je bericht op op je pagina of widget:"
120
+
121
+ #: contact_form.php:217
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Als het onderstaande veld leeg blijft, dan zal het bericht gestuurd worden aan het adres dat is gespecificeerd tijdens de registratie."
124
 
125
+ #: contact_form.php:221
126
  msgid "Use email of wordpress user:"
127
  msgstr "Gebruik het email adres van de Wordpress gebruiker:"
128
 
129
+ #: contact_form.php:227
130
  msgid "Select user name"
131
  msgstr "Kies gebruikersnaam"
132
 
133
+ #: contact_form.php:232
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Voer de naam in van de gebruiker die berichten van dit contact formulier moet ontvangen."
136
 
137
+ #: contact_form.php:236
138
  msgid "Use this email:"
139
  msgstr "Gebruik dit email adres:"
140
 
141
+ #: contact_form.php:242
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Geef een email adres op waar de berichten naar verstuurd worden."
144
 
145
+ #: contact_form.php:246
146
  msgid "Additional options"
147
  msgstr "Extra opties"
148
 
149
+ #: contact_form.php:249
150
  msgid "Display Attachment block"
151
  msgstr "Bijlages toestaan"
152
 
153
+ #: contact_form.php:254
154
  msgid "Users can attach files of the following types"
155
  msgstr "Gebruikers kunnen de volgende bestandtypen toevoegen"
156
 
157
+ #: contact_form.php:258
158
  msgid "Display Send me a copy block"
159
  msgstr "Geef \"Kopie aan mij sturen\" weer"
160
 
161
+ #: contact_form.php:264
162
  msgid "Change label for fields of the contact form"
163
  msgstr "Verander de namen van de labels"
164
 
165
+ #: contact_form.php:279
166
  msgid "Save Changes"
167
  msgstr "Bewaar veranderingen"
168
 
169
+ #: contact_form.php:310
170
  msgid "Thank you for contacting us."
171
  msgstr "Bedankt voor uw bericht."
172
 
173
+ #: contact_form.php:315
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Sorry, uw bericht kon niet worden verstuurd."
176
 
177
+ #: contact_form.php:372
178
  msgid "You can attach files of the following types"
179
  msgstr "Bestanden van het volgende formaten kunnen worden bijgesloten"
180
 
181
+ #: contact_form.php:378
182
  msgid "Send me a copy"
183
  msgstr "Kopie aan mij sturen"
184
 
185
+ #: contact_form.php:388
186
  msgid "Submit"
187
  msgstr "Versturen"
188
 
189
+ #: contact_form.php:404
190
  msgid "Your name is required."
191
  msgstr "U bent vergeten uw naam op te geven"
192
 
193
+ #: contact_form.php:405
194
  msgid "A proper e-mail address is required."
195
  msgstr "U bent vergeten uw emailadres op te geven"
196
 
197
+ #: contact_form.php:406
198
  msgid "Subject text is required."
199
  msgstr "U bent vergeten een onderwerp op te geven"
200
 
201
+ #: contact_form.php:407
202
  msgid "Message text is required."
203
  msgstr "U bent vergeten een bericht op te geven"
204
 
205
+ #: contact_form.php:408
206
  msgid "Please make corrections below and try again."
207
  msgstr "Vul alle vereiste informatie in en probeer het opnieuw."
208
 
209
+ #: contact_form.php:437
210
  msgid "Attachment is broken."
211
  msgstr "Bijlage is beschadigd."
212
 
213
+ #: contact_form.php:450
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Vul de CAPTCHA in."
216
 
217
+ #: contact_form.php:526
218
+ #: contact_form.php:560
219
  msgid "Sent from (ip address)"
220
  msgstr "Verstuurd van (IP-adres)"
221
 
222
+ #: contact_form.php:527
223
+ #: contact_form.php:563
224
  msgid "Date/Time"
225
  msgstr "Datum/Tijd"
226
 
227
+ #: contact_form.php:528
228
+ #: contact_form.php:566
229
  msgid "Coming from (referer)"
230
  msgstr "Verstuurd vanaf (referer)"
231
 
232
+ #: contact_form.php:529
233
+ #: contact_form.php:569
234
  msgid "Using (user agent)"
235
  msgstr "Met (user agent)"
236
 
237
+ #: contact_form.php:534
238
  msgid "Contact from"
239
  msgstr "Contact van"
240
 
241
+ #: contact_form.php:539
242
  msgid "Name"
243
  msgstr "Naam"
244
 
245
+ #: contact_form.php:542
246
  msgid "Email"
247
  msgstr "Email"
248
 
249
+ #: contact_form.php:545
250
  msgid "Subject"
251
  msgstr "Onderwerp"
252
 
253
+ #: contact_form.php:548
254
  msgid "Message"
255
  msgstr "Bericht"
256
 
257
+ #: contact_form.php:551
258
  msgid "Site"
259
  msgstr "Website"
260
 
261
+ #: contact_form.php:611
 
 
 
 
262
  msgid "FAQ"
263
  msgstr "Veel gestelde vragen (FAQ)"
264
 
265
+ #: contact_form.php:612
266
  msgid "Support"
267
  msgstr "Support"
268
 
269
+ #~ msgid "If you can see this MIME than your client doesn't accept MIME types!"
270
+ #~ msgstr "Als u deze MIME ziet, dan ondersteunt uw client geen MIME-Typen!"
271
+
272
  #~ msgid "E-Mail Addresse:"
273
  #~ msgstr "Indirizzo e-mail:"
274
 
languages/contact_form-pl_PL.mo CHANGED
Binary file
languages/contact_form-pl_PL.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Contact Form Plugin v3.05\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-02-24 15:52+0200\n"
6
- "PO-Revision-Date: 2012-02-24 15:52+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
@@ -19,313 +19,308 @@ msgstr ""
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  # @ contact_form
22
- #: contact_form.php:75
23
  msgid "Activated plugins"
24
  msgstr "Aktywne wtyczki"
25
 
26
  # @ contact_form
27
- #: contact_form.php:77
28
- #: contact_form.php:85
29
- #: contact_form.php:93
30
  msgid "Read more"
31
  msgstr "Czytaj więcej"
32
 
33
  # @ contact_form
34
- #: contact_form.php:77
35
- #: contact_form.php:617
36
- #: contact_form.php:626
37
  msgid "Settings"
38
  msgstr "Ustawienia"
39
 
40
  # @ contact_form
41
- #: contact_form.php:83
42
  msgid "Installed plugins"
43
  msgstr "Zainstalowane wtyczki"
44
 
45
  # @ contact_form
46
- #: contact_form.php:91
47
  msgid "Recommended plugins"
48
  msgstr "Polecane wtyczki"
49
 
50
  # @ contact_form
51
- #: contact_form.php:93
52
  msgid "Download"
53
  msgstr "Pobierz"
54
 
55
  # @ default
56
- #: contact_form.php:93
57
  #, php-format
58
  msgid "Install %s"
59
  msgstr "Instaluj %s"
60
 
61
  # @ contact_form
62
- #: contact_form.php:93
63
  msgid "Install now from wordpress.org"
64
  msgstr "Zainstaluj z wordpress.org"
65
 
66
  # @ contact_form
67
- #: contact_form.php:95
68
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
69
  msgstr "Jeśli masz pytania, napisz na adres plugin@bestwebsoft.com lub skorzystaj z formularza na naszej stronie"
70
 
71
  # @ contact_form
72
- #: contact_form.php:107
73
- #: contact_form.php:210
74
  msgid "Contact Form Options"
75
  msgstr "Opcje Contact Form"
76
 
77
  # @ contact_form
78
- #: contact_form.php:107
79
  msgid "Contact Form"
80
  msgstr "Contact Form"
81
 
82
- # @ contact_form
83
- #: contact_form.php:127
84
- #: contact_form.php:161
85
- #: contact_form.php:178
86
- #: contact_form.php:268
87
- msgid "Name:"
88
- msgstr "Imię:"
89
-
90
  # @ contact_form
91
  #: contact_form.php:128
92
  #: contact_form.php:162
93
  #: contact_form.php:179
94
  #: contact_form.php:269
95
- msgid "E-Mail Address:"
96
- msgstr "Adres e-mail"
97
 
98
  # @ contact_form
99
  #: contact_form.php:129
100
  #: contact_form.php:163
101
  #: contact_form.php:180
102
  #: contact_form.php:270
103
- msgid "Subject:"
104
- msgstr "Temat:"
105
 
106
  # @ contact_form
107
  #: contact_form.php:130
108
  #: contact_form.php:164
109
  #: contact_form.php:181
110
  #: contact_form.php:271
111
- msgid "Message:"
112
- msgstr "Treść wiadomości:"
113
 
114
  # @ contact_form
115
  #: contact_form.php:131
116
  #: contact_form.php:165
117
  #: contact_form.php:182
118
  #: contact_form.php:272
 
 
 
 
 
 
 
 
119
  msgid "Attachment:"
120
  msgstr "Załączniki:"
121
 
122
  # @ contact_form
123
- #: contact_form.php:190
124
- #: contact_form.php:199
125
  msgid "Options saved."
126
  msgstr "Opcje zapisano"
127
 
128
  # @ contact_form
129
- #: contact_form.php:193
130
  msgid "Such user is not exist. Settings are not saved."
131
  msgstr "Nie ma takiego użytkownika. Ustawienia nie zostały zapisane."
132
 
133
  # @ contact_form
134
- #: contact_form.php:202
135
  msgid "Please input correct email. Settings are not saved."
136
  msgstr "Proszę wpisać prawidłowy e-mail. Ustawienia nie zostały zapisane."
137
 
138
  # @ contact_form
139
- #: contact_form.php:215
140
- msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page:"
141
- msgstr "Jeśli chcesz dodać formularz do swojej strony, po prostu skopiuj ten kod i wklej go do wpisu lub treści strony:"
142
 
143
  # @ contact_form
144
- #: contact_form.php:216
145
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
146
  msgstr "Jeśli poniższe pola zostaną puste, wiadomość zostanie wysłana na adres podany podczas rejestracji."
147
 
148
  # @ contact_form
149
- #: contact_form.php:220
150
  msgid "Use email of wordpress user:"
151
  msgstr "Użyj adresu e-mail użytkownika:"
152
 
153
  # @ contact_form
154
- #: contact_form.php:226
155
  msgid "Select user name"
156
  msgstr "Wybierz użytkownika"
157
 
158
  # @ contact_form
159
- #: contact_form.php:231
160
  msgid "Set a name of user who will get messages from a contact form."
161
  msgstr "Wybierz użytkownika, który będzie dostawał wiadomości z formularza."
162
 
163
  # @ contact_form
164
- #: contact_form.php:235
165
  msgid "Use this email:"
166
  msgstr "Wybierz ten e-mail:"
167
 
168
  # @ contact_form
169
- #: contact_form.php:241
170
  msgid "Set an email address which will be used for messages receiving."
171
  msgstr "Ustaw adres e-mail, który będzie używany do odbierania wiadomości."
172
 
173
  # @ contact_form
174
- #: contact_form.php:245
175
  msgid "Additional options"
176
  msgstr "Dodatkowe opcje"
177
 
178
  # @ contact_form
179
- #: contact_form.php:248
180
  msgid "Display Attachment block"
181
  msgstr "Wyświetlaj blok załączników"
182
 
183
  # @ contact_form
184
- #: contact_form.php:253
185
  msgid "Users can attach files of the following types"
186
  msgstr "Można załączać pliki następujących typów"
187
 
188
  # @ contact_form
189
- #: contact_form.php:257
190
  msgid "Display Send me a copy block"
191
  msgstr "Wyświetlaj blok wysyłania kopii do nadawcy"
192
 
193
  # @ contact_form
194
- #: contact_form.php:263
195
  msgid "Change label for fields of the contact form"
196
  msgstr "Zmień etykiety pól formularza"
197
 
198
  # @ default
199
- #: contact_form.php:278
200
  msgid "Save Changes"
201
  msgstr "Zapisz zmiany"
202
 
203
  # @ contact_form
204
- #: contact_form.php:309
205
  msgid "Thank you for contacting us."
206
  msgstr "Dziękujemy za wiadomość."
207
 
208
  # @ contact_form
209
- #: contact_form.php:314
210
  msgid "Sorry, your e-mail could not be delivered."
211
  msgstr "Niestety, ten e-mail nie mógł zostać dostarczony."
212
 
213
  # @ contact_form
214
- #: contact_form.php:371
215
  msgid "You can attach files of the following types"
216
  msgstr "Możesz załączać pliki następujących typów"
217
 
218
  # @ contact_form
219
- #: contact_form.php:377
220
  msgid "Send me a copy"
221
  msgstr "Wyślij mi kopię"
222
 
223
  # @ contact_form
224
- #: contact_form.php:387
225
  msgid "Submit"
226
  msgstr "Wyślij"
227
 
228
  # @ contact_form
229
- #: contact_form.php:403
230
  msgid "Your name is required."
231
  msgstr "Podanie imienia jest wymagane."
232
 
233
  # @ contact_form
234
- #: contact_form.php:404
235
  msgid "A proper e-mail address is required."
236
  msgstr "Podanie prawidłowego adresu e-mail jest wymagane."
237
 
238
  # @ contact_form
239
- #: contact_form.php:405
240
  msgid "Subject text is required."
241
  msgstr "Podanie tematu jest wymagane."
242
 
243
  # @ contact_form
244
- #: contact_form.php:406
245
  msgid "Message text is required."
246
  msgstr "Wiadomość musi mieć jakąś treść."
247
 
248
  # @ contact_form
249
- #: contact_form.php:407
250
  msgid "Please make corrections below and try again."
251
  msgstr "Proszę nanieść poprawki i spróbować jeszcze raz."
252
 
253
  # @ contact_form
254
- #: contact_form.php:436
255
  msgid "Attachment is broken."
256
  msgstr "Załącznik jest uszkodzony."
257
 
258
  # @ contact_form
259
- #: contact_form.php:449
260
  msgid "Please complete the CAPTCHA."
261
  msgstr "Proszę dokładnie przepisać kod."
262
 
263
  # @ contact_form
264
- #: contact_form.php:506
265
- #: contact_form.php:540
266
  msgid "Sent from (ip address)"
267
  msgstr "Przysłane z (adres IP)"
268
 
269
  # @ contact_form
270
- #: contact_form.php:507
271
- #: contact_form.php:543
272
  msgid "Date/Time"
273
  msgstr "Data/czas"
274
 
275
  # @ contact_form
276
- #: contact_form.php:508
277
- #: contact_form.php:546
278
  msgid "Coming from (referer)"
279
  msgstr "Przekierowane z (referrer)"
280
 
281
  # @ contact_form
282
- #: contact_form.php:509
283
- #: contact_form.php:549
284
  msgid "Using (user agent)"
285
  msgstr "Klient (program użytkownika)"
286
 
287
  # @ contact_form
288
- #: contact_form.php:514
289
  msgid "Contact from"
290
  msgstr "Kontakt z"
291
 
292
  # @ contact_form
293
- #: contact_form.php:519
294
  msgid "Name"
295
  msgstr "Imię"
296
 
297
  # @ contact_form
298
- #: contact_form.php:522
299
  msgid "Email"
300
  msgstr "E-mail"
301
 
302
  # @ contact_form
303
- #: contact_form.php:525
304
  msgid "Subject"
305
  msgstr "Temat"
306
 
307
  # @ contact_form
308
- #: contact_form.php:528
309
  msgid "Message"
310
  msgstr "Wiadomość"
311
 
312
  # @ contact_form
313
- #: contact_form.php:531
314
  msgid "Site"
315
  msgstr "Strona www"
316
 
317
  # @ contact_form
318
- #: contact_form.php:572
319
- msgid "If you can see this MIME than your client doesn't accept MIME types!"
320
- msgstr "Nie możesz zobaczyć tego MIME, skoro klient nie akceptuje typów MIME."
321
-
322
- # @ contact_form
323
- #: contact_form.php:627
324
  msgid "FAQ"
325
  msgstr "FAQ"
326
 
327
  # @ contact_form
328
- #: contact_form.php:628
329
  msgid "Support"
330
  msgstr "Wsparcie"
331
 
2
  msgstr ""
3
  "Project-Id-Version: Contact Form Plugin v3.05\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-12 19:26+0200\n"
6
+ "PO-Revision-Date: 2012-03-12 19:26+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: \n"
9
  "MIME-Version: 1.0\n"
19
  "X-Poedit-SearchPath-0: .\n"
20
 
21
  # @ contact_form
22
+ #: contact_form.php:76
23
  msgid "Activated plugins"
24
  msgstr "Aktywne wtyczki"
25
 
26
  # @ contact_form
27
+ #: contact_form.php:78
28
+ #: contact_form.php:86
29
+ #: contact_form.php:94
30
  msgid "Read more"
31
  msgstr "Czytaj więcej"
32
 
33
  # @ contact_form
34
+ #: contact_form.php:78
35
+ #: contact_form.php:601
36
+ #: contact_form.php:610
37
  msgid "Settings"
38
  msgstr "Ustawienia"
39
 
40
  # @ contact_form
41
+ #: contact_form.php:84
42
  msgid "Installed plugins"
43
  msgstr "Zainstalowane wtyczki"
44
 
45
  # @ contact_form
46
+ #: contact_form.php:92
47
  msgid "Recommended plugins"
48
  msgstr "Polecane wtyczki"
49
 
50
  # @ contact_form
51
+ #: contact_form.php:94
52
  msgid "Download"
53
  msgstr "Pobierz"
54
 
55
  # @ default
56
+ #: contact_form.php:94
57
  #, php-format
58
  msgid "Install %s"
59
  msgstr "Instaluj %s"
60
 
61
  # @ contact_form
62
+ #: contact_form.php:94
63
  msgid "Install now from wordpress.org"
64
  msgstr "Zainstaluj z wordpress.org"
65
 
66
  # @ contact_form
67
+ #: contact_form.php:96
68
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
69
  msgstr "Jeśli masz pytania, napisz na adres plugin@bestwebsoft.com lub skorzystaj z formularza na naszej stronie"
70
 
71
  # @ contact_form
72
+ #: contact_form.php:108
73
+ #: contact_form.php:211
74
  msgid "Contact Form Options"
75
  msgstr "Opcje Contact Form"
76
 
77
  # @ contact_form
78
+ #: contact_form.php:108
79
  msgid "Contact Form"
80
  msgstr "Contact Form"
81
 
 
 
 
 
 
 
 
 
82
  # @ contact_form
83
  #: contact_form.php:128
84
  #: contact_form.php:162
85
  #: contact_form.php:179
86
  #: contact_form.php:269
87
+ msgid "Name:"
88
+ msgstr "Imię:"
89
 
90
  # @ contact_form
91
  #: contact_form.php:129
92
  #: contact_form.php:163
93
  #: contact_form.php:180
94
  #: contact_form.php:270
95
+ msgid "E-Mail Address:"
96
+ msgstr "Adres e-mail"
97
 
98
  # @ contact_form
99
  #: contact_form.php:130
100
  #: contact_form.php:164
101
  #: contact_form.php:181
102
  #: contact_form.php:271
103
+ msgid "Subject:"
104
+ msgstr "Temat:"
105
 
106
  # @ contact_form
107
  #: contact_form.php:131
108
  #: contact_form.php:165
109
  #: contact_form.php:182
110
  #: contact_form.php:272
111
+ msgid "Message:"
112
+ msgstr "Treść wiadomości:"
113
+
114
+ # @ contact_form
115
+ #: contact_form.php:132
116
+ #: contact_form.php:166
117
+ #: contact_form.php:183
118
+ #: contact_form.php:273
119
  msgid "Attachment:"
120
  msgstr "Załączniki:"
121
 
122
  # @ contact_form
123
+ #: contact_form.php:191
124
+ #: contact_form.php:200
125
  msgid "Options saved."
126
  msgstr "Opcje zapisano"
127
 
128
  # @ contact_form
129
+ #: contact_form.php:194
130
  msgid "Such user is not exist. Settings are not saved."
131
  msgstr "Nie ma takiego użytkownika. Ustawienia nie zostały zapisane."
132
 
133
  # @ contact_form
134
+ #: contact_form.php:203
135
  msgid "Please input correct email. Settings are not saved."
136
  msgstr "Proszę wpisać prawidłowy e-mail. Ustawienia nie zostały zapisane."
137
 
138
  # @ contact_form
139
+ #: contact_form.php:216
140
+ 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:"
141
+ 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:"
142
 
143
  # @ contact_form
144
+ #: contact_form.php:217
145
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
146
  msgstr "Jeśli poniższe pola zostaną puste, wiadomość zostanie wysłana na adres podany podczas rejestracji."
147
 
148
  # @ contact_form
149
+ #: contact_form.php:221
150
  msgid "Use email of wordpress user:"
151
  msgstr "Użyj adresu e-mail użytkownika:"
152
 
153
  # @ contact_form
154
+ #: contact_form.php:227
155
  msgid "Select user name"
156
  msgstr "Wybierz użytkownika"
157
 
158
  # @ contact_form
159
+ #: contact_form.php:232
160
  msgid "Set a name of user who will get messages from a contact form."
161
  msgstr "Wybierz użytkownika, który będzie dostawał wiadomości z formularza."
162
 
163
  # @ contact_form
164
+ #: contact_form.php:236
165
  msgid "Use this email:"
166
  msgstr "Wybierz ten e-mail:"
167
 
168
  # @ contact_form
169
+ #: contact_form.php:242
170
  msgid "Set an email address which will be used for messages receiving."
171
  msgstr "Ustaw adres e-mail, który będzie używany do odbierania wiadomości."
172
 
173
  # @ contact_form
174
+ #: contact_form.php:246
175
  msgid "Additional options"
176
  msgstr "Dodatkowe opcje"
177
 
178
  # @ contact_form
179
+ #: contact_form.php:249
180
  msgid "Display Attachment block"
181
  msgstr "Wyświetlaj blok załączników"
182
 
183
  # @ contact_form
184
+ #: contact_form.php:254
185
  msgid "Users can attach files of the following types"
186
  msgstr "Można załączać pliki następujących typów"
187
 
188
  # @ contact_form
189
+ #: contact_form.php:258
190
  msgid "Display Send me a copy block"
191
  msgstr "Wyświetlaj blok wysyłania kopii do nadawcy"
192
 
193
  # @ contact_form
194
+ #: contact_form.php:264
195
  msgid "Change label for fields of the contact form"
196
  msgstr "Zmień etykiety pól formularza"
197
 
198
  # @ default
199
+ #: contact_form.php:279
200
  msgid "Save Changes"
201
  msgstr "Zapisz zmiany"
202
 
203
  # @ contact_form
204
+ #: contact_form.php:310
205
  msgid "Thank you for contacting us."
206
  msgstr "Dziękujemy za wiadomość."
207
 
208
  # @ contact_form
209
+ #: contact_form.php:315
210
  msgid "Sorry, your e-mail could not be delivered."
211
  msgstr "Niestety, ten e-mail nie mógł zostać dostarczony."
212
 
213
  # @ contact_form
214
+ #: contact_form.php:372
215
  msgid "You can attach files of the following types"
216
  msgstr "Możesz załączać pliki następujących typów"
217
 
218
  # @ contact_form
219
+ #: contact_form.php:378
220
  msgid "Send me a copy"
221
  msgstr "Wyślij mi kopię"
222
 
223
  # @ contact_form
224
+ #: contact_form.php:388
225
  msgid "Submit"
226
  msgstr "Wyślij"
227
 
228
  # @ contact_form
229
+ #: contact_form.php:404
230
  msgid "Your name is required."
231
  msgstr "Podanie imienia jest wymagane."
232
 
233
  # @ contact_form
234
+ #: contact_form.php:405
235
  msgid "A proper e-mail address is required."
236
  msgstr "Podanie prawidłowego adresu e-mail jest wymagane."
237
 
238
  # @ contact_form
239
+ #: contact_form.php:406
240
  msgid "Subject text is required."
241
  msgstr "Podanie tematu jest wymagane."
242
 
243
  # @ contact_form
244
+ #: contact_form.php:407
245
  msgid "Message text is required."
246
  msgstr "Wiadomość musi mieć jakąś treść."
247
 
248
  # @ contact_form
249
+ #: contact_form.php:408
250
  msgid "Please make corrections below and try again."
251
  msgstr "Proszę nanieść poprawki i spróbować jeszcze raz."
252
 
253
  # @ contact_form
254
+ #: contact_form.php:437
255
  msgid "Attachment is broken."
256
  msgstr "Załącznik jest uszkodzony."
257
 
258
  # @ contact_form
259
+ #: contact_form.php:450
260
  msgid "Please complete the CAPTCHA."
261
  msgstr "Proszę dokładnie przepisać kod."
262
 
263
  # @ contact_form
264
+ #: contact_form.php:526
265
+ #: contact_form.php:560
266
  msgid "Sent from (ip address)"
267
  msgstr "Przysłane z (adres IP)"
268
 
269
  # @ contact_form
270
+ #: contact_form.php:527
271
+ #: contact_form.php:563
272
  msgid "Date/Time"
273
  msgstr "Data/czas"
274
 
275
  # @ contact_form
276
+ #: contact_form.php:528
277
+ #: contact_form.php:566
278
  msgid "Coming from (referer)"
279
  msgstr "Przekierowane z (referrer)"
280
 
281
  # @ contact_form
282
+ #: contact_form.php:529
283
+ #: contact_form.php:569
284
  msgid "Using (user agent)"
285
  msgstr "Klient (program użytkownika)"
286
 
287
  # @ contact_form
288
+ #: contact_form.php:534
289
  msgid "Contact from"
290
  msgstr "Kontakt z"
291
 
292
  # @ contact_form
293
+ #: contact_form.php:539
294
  msgid "Name"
295
  msgstr "Imię"
296
 
297
  # @ contact_form
298
+ #: contact_form.php:542
299
  msgid "Email"
300
  msgstr "E-mail"
301
 
302
  # @ contact_form
303
+ #: contact_form.php:545
304
  msgid "Subject"
305
  msgstr "Temat"
306
 
307
  # @ contact_form
308
+ #: contact_form.php:548
309
  msgid "Message"
310
  msgstr "Wiadomość"
311
 
312
  # @ contact_form
313
+ #: contact_form.php:551
314
  msgid "Site"
315
  msgstr "Strona www"
316
 
317
  # @ contact_form
318
+ #: contact_form.php:611
 
 
 
 
 
319
  msgid "FAQ"
320
  msgstr "FAQ"
321
 
322
  # @ contact_form
323
+ #: contact_form.php:612
324
  msgid "Support"
325
  msgstr "Wsparcie"
326
 
languages/contact_form-pt_BR.mo CHANGED
Binary file
languages/contact_form-pt_BR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-02-24 15:52+0200\n"
6
- "PO-Revision-Date: 2012-02-24 15:52+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,260 +16,261 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:75
20
  msgid "Activated plugins"
21
  msgstr "Plugins ativados"
22
 
23
- #: contact_form.php:77
24
- #: contact_form.php:85
25
- #: contact_form.php:93
26
  msgid "Read more"
27
  msgstr "Leia Mais"
28
 
29
- #: contact_form.php:77
30
- #: contact_form.php:617
31
- #: contact_form.php:626
32
  msgid "Settings"
33
  msgstr "Configurações"
34
 
35
- #: contact_form.php:83
36
  msgid "Installed plugins"
37
  msgstr "Plugins instalados"
38
 
39
- #: contact_form.php:91
40
  msgid "Recommended plugins"
41
  msgstr "Plugins recomendados"
42
 
43
- #: contact_form.php:93
44
  msgid "Download"
45
  msgstr "Baixar"
46
 
47
- #: contact_form.php:93
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Instalar %s"
51
 
52
- #: contact_form.php:93
53
  msgid "Install now from wordpress.org"
54
  msgstr "Instale agora do site wordpress.org"
55
 
56
- #: contact_form.php:95
57
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
58
  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. "
59
 
60
- #: contact_form.php:107
61
- #: contact_form.php:210
62
  msgid "Contact Form Options"
63
  msgstr "Opções do formulário de contato"
64
 
65
- #: contact_form.php:107
66
  msgid "Contact Form"
67
  msgstr "Formulário de contato"
68
 
69
- #: contact_form.php:127
70
- #: contact_form.php:161
71
- #: contact_form.php:178
72
- #: contact_form.php:268
73
- msgid "Name:"
74
- msgstr "Nome:"
75
-
76
  #: contact_form.php:128
77
  #: contact_form.php:162
78
  #: contact_form.php:179
79
  #: contact_form.php:269
80
- msgid "E-Mail Address:"
81
- msgstr "Endereço de E-mail:"
82
 
83
  #: contact_form.php:129
84
  #: contact_form.php:163
85
  #: contact_form.php:180
86
  #: contact_form.php:270
87
- msgid "Subject:"
88
- msgstr "Assunto:"
89
 
90
  #: contact_form.php:130
91
  #: contact_form.php:164
92
  #: contact_form.php:181
93
  #: contact_form.php:271
94
- msgid "Message:"
95
- msgstr "Mensagem:"
96
 
97
  #: contact_form.php:131
98
  #: contact_form.php:165
99
  #: contact_form.php:182
100
  #: contact_form.php:272
 
 
 
 
 
 
 
101
  msgid "Attachment:"
102
  msgstr "Anexo:"
103
 
104
- #: contact_form.php:190
105
- #: contact_form.php:199
106
  msgid "Options saved."
107
  msgstr "Opções salvas."
108
 
109
- #: contact_form.php:193
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Tal usuári não existe. Configurações não foram salvas."
112
 
113
- #: contact_form.php:202
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Por favor digite o email corretamente. Configurações não foram salvas."
116
 
117
- #: contact_form.php:215
118
- msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page:"
119
- 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:"
120
-
121
  #: contact_form.php:216
 
 
 
 
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "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."
124
 
125
- #: contact_form.php:220
126
  msgid "Use email of wordpress user:"
127
  msgstr "Use o email de um usuário do wordpress:"
128
 
129
- #: contact_form.php:226
130
  msgid "Select user name"
131
  msgstr "Selecione o nome do usuário"
132
 
133
- #: contact_form.php:231
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Determine um nome de usuário que receberá as mensagens enviadas pelo Formulário de Contato."
136
 
137
- #: contact_form.php:235
138
  msgid "Use this email:"
139
  msgstr "Use este email:"
140
 
141
- #: contact_form.php:241
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Configure um endereço de email que será usado para o recebimento de mensagens."
144
 
145
- #: contact_form.php:245
146
  msgid "Additional options"
147
  msgstr "Opções adicionais"
148
 
149
- #: contact_form.php:248
150
  msgid "Display Attachment block"
151
  msgstr "Mostrar opção para anexar arquivos"
152
 
153
- #: contact_form.php:253
154
  msgid "Users can attach files of the following types"
155
  msgstr "Usuários pode anexar arquivos do seguinte tipo:"
156
 
157
- #: contact_form.php:257
158
  msgid "Display Send me a copy block"
159
  msgstr "Mostrar a opção Envie-me um cópia"
160
 
161
- #: contact_form.php:263
162
  msgid "Change label for fields of the contact form"
163
  msgstr "Mudar rótulo para os campos no formulário de contato"
164
 
165
- #: contact_form.php:278
166
  msgid "Save Changes"
167
  msgstr "Salvar mudanças"
168
 
169
- #: contact_form.php:309
170
  msgid "Thank you for contacting us."
171
  msgstr "Obrigado por nos contactar"
172
 
173
- #: contact_form.php:314
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Desculpe, seu e-mail não pode ser entregue."
176
 
177
- #: contact_form.php:371
178
  msgid "You can attach files of the following types"
179
  msgstr "Você pode anexar arquivos do seguinte tipo"
180
 
181
- #: contact_form.php:377
182
  msgid "Send me a copy"
183
  msgstr "Envie-me uma cópia"
184
 
185
- #: contact_form.php:387
186
  msgid "Submit"
187
  msgstr "Enviar"
188
 
189
- #: contact_form.php:403
190
  msgid "Your name is required."
191
  msgstr "Seu nome é obrigatório"
192
 
193
- #: contact_form.php:404
194
  msgid "A proper e-mail address is required."
195
  msgstr "Um e-mail correto é obrigatório."
196
 
197
- #: contact_form.php:405
198
  msgid "Subject text is required."
199
  msgstr "O Assunto da mensagem é obrigatório."
200
 
201
- #: contact_form.php:406
202
  msgid "Message text is required."
203
  msgstr "O texto da Mensagem é obrigatório."
204
 
205
- #: contact_form.php:407
206
  msgid "Please make corrections below and try again."
207
  msgstr "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
208
 
209
- #: contact_form.php:436
210
  msgid "Attachment is broken."
211
  msgstr "Impossível anexar arquivo. "
212
 
213
- #: contact_form.php:449
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Por favor, complete a resposta da charada ."
216
 
217
- #: contact_form.php:506
218
- #: contact_form.php:540
219
  msgid "Sent from (ip address)"
220
  msgstr "Enviado de (Endereço IP)"
221
 
222
- #: contact_form.php:507
223
- #: contact_form.php:543
224
  msgid "Date/Time"
225
  msgstr "DAta / Hora"
226
 
227
- #: contact_form.php:508
228
- #: contact_form.php:546
229
  msgid "Coming from (referer)"
230
  msgstr "Vindo de (origem)"
231
 
232
- #: contact_form.php:509
233
- #: contact_form.php:549
234
  msgid "Using (user agent)"
235
  msgstr "Usando (cliente de email)"
236
 
237
- #: contact_form.php:514
238
  msgid "Contact from"
239
  msgstr "Formulário de Contato"
240
 
241
- #: contact_form.php:519
242
  msgid "Name"
243
  msgstr "Nome"
244
 
245
- #: contact_form.php:522
246
  msgid "Email"
247
  msgstr "E-Mail"
248
 
249
- #: contact_form.php:525
250
  msgid "Subject"
251
  msgstr "Assunto"
252
 
253
- #: contact_form.php:528
254
  msgid "Message"
255
  msgstr "Mensagem"
256
 
257
- #: contact_form.php:531
258
  msgid "Site"
259
  msgstr "Site"
260
 
261
- #: contact_form.php:572
262
- msgid "If you can see this MIME than your client doesn't accept MIME types!"
263
- msgstr "Se você consegue ver esta MENSAGEM então seu cliente não aceita tipos MIME! Favor usar um cliente mais atualizado."
264
-
265
- #: contact_form.php:627
266
  msgid "FAQ"
267
  msgstr "Perguntas Frequentes"
268
 
269
- #: contact_form.php:628
270
  msgid "Support"
271
  msgstr "Suporte"
272
 
 
 
 
 
 
273
  #~ msgid "E-Mail Addresse:"
274
  #~ msgstr "Indirizzo e-mail:"
275
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-12 19:26+0200\n"
6
+ "PO-Revision-Date: 2012-03-12 19:26+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: Thomas Hartung <thartung@adipositas-mm.de>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Poedit-SourceCharset: utf-8\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
24
+ #: contact_form.php:86
25
+ #: contact_form.php:94
26
  msgid "Read more"
27
  msgstr "Leia Mais"
28
 
29
+ #: contact_form.php:78
30
+ #: contact_form.php:601
31
+ #: contact_form.php:610
32
  msgid "Settings"
33
  msgstr "Configurações"
34
 
35
+ #: contact_form.php:84
36
  msgid "Installed plugins"
37
  msgstr "Plugins instalados"
38
 
39
+ #: contact_form.php:92
40
  msgid "Recommended plugins"
41
  msgstr "Plugins recomendados"
42
 
43
+ #: contact_form.php:94
44
  msgid "Download"
45
  msgstr "Baixar"
46
 
47
+ #: contact_form.php:94
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Instalar %s"
51
 
52
+ #: contact_form.php:94
53
  msgid "Install now from wordpress.org"
54
  msgstr "Instale agora do site wordpress.org"
55
 
56
+ #: contact_form.php:96
57
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
58
  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. "
59
 
60
+ #: contact_form.php:108
61
+ #: contact_form.php:211
62
  msgid "Contact Form Options"
63
  msgstr "Opções do formulário de contato"
64
 
65
+ #: contact_form.php:108
66
  msgid "Contact Form"
67
  msgstr "Formulário de contato"
68
 
 
 
 
 
 
 
 
69
  #: contact_form.php:128
70
  #: contact_form.php:162
71
  #: contact_form.php:179
72
  #: contact_form.php:269
73
+ msgid "Name:"
74
+ msgstr "Nome:"
75
 
76
  #: contact_form.php:129
77
  #: contact_form.php:163
78
  #: contact_form.php:180
79
  #: contact_form.php:270
80
+ msgid "E-Mail Address:"
81
+ msgstr "Endereço de E-mail:"
82
 
83
  #: contact_form.php:130
84
  #: contact_form.php:164
85
  #: contact_form.php:181
86
  #: contact_form.php:271
87
+ msgid "Subject:"
88
+ msgstr "Assunto:"
89
 
90
  #: contact_form.php:131
91
  #: contact_form.php:165
92
  #: contact_form.php:182
93
  #: contact_form.php:272
94
+ msgid "Message:"
95
+ msgstr "Mensagem:"
96
+
97
+ #: contact_form.php:132
98
+ #: contact_form.php:166
99
+ #: contact_form.php:183
100
+ #: contact_form.php:273
101
  msgid "Attachment:"
102
  msgstr "Anexo:"
103
 
104
+ #: contact_form.php:191
105
+ #: contact_form.php:200
106
  msgid "Options saved."
107
  msgstr "Opções salvas."
108
 
109
+ #: contact_form.php:194
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Tal usuári não existe. Configurações não foram salvas."
112
 
113
+ #: contact_form.php:203
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Por favor digite o email corretamente. Configurações não foram salvas."
116
 
 
 
 
 
117
  #: contact_form.php:216
118
+ msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
+ msgstr "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:"
120
+
121
+ #: contact_form.php:217
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "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."
124
 
125
+ #: contact_form.php:221
126
  msgid "Use email of wordpress user:"
127
  msgstr "Use o email de um usuário do wordpress:"
128
 
129
+ #: contact_form.php:227
130
  msgid "Select user name"
131
  msgstr "Selecione o nome do usuário"
132
 
133
+ #: contact_form.php:232
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Determine um nome de usuário que receberá as mensagens enviadas pelo Formulário de Contato."
136
 
137
+ #: contact_form.php:236
138
  msgid "Use this email:"
139
  msgstr "Use este email:"
140
 
141
+ #: contact_form.php:242
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Configure um endereço de email que será usado para o recebimento de mensagens."
144
 
145
+ #: contact_form.php:246
146
  msgid "Additional options"
147
  msgstr "Opções adicionais"
148
 
149
+ #: contact_form.php:249
150
  msgid "Display Attachment block"
151
  msgstr "Mostrar opção para anexar arquivos"
152
 
153
+ #: contact_form.php:254
154
  msgid "Users can attach files of the following types"
155
  msgstr "Usuários pode anexar arquivos do seguinte tipo:"
156
 
157
+ #: contact_form.php:258
158
  msgid "Display Send me a copy block"
159
  msgstr "Mostrar a opção Envie-me um cópia"
160
 
161
+ #: contact_form.php:264
162
  msgid "Change label for fields of the contact form"
163
  msgstr "Mudar rótulo para os campos no formulário de contato"
164
 
165
+ #: contact_form.php:279
166
  msgid "Save Changes"
167
  msgstr "Salvar mudanças"
168
 
169
+ #: contact_form.php:310
170
  msgid "Thank you for contacting us."
171
  msgstr "Obrigado por nos contactar"
172
 
173
+ #: contact_form.php:315
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Desculpe, seu e-mail não pode ser entregue."
176
 
177
+ #: contact_form.php:372
178
  msgid "You can attach files of the following types"
179
  msgstr "Você pode anexar arquivos do seguinte tipo"
180
 
181
+ #: contact_form.php:378
182
  msgid "Send me a copy"
183
  msgstr "Envie-me uma cópia"
184
 
185
+ #: contact_form.php:388
186
  msgid "Submit"
187
  msgstr "Enviar"
188
 
189
+ #: contact_form.php:404
190
  msgid "Your name is required."
191
  msgstr "Seu nome é obrigatório"
192
 
193
+ #: contact_form.php:405
194
  msgid "A proper e-mail address is required."
195
  msgstr "Um e-mail correto é obrigatório."
196
 
197
+ #: contact_form.php:406
198
  msgid "Subject text is required."
199
  msgstr "O Assunto da mensagem é obrigatório."
200
 
201
+ #: contact_form.php:407
202
  msgid "Message text is required."
203
  msgstr "O texto da Mensagem é obrigatório."
204
 
205
+ #: contact_form.php:408
206
  msgid "Please make corrections below and try again."
207
  msgstr "Por favor, faça as correções abaixo e tente enviar a mensagem novamente."
208
 
209
+ #: contact_form.php:437
210
  msgid "Attachment is broken."
211
  msgstr "Impossível anexar arquivo. "
212
 
213
+ #: contact_form.php:450
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Por favor, complete a resposta da charada ."
216
 
217
+ #: contact_form.php:526
218
+ #: contact_form.php:560
219
  msgid "Sent from (ip address)"
220
  msgstr "Enviado de (Endereço IP)"
221
 
222
+ #: contact_form.php:527
223
+ #: contact_form.php:563
224
  msgid "Date/Time"
225
  msgstr "DAta / Hora"
226
 
227
+ #: contact_form.php:528
228
+ #: contact_form.php:566
229
  msgid "Coming from (referer)"
230
  msgstr "Vindo de (origem)"
231
 
232
+ #: contact_form.php:529
233
+ #: contact_form.php:569
234
  msgid "Using (user agent)"
235
  msgstr "Usando (cliente de email)"
236
 
237
+ #: contact_form.php:534
238
  msgid "Contact from"
239
  msgstr "Formulário de Contato"
240
 
241
+ #: contact_form.php:539
242
  msgid "Name"
243
  msgstr "Nome"
244
 
245
+ #: contact_form.php:542
246
  msgid "Email"
247
  msgstr "E-Mail"
248
 
249
+ #: contact_form.php:545
250
  msgid "Subject"
251
  msgstr "Assunto"
252
 
253
+ #: contact_form.php:548
254
  msgid "Message"
255
  msgstr "Mensagem"
256
 
257
+ #: contact_form.php:551
258
  msgid "Site"
259
  msgstr "Site"
260
 
261
+ #: contact_form.php:611
 
 
 
 
262
  msgid "FAQ"
263
  msgstr "Perguntas Frequentes"
264
 
265
+ #: contact_form.php:612
266
  msgid "Support"
267
  msgstr "Suporte"
268
 
269
+ #~ msgid "If you can see this MIME than your client doesn't accept MIME types!"
270
+ #~ msgstr ""
271
+ #~ "Se você consegue ver esta MENSAGEM então seu cliente não aceita tipos "
272
+ #~ "MIME! Favor usar um cliente mais atualizado."
273
+
274
  #~ msgid "E-Mail Addresse:"
275
  #~ msgstr "Indirizzo e-mail:"
276
 
languages/contact_form-ru_RU.mo CHANGED
Binary file
languages/contact_form-ru_RU.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-02-24 15:52+0200\n"
6
- "PO-Revision-Date: 2012-02-24 15:52+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,260 +16,261 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:75
20
  msgid "Activated plugins"
21
  msgstr "Активированные плагины"
22
 
23
- #: contact_form.php:77
24
- #: contact_form.php:85
25
- #: contact_form.php:93
26
  msgid "Read more"
27
  msgstr "Читать далее"
28
 
29
- #: contact_form.php:77
30
- #: contact_form.php:617
31
- #: contact_form.php:626
32
  msgid "Settings"
33
  msgstr "Настройки"
34
 
35
- #: contact_form.php:83
36
  msgid "Installed plugins"
37
  msgstr "Установленные плагины"
38
 
39
- #: contact_form.php:91
40
  msgid "Recommended plugins"
41
  msgstr "Рекомендованные к установке плагины"
42
 
43
- #: contact_form.php:93
44
  msgid "Download"
45
  msgstr "Скачать"
46
 
47
- #: contact_form.php:93
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Установлено %s"
51
 
52
- #: contact_form.php:93
53
  msgid "Install now from wordpress.org"
54
  msgstr "Установить с wordpress.org"
55
 
56
- #: contact_form.php:95
57
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
58
  msgstr "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
59
 
60
- #: contact_form.php:107
61
- #: contact_form.php:210
62
  msgid "Contact Form Options"
63
  msgstr "Настройки Контактной Формы"
64
 
65
- #: contact_form.php:107
66
  msgid "Contact Form"
67
  msgstr "Контактная Форма"
68
 
69
- #: contact_form.php:127
70
- #: contact_form.php:161
71
- #: contact_form.php:178
72
- #: contact_form.php:268
73
- msgid "Name:"
74
- msgstr "Имя:"
75
-
76
  #: contact_form.php:128
77
  #: contact_form.php:162
78
  #: contact_form.php:179
79
  #: contact_form.php:269
80
- msgid "E-Mail Address:"
81
- msgstr "E-mail адрес:"
82
 
83
  #: contact_form.php:129
84
  #: contact_form.php:163
85
  #: contact_form.php:180
86
  #: contact_form.php:270
87
- msgid "Subject:"
88
- msgstr "Тема:"
89
 
90
  #: contact_form.php:130
91
  #: contact_form.php:164
92
  #: contact_form.php:181
93
  #: contact_form.php:271
94
- msgid "Message:"
95
- msgstr "Сообщение:"
96
 
97
  #: contact_form.php:131
98
  #: contact_form.php:165
99
  #: contact_form.php:182
100
  #: contact_form.php:272
 
 
 
 
 
 
 
101
  msgid "Attachment:"
102
  msgstr "Прикрепить файл:"
103
 
104
- #: contact_form.php:190
105
- #: contact_form.php:199
106
  msgid "Options saved."
107
  msgstr "Опции сохранены"
108
 
109
- #: contact_form.php:193
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Данный пользователь не найден. Настройки не сохранены"
112
 
113
- #: contact_form.php:202
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Пожалуйста, введите корректный email. Настройки не сохранены."
116
 
117
- #: contact_form.php:215
118
- msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page:"
119
- msgstr "Если вы хотите добавить Контактную Форму на свой сайт, вам надо только скопировать и вставить шорткод в контент страницы или поста:"
120
-
121
  #: contact_form.php:216
 
 
 
 
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Если информация в полях ниже отсутствует, соощения будут оправлены на email адрес, который был указан при регистрации сайта."
124
 
125
- #: contact_form.php:220
126
  msgid "Use email of wordpress user:"
127
  msgstr "Email пользователя сайта:"
128
 
129
- #: contact_form.php:226
130
  msgid "Select user name"
131
  msgstr "Выберите имя пользователя"
132
 
133
- #: contact_form.php:231
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Укажите логин пользователя, который будет получать сообщения контактной формы."
136
 
137
- #: contact_form.php:235
138
  msgid "Use this email:"
139
  msgstr "Использовать этот email:"
140
 
141
- #: contact_form.php:241
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Укажите email адрес, на который будут отправляться сообщения."
144
 
145
- #: contact_form.php:245
146
  msgid "Additional options"
147
  msgstr "Дополнительные настройки"
148
 
149
- #: contact_form.php:248
150
  msgid "Display Attachment block"
151
  msgstr "Отобразить блок Прикрепить файл"
152
 
153
- #: contact_form.php:253
154
  msgid "Users can attach files of the following types"
155
  msgstr "Пользователи могут прикрепить файлы таких типов"
156
 
157
- #: contact_form.php:257
158
  msgid "Display Send me a copy block"
159
  msgstr "Отобразить блок Отправить мне копию"
160
 
161
- #: contact_form.php:263
162
  msgid "Change label for fields of the contact form"
163
  msgstr "Изменить названия полей контактной формы"
164
 
165
- #: contact_form.php:278
166
  msgid "Save Changes"
167
  msgstr "Save Changes"
168
 
169
- #: contact_form.php:309
170
  msgid "Thank you for contacting us."
171
  msgstr "Спасибо за контакт с нами."
172
 
173
- #: contact_form.php:314
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Извините, ваш email не может быть отправлен."
176
 
177
- #: contact_form.php:371
178
  msgid "You can attach files of the following types"
179
  msgstr "Пользователи могут прикрепить файлы таких типов"
180
 
181
- #: contact_form.php:377
182
  msgid "Send me a copy"
183
  msgstr "Отправить мне копию"
184
 
185
- #: contact_form.php:387
186
  msgid "Submit"
187
  msgstr "Отправить"
188
 
189
- #: contact_form.php:403
190
  msgid "Your name is required."
191
  msgstr "Ваше имя - это обязательное поле."
192
 
193
- #: contact_form.php:404
194
  msgid "A proper e-mail address is required."
195
  msgstr "Поле e-mail адреса - обязательное для заполнения."
196
 
197
- #: contact_form.php:405
198
  msgid "Subject text is required."
199
  msgstr "Поле Тема - обязательное поле."
200
 
201
- #: contact_form.php:406
202
  msgid "Message text is required."
203
  msgstr "Поле Сообщение - обязательное поле."
204
 
205
- #: contact_form.php:407
206
  msgid "Please make corrections below and try again."
207
  msgstr "Пожалуйста, сделайте исправления в отмеченных полях ниже и повторите попытку."
208
 
209
- #: contact_form.php:436
210
  msgid "Attachment is broken."
211
  msgstr "Прикрепленный тип файла не поддерживается"
212
 
213
- #: contact_form.php:449
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Пожалуйста, заполните КАПЧУ."
216
 
217
- #: contact_form.php:506
218
- #: contact_form.php:540
219
  msgid "Sent from (ip address)"
220
  msgstr "Отправлено от (ip адрес)"
221
 
222
- #: contact_form.php:507
223
- #: contact_form.php:543
224
  msgid "Date/Time"
225
  msgstr "Дата/Время"
226
 
227
- #: contact_form.php:508
228
- #: contact_form.php:546
229
  msgid "Coming from (referer)"
230
  msgstr "Пришло из (реферер)"
231
 
232
- #: contact_form.php:509
233
- #: contact_form.php:549
234
  msgid "Using (user agent)"
235
  msgstr "Используя (user agent)"
236
 
237
- #: contact_form.php:514
238
  msgid "Contact from"
239
  msgstr "Контактная Форма"
240
 
241
- #: contact_form.php:519
242
  msgid "Name"
243
  msgstr "Имя"
244
 
245
- #: contact_form.php:522
246
  msgid "Email"
247
  msgstr "Email"
248
 
249
- #: contact_form.php:525
250
  msgid "Subject"
251
  msgstr "Тема"
252
 
253
- #: contact_form.php:528
254
  msgid "Message"
255
  msgstr "Сообщение"
256
 
257
- #: contact_form.php:531
258
  msgid "Site"
259
  msgstr "Сайт"
260
 
261
- #: contact_form.php:572
262
- msgid "If you can see this MIME than your client doesn't accept MIME types!"
263
- msgstr "Если вы можете видеть этот MIME значит ваш почтовый клиент не поддерживает MIME тип!"
264
-
265
- #: contact_form.php:627
266
  msgid "FAQ"
267
  msgstr "FAQ"
268
 
269
- #: contact_form.php:628
270
  msgid "Support"
271
  msgstr "Поддержка"
272
 
 
 
 
 
 
273
  #~ msgid "E-Mail Addresse:"
274
  #~ msgstr "E-mail адрес:"
275
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-12 19:26+0200\n"
6
+ "PO-Revision-Date: 2012-03-12 19:26+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Poedit-SourceCharset: utf-8\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
24
+ #: contact_form.php:86
25
+ #: contact_form.php:94
26
  msgid "Read more"
27
  msgstr "Читать далее"
28
 
29
+ #: contact_form.php:78
30
+ #: contact_form.php:601
31
+ #: contact_form.php:610
32
  msgid "Settings"
33
  msgstr "Настройки"
34
 
35
+ #: contact_form.php:84
36
  msgid "Installed plugins"
37
  msgstr "Установленные плагины"
38
 
39
+ #: contact_form.php:92
40
  msgid "Recommended plugins"
41
  msgstr "Рекомендованные к установке плагины"
42
 
43
+ #: contact_form.php:94
44
  msgid "Download"
45
  msgstr "Скачать"
46
 
47
+ #: contact_form.php:94
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Установлено %s"
51
 
52
+ #: contact_form.php:94
53
  msgid "Install now from wordpress.org"
54
  msgstr "Установить с wordpress.org"
55
 
56
+ #: contact_form.php:96
57
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
58
  msgstr "Если у вас есть какие-то впросы, обращайтесь на plugin@bestwebsoft.com или заполните контактную форму на нашем сайте"
59
 
60
+ #: contact_form.php:108
61
+ #: contact_form.php:211
62
  msgid "Contact Form Options"
63
  msgstr "Настройки Контактной Формы"
64
 
65
+ #: contact_form.php:108
66
  msgid "Contact Form"
67
  msgstr "Контактная Форма"
68
 
 
 
 
 
 
 
 
69
  #: contact_form.php:128
70
  #: contact_form.php:162
71
  #: contact_form.php:179
72
  #: contact_form.php:269
73
+ msgid "Name:"
74
+ msgstr "Имя:"
75
 
76
  #: contact_form.php:129
77
  #: contact_form.php:163
78
  #: contact_form.php:180
79
  #: contact_form.php:270
80
+ msgid "E-Mail Address:"
81
+ msgstr "E-mail адрес:"
82
 
83
  #: contact_form.php:130
84
  #: contact_form.php:164
85
  #: contact_form.php:181
86
  #: contact_form.php:271
87
+ msgid "Subject:"
88
+ msgstr "Тема:"
89
 
90
  #: contact_form.php:131
91
  #: contact_form.php:165
92
  #: contact_form.php:182
93
  #: contact_form.php:272
94
+ msgid "Message:"
95
+ msgstr "Сообщение:"
96
+
97
+ #: contact_form.php:132
98
+ #: contact_form.php:166
99
+ #: contact_form.php:183
100
+ #: contact_form.php:273
101
  msgid "Attachment:"
102
  msgstr "Прикрепить файл:"
103
 
104
+ #: contact_form.php:191
105
+ #: contact_form.php:200
106
  msgid "Options saved."
107
  msgstr "Опции сохранены"
108
 
109
+ #: contact_form.php:194
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Данный пользователь не найден. Настройки не сохранены"
112
 
113
+ #: contact_form.php:203
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Пожалуйста, введите корректный email. Настройки не сохранены."
116
 
 
 
 
 
117
  #: contact_form.php:216
118
+ msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
+ msgstr "Если вы хотите добавить Контактную Форму на свой сайт, вам надо только скопировать и вставить шорткод в контент страницы или поста или виджета:"
120
+
121
+ #: contact_form.php:217
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Если информация в полях ниже отсутствует, соощения будут оправлены на email адрес, который был указан при регистрации сайта."
124
 
125
+ #: contact_form.php:221
126
  msgid "Use email of wordpress user:"
127
  msgstr "Email пользователя сайта:"
128
 
129
+ #: contact_form.php:227
130
  msgid "Select user name"
131
  msgstr "Выберите имя пользователя"
132
 
133
+ #: contact_form.php:232
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Укажите логин пользователя, который будет получать сообщения контактной формы."
136
 
137
+ #: contact_form.php:236
138
  msgid "Use this email:"
139
  msgstr "Использовать этот email:"
140
 
141
+ #: contact_form.php:242
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Укажите email адрес, на который будут отправляться сообщения."
144
 
145
+ #: contact_form.php:246
146
  msgid "Additional options"
147
  msgstr "Дополнительные настройки"
148
 
149
+ #: contact_form.php:249
150
  msgid "Display Attachment block"
151
  msgstr "Отобразить блок Прикрепить файл"
152
 
153
+ #: contact_form.php:254
154
  msgid "Users can attach files of the following types"
155
  msgstr "Пользователи могут прикрепить файлы таких типов"
156
 
157
+ #: contact_form.php:258
158
  msgid "Display Send me a copy block"
159
  msgstr "Отобразить блок Отправить мне копию"
160
 
161
+ #: contact_form.php:264
162
  msgid "Change label for fields of the contact form"
163
  msgstr "Изменить названия полей контактной формы"
164
 
165
+ #: contact_form.php:279
166
  msgid "Save Changes"
167
  msgstr "Save Changes"
168
 
169
+ #: contact_form.php:310
170
  msgid "Thank you for contacting us."
171
  msgstr "Спасибо за контакт с нами."
172
 
173
+ #: contact_form.php:315
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Извините, ваш email не может быть отправлен."
176
 
177
+ #: contact_form.php:372
178
  msgid "You can attach files of the following types"
179
  msgstr "Пользователи могут прикрепить файлы таких типов"
180
 
181
+ #: contact_form.php:378
182
  msgid "Send me a copy"
183
  msgstr "Отправить мне копию"
184
 
185
+ #: contact_form.php:388
186
  msgid "Submit"
187
  msgstr "Отправить"
188
 
189
+ #: contact_form.php:404
190
  msgid "Your name is required."
191
  msgstr "Ваше имя - это обязательное поле."
192
 
193
+ #: contact_form.php:405
194
  msgid "A proper e-mail address is required."
195
  msgstr "Поле e-mail адреса - обязательное для заполнения."
196
 
197
+ #: contact_form.php:406
198
  msgid "Subject text is required."
199
  msgstr "Поле Тема - обязательное поле."
200
 
201
+ #: contact_form.php:407
202
  msgid "Message text is required."
203
  msgstr "Поле Сообщение - обязательное поле."
204
 
205
+ #: contact_form.php:408
206
  msgid "Please make corrections below and try again."
207
  msgstr "Пожалуйста, сделайте исправления в отмеченных полях ниже и повторите попытку."
208
 
209
+ #: contact_form.php:437
210
  msgid "Attachment is broken."
211
  msgstr "Прикрепленный тип файла не поддерживается"
212
 
213
+ #: contact_form.php:450
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Пожалуйста, заполните КАПЧУ."
216
 
217
+ #: contact_form.php:526
218
+ #: contact_form.php:560
219
  msgid "Sent from (ip address)"
220
  msgstr "Отправлено от (ip адрес)"
221
 
222
+ #: contact_form.php:527
223
+ #: contact_form.php:563
224
  msgid "Date/Time"
225
  msgstr "Дата/Время"
226
 
227
+ #: contact_form.php:528
228
+ #: contact_form.php:566
229
  msgid "Coming from (referer)"
230
  msgstr "Пришло из (реферер)"
231
 
232
+ #: contact_form.php:529
233
+ #: contact_form.php:569
234
  msgid "Using (user agent)"
235
  msgstr "Используя (user agent)"
236
 
237
+ #: contact_form.php:534
238
  msgid "Contact from"
239
  msgstr "Контактная Форма"
240
 
241
+ #: contact_form.php:539
242
  msgid "Name"
243
  msgstr "Имя"
244
 
245
+ #: contact_form.php:542
246
  msgid "Email"
247
  msgstr "Email"
248
 
249
+ #: contact_form.php:545
250
  msgid "Subject"
251
  msgstr "Тема"
252
 
253
+ #: contact_form.php:548
254
  msgid "Message"
255
  msgstr "Сообщение"
256
 
257
+ #: contact_form.php:551
258
  msgid "Site"
259
  msgstr "Сайт"
260
 
261
+ #: contact_form.php:611
 
 
 
 
262
  msgid "FAQ"
263
  msgstr "FAQ"
264
 
265
+ #: contact_form.php:612
266
  msgid "Support"
267
  msgstr "Поддержка"
268
 
269
+ #~ msgid "If you can see this MIME than your client doesn't accept MIME types!"
270
+ #~ msgstr ""
271
+ #~ "Если вы можете видеть этот MIME значит ваш почтовый клиент не "
272
+ #~ "поддерживает MIME тип!"
273
+
274
  #~ msgid "E-Mail Addresse:"
275
  #~ msgstr "E-mail адрес:"
276
 
languages/contact_form-sv_SE.mo CHANGED
Binary file
languages/contact_form-sv_SE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-02-24 15:52+0200\n"
6
- "PO-Revision-Date: 2012-02-24 15:52+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,260 +16,259 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:75
20
  msgid "Activated plugins"
21
  msgstr "Aktiverat plugin"
22
 
23
- #: contact_form.php:77
24
- #: contact_form.php:85
25
- #: contact_form.php:93
26
  msgid "Read more"
27
  msgstr "Läs mer"
28
 
29
- #: contact_form.php:77
30
- #: contact_form.php:617
31
- #: contact_form.php:626
32
  msgid "Settings"
33
  msgstr "Inställningar"
34
 
35
- #: contact_form.php:83
36
  msgid "Installed plugins"
37
  msgstr "Installerade plugin"
38
 
39
- #: contact_form.php:91
40
  msgid "Recommended plugins"
41
  msgstr "Rekommenderade plugin"
42
 
43
- #: contact_form.php:93
44
  msgid "Download"
45
  msgstr "Ladda ner"
46
 
47
- #: contact_form.php:93
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Installerar %s"
51
 
52
- #: contact_form.php:93
53
  msgid "Install now from wordpress.org"
54
  msgstr "Installera från wordpress.org"
55
 
56
- #: contact_form.php:95
57
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
58
  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"
59
 
60
- #: contact_form.php:107
61
- #: contact_form.php:210
62
  msgid "Contact Form Options"
63
  msgstr "Inställningar för Kontaktformulär"
64
 
65
- #: contact_form.php:107
66
  msgid "Contact Form"
67
  msgstr "Kontak formulär"
68
 
69
- #: contact_form.php:127
70
- #: contact_form.php:161
71
- #: contact_form.php:178
72
- #: contact_form.php:268
73
- msgid "Name:"
74
- msgstr "Namn:"
75
-
76
  #: contact_form.php:128
77
  #: contact_form.php:162
78
  #: contact_form.php:179
79
  #: contact_form.php:269
80
- msgid "E-Mail Address:"
81
- msgstr "Epostadress:"
82
 
83
  #: contact_form.php:129
84
  #: contact_form.php:163
85
  #: contact_form.php:180
86
  #: contact_form.php:270
87
- msgid "Subject:"
88
- msgstr "Rubrik:"
89
 
90
  #: contact_form.php:130
91
  #: contact_form.php:164
92
  #: contact_form.php:181
93
  #: contact_form.php:271
94
- msgid "Message:"
95
- msgstr "Meddelande:"
96
 
97
  #: contact_form.php:131
98
  #: contact_form.php:165
99
  #: contact_form.php:182
100
  #: contact_form.php:272
 
 
 
 
 
 
 
101
  msgid "Attachment:"
102
  msgstr "Bilaga:"
103
 
104
- #: contact_form.php:190
105
- #: contact_form.php:199
106
  msgid "Options saved."
107
  msgstr "Inställningar sparade"
108
 
109
- #: contact_form.php:193
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Sådan användare finns inte. Inställningar har inte sparats."
112
 
113
- #: contact_form.php:202
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Var vänlig och ange en korrekt epostadress. Inställningar är inte sparade."
116
 
117
- #: contact_form.php:215
118
- msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page:"
119
- msgstr "Om du vill lägga till ett kontaktformulär på din hemsida, kopiera och kilstra in denna snabbkod i ditt inlägg eller sida:"
120
-
121
  #: contact_form.php:216
 
 
 
 
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Om information i fälten nedan är tomma så kommer meddelandet att skickas till en adress som specifierades vid registrering."
124
 
125
- #: contact_form.php:220
126
  msgid "Use email of wordpress user:"
127
  msgstr "Använd epostadress för wordpress användare:"
128
 
129
- #: contact_form.php:226
130
  msgid "Select user name"
131
  msgstr "Välj användarnamn"
132
 
133
- #: contact_form.php:231
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Ange ett namn på en användare som kommer få meddelandena från kontaktformulären"
136
 
137
- #: contact_form.php:235
138
  msgid "Use this email:"
139
  msgstr "Använd denna epost:"
140
 
141
- #: contact_form.php:241
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Ange en epostadress som ska användas för att ta emot meddelandena."
144
 
145
- #: contact_form.php:245
146
  msgid "Additional options"
147
  msgstr "Fler val"
148
 
149
- #: contact_form.php:248
150
  msgid "Display Attachment block"
151
  msgstr "Visa bifogade"
152
 
153
- #: contact_form.php:253
154
  msgid "Users can attach files of the following types"
155
  msgstr "Användare kan lägga till filer av följande typer"
156
 
157
- #: contact_form.php:257
158
  msgid "Display Send me a copy block"
159
  msgstr "Visa \"Skicka mig en kopia\""
160
 
161
- #: contact_form.php:263
162
  msgid "Change label for fields of the contact form"
163
  msgstr "Ändra etiketter för fält på kontaktformuläret"
164
 
165
- #: contact_form.php:278
166
  msgid "Save Changes"
167
  msgstr "Spara ändringar"
168
 
169
- #: contact_form.php:309
170
  msgid "Thank you for contacting us."
171
  msgstr "Tack för att du kontaktat oss."
172
 
173
- #: contact_form.php:314
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Beklagar, men ditt meddelande kunde inte levereras."
176
 
177
- #: contact_form.php:371
178
  msgid "You can attach files of the following types"
179
  msgstr "Du kan lägga till filer av följande typ."
180
 
181
- #: contact_form.php:377
182
  msgid "Send me a copy"
183
  msgstr "Skicka mig en kopia"
184
 
185
- #: contact_form.php:387
186
  msgid "Submit"
187
  msgstr "Skicka"
188
 
189
- #: contact_form.php:403
190
  msgid "Your name is required."
191
  msgstr "Ditt namn krävs"
192
 
193
- #: contact_form.php:404
194
  msgid "A proper e-mail address is required."
195
  msgstr "En korrekt epostadress krävs."
196
 
197
- #: contact_form.php:405
198
  msgid "Subject text is required."
199
  msgstr "Rubrik krävs."
200
 
201
- #: contact_form.php:406
202
  msgid "Message text is required."
203
  msgstr "Meddelandetext krävs."
204
 
205
- #: contact_form.php:407
206
  msgid "Please make corrections below and try again."
207
  msgstr "Var vänlig och gör ändringarna nedan och försök igen."
208
 
209
- #: contact_form.php:436
210
  msgid "Attachment is broken."
211
  msgstr "Fel vid bilaga"
212
 
213
- #: contact_form.php:449
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Var vänlig och fyll i CAPTCHA."
216
 
217
- #: contact_form.php:506
218
- #: contact_form.php:540
219
  msgid "Sent from (ip address)"
220
  msgstr "Skickat från (IP-adress)"
221
 
222
- #: contact_form.php:507
223
- #: contact_form.php:543
224
  msgid "Date/Time"
225
  msgstr "Dag/tid"
226
 
227
- #: contact_form.php:508
228
- #: contact_form.php:546
229
  msgid "Coming from (referer)"
230
  msgstr "Skickat från (referent)"
231
 
232
- #: contact_form.php:509
233
- #: contact_form.php:549
234
  msgid "Using (user agent)"
235
  msgstr "med (user agent)"
236
 
237
- #: contact_form.php:514
238
  msgid "Contact from"
239
  msgstr "Kontakformulär"
240
 
241
- #: contact_form.php:519
242
  msgid "Name"
243
  msgstr "Namn"
244
 
245
- #: contact_form.php:522
246
  msgid "Email"
247
  msgstr "Epost"
248
 
249
- #: contact_form.php:525
250
  msgid "Subject"
251
  msgstr "Rubrik"
252
 
253
- #: contact_form.php:528
254
  msgid "Message"
255
  msgstr "Meddelande"
256
 
257
- #: contact_form.php:531
258
  msgid "Site"
259
  msgstr "www"
260
 
261
- #: contact_form.php:572
262
- msgid "If you can see this MIME than your client doesn't accept MIME types!"
263
- msgstr "Om du ser detta MIME så stödjer inte din client MIME!"
264
-
265
- #: contact_form.php:627
266
  msgid "FAQ"
267
  msgstr "Vanliga frågor"
268
 
269
- #: contact_form.php:628
270
  msgid "Support"
271
  msgstr "Support"
272
 
 
 
 
273
  #~ msgid "E-Mail Addresse:"
274
  #~ msgstr "Epost adress"
275
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-12 19:26+0200\n"
6
+ "PO-Revision-Date: 2012-03-12 19:26+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Poedit-SourceCharset: utf-8\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
24
+ #: contact_form.php:86
25
+ #: contact_form.php:94
26
  msgid "Read more"
27
  msgstr "Läs mer"
28
 
29
+ #: contact_form.php:78
30
+ #: contact_form.php:601
31
+ #: contact_form.php:610
32
  msgid "Settings"
33
  msgstr "Inställningar"
34
 
35
+ #: contact_form.php:84
36
  msgid "Installed plugins"
37
  msgstr "Installerade plugin"
38
 
39
+ #: contact_form.php:92
40
  msgid "Recommended plugins"
41
  msgstr "Rekommenderade plugin"
42
 
43
+ #: contact_form.php:94
44
  msgid "Download"
45
  msgstr "Ladda ner"
46
 
47
+ #: contact_form.php:94
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Installerar %s"
51
 
52
+ #: contact_form.php:94
53
  msgid "Install now from wordpress.org"
54
  msgstr "Installera från wordpress.org"
55
 
56
+ #: contact_form.php:96
57
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
58
  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"
59
 
60
+ #: contact_form.php:108
61
+ #: contact_form.php:211
62
  msgid "Contact Form Options"
63
  msgstr "Inställningar för Kontaktformulär"
64
 
65
+ #: contact_form.php:108
66
  msgid "Contact Form"
67
  msgstr "Kontak formulär"
68
 
 
 
 
 
 
 
 
69
  #: contact_form.php:128
70
  #: contact_form.php:162
71
  #: contact_form.php:179
72
  #: contact_form.php:269
73
+ msgid "Name:"
74
+ msgstr "Namn:"
75
 
76
  #: contact_form.php:129
77
  #: contact_form.php:163
78
  #: contact_form.php:180
79
  #: contact_form.php:270
80
+ msgid "E-Mail Address:"
81
+ msgstr "Epostadress:"
82
 
83
  #: contact_form.php:130
84
  #: contact_form.php:164
85
  #: contact_form.php:181
86
  #: contact_form.php:271
87
+ msgid "Subject:"
88
+ msgstr "Rubrik:"
89
 
90
  #: contact_form.php:131
91
  #: contact_form.php:165
92
  #: contact_form.php:182
93
  #: contact_form.php:272
94
+ msgid "Message:"
95
+ msgstr "Meddelande:"
96
+
97
+ #: contact_form.php:132
98
+ #: contact_form.php:166
99
+ #: contact_form.php:183
100
+ #: contact_form.php:273
101
  msgid "Attachment:"
102
  msgstr "Bilaga:"
103
 
104
+ #: contact_form.php:191
105
+ #: contact_form.php:200
106
  msgid "Options saved."
107
  msgstr "Inställningar sparade"
108
 
109
+ #: contact_form.php:194
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Sådan användare finns inte. Inställningar har inte sparats."
112
 
113
+ #: contact_form.php:203
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Var vänlig och ange en korrekt epostadress. Inställningar är inte sparade."
116
 
 
 
 
 
117
  #: contact_form.php:216
118
+ msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
+ msgstr "Om du vill lägga till ett kontaktformulär på din hemsida, kopiera och kilstra in denna snabbkod i ditt inlägg eller sida eller widget:"
120
+
121
+ #: contact_form.php:217
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Om information i fälten nedan är tomma så kommer meddelandet att skickas till en adress som specifierades vid registrering."
124
 
125
+ #: contact_form.php:221
126
  msgid "Use email of wordpress user:"
127
  msgstr "Använd epostadress för wordpress användare:"
128
 
129
+ #: contact_form.php:227
130
  msgid "Select user name"
131
  msgstr "Välj användarnamn"
132
 
133
+ #: contact_form.php:232
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Ange ett namn på en användare som kommer få meddelandena från kontaktformulären"
136
 
137
+ #: contact_form.php:236
138
  msgid "Use this email:"
139
  msgstr "Använd denna epost:"
140
 
141
+ #: contact_form.php:242
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Ange en epostadress som ska användas för att ta emot meddelandena."
144
 
145
+ #: contact_form.php:246
146
  msgid "Additional options"
147
  msgstr "Fler val"
148
 
149
+ #: contact_form.php:249
150
  msgid "Display Attachment block"
151
  msgstr "Visa bifogade"
152
 
153
+ #: contact_form.php:254
154
  msgid "Users can attach files of the following types"
155
  msgstr "Användare kan lägga till filer av följande typer"
156
 
157
+ #: contact_form.php:258
158
  msgid "Display Send me a copy block"
159
  msgstr "Visa \"Skicka mig en kopia\""
160
 
161
+ #: contact_form.php:264
162
  msgid "Change label for fields of the contact form"
163
  msgstr "Ändra etiketter för fält på kontaktformuläret"
164
 
165
+ #: contact_form.php:279
166
  msgid "Save Changes"
167
  msgstr "Spara ändringar"
168
 
169
+ #: contact_form.php:310
170
  msgid "Thank you for contacting us."
171
  msgstr "Tack för att du kontaktat oss."
172
 
173
+ #: contact_form.php:315
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Beklagar, men ditt meddelande kunde inte levereras."
176
 
177
+ #: contact_form.php:372
178
  msgid "You can attach files of the following types"
179
  msgstr "Du kan lägga till filer av följande typ."
180
 
181
+ #: contact_form.php:378
182
  msgid "Send me a copy"
183
  msgstr "Skicka mig en kopia"
184
 
185
+ #: contact_form.php:388
186
  msgid "Submit"
187
  msgstr "Skicka"
188
 
189
+ #: contact_form.php:404
190
  msgid "Your name is required."
191
  msgstr "Ditt namn krävs"
192
 
193
+ #: contact_form.php:405
194
  msgid "A proper e-mail address is required."
195
  msgstr "En korrekt epostadress krävs."
196
 
197
+ #: contact_form.php:406
198
  msgid "Subject text is required."
199
  msgstr "Rubrik krävs."
200
 
201
+ #: contact_form.php:407
202
  msgid "Message text is required."
203
  msgstr "Meddelandetext krävs."
204
 
205
+ #: contact_form.php:408
206
  msgid "Please make corrections below and try again."
207
  msgstr "Var vänlig och gör ändringarna nedan och försök igen."
208
 
209
+ #: contact_form.php:437
210
  msgid "Attachment is broken."
211
  msgstr "Fel vid bilaga"
212
 
213
+ #: contact_form.php:450
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "Var vänlig och fyll i CAPTCHA."
216
 
217
+ #: contact_form.php:526
218
+ #: contact_form.php:560
219
  msgid "Sent from (ip address)"
220
  msgstr "Skickat från (IP-adress)"
221
 
222
+ #: contact_form.php:527
223
+ #: contact_form.php:563
224
  msgid "Date/Time"
225
  msgstr "Dag/tid"
226
 
227
+ #: contact_form.php:528
228
+ #: contact_form.php:566
229
  msgid "Coming from (referer)"
230
  msgstr "Skickat från (referent)"
231
 
232
+ #: contact_form.php:529
233
+ #: contact_form.php:569
234
  msgid "Using (user agent)"
235
  msgstr "med (user agent)"
236
 
237
+ #: contact_form.php:534
238
  msgid "Contact from"
239
  msgstr "Kontakformulär"
240
 
241
+ #: contact_form.php:539
242
  msgid "Name"
243
  msgstr "Namn"
244
 
245
+ #: contact_form.php:542
246
  msgid "Email"
247
  msgstr "Epost"
248
 
249
+ #: contact_form.php:545
250
  msgid "Subject"
251
  msgstr "Rubrik"
252
 
253
+ #: contact_form.php:548
254
  msgid "Message"
255
  msgstr "Meddelande"
256
 
257
+ #: contact_form.php:551
258
  msgid "Site"
259
  msgstr "www"
260
 
261
+ #: contact_form.php:611
 
 
 
 
262
  msgid "FAQ"
263
  msgstr "Vanliga frågor"
264
 
265
+ #: contact_form.php:612
266
  msgid "Support"
267
  msgstr "Support"
268
 
269
+ #~ msgid "If you can see this MIME than your client doesn't accept MIME types!"
270
+ #~ msgstr "Om du ser detta MIME så stödjer inte din client MIME!"
271
+
272
  #~ msgid "E-Mail Addresse:"
273
  #~ msgstr "Epost adress"
274
 
languages/contact_form-tr_TR.mo CHANGED
Binary file
languages/contact_form-tr_TR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2012-02-24 15:52+0200\n"
6
- "PO-Revision-Date: 2012-02-24 15:52+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
@@ -16,260 +16,259 @@ msgstr ""
16
  "X-Poedit-SourceCharset: utf-8\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: contact_form.php:75
20
  msgid "Activated plugins"
21
  msgstr "Aktif eklentiler"
22
 
23
- #: contact_form.php:77
24
- #: contact_form.php:85
25
- #: contact_form.php:93
26
  msgid "Read more"
27
  msgstr "Devamı"
28
 
29
- #: contact_form.php:77
30
- #: contact_form.php:617
31
- #: contact_form.php:626
32
  msgid "Settings"
33
  msgstr "Ayarlar"
34
 
35
- #: contact_form.php:83
36
  msgid "Installed plugins"
37
  msgstr "Eklenti Kuruldu"
38
 
39
- #: contact_form.php:91
40
  msgid "Recommended plugins"
41
  msgstr "Önerilen Eklentiler"
42
 
43
- #: contact_form.php:93
44
  msgid "Download"
45
  msgstr "İndir"
46
 
47
- #: contact_form.php:93
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Kur %s"
51
 
52
- #: contact_form.php:93
53
  msgid "Install now from wordpress.org"
54
  msgstr "Wordpress.org dan şimdi yükleyin"
55
 
56
- #: contact_form.php:95
57
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
58
  msgstr "Herhangi bir sorunuz varsa, lütfen plugin@bestwebsoft.com aracılığıyla bize ulaşın veya sitemizdeki iletişim formunu kullanın"
59
 
60
- #: contact_form.php:107
61
- #: contact_form.php:210
62
  msgid "Contact Form Options"
63
  msgstr "İletişim Formu Seçenekleri"
64
 
65
- #: contact_form.php:107
66
  msgid "Contact Form"
67
  msgstr "İletişim Formu"
68
 
69
- #: contact_form.php:127
70
- #: contact_form.php:161
71
- #: contact_form.php:178
72
- #: contact_form.php:268
73
- msgid "Name:"
74
- msgstr "Adınız Soyadınız :"
75
-
76
  #: contact_form.php:128
77
  #: contact_form.php:162
78
  #: contact_form.php:179
79
  #: contact_form.php:269
80
- msgid "E-Mail Address:"
81
- msgstr "E-mail Adresiniz :"
82
 
83
  #: contact_form.php:129
84
  #: contact_form.php:163
85
  #: contact_form.php:180
86
  #: contact_form.php:270
87
- msgid "Subject:"
88
- msgstr "Konu:"
89
 
90
  #: contact_form.php:130
91
  #: contact_form.php:164
92
  #: contact_form.php:181
93
  #: contact_form.php:271
94
- msgid "Message:"
95
- msgstr "Mesajınız:"
96
 
97
  #: contact_form.php:131
98
  #: contact_form.php:165
99
  #: contact_form.php:182
100
  #: contact_form.php:272
 
 
 
 
 
 
 
101
  msgid "Attachment:"
102
  msgstr "Dosya Eki:"
103
 
104
- #: contact_form.php:190
105
- #: contact_form.php:199
106
  msgid "Options saved."
107
  msgstr "Ayarlar Kayıt Edildi."
108
 
109
- #: contact_form.php:193
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Böyle bir kullanıcı yok. Ayarlar kayıt edilemedi."
112
 
113
- #: contact_form.php:202
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Böyle bir mail bulunumadı. Lütfen doğru bir mail giriniz."
116
 
117
- #: contact_form.php:215
118
- msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page:"
119
- msgstr "İletişim formunu sitenize yerleştirmek istiyorsanız lütfen kısa kodu yeni sayfa içerisine html modunda iken ekleyiniz."
120
-
121
  #: contact_form.php:216
 
 
 
 
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Lütfen aşağıdaki alanları doğru ve eksiksiz olarak doldurun."
124
 
125
- #: contact_form.php:220
126
  msgid "Use email of wordpress user:"
127
  msgstr "Kullanıcı adı veya mail girin"
128
 
129
- #: contact_form.php:226
130
  msgid "Select user name"
131
  msgstr "Kullanıcı adı seçin"
132
 
133
- #: contact_form.php:231
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Kullanıcı bir iletişim formunu mesajları alacak bir isim ayarlayın."
136
 
137
- #: contact_form.php:235
138
  msgid "Use this email:"
139
  msgstr "Bu e-posta adresini kullan:"
140
 
141
- #: contact_form.php:241
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Mesaj almak için kullanılan bir e-posta adresi ayarlayın."
144
 
145
- #: contact_form.php:245
146
  msgid "Additional options"
147
  msgstr "Ek Seçenekler"
148
 
149
- #: contact_form.php:248
150
  msgid "Display Attachment block"
151
  msgstr "Eklenti Bloğunu Göster"
152
 
153
- #: contact_form.php:253
154
  msgid "Users can attach files of the following types"
155
  msgstr "Kullanıcılar aşağıdaki türdeki dosyaları yükleyebilir"
156
 
157
- #: contact_form.php:257
158
  msgid "Display Send me a copy block"
159
  msgstr "Bana bir kopya gönder bloğunu göster"
160
 
161
- #: contact_form.php:263
162
  msgid "Change label for fields of the contact form"
163
  msgstr "Iletişim formu alanlar için değişim etiket"
164
 
165
- #: contact_form.php:278
166
  msgid "Save Changes"
167
  msgstr "Değişiklikler Kayıt Edildi"
168
 
169
- #: contact_form.php:309
170
  msgid "Thank you for contacting us."
171
  msgstr "Bizimle bağlantı kurduğunuz için teşekkür ederiz."
172
 
173
- #: contact_form.php:314
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Üzgünüz, e-posta gönderilemedi."
176
 
177
- #: contact_form.php:371
178
  msgid "You can attach files of the following types"
179
  msgstr "Aşağıdaki türlerde dosya ekleyebilirsiniz"
180
 
181
- #: contact_form.php:377
182
  msgid "Send me a copy"
183
  msgstr "Bir kopyasını banada gönder"
184
 
185
- #: contact_form.php:387
186
  msgid "Submit"
187
  msgstr "Gönder"
188
 
189
- #: contact_form.php:403
190
  msgid "Your name is required."
191
  msgstr "Adınız ve soyadınız gereklidir."
192
 
193
- #: contact_form.php:404
194
  msgid "A proper e-mail address is required."
195
  msgstr "Düzgün bir e-posta adresi gereklidir."
196
 
197
- #: contact_form.php:405
198
  msgid "Subject text is required."
199
  msgstr "Konu metni gereklidir."
200
 
201
- #: contact_form.php:406
202
  msgid "Message text is required."
203
  msgstr "Mesaj metni gereklidir."
204
 
205
- #: contact_form.php:407
206
  msgid "Please make corrections below and try again."
207
  msgstr "Lütfen aşağıdaki düzeltmeleri yapın ve tekrar deneyin."
208
 
209
- #: contact_form.php:436
210
  msgid "Attachment is broken."
211
  msgstr "Eklenti Hatalı"
212
 
213
- #: contact_form.php:449
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "CAPTCHA Doldurunuz"
216
 
217
- #: contact_form.php:506
218
- #: contact_form.php:540
219
  msgid "Sent from (ip address)"
220
  msgstr "Geldiği (ip adresi)"
221
 
222
- #: contact_form.php:507
223
- #: contact_form.php:543
224
  msgid "Date/Time"
225
  msgstr "Tarih/Zaman"
226
 
227
- #: contact_form.php:508
228
- #: contact_form.php:546
229
  msgid "Coming from (referer)"
230
  msgstr "Gelen"
231
 
232
- #: contact_form.php:509
233
- #: contact_form.php:549
234
  msgid "Using (user agent)"
235
  msgstr "Using (user agent)"
236
 
237
- #: contact_form.php:514
238
  msgid "Contact from"
239
  msgstr "Adlı Kişiden Mail Var"
240
 
241
- #: contact_form.php:519
242
  msgid "Name"
243
  msgstr "Adınız Soyadınız"
244
 
245
- #: contact_form.php:522
246
  msgid "Email"
247
  msgstr "e-mail"
248
 
249
- #: contact_form.php:525
250
  msgid "Subject"
251
  msgstr "Konu"
252
 
253
- #: contact_form.php:528
254
  msgid "Message"
255
  msgstr "Mesaj"
256
 
257
- #: contact_form.php:531
258
  msgid "Site"
259
  msgstr "Site"
260
 
261
- #: contact_form.php:572
262
- msgid "If you can see this MIME than your client doesn't accept MIME types!"
263
- msgstr "Istemci daha bu MIME görürseniz MIME türlerini kabul etmez!"
264
-
265
- #: contact_form.php:627
266
  msgid "FAQ"
267
  msgstr "Sık Sorulanlar"
268
 
269
- #: contact_form.php:628
270
  msgid "Support"
271
  msgstr "Destek"
272
 
 
 
 
273
  #~ msgid "E-Mail Addresse:"
274
  #~ msgstr "Indirizzo e-mail:"
275
 
2
  msgstr ""
3
  "Project-Id-Version: contact_form\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2012-03-12 19:26+0200\n"
6
+ "PO-Revision-Date: 2012-03-12 19:26+0200\n"
7
  "Last-Translator: BWS <zos@bestwebsoft.com>\n"
8
  "Language-Team: bestwebsoft.com <plugin@bestwebsoft.com>\n"
9
  "MIME-Version: 1.0\n"
16
  "X-Poedit-SourceCharset: utf-8\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
24
+ #: contact_form.php:86
25
+ #: contact_form.php:94
26
  msgid "Read more"
27
  msgstr "Devamı"
28
 
29
+ #: contact_form.php:78
30
+ #: contact_form.php:601
31
+ #: contact_form.php:610
32
  msgid "Settings"
33
  msgstr "Ayarlar"
34
 
35
+ #: contact_form.php:84
36
  msgid "Installed plugins"
37
  msgstr "Eklenti Kuruldu"
38
 
39
+ #: contact_form.php:92
40
  msgid "Recommended plugins"
41
  msgstr "Önerilen Eklentiler"
42
 
43
+ #: contact_form.php:94
44
  msgid "Download"
45
  msgstr "İndir"
46
 
47
+ #: contact_form.php:94
48
  #, php-format
49
  msgid "Install %s"
50
  msgstr "Kur %s"
51
 
52
+ #: contact_form.php:94
53
  msgid "Install now from wordpress.org"
54
  msgstr "Wordpress.org dan şimdi yükleyin"
55
 
56
+ #: contact_form.php:96
57
  msgid "If you have any questions, please contact us via plugin@bestwebsoft.com or fill in our contact form on our site"
58
  msgstr "Herhangi bir sorunuz varsa, lütfen plugin@bestwebsoft.com aracılığıyla bize ulaşın veya sitemizdeki iletişim formunu kullanın"
59
 
60
+ #: contact_form.php:108
61
+ #: contact_form.php:211
62
  msgid "Contact Form Options"
63
  msgstr "İletişim Formu Seçenekleri"
64
 
65
+ #: contact_form.php:108
66
  msgid "Contact Form"
67
  msgstr "İletişim Formu"
68
 
 
 
 
 
 
 
 
69
  #: contact_form.php:128
70
  #: contact_form.php:162
71
  #: contact_form.php:179
72
  #: contact_form.php:269
73
+ msgid "Name:"
74
+ msgstr "Adınız Soyadınız :"
75
 
76
  #: contact_form.php:129
77
  #: contact_form.php:163
78
  #: contact_form.php:180
79
  #: contact_form.php:270
80
+ msgid "E-Mail Address:"
81
+ msgstr "E-mail Adresiniz :"
82
 
83
  #: contact_form.php:130
84
  #: contact_form.php:164
85
  #: contact_form.php:181
86
  #: contact_form.php:271
87
+ msgid "Subject:"
88
+ msgstr "Konu:"
89
 
90
  #: contact_form.php:131
91
  #: contact_form.php:165
92
  #: contact_form.php:182
93
  #: contact_form.php:272
94
+ msgid "Message:"
95
+ msgstr "Mesajınız:"
96
+
97
+ #: contact_form.php:132
98
+ #: contact_form.php:166
99
+ #: contact_form.php:183
100
+ #: contact_form.php:273
101
  msgid "Attachment:"
102
  msgstr "Dosya Eki:"
103
 
104
+ #: contact_form.php:191
105
+ #: contact_form.php:200
106
  msgid "Options saved."
107
  msgstr "Ayarlar Kayıt Edildi."
108
 
109
+ #: contact_form.php:194
110
  msgid "Such user is not exist. Settings are not saved."
111
  msgstr "Böyle bir kullanıcı yok. Ayarlar kayıt edilemedi."
112
 
113
+ #: contact_form.php:203
114
  msgid "Please input correct email. Settings are not saved."
115
  msgstr "Böyle bir mail bulunumadı. Lütfen doğru bir mail giriniz."
116
 
 
 
 
 
117
  #: contact_form.php:216
118
+ msgid "If you would like to add a Contact Form to your website, just copy and put this shortcode onto your post or page or widget:"
119
+ msgstr "İletişim formunu sitenize yerleştirmek istiyorsanız lütfen kısa kodu yeni sayfa içerisine html modunda iken ekleyiniz:"
120
+
121
+ #: contact_form.php:217
122
  msgid "If information in the below fields are empty then the message will be send to an address which was specified during registration."
123
  msgstr "Lütfen aşağıdaki alanları doğru ve eksiksiz olarak doldurun."
124
 
125
+ #: contact_form.php:221
126
  msgid "Use email of wordpress user:"
127
  msgstr "Kullanıcı adı veya mail girin"
128
 
129
+ #: contact_form.php:227
130
  msgid "Select user name"
131
  msgstr "Kullanıcı adı seçin"
132
 
133
+ #: contact_form.php:232
134
  msgid "Set a name of user who will get messages from a contact form."
135
  msgstr "Kullanıcı bir iletişim formunu mesajları alacak bir isim ayarlayın."
136
 
137
+ #: contact_form.php:236
138
  msgid "Use this email:"
139
  msgstr "Bu e-posta adresini kullan:"
140
 
141
+ #: contact_form.php:242
142
  msgid "Set an email address which will be used for messages receiving."
143
  msgstr "Mesaj almak için kullanılan bir e-posta adresi ayarlayın."
144
 
145
+ #: contact_form.php:246
146
  msgid "Additional options"
147
  msgstr "Ek Seçenekler"
148
 
149
+ #: contact_form.php:249
150
  msgid "Display Attachment block"
151
  msgstr "Eklenti Bloğunu Göster"
152
 
153
+ #: contact_form.php:254
154
  msgid "Users can attach files of the following types"
155
  msgstr "Kullanıcılar aşağıdaki türdeki dosyaları yükleyebilir"
156
 
157
+ #: contact_form.php:258
158
  msgid "Display Send me a copy block"
159
  msgstr "Bana bir kopya gönder bloğunu göster"
160
 
161
+ #: contact_form.php:264
162
  msgid "Change label for fields of the contact form"
163
  msgstr "Iletişim formu alanlar için değişim etiket"
164
 
165
+ #: contact_form.php:279
166
  msgid "Save Changes"
167
  msgstr "Değişiklikler Kayıt Edildi"
168
 
169
+ #: contact_form.php:310
170
  msgid "Thank you for contacting us."
171
  msgstr "Bizimle bağlantı kurduğunuz için teşekkür ederiz."
172
 
173
+ #: contact_form.php:315
174
  msgid "Sorry, your e-mail could not be delivered."
175
  msgstr "Üzgünüz, e-posta gönderilemedi."
176
 
177
+ #: contact_form.php:372
178
  msgid "You can attach files of the following types"
179
  msgstr "Aşağıdaki türlerde dosya ekleyebilirsiniz"
180
 
181
+ #: contact_form.php:378
182
  msgid "Send me a copy"
183
  msgstr "Bir kopyasını banada gönder"
184
 
185
+ #: contact_form.php:388
186
  msgid "Submit"
187
  msgstr "Gönder"
188
 
189
+ #: contact_form.php:404
190
  msgid "Your name is required."
191
  msgstr "Adınız ve soyadınız gereklidir."
192
 
193
+ #: contact_form.php:405
194
  msgid "A proper e-mail address is required."
195
  msgstr "Düzgün bir e-posta adresi gereklidir."
196
 
197
+ #: contact_form.php:406
198
  msgid "Subject text is required."
199
  msgstr "Konu metni gereklidir."
200
 
201
+ #: contact_form.php:407
202
  msgid "Message text is required."
203
  msgstr "Mesaj metni gereklidir."
204
 
205
+ #: contact_form.php:408
206
  msgid "Please make corrections below and try again."
207
  msgstr "Lütfen aşağıdaki düzeltmeleri yapın ve tekrar deneyin."
208
 
209
+ #: contact_form.php:437
210
  msgid "Attachment is broken."
211
  msgstr "Eklenti Hatalı"
212
 
213
+ #: contact_form.php:450
214
  msgid "Please complete the CAPTCHA."
215
  msgstr "CAPTCHA Doldurunuz"
216
 
217
+ #: contact_form.php:526
218
+ #: contact_form.php:560
219
  msgid "Sent from (ip address)"
220
  msgstr "Geldiği (ip adresi)"
221
 
222
+ #: contact_form.php:527
223
+ #: contact_form.php:563
224
  msgid "Date/Time"
225
  msgstr "Tarih/Zaman"
226
 
227
+ #: contact_form.php:528
228
+ #: contact_form.php:566
229
  msgid "Coming from (referer)"
230
  msgstr "Gelen"
231
 
232
+ #: contact_form.php:529
233
+ #: contact_form.php:569
234
  msgid "Using (user agent)"
235
  msgstr "Using (user agent)"
236
 
237
+ #: contact_form.php:534
238
  msgid "Contact from"
239
  msgstr "Adlı Kişiden Mail Var"
240
 
241
+ #: contact_form.php:539
242
  msgid "Name"
243
  msgstr "Adınız Soyadınız"
244
 
245
+ #: contact_form.php:542
246
  msgid "Email"
247
  msgstr "e-mail"
248
 
249
+ #: contact_form.php:545
250
  msgid "Subject"
251
  msgstr "Konu"
252
 
253
+ #: contact_form.php:548
254
  msgid "Message"
255
  msgstr "Mesaj"
256
 
257
+ #: contact_form.php:551
258
  msgid "Site"
259
  msgstr "Site"
260
 
261
+ #: contact_form.php:611
 
 
 
 
262
  msgid "FAQ"
263
  msgstr "Sık Sorulanlar"
264
 
265
+ #: contact_form.php:612
266
  msgid "Support"
267
  msgstr "Destek"
268
 
269
+ #~ msgid "If you can see this MIME than your client doesn't accept MIME types!"
270
+ #~ msgstr "Istemci daha bu MIME görürseniz MIME türlerini kabul etmez!"
271
+
272
  #~ msgid "E-Mail Addresse:"
273
  #~ msgstr "Indirizzo e-mail:"
274
 
readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.2checkout.com/checkout/purchase?sid=1430388&quantity=1&
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.3.1
7
- Stable tag: 3.10
8
 
9
  Add Contact Form to your WordPress website.
10
 
@@ -17,26 +17,27 @@ Contact Form allows you to add a feedback form easilly and simply to a post or a
17
 
18
  = Features =
19
 
20
- * Actions: There is ability to choose to send email messages - any site user email or any other email.
21
- * Actions: Ability to add a field to attach a file in the contact form.
22
- * Actions: Ability to add a field to send a copy of the letter to the user who fills out a contact form to email, specified by filling the contact form.
23
- * Label: There is a possibility to change the label when display fields on the form.
24
-
25
- = Translate =
26
-
27
- * Bulgarian (bg_BG) (thanks Martin Jekov)
28
- * Brazilian Portuguese (pt_BR) (thanks <a href="mailto:brenojac@gmail.com">Breno Jacinto</a>, www.iconis.org.br)
29
- * Dutch (nl_NL) (thanks <a href="ronald@hostingu.nl">HostingU, Ronald Verheul</a>, Jan Boeijink )
30
- * German (de_DE) (thanks Hartung Thomas)
31
- * Italian (it_IT) (thanks <a href="mailto:ilian@ultra-violet.it">Ilian Gagliardi</a>)
32
- * Norwegian (nb_NO) (thanks Tore Hjartland)
33
- * Polish (pl_PL) (thanks Jarek Spirydowicz)
 
34
  * Russian (ru_RU)
35
- * Spanish (es_ES) (thanks Jesús Parra)
36
- * Swedish (sv_SV) (thanks Martin Tonek)
37
- * Turkish (tr_TR) (thanks <a herf="mailto:d-bulent@hotmail.com ">Devrim Bulent Ibis</a>, www.devrimhoca.com)
38
 
39
- If you create your own language pack or update the existing one, you can send <a href="http://codex.wordpress.org/Translating_WordPress" target="_blank">the text of PO and MO files</a> for <a href="http://bestwebsoft.com/" target="_blank">BWS</a> and we'll add it to the plugin. You can download the latest version of the program for work with PO and MO files <a href="http://www.poedit.net/download.php" target="_blank">Poedit</a>.
40
 
41
  == Installation ==
42
 
@@ -49,181 +50,192 @@ If you create your own language pack or update the existing one, you can send <a
49
 
50
  = Where I can find settings to adjust work of the plugin after activation? =
51
 
52
- 1. In the 'Plugin' menu you can find a link to the settings page.
53
 
54
- = After plugin installation I haven't adjust the settings. What is default email address which will be used for a contact via the form? =
55
 
56
- 1. Default address which was specified during WordPress installation will be used for the Contact Form plugin as default email address.
57
 
58
  = How can I add Contact Form to my website? =
59
 
60
- 1. You need to put a [contact_form] shortcode into your page or some post.
61
 
62
- = After user choosen via plugin settings page I got this error: "Please input correct email. Settings are not saved." =
63
 
64
- 1. It means that you have made a syntactical error.
65
 
66
- = How to use the other language files with the Contact Form? =
67
 
68
  Here is an example for German language files.
69
 
70
- 1. In order to use another language for WordPress it is necessary to set the WP version on the required language and in the configurational wp file - `wp-config.php` in the line `define('WPLANG', '');` write `define('WPLANG', 'de_DE');`. If everything is done properly the admin panel will be in German.
71
 
72
- 2. Make sure that there are files `de_DE.po` and `de_DE.mo` in the plugin (the folder languages in the root of the plugin).
73
 
74
- 3. If there are no these files it will be necessary to copy other files from this folder (for example, for Russian or Italian language) and rename them (you should write `de_DE` instead of `ru_RU` in the both files).
75
 
76
- 4. The files are edited with the help of the program Poedit - http://www.poedit.net/download.php - please load this program, install it, open the file with the help of this program (the required language file) and for each line in English you should write the translation in German.
77
 
78
- 5. If everything is done properly all lines will be in German in the admin panel and on frontend.
79
 
80
  == Screenshots ==
81
 
82
- 1. Contact Form dislaying.
83
- 2. Plugin settings in the WordPress admin panel.
84
- 3. Contact Form dislaying with additional fields.
85
- 4. Plugin settings in the WordPress admin panel with additional fields.
 
86
 
87
  == Changelog ==
88
 
 
 
 
 
 
89
  = V3.10 - 02.03.2012 =
90
- * NEW : Added Bulgarian language file for plugin.
91
 
92
  = V3.09 - 24.02.2012 =
93
- * NEW : Added Spanish language file for plugin.
94
- * Change : Code to include styles and scripts in a plug for the correct SSL verification.
95
- * Bugfix : The bug validate email address in admin section was fixed.
 
96
 
97
  = V3.08 - 17.02.2012 =
98
- * NEW : Added Spanish language file for plugin.
99
 
100
  = V3.07 - 17.02.2012 =
101
- * NEW : Added Norwegian language file for plugin.
102
- * NEW : Added Polish language file for plugin.
103
 
104
  = V3.06 - 07.02.2012 =
105
- * NEW : Added Dutch language file for plugin.
106
 
107
  = V3.05 - 09.01.2012 =
108
- * Bugfix : The bug sends email to admin user even if different user is specified when setting plugin to use "use email of wordpress user" was fixed.
109
- * Bugfix : The bug with sending a blank attachment field of the form was fixed.
110
 
111
  = V3.04 - 05.01.2012 =
112
- * NEW : Added Brazilian Portuguese and Turkish language files for plugin.
113
 
114
  = V3.03 - 04.01.2012 =
115
- * NEW : Added German language files for plugin.
116
- * Bugfix : The bug which is related with the resending of the email when updating of the page was fixed.
117
 
118
  = V3.02 - 02.01.2012 =
119
- * NEW : Added Italian language files for plugin.
120
- * NEW : Added possibility to change the label when display fields on the form.
121
- * Changed : Display the names of the files types that user can attach to the mail.
122
 
123
  = V3.01 - 28.12.2011 =
124
- * NEW : We added the 'Attachment' and 'Send me a copy' block in the contact form.
125
- * NEW : Added language files for plugin.
126
 
127
  = V2.08 - 12.11.2011 =
128
- *We fixed the slashes bug in email and added server info to email.
129
 
130
  = V2.07 - 10.11.2011 =
131
- *We fixed the bug of complex form validation when captcha not used in the contact form. Upgrade immediately.
132
 
133
  = V2.06 - 16.09.2011 =
134
- *We fixed the bug of complex email validation when filling in the contact form.
135
 
136
  = V2.05 - 23.08.2011 =
137
- *BWS Plugins sections was fixed and right now it is consisted with 3 parts: activated, installed and recommended plugins. The bug of position in the admin menu is fixed. Translation ommissions are corrected. Now there is a link to see the site where the email comes from.
 
138
 
139
  = V2.04 - 14.07.2011 =
140
- *BWS Plugins sections was fixed and right now it is consisted with 2 parts: installed and recommended plugins. Icons displaying is fixed.
141
 
142
  = V2.03 - 13.07.2011 =
143
- *The bug of the use custom email is fixed in this version. Please upgrade the plugin immediately. Thank you
144
 
145
  = V2.02 =
146
- *The bug of the setting page link is fixed in this version. Please upgrade the plugin immediately. Thank you
147
 
148
  = V2.01 =
149
- *Usability at the settings page of plugin was improved.
150
 
151
  = V1.03 =
152
- *Contact form email adress bug is fixed.
153
 
154
  = V1.02 =
155
- *Display "thanks" message bug is fixed. Radio buttons automatic switching added (for settings page) after setting mouse cursor (clicking) into a text field.
156
 
157
  = V1.01 =
158
- *Contact form position bug is fixed.
159
 
160
  = V1.00 =
161
- *Ability to add Contact Form into a post. Ability to display form via shortcode.
162
 
163
  == Upgrade Notice ==
164
 
 
 
 
165
  = V3.10 =
166
- Added Bulgarian language file for plugin.
167
 
168
  = V3.09 =
169
- Added Spanish language file for plugin. Changed code to include styles and scripts in a plug for the correct SSL verification. The bug validate email address in admin section was fixed. Upgrade immediately.
170
 
171
  = V3.08 =
172
- Added Spanish language file for plugin.
173
 
174
  = V3.07 =
175
- Added Norwegian and Polish language files for plugin.
176
 
177
  = V3.06 =
178
- Added Dutch language file for plugin.
179
 
180
  = V3.05 =
181
- The bug sends email to admin user even if different user is specified when setting plugin to use "use email of wordpress user" was fixed. The bug with sending a blank attachment field of the form was fixed. Upgrade immediately.
182
 
183
  = V3.04 =
184
- Added Brazilian Portuguese and Turkish language files for plugin.
185
 
186
  = V3.03 =
187
- Added German language files for plugin. The bug which is related with the resending of the email when updating of the page was fixed. Upgrade immediately.
188
 
189
  = V3.02 =
190
- Added Italian language files for plugin. Added possibility to change the label when display fields on the form. Display the names of the files types that user can attach to the mail.
191
 
192
  = V3.01 =
193
- We added the 'Attachment' and 'Send me a copy' block in the contact form. Added language files for plugin.
194
 
195
  = V2.08 =
196
- We fixed the slashes bug in email and added server info to email.
197
 
198
  = v2.07 =
199
- We fixed the bug of complex form validation when captcha not used in the contact form. Upgrade immediately.
200
 
201
  = V2.06 =
202
- We fixed the bug of complex email validation when filling in the contact form.
203
 
204
  = V2.05 =
205
- BWS Plugins sections was fixed and right now it is consisted with 3 parts: activated, installed and recommended plugins. The bug of position in the admin menu is fixed. Translation ommissions are corrected. Now there is a link to see the site where the email comes from.
206
 
207
  = V2.04 =
208
- BWS Plugins sections was fixed and right now it is consisted with 2 parts: installed and recommended plugins. Icons displaying is fixed.
209
 
210
  = V2.03 =
211
- The bug of the use custom email is fixed in this version. Please upgrade the plugin immediately. Thank you
212
 
213
  = V2.02 =
214
- The bug of the setting page link is fixed in this version. Please upgrade the plugin immediately. Thank you
215
 
216
  = V2.01 =
217
- Usability at the settings page of plugin was improved.
218
 
219
  = V1.03 =
220
  Contact form email adress bug is fixed. Upgrade immediately.
221
 
222
  = V1.02 =
223
- Display "thanks" message bug is fixed. Radio buttons automatic switching added (for settings page) after setting mouse cursor (clicking) into a text field. Upgrade immediately.
224
 
225
  = V1.01 =
226
- Contact form position bug is fixed. Upgrade immediately.
227
 
228
  = V1.00 =
229
  Upgrade immediately.
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.3.1
7
+ Stable tag: 3.11
8
 
9
  Add Contact Form to your WordPress website.
10
 
17
 
18
  = Features =
19
 
20
+ * Actions: There is a possibility of choosing where to send email messages. This can be either any user of the website or any other email.
21
+ * Actions: Ability to add a field for attaching a file to the contact form.
22
+ * Actions: Ability to add a field for sending a copy of the letter to the user who fills out a contact form. A copy will be sent to email, specified while filling the contact form.
23
+ * Label: There is a possibility to change a label when the fields of the form are displayed.
24
+
25
+ = Translation =
26
+
27
+ * Bulgarian (bg_BG) (thanks to Martin Jekov)
28
+ * Brazilian Portuguese (pt_BR) (thanks to <a href="mailto:brenojac@gmail.com">Breno Jacinto</a>, www.iconis.org.br)
29
+ * Dutch (nl_NL) (thanks to <a href="ronald@hostingu.nl">HostingU, Ronald Verheul</a>, Jan Boeijink )
30
+ * French (fr_FR) (thanks to Vincent Cibelli)
31
+ * German (de_DE) (thanks to Hartung Thomas)
32
+ * Italian (it_IT) (thanks to <a href="mailto:ilian@ultra-violet.it">Ilian Gagliardi</a>)
33
+ * Norwegian (nb_NO) (thanks to Tore Hjartland)
34
+ * Polish (pl_PL) (thanks to Jarek Spirydowicz)
35
  * Russian (ru_RU)
36
+ * Spanish (es_ES) (thanks to Jesús Parra)
37
+ * Swedish (sv_SV) (thanks to Martin Tonek)
38
+ * Turkish (tr_TR) (thanks to <a herf="mailto:d-bulent@hotmail.com ">Devrim Bulent Ibis</a>, www.devrimhoca.com)
39
 
40
+ If you create your own language pack or update the existing one, you can send <a href="http://codex.wordpress.org/Translating_WordPress" target="_blank">the text in PO and MO files</a> for <a href="http://bestwebsoft.com/" target="_blank">BWS</a> and we'll add it to the plugin. You can download the latest version of the program for work with PO and MO files <a href="http://www.poedit.net/download.php" target="_blank">Poedit</a>.
41
 
42
  == Installation ==
43
 
50
 
51
  = Where I can find settings to adjust work of the plugin after activation? =
52
 
53
+ In the 'Plugin' menu you can find a link to the settings page.
54
 
55
+ = After plugin installation I haven't adjusted the settings. What is the default email address which will be used for a contact via the form? =
56
 
57
+ Default address which was specified during WordPress installation will be used by the Contact Form plugin as the default email address.
58
 
59
  = How can I add Contact Form to my website? =
60
 
61
+ You need to put [contact_form] shortcode into your page or some post.
62
 
63
+ = After user is choosen via plugin settings page I have got this error: "Please input correct email. Settings are not saved." =
64
 
65
+ This means that you have made a syntax error.
66
 
67
+ = How to use other language files with the Contact Form? =
68
 
69
  Here is an example for German language files.
70
 
71
+ 1. In order to use another language for WordPress it is necessary to set the WP version to the required language and in configuration wp file - `wp-config.php` in the line `define('WPLANG', '');` write `define('WPLANG', 'de_DE');`. If everything is done properly admin panel will be in German.
72
 
73
+ 2. Make sure that there are files `de_DE.po` and `de_DE.mo` in the plugin (in the languages folder which is in the root of the plugin).
74
 
75
+ 3. If there are no such files it will be necessary to copy other files from this folder (for example, for Russian or Italian language) and rename them (you should write `de_DE` instead of `ru_RU` in the both files).
76
 
77
+ 4. The files can be edited with the help of the program Poedit - http://www.poedit.net/download.php - please load this program, install it, open the file with this program (required language file) and for each line in English write translation in German.
78
 
79
+ 5. If everything is done properly all lines will be in German in admin panel and on the frontend.
80
 
81
  == Screenshots ==
82
 
83
+ 1. Contact Form display.
84
+ 2. Plugin settings in WordPress admin panel.
85
+ 3. Contact Form display with additional fields.
86
+ 4. Plugin settings in WordPress admin panel with additional fields.
87
+ 5. Widget settings for using shortcode in the sidebar.
88
 
89
  == Changelog ==
90
 
91
+ = V3.11 - 12.03.2012 =
92
+ * NEW : French language file is added to the plugin.
93
+ * NEW : Added ability to use the contact form shortcode as widget in the sidebars.
94
+ * Change : The change was done to an email sending functionality – now it is using wordpress functionality only.
95
+
96
  = V3.10 - 02.03.2012 =
97
+ * NEW : Bulgarian language file is added to the plugin.
98
 
99
  = V3.09 - 24.02.2012 =
100
+ * NEW : Spanish language file is added to the plugin.
101
+ * Change : Code which includes styles and scripts is added to the plugin for correct SSL verification.
102
+
103
+ * Bugfix : The bug of email address validation in admin section was fixed.
104
 
105
  = V3.08 - 17.02.2012 =
106
+ * NEW : Spanish language file is added to the plugin.
107
 
108
  = V3.07 - 17.02.2012 =
109
+ * NEW : Norwegian language file is added to the plugin.
110
+ * NEW : Polish language file is added to the plugin.
111
 
112
  = V3.06 - 07.02.2012 =
113
+ * NEW : Dutch language file is added to the plugin.
114
 
115
  = V3.05 - 09.01.2012 =
116
+ * Bugfix : The bug of sending emails to admin user even if a different user is specified when setting plugin to "use email of wordpress user" was fixed.
117
+ * Bugfix : The bug of sending a blank attachment field of the form was fixed.
118
 
119
  = V3.04 - 05.01.2012 =
120
+ * NEW : Brazilian Portuguese and Turkish language files were added to the plugin.
121
 
122
  = V3.03 - 04.01.2012 =
123
+ * NEW : German language files are added to the plugin.
124
+ * Bugfix : The bug related to resending of an email after the page is updated was fixed.
125
 
126
  = V3.02 - 02.01.2012 =
127
+ * NEW : Italian language files were added to the plugin.
128
+ * NEW : A possibility to change a label when the fields of the form are displayed.
129
+ * Changed : Display of the files types names that user can attach to an mail.
130
 
131
  = V3.01 - 28.12.2011 =
132
+ * NEW : 'Attachment' and 'Send me a copy' blocks were added to the contact form.
133
+ * NEW : Language files are added to the plugin.
134
 
135
  = V2.08 - 12.11.2011 =
136
+ *Slashes bug in email is fixed and server info is added to email.
137
 
138
  = V2.07 - 10.11.2011 =
139
+ *The bug of complex form validation when captcha is not used in the contact form is fixed. Please upgrade immediately.
140
 
141
  = V2.06 - 16.09.2011 =
142
+ * The bug of complex email validation when filling in the contact form is fixed.
143
 
144
  = V2.05 - 23.08.2011 =
145
+ * BWS Plugin's menu section was fixed and right now it is consisted of 3 parts: activated, installed and recommended plugins.
146
+ The bug of positioning in admin menu is fixed. Translation omissions are corrected. Now there is a link where it is possible to see the site where email comes from.
147
 
148
  = V2.04 - 14.07.2011 =
149
+ *BWS Plugin's menu section was fixed and right now it is consisted of 2 parts: installed and recommended plugins. Icons displaying is fixed.
150
 
151
  = V2.03 - 13.07.2011 =
152
+ *The bug of using custom email is fixed in this version. Please upgrade the plugin immediately. Thank you
153
 
154
  = V2.02 =
155
+ *The bug with the link to the settings page is fixed in this version. Please upgrade the plugin immediately.
156
 
157
  = V2.01 =
158
+ *Usability at the settings page of the plugin was improved.
159
 
160
  = V1.03 =
161
+ *Contact form email address bug is fixed.
162
 
163
  = V1.02 =
164
+ * "Thanks" message display bug is fixed. Radio buttons automatic switching is added (for the settings page) after setting mouse cursor (clicking) at a text field.
165
 
166
  = V1.01 =
167
+ *Contact form positioning bug is fixed.
168
 
169
  = V1.00 =
170
+ *Ability to add Contact Form into a post. Ability to adjust displaying of the form via shortcode is added.
171
 
172
  == Upgrade Notice ==
173
 
174
+ = V3.11 =
175
+ The changes have been made to functionality of email sending - now it is using only wordpress functionality. French language file is added to the plugin.
176
+
177
  = V3.10 =
178
+ Bulgarian language file is added to the plugin.
179
 
180
  = V3.09 =
181
+ Spanish language file is added to the plugin. Code that is used to connect styles and scripts is added to the plugin for correct SSL verification. The bug of email address validation in admin section was fixed. Upgrade immediately.
182
 
183
  = V3.08 =
184
+ Spanish language file is added to the plugin.
185
 
186
  = V3.07 =
187
+ Norwegian and Polish language files are added to the plugin.
188
 
189
  = V3.06 =
190
+ Dutch language file is added to the plugin.
191
 
192
  = V3.05 =
193
+ The bug of sending emails to admin user even if a different user is specified when setting plugin to "use email of wordpress user" was fixed. The bug of sending a blank attachment field of the form was fixed.
194
 
195
  = V3.04 =
196
+ Brazilian Portuguese and Turkish language files are added to the plugin.
197
 
198
  = V3.03 =
199
+ German language files are added to the plugin. The bug related to resending of an email after the page is updated was fixed. Upgrade immediately.
200
 
201
  = V3.02 =
202
+ Italian language files are added to the plugin. A possibility to change a label when the fields of the form are displayed is added. Display of the files types names that user can attach to the mail is added.
203
 
204
  = V3.01 =
205
+ 'Attachment' and 'Send me a copy' block are added to the contact form. Language files are added to the plugin.
206
 
207
  = V2.08 =
208
+ Slashes bug in email is fixed and server info is added to an email.
209
 
210
  = v2.07 =
211
+ The bug of complex form validation when captcha is not used in the contact form is fixed. Upgrade immediately.
212
 
213
  = V2.06 =
214
+ The bug of complex email validation while filling in the contact form is fixed.
215
 
216
  = V2.05 =
217
+ BWS Plugin's menu section was fixed and right now it is consisted of 3 parts: activated, installed and recommended plugins. The bug of positioning in admin menu is fixed. Translation omissions are corrected. Now there is a link where it is possible to see the site where email comes from.
218
 
219
  = V2.04 =
220
+ BWS Plugin's menu section was fixed and right now it is consisted of 2 parts: installed and recommended plugins. Icons displaying is fixed.
221
 
222
  = V2.03 =
223
+ The bug of using custom email is fixed in this version. Please upgrade the plugin immediately. Thank you
224
 
225
  = V2.02 =
226
+ The bug with the link to the settings page is fixed in this version. Please upgrade the plugin immediately.
227
 
228
  = V2.01 =
229
+ Usability at the settings page of the plugin was improved.
230
 
231
  = V1.03 =
232
  Contact form email adress bug is fixed. Upgrade immediately.
233
 
234
  = V1.02 =
235
+ "Thanks" message display bug is fixed. Radio buttons automatic switching is added (for the settings page) after setting mouse cursor (clicking) at a text field. Upgrade immediately.
236
 
237
  = V1.01 =
238
+ Contact form positioning bug is fixed. Upgrade immediately.
239
 
240
  = V1.00 =
241
  Upgrade immediately.
screenshot-5.jpg ADDED
Binary file